-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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": "pohl",
"version": "1.14.0",
"description": "reliable distributed rpc messages via redis in simple callback-style",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"start": "node ./example/index.js",
"test": "istanbul cover _mocha -- -R spec test/int/* && istanbul check-coverage --statements 60",
"benchmark": "node ./perf/benchmark.js"
},
"repository": {
"type": "git",
"url": "https://github.com/krystianity/node-pohl.git"
},
"keywords": [
"redis",
"distributed",
"microservice messaging",
"messaging",
"queue",
"fast",
"task",
"messaging",
"rpc"
],
"author": "Christian Fröhlingsdorf <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/krystianity/node-pohl"
},
"homepage": "https://github.com/krystianity/node-pohl",
"dependencies": {
"@types/ioredis": "^4.17.5",
"@types/redlock": "^4.0.1",
"ioredis": "^4.17.3",
"redlock": "~4.2.0",
"uuid": "~8.3.1"
},
"devDependencies": {
"async": "~3.2.0",
"expect.js": "~0.3.1",
"istanbul": "~0.4.5",
"metrics": "^0.1.21",
"mocha": "~8.1.3"
}
}