forked from microfleet/ioredis-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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
{
"name": "@microfleet/ioredis-lock",
"version": "4.0.0",
"description": "Node distributed locking using redis with ioredis adapter",
"publishConfig": {
"access": "public"
},
"keywords": [
"lock",
"mutex",
"exclusion",
"redis",
"ioredis",
"critical",
"distributed",
"sync",
"synchronization"
],
"author": "Daniel St. Jules <[email protected]>",
"contributors": [
"Vitaly Aminev <[email protected]>",
"Bernhard Weisshuhn <[email protected]>"
],
"license": "MIT",
"main": "lib/redislock.js",
"homepage": "https://github.com/microfleet/ioredis-lock",
"repository": {
"type": "git",
"url": "https://github.com/microfleet/ioredis-lock.git"
},
"dependencies": {
"bluebird": "^3.7.2",
"uuid": "^8.3.2"
},
"peerDependencies": {
"ioredis": "~4.x.x"
},
"devDependencies": {
"@makeomatic/deploy": "^12.5.0",
"@swc-node/register": "^1.4.2",
"@types/bluebird": "^3.5.33",
"@types/ioredis": "^4.22.3",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.14",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.8.0",
"eslint-config-makeomatic": "^5.0.4",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-promise": "^6.0.0",
"ioredis": "^4.26.0",
"mocha": "^9.2.0",
"semantic-release": "^19.0.2",
"typescript": "^4.2.3"
},
"engine": {
"node": ">= 12.18.0"
},
"scripts": {
"lint": "eslint ./src",
"test": "npm run lint && mdep test run",
"compile": "tsc --build ./tsconfig.build.json",
"prepublishOnly": "npm run compile",
"pretest": "npm run compile",
"semantic-release": "semantic-release"
},
"files": [
"src/",
"lib/"
]
}