Skip to content

Commit

Permalink
remove ./ from scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffrifwald committed Jun 29, 2016
1 parent 1335fef commit fb7c488
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@
"scripts": {
"build": "rimraf lib && babel src/ -d lib/",
"check-coverage": "babel-istanbul check-coverage",
"cover": "rimraf coverage && NODE_PATH=./src babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --require test/main.js --recursive test",
"cover": "rimraf coverage && NODE_PATH=src babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- --require test/main.js --recursive test",
"lint": "eslint src test",
"test": "npm run lint && npm run cover && npm run check-coverage",
"postpublish": "node lib/cli.js postpublish",
"postversion": "npm run build && node lib/cli.js postversion",
"unit": "NODE_PATH=./src babel-node node_modules/.bin/_mocha --require test/main.js --recursive test"
"unit": "NODE_PATH=src babel-node node_modules/.bin/_mocha --require test/main.js --recursive test"
},
"keywords": [
"git",
Expand Down

0 comments on commit fb7c488

Please sign in to comment.