This repository has been archived by the owner on Sep 17, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
50 lines (50 loc) · 1.73 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
{
"name": "nodelint",
"description": "The nodelint command line tool allows you to check for problems using JSLint. You can specify your own --config file to use alternate JSLint options and your own --reporter file if you want to customise the generated output.",
"keywords": ["lint", "jslint", "nodelint", "code quality"],
"version": "0.6.2",
"homepage": "https://github.com/tav/nodelint",
"author": "tav <tav@espians.com> (https://tav.espians.com)",
"maintainers": [
"tav <tav@espians.com>",
"cliffano <cliffano@gmail.com>",
"Sannis <efimovov@gmail.com>"
],
"contributors": [
"Matthew Kitt <mk.kitt@gmail.com> (https://github.com/mkitt)",
"Oleg Efimov <efimovov@gmail.com> (https://github.com/Sannis)",
"Corey Hart <corey@codenothing.com> (http://www.codenothing.com)",
"Cliffano Subagio <cliffano@gmail.com> (http://blog.cliffano.com)",
"Mamading Ceesay <mamading@gmail.com> (https://github.com/evangineer)",
"Matt Ranney <mjr@ranney.com> (https://github.com/mranney)",
"Felix Geisendörfer (http://debuggable.com)",
"Nathan Landis (https://github.com/my8bird)",
"Clemens Akens (https://github.com/clebert)"
],
"repository": {
"type": "git",
"url": "git://github.com/tav/nodelint.git"
},
"bugs": { "url": "https://github.com/tav/nodelint/issues" },
"bin": {
"nodelint": "./nodelint"
},
"directories": { "doc": "./doc", "man": "./man1" },
"dependencies": {
"file": ">=0.2.0",
"underscore" : "x",
"cli-table" : "x"
},
"devDependencies": {
"nodeunit": ">=0.6.2",
"ronn": ">=0.3.7"
},
"engines": { "node": ">=0.4" },
"scripts": {
"test": "make test",
"prepublish" : "make doc"
},
"licenses": {
"type": "Public Domain"
}
}