package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "egg-schedule",
  3. "version": "3.6.6",
  4. "description": "schedule plugin for egg, support corn job.",
  5. "eggPlugin": {
  6. "name": "schedule"
  7. },
  8. "files": [
  9. "app",
  10. "lib",
  11. "config",
  12. "agent.js",
  13. "app.js"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git@github.com:eggjs/egg-schedule.git"
  18. },
  19. "keywords": [
  20. "egg",
  21. "egg-plugin",
  22. "eggPlugin",
  23. "schedule",
  24. "cron"
  25. ],
  26. "dependencies": {
  27. "cron-parser": "^2.16.3",
  28. "humanize-ms": "^1.2.1",
  29. "is-type-of": "^1.2.1",
  30. "safe-timers": "^1.1.0",
  31. "utility": "^1.16.3"
  32. },
  33. "devDependencies": {
  34. "autod": "^3.1.0",
  35. "egg": "^2.27.0",
  36. "egg-bin": "^4.15.0",
  37. "egg-ci": "^1.15.0",
  38. "egg-mock": "^4.0.1",
  39. "eslint": "^7.8.0",
  40. "eslint-config-egg": "^8.1.1",
  41. "mz-modules": "^2.1.0"
  42. },
  43. "engines": {
  44. "node": ">=8.0.0"
  45. },
  46. "scripts": {
  47. "lint": "eslint .",
  48. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  49. "test-local": "egg-bin test",
  50. "cov": "egg-bin cov",
  51. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  52. "autod": "autod"
  53. },
  54. "ci": {
  55. "version": "10, 12",
  56. "license": true
  57. },
  58. "author": "dead_horse",
  59. "license": "MIT"
  60. }