-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.24 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
{
"name": "stylelint-config-sky-uk",
"version": "3.2.0",
"description": "Sky's CSS Stylelint configuration, following our Style Guide",
"main": "index.js",
"scripts": {
"lint": "eslint ."
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sky-uk/css.git"
},
"keywords": [
"sky",
"stylelint",
"stylelint-config",
"config",
"css",
"scss",
"styleguide"
],
"author": "Sky UK",
"contributors": [
{
"name": "Joe Bell",
"url": "https://github.com/joebell93"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/sky-uk/css/issues"
},
"homepage": "https://github.com/sky-uk/css",
"devDependencies": {
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"pre-commit": "^1.2.2",
"stylelint": "^8.0.0",
"stylelint-scss": "^2.0.1",
"stylelint-selector-bem-pattern": "^1.1.1"
},
"peerDependencies": {
"stylelint": "^8.0.0",
"stylelint-scss": "^2.0.1",
"stylelint-selector-bem-pattern": "^1.1.1"
},
"eslintConfig": {
"extends": [
"airbnb"
]
}
}