-
Notifications
You must be signed in to change notification settings - Fork 188
/
package.json
63 lines (63 loc) · 1.59 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
{
"name": "@asciidoctor/reveal.js",
"version": "5.1.0",
"description": "A reveal.js converter for Asciidoctor.js. Write your slides in AsciiDoc!",
"main": "dist/main.js",
"engines": {
"node": ">=16",
"npm": ">=8.0.0"
},
"bin": {
"asciidoctor-revealjs": "npm/asciidoctor-revealjs"
},
"files": [
"npm/asciidoctor-revealjs"
],
"scripts": {
"test": "node test/smoke.js",
"examples": "node npm/examples.js",
"release:description": "node npm/release/description.js",
"release:prepare": "node npm/release/prepare.js",
"release:next": "node npm/release/next.js",
"package": "npm i @asciidoctor/core && pkg -t node16-linux-x64,node16-macos-x64,node16-win-x64 package.json --out-path dist/"
},
"repository": {
"type": "git",
"url": "https://github.com/asciidoctor/asciidoctor-reveal.js.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"asciidoc",
"asciidoctor",
"opal",
"javascript",
"library",
"backend",
"template",
"reveal.js"
],
"authors": [
"Olivier Bilodeau (https://github.com/obilodeau)",
"Guillaume Grossetie (https://github.com/mogztter)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/asciidoctor/asciidoctor-reveal.js/issues"
},
"homepage": "https://github.com/asciidoctor/asciidoctor-reveal.js",
"dependencies": {
"@asciidoctor/cli": "~4.0",
"reveal.js": "4.5.0"
},
"devDependencies": {
"@asciidoctor/core": "~3.0",
"bestikk-log": "0.1.0",
"expect.js": "0.3.1",
"pkg": "5.8.1"
},
"volta": {
"node": "16.20.1"
}
}