package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "logform",
  3. "version": "2.6.0",
  4. "description": "An mutable object-based log format designed for chaining & objectMode streams.",
  5. "main": "index.js",
  6. "browser": "dist/browser.js",
  7. "scripts": {
  8. "lint": "eslint *.js test/*.js examples/*.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. "build": "rimraf dist && babel *.js -d ./dist",
  12. "prepublishOnly": "npm run build"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/winstonjs/logform.git"
  17. },
  18. "keywords": [
  19. "winston",
  20. "logging",
  21. "format",
  22. "winstonjs"
  23. ],
  24. "author": "Charlie Robbins <charlie.robbins@gmail.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/winstonjs/logform/issues"
  28. },
  29. "homepage": "https://github.com/winstonjs/logform#readme",
  30. "dependencies": {
  31. "@colors/colors": "1.6.0",
  32. "@types/triple-beam": "^1.3.2",
  33. "fecha": "^4.2.0",
  34. "ms": "^2.1.1",
  35. "safe-stable-stringify": "^2.3.1",
  36. "triple-beam": "^1.3.0"
  37. },
  38. "devDependencies": {
  39. "@babel/cli": "^7.10.3",
  40. "@babel/core": "^7.10.3",
  41. "@babel/preset-env": "^7.10.3",
  42. "@dabh/eslint-config-populist": "^5.0.0",
  43. "assume": "^2.2.0",
  44. "eslint": "^8.8.0",
  45. "mocha": "^10.0.0",
  46. "nyc": "^15.1.0",
  47. "rimraf": "^5.0.5"
  48. },
  49. "types": "./index.d.ts",
  50. "engines": {
  51. "node": ">= 12.0.0"
  52. }
  53. }