forked from Quobject/zookeeper-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.28 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.28 KB
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
46
{
"name": "zookeeper-commands",
"version": "2.0.3",
"description": "A node.js client to run ZooKeeper Commands the four letter words.",
"main": "dist/index.js",
"typings": "dist/index",
"files": [
"dist/"
],
"scripts": {
"lint": "tslint src/**/*.ts",
"build": "rimraf dist/ && tsc",
"test-spec": "ts-node node_modules/blue-tape/bin/blue-tape.js \"src/**/*.spec.ts\" | tap-diff",
"test": "npm run lint && npm run build && npm run test-spec",
"prepublish": "npm run lint && npm run build && rimraf dist/**/*.spec.* "
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quobject/zookeeper-commands.git"
},
"keywords": [
"zookeeper commands",
"zookeeper"
],
"author": "Matthias Ludwig <mludwig@quobject.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quobject/zookeeper-commands/issues"
},
"homepage": "https://github.com/Quobject/zookeeper-commands",
"devDependencies": {
"blue-tape": "^0.2.0",
"rimraf": "^2.5.2",
"tap-diff": "^0.1.1",
"ts-node": "^0.7.3",
"tslint": "^3.10.2",
"typescript": "^1.8.10"
},
"dependencies": {
"lodash": "^4.13.1",
"node-netcat": "^1.4.8",
"node-zookeeper-client": "^0.2.2",
"core-js": "^2.4.0",
"nodeify-ts": "^1.0.1"
}
}