forked from JustinBeckwith/linkinator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.82 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
{
"name": "linkinator",
"description": "Find broken links, missing images, etc in your HTML. Scurry around your site and find all those broken links.",
"version": "0.0.0",
"license": "MIT",
"repository": "JustinBeckwith/linkinator",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"bin": {
"linkinator": "build/src/cli.js"
},
"scripts": {
"pretest": "npm run compile",
"prepare": "npm run compile",
"compile": "tsc -p .",
"test": "c8 mocha build/test",
"fix": "gts fix",
"codecov": "c8 report --reporter=json && codecov -f coverage/*.json",
"lint": "gts check"
},
"dependencies": {
"chalk": "^3.0.0",
"cheerio": "^1.0.0-rc.2",
"finalhandler": "^1.1.2",
"gaxios": "^2.0.1",
"jsonexport": "^2.4.1",
"meow": "^6.0.0",
"p-queue": "^6.2.1",
"serve-static": "^1.14.1",
"server-destroy": "^1.0.1",
"update-notifier": "^4.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/cheerio": "^0.22.10",
"@types/finalhandler": "^1.1.0",
"@types/meow": "^5.0.0",
"@types/mocha": "^7.0.0",
"@types/node": "^12.7.12",
"@types/serve-static": "^1.13.3",
"@types/server-destroy": "^1.0.0",
"@types/sinon": "^7.5.0",
"@types/update-notifier": "^4.0.0",
"assert-rejects": "^1.0.0",
"c8": "^7.0.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"execa": "^4.0.0",
"gts": "^1.1.0",
"mocha": "^7.0.0",
"nock": "^12.0.0",
"semantic-release": "^17.0.0",
"sinon": "^9.0.0",
"typescript": "^3.6.4"
},
"engines": {
"node": ">=10"
},
"files": [
"build/src"
],
"keywords": [
"404",
"html",
"hyperlink",
"links",
"seo",
"url",
"broken link checker",
"broken",
"link",
"checker"
],
"c8": {
"exclude": [
"build/test"
]
}
}