package.json 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. "name": "@nuxt/friendly-errors-webpack-plugin",
  3. "publishConfig": {
  4. "access": "public"
  5. },
  6. "version": "2.5.2",
  7. "description": "Recognizes certain classes of webpack errors and cleans, aggregates and prioritizes them to provide a better Developer Experience",
  8. "main": "index.js",
  9. "scripts": {
  10. "test": "eslint . && jest",
  11. "release": "standard-version"
  12. },
  13. "files": [
  14. "src",
  15. "index.js"
  16. ],
  17. "keywords": [
  18. "friendly",
  19. "errors",
  20. "webpack",
  21. "plugin"
  22. ],
  23. "author": "Geoffroy Warin",
  24. "repository": {
  25. "type": "git",
  26. "url": "git+https://github.com/nuxt/friendly-errors-webpack-plugin.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/nuxt/friendly-errors-webpack-plugin/issues"
  30. },
  31. "license": "MIT",
  32. "peerDependencies": {
  33. "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0"
  34. },
  35. "devDependencies": {
  36. "babel-core": "^6.23.1",
  37. "babel-eslint": "^8.0.0",
  38. "babel-loader": "^7.1.4",
  39. "babel-plugin-transform-async-to-generator": "^6.22.0",
  40. "babel-preset-react": "^6.23.0",
  41. "eslint": "^5.8.0",
  42. "eslint-config-standard": "^12.0.0",
  43. "eslint-loader": "^2.0.0",
  44. "eslint-plugin-import": "^2.14.0",
  45. "eslint-plugin-node": "^8.0.0",
  46. "eslint-plugin-promise": "^4.0.1",
  47. "eslint-plugin-standard": "^4.0.0",
  48. "expect": "^1.20.2",
  49. "jest": "^22.4.2",
  50. "memory-fs": "^0.4.1",
  51. "standard-version": "^4.3.0",
  52. "strip-ansi": "^5.0.0",
  53. "webpack": "^4.23.1"
  54. },
  55. "dependencies": {
  56. "chalk": "^2.3.2",
  57. "consola": "^2.6.0",
  58. "error-stack-parser": "^2.0.0",
  59. "string-width": "^4.2.3"
  60. },
  61. "jest": {
  62. "testEnvironment": "node"
  63. },
  64. "engines": {
  65. "node": ">=8.0.0",
  66. "npm": ">=5.0.0"
  67. }
  68. }