mirror of
https://github.com/facebook/react.git
synced 2026-02-24 20:53:03 +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.
55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "react-dom",
|
|
"version": "16.13.1",
|
|
"description": "React package for working with the DOM.",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-dom"
|
|
},
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/react/issues"
|
|
},
|
|
"homepage": "https://reactjs.org/",
|
|
"dependencies": {
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1",
|
|
"scheduler": "^0.19.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.13.0"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"build-info.json",
|
|
"index.js",
|
|
"profiling.js",
|
|
"server.js",
|
|
"server.browser.js",
|
|
"server.node.js",
|
|
"test-utils.js",
|
|
"unstable-fire.js",
|
|
"unstable-fizz.js",
|
|
"unstable-fizz.browser.js",
|
|
"unstable-fizz.node.js",
|
|
"unstable-native-dependencies.js",
|
|
"cjs/",
|
|
"umd/"
|
|
],
|
|
"browser": {
|
|
"./server.js": "./server.browser.js",
|
|
"./unstable-fizz.js": "./unstable-fizz.browser.js"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
}
|