forked from drew-wikihow/mathoid
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.8 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.8 KB
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
70
71
72
73
74
75
76
77
78
{
"name": "mathoid",
"version": "0.6.4",
"description": "Render TeX to SVG and MathML using MathJax. Based on svgtex.",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"test": "mocha && nsp check",
"docker-start": "service-runner docker-start",
"docker-test": "service-runner docker-test",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git://github.com/wikimedia/mathoid.git"
},
"keywords": [
"REST",
"API",
"service template",
"MediaWiki",
"MathML",
"SVG",
"LaTeX",
"TeX",
"texvc",
"math",
"rendering"
],
"author": "Wikimedia Service Team <services@wikimedia.org>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/mathoid/"
},
"homepage": "https://github.com/wikimedia/mathoid",
"dependencies": {
"bluebird": "^3.4.1",
"body-parser": "^1.15.2",
"bunyan": "^1.8.1",
"cassandra-uuid": "^0.0.2",
"compression": "^1.6.2",
"core-js": "^2.4.1",
"express": "^4.14.0",
"js-yaml": "^3.6.1",
"mathoid-mathjax-node": "^0.6.6",
"preq": "^0.4.10",
"service-runner": "^2.2.5",
"svgo": "^0.7.1",
"texvcinfo": "^0.4.2",
"swagger-router": "^0.5.2"
},
"devDependencies": {
"commander": "^2.9.0",
"dom-compare": "^0.2.1",
"extend": "^3.0.0",
"istanbul": "^0.4.4",
"mocha": "^3.1.2",
"mocha-jshint": "^2.3.1",
"mocha-lcov-reporter": "^1.2.0",
"nsp": "^2.6.1",
"rewire": "^2.5.1",
"xmldom": "^0.1.21"
},
"deploy": {
"node": "6.9.1",
"target": "debian",
"dependencies": {
"_all": [
"librsvg2-dev"
]
}
},
"engines": {
"node": "6.10.3"
}
}