Simplify scripts (node scripts use ./node_modules version of things by default)

This commit is contained in:
Blade Barringer
2015-09-09 09:04:10 -05:00
parent addf19afc1
commit bd1ae09749
+2 -2
View File
@@ -80,9 +80,9 @@
"node": "0.10.x"
},
"scripts": {
"test": "./node_modules/.bin/gulp test",
"test": "gulp test",
"start": "gulp run:dev",
"postinstall": "./node_modules/bower/bin/bower --config.interactive=false install -f; ./node_modules/.bin/gulp build;",
"postinstall": "bower --config.interactive=false install -f; gulp build;",
"coverage": "COVERAGE=true mocha --require register-handlers.js --reporter html-cov > coverage.html; open coverage.html"
},
"devDependencies": {