Skip to content

Commit 9c200bb

Browse files
favnamroderick
authored andcommitted
Use local binaries for scripts
This is so people can install *just* dev dependencies and don't need to install them globally. Other than that it's the exact same way.
1 parent 9f15026 commit 9c200bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
"test": "test"
99
},
1010
"scripts": {
11-
"coverage": "nyc --reporter=lcov --reporter=text --reporter=json-summary npm test",
12-
"lint": "eslint src/ test/",
13-
"test": "mocha"
11+
"coverage": "./node_modules/.bin/nyc --reporter=lcov --reporter=text --reporter=json-summary npm test",
12+
"lint": "./node_modules/.bin/eslint src/ test/",
13+
"test": "./node_modules/.bin/mocha"
1414
},
1515
"repository": {
1616
"type": "git",

0 commit comments

Comments
 (0)