-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
87 lines (87 loc) · 1.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "stylelint-value-no-unknown-custom-properties",
"version": "6.0.1",
"description": "A stylelint rule to disallow usage of unknown custom properties",
"author": "Jonathan Neal <[email protected]>",
"license": "CC0-1.0",
"repository": "csstools/stylelint-value-no-unknown-custom-properties",
"homepage": "https://github.com/csstools/stylelint-value-no-unknown-custom-properties#readme",
"bugs": "https://github.com/csstools/stylelint-value-no-unknown-custom-properties/issues",
"type": "module",
"main": "src/index.mjs",
"files": [
"src"
],
"scripts": {
"prepublishOnly": "npm test",
"test": "npm run lint && node --test index.test.mjs",
"lint": "eslint src/**/*.mjs *.mjs --cache --ignore-path .gitignore --quiet"
},
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"postcss-value-parser": "^4.2.0",
"resolve": "^1.22.8"
},
"devDependencies": {
"eslint": "^8.53.0",
"eslint-config-dev": "^3.3.1",
"stylelint": "^16.1.0",
"stylelint-test-rule-node": "^0.2.1"
},
"peerDependencies": {
"stylelint": ">=16"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true
},
"extends": "eslint:recommended",
"rules": {
"quotes": [
"error",
"single"
],
"comma-dangle": [
"error",
"always-multiline"
],
"semi": [
"error",
"always"
],
"curly": "error",
"brace-style": "error",
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"radix": "error"
},
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"root": true
},
"keywords": [
"stylelint",
"stylelint-plugin",
"css",
"custom",
"properties",
"property",
"variables",
"variable",
"vars",
"var",
"csswg",
"w3c",
"unknown"
]
}