From 0e0e97c011ed2df5b986c31d33dff45834b00a5f Mon Sep 17 00:00:00 2001 From: Wei Lu Date: Wed, 16 Jul 2014 01:35:05 +0800 Subject: [PATCH] drop unnecessary binary paths --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 071680e..fbbbe2e 100644 --- a/package.json +++ b/package.json @@ -60,13 +60,13 @@ "files": "test/*.js" }, "scripts": { - "compile": "./node_modules/.bin/browserify ./src/index.js -s Bitcoin | ./node_modules/.bin/uglifyjs > bitcoinjs-min.js", - "coverage": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --reporter list test/*.js", - "coveralls": "npm run-script coverage && node ./node_modules/.bin/coveralls < coverage/lcov.info", - "integration": "./node_modules/.bin/_mocha --reporter list test/integration/*.js", - "jshint": "./node_modules/.bin/jshint --config jshint.json src/*.js ; true", + "compile": "browserify ./src/index.js -s Bitcoin | uglifyjs > bitcoinjs-min.js", + "coverage": "istanbul cover mocha -- --reporter list test/*.js", + "coveralls": "npm run-script coverage && node coveralls < coverage/lcov.info", + "integration": "mocha --reporter list test/integration/*.js", + "jshint": "jshint --config jshint.json src/*.js ; true", "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": { "crypto": "crypto-browserify"