-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathpackage.json
52 lines (52 loc) · 1.79 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
{
"name": "asciidoctor-reveal.js",
"version": "1.1.0-dev",
"description": "A Reveal.js converter for Asciidoctor and Asciidoctor.js. Write your slides in AsciiDoc!",
"main": "dist/main.js",
"engines": {
"node": ">=0.12",
"npm": ">=3.0.0"
},
"files": [
"dist",
"templates/jade",
"LICENSE.adoc",
"README.adoc"
],
"scripts": {
"build": "node npm/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/asciidoctor/asciidoctor-reveal.js.git"
},
"keywords": [
"asciidoc",
"asciidoctor",
"opal",
"javascript",
"library",
"backend",
"template",
"reveal.js",
"jade"
],
"authors": [
"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": {
"reveal.js": "3.3.0"
},
"devDependencies": {
"async": "^1.5.0",
"bestikk-fs": "^0.1.0",
"bestikk-log": "0.1.0",
"bestikk-opal-compiler": "0.3.0-integration7"
},
"readme": "# Reveal.js converter for Asciidoctor\n\n[Asciidoctor reveal.js](https://github.com/asciidoctor/asciidoctor-reveal.js) is a converter for [Asciidoctor](https://github.com/asciidoctor/asciidoctor) and [Asciidoctor.js](https://github.com/asciidoctor/asciidoctor.js) that transforms an AsciiDoc document into an HTML5 presentation designed to be executed by the [reveal.js](http://lab.hakim.se/reveal-js/) presentation framework.\n\nThis is the npm module. For setup instructions and the AsciiDoc syntax to use to write a presentation see the module's documentation at [https://github.com/asciidoctor/asciidoctor-reveal.js](https://github.com/asciidoctor/asciidoctor-reveal.js).\n"
}