forked from pnxtech/hydra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
56
{
"name": "@gameleap/hydra",
"version": "1.7.8",
"license": "MIT",
"author": "Carlos Justiniano",
"description": "Hydra is a NodeJS light-weight library for building distributed computing applications such as microservices",
"keywords": [
"hydra",
"hydra-core",
"microservice"
],
"main": "index.js",
"analyze": false,
"engines": {
"node": ">=6.2.1"
},
"scripts": {
"test": "mocha specs --reporter spec",
"coverage": "nyc --reporter=text ./node_modules/mocha/bin/_mocha specs --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ivanvgdev/hydra.git"
},
"dependencies": {
"bluebird": "^3.7.2",
"debug": "^4.3.3",
"redis": "2.8.0",
"redis-url": "1.2.1",
"route-parser": "0.0.5",
"umf": "1.4.6",
"uuid": "^8.3.2"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.9.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-mocha": "^10.0.3",
"mocha": "^9.2.1",
"nyc": "^15.1.0",
"redis-mock": "^0.56.3"
},
"nyc": {
"exclude": [
"specs/*.js",
"specs/helpers/*.js"
]
},
"bin": {
"hydra": "index.js"
},
"bugs": {
"url": "https://github.com/flywheelsports/hydra/issues"
},
"homepage": "https://github.com/flywheelsports/hydra#readme"
}