forked from csscomb/csscomb.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.48 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
{
"name": "csscomb",
"description": "CSS coding style formatter",
"version": "3.1.5",
"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": {
"glob": "latest",
"minimist": "1.1.x",
"csscomb-core": "csscomb/core#build-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": {
"preinstall": "./scripts/preinstall.sh",
"build": "./scripts/build.sh",
"coverage": "./scripts/coverage.sh",
"test": "./scripts/build.sh && ./scripts/test.sh",
"watch": "./scripts/watch.sh"
}
}