Skip to content

Commit 682bcf1

Browse files
committed
Bump dependencies to latest versions available; expand travis testing
Because of the bump in mocha version to 8.0, we can no longer run tests on Node.js v8.x and below: mochajs/mocha#4164 The fibers package at version 5.0 also doesn't support Node.js v10.x or lower, although it seems to work fine in my limited testing. The commander package requires node 6 or greater: tj/commander.js#1053
1 parent 88f4898 commit 682bcf1

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

.travis.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,5 @@ language: node_js
22
sudo: false
33
node_js:
44
- "stable"
5-
- "8"
6-
- "6"
7-
- "4"
8-
- "0.12"
9-
- "0.10"
5+
- "14"
6+
- "12"

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
"test": "test"
2323
},
2424
"dependencies": {
25-
"commander": "^2.8.1"
25+
"commander": "^6.0.0"
2626
},
2727
"devDependencies": {
28-
"fibers": "~1.0.6",
29-
"mocha": "~2.2.5"
28+
"fibers": "^5.0.0",
29+
"mocha": "^8.1.0"
3030
},
3131
"scripts": {
3232
"test": "mocha"

0 commit comments

Comments
 (0)