-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
41 lines (41 loc) · 952 Bytes
/
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
{
"name": "amqp-cli",
"version": "1.1.0",
"description": "command line tools for interacting with amqp servers like RabbitMQ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/cthayer/node-amqp-cli.git"
},
"keywords": [
"amqp",
"cli",
"command",
"line",
"tools",
"rabbitmq",
"publish",
"consume",
"client"
],
"author": "Craig Thayer <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/cthayer/node-amqp-cli/issues"
},
"homepage": "https://github.com/cthayer/node-amqp-cli",
"dependencies": {
"@sazze/amqp": "^1.4.0",
"@sazze/liner": "^1.0.1",
"command-line-args": "^2.1.6",
"lodash": "^4.9.0",
"prompt": "^1.0.0"
},
"bin": {
"amqp-consume": "./bin/amqp-consume",
"amqp-publish": "./bin/amqp-publish"
}
}