-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.37 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
{
"name": "@uiolee/hexo-htmlnano",
"version": "1.0.0",
"description": "Minify HTML files with htmlnano",
"keywords": [
"hexo",
"hexo-plugin",
"htmlnano",
"html",
"minify"
],
"homepage": "https://github.com/uiolee/hexo-plugin",
"bugs": {
"url": "https://github.com/uiolee/hexo-plugin/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uiolee/hexo-plugin.git",
"directory": "plugins/hexo-htmlnano"
},
"license": "MPL-2.0",
"author": "uiolee (https://github.com/uiolee)",
"main": "dist/index.cjs",
"files": [
"dist"
],
"scripts": {
"build": "pnpm run tsbf",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "jest",
"test:cov": "jest --coverage --coverageReporters html text",
"test:lcov": "jest --coverage --coverageReporters lcovonly text-summary",
"tsb": "tsc -b -v",
"tsbf": "tsc -b -v -f",
"tsbw": "tsc -b -v -w"
},
"dependencies": {
"htmlnano": "^2.1.0",
"micromatch": "^4.0.5"
},
"peerDependencies": {
"htmlnano": "^2.1.0",
"micromatch": "^4.0.5"
},
"peerDependenciesMeta": {
"htmlnano": {
"optional": false
},
"micromatch": {
"optional": false
}
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}