-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
73 lines (73 loc) · 1.63 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "linkinator",
"description": "Find broken links, missing images, etc in your HTML. Scurry around your site and find all those broken links.",
"version": "0.0.0",
"license": "MIT",
"repository": "JustinBeckwith/linkinator",
"author": "Justin Beckwith",
"exports": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"type": "module",
"bin": {
"linkinator": "./build/src/cli.js"
},
"scripts": {
"pretest": "npm run build",
"prepare": "husky && npm run build",
"coverage": "c8 report --reporter=json",
"build": "tsc -p .",
"test": "c8 mocha build/test",
"fix": "biome check --write .",
"lint": "biome check .",
"build-binaries": "pkg . --out-path build/binaries",
"docs-test": "node build/src/cli.js ./README.md"
},
"dependencies": {
"chalk": "^5.0.0",
"escape-html": "^1.0.3",
"gaxios": "^6.0.0",
"glob": "^10.3.10",
"htmlparser2": "^9.0.0",
"marked": "^13.0.0",
"meow": "^13.0.0",
"mime": "^4.0.0",
"server-destroy": "^1.0.1",
"srcset": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/escape-html": "^1.0.1",
"@types/mocha": "^10.0.0",
"@types/node": "^22.0.0",
"@types/server-destroy": "^1.0.1",
"@types/sinon": "^17.0.0",
"c8": "^10.0.0",
"execa": "^9.0.0",
"husky": "^9.0.11",
"mocha": "^10.0.0",
"nock": "^13.2.1",
"pkg": "^5.4.1",
"semantic-release": "^24.0.0",
"sinon": "^19.0.2",
"strip-ansi": "^7.0.1",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=18"
},
"files": [
"build/src"
],
"keywords": [
"404",
"html",
"hyperlink",
"links",
"seo",
"url",
"broken link checker",
"broken",
"link",
"checker"
]
}