forked from mathjax/MathJax-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 822 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 822 Bytes
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": "mathjax-node",
"version": "2.1.1",
"description": "API's for calling MathJax from node.js",
"keywords": [
"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/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/mathjax/MathJax-node.git"
},
"dependencies": {
"is-fullwidth-code-point": "^2.0.0",
"jsdom": "^11.0.0",
"lodash": "^4.17.14",
"mathjax": "^2.7.2"
},
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"test": "tape test/*.js"
},
"main": "./lib/main.js",
"devDependencies": {
"tape": "^4.0.3"
}
}