-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.37 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
67
68
69
{
"name": "stylelint-formatter-pretty",
"version": "4.0.1",
"description": "A pretty Stylelint formatter.",
"license": "MIT",
"repository": "github:mrcgrtz/stylelint-formatter-pretty",
"funding": [
{
"type": "kofi",
"url": "https://ko-fi.com/mrcgrtz"
},
{
"type": "liberapay",
"url": "https://liberapay.com/mrcgrtz/"
}
],
"author": {
"name": "Marc Görtz",
"email": "[email protected]",
"url": "https://marcgoertz.de/"
},
"engines": {
"node": ">=18.12.0"
},
"type": "module",
"exports": "./index.js",
"scripts": {
"coverage": "c8 report --reporter=lcov",
"prepare": "husky",
"test": "xo && c8 node --test"
},
"files": [
"index.js"
],
"keywords": [
"stylelint",
"stylelint-formatter",
"formatter",
"reporter",
"lint",
"validate"
],
"dependencies": {
"ansi-escapes": "^7.0.0",
"log-symbols": "^7.0.0",
"picocolors": "^1.0.0",
"plur": "^5.1.0",
"string-width": "^7.0.0",
"supports-hyperlinks": "^3.0.0"
},
"devDependencies": {
"c8": "^10.1.2",
"husky": "^9.0.10",
"lint-staged": "^15.2.0",
"strip-ansi": "^7.1.0",
"xo": "^0.59.3"
},
"peerDependencies": {
"stylelint": ">=16.0.0"
},
"lint-staged": {
"*.js": "xo --fix"
},
"xo": {
"rules": {
"unicorn/no-array-for-each": "off"
}
}
}