forked from apocas/dockerode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
200 lines (200 loc) · 4.73 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
{
"name": "dockerode",
"description": "Docker Remote API module.",
"version": "2.4.3",
"author": "Pedro Dias <[email protected]>",
"maintainers": [
"apocas <[email protected]>"
],
"repository": {
"type": "git",
"url": "http://github.com/apocas/dockerode.git"
},
"keywords": [
"docker",
"docker.io"
],
"dependencies": {
"concat-stream": "~1.5.1",
"docker-modem": "0.3.x",
"tar-fs": "~1.12.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0",
"memorystream": "~0.2.0",
"bluebird": "^3.5.0"
},
"main": "./lib/docker",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec"
},
"license": "Apache-2.0",
"engines": {
"node": ">= 0.8"
},
"contributors": [
{
"name": "Pedro Dias",
"email": "[email protected]",
"url": "https://github.com/apocas",
"contributions": 150
},
{
"name": "James Lal",
"email": "[email protected]",
"url": "https://github.com/lightsofapollo",
"contributions": 12
},
{
"name": "Ron Waldon",
"email": "[email protected]",
"url": "https://github.com/jokeyrhyme",
"contributions": 7
},
{
"name": "Everton Ribeiro",
"email": "[email protected]",
"url": "https://github.com/nuxlli",
"contributions": 4
},
{
"name": "Sam Rijs",
"email": "[email protected]",
"url": "https://github.com/srijs",
"contributions": 4
},
{
"name": "Shannon Poole",
"email": "[email protected]",
"url": "https://github.com/shannonmpoole",
"contributions": 3
},
{
"name": "Max Claus Nunes",
"email": "[email protected]",
"url": "https://github.com/maxcnunes",
"contributions": 2
},
{
"name": "Mike MacCana",
"email": "[email protected]",
"url": "https://github.com/mikemaccana",
"contributions": 2
},
{
"name": "Niclas Hoyer",
"email": "",
"url": "https://github.com/niclashoyer",
"contributions": 2
},
{
"name": "Nicholas Morsman",
"email": "[email protected]",
"url": "https://github.com/nmorsman",
"contributions": 2
},
{
"name": "Philip Reichenberger",
"email": null,
"url": "https://github.com/preichenberger",
"contributions": 1
},
{
"name": "Anton Serdyuk",
"email": "[email protected]",
"url": "https://github.com/m00t",
"contributions": 1
},
{
"name": "Dan Williams",
"email": "[email protected]",
"url": "https://github.com/deedubs",
"contributions": 1
},
{
"name": "Alex Wolfe",
"email": "[email protected]",
"url": "https://github.com/alexkwolfe",
"contributions": 1
},
{
"name": "Henry Allen-Tilford",
"email": "[email protected]",
"url": "https://github.com/generalhenry",
"contributions": 1
},
{
"name": "Geoffrey Bachelet",
"email": "[email protected]",
"url": "https://github.com/ubermuda",
"contributions": 1
},
{
"name": "Jacob Friis Saxberg",
"email": "[email protected]",
"url": "https://github.com/webjay",
"contributions": 1
},
{
"name": "Jeffrey Morgan",
"email": "[email protected]",
"url": "https://github.com/jeffdm",
"contributions": 1
},
{
"name": "Kishore Nallan",
"email": "[email protected]",
"url": "https://github.com/kishorenc",
"contributions": 1
},
{
"name": "Mathias Buus",
"email": "[email protected]",
"url": "https://github.com/mafintosh",
"contributions": 1
},
{
"name": "Matthew Gallagher",
"email": "[email protected]",
"url": "https://github.com/mattva01",
"contributions": 1
},
{
"name": "Wojciech Kocjan",
"email": null,
"url": "https://github.com/wojciechka",
"contributions": 1
},
{
"name": "Mike Macaulay",
"email": "[email protected]",
"url": "https://github.com/mmacaula",
"contributions": 1
},
{
"name": "Josh Matthews",
"email": "[email protected]",
"url": "https://github.com/jmatth",
"contributions": 1
},
{
"name": "Vincent Woo",
"email": "[email protected]",
"url": "https://github.com/vincentwoo",
"contributions": 1
},
{
"name": "Lewis J Ellis",
"email": "[email protected]",
"url": "https://github.com/LewisJEllis",
"contributions": 1
},
{
"name": "Adam Duncan",
"email": "",
"url": "https://github.com/microadam",
"contributions": 1
}
]
}