UNPKG

@krauters/debuggable

Version:

A TypeScript utility that automatically adds detailed debug logs before and after method calls in classes, simplifying the tracking of execution flow and troubleshooting.

56 lines (55 loc) 1.51 kB
{ "name": "@krauters/debuggable", "description": "A TypeScript utility that automatically adds detailed debug logs before and after method calls in classes, simplifying the tracking of execution flow and troubleshooting.", "version": "0.5.1", "main": "dist/src/index.js", "type": "commonjs", "scripts": { "build": "tsc", "dev": "ts-node ./src/index.ts", "example-1": "ts-node ./examples/1.ts", "fix": "npm run lint -- --fix", "lint": "npx eslint src/** test/**", "prepare": "husky || true", "prepublishOnly": "npm run build", "start": "nodemon --inspect -e ts -w ./src -x npm run dev", "test": "npm run lint && jest", "upgrade:all": "npx npm-check-updates --upgrade && npm install" }, "keywords": [ "debug", "debuggable", "debugger", "duration", "tracker", "typescript" ], "author": "Colten Krauter <coltenkrauter>", "bugs": { "url": "https://github.com/krauters/debuggable/issues/new?title=%5BBUG%5D+Brief+Description&template=bug_report.md" }, "repository": { "type": "git", "url": "https://github.com/krauters/debuggable.git" }, "homepage": "https://buymeacoffee.com/coltenkrauter", "license": "ISC", "devDependencies": { "@jest/globals": "^29.7.0", "@krauters/eslint-config": "^1.5.0", "@types/jest": "^29.5.14", "husky": "^9.1.7", "jest": "^29.7.0", "nodemon": "^3.1.7", "ts-jest": "^29.2.5", "ts-node": "^10.9.2", "typescript": "^5.7.2" }, "files": [ "dist", "scripts" ], "dependencies": { "@krauters/logger": "^1.4.3" } }