package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "winston",
  3. "description": "A logger for just about everything.",
  4. "version": "3.11.0",
  5. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  6. "maintainers": [
  7. "David Hyde <dabh@alumni.stanford.edu>"
  8. ],
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/winstonjs/winston.git"
  12. },
  13. "keywords": [
  14. "winston",
  15. "logger",
  16. "logging",
  17. "logs",
  18. "sysadmin",
  19. "bunyan",
  20. "pino",
  21. "loglevel",
  22. "tools",
  23. "json",
  24. "stream"
  25. ],
  26. "dependencies": {
  27. "@dabh/diagnostics": "^2.0.2",
  28. "@colors/colors": "^1.6.0",
  29. "async": "^3.2.3",
  30. "is-stream": "^2.0.0",
  31. "logform": "^2.4.0",
  32. "one-time": "^1.0.0",
  33. "readable-stream": "^3.4.0",
  34. "safe-stable-stringify": "^2.3.1",
  35. "stack-trace": "0.0.x",
  36. "triple-beam": "^1.3.0",
  37. "winston-transport": "^4.5.0"
  38. },
  39. "devDependencies": {
  40. "@babel/cli": "^7.17.0",
  41. "@babel/core": "^7.17.2",
  42. "@babel/preset-env": "^7.16.7",
  43. "@dabh/eslint-config-populist": "^5.0.0",
  44. "@types/node": "^20.3.1",
  45. "abstract-winston-transport": "^0.5.1",
  46. "assume": "^2.2.0",
  47. "cross-spawn-async": "^2.2.5",
  48. "eslint": "^8.9.0",
  49. "hock": "^1.4.1",
  50. "mocha": "8.1.3",
  51. "nyc": "^15.1.0",
  52. "rimraf": "^5.0.5",
  53. "split2": "^4.1.0",
  54. "std-mocks": "^1.0.1",
  55. "through2": "^4.0.2",
  56. "winston-compat": "^0.1.5"
  57. },
  58. "main": "./lib/winston.js",
  59. "browser": "./dist/winston",
  60. "types": "./index.d.ts",
  61. "scripts": {
  62. "lint": "eslint lib/*.js lib/winston/*.js lib/winston/**/*.js --resolve-plugins-relative-to ./node_modules/@dabh/eslint-config-populist",
  63. "test": "mocha",
  64. "test:coverage": "nyc npm run test:unit",
  65. "test:unit": "mocha test/unit",
  66. "test:integration": "mocha test/integration",
  67. "build": "rimraf dist && babel lib -d dist",
  68. "prepublishOnly": "npm run build"
  69. },
  70. "engines": {
  71. "node": ">= 12.0.0"
  72. },
  73. "license": "MIT"
  74. }