-
Notifications
You must be signed in to change notification settings - Fork 305
/
package.json
103 lines (103 loc) · 3.18 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "broken-link-checker",
"description": "Find broken links, missing images, etc within your HTML.",
"version": "0.8.0",
"license": "MIT",
"author": "Steven Vachon <[email protected]> (https://svachon.com)",
"repository": "github:stevenvachon/broken-link-checker",
"main": "lib-cjs",
"bin": {
"blc": "bin/blc",
"broken-link-checker": "bin/blc"
},
"dependencies": {
"chalk": "^4.1.0",
"condense-whitespace": "^2.0.0",
"deep-freeze-node": "^1.1.3",
"default-user-agent": "^1.0.0",
"errno": "^1.0.0",
"gauge": "^3.0.0",
"got": "^10.0.2",
"http-equiv-refresh": "^2.0.1",
"http-methods-constants": "^1.1.0",
"humanize-duration": "^3.25.1",
"is-stream": "^2.0.0",
"is-string": "^1.0.5",
"isurl": "^4.0.2",
"keyscan": "^1.7.0",
"limited-request-queue": "github:stevenvachon/limited-request-queue",
"link-types": "^3.0.0",
"lodash": "^4.17.21",
"longest": "^2.0.1",
"matcher": "^4.0.0",
"node-notifier": "^9.0.0",
"object-assign": "^4.1.1",
"optionator": "~0.9.1",
"parse-srcset": "^1.0.2",
"parse5": "^6.0.1",
"parse5-parser-stream": "^6.0.1",
"robot-directives": "github:stevenvachon/robot-directives",
"robots-txt-guard": "^1.0.2",
"robots-txt-parse": "^2.0.1",
"strip-ansi": "^6.0.0",
"supports-semigraphics": "^1.0.1",
"url-relation": "github:stevenvachon/url-relation",
"urlcache": "github:stevenvachon/urlcache",
"walk-parse5": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/core": "^7.13.8",
"@babel/eslint-parser": "^7.13.8",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/plugin-syntax-class-properties": "^7.12.13",
"@babel/preset-env": "^7.13.9",
"@babel/register": "^7.13.8",
"babel-plugin-add-module-exports": "^1.0.4",
"basic-auth": "^2.0.1",
"basic-auth-header": "^1.0.1",
"c8": "^7.6.0",
"chai": "^4.3.3",
"chai-as-promised": "^7.1.1",
"chai-subset": "github:stevenvachon/chai-subset",
"chai-things": "~0.2.0",
"coveralls": "^3.1.0",
"escape-string-regexp": "^4.0.0",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^32.2.0",
"eslint-plugin-sort-destructure-keys": "^1.3.5",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.11.0",
"http-status": "^1.5.0",
"mocha": "^8.3.0",
"nock": "^13.0.10",
"void-elements": "^3.1.0"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"build": "babel lib/ --config-file=./scripts/babel.config.js --out-dir=lib-cjs/ --source-maps",
"ci": "npm test && c8 report --reporter=text-lcov | coveralls",
"lint": "eslint lib/ scripts/ test/",
"lint:fix": "npm run lint -- --fix",
"posttest": "c8 report --reporter=text-summary --reporter=html",
"prepublishOnly": "npm test && npm run build",
"test": "c8 --exclude=scripts/ mocha test/ --bail --check-leaks --require=scripts/register-babel",
"test:watch": "npm test -- --watch --watch-extensions=js,json"
},
"files": [
"bin",
"lib",
"lib-cjs"
],
"keywords": [
"404",
"html",
"hyperlink",
"links",
"seo",
"url",
"whatwg"
]
}