-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.7 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
{
"name": "app-ancile",
"version": "1.0.0",
"description": "A Databox app to support Cornell Tech's Ancile Project",
"config": {
"registry": "localhost:5000"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha",
"start": "node ./src/main.js",
"build": "docker build -t databox/app-ancile .",
"deploy": "docker tag databox/app-ancile $npm_package_config_registry/app-ancile && docker push $npm_package_config_registry/app-ancile",
"build-arm": "docker build -f Dockerfile-arm -t databox/app-ancile-arm .",
"deploy-arm": "docker tag databox/app-ancile-arm $npm_package_config_registry/app-ancile-arm && docker push $npm_package_config_registry/app-ancile-arm",
"clean": "node ./node_modules/modclean/bin/modclean.js -p ./node_modules/ -r",
"getshell": "docker exec -i -t app-ancile /bin/bash",
"kill": "docker kill app-ancile",
"attach": "docker attach app-ancile",
"shell": "docker run -i -t databox/app-ancile /bin/bash",
"local": "docker run -i -t databox/app-ancile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/minoskt/app-ancile.git"
},
"keywords": [
"Databox",
"ancile",
"stream"
],
"author": "Kleomenis Katevas",
"license": "MIT",
"bugs": {
"url": "https://github.com/minoskt/app-ancile/issues"
},
"homepage": "https://github.com/minoskt/app-ancile#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"modclean": "^2.1.2",
"node-databox": "^0.10.8",
"nonce-generator": "^1.0.2",
"oauth": "^0.9.15",
"pug": "^2.0.4",
"request": "^2.88.0"
},
"devDependencies": {
"assert": "^1.5.0",
"mocha": "^5.2.0",
"supertest": "^3.1.0"
}
}