diff --git a/.travis.yml b/.travis.yml index f524aba18..3a73e3ced 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,6 @@ sudo: false language: node_js node_js: - - 6 - 8 - 10 diff --git a/appveyor.yml b/appveyor.yml index c30a4056a..7926d03a2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -2,7 +2,6 @@ version: "{build}" environment: matrix: - - nodejs_version: "6" - nodejs_version: "8" - nodejs_version: "10" diff --git a/docs/intro/04-faq.md b/docs/intro/04-faq.md index 90ae63300..2bd2f530f 100644 --- a/docs/intro/04-faq.md +++ b/docs/intro/04-faq.md @@ -25,8 +25,7 @@ The latest stable version from NPM (`npm install karma`). See [versioning] for m ### Which version of Node.js does Karma run with? -Karma works on all LTS versions node in active maintenance state (see [LTS docs](https://github.com/nodejs/Release/blob/master/README.md) for more info) as well as the latest stable version. That is **6.x**, **8.x** and **10.x** at this point. - +Karma works on all active LTS versions of node as specified by the [Node.js Release Working Group](https://github.com/nodejs/Release/blob/master/README.md). The nodejs version numbers are set in the package.json. Older versions of karma work with older versions of nodejs, but are not maintained or updated. [mailing list]: https://groups.google.com/d/forum/karma-users [karma-ng-scenario]: https://github.com/karma-runner/karma-ng-scenario diff --git a/package.json b/package.json index d25a60ae5..3b2c74fdb 100644 --- a/package.json +++ b/package.json @@ -475,7 +475,7 @@ "karma": "./bin/karma" }, "engines": { - "node": ">= 6" + "node": ">= 8" }, "version": "3.1.4", "license": "MIT",