mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-12 22:46:30 +08:00
Specifying the directory as part of the repository field in a package.json allows third party tools to provide better support when working with monorepos. For example, it allows them to correctly construct a commit diff for a specific package. This format was accepted by npm in [npm/rfcs#19](https://github.com/npm/rfcs/pull/19).
32 lines
711 B
JSON
32 lines
711 B
JSON
{
|
|
"name": "react-app-polyfill",
|
|
"version": "0.2.2",
|
|
"description": "Polyfills for various browsers including commonly used language features",
|
|
"repository": {
|
|
"type" : "git",
|
|
"url" : "https://github.com/facebook/create-react-app.git",
|
|
"directory": "packages/react-app-polyfill"
|
|
},
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/facebook/create-react-app/issues"
|
|
},
|
|
"engines": {
|
|
"node": ">=6"
|
|
},
|
|
"files": [
|
|
"ie9.js",
|
|
"ie11.js",
|
|
"jsdom.js",
|
|
"stable.js"
|
|
],
|
|
"dependencies": {
|
|
"core-js": "3.0.1",
|
|
"object-assign": "4.1.1",
|
|
"promise": "8.0.2",
|
|
"raf": "3.4.1",
|
|
"regenerator-runtime": "0.13.2",
|
|
"whatwg-fetch": "3.0.0"
|
|
}
|
|
}
|