-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
61 lines (61 loc) · 1.24 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
{
"name": "fixmyjs",
"version": "1.0.3",
"description": "Automatically fixes your JavaScript based on lint rules",
"homepage": "http://fixmyjs.com",
"license": "MIT",
"author": "Josh Perez <[email protected]> (http://github.com/goatslacker)",
"repository": {
"type": "git",
"url": "git://github.com/jshint/fixmyjs"
},
"bugs": {
"url": "https://github.com/jshint/fixmyjs/issues"
},
"bin": {
"fixmyjs": "./bin/fixmyjs"
},
"keywords": [
"beautify",
"hint",
"jshint",
"jslint",
"lint"
],
"main": "./lib/index.js",
"dependencies": {
"commander": "^2.3.0",
"diff": "^1.0.7",
"escodegen": "^1.4.1",
"esprima": "^1.2.2",
"fu": "^0.1.x",
"jshint": "^2.5.6",
"minimatch": "^1.0.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"ghooks": "^0.2.2",
"istanbul": "^0.3.5",
"testla": "^0.1.x"
},
"preferGlobal": true,
"scripts": {
"lint": "jshint .",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover testla test",
"test": "npm run lint && testla test"
},
"files": [
"bin",
"lib",
"LICENSE",
"README.md"
],
"engines": {
"node": "*"
},
"config": {
"ghooks": {
"pre-push": "npm test"
}
}
}