package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "egg-logger",
  3. "version": "2.9.0",
  4. "description": "egg logger",
  5. "main": "index.js",
  6. "dependencies": {
  7. "chalk": "^2.4.1",
  8. "circular-json-for-egg": "^1.0.0",
  9. "debug": "^2.6.9",
  10. "depd": "^2.0.0",
  11. "egg-errors": "^2.2.0",
  12. "iconv-lite": "^0.4.24",
  13. "mkdirp": "^0.5.1",
  14. "utility": "^1.15.0"
  15. },
  16. "devDependencies": {
  17. "@types/node": "^10.3.4",
  18. "autod": "^3.0.1",
  19. "beautify-benchmark": "^0.2.4",
  20. "benchmark": "^2.1.4",
  21. "coffee": "^5.2.1",
  22. "egg-bin": "^4.9.0",
  23. "egg-ci": "^1.18.0",
  24. "eslint": "^5.11.1",
  25. "eslint-config-egg": "^7.1.0",
  26. "git-contributor": "^1.0.10",
  27. "ko-sleep": "^1.0.3",
  28. "koa": "^1.6.2",
  29. "mm": "^2.4.1",
  30. "mz": "^2.7.0",
  31. "mz-modules": "^2.1.0",
  32. "rimraf": "^2.6.2",
  33. "should": "^13.2.3",
  34. "supertest": "^3.3.0",
  35. "ts-node": "^7.0.1",
  36. "typescript": "^2.8.3"
  37. },
  38. "repository": {
  39. "type": "git",
  40. "url": "https://github.com/eggjs/egg-logger.git"
  41. },
  42. "homepage": "https://github.com/eggjs/egg-logger",
  43. "author": "fengmk2 <fengmk2@gmail.com> (https://github.com/fengmk2)",
  44. "scripts": {
  45. "contributor": "git-contributor",
  46. "autod": "autod",
  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. },
  53. "typings": "index.d.ts",
  54. "engines": {
  55. "node": ">=8.5.0"
  56. },
  57. "files": [
  58. "index.js",
  59. "lib",
  60. "index.d.ts"
  61. ],
  62. "ci": {
  63. "version": "8, 10, 12, 14, 16, 18",
  64. "type": "github",
  65. "os": {
  66. "github": "linux, macos"
  67. }
  68. },
  69. "license": "MIT"
  70. }