forked from jboxman/asciidoc-aware-link-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.14 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
{
"name": "asciidoc-aware-link-check",
"version": "1.0.5",
"description": "Test the links in your asciidoc files.",
"main": "index.js",
"scripts": {
"test": "riteway -r esm 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/",
"dependencies": {
"asciidoctor": "^2.1.0",
"async": "^3.1.1",
"chalk": "^3.0.0",
"commander": "^4.1.0",
"link-check": "^4.4.7",
"progress": "^2.0.3",
"semver": "^7.3.2"
},
"devDependencies": {
"esm": "^3.2.25",
"riteway": "^6.1.1"
}
}