forked from DeMoorJasper/parcel-plugin-imagemin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
{
"name": "parcel-plugin-imagemin",
"version": "4.0.0",
"description": "Parcel plugin to support image minification",
"main": "./lib/index.js",
"license": "MIT",
"author": "Jasper De Moor",
"scripts": {
"test": "mocha --timeout 50000",
"format": "prettier --write \"./{lib,test}/**/*.{js,json,md}\""
},
"repository": {
"type": "git",
"url": "git://github.com/DeMoorJasper/parcel-plugin-imagemin.git"
},
"engines": {
"node": ">= 8.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,md,mdx}": [
"prettier --write",
"git add"
]
},
"keywords": [
"parcel",
"image",
"minification"
],
"dependencies": {
"fs-extra": "^8.0.1",
"imagemin": "^7.0.0",
"imagemin-gifsicle": "^6.0.1",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.0.0",
"imagemin-webp": "^5.1.0",
"parcel-bundler": "^1.10.3"
},
"devDependencies": {
"husky": "^3.0.5",
"lint-staged": "^9.2.4",
"mocha": "^6.1.4",
"parcel-assert-bundle-tree": "^1.0.0",
"prettier": "^1.16.4"
}
}