-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "cinspector",
"version": "1.0.0",
"description": "Visualize JavaScript source complexity metrics with es6-plato on terminal. Cyclomatic complexity, maintainability score, SLOC and eslint problems.",
"bin": {
"cinspector": "./bin/cinspector.js"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --collect-coverage",
"test:ci": "jest --collect-coverage --ci --silent",
"lint": "./node_modules/.bin/eslint .",
"cinspector": "node ./bin/cinspector.js -r -l .eslintrc.json lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alisonsm92/cinspector.git"
},
"keywords": [
"cyclomatic",
"complexity",
"report",
"metrics"
],
"author": "alisonsm92",
"license": "ISC",
"bugs": {
"url": "https://github.com/alisonsm92/cinspector/issues"
},
"homepage": "https://github.com/alisonsm92/cinspector#readme",
"dependencies": {
"chalk": "^4.1.2",
"cli-table": "^0.3.6",
"es6-plato": "^1.2.3",
"ora": "^5.4.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.1",
"husky": "^7.0.1",
"jest": "^27.0.6"
}
}