-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "@jboxman/asciidoc-aware-link-check",
"version": "2.0.0",
"description": "Test the links in your Asciidoc files.",
"main": "index.js",
"scripts": {
"test": "tape test/**/*.test.js",
"check-version": "node check-version.js",
"postinstall": "npm run-script check-version"
},
"bin": {
"asciidoc-aware-link-check": "./asciidoc-aware-link-check"
},
"engines": {
"node": ">= 10"
},
"keywords": [
"asciidoc",
"adoc",
"links",
"asciidoctor"
],
"author": "Jason Boxman <[email protected]> (http://linkedin.com/in/jboxman)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jboxman/asciidoc-aware-link-check.git"
},
"bugs": {
"url": "https://github.com/jboxman/asciidoc-aware-link-check/issues"
},
"homepage": "http://edseek.com/docs/projects/asciidoc-aware-link-check/",
"publishConfig": {
"access": "public"
},
"dependencies": {
"asciidoctor": "^2.2.5",
"async": "^3.2.1",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"js-yaml": "^4.1.0",
"link-check": "^4.4.7",
"progress": "^2.0.3",
"semver": "^7.3.5"
},
"devDependencies": {
"riteway": "^6.3.1"
}
}