forked from mike-marcacci/node-redlock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1008 Bytes
/
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": "redlock",
"version": "0.3.0",
"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.0.0",
"coveralls": "^2.11.2",
"ioredis": "^1.6.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.5",
"redis": "^0.12.1"
},
"dependencies": {},
"config": {
"blanket": {
"pattern": [
"redlock.js"
]
}
}
}