drop unnecessary binary paths

This commit is contained in:
Wei Lu 2014-07-16 01:35:05 +08:00
parent 6dbf00f7ac
commit 0e0e97c011

View file

@ -60,13 +60,13 @@
"files": "test/*.js" "files": "test/*.js"
}, },
"scripts": { "scripts": {
"compile": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs > bitcoinjs-min.js", "compile": "browserify ./src/index.js -s Bitcoin | uglifyjs > bitcoinjs-min.js",
"coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js", "coverage": "istanbul cover mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info", "coveralls": "npm run-script coverage && node coveralls < coverage/lcov.info",
"integration": "./node_modules/.bin/_mocha --reporter list test/integration/*.js", "integration": "mocha --reporter list test/integration/*.js",
"jshint": "./node_modules/.bin/jshint --config jshint.json src/*.js ; true", "jshint": "jshint --config jshint.json src/*.js ; true",
"test": "npm run-script unit", "test": "npm run-script unit",
"unit": "./node_modules/.bin/istanbul test ./node_modules/.bin/_mocha -- --reporter list `find test -maxdepth 1 -not -type d`" "unit": "istanbul test mocha -- --reporter list `find test -maxdepth 1 -not -type d`"
}, },
"browser": { "browser": {
"crypto": "crypto-browserify" "crypto": "crypto-browserify"