-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.02 KB
/
package.json
File metadata and controls
30 lines (30 loc) · 1.02 KB
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
{
"name": "consul-gateway",
"version": "0.0.3",
"description": "A gateway and http client for microservices using consul to discover other services and automatically load balance requests on found instances of each service, check if an instance is reachable by the service, and update the list of urls on changes to the registry",
"main": "index.js",
"scripts": {
"test": "make test; echo"
},
"author": "Victor A. Martinez Santiago <martinezsantiagovictor@outlook.com>",
"repository": {
"type": "git",
"url": "https://github.com/vectorhacker/consul-gateway.git"
},
"keywords": ["consul", "microservices", "microservice", "requests", "balancer", "load", "gateway", "api"],
"license": "MIT",
"dependencies": {
"asyncawait": "^1.0.6",
"consul": "^0.25.0",
"fibers": "^1.0.13",
"request": "^2.74.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"jasmine": "^2.5.0",
"express": "^4.14.0",
"body-parser": "^1.15.2",
"jasmine-node": "^1.14.5",
"mocha": "^3.0.2"
}
}