-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.38 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
{
"name": "grunt-escomplex-report",
"description": "Software complexity analysis for JavaScript projects.",
"version": "0.0.0-development",
"homepage": "https://github.com/prantlf/grunt-escomplex-report",
"author": {
"name": "Ferdinand Prantl",
"email": "prantlf@gmail.com",
"url": "http://prantl.tk"
},
"repository": {
"type": "git",
"url": "https://github.com/prantlf/grunt-escomplex-report.git"
},
"bugs": {
"url": "https://github.com/prantlf/grunt-escomplex-report/issues"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/prantlf/grunt-escomplex-report/blob/master/LICENSE"
}
],
"engines": {
"node": ">= 6"
},
"scripts": {
"test": "grunt",
"coverage": "grunt instrument && GRUNT_ESCOMPLEX_REPORT_COVERAGE=1 grunt",
"coveralls": "test `node --version | cut -c 2` -eq 8 && npm run coverage && grunt coveralls"
},
"dependencies": {
"complexity-report-ext": "^0.0.4"
},
"devDependencies": {
"grunt": "1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^2.0.0",
"grunt-coveralls": "^2.0.0",
"grunt-istanbul": "^0.8.0",
"grunt-standard": "^3.2.0"
},
"peerDependencies": {
"grunt": ">=1.0.4"
},
"keywords": [
"gruntplugin",
"grunt-tasks",
"complexity",
"maintainability",
"cyclomatic",
"halstead"
]
}