-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 976 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": "zookeeper-mock",
"version": "1.2.0",
"description": "NodeJS Zookeeper mock",
"main": "index.js",
"scripts": {
"test": "mocha test/unit",
"lint": "eslint $(git ls-files '*.js')",
"lint_md": "mdlint $(git ls-files '*.md')"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scality/zookeeper-mock.git"
},
"keywords": [
"zookeeper",
"mock",
"test"
],
"authors": [
"Vianney <vr@scality.com>",
"Naren <narendran.rajendran@scality.com>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scality/zookeeper-mock/issues"
},
"homepage": "https://github.com/scality/zookeeper-mock#readme",
"dependencies": {
"node-zookeeper-client": "^0.2.2"
},
"devDependencies": {
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-scality": "scality/Guidelines#1d6f287b",
"eslint-plugin-import": "^2.14.0",
"mocha": "^6.1.4"
}
}