package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "egg-logrotator",
  3. "version": "3.1.0",
  4. "description": "logrotator for egg",
  5. "eggPlugin": {
  6. "name": "logrotator",
  7. "dep": [
  8. "schedule"
  9. ]
  10. },
  11. "keywords": [
  12. "egg",
  13. "eggPlugin",
  14. "egg-plugin",
  15. "logger",
  16. "logrotator"
  17. ],
  18. "files": [
  19. "app",
  20. "utils.js",
  21. "config",
  22. "agent.js",
  23. "app.js"
  24. ],
  25. "dependencies": {
  26. "debug": "^4.1.1",
  27. "moment": "^2.24.0",
  28. "mz": "^2.7.0"
  29. },
  30. "devDependencies": {
  31. "autod": "^3.1.0",
  32. "egg": "^2.0.0",
  33. "egg-bin": "^4.13.0",
  34. "egg-ci": "^1.11.0",
  35. "egg-logger": "^2.4.1",
  36. "egg-mock": "^3.22.2",
  37. "eslint": "^5.16.0",
  38. "eslint-config-egg": "^7.3.1",
  39. "glob": "^7.1.3",
  40. "mz-modules": "^2.1.0",
  41. "pedding": "1"
  42. },
  43. "engines": {
  44. "node": ">=8.0.0"
  45. },
  46. "scripts": {
  47. "lint": "eslint .",
  48. "pkgfiles": "egg-bin pkgfiles",
  49. "test": "npm run lint -- --fix && npm run pkgfiles && npm run test-local",
  50. "test-local": "egg-bin test",
  51. "cov": "egg-bin cov",
  52. "ci": "npm run lint && npm run pkgfiles -- --check && npm run cov",
  53. "autod": "autod"
  54. },
  55. "ci": {
  56. "type": "travis",
  57. "os": {
  58. "travis": "linux, osx, windows"
  59. },
  60. "nyc": true,
  61. "version": "8, 10",
  62. "license": {
  63. "year": 2016
  64. }
  65. },
  66. "repository": {
  67. "type": "git",
  68. "url": "git+https://github.com/eggjs/egg-logrotator.git"
  69. },
  70. "bugs": {
  71. "url": "https://github.com/eggjs/egg/issues"
  72. },
  73. "homepage": "https://github.com/eggjs/egg-logrotator#readme",
  74. "author": "tianyi.jiangty",
  75. "license": "MIT"
  76. }