Skip to content

Commit

Permalink
Revise script calls to remove explicit local call, this was breaking …
Browse files Browse the repository at this point in the history
…in node 16.x
  • Loading branch information
alallier committed Jun 9, 2021
1 parent 3ea7911 commit b9061c8
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 @@ -45,11 +45,11 @@
"main": "./index.js",
"scripts": {
"test": "npm run standard && npm run unitTests",
"unitTests": "./node_modules/.bin/mocha --recursive --timeout 5000 test",
"unitTests": "mocha --recursive --timeout 5000 test",
"standard": "standard **/*.js bin/**/*",
"cover": "nyc --reporter=html --reporter=text mocha --timeout 5000 --recursive test",
"coverage": "npm run cover",
"report-coverage": "./node_modules/.bin/nyc npm run unitTests && nyc report --reporter=text-lcov > coverage.lcov && \"./node_modules/.bin/codecov\""
"report-coverage": "nyc npm run unitTests && nyc report --reporter=text-lcov > coverage.lcov && \"./node_modules/.bin/codecov\""
},
"bin": {
"reload": "./bin/reload"
Expand Down

0 comments on commit b9061c8

Please sign in to comment.