package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "winston-transport",
  3. "description": "Base stream implementations for winston@3 and up.",
  4. "version": "4.2.0",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "populist config/*.js index.js",
  8. "pretest": "npm run lint",
  9. "test": "nyc mocha test/*.test.js",
  10. "report": "nyc report --reporter=lcov"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git@github.com:winstonjs/winston-transport.git"
  15. },
  16. "keywords": [
  17. "winston",
  18. "transport",
  19. "winston3"
  20. ],
  21. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  22. "license": "MIT",
  23. "bugs": {
  24. "url": "https://github.com/winstonjs/winston-transport/issues"
  25. },
  26. "homepage": "https://github.com/winstonjs/winston-transport#readme",
  27. "dependencies": {
  28. "readable-stream": "^2.3.6",
  29. "triple-beam": "^1.2.0"
  30. },
  31. "devDependencies": {
  32. "@types/node": "^10.1.4",
  33. "abstract-winston-transport": ">= 0.3.0",
  34. "assume": "^2.0.1",
  35. "eslint-config-populist": "^4.1.0",
  36. "logform": "^1.4.0",
  37. "mocha": "^5.0.5",
  38. "nyc": "^11.6.0",
  39. "winston-compat": "0.1.0"
  40. },
  41. "engines": {
  42. "node": ">= 6.4.0"
  43. }
  44. }