forked from YozhikM/stylelint-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.63 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.63 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "stylelint-plugin-a11y",
"type": "module",
"version": "1.0.1",
"description": "Plugin for stylelint with a11y rules.",
"author": "Stanislav <botev.st@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TrigenSoftware/stylelint-plugin-a11y"
},
"bugs": {
"url": "https://github.com/TrigenSoftware/stylelint-plugin-a11y/issues"
},
"keywords": [
"stylelint",
"stylelint-plugin",
"a11y"
],
"engines": {
"node": ">=20"
},
"exports": {
".": "./src/index.js",
"./package.json": "./package.json",
"./recommended": "./src/recommended.js"
},
"publishConfig": {
"directory": "package"
},
"files": [
"src"
],
"scripts": {
"clear:package": "del ./package",
"clear": "del ./package ./coverage",
"prepublishOnly": "run clear:package clean-publish",
"postpublish": "pnpm clear:package",
"lint": "eslint",
"test:unit": "node --test '**/*.spec.js'",
"test": "run -p lint test:unit",
"commit": "cz",
"updateGitHooks": "simple-git-hooks"
},
"peerDependencies": {
"stylelint": ">=16.0.0"
},
"dependencies": {
"postcss": "^8.5.6"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/cz-commitlint": "^19.8.1",
"@trigen/eslint-config": "^8.0.2",
"@trigen/scripts": "^8.0.0",
"clean-publish": "^5.2.2",
"commitizen": "^4.2.5",
"del-cli": "^6.0.0",
"eslint": "^9.30.1",
"nano-staged": "^0.8.0",
"simple-git-hooks": "^2.8.1",
"stylelint": "^16.21.1",
"stylelint-test-rule-node": "^0.4.0"
}
}