forked from apocas/dockerode
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 750 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 750 Bytes
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
{
"name": "dockerode",
"description": "Docker Remote API module.",
"version": "3.2.1",
"author": "Pedro Dias <petermdias@gmail.com>",
"maintainers": [
"apocas <petermdias@gmail.com>"
],
"repository": {
"type": "git",
"url": "http://github.com/apocas/dockerode.git"
},
"keywords": [
"docker",
"docker.io"
],
"dependencies": {
"docker-modem": "github:katacoda/docker-modem",
"tar-fs": "~2.0.1"
},
"devDependencies": {
"bluebird": "^3.7.0",
"chai": "~4.2.0",
"memorystream": "~0.3.0",
"mocha": "^7.1.0"
},
"main": "./lib/docker",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec --exit"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 8.0"
}
}