forked from csscomb/csscomb.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.48 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.48 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
60
61
62
63
64
65
66
67
68
69
{
"name": "csscomb",
"description": "CSS coding style formatter",
"version": "3.1.7",
"homepage": "http://csscomb.com/",
"author": "Mikhail Troshev <mishanga@yandex-team.ru>",
"repository": "https://github.com/csscomb/csscomb.js",
"maintainers": [
{
"name": "Tony Ganch",
"email": "tonyganch+github@gmail.com",
"web": "http://tonyganch.com/"
}
],
"contributors": [
{
"name": "Igor Novak",
"email": "bezengi@gmail.com"
},
{
"name": "Roman Komarov",
"email": "kizmarh@ya.ru"
},
{
"name": "Denis Payase",
"email": "lostsoul@yandex-team.ru"
},
{
"name": "Mikhail Troshev",
"email": "mishanga@yandex-team.ru",
"web": "http://mishanga.pro/"
},
{
"name": "Sergey Puzankov",
"email": "puzankov@yandex-team.ru"
}
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"glob": "latest",
"minimist": "1.1.x",
"csscomb-core": "csscomb/core#dev",
"gonzales-pe": "sodatea/gonzales-pe#dev",
"vow": "0.4.4"
},
"devDependencies": {
"babel": "^5.5.3",
"jscs": "2.1.0",
"jshint": "2.8.0",
"mocha": "1.20.1"
},
"main": "./lib/csscomb.js",
"files": [
"bin",
"config",
"lib"
],
"bin": {
"csscomb": "./bin/csscomb"
},
"scripts": {
"build": "./scripts/build.sh",
"coverage": "./scripts/coverage.sh",
"test": "./scripts/build.sh && ./scripts/test.sh",
"watch": "./scripts/watch.sh"
}
}