-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.14 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
{
"name": "minify-xml",
"version": "4.5.2",
"description": "Fast XML minifier / compressor / uglifier with a command-line",
"keywords": [
"XML",
"minify",
"compress",
"compressor",
"optimize",
"uglify",
"xmlmin",
"fast",
"cli"
],
"type": "module",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"prepare": "tsc",
"test": "c8 ava"
},
"files": [
"cli.js",
"index.d.ts",
"index.d.ts.map"
],
"engines": {
"node": ">=16"
},
"author": {
"name": "Kristian Kraljic",
"email": "kris@kra.lc",
"url": "https://kra.lc/"
},
"contributors": [
{
"name": "Mathias Bynens",
"url": "https://mathiasbynens.be/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/kristian/minify-xml.git"
},
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"meow": "^13.2.0",
"pumpify": "^2.0.1",
"replacestream": "^4.0.3"
},
"devDependencies": {
"@types/node": "^22.1.0",
"ava": "^6.1.3",
"c8": "^10.1.2",
"execa": "^8.0.1",
"glob": "^11.0.0",
"tmp-promise": "^3.0.3",
"typescript": "^5.5.4"
}
}