-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.43 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
{
"name": "querator",
"description": "Universal NodeJS wrapper for working with RabbitMQ, Redis pub/sub, Kafka and other message queues",
"version": "0.0.3",
"main": "pkg/core/Querator.js",
"types": "pkg/core/Querator.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "standard src/*/**.js --fix",
"lint-pkg": "standard pkg/index.js --fix",
"build-esm": "esbuild src/*/**.js --outdir=pkg --platform=node --format=esm --target=node18 --color=true && lint-pkg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stasbubnoff/querator.git"
},
"keywords": [
"nodejs",
"redis",
"rabbitmq",
"rabbit",
"kafka",
"mqtt",
"zeromq",
"queue",
"queues",
"message-queue",
"message-broker"
],
"author": "Stanislav Bubnov <[email protected]> (https://github.com/stasbubnoff)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stasbubnoff/logmark/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/stasbubnoff/querator#readme",
"type": "module",
"devDependencies": {
"esbuild": "^0.15.13",
"standard": "^17.0.0"
},
"dependencies": {
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"amqplib": "^0.10.3",
"async-mqtt": "^2.6.3",
"logmark": "^1.0.9",
"redis": "^4.5.0",
"toml": "^3.0.0",
"yaml": "^2.1.3"
},
"directories": {
"doc": "docs"
}
}