diff --git a/.travis.yml b/.travis.yml index 370060ce..bd6950a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,9 @@ language: node_js node_js: - - "8" - - "9" - "10" - "11" - "12" + - "13" script: - "npm run lint" - "npm run test-with-coverage" diff --git a/README.md b/README.md index 07a5fc15..4f476257 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/package.json b/package.json index ad9e605c..6045f733 100644 --- a/package.json +++ b/package.json @@ -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" } -} +} \ No newline at end of file