forked from GitbookIO/plugin-mathjax
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "gitbook-plugin-mathjax",
"description": "MathJAX integration into GitBook to display math and latex equations",
"main": "index.js",
"version": "1.1.2",
"engines": {
"gitbook": ">=3.0.0"
},
"dependencies": {
"mathjax-node": "0.5.2",
"mathjax": "^2.7.0",
"q": "^1.1.2",
"crc": "^3.2.1"
},
"homepage": "https://github.com/GitbookIO/plugin-mathjax",
"repository": {
"type": "git",
"url": "https://github.com/GitbookIO/plugin-mathjax.git"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/GitbookIO/plugin-mathjax/issues"
},
"keywords": [
"math",
"latex"
],
"gitbook": {
"properties": {
"forceSVG": {
"type": "boolean",
"title": "Force use of SVG images",
"default": false
},
"version": {
"type": "string",
"title": "Version of MathJAX to use for website rendering",
"default": "2.6.1"
}
}
}
}