forked from codeboardio/mantra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 2.09 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
{
"name": "codeboard_mantra",
"version": "0.1.0",
"description": "Web service for compiling and running programs. Part of the codeboard.io project.",
"contributors": [
{
"name": "H.-Christian Estler",
"email": "[email protected]"
},
{
"name": "Martin Nordio",
"email": "[email protected]"
}
],
"scripts": {
"start": "node ./server/server.js",
"deploy": "NODE_ENV=production node ./server/server.js",
"test": "NODE_ENV=test mocha ./test/docker/* ./test/languages/*.js ./test/*.js",
"testFunctional": "NODE_ENV=test mocha ./test/languages/functional_test/*.js",
"testFunctionalC": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalC.js",
"testFunctionalCpp": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalCpp.js",
"testFunctionalHaskell": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalHaskell.js",
"testFunctionalHaskell-hspec": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalHaskell-hspec.js",
"testFunctionalJava": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalJava.js",
"testFunctionalJava-junit": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalJava-junit.js",
"testFunctionalPython": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalPython.js",
"testFunctionalPython-unittest": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalPython-unittest.js",
"testFunctionalZ_unsupportedLanguages": "NODE_ENV=test mocha ./test/languages/functional_test/testFunctionalZ_unsupportedLanguages.js"
},
"repository": {
"type": "git",
"url": "git://github.com/codeboardio/mantra.git"
},
"dependencies": {
"express": "^4.17.1",
"http-proxy": "1.11.1",
"body-parser": "^1.19.0",
"mkdirp": "0.5.0",
"bluebird": "2.9.34",
"request": "^2.88.0",
"winston": "1.0.1",
"websocket": "^1.0.30",
"lodash": "^4.17.15"
},
"devDependencies": {
"mocha": "^6.2.1",
"should": "7.0.1",
"supertest": "4.0.2"
},
"license": "MIT"
}