-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.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": "rehype-normalize-attribute-value-case",
"version": "4.0.1",
"description": "rehype plugin to normalize casing of attribute values",
"license": "MIT",
"keywords": [
"attribute",
"case",
"html",
"mangle",
"minify",
"plugin",
"rehype",
"rehype-plugin",
"unified",
"value"
],
"repository": "https://github.com/rehypejs/rehype-minify/tree/main/packages/rehype-normalize-attribute-value-case",
"bugs": "https://github.com/rehypejs/rehype-minify/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Titus Wormer <tituswormer@gmail.com>"
],
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"files": [
"index.d.ts",
"index.d.ts.map",
"index.js",
"lib/"
],
"dependencies": {
"@types/hast": "^3.0.0",
"hast-util-is-element": "^3.0.0",
"unist-util-visit": "^5.0.0"
},
"scripts": {},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreCatch": true,
"strict": true
},
"xo": {
"prettier": true,
"rules": {
"capitalized-comments": "off",
"unicorn/text-encoding-identifier-case": "off"
}
}
}