UNPKG

1.63 kBJSONView Raw
1{
2 "name": "jslint",
3 "description": "The JavaScript Code Quality Tool",
4 "homepage": "https://github.com/reid/node-jslint",
5 "keywords": [
6 "lint"
7 ],
8 "version": "0.4.1",
9 "author": "Reid Burke <me@reidburke.com>",
10 "contributors": [
11 "Douglas Crockford <douglas@crockford.com>",
12 "Mikeal Rogers <mikeal.rogers@gmail.com>",
13 "Adam Moore",
14 "Luke Smith <lsmith@yahoo-inc.com>",
15 "Anders Conbere <aconbere@gmail.com>",
16 "Ryuichi OKUMURA <okuryu@okuryu.com>",
17 "Sam Mikes <smikes@cubane.com>",
18 "Dylan Lloyd",
19 "Andreas Hindborg",
20 "Andrew Pennebaker",
21 "Bnaya",
22 "Maximilian Antoni <mail@maxantoni.de>"
23 ],
24 "bin": {
25 "jslint": "./bin/jslint.js"
26 },
27 "main": "./lib/nodelint.js",
28 "dependencies": {
29 "nopt": "~1.0.0",
30 "readable-stream": "~1.0.0"
31 },
32 "devDependencies": {
33 "ronn": "0.4.0",
34 "istanbul": "~0.1.44",
35 "mocha": "~1.14.0",
36 "fs.extra": "~1.2.1"
37 },
38 "optionalDependencies": {
39 "glob": "~3.2.8"
40 },
41 "engines": {
42 "node": ">=0.4.0"
43 },
44 "files": [
45 "man",
46 "doc",
47 "lib",
48 "bin",
49 "jslintrc.example",
50 "Makefile"
51 ],
52 "directories": {
53 "lib": "./lib",
54 "man": "./man",
55 "doc": "./doc"
56 },
57 "man": "./man/jslint.1",
58 "repository": {
59 "type": "git",
60 "url": "git://github.com/reid/node-jslint.git"
61 },
62 "bugs": {
63 "url": "https://github.com/reid/node-jslint/issues"
64 },
65 "licenses": [
66 {
67 "type": "Modified MIT / BSD",
68 "url": "https://github.com/reid/node-jslint/blob/master/LICENSE"
69 }
70 ],
71 "scripts": {
72 "test": "make test",
73 "prepublish": "make prepublish"
74 }
75}