-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
54 lines (54 loc) · 1.2 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": "stylefmt",
"version": "6.0.3",
"description": "stylefmt is a tool that automatically formats CSS according to stylelint rules",
"main": "index.js",
"scripts": {
"test": "tape test/*.js | faucet && npm run lint",
"lint": "eslint -c .eslintrc.json index.js lib bin"
},
"bin": {
"stylefmt": "bin/cli.js"
},
"repository": {
"type": "git",
"url": "git://github.com/morishitter/stylefmt/git"
},
"engines": {
"node": ">=4.2.0"
},
"keywords": [
"css",
"format",
"formatter",
"code style",
"beautifier",
"postcss-plugin",
"postcss",
"stylelint"
],
"author": "Masaaki Morishita",
"license": "MIT",
"dependencies": {
"css-color-list": "^0.0.1",
"diff": "^3.2.0",
"editorconfig": "^0.13.2",
"getopts": "^2.1.1",
"colorette": "^1.0.5",
"globby": "^6.1.0",
"postcss": "^6.0.1",
"postcss-scss": "^1.0.0",
"postcss-sorting": "^2.1.0",
"postcss-value-parser": "^3.3.0",
"stdin": "^0.0.1",
"stylelint": "^7.10.1",
"stylelint-order": "^0.4.4"
},
"devDependencies": {
"each-series": "^1.0.0",
"eslint": "^3.19.0",
"faucet": "^0.0.1",
"klaw": "^1.3.1",
"tape": "^4.6.3"
}
}