1 | {
|
2 | "name": "linkinator",
|
3 | "description": "Find broken links, missing images, etc in your HTML. Scurry around your site and find all those broken links.",
|
4 | "version": "6.1.2",
|
5 | "license": "MIT",
|
6 | "repository": "JustinBeckwith/linkinator",
|
7 | "author": "Justin Beckwith",
|
8 | "exports": "./build/src/index.js",
|
9 | "types": "./build/src/index.d.ts",
|
10 | "type": "module",
|
11 | "bin": {
|
12 | "linkinator": "./build/src/cli.js"
|
13 | },
|
14 | "scripts": {
|
15 | "pretest": "npm run build",
|
16 | "prepare": "husky && npm run build",
|
17 | "coverage": "c8 report --reporter=json",
|
18 | "build": "tsc -p .",
|
19 | "test": "c8 mocha build/test",
|
20 | "fix": "biome check --write .",
|
21 | "lint": "biome check .",
|
22 | "build-binaries": "pkg . --out-path build/binaries",
|
23 | "docs-test": "node build/src/cli.js ./README.md"
|
24 | },
|
25 | "dependencies": {
|
26 | "chalk": "^5.0.0",
|
27 | "escape-html": "^1.0.3",
|
28 | "gaxios": "^6.0.0",
|
29 | "glob": "^10.3.10",
|
30 | "htmlparser2": "^9.0.0",
|
31 | "marked": "^13.0.0",
|
32 | "meow": "^13.0.0",
|
33 | "mime": "^4.0.0",
|
34 | "server-destroy": "^1.0.1",
|
35 | "srcset": "^5.0.0"
|
36 | },
|
37 | "devDependencies": {
|
38 | "@biomejs/biome": "1.9.3",
|
39 | "@types/escape-html": "^1.0.1",
|
40 | "@types/mocha": "^10.0.0",
|
41 | "@types/node": "^20.0.0",
|
42 | "@types/server-destroy": "^1.0.1",
|
43 | "@types/sinon": "^17.0.0",
|
44 | "c8": "^10.0.0",
|
45 | "execa": "^9.0.0",
|
46 | "husky": "^9.0.11",
|
47 | "mocha": "^10.0.0",
|
48 | "nock": "^13.2.1",
|
49 | "pkg": "^5.4.1",
|
50 | "semantic-release": "^24.0.0",
|
51 | "sinon": "^18.0.0",
|
52 | "strip-ansi": "^7.0.1",
|
53 | "typescript": "^5.5.2"
|
54 | },
|
55 | "engines": {
|
56 | "node": ">=18"
|
57 | },
|
58 | "files": [
|
59 | "build/src"
|
60 | ],
|
61 | "keywords": [
|
62 | "404",
|
63 | "html",
|
64 | "hyperlink",
|
65 | "links",
|
66 | "seo",
|
67 | "url",
|
68 | "broken link checker",
|
69 | "broken",
|
70 | "link",
|
71 | "checker"
|
72 | ]
|
73 | }
|