Skip to content

Commit

Permalink
Remove "engines" from package.json
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
ide committed Aug 13, 2015
1 parent e0e39b4 commit 97d83d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: node_js
node_js:
- "0.10"
- "0.12"
- "iojs"
- "iojs-v2"
- "iojs-v1"
- "0.12"
- "0.10"
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": "*",
Expand Down

0 comments on commit 97d83d6

Please sign in to comment.