-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.36 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
{
"name": "stylelint-design-tokens-plugin",
"version": "0.0.16",
"description": "Stylelint plugin for checking Design Tokens use inside your CSS",
"license": "MIT",
"repository": "LasaleFamine/stylelint-design-tokens-plugin",
"bugs": {
"url": "https://github.com/LasaleFamine/stylelint-design-tokens-plugin/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/LasaleFamine/stylelint-design-tokens-plugin",
"author": {
"name": "Alessio Occhipinti",
"email": "[email protected]",
"url": "godev.space"
},
"main": "src/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"test": "xo",
"release": "git pull && standard-version && git push --follow-tags"
},
"files": [
"src"
],
"keywords": [
"stylelint-plugin",
"design-tokens",
"tokens",
"stylelint-design-tokens",
"design",
"design-tokens-check"
],
"dependencies": {
"flat": "5.0.2",
"string.prototype.matchall": "4.0.5"
},
"devDependencies": {
"standard-version": "9.3.1",
"xo": "0.35.0"
},
"peerDependencies": {
"stylelint": ">= 15"
},
"xo": {
"rules": {
"max-len": [
"error",
{
"code": 120,
"ignoreUrls": true
}
],
"capitalized-comments": "off"
}
},
"resolutions": {
"eslint-import-resolver-webpack": "0.12.2"
}
}