-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.17 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
{
"name": "resilient-server",
"version": "0.1.1",
"description": "Dummy HTTP server for register discovery services according to the Resilient discovery protocol",
"license": "MIT",
"preferGlobal": true,
"engineStrict": true,
"repository": "https://github.com/h2non/resilient-server.git",
"main": "./lib",
"directories": {
"lib": "./lib"
},
"bin": {
"resilient-server": "./bin/resilient-server"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"start": "./bin/resilient-server",
"test": "./node_modules/.bin/mocha"
},
"keywords": [
"resilient",
"reactive",
"server",
"discovery",
"balancer",
"balance",
"register",
"servers",
"dummy",
"discovering",
"dynamic",
"app",
"uri"
],
"dependencies": {
"lodash": "^3.2.0",
"restify": "^2.8.1",
"semver": "^4.1.0",
"yargs": "^3.0.4"
},
"devDependencies": {
"chai": "^1.9.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-mocha-cli": "^1.10.0",
"grunt-nar": "^0.4.0",
"grunt-shell-spawn": "^0.3.0",
"load-grunt-tasks": "^0.6.0",
"mocha": "^1.20.1",
"superagent": "^0.18.2"
}
}