-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.31 KB
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": "@sebassdc/crap4ts",
"version": "0.1.1",
"publishConfig": {
"access": "public"
},
"description": "CRAP metric CLI for TypeScript: combines cyclomatic complexity and test coverage to find risky code, with a bundled cross-agent AI skill.",
"main": "dist/api.js",
"types": "dist/api.d.ts",
"exports": {
".": "./dist/api.js",
"./cli": "./dist/index.js"
},
"bin": {
"crap4ts": "dist/index.js"
},
"files": [
"dist",
"src/skill/SKILL.md",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"license": "MIT",
"keywords": [
"typescript",
"cli",
"testing",
"coverage",
"cyclomatic-complexity",
"code-quality",
"static-analysis",
"metrics",
"crap",
"ai-agent",
"skill"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sebassdc/crap4ts.git"
},
"bugs": {
"url": "https://github.com/sebassdc/crap4ts/issues"
},
"homepage": "https://github.com/sebassdc/crap4ts#readme",
"scripts": {
"build": "tsc",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepublishOnly": "npm run build"
},
"dependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^2.0.0",
"vitest": "^2.0.0"
}
}