mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
e5b3554edc
**what is the change?:** We needed this dependency in the package.json **why make this change?:** Even though `create-react-class` was added as a dependency to the `package.json` in https://github.com/facebook/react/pull/9399/files we didn't completely cherry-pick this change onto 15.6 from master in https://github.com/facebook/react/commit/b48b2594fae7af3228ff6a0727cf8828b33b419e This fixes that omission. Following this fix we will review PR 9399 and make sure nothing else was missed. **test plan:** `yarn build` and inspect the `builds/packages/react/package.json`, see that `create-react-class` is included. **issue:** https://github.com/facebook/react/issues/9830
38 lines
758 B
JSON
38 lines
758 B
JSON
{
|
|
"name": "react",
|
|
"description": "React is a JavaScript library for building user interfaces.",
|
|
"version": "15.6.0-rc.1",
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"homepage": "https://facebook.github.io/react/",
|
|
"bugs": "https://github.com/facebook/react/issues",
|
|
"license": "BSD-3-Clause",
|
|
"files": [
|
|
"LICENSE",
|
|
"PATENTS",
|
|
"addons.js",
|
|
"react.js",
|
|
"addons/",
|
|
"dist/",
|
|
"lib/"
|
|
],
|
|
"main": "react.js",
|
|
"repository": "facebook/react",
|
|
"engines": {
|
|
"node": ">=0.10.0"
|
|
},
|
|
"dependencies": {
|
|
"create-react-class": "^15.5.2",
|
|
"fbjs": "^0.8.9",
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.0",
|
|
"prop-types": "^15.5.7"
|
|
},
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
}
|