-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 870 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
{
"name": "etcd-lock",
"version": "1.1.0",
"description": "A distributed lock using etcd",
"main": "index.js",
"bin": {
"etcdlocker": "./cmd/etcdlocker.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/ORBAT/node-etcd-lock.git"
},
"keywords": [
"etcd",
"distributed",
"lock"
],
"author": "Tom Eklöf <tome@unity3d.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ORBAT/node-etcd-lock/issues"
},
"engines": {
"node": ">=4.0.0"
},
"homepage": "https://github.com/ORBAT/node-etcd-lock#readme",
"dependencies": {
"bluebird": "^2.10.0",
"co": "^4.6.0",
"debug": "^2.2.0",
"get-signal": "^1.0.0",
"lodash": "^3.10.1",
"minimist": "^1.2.0",
"node-etcd": "^4.2.1"
}
}