package.json 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "winston-transport",
  3. "description": "Base stream implementations for winston@3 and up.",
  4. "version": "4.7.0",
  5. "main": "index.js",
  6. "browser": "dist/index.js",
  7. "scripts": {
  8. "lint": "eslint test/*.js index.js --resolve-plugins-relative-to ./node_modules/@dabh/eslint-config-populist",
  9. "pretest": "npm run lint && npm run build",
  10. "test": "nyc mocha test/*.test.js",
  11. "report": "nyc report --reporter=lcov",
  12. "build": "rimraf dist && babel *.js -d ./dist",
  13. "prepublishOnly": "npm run build"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git@github.com:winstonjs/winston-transport.git"
  18. },
  19. "keywords": [
  20. "winston",
  21. "transport",
  22. "winston3"
  23. ],
  24. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/winstonjs/winston-transport/issues"
  28. },
  29. "homepage": "https://github.com/winstonjs/winston-transport#readme",
  30. "dependencies": {
  31. "logform": "^2.3.2",
  32. "readable-stream": "^3.6.0",
  33. "triple-beam": "^1.3.0"
  34. },
  35. "devDependencies": {
  36. "@types/node": "^20.8.6",
  37. "abstract-winston-transport": ">=0.5.1",
  38. "assume": "^2.3.0",
  39. "babel-cli": "^6.26.0",
  40. "babel-preset-env": "^1.7.0",
  41. "deep-equal": "^2.0.5",
  42. "eslint": "^8.8.0",
  43. "@dabh/eslint-config-populist": "^5.0.0",
  44. "mocha": "^10.0.0",
  45. "nyc": "^15.1.0",
  46. "rimraf": "^5.0.5",
  47. "winston-compat": "^0.1.5"
  48. },
  49. "engines": {
  50. "node": ">= 12.0.0"
  51. }
  52. }