-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "bunnybus-cli",
"version": "2.0.0",
"description": "Command line tool for BunnyBus",
"keywords": [
"bunnybus",
"rabbitmq",
"broker",
"bus",
"queue",
"pubsub",
"publish",
"subscribe",
"cli"
],
"main": "lib/index.js",
"bin": {
"bunnybus": "lib/commands/bunnybus.js",
"bb-json-streamer": "lib/commands/bb-json-streamer.js"
},
"scripts": {
"test": "lab test",
"build-test": ". docker/wait-on-resource.sh && npm test",
"start-docker": "docker run -d --name=rabbitmq -p 5671:5671 -p 15672:15672 -p 5672:5672 rabbitmq:3-management",
"stop-docker": "docker rm -f rabbitmq",
"doctoc": "doctoc API.md && doctoc Example.md"
},
"author": "Lam Chan",
"license": "BSD-3-Clause",
"engines": {
"node": ">=6.x.x"
},
"dependencies": {
"bunnybus": "2.x.x",
"async": "^2.1.5",
"commander": "^2.9.0"
},
"devDependencies": {
"doctoc": "^1.2.0",
"eslint-config-hapi": "^10.0.0",
"eslint-plugin-hapi": "^4.0.0",
"lab": "^14.0.1"
}
}