-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.45 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
56
57
58
59
60
61
62
{
"name": "code-diagnose",
"version": "1.1.6",
"main": "dist/index.js",
"bin": {
"analyze-project": "./dist/index.js"
},
"scripts": {
"start": "npx tsx src/index.ts",
"test": "jest --detectOpenHandles",
"build": "tsc",
"docs": "typedoc"
},
"publishConfig": {
"@surenpoghosian:registry": "https://npm.pkg.github.com"
},
"keywords": [
"code-diagnosis",
"software-antipatterns",
"code-quality",
"code-analysis",
"typescript",
"static-analysis",
"software-design",
"code-smells",
"code",
"software",
"programming",
"development",
"engineering",
"debugging",
"refactoring",
"testing"
],
"author": "Suren Poghosyan",
"license": "ISC",
"description": "A tool to analyze project files for software antipatterns.",
"repository": {
"type": "git",
"url": "git+https://github.com/surenpoghosian/code-diagnose.git"
},
"bugs": {
"url": "https://github.com/surenpoghosian/code-diagnose/issues"
},
"homepage": "https://github.com/surenpoghosian/code-diagnose#readme",
"devDependencies": {
"@types/commander": "^2.12.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"typedoc": "^0.26.5",
"typedoc-plugin-markdown": "^4.2.3",
"typescript": "^5.5.4"
},
"dependencies": {
"commander": "^12.1.0",
"figures": "^6.1.0",
"kleur": "^4.1.5"
}
}