UNPKG

@bernierllc/logging

Version:

A comprehensive logging package with Winston integration for audit and system logging

60 lines 1.47 kB
{ "name": "@bernierllc/logging", "version": "0.7.0", "description": "A comprehensive logging package with Winston integration for audit and system logging", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "keywords": [ "logging", "winston", "audit", "system", "typescript" ], "author": "Bernier LLC", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/bernierllc/tools.git" }, "dependencies": { "cosmiconfig": "^9.0.0", "winston": "^3.11.0", "winston-daily-rotate-file": "^4.7.1", "zod": "^3.22.0", "@bernierllc/logger": "1.7.0" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^20.0.0", "eslint": "^8.0.0", "jest": "^29.5.0", "prettier": "^3.0.0", "ts-jest": "^29.4.0", "ts-node": "^10.9.0", "typescript": "^5.0.0" }, "peerDependencies": { "winston": "^3.11.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" }, "scripts": { "test": "jest", "build": "tsc", "dev": "tsc --watch", "lint": "eslint src/**/*.ts", "format": "prettier --write src/**/*.ts", "examples": "ts-node examples/run-examples.ts", "config:init": "node scripts/config-init.js", "config:validate": "node scripts/config-validate.js", "config:print": "node scripts/config-print.js" } }