forked from arobson/rabbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 2.71 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
{
"name": "rabbot",
"version": "1.1.0",
"description": "Abstractions to simplify working with the RabbitMQ",
"main": "src/index.js",
"repository": "https://github.com/arobson/rabbot",
"scripts": {
"lint": "jshint ./",
"test": "gulp test",
"build-image": "docker build -t rabbot .",
"start-image": "docker run -d --name rabbot -p 15672:15672 -p 5672:5672 rabbot"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Alex Robson",
"contributors": [
{
"name": "Alex Robson",
"email": "[email protected]",
"url": "http://github.com/arobson"
},
{
"name": "Derick Bailey",
"url": "http://derickbailey.com/"
},
{
"name": "Randy Groff",
"url": "http://randygroff.com"
},
{
"name": "Joseph Frazier",
"url": "https://github.com/josephfrazier"
},
{
"name": "Mario Kozjak",
"url": "https://github.com/mkozjak"
},
{
"name": "Doug Neiner",
"url": "http://code.dougneiner.com"
},
{
"name": "Brian Edgerton",
"url": "https://github.com/brianedgerton"
},
{
"name": "Ryan Niemeyer",
"url": "http://knockmeout.net"
},
{
"name": "Jim Cowart",
"url": "http://github.com/ifandelse"
},
{
"name": "Sean Corrales",
"url": "https://github.com/droidenator"
},
{
"name": "Matthew Martin",
"url": "http://matmar10.com"
},
{
"name": "Tom Kirkpatrick",
"url": "https://github.com/mrfelton"
},
{
"name": "Bill Matson",
"url": "https://github.com/bmatson"
},
{
"name": "Scott Walters",
"url": "http://github.com/LeankitScott"
},
{
"name": "Eric Satterwhite",
"url": "http://codedependant.net/"
},
{
"name": "Leonardo Bispo de Oliveira",
"url": "http://blog.bispooliveira.de"
},
{
"name": "Michael Tuttle",
"url": "https://github.com/openam"
},
{
"name": "John Mathis",
"url": "http://github.com/JohnDMathis"
},
{
"name": "Dj Walker-Morgan",
"url": "http://www.codepope.com"
},
{
"name": "Austin Young",
"url": "http://github.com/LeankitAustin"
}
],
"license": "MIT",
"devDependencies": {
"biggulp": "0.3.x",
"chai": "^3.4.1",
"chai-as-promised": "^5.1.0",
"gulp": "^3.9.0",
"request": "^2.79.0",
"sinon": "^1.17.2",
"sinon-as-promised": "^4.0.0"
},
"dependencies": {
"amqplib": "~0.5.1",
"debug": "^2.2.0",
"lodash": "^4.15.0",
"machina": "^2.0.0",
"monologue.js": "^0.3.5",
"postal": "^2.0.5",
"uuid": "^3.0.0",
"when": "^3.7.7",
"whistlepunk": "^0.3.2"
}
}