-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
47 lines (47 loc) · 900 Bytes
/
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
{
"name": "imagemin-pngquant",
"version": "10.0.0",
"description": "Imagemin plugin for `pngquant`",
"license": "MIT",
"repository": "imagemin/imagemin-pngquant",
"type": "module",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && npm run test:cover && tsc --noEmit index.d.ts",
"test:cover": "c8 --check-coverage --statements 90 ava"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"compress",
"image",
"imageminplugin",
"minify",
"optimize",
"png",
"pngquant"
],
"dependencies": {
"environment": "^1.0.0",
"execa": "^8.0.1",
"is-png": "^3.0.1",
"ow": "^2.0.0",
"pngquant-bin": "^9.0.0",
"uint8array-extras": "^1.1.0"
},
"devDependencies": {
"@types/node": "^20.12.10",
"ava": "^6.1.3",
"c8": "^9.1.0",
"typescript": "^5.4.5",
"xo": "^0.58.0"
}
}