-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.17 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": "cli-rhea3",
"version": "3.0.0",
"description": "Client interface built on amqp/rhea lib 3.x",
"scripts": {
"test": "mocha test/*Test.js",
"browserify": "browserify --ignore ws -r .:cli-rhea -o ./dist/cli-rhea.js",
"lint": "eslint ./lib/*.js",
"doc": "jsdoc ./lib -d ./doc"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:rh-messaging/cli-rhea.git"
},
"bin": {
"cli-rhea-sender": "bin/sender-client.js",
"cli-rhea-receiver": "bin/receiver-client.js",
"cli-rhea-connector": "bin/connector-client.js"
},
"dependencies": {
"rhea": "^3.0.0",
"string-format-js": "^1.0.0",
"ws": "^8.12.1",
"yargs": "^17.7.0"
},
"keywords": [
"rhea",
"amqp",
"messaging"
],
"license": "Apache-2.0",
"main": "./lib/client.js",
"types": "./typings/index.d.ts",
"maintainers": [
{
"name": "kornys",
"email": "[email protected]"
}
],
"devDependencies": {
"browserify": "",
"eslint": "^8.41.0",
"mocha": "^3.0.0",
"chai": "",
"jsdoc": ""
},
"author": "David Kornel",
"homepage": "https://github.com/rh-messaging/cli-rhea/blob/master/README.md"
}