Skip to content
This repository has been archived by the owner on Dec 4, 2018. It is now read-only.

Commit

Permalink
Restrict dev dependency versions to known working ranges
Browse files Browse the repository at this point in the history
Mocha v4 broke nyc coverage hooks and caused CI to hang/fail.
  • Loading branch information
bengourley committed Oct 23, 2017
1 parent cc02caa commit c1b0036
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions package.json
Expand Up @@ -16,10 +16,10 @@
"coveralls": "^2.13.1",
"express": "~3.4.2",
"grunt": "^0.4.5",
"grunt-bumpx": "latest",
"mocha": "latest",
"nyc": "^11.2.1",
"sinon": "latest"
"grunt-bumpx": "^0.2.1",
"mocha": "^3.5.3",
"nyc": "^3.2.2",
"sinon": "^4.0.1"
},
"repository": {
"type": "git",
Expand All @@ -32,7 +32,7 @@
],
"license": "MIT",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text mocha && (if [ -n \"$TRAVIS\" ]; then cat ./coverage/lcov.info | coveralls; fi)",
"test": "nyc --reporter=lcov --reporter=text mocha && (if [ -n \"$TRAVIS\" ]; then cat ./coverage/lcov.info && cat ./coverage/lcov.info | coveralls -v; fi)",
"test:quick": "mocha"
},
"engine": {
Expand Down

0 comments on commit c1b0036

Please sign in to comment.