-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.58 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.58 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
{
"name": "code-complexity",
"version": "5.0.0-alpha.1",
"description": "Measure the churn/complexity score. Higher values indicate hotspots where refactorings should happen.",
"author": {
"name": "Simon Renoult",
"email": "contact@simonrenoult.fr"
},
"engines": {
"node": ">= 18"
},
"main": "dist/src/lib",
"types": "dist/src/lib/index.d.ts",
"bin": {
"code-complexity": "dist/bin/code-complexity.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/simonrenoult/code-complexity.git"
},
"bugs": {
"url": "https://github.com/simonrenoult/code-complexity/issues"
},
"scripts": {
"build": "rm -rf dist && tsc",
"start": "node dist/bin/code-complexity.js",
"test": "node --test --require=ts-node/register test/**/*.ts",
"verify": "prettier --check . && eslint . && npm run test && npm run build"
},
"keywords": [
"quality",
"complexity",
"churn",
"refactoring",
"sloc",
"commit"
],
"license": "MIT",
"dependencies": {
"@babel/core": "7.28.3",
"@babel/parser": "7.28.3",
"@babel/plugin-transform-typescript": "7.28.0",
"@babel/preset-env": "7.28.3",
"cli-table3": "0.6.5",
"commander": "10.0.1",
"debug": "4.4.1",
"micromatch": "4.0.8",
"node-sloc": "0.2.1"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/babel__core": "7.20.5",
"@types/debug": "4.1.12",
"@types/micromatch": "4.0.9",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"ts-node": "10.9.2",
"typescript": "^4.9.5",
"typescript-eslint": "^8.40.0"
}
}