forked from YozhikM/stylelint-a11y
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "@double-great/stylelint-a11y",
"version": "3.0.4",
"description": "Plugin for stylelint with a11y rules",
"main": "src/index.js",
"type": "module",
"exports": {
".": "./src/index.js",
"./recommended": "./recommended.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/double-great/stylelint-a11y.git"
},
"author": "@double-great",
"license": "MIT",
"keywords": [
"stylelint",
"stylelint-plugin",
"a11y",
"accessibility"
],
"engines": {
"node": ">=18.12.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint && npm run format:check",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "jest",
"coverage": "jest --coverage"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"peerDependencies": {
"stylelint": ">=16.0.0"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"eslint": "^9.19.0",
"eslint-config-stylelint": "^23.0.0",
"eslint-plugin-jest": "^28.11.0",
"globals": "^15.14.0",
"jest": "^29.7.0",
"jest-light-runner": "^0.6.0",
"jest-preset-stylelint": "^7.2.0",
"prettier": "^3.4.2",
"stylelint": "^16.14.1"
},
"bugs": {
"url": "https://github.com/double-great/stylelint-a11y/issues"
},
"homepage": "https://github.com/double-great/stylelint-a11y#readme",
"dependencies": {
"postcss": "^8.5.1"
}
}