Files
create-react-app/packages/react-app-polyfill/package.json
Philip Harrison ced3fd49ca Add directory details to packages/* package.json (#6826)
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).
2019-04-16 07:58:03 -07:00

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"
}
}