package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "winston",
  3. "description": "A logger for just about everything.",
  4. "version": "3.1.0",
  5. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  6. "maintainers": [
  7. "Jarrett Cruger <jcrugzz@gmail.com>",
  8. "Chris Alderson <chrisalderson@protonmail.com>",
  9. "David Hyde <dabh@stanford.edu>"
  10. ],
  11. "repository": {
  12. "type": "git",
  13. "url": "https://github.com/winstonjs/winston.git"
  14. },
  15. "keywords": [
  16. "winston",
  17. "logger",
  18. "logging",
  19. "logs",
  20. "sysadmin",
  21. "bunyan",
  22. "pino",
  23. "loglevel",
  24. "tools",
  25. "json",
  26. "stream"
  27. ],
  28. "dependencies": {
  29. "async": "^2.6.0",
  30. "diagnostics": "^1.1.1",
  31. "is-stream": "^1.1.0",
  32. "logform": "^1.9.1",
  33. "one-time": "0.0.4",
  34. "readable-stream": "^2.3.6",
  35. "stack-trace": "0.0.x",
  36. "triple-beam": "^1.3.0",
  37. "winston-transport": "^4.2.0"
  38. },
  39. "devDependencies": {
  40. "@types/node": "^10.9.3",
  41. "abstract-winston-transport": ">= 0.5.1",
  42. "assume": "^2.1.0",
  43. "colors": "^1.3.2",
  44. "cross-spawn-async": "^2.0.0",
  45. "eslint-config-populist": "^4.1.0",
  46. "hock": "^1.3.3",
  47. "mocha": "^5.2.0",
  48. "nyc": "^13.0.1",
  49. "rimraf": "^2.6.2",
  50. "split2": "^3.0.0",
  51. "std-mocks": "^1.0.0",
  52. "through2": "^2.0.0",
  53. "winston-compat": "^0.1.1"
  54. },
  55. "main": "./lib/winston",
  56. "types": "./index.d.ts",
  57. "scripts": {
  58. "lint": "populist lib/*.js lib/winston/*.js lib/winston/**/*.js",
  59. "pretest": "npm run lint",
  60. "test": "nyc --reporter=text --reporter lcov npm run test:mocha",
  61. "test:mocha": "mocha test/*.test.js test/**/*.test.js --exit"
  62. },
  63. "engines": {
  64. "node": ">= 6.4.0"
  65. },
  66. "license": "MIT"
  67. }