-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 927 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "hexo-html-minifier",
"version": "1.0.0",
"description": "Minify HTML files with HTMLMinifier.",
"main": "index.js",
"scripts": {
"eslint": "eslint .",
"test": "mocha test/index.js",
"test-cov": "nyc --reporter=lcovonly npm run test"
},
"directories": {
"lib": "./lib"
},
"files": [
"index.js",
"lib/"
],
"engines": {
"node": ">= 12.13"
},
"repository": "hexojs/hexo-html-minifier",
"keywords": [
"hexo",
"filter",
"html",
"minify"
],
"author": "Tommy Chen <tommy351@gmail.com> (https://zespia.tw)",
"maintainers": [
"Abner Chou <hi@abnerchou.me> (https://abnerchou.me)"
],
"license": "MIT",
"dependencies": {
"html-minifier": "^4.0.0",
"micromatch": "^4.0.4"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^9.0.0",
"eslint-config-hexo": "^5.0.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
}
}