This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
forked from YozhikM/stylelint-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.65 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
{
"name": "stylelint-a11y",
"version": "1.2.3",
"description": "Plugin for stylelint with a11y rules",
"main": "dist/index.js",
"repository": "https://github.com/YozhikM/stylelint-a11y.git",
"author": "Stanislav <botev.st@gmail.com>",
"license": "MIT",
"keywords": [
"stylelint",
"stylelint-plugin",
"a11y"
],
"engines": {
"node": ">=8.7.0"
},
"scripts": {
"precommit": "lint-staged",
"prebuild": "rimraf dist",
"build": "babel src --out-dir dist",
"lint": "eslint . --ignore-path .gitignore",
"prettify": "prettier '**/*.js' --write",
"prepublish": "npm run build",
"pretest": "npm run lint -- --fix",
"test": "jest",
"coverage": "jest --coverage"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
},
"lint-staged": {
"**/*.{js,json}": [
"prettier --write",
"git add"
]
},
"peerDependencies": {
"stylelint": "^8.0.0 || ^9.0.0 || ^10.0.0 || ^11.0.0 || ^12.0.0 || ^13.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-env": "^1.7.0",
"babel-preset-jest": "^29.6.3",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-stylelint": "^20.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"extend": ">=3.0.2",
"jest": "^29.6.4",
"jest-cli": "^29.6.4",
"jest-preset-stylelint": "^6.2.0",
"lodash": "^4.17.11",
"prettier": "^3.0.3",
"rimraf": "^5.0.1",
"stylelint": "^13.1.0"
}
}