package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@soda/friendly-errors-webpack-plugin",
  3. "version": "1.7.1",
  4. "description": "Recognizes certain classes of webpack errors and cleans, aggregates and prioritizes them to provide a better Developer Experience",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "eslint --ignore-pattern test/* && jest"
  8. },
  9. "files": [
  10. "src",
  11. "index.js"
  12. ],
  13. "keywords": [
  14. "friendly",
  15. "errors",
  16. "webpack",
  17. "plugin"
  18. ],
  19. "author": "Geoffroy Warin",
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/sodatea/friendly-errors-webpack-plugin.git"
  23. },
  24. "bugs": {
  25. "url": "https://github.com/sodatea/friendly-errors-webpack-plugin/issues"
  26. },
  27. "license": "MIT",
  28. "peerDependencies": {
  29. "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
  30. },
  31. "devDependencies": {
  32. "babel-core": "^6.23.1",
  33. "babel-eslint": "^7.1.1",
  34. "babel-loader": "^6.3.0",
  35. "babel-plugin-transform-async-to-generator": "^6.22.0",
  36. "babel-preset-react": "^6.23.0",
  37. "eslint": "^3.16.1",
  38. "eslint-loader": "^1.6.1",
  39. "expect": "^1.20.2",
  40. "jest": "^18.1.0",
  41. "memory-fs": "^0.4.1",
  42. "webpack": "^2.2.1"
  43. },
  44. "dependencies": {
  45. "chalk": "^1.1.3",
  46. "error-stack-parser": "^2.0.0",
  47. "string-width": "^2.0.0"
  48. }
  49. }