mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +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`
32 lines
629 B
JSON
32 lines
629 B
JSON
{
|
|
"name": "react-test-renderer",
|
|
"version": "16.0.0-alpha",
|
|
"description": "React package for snapshot testing.",
|
|
"main": "index.js",
|
|
"repository": "facebook/react",
|
|
"keywords": [
|
|
"react",
|
|
"react-native",
|
|
"react-testing"
|
|
],
|
|
"license": "BSD-3-Clause",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/react/issues"
|
|
},
|
|
"homepage": "https://facebook.github.io/react/",
|
|
"dependencies": {
|
|
"fbjs": "^0.8.4",
|
|
"object-assign": "^4.1.0"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "^16.0.0-alpha"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"PATENTS",
|
|
"README.md",
|
|
"index.js",
|
|
"lib/"
|
|
]
|
|
}
|