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

Drop support for Node 9 and bump dependencies to latest versions #614

Merged
merged 1 commit into from
May 9, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
language: node_js
cache:
yarn: true
directories:
- node_modules
node_js:
- "6"
- "8"
- "9"
- "10"
- '6'
- '8'
- '10'
sudo: false
after_success: npm run report && npm run coveralls
after_success: yarn report && yarn coveralls
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,22 @@
},
"bugs:": "https://github.com/stripe/stripe-node/issues",
"engines": {
"node": "6 || >=8.1"
"node": "^6 || ^8.1 || >=10.*"
ob-stripe marked this conversation as resolved.
Show resolved Hide resolved
},
"main": "lib/stripe.js",
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "~4.1.2",
"chai": "~4.2.0",
"chai-as-promised": "~7.1.1",
"coveralls": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-chai-friendly": "^0.4.0",
"mocha": "~5.0.5",
"nock": "^9.0.0",
"nyc": "^11.3.0",
"eslint-plugin-flowtype": "^3.8.1",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "~6.1.4",
"nock": "^10.0.6",
"nyc": "^14.1.0",
"prettier": "^1.16.4"
},
"dependencies": {
Expand All @@ -57,4 +57,4 @@
"report": "nyc -r text -r lcov report",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}
}