generated from krauters/typescript-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"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"
}
}