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