-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.7 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
{
"name": "@asciidoctor/docbook-converter",
"version": "3.0.0",
"description": "DocBook converter for Asciidoctor.js",
"type": "module",
"main": "dist/index.cjs",
"browser": "dist/index.umd.js",
"module": "dist/index.esm.js",
"engines": {
"node": ">=8.11",
"npm": ">=5.0.0"
},
"files": [],
"scripts": {
"build": "node tasks/build.js && rollup -c",
"test": "npm run test:node && npm run test:browser",
"test:node": "mocha",
"test:browser": "node test/browser/run.cjs index.esm.html && npx rollup -c test/browser/rollup.config.js && node test/browser/run.cjs index.umd.html",
"lint": "standard test/**.cjs tasks/**.js"
},
"repository": {
"type": "git",
"url": "https://github.com/asciidoctor/asciidoctor-docbook.js.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"asciidoc",
"asciidoctor",
"opal",
"javascript",
"library",
"converter",
"docbook"
],
"authors": [
"Guillaume Grossetie (https://github.com/mogztter)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/asciidoctor/asciidoctor-docbook.js/issues"
},
"homepage": "https://github.com/asciidoctor/asciidoctor-docbook.js",
"devDependencies": {
"@asciidoctor/core": "~3.0",
"bestikk-download": "1.0.0",
"bestikk-fs": "1.0.0",
"bestikk-log": "0.1.0",
"chai": "~4.3",
"dirty-chai": "2.0.1",
"mocha": "~10.2",
"mock-http-server": "1.4.5",
"opal-compiler": "3.0.0",
"portfinder": "1.0.32",
"puppeteer": "~23.2",
"rollup": "3.21.6",
"standard": "~17.0"
},
"peerDependencies": {
"@asciidoctor/core": ">= 3.0 < 4.0"
},
"standard": {
"env": {
"mocha": true
}
}
}