Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies Replacing Istanbul with NYC #362

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,22 @@
"server.js"
],
"dependencies": {
"http-proxy": "1.11.1",
"http-proxy": "^1.18.1",
"proxy-from-env": "0.0.1"
},
"devDependencies": {
"coveralls": "^2.11.6",
"coveralls": "^3.1.0",
"eslint": "^2.2.0",
"istanbul": "^0.4.2",
"lolex": "^1.5.0",
"mocha": "^3.4.2",
"nock": "^8.2.1",
"supertest": "^2.0.1"
"mocha": "^9.0.1",
"nock": "^13.1.0",
"nyc": "^15.1.0",
"supertest": "^6.1.3"
},
"scripts": {
"lint": "eslint .",
"test": "mocha ./test/test*.js --reporter spec",
"test-coverage": "istanbul cover ./node_modules/.bin/_mocha -- test/test.js test/test-ratelimit.js --reporter spec"
"test-coverage": "nyc npm run test"
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is different from before - previously I explicitly listed the tests of interest to exclude test-memory.js, which basically runs a simple test repeatedly.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Now I understand. I’ve correct that.

},
"engines": {
"node": ">=0.10.0"
Expand Down