package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "winston-daily-rotate-file",
  3. "version": "4.7.1",
  4. "description": "A transport for winston which logs to a rotating file each day.",
  5. "main": "index.js",
  6. "types": "index.d.ts",
  7. "engines": {
  8. "node": ">=8"
  9. },
  10. "scripts": {
  11. "test": "mocha --ignore **/*.worker.js && eslint ."
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git@github.com:winstonjs/winston-daily-rotate-file.git"
  16. },
  17. "keywords": [
  18. "winston",
  19. "daily-rotate-file",
  20. "log-rotate",
  21. "logrotate"
  22. ],
  23. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/winstonjs/winston-daily-rotate-file/issues"
  27. },
  28. "files": [
  29. "daily-rotate-file.js",
  30. "index.js",
  31. "index.d.ts"
  32. ],
  33. "homepage": "https://github.com/winstonjs/winston-daily-rotate-file#readme",
  34. "peerDependencies": {
  35. "winston": "^3"
  36. },
  37. "devDependencies": {
  38. "chai": "4.2.0",
  39. "eslint": "^6.8.0",
  40. "eslint-plugin-node": "^11.1.0",
  41. "mocha": "^7.2.0",
  42. "rimraf": "^3.0.2",
  43. "threads": "^1.7.0"
  44. },
  45. "dependencies": {
  46. "file-stream-rotator": "^0.6.1",
  47. "object-hash": "^2.0.1",
  48. "triple-beam": "^1.3.0",
  49. "winston-transport": "^4.4.0"
  50. }
  51. }