-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.68 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
89
{
"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",
"type": "module",
"main": "./lib/distributed-callback-queue.js",
"types": "./lib/distributed-callback-queue.d.ts",
"exports": {
".": {
"import": "./lib/distributed-callback-queue.js",
"default": "./lib/distributed-callback-queue.js"
}
},
"scripts": {
"test": "pnpm lint && pnpm compile && pnpm test:e2e",
"test:e2e": "pnpm test:e2e:cluster && pnpm test:e2e:sentinel",
"test:e2e:cluster": "DB=cluster mdep test run",
"test:e2e:sentinel": "DB=sentinel mdep test run",
"test:local": "pnpm lint && pnpm compile && jest __tests__/*.js",
"prepublishOnly": "pnpm compile",
"lint": "eslint ./src",
"compile": "tsc -b ./tsconfig.build.json",
"semantic-release": "pnpm 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 || ~5.x.x"
},
"dependencies": {
"@microfleet/callback-queue": "^5.0.0",
"@microfleet/ioredis-lock": "^6.0.1",
"denque": "^2.1.0",
"pino": "^9.6.0",
"read-package-up": "^11.0.0",
"serialize-error": "^12.0.0"
},
"devDependencies": {
"@makeomatic/deploy": "^13.1.0",
"@node-rs/xxhash-linux-arm64-musl": "^1.7.6",
"@node-rs/xxhash-linux-x64-musl": "^1.7.6",
"@oxc-resolver/binding-linux-arm64-musl": "^3.0.3",
"@swc-node/register": "^1.10.9",
"@swc/core": "^1.10.8",
"@swc/core-linux-arm64-musl": "^1.10.8",
"@swc/core-linux-x64-musl": "^1.10.8",
"@types/node": "^22.10.7",
"@types/sinon": "^17.0.3",
"@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.31.0",
"eslint-plugin-promise": "^7.2.1",
"ioredis": "^5.4.2",
"semantic-release": "^24.2.1",
"sinon": "^19.0.2",
"typescript": "^5.7.3"
},
"engine": {
"node": ">= 22.12.0"
},
"files": [
"src/",
"lib/"
]
}