-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.18 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
{
"name": "mathoid",
"version": "0.7.5",
"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 'test/**/*.js'",
"lint": "eslint --ext .js,.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.7.2",
"body-parser": "^1.19.0",
"bunyan": "^1.8.15",
"cassandra-uuid": "^0.1.0",
"compression": "^1.7.4",
"express": "^4.17.1",
"http-shutdown": "^1.2.2",
"js-yaml": "^4.0.0",
"mathoid-mathjax-node": "^0.7.1",
"mock-express-request": "^0.2.2",
"mock-express-response": "^0.3.0",
"preq": "^0.5.14",
"service-runner": "^2.8.2",
"speech-rule-engine": "^2.4.0",
"svgo": "^1.3.2",
"swagger-router": "^0.7.4",
"texvcinfo": "^0.5.6"
},
"optionalDependencies": {
"librsvg": "^0.7.0",
"swagger-ui-dist": "^3.42.0"
},
"devDependencies": {
"ajv": "^7.0.4",
"commander": "^7.0.0",
"coveralls": "^3.1.0",
"dom-compare": "^0.6.0",
"eslint-config-wikimedia": "0.20.0",
"extend": "^3.0.2",
"istanbul": "^0.4.5",
"microtime": "^3.0.0",
"mocha": "^8.2.1",
"mocha-lcov-reporter": "^1.3.0",
"mock-require": "^3.0.3",
"nyc": "^15.1.0",
"rewire": "^5.0.0",
"xmldom": "^0.5.0"
},
"engines": {
"node": ">=10"
},
"deploy": {
"node": "6.11.1",
"target": "debian",
"dependencies": {
"_all": [
"librsvg2-dev"
]
}
}
}