forked from tcort/markdown-link-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.77 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "markdown-link-check",
"version": "3.8.5",
"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": "jshint index.js markdown-link-check",
"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 <[email protected]>",
"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.0",
"chalk": "^4.1.0",
"commander": "^6.2.0",
"link-check": "^4.5.4",
"lodash": "^4.17.20",
"markdown-link-extractor": "^1.2.6",
"progress": "^2.0.3",
"request": "^2.88.2"
},
"devDependencies": {
"expect.js": "^0.3.1",
"mocha": "^8.2.1",
"jshint": "^2.12.0",
"express": "^4.17.1"
},
"jshintConfig": {
"esversion": 6,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"globalstrict": true,
"immed": true,
"indent": 4,
"moz": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"trailing": true,
"undef": true,
"smarttabs": true,
"strict": true,
"validthis": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}