mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 09:35:48 +00:00
40a043109d
Summary: Detects if the user is on Node or io.js 1.x and prints a banner explaining how to upgrade. We probably should link to more detailed upgrade docs so this is just a start. I also added a function to format banners that is kind of useful. Addresses part of #1737 ![packager-banner](https://cloud.githubusercontent.com/assets/379606/8447050/ad615402-1f67-11e5-8c02-ece5f7488135.png) Closes https://github.com/facebook/react-native/pull/1824 Github Author: James Ide <ide@jameside.com>
34 lines
714 B
JSON
34 lines
714 B
JSON
{
|
|
"version": "0.1.2",
|
|
"name": "react-native-packager",
|
|
"description": "Build native apps with React!",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:facebook/react-native.git"
|
|
},
|
|
"jest": {
|
|
"setupEnvScriptFile": "jestSupport/env.js",
|
|
"testPathIgnorePatterns": [
|
|
"/node_modules/"
|
|
],
|
|
"testFileExtensions": [
|
|
"js"
|
|
],
|
|
"unmockedModulePathPatterns": [
|
|
"source-map"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"lint": "node linter.js Examples/",
|
|
"start": "./packager/packager.sh"
|
|
},
|
|
"dependencies": {
|
|
"wordwrap": "^1.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"jest-cli": "git://github.com/facebook/jest#0.5.x",
|
|
"eslint": "0.9.2"
|
|
}
|
|
}
|