-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.21 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
{
"name": "thalassa",
"version": "0.4.3",
"description": "A lightweight service registry using Redis inspired by Seaport",
"main": "index.js",
"scripts": {
"test": "jshint *.js lib/**/*.js test/*.js --config .jshintrc && mocha test/test*"
},
"bin": {
"thalassa-server": "./bin/server.js",
"thalassa-client": "./bin/client.js"
},
"repository": {
"type": "git",
"url": "git://github.com/PearsonEducation/Thalassa.git"
},
"keywords": [
"service",
"registry",
"haproxy"
],
"author": "Mike Brevoort <mike.brevoort@pearson.com>",
"license": "Apache2",
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/PearsonEducation/Thalassa/issues"
},
"devDependencies": {
"mocha": "~1.12.0",
"jshint": "~2.1.4",
"portfinder": "~0.2.1",
"request": "~2.21.0"
},
"optionalDependencies": {
"hiredis": "~0.1.15"
},
"dependencies": {
"hapi": "~8.0.0",
"optimist": "~0.6.0",
"cli-color": "~0.2.2",
"redis": "~0.8.4",
"ip": "~0.1.0",
"request": "~2.27.0",
"thalassa-registrations": "~0.1.0",
"axon": "~1.0.0",
"measured": "^0.1.3",
"deep-equal": "^0.2.1"
},
"engines": {
"node": ">0.10.0"
}
}