forked from JustinBeckwith/linkinator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.65 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@avenga/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": "avenga/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": "vitest run --coverage",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "vitest",
"fix": "biome check --write .",
"lint": "biome check .",
"docs-test": "node build/src/cli.js ./README.md",
"start": "node --experimental-transform-types src/cli.ts"
},
"dependencies": {
"chalk": "^5.6.2",
"escape-html": "^1.0.3",
"glob": "^11.0.2",
"htmlparser2": "^10.0.0",
"marked": "^15.0.12",
"mime": "^4.0.0",
"server-destroy": "^1.0.1",
"srcset": "^5.0.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/escape-html": "^1.0.1",
"@types/node": "^22.0.0",
"@types/server-destroy": "^1.0.1",
"@types/yargs": "^17.0.33",
"@vitest/coverage-v8": "^3.2.4",
"execa": "^9.0.0",
"husky": "^9.0.11",
"nock": "^14.0.5",
"semantic-release": "^24.0.0",
"strip-ansi": "^7.1.2",
"typescript": "^5.5.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.7",
"npm": ">=9",
"bun": "1.2.20"
},
"files": [
"build/src"
],
"keywords": [
"404",
"html",
"hyperlink",
"links",
"seo",
"url",
"broken link checker",
"broken",
"link",
"checker"
],
"publishConfig": {
"access": "public"
}
}