forked from YozhikM/stylelint-a11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.61 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
{
"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 <[email protected]>",
"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": "^23.2.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.2",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-stylelint": "^9.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"extend": ">=3.0.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"lodash": "^4.17.11",
"prettier": "^1.14.3",
"rimraf": "^2.6.2",
"stylelint": "^13.1.0"
}
}