-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.15 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
53
54
55
56
57
58
{
"name": "@vheemstra/imagemin-oxipng",
"version": "1.0.0",
"description": "oxipng imagemin plugin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vHeemstra/imagemin-oxipng.git"
},
"bugs": {
"url": "https://github.com/vHeemstra/imagemin-oxipng/issues"
},
"author": {
"name": "Philip van Heemstra",
"email": "[email protected]",
"url": "https://github.com/vheemstra"
},
"maintainers": [
{
"name": "Philip van Heemstra",
"email": "[email protected]",
"url": "https://github.com/vheemstra"
}
],
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"lint:test": "xo && ava",
"test": "ava"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"compress",
"image",
"imageminplugin",
"img",
"png",
"minify",
"optimize",
"oxipng"
],
"dependencies": {
"oxipng-bin": "^1.0.0",
"exec-buffer": "^3.2.0",
"is-png": "^3.0.1"
},
"devDependencies": {
"ava": "^3.8.0",
"xo": "^0.48.0"
}
}