From 97d83d6d701475957a3a17c68f41eddf1e3646cf 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. --- .travis.yml | 5 +++-- package.json | 3 --- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 80ff4d1..f456db4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: node_js node_js: - - "0.10" - - "0.12" + - "iojs" - "iojs-v2" - "iojs-v1" + - "0.12" + - "0.10" 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": "*",