forked from errorception/redis-lock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 713 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 713 Bytes
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
{
"author": "Rakesh Pai <rakeshpai@errorception.com> (http://errorception.com/)",
"name": "redis-lock",
"description": "A locking primitive using redis.",
"version": "0.1.5",
"repository": {
"type": "git",
"url": "git://github.com/errorception/redis-lock.git"
},
"main": "index.js",
"engines": {
"node": ">=0.6"
},
"dependencies": {},
"devDependencies": {
"mocha": "4.x",
"redis": "2.x",
"should": "^13.x"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --reporter spec"
},
"optionalDependencies": {},
"homepage": "https://github.com/errorception/redis-lock",
"keywords": [
"locks",
"concurrency",
"redis",
"distributed"
]
}