forked from jscs-dev/node-jscs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.28 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"author": "Marat Dulin <mdevils@yandex.ru>",
"description": "JavaScript Style Checker",
"name": "jscs",
"version": "1.2.4",
"repository": "https://github.com/mdevils/node-jscs",
"contributors": [
{
"name": "Marat Dulin",
"email": "mdevils@yandex.ru"
},
{
"name": "Konstantin Ikonnikov",
"email": "ikokostya@gmail.com"
},
{
"name": "Igor Agarlev"
},
{
"name": "Alexey Androsov",
"email": "doochik@ya.ru"
},
{
"name": "Oleg Gaidarenko",
"email": "markelog@gmail.com"
},
{
"name": "Mike Sherov",
"email": "mike.sherov@gmail.com"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"esprima": "1.0.3",
"vow": "0.3.9",
"vow-fs": "0.2.3",
"colors": "0.6.0-1",
"commander": "1.2.0",
"minimatch": "0.2.12",
"glob": "3.2.7",
"xmlbuilder": "1.1.2"
},
"devDependencies": {
"jshint": "2.1.3",
"mocha": "1.11.0",
"browserify": "2.35.0",
"xml2js": "0.4.0",
"hooker": "0.2.3"
},
"bin": {
"jscs": "./bin/jscs"
},
"scripts": {
"test": "jshint . && node bin/jscs lib test bin && mocha -u bdd -R spec",
"browserify": "browserify --standalone JscsStringChecker lib/string-checker.js -o jscs-browser.js"
}
}