Skip to content

Commit

Permalink
Update package.json: Remove warning upon install
Browse files Browse the repository at this point in the history
The project was locked to requiring `"node": "0.x"`.

As there's no need to depend upon a very old version of Node, I've removed this requirement to solve the warning which always appears when installing:

    npm WARN engine ascii-table@0.0.8: wanted: {"node":"0.x"} (current: {"node":"5.4.0","npm":"3.3.12"})

I also bumped the version number to track this change.
  • Loading branch information
Zephod committed Apr 11, 2016
1 parent d43d956 commit c68aa32
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ascii-table"
, "version": "0.0.8"
, "version": "0.0.9"
, "license": "MIT"
, "keywords": [
"table"
Expand All @@ -23,9 +23,6 @@
"type": "git"
, "url": "git://github.com/sorensen/ascii-table.git"
}
, "engines": {
"node": "0.x"
}
, "main": "index.js"
, "scripts": {
"test": "make test"
Expand All @@ -34,4 +31,4 @@
"mocha": "*"
}
, "dependencies": {}
}
}

0 comments on commit c68aa32

Please sign in to comment.