-
Notifications
You must be signed in to change notification settings - Fork 357
/
package.json
49 lines (49 loc) · 1.13 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
{ "name" : "amqp"
, "description" : "AMQP driver for node"
, "keywords" : [ "amqp" ]
, "version" : "0.2.7"
, "author" : { "name" : "Ryan Dahl" }
, "contributors" :
[ { "name" : "Vasili Sviridov" }
, { "name" : "Theo Schlossnagle" }
, { "name" : "Vincent Desjardins" }
, { "name" : "Liang-Chi Hsieh" }
, { "name" : "Tim Baga" }
, { "name" : "Stéphane Alnet" }
, { "name" : "Alen Mujezinovic" }
, { "name" : "Michael Bridgen" }
, { "name" : "Chris Bond" }
, { "name" : "Andrei Vereha" }
, { "name" : "Mike Bardzinski" }
, { "name" : "James Carr" }
, { "name" : "David Barshow" }
, { "name" : "Jason Pincin" }
, { "name" : "Carl Hörberg" }
]
, "repository" :
{ "type" : "git"
, "url" : "git://github.com/postwait/node-amqp.git"
}
, "bugs" :
{ "url" : "http://github.com/postwait/node-amqp/issues"
}
, "main" : "./amqp"
, "licenses" :
[ { "type" : "MIT"
, "url" : "http://github.com/postwait/node-amqp/raw/master/LICENSE-MIT"
}
]
, "dependencies" :
{
"lodash": "^4.0.0"
}
, "devDependencies" :
{
"optimist": "~0.6.0"
, "longjohn": "~0.2.1"
}
, "scripts" :
{
"test": "make test"
}
}