package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "logform",
  3. "version": "1.10.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": "populist *.js test/*.js examples/*.js",
  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": "^1.2.1",
  32. "fast-safe-stringify": "^2.0.4",
  33. "fecha": "^2.3.3",
  34. "ms": "^2.1.1",
  35. "triple-beam": "^1.2.0"
  36. },
  37. "devDependencies": {
  38. "assume": "^2.0.1",
  39. "babel-cli": "^6.26.0",
  40. "babel-preset-env": "^1.7.0",
  41. "eslint-config-populist": "^4.1.0",
  42. "mocha": "^5.1.1",
  43. "nyc": "^11.7.1",
  44. "rimraf": "^2.6.2"
  45. },
  46. "types": "./index.d.ts"
  47. }