forked from wehriam/deepstream.io-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.14 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "deepstream.io-cluster",
"version": "0.6.2",
"description": "Community supported clustering for Deepstream.io",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist; flow-remove-types ./src --out-dir ./dist;",
"lint": "yarn lint:js && yarn lint:flow",
"lint:staged": "lint-staged",
"lint:js": "eslint -c .eslintrc --ignore-path .eslintignore --fix ./src ./test *.js",
"lint:flow": "flow --show-all-errors",
"flow-typed": "flow-typed install --overwrite",
"test": "yarn lint && yarn test:js",
"test:js": "cross-env NODE_ENV=test nyc mocha test"
},
"nyc": {
"require": [
"flow-remove-types/register"
],
"reporter": [
"text-summary",
"lcov"
],
"exclude": [
"test",
"dist",
"flow-typed"
],
"cache": true
},
"repository": {
"type": "git",
"url": "https://github.com/wehriam/deepstream.io-cluster.git"
},
"author": "John Wehr <[email protected]>",
"license": "AGPL-3.0",
"lint-staged": {
"*.js": [
"eslint -c .eslintrc --ignore-path .eslintignore"
]
},
"pre-commit": "lint:staged",
"dependencies": {
"nanomsg-cluster": "^0.4.0"
},
"peerDependencies": {
"deepstream.io": "3.1.1"
},
"devDependencies": {
"babel-eslint": "^8.0.1",
"chai": "^4.1.2",
"cross-env": "^5.1.0",
"deepstream.io": "3.1.1",
"deepstream.io-client-js": "^2.3.0",
"eslint": "^4.9.0",
"eslint-config-bunchtogether": "^1.1.2",
"eslint-import-resolver-webpack": "^0.8.3",
"eslint-plugin-flowtype": "^2.39.1",
"eslint-plugin-flowtype-errors": "^3.3.4",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.57.3",
"flow-remove-types": "^1.2.3",
"flow-typed": "^2.2.1",
"ip": "^1.1.5",
"lint-staged": "^4.3.0",
"mocha": "^4.0.1",
"nyc": "^11.2.1",
"pre-commit": "^1.2.2",
"sinon": "^4.0.2",
"sinon-chai": "^2.14.0",
"uuid": "^3.1.0"
},
"bugs": {
"url": "https://github.com/wehriam/deepstream-cluster/issues"
},
"homepage": "https://github.com/wehriam/deepstream-cluster"
}