forked from escomplex/escomplex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.83 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "escomplex",
"version": "2.0.0-alpha",
"description": "Software complexity analysis of JavaScript-family abstract syntax trees.",
"homepage": "https://github.com/jared-stilwell/escomplex",
"bugs": "https://github.com/jared-stilwell/escomplex/issues",
"license": "MIT",
"author": "Phil Booth <[email protected]> (https://github.com/philbooth)",
"main": "./src",
"repository": {
"type": "git",
"url": "https://github.com/jared-stilwell/escomplex.git"
},
"maintainers": [
{
"name": "Jared Stilwell",
"email": "[email protected]",
"url": "https://github.com/jared-stilwell"
}
],
"contributors": [
{
"name": "Will Boyd",
"url": "https://github.com/lonekorean"
},
{
"name": "Addison Higham",
"url": "https://github.com/addisonj"
}
],
"keywords": [
"escomplex",
"complexity",
"simplicity",
"cyclomatic",
"halstead",
"maintainability",
"dependencies",
"static",
"analysis",
"metrics"
],
"dependencies": {
"debug": "^2.6.2",
"espree": "^3.4.3",
"esprima": "^4.0.0",
"lodash.assign": "^4.2.0",
"lodash.isfunction": "^3.0.8",
"lodash.isnil": "^4.0.0",
"lodash.isnumber": "^3.0.3",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"lodash.merge": "^4.6.0",
"lodash.negate": "^3.0.2",
"minimatch": "^3.0.2"
},
"devDependencies": {
"acorn": "^5.0.0",
"chai": "4.1.0",
"mocha": "^3.4.2",
"mockery": "2.1.0",
"sinon": "^2.0.0",
"spooks": "2.0.0",
"standard": "^10.0.0"
},
"scripts": {
"lint": "standard",
"test": "npm run lint && npm run test:unit",
"test:unit": "mocha --ui tdd --reporter dot --colors"
},
"standard": {
"globals": [
"suite",
"test",
"setup",
"teardown"
]
}
}