forked from christophetd/docker-python-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.14 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
{
"name": "docker-python-sandbox",
"version": "0.0.6",
"description": "A docker-based sandbox to execute untrusted python code code",
"main": "./lib/Sandbox",
"scripts": {
"test": "./scripts/run_tests.sh",
"test-unit": "jasmine-node --verbose --captureExceptions test/unit",
"start": "node app.js",
"clean": "docker stop $(docker ps -q) && rm -rf tmp",
"cleanAndRun": "docker stop $(docker ps -q) && rm -rf tmp && node --harmony_destructuring app.js",
"debug": "node debug app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christophetd/docker-python-sandbox-v2.git"
},
"author": "Christophe Tafani-Dereeper <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/christophetd/docker-python-sandbox-v2/issues"
},
"homepage": "https://github.com/christophetd/docker-python-sandbox-v2#readme",
"dependencies": {
"async": "^2.0.0-rc.3",
"dockerode": "^2.2.10",
"fs-extra": "^0.26.7",
"lodash": "^4.8.2",
"request": "^2.70.0",
"uuid": "^3.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"jasmine-node": "^1.14.5"
}
}