package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "koa-onerror",
  3. "version": "4.2.0",
  4. "description": "koa error handler, hack ctx.onerror",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "NODE_ENV=development egg-bin test",
  8. "test-cov": "NODE_ENV=development egg-bin cov",
  9. "ci": "npm run lint && npm run test-cov",
  10. "lint": "eslint test *.js --fix"
  11. },
  12. "files": [
  13. "index.js",
  14. "templates"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/koajs/onerror.git"
  19. },
  20. "keywords": [
  21. "koa",
  22. "middleware",
  23. "error"
  24. ],
  25. "author": "dead_horse <dead_horse@qq.com>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/koajs/onerror/issues"
  29. },
  30. "homepage": "https://github.com/koajs/onerror",
  31. "devDependencies": {
  32. "autod": "*",
  33. "co-busboy": "^1.4.0",
  34. "egg-bin": "^4.3.5",
  35. "egg-ci": "1",
  36. "eslint": "4",
  37. "eslint-config-egg": "5",
  38. "formstream": "^1.1.0",
  39. "koa": "2",
  40. "mz-modules": "^2.1.0",
  41. "pedding": "1",
  42. "supertest": "3",
  43. "urllib": "^2.29.1"
  44. },
  45. "engines": {
  46. "node": ">= 8.0.0"
  47. },
  48. "ci": {
  49. "version": "8, 10"
  50. },
  51. "dependencies": {
  52. "escape-html": "^1.0.3",
  53. "stream-wormhole": "^1.1.0"
  54. }
  55. }