package.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "egg-cluster",
  3. "version": "1.27.1",
  4. "description": "cluster manager for egg",
  5. "main": "index.js",
  6. "scripts": {
  7. "autod": "autod",
  8. "lint": "eslint .",
  9. "test": "npm run lint -- --fix && npm run test-local",
  10. "test-local": "egg-bin test",
  11. "cov": "egg-bin cov --prerequire --timeout 100000",
  12. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  13. "pkgfiles": "egg-bin pkgfiles"
  14. },
  15. "files": [
  16. "index.js",
  17. "lib"
  18. ],
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/eggjs/egg-cluster.git"
  22. },
  23. "keywords": [
  24. "egg",
  25. "cluster",
  26. "process"
  27. ],
  28. "author": "dead-horse <dead_horse@qq.com>",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/eggjs/egg-cluster/issues"
  32. },
  33. "homepage": "https://github.com/eggjs/egg-cluster#readme",
  34. "dependencies": {
  35. "await-event": "^2.1.0",
  36. "cfork": "^1.7.1",
  37. "cluster-reload": "^1.0.2",
  38. "co": "^4.6.0",
  39. "debug": "^4.1.1",
  40. "depd": "^2.0.0",
  41. "detect-port": "^1.3.0",
  42. "egg-logger": "^2.3.2",
  43. "egg-utils": "^2.4.1",
  44. "get-ready": "^2.0.1",
  45. "graceful-process": "^1.2.0",
  46. "is-type-of": "^1.2.1",
  47. "mz-modules": "^2.1.0",
  48. "ps-tree": "^1.2.0",
  49. "semver": "^5.6.0",
  50. "sendmessage": "^1.1.0",
  51. "utility": "^1.15.0"
  52. },
  53. "devDependencies": {
  54. "address": "^1.0.3",
  55. "autod": "^3.0.1",
  56. "coffee": "^5.2.1",
  57. "egg": "^2.20.0",
  58. "egg-bin": "^4.11.1",
  59. "egg-ci": "^1.19.0",
  60. "egg-errors": "^2.2.0",
  61. "egg-mock": "^3.22.1",
  62. "eslint": "^5.15.1",
  63. "eslint-config-egg": "^7.2.0",
  64. "mz": "^2.7.0",
  65. "pedding": "^1.1.0",
  66. "supertest": "^4.0.0",
  67. "ts-node": "^6.0.3",
  68. "typescript": "^2.7.2"
  69. },
  70. "engines": {
  71. "node": ">= 8.0.0"
  72. },
  73. "ci": {
  74. "type": "github",
  75. "version": "8, 10, 12, 14, 16"
  76. }
  77. }