Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Add missing jshint/istanbul dependencies. (#93)
Browse files Browse the repository at this point in the history
* Check if option runLivereload is set before attempting to add color to undefined string

* Add missing jshint/istanbul dependencies. Cleanup npm scripts for test, jshint and jasmine
iamchrismiller authored and tlancina committed Apr 20, 2016
1 parent 87c5ff9 commit cf15318
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -69,13 +69,15 @@
"xml2js": "0.4.16"
},
"devDependencies": {
"istanbul": "^0.4.3",
"jasmine-node": "1.14.5",
"jshint": "^2.9.1",
"rewire": "2.5.1"
},
"scripts": {
"test": "npm run jasmine",
"jshint": "node node_modules/jshint/bin/jshint src && node node_modules/jshint/bin/jshint spec",
"jasmine": "jasmine-node --captureExceptions ./spec",
"cover": "node node_modules/istanbul/lib/cli.js cover --root src --print detail node_modules/jasmine-node/bin/jasmine-node -- spec-cordova spec-plugman"
"jshint": "node_modules/.bin/jshint lib spec --exclude lib/assets",
"jasmine": "node_modules/.bin/jasmine-node --captureExceptions ./spec",
"cover": "node node_modules/istanbul/lib/cli.js cover --root lib --print detail node_modules/jasmine-node/bin/jasmine-node -- spec-cordova spec-plugman"
}
}

0 comments on commit cf15318

Please sign in to comment.