This repository has been archived by the owner on Nov 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
69 lines (69 loc) · 1.85 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
64
65
66
67
68
69
{
"title": "TeX Equations",
"name": "gitbook-plugin-mathjax",
"description": "Insert math and LaTeX equations in your pages.",
"main": "index.js",
"icon": "./icon.png",
"version": "2.0.0",
"engines": {
"gitbook": ">=4.0.0-alpha"
},
"dependencies": {
"crc": "^3.2.1",
"mathjax-node": "0.5.2",
"q": "^1.1.2"
},
"devDependencies": {
"eslint": "^3.7.1",
"eslint-config-gitbook": "^1.3.1",
"gitbook-plugin": "^4.0.0-alpha.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"
},
"scripts": {
"build-js": "gitbook-plugin build ./src/index.js ./_assets/plugin.js",
"prepublish": "npm run build-js"
},
"browser": "./_assets/plugin.js",
"ebook": "./_assets/plugin.js",
"title": "MathJax",
"gitbook": {
"properties": {
"forceSVG": {
"type": "boolean",
"title": "Use SVG images in output",
"default": false
},
"version": {
"type": "string",
"title": "Version of MathJAX for website output",
"default": "2.6-latest"
}
},
"blocks": {
"math": {
"title": "TeX Equation",
"description": "Display a math formula",
"properties": {
"children": {
"type": "string"
}
}
}
}
},
"keywords": [
"gitbook",
"plugin",
"math",
"latex",
"gitbook:content"
]
}