-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1015 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
40
{
"name": "ms-tcp",
"version": "0.3.1",
"description": "Solution for communication between services using TCP protocol with built-in auto-retry & reconnect. 🔬",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test APP_PORT=5000 TCP_PORT=5001 TCP_ADDRESS=127.0.0.1:5001 mocha tests/* --exit --timeout 60000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bifot/ms-tcp.git"
},
"keywords": [
"udp",
"microservices"
],
"author": "Mikhail Semin",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bifot/ms-tcp/issues"
},
"homepage": "https://github.com/bifot/ms-tcp#readme",
"devDependencies": {
"axios": "^0.18.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"expect": "^24.7.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"mocha": "^6.1.4"
},
"dependencies": {
"fast-tcp": "^3.3.2",
"roundround": "^0.2.0"
},
"directories": {
"example": "examples",
"test": "tests"
}
}