81 lines
2 KiB
JSON
81 lines
2 KiB
JSON
{
|
|
"name": "linkinator",
|
|
"description": "Find broken links, missing images, etc in your HTML. Scurry around your site and find all those broken links.",
|
|
"version": "2.16.2",
|
|
"license": "MIT",
|
|
"repository": "JustinBeckwith/linkinator",
|
|
"author": "Justin Beckwith",
|
|
"main": "build/src/index.js",
|
|
"types": "build/src/index.d.ts",
|
|
"bin": {
|
|
"linkinator": "build/src/cli.js"
|
|
},
|
|
"scripts": {
|
|
"pretest": "npm run compile",
|
|
"prepare": "npm run compile",
|
|
"codecov": "c8 report --reporter=json && codecov -f coverage/*.json",
|
|
"compile": "tsc -p .",
|
|
"test": "c8 mocha build/test",
|
|
"fix": "gts fix",
|
|
"lint": "gts lint",
|
|
"build-binaries": "pkg . --out-path build/binaries",
|
|
"docs-test": "node build/src/cli.js ./README.md"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "^4.0.0",
|
|
"escape-html": "^1.0.3",
|
|
"gaxios": "^4.0.0",
|
|
"glob": "^7.1.6",
|
|
"htmlparser2": "^7.1.2",
|
|
"jsonexport": "^3.0.0",
|
|
"marked": "^2.0.0",
|
|
"meow": "^9.0.0",
|
|
"mime": "^3.0.0",
|
|
"server-destroy": "^1.0.1",
|
|
"update-notifier": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.7",
|
|
"@types/escape-html": "^1.0.0",
|
|
"@types/glob": "^7.1.3",
|
|
"@types/marked": "^3.0.0",
|
|
"@types/meow": "^5.0.0",
|
|
"@types/mime": "^2.0.3",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.0.0",
|
|
"@types/server-destroy": "^1.0.0",
|
|
"@types/sinon": "^10.0.0",
|
|
"@types/update-notifier": "^5.0.0",
|
|
"c8": "^7.0.0",
|
|
"chai": "^4.2.0",
|
|
"codecov": "^3.8.1",
|
|
"execa": "^5.0.0",
|
|
"gts": "^3.0.0",
|
|
"mocha": "^9.0.0",
|
|
"nock": "^13.0.0",
|
|
"pkg": "^5.0.0",
|
|
"semantic-release": "^18.0.0",
|
|
"sinon": "^12.0.0",
|
|
"strip-ansi": "^6.0.0",
|
|
"typescript": "^4.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"files": [
|
|
"build/src"
|
|
],
|
|
"keywords": [
|
|
"404",
|
|
"html",
|
|
"hyperlink",
|
|
"links",
|
|
"seo",
|
|
"url",
|
|
"broken link checker",
|
|
"broken",
|
|
"link",
|
|
"checker"
|
|
]
|
|
}
|