-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.56 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
80
81
82
83
84
85
{
"name": "deepstream.io-cluster",
"version": "0.8.2",
"description": "Community supported clustering for Deepstream.io",
"main": "dist/index.js",
"scripts": {
"build": "rm -rf ./dist; flow-remove-types ./src --out-dir ./dist && flow-copy-source ./src ./dist",
"flow-typed": "./node_modules/.bin/flow-typed install --overwrite",
"test": "yarn lint && yarn test:js",
"test:js": "cross-env NODE_ENV=test jest --runInBand test",
"lint": "npm run lint:js && npm run lint:flow",
"lint:js": "eslint -c ./.eslintrc --no-eslintrc --fix .",
"lint:flow": "flow --show-all-errors",
"coverage": "codecov",
"start-pre-commit": "git stash -q --keep-index",
"end-pre-commit": "git add -u && git stash pop -q"
},
"pre-commit": [
"lint",
"start-pre-commit",
"build",
"end-pre-commit"
],
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/*.js"
],
"transform": {
"^.+\\.js(?:\\.flow)?$": "jest-flow-transform"
}
},
"repository": {
"type": "git",
"url": "https://github.com/wehriam/deepstream.io-cluster.git"
},
"author": "John Wehr <johnwehr@gmail.com>",
"license": "AGPL-3.0",
"lint-staged": {
"*.js": [
"eslint -c .eslintrc --ignore-path .eslintignore"
]
},
"dependencies": {
"nanomsg-cluster": "^0.6.0"
},
"peerDependencies": {
"deepstream.io": "https://github.com/deepstreamIO/deepstream.io.git#v3.1.6"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"chai": "^4.2.0",
"codecov": "^3.2.0",
"cross-env": "^5.2.0",
"deepstream.io": "https://github.com/deepstreamIO/deepstream.io.git#v3.1.6",
"deepstream.io-client-js": "^2.3.0",
"eslint": "^5.14.1",
"eslint-config-bunchtogether": "^1.1.6",
"eslint-import-resolver-webpack": "^0.11.0",
"eslint-plugin-flowtype": "^3.4.2",
"eslint-plugin-flowtype-errors": "^4.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.3.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"expect": "^24.1.0",
"flow-bin": "^0.93.0",
"flow-copy-source": "^2.0.3",
"flow-remove-types": "^1.2.3",
"flow-typed": "^2.5.1",
"ip": "^1.1.5",
"jest": "^24.1.0",
"jest-flow-transform": "^1.0.1",
"lint-staged": "^8.1.4",
"pre-commit": "^1.2.2",
"sinon": "^7.2.5",
"sinon-chai": "^3.3.0",
"uuid": "^3.3.2"
},
"bugs": {
"url": "https://github.com/wehriam/deepstream-cluster/issues"
},
"homepage": "https://github.com/wehriam/deepstream-cluster"
}