forked from kristian/minify-xml
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 849 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 849 Bytes
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
{
"name": "minify-xml",
"version": "2.1.0",
"description": "Fast XML minifier / compressor / uglifier with a command-line",
"keywords": [
"XML",
"minify",
"compress",
"compressor",
"optimize",
"uglify",
"xmlmin",
"fast",
"cli"
],
"main": "index.js",
"bin": "cli.js",
"scripts": {
"test": "node test.js"
},
"files": [
"cli.js",
"test.js"
],
"engines": {
"node": ">=10"
},
"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": "^7.0.1"
}
}