forked from constverum/stylelint-config-rational-order
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.84 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@greenly/stylelint-config-rational-order",
"version": "0.2.1",
"description": "Stylelint config that sorts related property declarations by grouping together following the order: Positioning, Box Model, Typography, Visual, Animation, Other.",
"author": "Constverum <constverum@gmail.com>",
"contributors": [
{
"name": "Darek Greenly",
"url": "https://darekgreenly.com"
}
],
"license": "Apache-2.0",
"main": "index.js",
"files": [
"index.js",
"borderInBoxModel.js",
"config/*",
"groups/*",
"plugin/*"
],
"repository": {
"type": "git",
"url": "https://github.com/Zielak/stylelint-config-rational-order.git"
},
"bugs": {
"url": "https://github.com/Zielak/stylelint-config-rational-order/issues"
},
"homepage": "https://github.com/Zielak/stylelint-config-rational-order",
"scripts": {
"lint": "eslint .",
"test": "jest",
"prepare": "husky install",
"semantic-release": "semantic-release"
},
"keywords": [
"stylelint",
"stylelint-config",
"stylelint-order",
"stylelint-plugin",
"properties-order",
"css property order",
"declaration-order",
"css declaration order",
"rational-css",
"order-css",
"order"
],
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"eslint": "^8.6.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^25.3.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"lint-staged": "^12.1.7",
"prettier": "^2.5.1",
"semantic-release": "^18.0.1",
"stylelint": "^14.2.0",
"stylelint-order": "^5.0.0"
},
"peerDependencies": {
"stylelint": "^14.2.0",
"stylelint-order": "^5.0.0"
}
}