forked from jshint/jshint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (49 loc) · 1.05 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
{
"name": "jshint",
"version": "2.1.3",
"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 ./make.js build",
"test": "node ./make.js test",
"lint": "node ./make.js lint"
},
"main": "./src/stable/jshint.js",
"dependencies": {
"shelljs": "0.1.x",
"underscore": "1.4.x",
"cli": "0.4.x",
"minimatch": "0.x.x",
"console-browserify": "0.1.x"
},
"devDependencies": {
"jshint": "2.1.x",
"shelljs": "0.1.x",
"browserify": "2.12.x",
"coveraje": "0.2.x",
"nodeunit": "0.8.x",
"sinon": "1.7.x"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jshint/jshint/blob/master/LICENSE"
}
],
"preferGlobal": true
}