forked from apocas/dockerode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 2.84 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
{
"name": "dockerode",
"description": "Docker.io / Docker remote API implementation.",
"version": "2.0.3",
"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": "0.1.x",
"underscore": "1.5.x"
},
"devDependencies": {
"chai": "~1.7.0",
"mocha": "~1.12.0",
"memorystream": "~0.2.0"
},
"main": "./lib/docker",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec"
},
"engines": {
"node": ">= 0.8"
},
"contributors": [
{
"name": "Pedro Dias",
"email": "petermdias@gmail.com",
"url": "https://github.com/apocas",
"contributions": 93
},
{
"name": "James Lal",
"email": "jlal@mozilla.com",
"url": "https://github.com/lightsofapollo",
"contributions": 12
},
{
"name": "Everton Ribeiro",
"email": "nuxlli@gmail.com",
"url": "https://github.com/nuxlli",
"contributions": 4
},
{
"name": "Sam Rijs",
"email": "srijs@airpost.net",
"url": "https://github.com/srijs",
"contributions": 3
},
{
"name": "Mike MacCana",
"email": "mike.maccana@gmail.com",
"url": "https://github.com/mikemaccana",
"contributions": 2
},
{
"url": "https://github.com/niclashoyer",
"contributions": 2
},
{
"name": "Alex Wolfe",
"email": "alexkwolfe@gmail.com",
"url": "https://github.com/alexkwolfe",
"contributions": 1
},
{
"name": "Vincent Woo",
"email": "me@vincentwoo.com",
"url": "https://github.com/vincentwoo",
"contributions": 1
},
{
"name": "Adam Duncan",
"email": "",
"url": "https://github.com/microadam",
"contributions": 1
},
{
"name": "Geoffrey Bachelet",
"email": "geoffrey.bachelet@gmail.com",
"url": "https://github.com/ubermuda",
"contributions": 1
},
{
"name": "Josh Matthews",
"email": "josh@jmatthews.us",
"url": "https://github.com/jmatth",
"contributions": 1
},
{
"name": "Kishore Nallan",
"email": "kishore@kishorelive.com",
"url": "https://github.com/kishorenc",
"contributions": 1
},
{
"name": "Mathias Buus",
"email": "mathiasbuus@gmail.com",
"url": "https://github.com/mafintosh",
"contributions": 1
},
{
"name": "Shannon Poole",
"email": "shannon.m.poole@gmail.com",
"url": "https://github.com/shannonmpoole",
"contributions": 1
},
{
"name": "Dan Williams",
"email": "me+github@deedubs.com",
"url": "https://github.com/deedubs",
"contributions": 1
}
]
}