-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.51 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
{
"name": "stylelint-config-get-off-my-lawn",
"description": "A highly opinionated, sharable config of stylelint rules to produce beautiful, readable CSS and Sass.",
"version": "2.0.0",
"author": {
"name": "Michael Novotny",
"email": "[email protected]",
"url": "htts://manovotny.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/manovotny/stylelint-config-get-off-my-lawn.git"
},
"keywords": [
"config",
"css",
"sass",
"scss",
"stylelint"
],
"engines": {
"node": ">=8.6.0",
"yarn": ">=1.0.0"
},
"main": "index.js",
"files": [
"src"
],
"scripts": {
"lint": "eslint . --ext .js --ext .json",
"prettier": "prettier --write \"**/*.{js,json,md,yml}\"",
"prettier:check": "prettier --check \"**/*.{js,json,md,yml}\"",
"test": "yarn lint && yarn prettier:check"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,yml}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"stylelint": "8.0.0",
"stylelint-order": "0.6.0",
"stylelint-scss": "2.0.0"
},
"devDependencies": {
"eslint": "6.2.1",
"eslint-config-get-off-my-lawn": "5.0.1",
"husky": "3.0.5",
"lint-staged": "9.2.5",
"prettier": "1.18.2"
}
}