mirror of
https://github.com/facebook/react.git
synced 2026-02-24 12:43:00 +00:00
The publish script was written before we switched to running patch releases out-of-band, so when updating the local package.json version numbers, it accidentally reverted other changes that have landed to master since 16.13 was released.
42 lines
826 B
JSON
42 lines
826 B
JSON
{
|
|
"name": "react-reconciler",
|
|
"description": "React package for creating custom renderers.",
|
|
"version": "0.25.1",
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"homepage": "https://reactjs.org/",
|
|
"bugs": "https://github.com/facebook/react/issues",
|
|
"license": "MIT",
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"build-info.json",
|
|
"index.js",
|
|
"reflection.js",
|
|
"cjs/"
|
|
],
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-reconciler"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.13.0"
|
|
},
|
|
"dependencies": {
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1",
|
|
"scheduler": "^0.19.0"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
}
|