forked from mixmaxhq/redfour
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.45 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.45 KB
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
{
"name": "ioredfour",
"version": "1.4.1",
"description": "A redis binary semaphore with some consistency",
"main": "lib/ioredfour.js",
"scripts": {
"test": "TEST_TARGET=standalone grunt",
"test:cluster": "TEST_TARGET=cluster grunt",
"test:all": "TEST_TARGET=all grunt",
"format": "prettier --write .",
"lint": "eslint .",
"update": "rm -rf node_modules package-lock.json && ncu -u && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodemailer/ioredfour.git"
},
"keywords": [
"redis",
"semaphore",
"mutex",
"node"
],
"author": "Mixmax <[email protected]> (https://mixmax.com/), Daniel Reus (https://github.com/dreusel)",
"license": "MIT",
"files": [
"lib/",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"bugs": {
"url": "https://github.com/nodemailer/ioredfour/issues"
},
"homepage": "https://github.com/nodemailer/ioredfour#readme",
"devDependencies": {
"chai": "4.3.10",
"eslint": "10.1.0",
"eslint-config-nodemailer": "1.2.0",
"eslint-config-prettier": "10.1.8",
"grunt": "1.6.1",
"grunt-cli": "1.5.0",
"grunt-eslint": "26.0.0",
"grunt-mocha-test": "0.13.3",
"mocha": "11.7.5",
"prettier": "^3.8.1"
},
"dependencies": {
"ioredis": "5.10.1"
}
}