forked from jonschlinkert/gulp-htmlmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.14 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.14 KB
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
{
"name": "gulp-html-minifier-terser",
"version": "8.0.0",
"description": "Gulp plugin to minify HTML.",
"keywords": [
"format",
"gulp",
"gulpplugin",
"htm",
"html",
"htmlmin",
"minification",
"minifier",
"minify"
],
"bugs": {
"url": "https://github.com/pioug/gulp-html-minifier-terser/issues"
},
"license": "MIT",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"repository": {
"type": "git",
"url": "git+https://github.com/pioug/gulp-html-minifier-terser.git"
},
"main": "index.js",
"exports": "./index.js",
"scripts": {
"format": "oxfmt --write \"**/*.{js,json,yml,yaml,md}\"",
"format:check": "oxfmt --check \"**/*.{js,json,yml,yaml,md}\"",
"lint": "oxlint --deny-warnings .",
"prepublishOnly": "npm run format:check && npm run lint && npm test",
"test": "mocha"
},
"dependencies": {
"html-minifier-terser": "^7.1.0",
"plugin-error": "^2.0.0"
},
"devDependencies": {
"gulp": "^5.0.1",
"mocha": "^12.0.0-beta-9",
"oxfmt": "^0.32.0",
"oxlint": "^1.47.0",
"vinyl": "^3.0.0"
},
"engines": {
"node": ">=24.0.0"
}
}