package.json 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. {
  2. "name": "egg-core",
  3. "version": "4.23.0",
  4. "description": "A core Pluggable framework based on koa",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "scripts": {
  8. "autod": "autod",
  9. "lint": "eslint .",
  10. "test": "npm run lint -- --fix && egg-bin test",
  11. "test-local": "egg-bin test",
  12. "cov": "egg-bin cov",
  13. "pkgfiles": "egg-bin pkgfiles",
  14. "ci": "egg-bin pkgfiles --check && npm run lint && npm run cov",
  15. "contributor": "git-contributor"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/eggjs/egg-core.git"
  20. },
  21. "keywords": [
  22. "egg",
  23. "loader"
  24. ],
  25. "author": "gxcsoccer <gxcsoccer@126.com>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/eggjs/egg/issues"
  29. },
  30. "homepage": "https://github.com/eggjs/egg-core#readme",
  31. "engines": {
  32. "node": ">= 8.5.0"
  33. },
  34. "ci": {
  35. "type": "github",
  36. "version": "8, 10, 12, 14, 16",
  37. "afterScript": "after_success:\n - npminstall codecov && codecov --disable=gcov",
  38. "license": {
  39. "year": 2016
  40. }
  41. },
  42. "devDependencies": {
  43. "autod": "^3.1.0",
  44. "await-event": "^2.1.0",
  45. "coffee": "^5.2.1",
  46. "egg-bin": "^4.13.0",
  47. "egg-ci": "^1.12.0",
  48. "egg-utils": "^2.4.1",
  49. "eslint": "^5.16.0",
  50. "eslint-config-egg": "^7.4.1",
  51. "git-contributor": "^1.0.10",
  52. "jest": "^24.8.0",
  53. "js-yaml": "^3.13.1",
  54. "mm": "^2.5.0",
  55. "mz-modules": "^2.1.0",
  56. "pedding": "^1.1.0",
  57. "rimraf": "^2.6.3",
  58. "spy": "^1.0.0",
  59. "supertest": "^4.0.2",
  60. "ts-node": "^8.0.3",
  61. "typescript": "^3.3.3333"
  62. },
  63. "dependencies": {
  64. "@eggjs/router": "^2.0.0",
  65. "@types/depd": "^1.1.32",
  66. "@types/koa": "^2.0.48",
  67. "co": "^4.6.0",
  68. "debug": "^4.1.1",
  69. "depd": "^2.0.0",
  70. "egg-logger": "^2.4.1",
  71. "egg-path-matching": "^1.0.1",
  72. "extend2": "^1.0.0",
  73. "get-ready": "^2.0.1",
  74. "globby": "^10.0.2",
  75. "is-type-of": "^1.2.1",
  76. "koa": "^2.7.0",
  77. "koa-convert": "^1.2.0",
  78. "node-homedir": "^1.1.1",
  79. "ready-callback": "^2.1.0",
  80. "utility": "^1.16.1"
  81. },
  82. "files": [
  83. "index.js",
  84. "lib",
  85. "index.d.ts"
  86. ]
  87. }