web 3d图形渲染器
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

91 lines
2.4 KiB

  1. {
  2. "name": "react-error-overlay",
  3. "version": "6.0.9",
  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": {
  14. "type": "git",
  15. "url": "https://github.com/facebook/create-react-app.git",
  16. "directory": "packages/react-error-overlay"
  17. },
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/facebook/create-react-app/issues"
  21. },
  22. "keywords": [
  23. "overlay",
  24. "syntax",
  25. "error",
  26. "red",
  27. "box",
  28. "redbox",
  29. "crash",
  30. "warning"
  31. ],
  32. "author": "Joe Haddad <timer150@gmail.com>",
  33. "files": [
  34. "lib/index.js"
  35. ],
  36. "devDependencies": {
  37. "@babel/code-frame": "7.10.4",
  38. "@babel/core": "7.12.3",
  39. "anser": "1.4.10",
  40. "babel-eslint": "^10.1.0",
  41. "babel-jest": "^26.6.0",
  42. "babel-loader": "8.1.0",
  43. "babel-preset-react-app": "^10.0.0",
  44. "chalk": "2.4.2",
  45. "chokidar": "^3.4.3",
  46. "cross-env": "7.0.2",
  47. "eslint": "^7.11.0",
  48. "eslint-config-react-app": "^6.0.0",
  49. "eslint-plugin-flowtype": "^5.2.0",
  50. "eslint-plugin-import": "^2.22.1",
  51. "eslint-plugin-jest": "^24.1.0",
  52. "eslint-plugin-jsx-a11y": "^6.3.1",
  53. "eslint-plugin-react": "^7.21.5",
  54. "eslint-plugin-react-hooks": "^4.2.0",
  55. "eslint-plugin-testing-library": "^3.9.2",
  56. "flow-bin": "^0.116.0",
  57. "html-entities": "1.3.1",
  58. "jest": "26.6.0",
  59. "jest-fetch-mock": "2.1.2",
  60. "object-assign": "4.1.1",
  61. "promise": "8.1.0",
  62. "raw-loader": "^4.0.2",
  63. "react": "^17.0.1",
  64. "react-app-polyfill": "^2.0.0",
  65. "react-dom": "^17.0.1",
  66. "rimraf": "^3.0.2",
  67. "settle-promise": "1.0.0",
  68. "source-map": "0.5.7",
  69. "terser-webpack-plugin": "4.2.3",
  70. "webpack": "^4.44.2"
  71. },
  72. "jest": {
  73. "setupFiles": [
  74. "./src/__tests__/setupJest.js"
  75. ],
  76. "collectCoverage": true,
  77. "coverageReporters": [
  78. "json"
  79. ],
  80. "testMatch": [
  81. "<rootDir>/src/**/__tests__/**/*.js?(x)",
  82. "<rootDir>/src/**/?(*.)(spec|test).js?(x)"
  83. ],
  84. "testPathIgnorePatterns": [
  85. "/node_modules/",
  86. "/fixtures/",
  87. "setupJest.js"
  88. ]
  89. },
  90. "gitHead": "9c752607bb1e96c9819a2eebc330c66909b819e0"
  91. }