forked from mike-marcacci/node-redlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "redlock",
"version": "3.1.2",
"description": "A node.js redlock implementation for distributed redis locks",
"main": "redlock.js",
"scripts": {
"test": "istanbul cover mocha",
"test-ci": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-marcacci/node-redlock.git"
},
"keywords": [
"nodejs",
"iojs",
"redlock",
"distributed",
"lock",
"redis"
],
"author": "Mike Marcacci",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-marcacci/node-redlock/issues"
},
"homepage": "https://github.com/mike-marcacci/node-redlock",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.8",
"ioredis": "^3.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"redis": "^2.7.1"
},
"dependencies": {
"bluebird": "^3.3.3"
},
"config": {
"blanket": {
"pattern": [
"redlock.js"
]
}
}
}