forked from csscomb/csscomb.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "csscomb",
"description": "CSS coding style formatter",
"version": "4.2.0",
"homepage": "http://csscomb.com/",
"author": "Mikhail Troshev <[email protected]>",
"repository": "https://github.com/csscomb/csscomb.js",
"license": "MIT",
"maintainers": [
{
"name": "Tony Ganch",
"email": "[email protected]",
"web": "http://tonyganch.com/"
}
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"babel-polyfill": "6.23.0",
"glob": "latest",
"gonzales-pe": "^3.4.7",
"minimatch": "3.0.2",
"minimist": "1.1.x",
"vow": "0.4.4",
"vow-fs": "0.3.6"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-transform-es2015-destructuring": "^6.9.0",
"babel-plugin-transform-strict-mode": "^6.11.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",
"prepublish": "./scripts/build.sh",
"test": "./scripts/build.sh && ./scripts/test.sh",
"watch": "./scripts/watch.sh"
}
}