-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.13 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
{
"name": "fastify-redis-channels",
"version": "1.3.2",
"description": "A Fastify plugin for channels implementation based on Redis streams.",
"main": "index.js",
"scripts": {
"lint": "npx standard --verbose | npx snazzy",
"test": "npm run lint && npm run unit",
"unit": "tap --statements=96.3 --lines=96.3 ./test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hearit-io/fastify-redis-channels.git"
},
"keywords": [
"fastify",
"plugin",
"redis",
"cluster",
"pre-sharded",
"channel",
"stream",
"message broker",
"produce",
"consume",
"pub/sub",
"websocket",
"SSE",
"eventsource"
],
"author": "Emil Usunov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hearit-io/fastify-redis-channels/issues"
},
"homepage": "https://github.com/hearit-io/fastify-redis-channels#readme",
"dependencies": {
"@hearit-io/redis-channels": "^1.2.2",
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"fastify": "^3.21.0",
"snazzy": "^9.0.0",
"standard": "^16.0.3",
"tap": "^15.0.9"
}
}