Merge pull request #3297 from exponentjs/node-4-cli

[CLI] Add Node >= 4 requirement to CLI tools
This commit is contained in:
Felix Oghină 2015-10-23 11:18:44 +01:00
commit 6f71b790f1
1 changed files with 5 additions and 2 deletions

View File

@ -1,8 +1,11 @@
{
"name": "react-native-cli",
"version": "0.1.4",
"description": "The ReactNative cli tools",
"version": "0.1.6",
"description": "The React Native CLI tools",
"main": "index.js",
"engines": {
"node": ">=4"
},
"scripts": {
"test": "mocha"
},