mirror of
https://github.com/facebook/react.git
synced 2026-02-26 03:45:17 +00:00
**What** and **Why**: * When using npm version 2, `object-assign` and `fbjs` were not getting properly installed * This PR adds `object-assign` and `fbjs` as explicit dependencies to both `react-test-renderer` and `react-addons`
25 lines
419 B
JSON
25 lines
419 B
JSON
{
|
|
"name": "react-addons-template",
|
|
"version": "16.0.0-alpha",
|
|
"main": "index.js",
|
|
"repository": "facebook/react",
|
|
"keywords": [
|
|
"react",
|
|
"react-addon"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"dependencies": {
|
|
"fbjs": "^0.8.4",
|
|
"object-assign": "^4.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.0.0-alpha"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"PATENTS",
|
|
"README.md",
|
|
"index.js"
|
|
]
|
|
}
|