mirror of
https://github.com/facebook/react.git
synced 2026-02-24 20:53:03 +00:00
* Remove object-assign polyfill We really rely on a more modern environment where this is typically polyfilled anyway and we don't officially support IE with more extensive polyfilling anyway. So all environments should have the native version by now. * Use shared/assign instead of Object.assign in code This is so that we have one cached local instance in the bundle. Ideally we should have a compile do this for us but we already follow this pattern with hasOwnProperty, isArray, Object.is etc. * Transform Object.assign to now use shared/assign We need this to use the shared instance when Object.spread is used.
33 lines
690 B
JSON
33 lines
690 B
JSON
{
|
|
"name": "jest-react",
|
|
"version": "0.12.0",
|
|
"description": "Jest matchers and utilities for testing React components.",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/jest-react"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"jest",
|
|
"react-testing"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/react/issues"
|
|
},
|
|
"homepage": "https://reactjs.org/",
|
|
"peerDependencies": {
|
|
"jest": "^23.0.1 || ^24.0.0 || ^25.1.0",
|
|
"react": "^17.0.0",
|
|
"react-test-renderer": "^17.0.0"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"cjs/"
|
|
]
|
|
}
|