-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 980 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": "zk-lock",
"version": "2.2.1",
"description": "A distributed lock using zookeeper",
"keywords": [
"zookeeper",
"zookeeper lock",
"distributed lock"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "http://github.com/metamx/zk-lock.git"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"compile": "tsc",
"lint": "tslint -c tslint.json src/**/*.ts",
"build": "npm run lint && npm run compile",
"test": "node_modules/.bin/mocha",
"debugtest": "NODE_DEBUG=zk-lock ./node_modules/.bin/mocha",
"prepublish": "npm run build"
},
"dependencies": {
"bluebird": "^3.5.0",
"locators": "^2.0.0",
"node-zookeeper-client": "^1.1.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.8",
"@types/node": "^8.0.14",
"@types/node-zookeeper-client": "^0.2.6",
"chai": "^4.1.0",
"mocha": "^3.4.2",
"tslint": "^5.5.0",
"typescript": "^2.4.2"
}
}