-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 912 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 912 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
{
"name": "bread-compressor-cli",
"type": "module",
"version": "4.1.0",
"description": "CLI tool compressing static resources with Brotli, Zopfli (gzip) and Zstandard (zst)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ralscha/bread-compressor-cli.git"
},
"author": "Ralph Schaer <ralphschaer@gmail.com>",
"bin": {
"bread-compressor": "bin.js"
},
"keywords": [
"zopfli",
"brotli",
"gzip",
"zstandard"
],
"scripts": {
"test": "node --test"
},
"main": "index.js",
"zopfliGoBinary": {
"owner": "ralscha",
"repo": "zopfli-go",
"version": "1.1.0",
"binaryName": "zopfli-go",
"tagPrefix": "v",
"assetNameTemplate": "{{binary}}_{{version}}_{{os}}_{{arch}}{{archiveExtension}}"
},
"dependencies": {
"@bokuweb/zstd-wasm": "0.0.27",
"@gfx/zopfli": "1.0.15",
"brotli": "1.3.3"
}
}