forked from taskcluster/docker-worker
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
85 lines (85 loc) · 2.41 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "docker-worker",
"private": true,
"version": "0.0.0",
"description": "Docker task host for linux.",
"bin": {
"docker-worker": "bin/worker.js"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "yarn build && ./.test/test.sh $(find test -name '*_test.js') --reporter spec",
"build": "babel src -d build -s --copy-files && babel test -d .test -s --copy-files"
},
"repository": {
"type": "git",
"url": "git://github.com/taskcluster/docker-worker.git"
},
"license": "ISC",
"bugs": "https://github.com/taskcluster/docker-worker/issues",
"homepage": "https://github.com/taskcluster/docker-worker",
"dependencies": {
"aws-sdk": "^2.5.5",
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-latest-minimal": "^1.1.0",
"babel-preset-stage-0": "^6.16.0",
"cli-color": "^1.1.0",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^2.2.0",
"debug": "*",
"dev-null": "^0.1.0",
"diskspace": "^1.0.3",
"diveSync": "^0.3.0",
"docker-exec-websocket-server": "^1.1.0",
"docker-image-parser": "^1.0.0",
"dockerode": "^2.3.0",
"dockerode-options": "^0.1.0",
"dockerode-process": "^0.6.1",
"dockerode-promise": "0.1.0",
"express": "^4.9.0",
"fs-ext": "^0.5.0",
"got": "^6.5.0",
"iptables": "^0.0.4",
"json-templater": "^1.1.0",
"koa": "^0.19.1",
"koa-json": "^1.1.1",
"koa-router": "^4.3.2",
"lodash": "^4.16.4",
"memory-streams": "^0.1.0",
"mime": "^1.3.4",
"mkdirp": "^0.5.0",
"mocha": "^3.1.0",
"mz": "^2.0.0",
"nock": "^8.1.0",
"openpgp": "^2.3.2",
"promise": "^7.0.3",
"promise-retry": "^1.1.1",
"request": "^2.65.0",
"rimraf": "^2.2.8",
"slugid": "^1.1.0",
"source-map-support": "^0.4.0",
"split2": "^2.1.0",
"stateless-dns-server": "^0.1.0",
"superagent": "^1.1.0",
"superagent-promise": "^0.2.0",
"tar-fs": "^1.7.0",
"tar-stream": "^1.2.1",
"taskcluster-azure-blobstream": "^0.3.0",
"taskcluster-base": "^6.2.0",
"taskcluster-client": "^1.6.1",
"taskcluster-lib-monitor": "^4.3.1",
"taskcluster-lib-scopes": "^1.0.0",
"taskcluster-task-factory": "^0.6.4",
"temporary": "^0.0.8",
"uuid": "^2.0.0",
"websocket-stream": "^3.3.0",
"ws": "^1.1.1"
}
}