-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.12 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
{
"name": "stylelint-config-xo",
"version": "1.0.2",
"description": "Stylelint shareable config for XO",
"license": "MIT",
"repository": "sindresorhus/stylelint-config-xo",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js",
"properties-order.js"
],
"keywords": [
"stylelint",
"stylelint-config",
"xo",
"code",
"quality",
"style",
"css",
"lint",
"linter",
"jscs",
"jshint",
"jslint",
"eslint",
"validate",
"code style",
"standard",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint",
"simple"
],
"dependencies": {
"@stylistic/stylelint-plugin": "^2.1.2",
"stylelint-declaration-block-no-ignored-properties": "^2.8.0",
"stylelint-order": "^6.0.4"
},
"devDependencies": {
"ava": "^6.1.2",
"stylelint": "^16.4.0",
"xo": "^0.58.0"
},
"peerDependencies": {
"stylelint": ">=16"
}
}