Skip to content

Commit

Permalink
fix: drop Node 8 and 9
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node 8 and 9 no longer supported, use Node 10 or greater. It might still work, but it has reached End-Of-Life.
  • Loading branch information
knownasilya committed Mar 15, 2020
1 parent 86b558f commit 7295465
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
language: node_js
node_js:
- "8"
- "9"
- "10"
- "11"
- "12"
- "13"
script:
- "npm run lint"
- "npm run test-with-coverage"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ See the [CHANGELOG] for details about the latest release.
## How to install

You can install json2csv as a dependency using NPM.
Requires **Node v8** or higher.
Requires **Node v10** or higher.

```sh
# Global so it can be called from anywhere
Expand Down
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,5 +62,12 @@
"standard-version": "^7.0.0",
"tap-spec": "^5.0.0",
"tape": "^4.10.1"
},
"engines": {
"node": ">= 10",
"npm": ">= 6.13.0"
},
"volta": {
"node": "10.19.0"
}
}
}

0 comments on commit 7295465

Please sign in to comment.