-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.09 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
{
"name": "microlock",
"version": "1.2.1",
"description": "Simple distributed locking with Etcd for Node.js",
"main": "lib/microlock.js",
"repository": {
"type": "git",
"url": "git+https://github.com/thebigredgeek/microlock.git"
},
"keywords": [
"distributed",
"lock",
"etcd",
"lock"
],
"author": "Andrew E. Rhyne <rhyneandrew@gmail.com>",
"contributors": [
"Zach Tratar <zach@jobstart.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thebigredgeek/microlock/issues"
},
"homepage": "https://github.com/thebigredgeek/microlock#readme",
"dependencies": {
"bluebird": "^3.4.1"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-eslint": "^6.0.3",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.7.2",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"core-js": "^2.2.2",
"eslint": "^2.8.0",
"eslint-plugin-babel": "^3.2.0",
"mocha": "^2.4.5",
"node-etcd": "^5.0.3",
"rimraf": "^2.5.4",
"sinon": "^1.17.3",
"source-map-support": "^0.4.2"
}
}