mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
f22e9353a7
Summary: React@15.1.0 is incompatible with React-Native@0.26. This PR was cherry-picked to 0.26-stable branch now. What this change does: - react-native-cli (major release bump) saves exact versions of react-native and react (only in npm2) dependencies into package.json - local-cli saves exact version of react (only npm3) dependency into package.json Closes https://github.com/facebook/react-native/pull/7879 Differential Revision: D3384705 Pulled By: davidaurelio fbshipit-source-id: d4dff418f9659bd083ae8826433a4e7c0355d03b
27 lines
500 B
JSON
27 lines
500 B
JSON
{
|
|
"name": "react-native-cli",
|
|
"version": "1.0.0",
|
|
"license": "BSD-3-Clause",
|
|
"description": "The React Native CLI tools",
|
|
"main": "index.js",
|
|
"engines": {
|
|
"node": ">=4"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react-native.git"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha"
|
|
},
|
|
"bin": {
|
|
"react-native": "index.js"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^1.1.1",
|
|
"minimist": "^1.2.0",
|
|
"prompt": "^0.2.14",
|
|
"semver": "^5.0.3"
|
|
}
|
|
}
|