aboutsummaryrefslogtreecommitdiffstats
path: root/package.json
diff options
context:
space:
mode:
authorLibravatar Vijay Raghavan Aravamudhan <vraravam@users.noreply.github.com>2020-10-11 17:55:00 +0530
committerLibravatar GitHub <noreply@github.com>2020-10-11 13:25:00 +0100
commit66be55f003c813427a8c5d07ab63082a3291c36e (patch)
tree5937adf07628b2202b37a1f046df2d82c50d30b9 /package.json
parentRevert "Use imagemin to minify images (#323)" (diff)
downloadferdium-recipes-66be55f003c813427a8c5d07ab63082a3291c36e.tar.gz
ferdium-recipes-66be55f003c813427a8c5d07ab63082a3291c36e.tar.zst
ferdium-recipes-66be55f003c813427a8c5d07ab63082a3291c36e.zip
Minify images using ImageOptim (lossless compression) (#326)
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 5 insertions, 1 deletions
diff --git a/package.json b/package.json
index 395cfca..de599c5 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,8 @@
8 }, 8 },
9 "scripts": { 9 "scripts": {
10 "package": "node scripts/package.js", 10 "package": "node scripts/package.js",
11 "create": "node scripts/create.js" 11 "create": "node scripts/create.js",
12 "minify-images": "./scripts/minify-images.sh"
12 }, 13 },
13 "repository": { 14 "repository": {
14 "type": "git", 15 "type": "git",
@@ -29,5 +30,8 @@
29 "image-size": "^0.9.1", 30 "image-size": "^0.9.1",
30 "open": "^7.2.1", 31 "open": "^7.2.1",
31 "targz": "^1.0.1" 32 "targz": "^1.0.1"
33 },
34 "devDependencies": {
35 "imagemin-cli": "^6.0.0"
32 } 36 }
33} 37}