-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 973 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 973 Bytes
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
{
"name": "prettier-plugin-css-order",
"version": "2.2.0",
"description": "Sort CSS declarations in a certain order.",
"type": "module",
"main": "./src/main.mjs",
"files": [
"src/*.mjs",
"!src/*.test.mjs"
],
"scripts": {
"test": "node src/main.test.mjs",
"lint": "prettier src --check",
"format": "prettier src --write",
"postversion": "git push --follow-tags"
},
"dependencies": {
"css-declaration-sorter": "^7.3.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.9"
},
"peerDependencies": {
"prettier": "3.x"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Siilwyn/prettier-plugin-css-order.git"
},
"author": "Selwyn <talk@selwyn.cc> (https://selwyn.cc/)",
"license": "ISC",
"keywords": [
"prettier",
"prettier-plugin",
"css",
"scss",
"less",
"declaration",
"sorter",
"property",
"order"
]
}