-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
84 lines (84 loc) · 1.82 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
75
76
77
78
79
80
81
82
83
84
{
"name": "jslint",
"description": "The JavaScript Code Quality Tool",
"homepage": "https://github.com/reid/node-jslint",
"keywords": [
"lint",
"jslint",
"code-quality",
"static-analysis",
"jshint",
"eslint"
],
"version": "0.12.1",
"author": "Reid Burke <[email protected]>",
"contributors": [
"Douglas Crockford <[email protected]>",
"Mikeal Rogers <[email protected]>",
"Adam Moore",
"Luke Smith <[email protected]>",
"Anders Conbere <[email protected]>",
"Ryuichi OKUMURA <[email protected]>",
"Sam Mikes <[email protected]>",
"Dylan Lloyd",
"Andreas Hindborg",
"Andrew Pennebaker",
"Bnaya",
"Maximilian Antoni <[email protected]>",
"Vasil Velichkov",
"Rasmus Paetau",
"Bryan Horna"
],
"bin": {
"jslint": "./bin/jslint.js"
},
"main": "./lib/nodelint.js",
"dependencies": {
"exit": "~0.1.2",
"glob": "~7.1.3",
"nopt": "~4.0.1",
"readable-stream": "~2.1.5"
},
"devDependencies": {
"fs.extra": "^1.3.2",
"istanbul": "~0.4.5",
"marked-man": "~0.2.1",
"mocha": "~5.2.0"
},
"engines": {
"node": ">=0.8.0"
},
"files": [
"man/jslint.1",
"doc/jslint.md",
"doc/jslint.html",
"lib",
"bin",
"jslint.conf.example",
"Makefile"
],
"directories": {
"lib": "./lib",
"man": "./man",
"doc": "./doc"
},
"man": "man/jslint.1",
"repository": {
"type": "git",
"url": "git://github.com/reid/node-jslint.git"
},
"bugs": {
"url": "https://github.com/reid/node-jslint/issues"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "Modified MIT / BSD",
"url": "https://github.com/reid/node-jslint/blob/master/LICENSE"
}
],
"scripts": {
"test": "make test",
"mypublish": "make prepublish; npm publish"
}
}