-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.42 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"author": "Jens Oliver Meiert",
"bin": {
"hihtml": "bin/hihtml.js"
},
"dependencies": {
"commander": "^15.0.0",
"html-minifier-next": "^7.2.0",
"html-validate": "^11.5.3",
"obsohtml": "^1.10.1"
},
"description": "The HTML supertool to validate, link-check, and minify web pages",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.6.0",
"globals": "^17.6.0",
"typescript": "^7.0.2"
},
"exports": {
".": {
"types": "./src/index.d.ts",
"default": "./src/index.js"
}
},
"files": [
"bin/hihtml.js",
"src",
"!src/index.types.ts"
],
"funding": "https://github.com/j9t/hihtml?sponsor=1",
"homepage": "https://github.com/j9t/hihtml",
"keywords": [
"conformance",
"html",
"html-minifier",
"html-minifier-next",
"html-validate",
"link-check",
"links",
"minification",
"minifier",
"minify",
"quality",
"validate",
"validation"
],
"license": "MIT",
"name": "hihtml",
"repository": {
"type": "git",
"url": "git+https://github.com/j9t/hihtml.git"
},
"scripts": {
"lint": "eslint .",
"prepare": "git config core.hooksPath .githooks || true",
"start": "node ./bin/hihtml.js",
"test": "npm run test:types && node --test bin/hihtml.test.js",
"test:types": "tsc"
},
"type": "module",
"types": "src/index.d.ts",
"version": "1.4.0"
}