-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.34 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": "redis-streams-broker",
"version": "0.0.15",
"description": "This package is a broker to redis stream data type, This package provides guaranteed message delivery feature with acknowledgement.",
"main": "index.js",
"scripts": {
"mocha": "mocha",
"test": "npm run redisstart && npm run mocha && npm run redisstop && npm run redisstart && npm run redisstop",
"redisstop": "docker stop streamz",
"redisstart": "npm run redisstop || node -v && docker run --name streamz -p 6379:6379 -itd --rm redis:latest",
"rediscli": "docker exec -it streamz redis-cli",
"push": "npm whoami && npm version patch && npm test && npm publish && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LRagji/redis-streams-broker.git"
},
"keywords": [
"redis",
"stream",
"streams",
"message",
"broker",
"message",
"acknowledgement",
"laukik"
],
"author": "Laukik",
"license": "SEE LICENSE IN license.md",
"bugs": {
"url": "https://github.com/LRagji/redis-streams-broker/issues"
},
"homepage": "https://github.com/LRagji/redis-streams-broker#readme",
"dependencies": {
"nanoid": "^3.1.25",
"redis-scripto2": "^0.2.2",
"relief-valve": "^0.0.1"
},
"devDependencies": {
"ioredis": "^4.26.0",
"mocha": "^7.1.1",
"redis": "^3.1.2"
}
}