From b0408f250dff972eba72c878541e7c3e2d31e4b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Bajto=C5=A1?= Date: Thu, 19 Oct 2017 10:57:06 +0200 Subject: [PATCH] Drop support for Node.js versions 0.10 and 0.12 Some of our dependencies are no longer supporting pre-4.0 versions of Node.js. As a result, our CI builds are failing on these platforms. This pull request removes 0.10 and 0.12 from our Travis CI build matrix and also adds "engines" field to package.json to tell our internal Jenkins CI to stop testing 0.10 and 0.12 versions too. --- .travis.yml | 3 +-- package.json | 3 +++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d431fa4..504c75d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,7 @@ sudo: false language: node_js node_js: - - "0.10" - - "0.12" - "4" - "6" + - "8" diff --git a/package.json b/package.json index 15c2c8e..7392a84 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,9 @@ "posttest": "npm run lint", "lint": "eslint ." }, + "engines": { + "node": ">=4" + }, "license": "MIT", "dependencies": { "async": "~0.9.0",