-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.39 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.39 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
{
"name": "@genese/complexity",
"version": "1.2.1",
"description": "Analyzes the difficulty of comprehension of source code (its cognitive complexity). Part of the @genese tool suite.",
"scripts": {
"build": "tsc && rm -rf dist/src/json-ast-to-reports/templates && cp -r src/json-ast-to-reports/templates dist/src/json-ast-to-reports/templates && cp -r src/core/chartjs dist/src/core/chartjs",
"start": "npm run build && node dist/src/index.js",
"publish_package": "npm run build && npm publish",
"republish_package": "npm run build && npm unpublish -f && npm publish"
},
"bin": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/geneseframework/complexity.git"
},
"author": {
"name": "Gilles Fabre",
"url": "http://gillesfabre.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geneseframework/complexity/issues"
},
"homepage": "https://github.com/geneseframework/complexity#readme",
"dependencies": {
"@types/node": "^14.14.8",
"chalk": "^4.1.0",
"csv-writer": "^1.6.0",
"eol": "^0.9.1",
"fs-extra": "^9.0.1",
"handlebars": "^4.7.6",
"java-parser": "^2.0.2",
"ora": "^5.1.0",
"terminal-link": "^2.1.1",
"ts-morph": "^8.2.0",
"ts-node": "^9.1.1"
}
}