mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
811079ede2
To release a new version with the fix for Windows: https://github.com/facebook/react-native/pull/5171 Thanks a lot @tdzl2003! Tweaked the platform check to use `process.platform` as that's more common in the codebase. No strong preference, just for consistency.
26 lines
475 B
JSON
26 lines
475 B
JSON
{
|
|
"name": "react-native-cli",
|
|
"version": "0.1.9",
|
|
"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",
|
|
"prompt": "^0.2.14",
|
|
"semver": "^5.0.3"
|
|
}
|
|
}
|