-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.03 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
{
"name": "@roopairs/prettier-plugin-style-order",
"version": "0.7.0",
"description": "Prettier plugin which sorts related style property declarations",
"keywords": [
"prettier",
"plugin",
"style",
"css",
"order",
"group"
],
"license": "MIT",
"author": {
"name": "Nate Moore",
"email": "nate@natemoo.re",
"url": "https://natemoo.re/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roopairs/prettier-plugin-style-order.git"
},
"bugs": {
"url": "https://github.com/roopairs/prettier-plugin-style-order/issues"
},
"homepage": "https://github.com/roopairs/prettier-plugin-style-order",
"files": [
"src"
],
"main": "src/index.js",
"directories": {
"src": "src",
"test": "test"
},
"scripts": {
"test": "node test"
},
"dependencies": {
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.6",
"postcss-sorting": "2.1.0"
},
"devDependencies": {
"prettier": "1.19.1"
},
"peerDependencies": {
"prettier": ">= 1.13"
}
}