forked from asciidoctor/asciidoctor-reveal.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "@asciidoctor/reveal.js",
"version": "3.1.1-dev",
"description": "A reveal.js converter for Asciidoctor.js. Write your slides in AsciiDoc!",
"main": "dist/main.js",
"engines": {
"node": ">=8.11",
"npm": ">=5.0.0"
},
"bin": {
"asciidoctor-revealjs": "npm/asciidoctor-revealjs"
},
"files": [
"npm/asciidoctor-revealjs"
],
"scripts": {
"test": "node test/smoke.js",
"examples": "node npm/examples.js",
"package": "npm i @asciidoctor/core && pkg -t 'node12-linux-x64,node12-macos-x64,node12-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": "^3.1.0",
"reveal.js": "3.9.2"
},
"devDependencies": {
"@asciidoctor/core": "^2.0.3",
"bestikk-log": "0.1.0",
"expect.js": "0.3.1",
"pkg": "^4.4.2"
}
}