-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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-dlm",
"version": "1.1.1",
"description": "A Distributed Lock Manager for Redis, implemented with the RedLock algorithm, using either node-redis or ioredis clients.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npx zx ./dist/mgmt/test.js",
"start-dev-env": "npx zx ./dist/mgmt/dev-env.js start",
"stop-dev-env": "npx zx ./dist/mgmt/dev-env.js stop",
"ts-watch": "npx tsc -b --watch ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zbauman3/Redis-DLM.git"
},
"author": "Zane Bauman",
"license": "MIT",
"bugs": {
"url": "https://github.com/zbauman3/Redis-DLM/issues"
},
"homepage": "https://github.com/zbauman3/Redis-DLM#readme",
"keywords": [
"redlock",
"dlm",
"distributed",
"lock",
"manager",
"redis"
],
"devDependencies": {
"@types/ioredis": "^4.28.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.6.0",
"ioredis": "^4.28.3",
"jest": "^27.4.7",
"redis": "^4.0.2",
"typescript": "^4.5.4",
"zx": "^4.2.0"
}
}