forked from melonmanchan/express-minify-html
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "express-minify-html-2",
"version": "2.0.0",
"description": "Express.js middleware wrapper around html-minifier-terser",
"main": "minifier.js",
"scripts": {
"test": "node tests"
},
"engines": {
"npm": ">=6.4.0",
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meszaros-lajos-gyorgy/express-minify-html-2.git"
},
"keywords": [
"express",
"html",
"minifier",
"middleware",
"minify"
],
"author": "Matti Jokitulppo <[email protected]>",
"maintainers": [
"Lajos Mészáros <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/meszaros-lajos-gyorgy/express-minify-html-2/issues"
},
"homepage": "https://github.com/meszaros-lajos-gyorgy/express-minify-html-2#readme",
"dependencies": {
"html-minifier-terser": "^7.2.0"
},
"devDependencies": {
"ejs": "3.1.9",
"express": "4.18.2",
"express-handlebars": "7.0.7",
"handlebars": "4.7.7",
"nunjucks": "3.2.4",
"pug": "3.0.2",
"supertest": "6.3.3",
"tape": "5.6.3"
}
}