mirror of
https://github.com/zebrajr/react.git
synced 2026-01-15 12:15:22 +00:00
* Bump version number * Remove Scheduler indirection I originally kept the React PriorityLevel and Scheduler PriorityLevel types separate in case there was a versioning mismatch between the two modules. However, it looks like we're going to keep the Scheduler module private in the short to medium term, and longer term the public interface will match postTask. So, I've removed the extra indirection (the switch statements that convert between the two types).
40 lines
815 B
JSON
40 lines
815 B
JSON
{
|
|
"name": "react-test-renderer",
|
|
"version": "17.0.3",
|
|
"description": "React package for snapshot testing.",
|
|
"main": "index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/facebook/react.git",
|
|
"directory": "packages/react-test-renderer"
|
|
},
|
|
"keywords": [
|
|
"react",
|
|
"react-native",
|
|
"react-testing"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/react/issues"
|
|
},
|
|
"homepage": "https://reactjs.org/",
|
|
"dependencies": {
|
|
"object-assign": "^4.1.1",
|
|
"react-is": "^17.0.3",
|
|
"react-shallow-renderer": "^16.13.1",
|
|
"scheduler": "^0.20.1"
|
|
},
|
|
"peerDependencies": {
|
|
"react": "17.0.3"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"build-info.json",
|
|
"index.js",
|
|
"shallow.js",
|
|
"cjs/",
|
|
"umd/"
|
|
]
|
|
}
|