package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "egg-scripts",
  3. "version": "2.17.0",
  4. "description": "deploy tool for egg project",
  5. "main": "index.js",
  6. "bin": {
  7. "egg-scripts": "bin/egg-scripts.js",
  8. "eggctl": "bin/egg-scripts.js"
  9. },
  10. "dependencies": {
  11. "await-event": "^2.1.0",
  12. "common-bin": "^2.8.0",
  13. "debug": "^4.1.0",
  14. "egg-utils": "^2.4.1",
  15. "moment": "^2.23.0",
  16. "mz": "^2.7.0",
  17. "mz-modules": "^2.1.0",
  18. "node-homedir": "^1.1.1",
  19. "runscript": "^1.3.0",
  20. "source-map-support": "^0.5.9",
  21. "zlogger": "^1.1.0"
  22. },
  23. "devDependencies": {
  24. "autod": "^3.0.1",
  25. "co": "^4.6.0",
  26. "coffee": "^5.1.1",
  27. "egg": "^2.14.1",
  28. "egg-bin": "^4.9.0",
  29. "eslint": "^5.10.0",
  30. "eslint-config-egg": "^7.1.0",
  31. "git-contributor": "^1.0.10",
  32. "mm": "^2.4.1",
  33. "typescript": "^4",
  34. "urllib": "^2.31.3",
  35. "webstorm-disable-index": "^1.2.0"
  36. },
  37. "engines": {
  38. "node": ">=6.0.0"
  39. },
  40. "scripts": {
  41. "contributor": "git-contributor",
  42. "pkgfiles": "egg-bin pkgfiles",
  43. "test": "npm run lint -- --fix && npm run pkgfiles && npm run test-local",
  44. "test-local": "egg-bin test",
  45. "cov": "egg-bin cov",
  46. "lint": "eslint .",
  47. "ci": "npm run pkgfiles -- --check && npm run lint && npm run cov",
  48. "autod": "autod"
  49. },
  50. "files": [
  51. "index.js",
  52. "lib",
  53. "bin"
  54. ],
  55. "bug": {
  56. "url": "https://github.com/eggjs/egg/issues"
  57. },
  58. "homepage": "https://github.com/eggjs/egg-scripts",
  59. "repository": {
  60. "type": "git",
  61. "url": "git@github.com:eggjs/egg-scripts.git"
  62. },
  63. "author": "TZ <atian25@qq.com>",
  64. "license": "MIT"
  65. }