Files
create-react-app/packages/react-error-overlay/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

88 lines
2.2 KiB
JSON

{
"name": "react-error-overlay",
"version": "5.1.4",
"description": "An overlay for displaying stack frames.",
"main": "lib/index.js",
"sideEffects": false,
"scripts": {
"start": "cross-env NODE_ENV=development node build.js --watch",
"test": "cross-env NODE_ENV=test jest",
"build": "cross-env NODE_ENV=development node build.js",
"build:prod": "cross-env NODE_ENV=production node build.js"
},
"repository": {
"type" : "git",
"url" : "https://github.com/facebook/create-react-app.git",
"directory": "packages/react-error-overlay"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/facebook/create-react-app/issues"
},
"keywords": [
"overlay",
"syntax",
"error",
"red",
"box",
"redbox",
"crash",
"warning"
],
"author": "Joe Haddad <timer150@gmail.com>",
"files": [
"lib/index.js"
],
"devDependencies": {
"@babel/code-frame": "7.0.0",
"@babel/core": "7.4.3",
"anser": "1.4.8",
"babel-eslint": "10.0.1",
"babel-jest": "24.7.1",
"babel-loader": "8.0.5",
"babel-preset-react-app": "^7.0.2",
"chalk": "^2.4.2",
"chokidar": "^2.1.2",
"cross-env": "5.2.0",
"eslint": "5.16.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "2.50.1",
"eslint-plugin-import": "2.16.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-react": "7.12.4",
"flow-bin": "^0.63.1",
"html-entities": "1.2.1",
"jest": "24.7.1",
"jest-fetch-mock": "2.1.2",
"object-assign": "4.1.1",
"promise": "8.0.2",
"raw-loader": "^1.0.0",
"react": "^16.8.4",
"react-app-polyfill": "^0.2.2",
"react-dom": "^16.8.4",
"rimraf": "^2.6.3",
"settle-promise": "1.0.0",
"source-map": "0.5.6",
"terser-webpack-plugin": "1.2.3",
"webpack": "^4.29.6"
},
"jest": {
"setupFiles": [
"./src/__tests__/setupJest.js"
],
"collectCoverage": true,
"coverageReporters": [
"json"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.js?(x)",
"<rootDir>/src/**/?(*.)(spec|test).js?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/fixtures/",
"setupJest.js"
]
}
}