mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
8e876d244c
* Move ReactFiberTreeReflection to react-reconciler/reflection #11659 * Use * for react-reconciler We don't know the latest local version, and release script currently doesn't bump deps automatically. * Remove unused field * Use CommonJS in entry point for consistency * Undo the CommonJS change I didn't realize it would break the build. * Record sizes * Remove reconciler fixtures They're unnecessary now that we run real tests on reconciler bundles.
38 lines
733 B
JSON
38 lines
733 B
JSON
{
|
|
"name": "react-reconciler",
|
|
"description": "React package for creating custom renderers.",
|
|
"version": "0.6.0",
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"homepage": "https://facebook.github.io/react/",
|
|
"bugs": "https://github.com/facebook/react/issues",
|
|
"license": "MIT",
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"reflection.js",
|
|
"cjs/"
|
|
],
|
|
"main": "index.js",
|
|
"repository": "facebook/react",
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"fbjs": "^0.8.16",
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1",
|
|
"prop-types": "^15.6.0"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
}
|