@yambwa/pretty-logger
Version:
A lightweight, extensible logger with log levels, pretty and JSON output, context support, and pluggable transports for Node.js and TypeScript projects.
45 lines (44 loc) • 1.05 kB
JSON
{
"name": "@yambwa/pretty-logger",
"version": "1.0.0",
"description": "A lightweight, extensible logger with log levels, pretty and JSON output, context support, and pluggable transports for Node.js and TypeScript projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest",
"test:watch": "jest --watch",
"prepublishOnly": "npm run build",
"lint": "eslint src/**/*.ts"
},
"keywords": [
"logger",
"logging",
"pretty-logs",
"json-logs",
"transport",
"context",
"typescript"
],
"author": "Yambwa Imwaka",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}