package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "egg-onerror",
  3. "version": "2.1.1",
  4. "description": "error handler for egg",
  5. "eggPlugin": {
  6. "name": "onerror",
  7. "optionalDependencies": [
  8. "jsonp"
  9. ]
  10. },
  11. "files": [
  12. "config",
  13. "lib",
  14. "app.js",
  15. "agent.js"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/eggjs/egg-onerror.git"
  20. },
  21. "keywords": [
  22. "egg",
  23. "egg-plugin",
  24. "onerror"
  25. ],
  26. "dependencies": {
  27. "cookie": "^0.3.1",
  28. "koa-onerror": "^4.0.0",
  29. "mustache": "^2.3.0",
  30. "stack-trace": "^0.0.10"
  31. },
  32. "devDependencies": {
  33. "autod": "^3.0.0",
  34. "egg": "next",
  35. "egg-bin": "^4.3.5",
  36. "egg-ci": "^1.8.0",
  37. "egg-mock": "^3.13.1",
  38. "eslint": "^4.11.0",
  39. "eslint-config-egg": "^5.1.1",
  40. "pedding": "^1.1.0",
  41. "rimraf": "^2.6.2"
  42. },
  43. "engines": {
  44. "node": ">=8.0.0"
  45. },
  46. "scripts": {
  47. "test": "npm run lint -- --fix && npm run test-local",
  48. "test-local": "egg-bin test",
  49. "cov": "egg-bin cov",
  50. "lint": "eslint .",
  51. "ci": "npm run lint && npm run cov",
  52. "autod": "autod"
  53. },
  54. "ci": {
  55. "version": "14, 16"
  56. },
  57. "author": "dead_horse"
  58. }