forked from jscs-dev/node-jscs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.44 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
85
86
87
88
89
90
91
92
93
94
{
"author": "Marat Dulin <[email protected]>",
"description": "JavaScript Code Style",
"name": "jscs",
"version": "1.8.1",
"main": "lib/checker",
"homepage": "https://github.com/jscs-dev/node-jscs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jscs-dev/node-jscs"
},
"bugs": {
"url": "https://github.com/jscs-dev/node-jscs/issues"
},
"contributors": [
"Marat Dulin <[email protected]>",
"Konstantin Ikonnikov <[email protected]>",
"Igor Agarlev",
"Alexey Androsov <[email protected]>",
"Oleg Gaidarenko <[email protected]>",
"Mike Sherov <[email protected]>",
"Joel Kemp <[email protected]>"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"colors": "~1.0.3",
"commander": "~2.5.0",
"esprima": "~1.2.2",
"esprima-harmony-jscs": "1.1.0-dev-harmony",
"estraverse": "~1.8.0",
"exit": "~0.1.2",
"glob": "~4.0.0",
"minimatch": "~1.0.0",
"strip-json-comments": "~1.0.1",
"vow": "~0.4.3",
"vow-fs": "~0.3.1",
"xmlbuilder": "~2.4.0",
"supports-color": "~1.2.0"
},
"devDependencies": {
"browserify": "~6.2.0",
"coveralls": "~2.11.1",
"has-ansi": "~1.0.0",
"hooker": "~0.2.3",
"jshint": "~2.5.0",
"mocha": "~2.0.1",
"rewire": "~2.1.0",
"unit-coverage": "~3.2.0",
"sinon": "~1.11.0",
"xml2js": "~0.4.2"
},
"bin": {
"jscs": "./bin/jscs"
},
"unit-coverage": {
"common": [
"-a",
"lib",
"-a",
"test",
"-s",
"lib/**/*.js",
"-t",
"test/**/*.js",
"-S",
"relative",
"-O",
"sources=lib",
"-O",
"tests=test"
]
},
"scripts": {
"lint": "jshint . && node bin/jscs lib test bin publish",
"test": "npm run lint && mocha",
"coverage": "unit-coverage run -p common",
"coverage-html": "unit-coverage run -p common -r html -o coverage.html",
"browserify": "browserify --standalone JscsStringChecker lib/string-checker.js -o jscs-browser.js",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:' * %s (%an)' | grep -v 'Merge pull request'",
"release": "node publish/prepublish && npm publish",
"postpublish": "node publish/postpublish",
"travis": "npm run test && unit-coverage run -p common -r lcov -o out.lcov && cat out.lcov | coveralls"
},
"files": [
"bin",
"lib",
"presets",
"LICENSE",
"jscs-browser.js"
]
}