This repository has been archived by the owner on May 8, 2024. It is now read-only.
forked from imagemin/pngquant-bin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 1.68 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@mole-inc/pngquant-bin",
"version": "9.0.2",
"description": "`pngquant` wrapper that makes it seamlessly",
"license": "GPL-3.0+",
"repository": {
"type": "git",
"url": "https://github.com/mole-inc/pngquant-bin.git"
},
"type": "module",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"bin": {
"pngquant": "cli.cjs"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"scripts": {
"postinstall": "node lib/install.cjs",
"pretest": "pnpm run build",
"test": "xo && c8 ava",
"build": "rollup -c",
"coverage": "c8 report --reporter=lcov",
"prerelease": "pnpm run build",
"release": "standard-version",
"prepare": "husky install"
},
"publishConfig": {
"access": "public"
},
"files": [
"cli.cjs",
"dist",
"lib",
"vendor/source"
],
"keywords": [
"imagemin",
"compress",
"image",
"img",
"minify",
"optimize",
"png",
"pngquant"
],
"dependencies": {
"@mole-inc/bin-wrapper": "^8.0.0",
"bin-version-check": "^5.0.0",
"consola": "^2.15.3",
"execa": "^6.0.0",
"tar": "^6.1.11",
"tempy": "^2.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@rollup/plugin-alias": "^3.1.8",
"@rollup/plugin-commonjs": "^22.0.0-1",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"ava": "^4.0.1",
"bin-check": "^4.1.0",
"c8": "^7.10.0",
"compare-size": "^3.0.0",
"husky": "^7.0.4",
"rollup": "^2.60.2",
"standard-version": "latest",
"xo": "^0.42.0"
},
"xo": {
"rules": {
"unicorn/prefer-node-protocol": "off"
},
"ignores": [
"cli.cjs",
"lib/install.cjs"
]
}
}