-
Notifications
You must be signed in to change notification settings - Fork 458
/
package.json
54 lines (54 loc) · 1.27 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
{
"name": "csscomb",
"description": "CSS coding style formatter",
"version": "4.3.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": ">= 6.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.0",
"gonzales-pe": "4.2.4",
"minimatch": "3.0.4",
"minimist": "1.2.0",
"vow": "0.4.19",
"vow-fs": "0.3.6"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/plugin-transform-destructuring": "^7.4.0",
"@babel/plugin-transform-strict-mode": "^7.2.0",
"acorn": "^6.1.1",
"eslint": "^5.15.3",
"jshint": "2.10.2",
"mocha": "^6.1.3"
},
"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"
}
}