-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
46
47
48
49
{
"name": "cluster",
"version": "4.0.3",
"description": "Add cluster capabilities to Kuzzle",
"main": "./lib/index.js",
"scripts": {
"test": "npm run --silent lint && npm run unit-test && npm run functional-test",
"unit-test": "nyc -r lcov -r text-summary mocha",
"functional-test": "bash ./test/travis-bin/functional-tests.sh",
"lint": "eslint --max-warnings=0 ./lib ./test",
"codecov": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kuzzleio/kuzzle-plugin-cluster.git"
},
"keywords": [
"kuzzle",
"plugin",
"cluster"
],
"author": "Kuzzle",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/kuzzleio/kuzzle-plugin-cluster/issues"
},
"homepage": "https://github.com/kuzzleio/kuzzle-plugin-cluster#readme",
"dependencies": {
"bluebird": "^3.7.1",
"debug": "^4.1.1",
"ioredis": "^4.14.1",
"ip": "^1.1.5",
"kuzzle-common-objects": "^4.0.1",
"lodash": "^4.17.15",
"request": "^2.88.0",
"uuid": "^8.3.0",
"zeromq": "^5.2.0"
},
"devDependencies": {
"codecov": "^3.6.1",
"eslint": "6.6.0",
"mocha": "^6.2.2",
"mock-require": "^3.0.3",
"nyc": "^14.1.1",
"should": "^13.2.3",
"should-sinon": "0.0.6",
"sinon": "^7.5.0"
}
}