markdown-link-check/package.json
2024-05-07 18:05:24 -04:00

54 lines
1.2 KiB
JSON

{
"name": "markdown-link-check",
"version": "3.12.1",
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead",
"bin": {
"markdown-link-check": "markdown-link-check"
},
"main": "index.js",
"scripts": {
"pretest": "eslint .",
"test": "mocha -R spec --exit"
},
"repository": {
"type": "git",
"url": "git://github.com/tcort/markdown-link-check.git"
},
"keywords": [
"markdown",
"md",
"link",
"hyperlink",
"href",
"check",
"checker"
],
"author": "Thomas Cort <linuxgeek@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/tcort/markdown-link-check/issues"
},
"homepage": "https://github.com/tcort/markdown-link-check#readme",
"files": [
"markdown-link-check"
],
"dependencies": {
"async": "^3.2.5",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"link-check": "^5.3.0",
"lodash": "^4.17.21",
"markdown-link-extractor": "^4.0.2",
"needle": "^3.3.1",
"progress": "^2.0.3",
"proxy-agent": "^6.4.0"
},
"devDependencies": {
"eslint": "^9.2.0",
"expect.js": "^0.3.1",
"express": "^4.18.3",
"globals": "^15.1.0",
"mocha": "^10.3.0"
}
}