-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.16 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-jslint",
"description": "Validates JavaScript files with JSLint",
"version": "1.2.0",
"homepage": "https://github.com/stephenmathieson/grunt-jslint",
"author": {
"name": "Stephen Mathieson",
"email": "[email protected]"
},
"contributors": {
"name": "Sam Mikes"
},
"repository": {
"type": "git",
"url": "git://github.com/stephenmathieson/grunt-jslint.git"
},
"bugs": {
"url": "https://github.com/stephenmathieson/grunt-jslint/issues"
},
"licenses": [
{
"type": "WTFPL",
"url": "https://github.com/stephenmathieson/grunt-jslint/blob/master/LICENSE-WTFPL"
}
],
"main": "index.js",
"bin": {
"grunt-jslint": "bin/grunt-jslint"
},
"engines": {
"node": "*"
},
"scripts": {
"test": "make test"
},
"dependencies": {
"jslint": "^0.10.3"
},
"devDependencies": {
"better-assert": "~1.0.0",
"grunt": "~0.4.1",
"grunt-cli": "~0.1.13",
"jscoverage": "~0.5.9",
"vows": "~0.9.0-rc3",
"which": "~1.2.14",
"win-spawn": "~2.0.0",
"xml2js": "~0.4.6"
},
"keywords": [
"gruntplugin",
"jslint",
"lint",
"code quality"
]
}