UNPKG

debug-logfmt

Version:
113 lines 2.84 kB
{ "name": "debug-logfmt", "description": "debug module using logfmt format", "homepage": "https://github.com/Kikobeats/debug-logfmt", "version": "1.4.0", "types": "./src/index.d.ts", "main": "src/index.js", "exports": { ".": { "types": "./src/index.d.ts", "default": "./src/index.js" }, "./encode": { "types": "./src/encode.d.ts", "default": "./src/encode.js" } }, "author": { "email": "josefrancisco.verdu@gmail.com", "name": "Kiko Beats", "url": "https://kikobeats.com" }, "contributors": [], "repository": { "type": "git", "url": "git+https://github.com/Kikobeats/debug-logfmt.git" }, "bugs": { "url": "https://github.com/Kikobeats/debug-logfmt/issues" }, "keywords": [ "debug", "debugger", "herokubunyan", "log", "logfmt", "logger", "logging", "winston" ], "dependencies": { "@kikobeats/time-span": "~1.0.5", "debug-fabulous": "~2.0.8", "pretty-ms": "~7.0.1" }, "devDependencies": { "@commitlint/cli": "latest", "@commitlint/config-conventional": "latest", "@ksmithut/prettier-standard": "latest", "ava": "latest", "c8": "latest", "ci-publish": "latest", "finepack": "latest", "git-authors-cli": "latest", "github-generate-release": "latest", "nano-staged": "latest", "simple-git-hooks": "latest", "standard": "latest", "standard-markdown": "latest", "standard-version": "latest", "strip-ansi": "6", "tinyspawn": "latest" }, "engines": { "node": ">= 8" }, "files": [ "src" ], "license": "MIT", "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "body-max-line-length": [ 0 ] } }, "eslintIgnore": [ "*.d.ts" ], "nano-staged": { "*.js": [ "prettier-standard", "standard --fix" ], "*.md": [ "standard-markdown" ], "package.json": [ "finepack" ] }, "simple-git-hooks": { "commit-msg": "npx commitlint --edit", "pre-commit": "npx nano-staged" }, "scripts": { "clean": "rm -rf node_modules", "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true", "coverage": "nyc report --reporter=text-lcov | coveralls", "lint": "standard", "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)", "pretest": "npm run lint", "pretty": "prettier-standard index.js {core,test,bin,scripts}/**/*.js --single-quote --print-width 100", "release": "standard-version -a", "release:github": "github-generate-release", "release:tags": "git push --follow-tags origin HEAD:master", "test": "c8 ava" } }