winston-format-debug
Version:
Debug formatter for Winston
91 lines (90 loc) • 2.57 kB
JSON
{
"name": "winston-format-debug",
"version": "1.4.0",
"description": "Debug formatter for Winston",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && npm run lint && npm run test:unittest",
"build": "tsc",
"clean": "rm -rf dist coverage",
"test:unittest": "tsc -p test && jest --coverage",
"lint": "npm run lint:source && npm run lint:tests",
"lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
"lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"src/**/*.ts": [
"tslint -c tslint.json -t stylish"
],
"test/**/*.ts": [
"tslint -c test/tslint.json -t stylish"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwalton/winston-format-debug.git"
},
"keywords": [
"winston",
"log",
"debug",
"pretty",
"stream",
"stdout",
"error"
],
"author": {
"name": "Jason Walton",
"email": "dev@lucid.thedreaming.org",
"url": "https://github.com/jwalton"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jwalton/winston-format-debug/issues"
},
"homepage": "https://github.com/jwalton/winston-format-debug#readme",
"engines": {
"node": ">=6.0.0",
"npm": ">5.0.0"
},
"peerDependencies": {
"winston": "3.*.*"
},
"devDependencies": {
"@jwalton/semantic-release-config": "^1.0.0",
"@types/chai": "^4.1.4",
"@types/jest": "^29.0.0",
"@types/node": "^18.7.16",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-jest": "^1.0.2",
"coveralls": "^3.0.1",
"husky": "^8.0.1",
"jest": "^29.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.0",
"ts-node": "^10.0.0",
"tslint": "^6.0.0",
"typescript": "^4.0.2",
"winston": "^3.0.0"
},
"greenkeeper": {
"ignore": [
"@types/node"
]
},
"dependencies": {
"chalk": "^4.1.1",
"triple-beam": "^1.3.0"
}
}