forked from philbooth/complexity-report
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "complexity-report",
"version": "2.0.0-alpha",
"description": "Software complexity analysis for JavaScript projects",
"homepage": "https://github.com/jared-stilwell/complexity-report",
"bugs": "https://github.com/jared-stilwell/complexity-report/issues",
"license": "MIT",
"author": "Phil Booth <[email protected]>",
"bin": {
"cr": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jared-stilwell/complexity-report.git"
},
"maintainers": [
{
"name": "Jared Stilwell",
"email": "[email protected]",
"url": "https://github.com/jared-stilwell"
}
],
"keywords": [
"complexity",
"simplicity",
"cyclomatic",
"halstead",
"maintainability",
"static",
"analysis",
"metrics",
"escomplex"
],
"dependencies": {
"async": "^2.1.5",
"check-types": "^7.1.5",
"commander": "^2.9.0",
"escomplex": "2.0.0-alpha",
"esprima": "^3.1.3"
},
"devDependencies": {
"chai": "^3.4.0",
"eslint": "^3.17.1",
"mocha": "^3.2.0"
},
"scripts": {
"lint": "eslint test src",
"test": "mocha --ui tdd --reporter spec --colors"
},
"eslintConfig": {
"extends": "eslint:recommended",
"parser": "esprima",
"env": {
"node": true,
"mocha": true
}
}
}