forked from vadimdemedes/udp-balancer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 825 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
{
"name": "udp-balancer",
"version": "1.2.0",
"description": "Load balancer for UDP",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vdemedes/udp-balancer.git"
},
"keywords": [
"udp",
"balance",
"load",
"balancer"
],
"author": "Vadim Demedes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vdemedes/udp-balancer/issues"
},
"homepage": "https://github.com/vdemedes/udp-balancer#readme",
"dependencies": {
"basic-queue": "^1.0.1",
"debug": "^2.2.0",
"meow": "^3.1.0",
"round-robin": "vdemedes/round-robin"
},
"devDependencies": {
"babel": "^5.4.7",
"make-lint-es6": "^1.0.3"
},
"bin": {
"udp-balancer": "./bin/udp-balancer"
}
}