forked from stevenvachon/broken-link-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.62 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
{
"name": "broken-link-checker",
"description": "Find broken links, missing images, etc in your HTML.",
"version": "0.7.8",
"license": "MIT",
"author": "Steven Vachon <[email protected]> (https://www.svachon.com/)",
"repository": "stevenvachon/broken-link-checker",
"main": "lib",
"bin": {
"blc": "bin/blc",
"broken-link-checker": "bin/blc"
},
"dependencies": {
"bhttp": "^1.2.1",
"calmcard": "~0.1.1",
"chalk": "^1.1.3",
"char-spinner": "^1.0.1",
"condense-whitespace": "^1.0.0",
"default-user-agent": "^1.0.0",
"errno": "~0.1.4",
"extend": "^3.0.0",
"humanize-duration": "^3.9.1",
"http-equiv-refresh": "^1.0.0",
"is-stream": "^1.0.1",
"is-string": "^1.0.4",
"limited-request-queue": "^2.0.0",
"link-types": "^1.1.0",
"maybe-callback": "^2.1.0",
"nopter": "~0.3.0",
"parse5": "^3.0.2",
"robot-directives": "~0.3.0",
"robots-txt-guard": "~0.1.0",
"robots-txt-parse": "~0.0.4",
"urlcache": "~0.7.0",
"urlobj": "0.0.11"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-like": "~0.2.10",
"chai-things": "~0.2.0",
"es6-promise": "^4.1.0",
"mocha": "^3.0.2",
"object.assign": "^4.0.4",
"slashes": "^1.0.5",
"st": "^1.2.0"
},
"engines": {
"node": ">= 0.10"
},
"scripts": {
"test": "mocha test/ --reporter spec --check-leaks --bail",
"test-watch": "mocha test/ --reporter spec --check-leaks --bail -w"
},
"files": [
"bin",
"lib",
"license"
],
"keywords": [
"404",
"html",
"hyperlink",
"links",
"seo",
"url"
]
}