-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 857 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
{
"name": "simple-html-minifier-terser",
"version": "1.0.0",
"description": "A utility to minify HTML using html-minifier-terser with predefined options.",
"main": "dist/index.js",
"type": "module",
"types": "src/types/index.d.ts",
"scripts": {
"build": "tsc --build",
"build-c": "tsc --build --clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexwkleung/simple-html-minifier-terser.git"
},
"author": "alexwkleung",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexwkleung/simple-html-minifier-terser/issues"
},
"homepage": "https://github.com/alexwkleung/simple-html-minifier-terser#readme",
"devDependencies": {
"@types/html-minifier-terser": "^7.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"html-minifier-terser": "^7.2.0"
}
}