forked from csscomb/csscomb.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.72 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
{
"name": "csscomb",
"description": "CSS coding style formatter",
"version": "3.1.7",
"homepage": "http://csscomb.com/",
"author": "Mikhail Troshev <[email protected]>",
"repository": "https://github.com/csscomb/csscomb.js",
"maintainers": [
{
"name": "Tony Ganch",
"email": "[email protected]",
"web": "http://tonyganch.com/"
}
],
"contributors": [
{
"name": "Igor Novak",
"email": "[email protected]"
},
{
"name": "Roman Komarov",
"email": "[email protected]"
},
{
"name": "Denis Payase",
"email": "[email protected]"
},
{
"name": "Mikhail Troshev",
"email": "[email protected]",
"web": "http://mishanga.pro/"
},
{
"name": "Sergey Puzankov",
"email": "[email protected]"
}
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"commander": "2.0.0",
"csscomb-core": "3.0.0-3",
"gonzales-pe": "3.0.0-28",
"vow": "0.4.4"
},
"devDependencies": {
"jshint-groups": "0.5.3",
"jshint": "2.3.0",
"jscs": "1.4.5",
"mocha": "1.20.1"
},
"main": "./lib/csscomb.js",
"files": [
"bin",
"config",
"lib"
],
"bin": {
"csscomb": "./bin/csscomb"
},
"scripts": {
"test": "./node_modules/.bin/jshint-groups && ./node_modules/.bin/jscs . && node test/mocha",
"test-cov": "rm -rf lib-cov && jscoverage lib lib-cov && TEST_COV=true node test/mocha > ./test/test-coverage.html"
}
}