package.json 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. {
  2. "name": "react-error-overlay",
  3. "version": "6.0.10",
  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.0.1",
  44. "chalk": "^4.1.2",
  45. "chokidar": "^3.5.2",
  46. "cross-env": "^7.0.3",
  47. "eslint": "^8.3.0",
  48. "eslint-config-react-app": "^7.0.0",
  49. "flow-bin": "^0.116.0",
  50. "html-entities": "^2.3.2",
  51. "jest": "^27.4.3",
  52. "jest-fetch-mock": "^3.0.3",
  53. "object-assign": "^4.1.1",
  54. "promise": "^8.1.0",
  55. "raw-loader": "^4.0.2",
  56. "react": "^17.0.2",
  57. "react-app-polyfill": "^3.0.0",
  58. "react-dom": "^17.0.2",
  59. "rimraf": "^3.0.2",
  60. "settle-promise": "^1.0.0",
  61. "source-map": "^0.5.7",
  62. "webpack": "^5.64.4"
  63. },
  64. "jest": {
  65. "setupFiles": [
  66. "./src/__tests__/setupJest.js"
  67. ],
  68. "collectCoverage": true,
  69. "coverageReporters": [
  70. "json"
  71. ],
  72. "testMatch": [
  73. "<rootDir>/src/**/__tests__/**/*.js?(x)",
  74. "<rootDir>/src/**/?(*.)(spec|test).js?(x)"
  75. ],
  76. "testPathIgnorePatterns": [
  77. "/node_modules/",
  78. "/fixtures/",
  79. "setupJest.js"
  80. ]
  81. },
  82. "gitHead": "221e511730ca51c036c6954a9d2ee7659ff860f9"
  83. }