forked from jscs-dev/node-jscs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 3.54 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"author": {
"name": "Marat Dulin <[email protected]> and other contributors",
"url": "https://github.com/jscs-dev/node-jscs/graphs/contributors"
},
"description": "JavaScript Code Style",
"name": "jscs",
"version": "1.13.1",
"main": "lib/checker",
"homepage": "http://jscs.info",
"keywords": [
"code style",
"formatter",
"lint",
"linter",
"style guide",
"validate"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jscs-dev/node-jscs"
},
"bugs": {
"url": "https://github.com/jscs-dev/node-jscs/issues"
},
"maintainers": [
{
"name": "Marat Dulin",
"email": "[email protected]",
"github-username": "mdevils",
"role": "General architecture, common rules"
},
{
"name": "Oleg Gaidarenko",
"email": "[email protected]",
"github-username": "markelog",
"role": "CLI, integration, common rules"
},
{
"name": "Mike Sherov",
"email": "[email protected]",
"github-username": "mikesherov",
"role": "Ex-jshint rules, common rules"
},
{
"name": "Joel Kemp",
"email": "[email protected]",
"github-username": "mrjoelkemp",
"role": "Bug fixes, common rules"
},
{
"name": "Alexej Yaroshevich",
"email": "[email protected]",
"github-username": "zxqfox",
"role": "Bug fixes, common rules"
}
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"babel-core": "^5.6.15",
"babel-jscs": "^2.0.0",
"chalk": "~1.0.0",
"cli-table": "~0.3.1",
"commander": "~2.8.1",
"esprima": "~2.4.0",
"estraverse": "^4.1.0",
"exit": "~0.1.2",
"glob": "^5.0.1",
"jscs-jsdoc": "1.1.0",
"lodash.assign": "~3.2.0",
"minimatch": "~2.0.1",
"pathval": "~0.1.1",
"prompt": "~0.2.14",
"strip-json-comments": "~1.0.2",
"to-double-quotes": "^1.0.0",
"to-single-quotes": "^1.0.2",
"vow": "~0.4.8",
"vow-fs": "~0.3.4",
"xmlbuilder": "^2.6.1"
},
"devDependencies": {
"browserify": "^9.0.3",
"coveralls": "~2.11.2",
"has-ansi": "~1.0.1",
"jshint": "~2.8.0",
"mocha": "^2.2.0",
"regenerate": "~1.2.1",
"rewire": "^2.3.1",
"sinon": "^1.13.0",
"unicode-7.0.0": "~0.1.5",
"unit-coverage": "^3.4.0",
"xml2js": "~0.4.4"
},
"bin": {
"jscs": "./bin/jscs"
},
"unit-coverage": {
"common": [
"-a",
"lib",
"-a",
"test",
"-s",
"lib/**/*.js",
"-t",
"test/specs/**/*.js",
"-S",
"relative",
"-O",
"sources=lib",
"-O",
"tests=test/specs"
]
},
"scripts": {
"lint": "jshint . && node bin/jscs lib test bin publish",
"test": "npm run lint && mocha --color",
"autofix-tests": "node test/scripts/integration.js",
"coverage": "unit-coverage run -p common",
"coverage-html": "unit-coverage run -p common -r html -o coverage.html",
"coveralls": "unit-coverage run -p common -r lcov -o out.lcov && cat out.lcov | coveralls",
"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 test && npm publish",
"postpublish": "node publish/postpublish",
"travis": "npm run test && npm run autofix-tests && npm run coveralls"
},
"files": [
"bin",
"lib",
"patterns",
"presets",
"LICENSE",
"jscs-browser.js"
]
}