-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
66 lines (66 loc) · 1.49 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
{
"name": "minify",
"version": "12.0.0",
"description": "Minifier of js, css, html and img",
"homepage": "http://coderaiser.github.io/minify",
"author": "coderaiser <mnemonic.enemy@gmail.com> (https://github.com/coderaiser)",
"type": "module",
"keywords": [
"minify",
"minimize",
"js",
"css",
"img",
"html",
"base64"
],
"repository": {
"type": "git",
"url": "http://github.com/coderaiser/minify.git"
},
"bin": {
"minify": "bin/minify.js"
},
"scripts": {
"test": "madrun test",
"coverage": "madrun coverage",
"report": "madrun report",
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"lint:bin": "madrun lint:bin",
"lint:lib": "madrun lint:lib",
"putout": "madrun putout"
},
"dependencies": {
"@putout/minify": "^4.0.0",
"@swc/core": "^1.6.7",
"clean-css": "^5.0.1",
"css-b64-images": "~0.2.5",
"debug": "^4.1.0",
"esbuild": "^0.24.0",
"find-up": "^7.0.0",
"html-minifier-terser": "^7.1.0",
"lightningcss": "^1.28.1",
"readjson": "^2.2.2",
"simport": "^1.2.0",
"terser": "^5.28.1",
"try-catch": "^3.0.0",
"try-to-catch": "^3.0.0"
},
"main": "lib/minify.js",
"license": "MIT",
"engines": {
"node": ">=18"
},
"devDependencies": {
"escover": "^4.0.0",
"eslint": "^9.3.0",
"eslint-plugin-putout": "^23.1.0",
"madrun": "^10.0.0",
"putout": "^36.5.1",
"supertape": "^10.6.0"
},
"publishConfig": {
"access": "public"
}
}