forked from mafintosh/docker-run
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 814 Bytes
/
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
{
"name": "docker-run",
"version": "2.0.0",
"description": "Start a docker image and attach to it",
"main": "index.js",
"dependencies": {
"debug": "^1.0.2",
"docker-raw-stream": "^1.3.0",
"docker-remote-api": "^4.4.0",
"pump": "^1.0.0",
"through2": "^0.6.2",
"minimist": "^1.1.0"
},
"devDependencies": {
"concat-stream": "^1.4.6",
"tape": "^3.0.0"
},
"bin": {
"docker-run": "./bin.js"
},
"scripts": {
"test": "tape test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mafintosh/docker-run"
},
"keywords": [
"docker",
"run"
],
"author": "Mathias Buus",
"license": "MIT",
"bugs": {
"url": "https://github.com/mafintosh/docker-run/issues"
},
"homepage": "https://github.com/mafintosh/docker-run"
}