forked from jshint/jshint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (63 loc) · 1.56 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
{
"name": "jshint",
"version": "2.5.11",
"homepage": "http://jshint.com/",
"description": "Static analysis tool for JavaScript",
"author": {
"name": "Anton Kovalyov",
"email": "[email protected]",
"url": "http://anton.kovalyov.net/"
},
"repository": {
"type": "git",
"url": "https://github.com/jshint/jshint.git"
},
"bugs": {
"url": "https://github.com/jshint/jshint/issues"
},
"bin": {
"jshint": "./bin/jshint"
},
"scripts": {
"build": "node bin/build",
"coverage": "istanbul -- cover ./node_modules/.bin/nodeunit tests/unit",
"data": "node scripts/generate-identifier-data",
"pretest": "jshint src",
"test": "nodeunit tests tests/regression tests/unit"
},
"main": "./src/jshint.js",
"dependencies": {
"cli": "0.6.x",
"console-browserify": "1.1.x",
"exit": "0.1.x",
"htmlparser2": "3.8.x",
"minimatch": "1.0.x",
"shelljs": "0.3.x",
"strip-json-comments": "1.0.x",
"underscore": "1.6.x"
},
"devDependencies": {
"browserify": "6.x",
"coveralls": "2.11.x",
"istanbul": "0.3.x",
"jshint": "2.5.x",
"mock-stdin": "0.3.x",
"nodeunit": "0.9.x",
"regenerate": "1.0.x",
"sinon": "1.11.x",
"unicode-6.3.0": "0.1.x"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jshint/jshint/blob/master/LICENSE"
}
],
"preferGlobal": true,
"files": [
"bin",
"data",
"dist",
"src"
]
}