2015-02-20 04:10:52 +00:00
|
|
|
{
|
2015-03-23 03:32:49 +00:00
|
|
|
"name": "react-native",
|
2016-01-13 12:57:14 +00:00
|
|
|
"version": "0.0.0-master",
|
2015-03-28 05:18:47 +00:00
|
|
|
"description": "A framework for building native apps using React",
|
2015-05-28 18:48:58 +00:00
|
|
|
"license": "BSD-3-Clause",
|
2015-02-20 04:10:52 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git@github.com:facebook/react-native.git"
|
|
|
|
},
|
2015-10-09 21:42:33 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=4"
|
|
|
|
},
|
2015-02-20 04:10:52 +00:00
|
|
|
"jest": {
|
2015-09-16 04:49:56 +00:00
|
|
|
"scriptPreprocessor": "jestSupport/preprocessor.js",
|
2015-02-25 20:57:33 +00:00
|
|
|
"setupEnvScriptFile": "jestSupport/env.js",
|
2015-10-27 00:01:41 +00:00
|
|
|
"moduleNameMapper": {
|
|
|
|
"^image![a-zA-Z0-9$_-]+$": "GlobalImageStub",
|
|
|
|
"^[./a-zA-Z0-9$_-]+\\.png$": "RelativeImageStub"
|
|
|
|
},
|
2015-12-22 19:40:16 +00:00
|
|
|
"testRunner": "<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2.js",
|
2015-02-20 04:10:52 +00:00
|
|
|
"testPathIgnorePatterns": [
|
2015-09-18 01:34:14 +00:00
|
|
|
"/node_modules/"
|
2015-02-20 04:10:52 +00:00
|
|
|
],
|
2016-01-08 14:51:45 +00:00
|
|
|
"modulePathIgnorePatterns": [
|
2016-01-22 19:34:19 +00:00
|
|
|
"/node_modules/(?!react|fbjs|react-native|parse|react-transform-hmr|core-js|promise)/",
|
2016-01-08 14:51:45 +00:00
|
|
|
"node_modules/react/lib/React.js",
|
|
|
|
"node_modules/react/lib/ReactDOM.js",
|
|
|
|
|
|
|
|
"node_modules/fbjs/lib/Map.js",
|
|
|
|
"node_modules/fbjs/lib/Promise.js",
|
|
|
|
"node_modules/fbjs/lib/fetch.js",
|
|
|
|
"node_modules/fbjs/lib/ErrorUtils.js",
|
|
|
|
"node_modules/fbjs/lib/URI.js",
|
|
|
|
"node_modules/fbjs/lib/Deferred.js",
|
|
|
|
"node_modules/fbjs/lib/PromiseMap.js",
|
|
|
|
"node_modules/fbjs/lib/UserAgent.js",
|
|
|
|
"node_modules/fbjs/lib/areEqual.js",
|
|
|
|
"node_modules/fbjs/lib/base62.js",
|
|
|
|
"node_modules/fbjs/lib/crc32.js",
|
|
|
|
"node_modules/fbjs/lib/everyObject.js",
|
|
|
|
"node_modules/fbjs/lib/fetchWithRetries.js",
|
|
|
|
"node_modules/fbjs/lib/filterObject.js",
|
|
|
|
"node_modules/fbjs/lib/flattenArray.js",
|
|
|
|
"node_modules/fbjs/lib/forEachObject.js",
|
|
|
|
"node_modules/fbjs/lib/isEmpty.js",
|
|
|
|
"node_modules/fbjs/lib/nullthrows.js",
|
|
|
|
"node_modules/fbjs/lib/removeFromArray.js",
|
|
|
|
"node_modules/fbjs/lib/resolveImmediate.js",
|
|
|
|
"node_modules/fbjs/lib/someObject.js",
|
|
|
|
"node_modules/fbjs/lib/sprintf.js",
|
|
|
|
"node_modules/fbjs/lib/xhrSimpleDataSerializer.js",
|
|
|
|
|
|
|
|
"downstream/core/CSSCore.js",
|
|
|
|
"downstream/core/TouchEventUtils.js",
|
|
|
|
"downstream/core/camelize.js",
|
|
|
|
"downstream/core/createArrayFromMixed.js",
|
|
|
|
"downstream/core/createNodesFromMarkup.js",
|
|
|
|
"downstream/core/dom/containsNode.js",
|
|
|
|
"downstream/core/dom/focusNode.js",
|
|
|
|
"downstream/core/dom/getActiveElement.js",
|
|
|
|
"downstream/core/dom/getUnboundedScrollPosition.js",
|
|
|
|
"downstream/core/dom/isNode.js",
|
|
|
|
"downstream/core/dom/isTextNode.js",
|
|
|
|
"downstream/core/emptyFunction.js",
|
|
|
|
"downstream/core/emptyObject.js",
|
|
|
|
"downstream/core/getMarkupWrap.js",
|
|
|
|
"downstream/core/hyphenate.js",
|
|
|
|
"downstream/core/hyphenateStyleName.js",
|
|
|
|
"downstream/core/invariant.js",
|
|
|
|
"downstream/core/nativeRequestAnimationFrame.js",
|
|
|
|
"downstream/core/toArray.js",
|
|
|
|
|
|
|
|
"node_modules/jest-cli",
|
|
|
|
"node_modules/react/dist"
|
|
|
|
],
|
2015-02-19 21:11:11 +00:00
|
|
|
"testFileExtensions": [
|
|
|
|
"js"
|
2015-02-25 20:57:33 +00:00
|
|
|
],
|
|
|
|
"unmockedModulePathPatterns": [
|
2015-06-24 18:01:09 +00:00
|
|
|
"promise",
|
2015-02-25 20:57:33 +00:00
|
|
|
"source-map"
|
2015-02-19 21:11:11 +00:00
|
|
|
]
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
2015-03-23 03:32:49 +00:00
|
|
|
"main": "Libraries/react-native/react-native.js",
|
2015-03-26 01:18:41 +00:00
|
|
|
"files": [
|
2015-03-26 09:58:06 +00:00
|
|
|
"React",
|
2015-04-29 15:21:44 +00:00
|
|
|
"React.podspec",
|
2015-10-03 18:46:56 +00:00
|
|
|
"ReactAndroid",
|
2015-03-26 01:18:41 +00:00
|
|
|
"Libraries",
|
|
|
|
"packager",
|
|
|
|
"cli.js",
|
2015-04-08 04:36:34 +00:00
|
|
|
"local-cli",
|
2015-03-26 01:18:41 +00:00
|
|
|
"init.sh",
|
|
|
|
"LICENSE",
|
2015-03-28 05:18:47 +00:00
|
|
|
"PATENTS",
|
2015-07-16 01:49:37 +00:00
|
|
|
"README.md",
|
2015-09-23 19:59:50 +00:00
|
|
|
"jestSupport",
|
|
|
|
".flowconfig"
|
2015-03-26 01:18:41 +00:00
|
|
|
],
|
2015-02-20 04:10:52 +00:00
|
|
|
"scripts": {
|
2015-09-18 01:34:14 +00:00
|
|
|
"test": "NODE_ENV=test jest",
|
2015-12-22 18:32:20 +00:00
|
|
|
"lint": "eslint Examples/ Libraries/",
|
2015-11-12 17:24:44 +00:00
|
|
|
"start": "/usr/bin/env bash -c './packager/packager.sh \"$@\" || true' --"
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
2015-10-26 18:42:53 +00:00
|
|
|
"bin": {
|
|
|
|
"react-native": "local-cli/wrong-react-native.js"
|
|
|
|
},
|
2015-02-20 04:10:52 +00:00
|
|
|
"dependencies": {
|
2015-09-11 08:23:38 +00:00
|
|
|
"absolute-path": "^0.0.0",
|
2015-11-05 11:31:11 +00:00
|
|
|
"art": "^0.10.0",
|
2015-11-16 12:00:21 +00:00
|
|
|
"babel-core": "^6.1.20",
|
2015-11-12 06:53:04 +00:00
|
|
|
"babel-plugin-external-helpers-2": "^6.1.4",
|
2015-11-10 18:51:38 +00:00
|
|
|
"babel-plugin-syntax-async-functions": "^6.0.14",
|
|
|
|
"babel-plugin-syntax-class-properties": "^6.0.14",
|
|
|
|
"babel-plugin-syntax-flow": "^6.0.14",
|
|
|
|
"babel-plugin-syntax-jsx": "^6.0.14",
|
|
|
|
"babel-plugin-syntax-trailing-function-commas": "^6.0.14",
|
|
|
|
"babel-plugin-transform-class-properties": "^6.0.14",
|
|
|
|
"babel-plugin-transform-es2015-arrow-functions": "^6.0.14",
|
|
|
|
"babel-plugin-transform-es2015-block-scoping": "^6.0.18",
|
|
|
|
"babel-plugin-transform-es2015-classes": "^6.1.2",
|
|
|
|
"babel-plugin-transform-es2015-computed-properties": "^6.0.14",
|
|
|
|
"babel-plugin-transform-es2015-constants": "^6.0.15",
|
|
|
|
"babel-plugin-transform-es2015-destructuring": "^6.0.18",
|
2015-12-02 11:10:42 +00:00
|
|
|
"babel-plugin-transform-es2015-for-of": "^6.0.14",
|
2015-11-10 18:51:38 +00:00
|
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.1.3",
|
|
|
|
"babel-plugin-transform-es2015-parameters": "^6.0.18",
|
|
|
|
"babel-plugin-transform-es2015-shorthand-properties": "^6.0.14",
|
|
|
|
"babel-plugin-transform-es2015-spread": "^6.0.14",
|
|
|
|
"babel-plugin-transform-es2015-template-literals": "^6.0.14",
|
|
|
|
"babel-plugin-transform-flow-strip-types": "^6.0.14",
|
|
|
|
"babel-plugin-transform-object-assign": "^6.0.14",
|
|
|
|
"babel-plugin-transform-object-rest-spread": "^6.0.14",
|
|
|
|
"babel-plugin-transform-react-display-name": "^6.0.14",
|
|
|
|
"babel-plugin-transform-react-jsx": "^6.0.18",
|
|
|
|
"babel-plugin-transform-regenerator": "^6.0.18",
|
|
|
|
"babel-polyfill": "^6.0.16",
|
|
|
|
"babel-types": "^6.1.2",
|
|
|
|
"babylon": "^6.1.2",
|
2015-12-22 17:22:01 +00:00
|
|
|
"base64-js": "^0.0.8",
|
2015-09-11 08:23:38 +00:00
|
|
|
"bser": "^1.0.2",
|
|
|
|
"chalk": "^1.1.1",
|
|
|
|
"connect": "^2.8.3",
|
|
|
|
"debug": "^2.2.0",
|
2015-10-01 19:25:28 +00:00
|
|
|
"event-target-shim": "^1.0.5",
|
2015-12-30 19:38:35 +00:00
|
|
|
"fbjs": "^0.6.0",
|
2015-11-11 13:41:16 +00:00
|
|
|
"fbjs-scripts": "^0.4.0",
|
2015-09-11 08:23:38 +00:00
|
|
|
"graceful-fs": "^4.1.2",
|
|
|
|
"image-size": "^0.3.5",
|
|
|
|
"immutable": "^3.7.5",
|
|
|
|
"joi": "^6.6.1",
|
2015-11-14 11:23:46 +00:00
|
|
|
"json5": "^0.4.0",
|
2015-09-11 08:23:38 +00:00
|
|
|
"jstransform": "^11.0.3",
|
2015-12-29 17:10:22 +00:00
|
|
|
"mkdirp": "^0.5.1",
|
2015-09-11 08:23:38 +00:00
|
|
|
"module-deps": "^3.9.1",
|
2015-10-19 21:58:38 +00:00
|
|
|
"node-fetch": "^1.3.3",
|
2015-10-23 18:28:48 +00:00
|
|
|
"opn": "^3.0.2",
|
2015-09-11 08:23:38 +00:00
|
|
|
"optimist": "^0.6.1",
|
|
|
|
"progress": "^1.1.8",
|
2016-01-07 17:30:14 +00:00
|
|
|
"promise": "^7.1.1",
|
2015-12-30 19:38:35 +00:00
|
|
|
"react": "^0.14.5",
|
2015-09-11 08:23:38 +00:00
|
|
|
"react-timer-mixin": "^0.13.2",
|
2016-01-04 23:13:37 +00:00
|
|
|
"react-transform-hmr": "^1.0.1",
|
2016-01-06 22:50:18 +00:00
|
|
|
"babel-plugin-react-transform": "2.0.0-beta1",
|
2015-09-11 08:23:38 +00:00
|
|
|
"rebound": "^0.0.13",
|
|
|
|
"regenerator": "^0.8.36",
|
2015-09-08 08:34:44 +00:00
|
|
|
"sane": "^1.2.0",
|
2015-12-29 17:10:22 +00:00
|
|
|
"semver": "^5.0.3",
|
2015-09-11 08:23:38 +00:00
|
|
|
"source-map": "^0.4.4",
|
|
|
|
"stacktrace-parser": "^0.1.3",
|
2016-01-08 16:34:52 +00:00
|
|
|
"temp": "0.8.3",
|
2015-09-11 08:23:38 +00:00
|
|
|
"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"
|
2015-02-20 04:10:52 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2015-12-22 02:02:56 +00:00
|
|
|
"jest-cli": "0.8.2",
|
2015-11-10 18:51:38 +00:00
|
|
|
"babel-eslint": "4.1.4",
|
2015-09-04 18:29:04 +00:00
|
|
|
"eslint": "1.3.1",
|
2015-09-23 01:21:57 +00:00
|
|
|
"eslint-plugin-react": "3.3.1",
|
2016-01-08 16:34:52 +00:00
|
|
|
"portfinder": "0.4.0"
|
2015-02-20 04:10:52 +00:00
|
|
|
}
|
|
|
|
}
|