-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 922 Bytes
/
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": "stylelint-config-xo-scss",
"version": "1.0.1",
"description": "Stylelint shareable config for XO with Sass support",
"license": "MIT",
"repository": "xojs/stylelint-config-xo-scss",
"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"
],
"keywords": [
"stylelint",
"stylelint-config",
"sass",
"scss",
"css",
"xo",
"style",
"lint",
"linter"
],
"dependencies": {
"postcss-scss": "^4.0.9",
"stylelint-config-xo": "^1.0.0",
"stylelint-scss": "^6.4.0"
},
"devDependencies": {
"ava": "^6.1.2",
"stylelint": "^16.4.0",
"xo": "^0.58.0"
},
"peerDependencies": {
"stylelint": ">=16"
}
}