forked from matype/stylefmt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 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
53
54
{
"name": "@ronilaukkarinen/stylefmt",
"version": "6.2.4",
"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": {
"colorette": "^2.0.16",
"css-color-list": "^0.0.2",
"diff": "^5.0.0",
"editorconfig": "^0.15.3",
"getopts": "^2.3.0",
"globby": "^13.1.1",
"postcss": "^8.4.14",
"postcss-scss": "^4.0.4",
"postcss-sorting": "^7.0.1",
"postcss-value-parser": "^4.2.0",
"stdin": "^0.0.1",
"stylelint": "^14.8.2",
"stylelint-order": "^5.0.0"
},
"devDependencies": {
"each-series": "^1.0.0",
"eslint": "^8.15.0",
"faucet": "^0.0.1",
"klaw": "^4.0.1",
"tape": "^5.5.3"
}
}