package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "winston-daily-rotate-file",
  3. "version": "5.0.0",
  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. "release": "release-script"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git@github.com:winstonjs/winston-daily-rotate-file.git"
  17. },
  18. "keywords": [
  19. "winston",
  20. "daily-rotate-file",
  21. "log-rotate",
  22. "logrotate"
  23. ],
  24. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/winstonjs/winston-daily-rotate-file/issues"
  28. },
  29. "files": [
  30. "daily-rotate-file.js",
  31. "index.js",
  32. "index.d.ts"
  33. ],
  34. "homepage": "https://github.com/winstonjs/winston-daily-rotate-file#readme",
  35. "peerDependencies": {
  36. "winston": "^3"
  37. },
  38. "devDependencies": {
  39. "@alcalzone/release-script": "^3.7.0",
  40. "@alcalzone/release-script-plugin-license": "^3.7.0",
  41. "chai": "^4.4.1",
  42. "eslint": "^8.56.0",
  43. "eslint-plugin-node": "^11.1.0",
  44. "mocha": "^10.2.0",
  45. "rimraf": "^5.0.5",
  46. "threads": "^1.7.0"
  47. },
  48. "dependencies": {
  49. "file-stream-rotator": "^0.6.1",
  50. "object-hash": "^3.0.0",
  51. "triple-beam": "^1.4.1",
  52. "winston-transport": "^4.7.0"
  53. }
  54. }