| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | {  "name": "logform",  "version": "1.10.0",  "description": "An mutable object-based log format designed for chaining & objectMode streams.",  "main": "index.js",  "browser": "dist/browser.js",  "scripts": {    "lint": "populist *.js test/*.js examples/*.js",    "pretest": "npm run lint && npm run build",    "test": "nyc mocha test/*.test.js",    "build": "rimraf dist && babel *.js -d ./dist",    "prepublishOnly": "npm run build"  },  "repository": {    "type": "git",    "url": "git+https://github.com/winstonjs/logform.git"  },  "keywords": [    "winston",    "logging",    "format",    "winstonjs"  ],  "author": "Charlie Robbins <charlie.robbins@gmail.com>",  "license": "MIT",  "bugs": {    "url": "https://github.com/winstonjs/logform/issues"  },  "homepage": "https://github.com/winstonjs/logform#readme",  "dependencies": {    "colors": "^1.2.1",    "fast-safe-stringify": "^2.0.4",    "fecha": "^2.3.3",    "ms": "^2.1.1",    "triple-beam": "^1.2.0"  },  "devDependencies": {    "assume": "^2.0.1",    "babel-cli": "^6.26.0",    "babel-preset-env": "^1.7.0",    "eslint-config-populist": "^4.1.0",    "mocha": "^5.1.1",    "nyc": "^11.7.1",    "rimraf": "^2.6.2"  },  "types": "./index.d.ts"}
 |