-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
80 lines (80 loc) · 2.2 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
80
{
"name": "asciidoctor-kroki",
"version": "0.18.1",
"description": "Asciidoctor extension to convert diagrams to images using Kroki",
"type": "commonjs",
"main": "./src/asciidoctor-kroki.js",
"exports": {
"node": "./src/asciidoctor-kroki.js",
"default": "./dist/browser/asciidoctor-kroki.js"
},
"files": [
"src",
"dist"
],
"scripts": {
"test": "npm run test:node && npm run test:browser && npm run test:antora",
"test:node": "mocha test/**.spec.js",
"test:browser": "node test/browser/run.js",
"test:antora": "mocha test/antora/**.spec.js",
"lint": "standard src/**.js test/**.js tasks/**.js",
"lint-fix": "npm run lint -- --fix",
"clean": "shx rm -rf dist/*",
"dist": "npm run clean && npm run dist:browser",
"dist:browser": "shx mkdir -p dist/browser && browserify src/asciidoctor-kroki.js --exclude ./node-fs.js --exclude ./fetch.js --exclude ./antora-adapter.js --standalone AsciidoctorKroki -o dist/browser/asciidoctor-kroki.js"
},
"dependencies": {
"json5": "2.2.3",
"mkdirp": "2.1.3",
"pako": "2.1.0",
"rusha": "0.8.14",
"unxhr": "1.2.0"
},
"devDependencies": {
"@antora/site-generator-default": "~3.1",
"@asciidoctor/core": ">=2.2 <4.0",
"base64-js": "1.5.1",
"browserify": "17.0.0",
"chai": "~4.3",
"chai-string": "1.5.0",
"cheerio": "1.0.0-rc.12",
"dirty-chai": "2.0.1",
"libnpmpublish": "4.0.2",
"lodash": "4.17.21",
"mocha": "10.2.0",
"pacote": "12.0.2",
"puppeteer": "~21.3",
"shx": "0.3.4",
"sinon": "~16.1",
"standard": "17.1.0"
},
"peerDependencies": {
"@asciidoctor/core": ">=2.2 <4.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Mogztter/asciidoctor-kroki.git"
},
"keywords": [
"asciidoctor",
"kroki",
"diagrams",
"javascript",
"extension"
],
"author": "Guillaume Grossetie (https://github.com/mogztter)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mogztter/asciidoctor-kroki/issues"
},
"homepage": "https://github.com/Mogztter/asciidoctor-kroki#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=10"
},
"volta": {
"node": "16.20.1"
}
}