-
Notifications
You must be signed in to change notification settings - Fork 117
/
package.json
54 lines (54 loc) · 1.25 KB
/
package.json
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
{
"name": "markdown-link-check",
"version": "3.13.6",
"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.6",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"link-check": "^5.4.0",
"markdown-link-extractor": "^4.0.2",
"needle": "^3.3.1",
"progress": "^2.0.3",
"proxy-agent": "^6.4.0",
"xmlbuilder2": "^3.1.1"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"expect.js": "^0.3.1",
"express": "^4.21.1",
"globals": "^15.12.0",
"mocha": "^10.8.2"
}
}