-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.21 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
{
"name": "stylelint-config-elao",
"version": "0.5.0",
"description": "Elao Stylelint configuration",
"repository": "elao/stylelint-config-elao",
"license": "MIT",
"author": {
"name": "Elao",
"url": "https://www.elao.com"
},
"contributors": [
{
"name": "Chris Meiller",
"url": "https://github.com/cmeiller"
}
],
"keywords": [
"stylelint",
"stylelint-config",
"style linter",
"code checker",
"code linter",
"code standards",
"code style",
"lint",
"css",
"elao"
],
"main": "index.js",
"files": [
"index.js"
],
"eslintConfig": {
"extends": "stylelint"
},
"scripts": {
"lint": "eslint index.js",
"test": "stylelint --config tests/stylelint.config.json tests/*.scss",
"fix": "stylefmt --config tests/stylelint.config.json tests/*.scss"
},
"devDependencies": {
"eslint": "^4.2.0",
"eslint-config-stylelint": "^7.0.0",
"stylefmt": "^6.0.0",
"stylelint": "^8.0.0"
},
"peerDependencies": {
"stylelint": "^8.0.0"
},
"dependencies": {
"stylelint-config-standard": "^17.0.0",
"stylelint-csstree-validator": "^1.1.1",
"stylelint-order": "^0.6.0",
"stylelint-scss": "^1.4.3"
}
}