-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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
{
"author": "Sébastien Dolard <sdolard@gmail.com>",
"name": "jsrevival",
"description": "A multi process javascript lib and cli linter using JSLint",
"version": "0.2.8",
"homepage": "https://github.com/sdolard/node-jsrevival",
"keywords": [
"jslint",
"linter",
"cli"
],
"main": "lib/jsrevival",
"bin": {
"jsrevival": "./bin/jsrevival"
},
"repository": {
"type": "git",
"url": "git://github.com/sdolard/node-jsrevival.git"
},
"scripts": {
"test": "mocha",
"posttest": "node bin/jsrevival -r cli-hide-valid -o \"properties:false,maxlen:0,debug:false,vars:false,passfail:false,unparam:false\" -p \"describe,it\" -R example/ lib/ test/jsrevival_lib.js test/jsrevival_bin.js"
},
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"ansi": "0.2.x",
"commander": "2.1.x",
"runnablepool": "0.0.x"
},
"devDependencies": {
"mocha": "1.x.x"
},
"bugs": {
"url": "https://github.com/sdolard/node-jsrevival/issues"
},
"directories": {
"example": "example",
"test": "test"
},
"license": "ISC"
}