From e3d808f7f97619400da2c4ed64ac5a890c53ed99 Mon Sep 17 00:00:00 2001 From: James Ide Date: Thu, 13 Aug 2015 10:11:29 -0700 Subject: [PATCH] Remove "engines" from package.json Node will soon be releasing a new major version several times a year so the engines field is getting outdated quickly, and this project doesn't depend on many features of Node anyway. This commit is to make it so that downstream projects like react-native don't print a warning when people install it with io.js 3.0, Node.js 4.0, etc. To help catch issues, the Travis config file now tests the latest version of io.js. It also contains `sudo: false` so that it runs on Travis' new docker infrastructure: http://docs.travis-ci.com/user/workers/container-based-infrastructure/ --- .travis.yml | 6 ++++-- package.json | 3 --- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80ff4d1..aa7fc69 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ language: node_js node_js: - - "0.10" - - "0.12" + - "iojs" - "iojs-v2" - "iojs-v1" + - "0.12" + - "0.10" +sudo: false diff --git a/package.json b/package.json index da9fb7c..cdbd597 100644 --- a/package.json +++ b/package.json @@ -4,9 +4,6 @@ "description": "Parses every stack trace into a nicely formatted array of hashes.", "keywords": ["errors", "stacktrace", "parser", "exceptions"], "version": "0.1.2", - "engines": { - "node": "0.10 - 2" - }, "dependencies": {}, "devDependencies": { "mocha": "*",