mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
9757f0a7e7
It turns out that (at least for local development) npm has a long
standing bug where it doesn't recognize changing dependencies stored as
git urls (see https://github.com/isaacs/npm/issues/1727). Luckily npm
understand tarballs and GitHub provides tarballs for every commit, so
the workaround is easy, though unfortunate.
(cherry picked from commit bd044fc919)
63 lines
1.4 KiB
JSON
63 lines
1.4 KiB
JSON
{
|
|
"name": "react-tools",
|
|
"version": "0.3.2",
|
|
"keywords": [
|
|
"react",
|
|
"jsx",
|
|
"transformer",
|
|
"view"
|
|
],
|
|
"homepage": "http://facebook.github.io/react",
|
|
"bugs": "https://github.com/facebook/react/issues",
|
|
"licenses": [
|
|
{
|
|
"type": "Apache-2.0",
|
|
"url": "http://www.apache.org/licenses/LICENSE-2.0"
|
|
}
|
|
],
|
|
"files": [
|
|
"README.md",
|
|
"main.js",
|
|
"bin/jsx",
|
|
"build/modules/",
|
|
"vendor/fbtransform/",
|
|
"vendor/woodchipper.js"
|
|
],
|
|
"main": "main.js",
|
|
"bin": {
|
|
"jsx": "./bin/jsx"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react"
|
|
},
|
|
"scripts": {
|
|
"test": "grunt test"
|
|
},
|
|
"dependencies": {
|
|
"base62": "~0.1.1",
|
|
"commoner": "~0.7.0",
|
|
"esprima": "https://github.com/facebook/esprima/tarball/ca28795124d45968e62a7b4b336d23a053ac3a84",
|
|
"recast": "~0.4.8",
|
|
"source-map": "~0.1.22"
|
|
},
|
|
"devDependencies": {
|
|
"browserify": "~2.14.2",
|
|
"wrapup": "~0.12.0",
|
|
"grunt-cli": "~0.1.9",
|
|
"grunt": "~0.4.1",
|
|
"grunt-contrib-copy": "~0.4.1",
|
|
"grunt-contrib-jshint": "~0.5.4",
|
|
"optimist": "~0.4.0",
|
|
"phantomjs": ">= 1.9.0",
|
|
"semver": ">= 1.1.4",
|
|
"uglify-js": "~2.3.6",
|
|
"grunt-contrib-clean": "~0.4.1",
|
|
"grunt-compare-size": "~0.4.0",
|
|
"gzip-js": "~0.3.2",
|
|
"tmp": "~0.0.18",
|
|
"grunt-contrib-compress": "~0.5.1"
|
|
},
|
|
"preferGlobal": true
|
|
}
|