link-checker-cli
Version:
CLI tool to check for broken links in a website or project
48 lines (47 loc) • 1.12 kB
JSON
{
"name": "link-checker-cli",
"version": "1.0.37",
"description": "CLI tool to check for broken links in a website or project",
"main": "./dist/main.js",
"type": "module",
"typings": "index.d.ts",
"types": "index.d.ts",
"bin": {
"blc": "./dist/main.js"
},
"scripts": {
"build": "tsc",
"tsup-build": "tsup src/main.ts --format esm --outDir dist --target node20 --shims",
"lint": "eslint src/",
"test": "jest"
},
"keywords": [
"link-checker",
"broken-links",
"website-checker",
"cli"
],
"author": "Mykola",
"license": "MIT",
"dependencies": {
"@drizzle-team/brocli": "^0.10.1",
"chalk": "^5.3.0",
"hanji": "^0.0.5",
"parse5": "^7.2.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/node": "^16.7.10",
"eslint": "^9.13.0",
"eslint-plugin-node": "^11.1.0",
"globals": "^15.11.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.2.1",
"tsup": "^8.4.0",
"typescript": "^4.4.2",
"typescript-eslint": "^8.11.0"
}
}