forked from wikimedia/mediawiki-services-mathoid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.44 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "mathoid",
"version": "0.7.2",
"content-version": "1.0.0",
"description": "Render TeX to SVG and MathML using MathJax. Based on svgtex.",
"main": "./app.js",
"scripts": {
"start": "service-runner",
"test": "npm run lint && PREQ_CONNECT_TIMEOUT=15 mocha",
"lint": "eslint --max-warnings 0 --ext .js --ext .json .",
"docker-start": "service-runner docker-start",
"docker-test": "service-runner docker-test",
"test-build": "service-runner docker-test && service-runner build --deploy-repo --force",
"coverage": "nyc --reporter=lcov node_modules/.bin/_mocha",
"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 <[email protected]>",
"contributors": [],
"license": "Apache-2.0",
"bugs": {
"url": "https://phabricator.wikimedia.org/tag/mathoid/"
},
"homepage": "https://github.com/wikimedia/mathoid",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"bunyan": "^1.8.12",
"cassandra-uuid": "^0.1.0",
"compression": "^1.7.1",
"express": "^4.16.2",
"http-shutdown": "^1.2.0",
"js-yaml": "^3.12.2",
"mathoid-mathjax-node": "^0.7.0",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.2.2",
"preq": "^0.5.4",
"service-runner": "^2.6.17",
"speech-rule-engine": "^2.3.2",
"svgo": "^1.2.0",
"swagger-router": "^0.7.1",
"texvcinfo": "^0.5.4"
},
"optionalDependencies": {
"librsvg": "^0.7.0",
"swagger-ui-dist": "^3.23.11"
},
"devDependencies": {
"ajv": "^6.6.2",
"commander": "^2.9.0",
"coveralls": "^3.0.2",
"dom-compare": "^0.3.1",
"eslint-config-wikimedia": "^0.11.0",
"eslint-plugin-jsdoc": "^4.1.1",
"eslint-plugin-json": "^1.4.0",
"eslint": "^5.15.1",
"extend": "^3.0.0",
"istanbul": "^0.4.5",
"microtime": "^3.0.0",
"mocha": "^5.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"nyc": "^13.3.0",
"rewire": "^4.0.1",
"xmldom": "^0.1.21"
},
"engines": {
"node": ">=4"
},
"deploy": {
"node": "6.11.1",
"target": "debian",
"dependencies": {
"_all": [
"librsvg2-dev"
]
}
}
}