forked from simonrenoult/code-complexity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.83 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.83 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
63
64
65
66
67
68
69
{
"name": "code-complexity",
"version": "4.1.0",
"description": "Measure the churn/complexity score. Higher values mean hotspots where refactorings should happen.",
"author": {
"name": "Simon Renoult",
"email": "contact@simonrenoult.me"
},
"main": "dist/src/lib",
"types": "dist/src/lib/types.d.ts",
"bin": {
"code-complexity": "dist/bin/code-complexity.js"
},
"repository": {
"type": "git",
"url": "https://github.com/simonrenoult/code-complexity"
},
"bugs": {
"url": "https://github.com/simonrenoult/code-complexity/issues"
},
"scripts": {
"build": "rm -rf dist && tsc",
"coverage": "codecov",
"lint": "eslint --ext .ts .",
"prepare": "npm run lint && npm run build",
"postversion": "git push --tags",
"pretest": "npm run lint",
"test": "mocha --require ts-node/register test/**/*.ts",
"test:ci": "nyc --reporter=lcov npm test"
},
"keywords": [
"quality",
"complexity",
"churn",
"refactoring",
"sloc",
"commit"
],
"license": "MIT",
"dependencies": {
"cli-table3": "^0.6.0",
"commander": "^5.0.0",
"debug": "^4.1.1",
"micromatch": "^4.0.2",
"node-sloc": "^0.1.12"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/debug": "^4.1.5",
"@types/micromatch": "^4.0.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.0",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"prettier": "^2.0.4",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}