forked from imazen/astro-broken-link-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 841 Bytes
/
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
{
"name": "astro-broken-links-checker",
"version": "1.0.3",
"description": "An Astro integration to check for broken links in your website during development and build time.",
"main": "index.js",
"type": "module",
"exports": {
".": "./index.js"
},
"keywords": [
"astro",
"astro-integration",
"broken-links",
"link-checker"
],
"author": "Lilith River",
"license": "Apache License 2.0",
"dependencies": {
"fast-glob": "^3.3.2",
"node-fetch": "^3.3.2",
"node-html-parser": "^6.1.13",
"p-limit": "^6.1.0"
},
"devDependencies": {
"execa": "^9.4.0",
"vitest": "^2.1.3"
},
"scripts": {
"build": "echo 'no build needed'",
"test": "cd tests && npm run build && cd .. && vitest",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch"
}
}