-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
87 lines (87 loc) · 2.95 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "codeclimate-stylelint",
"version": "2.3.0",
"description": "A Code Climate engine for the mighty, modern CSS linter.",
"license": "MIT",
"author": "Gil Barbara <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/gilbarbara/codeclimate-stylelint"
},
"bugs": "https://github.com/gilbarbara/codeclimate-stylelint/issues",
"main": "bin/codeclimate-stylelint",
"keywords": [
"codeclimate",
"css",
"csslint",
"lint",
"linter",
"stylelint"
],
"dependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.3.0",
"cosmiconfig": "^7.0.0",
"glob": "^7.1.6",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"simple-git": "^2.21.0",
"stylelint": "^13.7.2",
"stylelint-8-point-grid": "^1.0.0",
"stylelint-a11y": "^1.2.3",
"stylelint-at-rule-no-children": "^0.3.1",
"stylelint-color-format": "^1.1.0",
"stylelint-config-concentric-order": "^4.0.0",
"stylelint-config-css-modules": "^2.2.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-sugarss-recommended": "^3.0.0",
"stylelint-config-suitcss": "^15.0.0",
"stylelint-config-wordpress": "^17.0.0",
"stylelint-csstree-validator": "^1.9.0",
"stylelint-declaration-block-no-ignored-properties": "^2.3.0",
"stylelint-declaration-strict-value": "^1.6.0",
"stylelint-declaration-use-variable": "^1.7.2",
"stylelint-high-performance-animation": "^1.5.1",
"stylelint-media-use-custom-media": "^2.0.0",
"stylelint-no-indistinguishable-colors": "^1.3.0",
"stylelint-no-unsupported-browser-features": "^4.1.3",
"stylelint-order": "^4.1.0",
"stylelint-prettier": "^1.1.2",
"stylelint-processor-html": "^1.0.0",
"stylelint-rscss": "^0.4.0",
"stylelint-scss": "^3.18.0",
"stylelint-selector-bem-pattern": "^2.1.0",
"stylelint-selector-tag-no-without-class": "^2.0.3",
"stylelint-use-logical": "^1.1.0",
"stylelint-use-nesting": "^3.0.0",
"stylelint-value-no-unknown-custom-properties": "^3.0.0",
"stylelint-z-index-value-constraint": "^1.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.12.1",
"eslint-config-airbnb": "^18.2.0",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0"
},
"scripts": {
"build": "docker build -t codeclimate/codeclimate-stylelint .",
"build-readups": "./bin/build-readups.js",
"lint": "eslint bin/*",
"test": "./run-tests.sh"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}