-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
88 lines (88 loc) · 2.66 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@microfleet/dlock",
"version": "0.0.0",
"description": "Creates distributed callback queue based on redis pubsub. Pass 2 redis clients (supports redis sentinel as well for HA), manages locks across multiple processes",
"main": "./lib/distributed-callback-queue.js",
"scripts": {
"test": "npm run lint && npm run compile && npm run test:e2e",
"test:e2e": "npm run test:e2e:cluster && npm run test:e2e:sentinel",
"test:e2e:cluster": "DB=cluster mdep test run",
"test:e2e:sentinel": "DB=sentinel mdep test run",
"test:local": "npm run lint && npm run compile && jest __tests__/*.js",
"pretest": "npm run compile",
"prepublishOnly": "npm run compile",
"lint": "eslint ./src",
"compile": "tsc -b ./tsconfig.build.json",
"semantic-release": "npm run compile && semantic-release",
"prepare": "mdep install"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/microfleet/distributed-callback-queue.git"
},
"keywords": [
"callback",
"queue",
"callback-queue",
"lock",
"distributed",
"pubsub",
"redis"
],
"author": "Vitaly Aminev <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microfleet/distributed-callback-queue/issues"
},
"homepage": "https://github.com/microfleet/distributed-callback-queue",
"peerDependencies": {
"ioredis": "~4.x.x"
},
"dependencies": {
"@microfleet/callback-queue": "^4.0.2",
"@microfleet/ioredis-lock": "^5.1.0",
"bluebird": "^3.7.2",
"denque": "^2.1.0",
"lodash": "^4.17.21",
"pino": "^8.17.1",
"read-pkg-up": "^7.0.1",
"serialize-error": "^8.1.0"
},
"devDependencies": {
"@makeomatic/deploy": "^12.11.2",
"@node-rs/xxhash-linux-arm64-musl": "^1.4.2",
"@node-rs/xxhash-linux-x64-musl": "^1.4.2",
"@swc-node/jest": "^1.6.8",
"@swc/core": "^1.3.101",
"@swc/core-linux-arm64-musl": "^1.3.101",
"@swc/core-linux-x64-musl": "^1.3.101",
"@types/bluebird": "^3.5.42",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.5",
"@types/sinon": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-makeomatic": "^6.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-promise": "^6.1.1",
"ioredis": "^4.28.5",
"jest": "^29.7.0",
"semantic-release": "^22.0.12",
"sinon": "^17.0.1",
"typescript": "^5.3.3"
},
"engine": {
"node": ">= 12.15.0"
},
"files": [
"src/",
"lib/"
]
}