-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.04 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
{
"name": "grunt-jscomplexity-threshold",
"description": "Simple javascript complexity threshold task",
"version": "1.1.0",
"homepage": "https://github.com/slyg/grunt-jscomplexity-threshold",
"author": {
"name": "Sylvain Faucherand",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/slyg/grunt-jscomplexity-threshold"
},
"bugs": {
"url": "https://github.com/slyg/grunt-jscomplexity-threshold/issues"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "mocha --compilers coffee:coffee-script/register test/**/*.test.coffee"
},
"devDependencies": {
"chai": "^3.5.0",
"coffee": "^3.2.1",
"coffee-script": "^1.8.0",
"grunt": "~0.4.5",
"grunt-contrib-jshint": "^1.0.0",
"mocha": "^2.0.1",
"rewire": "^2.1.3"
},
"peerDependencies": {
"grunt": "~0.4.5"
},
"keywords": [
"gruntplugin"
],
"dependencies": {
"bluebird": "^3.3.3",
"cli-table": "^0.3.1",
"jscomplexity": "^2.0.0",
"lodash": "^2.4.2"
}
}