-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.28 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": "@edenspiekermann/stylelint-config",
"version": "1.0.2",
"description": "A shareable stylelint config for ESPI projects",
"main": "index.js",
"engines": {
"node": ">=10"
},
"keywords": [
"stylelint",
"stylelint config",
"linting",
"tailwind",
"styled components"
],
"scripts": {
"prepare": "npx husky install",
"lint": "eslint . --ext .js",
"release": "HUSKY_SKIP_HOOKS=1 np"
},
"repository": {
"url": "https://github.com/edenspiekermann/espi-stylelint-config",
"type": "git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js,!__fixtures/**/*.js": [
"eslint --fix"
]
},
"author": "Edenspiekermann",
"license": "MIT",
"dependencies": {
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-standard": "^21.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-order": "^4.1.0",
"stylelint-processor-styled-components": "^1.10.0",
"stylelint-scss": "^3.18.0"
},
"devDependencies": {
"@edenspiekermann/eslint-config": "^1.0.1",
"eslint": "^7.10.0",
"husky": "^6.0.0",
"lint-staged": "^10.4.0",
"np": "^7.0.0",
"yarn": "^1.22.10"
},
"peerDependencies": {
"stylelint": "^13.7.2"
}
}