| 1 | {
|
|---|
| 2 | "name": "react-error-overlay",
|
|---|
| 3 | "version": "6.1.0",
|
|---|
| 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 | "flow": "flow"
|
|---|
| 13 | },
|
|---|
| 14 | "repository": {
|
|---|
| 15 | "type": "git",
|
|---|
| 16 | "url": "https://github.com/facebook/create-react-app.git",
|
|---|
| 17 | "directory": "packages/react-error-overlay"
|
|---|
| 18 | },
|
|---|
| 19 | "license": "MIT",
|
|---|
| 20 | "bugs": {
|
|---|
| 21 | "url": "https://github.com/facebook/create-react-app/issues"
|
|---|
| 22 | },
|
|---|
| 23 | "keywords": [
|
|---|
| 24 | "overlay",
|
|---|
| 25 | "syntax",
|
|---|
| 26 | "error",
|
|---|
| 27 | "red",
|
|---|
| 28 | "box",
|
|---|
| 29 | "redbox",
|
|---|
| 30 | "crash",
|
|---|
| 31 | "warning"
|
|---|
| 32 | ],
|
|---|
| 33 | "author": "Joe Haddad <timer150@gmail.com>",
|
|---|
| 34 | "files": [
|
|---|
| 35 | "lib/index.js"
|
|---|
| 36 | ],
|
|---|
| 37 | "devDependencies": {
|
|---|
| 38 | "@babel/code-frame": "^7.16.0",
|
|---|
| 39 | "@babel/core": "^7.16.0",
|
|---|
| 40 | "anser": "^2.1.0",
|
|---|
| 41 | "babel-jest": "^27.4.2",
|
|---|
| 42 | "babel-loader": "^8.2.3",
|
|---|
| 43 | "babel-preset-react-app": "^10.1.0",
|
|---|
| 44 | "chalk": "^4.1.2",
|
|---|
| 45 | "chokidar": "^3.5.2",
|
|---|
| 46 | "cross-env": "^7.0.3",
|
|---|
| 47 | "flow-bin": "^0.116.0",
|
|---|
| 48 | "html-entities": "^2.3.2",
|
|---|
| 49 | "jest": "^27.4.3",
|
|---|
| 50 | "jest-fetch-mock": "^3.0.3",
|
|---|
| 51 | "object-assign": "^4.1.1",
|
|---|
| 52 | "promise": "^8.1.0",
|
|---|
| 53 | "raw-loader": "^4.0.2",
|
|---|
| 54 | "react": "^17.0.2",
|
|---|
| 55 | "react-app-polyfill": "^3.0.0",
|
|---|
| 56 | "react-dom": "^17.0.2",
|
|---|
| 57 | "rimraf": "^3.0.2",
|
|---|
| 58 | "settle-promise": "^1.0.0",
|
|---|
| 59 | "source-map": "^0.5.7",
|
|---|
| 60 | "webpack": "^5.64.4"
|
|---|
| 61 | },
|
|---|
| 62 | "jest": {
|
|---|
| 63 | "setupFiles": [
|
|---|
| 64 | "./src/__tests__/setupJest.js"
|
|---|
| 65 | ],
|
|---|
| 66 | "collectCoverage": true,
|
|---|
| 67 | "coverageReporters": [
|
|---|
| 68 | "json"
|
|---|
| 69 | ],
|
|---|
| 70 | "testMatch": [
|
|---|
| 71 | "<rootDir>/src/**/__tests__/**/*.js?(x)",
|
|---|
| 72 | "<rootDir>/src/**/?(*.)(spec|test).js?(x)"
|
|---|
| 73 | ],
|
|---|
| 74 | "testPathIgnorePatterns": [
|
|---|
| 75 | "/node_modules/",
|
|---|
| 76 | "/fixtures/",
|
|---|
| 77 | "setupJest.js"
|
|---|
| 78 | ]
|
|---|
| 79 | },
|
|---|
| 80 | "gitHead": "6254386531d263688ccfa542d0e628fbc0de0b28"
|
|---|
| 81 | }
|
|---|