-
Notifications
You must be signed in to change notification settings - Fork 207
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 KB
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
{
"name": "@spectrum-tools/stylelint-no-unknown-custom-properties",
"version": "2.0.3",
"description": "Report on any unknown custom property definitions",
"license": "Apache-2.0",
"author": "Adobe",
"contributors": [
"Cassondra Roberts <castastrophe@users.noreply.github.com>"
],
"homepage": "https://opensource.adobe.com/spectrum-css",
"repository": {
"type": "git",
"url": "https://github.com/adobe/spectrum-css.git",
"directory": "plugins/stylelint-no-unknown-custom-properties"
},
"bugs": {
"url": "https://github.com/adobe/spectrum-css/issues"
},
"type": "module",
"main": "index.js",
"files": [
"package.json",
"index.js",
"*.md"
],
"scripts": {
"test": "ava"
},
"dependencies": {
"colors": "1.4.0",
"fast-glob": "3.3.3",
"postcss": "8.5.6",
"postcss-values-parser": "7.0.0"
},
"peerDependencies": {
"stylelint": ">=16"
},
"devDependencies": {
"ava": "6.4.1",
"c8": "10.1.3",
"stylelint": "16.26.1"
},
"keywords": [
"css",
"lint",
"properties",
"report",
"stylelint-plugin"
]
}