UNPKG

ts-tiny-logger

Version:

A lightweight TypeScript logger package with Flyweight pattern

52 lines (51 loc) 1.17 kB
{ "name": "ts-tiny-logger", "version": "1.1.0", "description": "A lightweight TypeScript logger package with Flyweight pattern", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "build": "tsc", "prepare": "npm run build", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "example": "ts-node examples/basic-usage.ts" }, "keywords": [ "logger", "typescript", "logging", "flyweight", "pattern", "lightweight", "tiny" ], "author": "Alexey", "license": "ISC", "type": "commonjs", "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^22.15.18", "jest": "^29.5.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "repository": { "type": "git", "url": "git+https://github.com/guitar19823/ts-tiny-logger.git" }, "bugs": { "url": "https://github.com/guitar19823/ts-tiny-logger/issues" }, "homepage": "https://github.com/guitar19823/ts-tiny-logger#readme", "publishConfig": { "access": "public" } }