-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
66 lines (66 loc) · 1.5 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
65
66
{
"name": "stylelint-config-htmlacademy",
"description": "Stylelint shareable config for the HTML Academy style",
"version": "4.2.3",
"type": "module",
"exports": "./.stylelintrc",
"files": [
"./.stylelintrc"
],
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"@stylistic/stylelint-plugin": "2.1.2",
"postcss-less": "6.0.0",
"postcss-scss": "4.0.9"
},
"peerDependencies": {
"stylelint": "^16.1.0"
},
"license": "MIT",
"author": {
"name": "Nikolai Shabalin",
"email": "[email protected]"
},
"homepage": "https://github.com/htmlacademy/stylelint-config-htmlacademy#readme",
"bugs": {
"url": "https://github.com/htmlacademy/stylelint-config-htmlacademy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/htmlacademy/stylelint-config-htmlacademy.git"
},
"scripts": {
"prepare": "husky",
"lint": "ec",
"test": "stylelint \"test/**/*.{css,less,scss}\"",
"pretest": "npm run lint",
"preversion": "npm test",
"postversion": "npm publish",
"postpublish": "git push origin --all && git push origin --tags"
},
"devDependencies": {
"@htmlacademy/editorconfig-cli": "3.0.0",
"husky": "9.0.11",
"stylelint": "16.6.1"
},
"keywords": [
"HTMLAcademy",
"HTML Academy",
"code",
"quality",
"style",
"lint",
"linter",
"stylelint",
"validate",
"code style",
"strict",
"check",
"checker",
"verify",
"enforce",
"hint"
]
}