mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
605ab10a4a
This package uses `process.env.NODE_ENV` but does not transform its usage during bundling like the rest of the React libraries do. This causes issues when `process` is not defined globally.
34 lines
626 B
JSON
34 lines
626 B
JSON
{
|
|
"name": "scheduler",
|
|
"version": "0.9.0",
|
|
"description": "Cooperative scheduler for the browser environment.",
|
|
"main": "index.js",
|
|
"repository": "facebook/react",
|
|
"license": "MIT",
|
|
"keywords": [
|
|
"react"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/react/issues"
|
|
},
|
|
"homepage": "https://reactjs.org/",
|
|
"dependencies": {
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1"
|
|
},
|
|
"files": [
|
|
"LICENSE",
|
|
"README.md",
|
|
"index.js",
|
|
"tracing.js",
|
|
"tracing-profiling.js",
|
|
"cjs/",
|
|
"umd/"
|
|
],
|
|
"browserify": {
|
|
"transform": [
|
|
"loose-envify"
|
|
]
|
|
}
|
|
}
|