react-native-cli initial commit

A cli package that is responsible for:
* starting a new react-native project
* forwarding all other commands to a cli module in react-native
* currently cli.js knows how to start the webserver, in the future it may do things like build the app etc.
This commit is contained in:
Amjad Masad
2015-03-19 17:46:43 -07:00
parent e2e123c2ab
commit 98097caa6f
3 changed files with 139 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
{
"name": "react-native-cli",
"version": "0.0.0",
"description": "The ReactNative cli tools",
"main": "index.js",
"bin": {
"react-native": "index.js"
}
}