-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
52 lines (52 loc) · 1.17 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": "mathjax-node-cli",
"version": "1.0.1",
"description": "CLI tools for calling mathjax-node",
"keywords": [
"mathjax-node",
"cli",
"MathJax",
"math",
"svg",
"HTML",
"MathML",
"TeX",
"AsciiMath"
],
"maintainers": [
"MathJax Consortium <info@mathjax.org> (http://www.mathjax.org)"
],
"bugs": {
"url": "http://github.com/mathjax/mathjax-node-cli/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mathjax/mathjax-node-cli.git"
},
"dependencies": {
"mathjax-node-sre": "*",
"yargs": ">=11.*"
},
"scripts": {
"test": "tape test/*.js"
},
"bin": {
"am2html": "./bin/am2html",
"am2mml": "./bin/am2mml",
"mml2html": "./bin/mml2html",
"mml2mml": "./bin/mml2mml",
"mml2svg-html5": "./bin/mml2svg-html5",
"tex2htmlcss": "./bin/tex2htmlcss",
"tex2svg": "./bin/tex2svg",
"am2htmlcss": "./bin/am2htmlcss",
"am2svg": "./bin/am2svg",
"mml2htmlcss": "./bin/mml2htmlcss",
"mml2svg": "./bin/mml2svg",
"tex2html": "./bin/tex2html",
"tex2mml": "./bin/tex2mml"
},
"devDependencies": {
"tape": "^4.0.3"
}
}