-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.75 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.75 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
{
"name": "mathpipe",
"version": "0.1.0",
"description": "Processes tex to png images using different routes",
"main": "lib/index.js",
"scripts": {
"test": "jshint . && mocha",
"coverage": "istanbul cover _mocha -- -R spec",
"coveralls": "npm run coverage && cat ./coverage/lcov.info | coveralls",
"coverage-win": "istanbul cover node_modules/mocha/bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/physikerwelt/mathpipe.git"
},
"keywords": [
"TeX",
"LaTeX",
"macro",
"replacement",
"semantics",
"texvc",
"REST",
"API",
"service template",
"MediaWiki"
],
"author": "Moritz Schubotz",
"license": "ISC",
"bugs": {
"url": "https://github.com/physikerwelt/mathpipe/issues"
},
"homepage": "https://github.com/physikerwelt/mathpipe#readme",
"devDependencies": {
"coveralls": "^3.1.1",
"extend": "^3.0.2",
"fs-extra-promise": "^1.0.1",
"istanbul": "^0.4.5",
"jshint": "^2.13.5",
"mocha": "^10.0.0",
"mocha-jshint": "^2.3.1",
"mocha-lcov-reporter": "^1.3.0",
"swagger-router": "^0.7.4"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.20.0",
"bunyan": "^1.8.15",
"cassandra-uuid": "^0.1.0",
"child-process-promise": "^2.2.1",
"commander": "^9.4.0",
"compression": "^1.7.4",
"domino": "^2.1.6",
"express": "^4.18.1",
"geckodriver": "^3.0.2",
"js-yaml": "^4.1.0",
"mkdirp-bluebird": "^1.3.2",
"preq": "^0.5.14",
"request-promise": "^4.2.2",
"screenshot-promise": "^2.0.0",
"selenium-webdriver": "^4.4.0",
"service-runner": "^3.1.0"
},
"deploy": {
"target": "debian",
"node": "4.3.0",
"dependencies": {
"_all": []
}
}
}