-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "linkinator-action",
"version": "1.11.0",
"description": "A GitHub Action that checks your README and other markdown for 404s.",
"main": "dist/index.js",
"scripts": {
"test": "c8 mocha",
"fix": "semistandard --fix",
"lint": "semistandard",
"build": "ncc build src/index.js --license licenses.txt --source-map"
},
"type": "module",
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustinBeckwith/linkinator-action.git"
},
"keywords": [
"404",
"link",
"checker"
],
"author": "Justin Beckwith <justin.beckwith@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JustinBeckwith/linkinator-action/issues"
},
"homepage": "https://github.com/JustinBeckwith/linkinator-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"linkinator": "6.1.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.2",
"c8": "^10.1.2",
"mocha": "^11.0.0",
"nock": "^13.5.5",
"semistandard": "^17.0.0",
"sinon": "^19.0.2"
},
"semistandard": {
"ignore": [
"dist/*.*"
]
}
}