-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.1 KB
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
{
"name": "cleanor-storage-lab",
"version": "1.0.0",
"private": false,
"description": "Reproducible benchmarks and open datasets on image compression (JPEG/WebP/AVIF/JPEG XL), the HEIC-to-JPG size tax, cloud storage $/GB, and phone storage capacity.",
"type": "module",
"license": "MIT",
"homepage": "https://cleanor.app/research",
"repository": {
"type": "git",
"url": "https://github.com/cleanor-app/cleanor-storage-lab.git"
},
"keywords": [
"image-compression",
"avif",
"webp",
"jpeg-xl",
"heic",
"benchmark",
"dataset",
"ssim",
"cloud-storage",
"open-data"
],
"scripts": {
"compression": "node benchmarks/compression-benchmark.mjs",
"nextgen": "node benchmarks/nextgen-formats-benchmark.mjs",
"heic-tax": "node benchmarks/heic-tax-benchmark.mjs",
"cloud-price": "node benchmarks/cloud-price-index.mjs",
"streaming": "node benchmarks/streaming-data-usage.mjs",
"photo-capacity": "node benchmarks/photo-storage-capacity.mjs"
},
"dependencies": {
"sharp": "^0.33.5"
},
"devDependencies": {
"svgo": "^4.0.2"
}
}