-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.55 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
63
64
65
66
{
"name": "code-health-meter",
"version": "3.0.1",
"description": "",
"main": "src/index.js",
"type": "module",
"files": [
"src",
"package.json",
"pnpm-lock.yaml",
".gitignore",
"babel.config.cjs",
"eslint.config.js",
"LICENSE",
"README.md"
],
"bin": {
"code-health-meter": "src/index.js"
},
"scripts": {
"scan": "node ./src/index.js",
"lint": "eslint",
"lint:fix": "eslint --fix"
},
"keywords": [
"code analysis",
"maintenability index",
"cyclomatic complexity",
"halstead metrics"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "=7.18.6",
"@babel/eslint-parser": "=7.24.6",
"@babel/preset-env": "=7.23.6",
"eslint": "=7.5.0 || =8.0.0 || =9.0.0"
},
"dependencies": {
"@typhonjs/babel-parser": "=0.2.0",
"dependency-cruiser": "=16.4.1",
"fs-extra": "=8.1.0",
"globals": "=15.3.0",
"globby": "=10.0.1",
"graphology": "=0.25.4",
"graphology-canvas": "=0.4.2",
"graphology-communities-louvain": "=2.0.1",
"graphology-components": "=1.5.4",
"graphology-metrics": "=2.3.1",
"graphology-svg": "=0.1.3",
"jscpd": "=4.0.4",
"jsinspect": "=0.12.7",
"lodash": "=4.17.21",
"madge": "=7.0.0",
"ngraph.coarsen": "=1.5.0",
"ngraph.cw": "=2.0.0",
"ngraph.graph": "=20.0.1",
"ngraph.louvain": "=2.0.0",
"ngraph.path": "=1.5.0",
"typhonjs-escomplex": "=0.1.0",
"unixify": "=1.0.0",
"winston": "=3.13.0",
"winston-daily-rotate-file": "=5.0.0",
"xml2js": "=0.6.2"
}
}