react-native/package.json
Christopher Chedeau c0488c71d3 [npm] Fix connect/
Summary:
We had an old version of connect internally and a new version on github. Unfortunately, internally we picked up the od one and externally we picked the new one. This diff removes the internal version and downgrades the external version. It also updates package.json to make sure we have the same versions that are installed, somehow they mismatch!?
2015-09-08 11:31:52 -08:00

89 lines
2.1 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"
},
"jest": {
"scriptPreprocessor": "jestSupport/scriptPreprocess.js",
"setupEnvScriptFile": "jestSupport/env.js",
"testPathIgnorePatterns": [
"/node_modules/",
"packager/react-packager/src/Activity/"
],
"testFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"promise",
"source-map"
]
},
"main": "Libraries/react-native/react-native.js",
"files": [
"React",
"React.podspec",
"Examples/SampleApp",
"Libraries",
"packager",
"cli.js",
"local-cli",
"init.sh",
"LICENSE",
"PATENTS",
"README.md",
"jestSupport"
],
"scripts": {
"test": "jest",
"lint": "node linter.js 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",
"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.1",
"babel-eslint": "4.1.1",
"eslint": "1.3.1",
"eslint-plugin-react": "3.3.1"
}
}