react-native/package.json
James Ide 4f0a7250cc Add Node >= 4 requirement to package.json and packager/package.json
Summary: When you try to install these with old Node you'll now get a message from npm telling you that your version of Node is old. This makes it more obvious what's going on and hopefully reduces the number of issues we get due to people using an old version of Node.
Closes https://github.com/facebook/react-native/pull/3296

Reviewed By: @​svcscm

Differential Revision: D2526500

Pulled By: @vjeux

fb-gh-sync-id: 036e10a8d1819ea082e419cd328a458202f0e071
2015-10-09 14:44:23 -07:00

96 lines
2.2 KiB
JSON

{
"name": "react-native",
"version": "0.8.0",
"description": "A framework for building native apps using React",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git@github.com:facebook/react-native.git"
},
"engines": {
"node": ">=4"
},
"jest": {
"scriptPreprocessor": "jestSupport/preprocessor.js",
"setupEnvScriptFile": "jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/"
],
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"promise",
"source-map"
]
},
"main": "Libraries/react-native/react-native.js",
"files": [
"React",
"React.podspec",
"ReactAndroid",
"Libraries",
"packager",
"cli.js",
"local-cli",
"init.sh",
"LICENSE",
"PATENTS",
"README.md",
"jestSupport",
".flowconfig"
],
"scripts": {
"test": "NODE_ENV=test jest",
"lint": "eslint Examples/ Libraries/",
"start": "./packager/packager.sh || true"
},
"bin": {
"react-native-start": "packager/packager.sh"
},
"dependencies": {
"absolute-path": "^0.0.0",
"babel": "^5.8.23",
"babel-core": "^5.8.23",
"bser": "^1.0.2",
"chalk": "^1.1.1",
"connect": "^2.8.3",
"debug": "^2.2.0",
"event-target-shim": "^1.0.5",
"fbjs-scripts": "^0.2.1",
"graceful-fs": "^4.1.2",
"image-size": "^0.3.5",
"immutable": "^3.7.5",
"joi": "^6.6.1",
"jstransform": "^11.0.3",
"module-deps": "^3.9.1",
"optimist": "^0.6.1",
"progress": "^1.1.8",
"promise": "^7.0.4",
"react-timer-mixin": "^0.13.2",
"react-tools": "git://github.com/facebook/react#b4e74e38e43ac53af8acd62c78c9213be0194245",
"rebound": "^0.0.13",
"regenerator": "^0.8.36",
"sane": "^1.2.0",
"semver": "^5.0.1",
"source-map": "^0.4.4",
"stacktrace-parser": "^0.1.3",
"uglify-js": "^2.4.24",
"underscore": "^1.8.3",
"wordwrap": "^1.0.0",
"worker-farm": "^1.3.1",
"ws": "^0.8.0",
"yargs": "^3.24.0",
"yeoman-environment": "^1.2.7",
"yeoman-generator": "^0.20.3"
},
"devDependencies": {
"jest-cli": "0.5.7",
"babel-eslint": "4.1.1",
"eslint": "1.3.1",
"eslint-plugin-react": "3.3.1",
"portfinder": "0.4.0",
"temp": "0.8.3"
}
}