-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 883 Bytes
/
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
{
"name": "latex2svg",
"version": "1.0.0",
"main": "server.js",
"author": "vrayulu",
"description": "Convert latex expressions to SVG",
"license": "MIT License",
"repository": {},
"scripts": {
"test": "mocha 'test/tests.js'",
"test-samples": "mocha 'test/sample_equations.js'"
},
"dependencies": {
"async": "~3.1.0",
"body-parser": "~1.18.3",
"cors": "^2.8.5",
"express": "~4.16.0",
"compression": "^1.7.4",
"helmet": "^3.21.2",
"mathjax-full": "^3.0.0",
"memory-cache": "^0.2.0",
"svg2img": "^0.6.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.0.0",
"codacy-coverage": "3.0.0",
"faker": "*",
"mocha": "^5.2.0",
"mochawesome": "^3.0.3",
"nyc": "^14.1.1",
"request": "^2.88.0",
"sinon": "^6.1.5",
"mock-require": "^3.0.3",
"node-mocks-http": "^1.8.1"
}
}