-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
41 lines (41 loc) · 1023 Bytes
/
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
{
"name": "asciidoctor-katex",
"version": "0.4.1",
"description": "Asciidoctor extension that converts latexmath to HTML using KaTeX at build-time",
"author": "Jakub Jirutka <jakub@jirutka.cz>",
"license": "MIT",
"homepage": "https://github.com/jirutka/asciidoctor-katex/",
"bugs": {
"url": "https://github.com/jirutka/asciidoctor-katex/issues/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jirutka/asciidoctor-katex.git"
},
"main": "dist/asciidoctor-katex.js",
"files": [
"dist/asciidoctor-katex.js",
"LICENSE",
"README.md"
],
"scripts": {
"prepublishOnly": "bundle install && bundle exec rake build:js && bundle exec rake readme2md"
},
"keywords": [
"asciidoctor",
"asciidoc",
"extension",
"katex",
"latex",
"opal"
],
"dependencies": {
"katex": ">=0.9.0 <1.0.0"
},
"devDependencies": {
"@asciidoctor/core": ">=2.0.0 <2.2.0"
},
"peerDependencies": {
"@asciidoctor/core": ">=2.0.0 <2.2.0"
}
}