UNPKG

2.16 kBJSONView Raw
1{
2 "name": "react-error-overlay",
3 "version": "5.1.1",
4 "description": "An overlay for displaying stack frames.",
5 "main": "lib/index.js",
6 "sideEffects": false,
7 "scripts": {
8 "start": "cross-env NODE_ENV=development node build.js --watch",
9 "test": "cross-env NODE_ENV=test jest",
10 "build": "cross-env NODE_ENV=development node build.js",
11 "build:prod": "cross-env NODE_ENV=production node build.js"
12 },
13 "repository": "facebook/create-react-app",
14 "license": "MIT",
15 "bugs": {
16 "url": "https://github.com/facebook/create-react-app/issues"
17 },
18 "keywords": [
19 "overlay",
20 "syntax",
21 "error",
22 "red",
23 "box",
24 "redbox",
25 "crash",
26 "warning"
27 ],
28 "author": "Joe Haddad <timer150@gmail.com>",
29 "files": [
30 "lib/index.js"
31 ],
32 "devDependencies": {
33 "@babel/code-frame": "7.0.0",
34 "@babel/core": "7.1.0",
35 "anser": "1.4.7",
36 "babel-core": "7.0.0-bridge.0",
37 "babel-eslint": "9.0.0",
38 "babel-jest": "23.6.0",
39 "babel-loader": "8.0.4",
40 "babel-preset-react-app": "^7.0.0",
41 "chalk": "^2.3.2",
42 "chokidar": "^2.0.2",
43 "cross-env": "5.2.0",
44 "eslint": "5.6.0",
45 "eslint-config-react-app": "^3.0.6",
46 "eslint-plugin-flowtype": "2.50.1",
47 "eslint-plugin-import": "2.14.0",
48 "eslint-plugin-jsx-a11y": "6.1.1",
49 "eslint-plugin-react": "7.11.1",
50 "flow-bin": "^0.63.1",
51 "html-entities": "1.2.1",
52 "jest": "23.6.0",
53 "jest-fetch-mock": "1.6.6",
54 "object-assign": "4.1.1",
55 "promise": "8.0.2",
56 "raw-loader": "^0.5.1",
57 "react": "^16.3.2",
58 "react-app-polyfill": "^0.2.0",
59 "react-dom": "^16.3.2",
60 "rimraf": "^2.6.2",
61 "settle-promise": "1.0.0",
62 "source-map": "0.5.6",
63 "terser-webpack-plugin": "1.1.0",
64 "webpack": "^4.8.1"
65 },
66 "jest": {
67 "setupFiles": [
68 "./src/__tests__/setupJest.js"
69 ],
70 "collectCoverage": true,
71 "coverageReporters": [
72 "json"
73 ],
74 "testMatch": [
75 "<rootDir>/src/**/__tests__/**/*.js?(x)",
76 "<rootDir>/src/**/?(*.)(spec|test).js?(x)"
77 ],
78 "testPathIgnorePatterns": [
79 "/node_modules/",
80 "/fixtures/",
81 "setupJest.js"
82 ]
83 }
84}