forked from gilbarbara/codeclimate-stylelint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.89 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": "codeclimate-stylelint",
"version": "2.1.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"
],
"scripts": {
"build": "docker build -t codeclimate/codeclimate-stylelint .",
"build-readups": "./bin/build-readups.js",
"lint": "eslint bin/*",
"test": "./run-tests.sh"
},
"dependencies": {
"@mapbox/stylelint-processor-arbitrary-tags": "^0.2.0",
"glob": "^7.1.3",
"rimraf": "^2.6.3",
"simple-git": "^1.107.0",
"stylelint": "^9.9.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-sass-guidelines": "^5.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-suitcss": "^14.0.0",
"stylelint-config-wordpress": "^13.1.0",
"stylelint-csstree-validator": "^1.3.0",
"stylelint-declaration-strict-value": "^1.1.2",
"stylelint-declaration-use-variable": "^1.7.0",
"stylelint-order": "^2.0.0",
"stylelint-processor-html": "^1.0.0",
"stylelint-rscss": "^0.4.0",
"stylelint-scss": "^3.4.4",
"stylelint-selector-bem-pattern": "^2.0.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.12.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.3",
"husky": "^1.3.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}