forked from rehypejs/rehype-minify
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "rehype-minify-event-handler",
"version": "3.0.0",
"description": "rehype plugin to Mminify event handler attributes",
"license": "MIT",
"keywords": [
"unified",
"rehype",
"rehype-plugin",
"plugin",
"html",
"minify",
"mangle",
"event",
"script",
"javascript",
"handler"
],
"repository": "https://github.com/rehypejs/rehype-minify/tree/main/packages/rehype-minify-event-handler",
"bugs": "https://github.com/rehypejs/rehype-minify/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <[email protected]> (https://wooorm.com)",
"contributors": [
"Titus Wormer <[email protected]>"
],
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js"
],
"dependencies": {
"@types/hast": "^2.0.0",
"hast-util-is-event-handler": "^2.0.0",
"hast-util-has-property": "^2.0.0",
"uglify-js": "^3.0.18",
"unified": "^10.0.0",
"unist-util-visit": "^4.0.0"
},
"scripts": {
"build": "rimraf \"*.d.ts\" && tsc && type-coverage",
"test": "node --conditions development test.js"
},
"xo": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}