package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "egg-router-plus",
  3. "version": "1.3.1",
  4. "description": "The missing router features for eggjs",
  5. "eggPlugin": {
  6. "name": "routerPlus"
  7. },
  8. "keywords": [
  9. "egg",
  10. "eggPlugin",
  11. "egg-plugin",
  12. "egg-router"
  13. ],
  14. "dependencies": {
  15. "is-type-of": "^1.2.0"
  16. },
  17. "devDependencies": {
  18. "@types/koa-router": "^7.0.38",
  19. "autod": "^3.0.0",
  20. "autod-egg": "^1.0.0",
  21. "egg": "^2.0.0",
  22. "egg-bin": "^4.3.0",
  23. "egg-ci": "^1.8.0",
  24. "egg-mock": "^3.13.0",
  25. "eslint": "^4.11.0",
  26. "eslint-config-egg": "^5.1.0",
  27. "webstorm-disable-index": "^1.2.0"
  28. },
  29. "engines": {
  30. "node": ">=8.0.0"
  31. },
  32. "scripts": {
  33. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  34. "test-local": "egg-bin test",
  35. "cov": "egg-bin cov",
  36. "lint": "eslint .",
  37. "ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
  38. "pkgfiles": "egg-bin pkgfiles",
  39. "autod": "autod"
  40. },
  41. "files": [
  42. "app.js",
  43. "lib",
  44. "index.d.ts"
  45. ],
  46. "ci": {
  47. "version": "8, 9"
  48. },
  49. "repository": {
  50. "type": "git",
  51. "url": "git+https://github.com/eggjs/egg-router-plus.git"
  52. },
  53. "bugs": {
  54. "url": "https://github.com/eggjs/egg-router-plus/issues"
  55. },
  56. "homepage": "https://github.com/eggjs/egg-router-plus-router-plus#readme",
  57. "author": "TZ <atian25@qq.com>",
  58. "license": "MIT",
  59. "types": "index.d.ts"
  60. }