-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
39 lines (39 loc) · 1.09 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
{
"name": "hydra-router",
"version": "1.9.15",
"description": "A service which routes requests to hydra-based microservices",
"author": {
"name": "Carlos Justiniano",
"email": "[email protected]"
},
"private": true,
"scripts": {
"start": "node hydra-router.js",
"gctrace": "node --nouse-idle-notification --expose-gc --trace-gc --log-gc hydra-router.js",
"debug": "node --inspect --debug-brk hydra-router.js",
"profile": "node --prof hydra-router.js",
"profile-process": "f=$(ls -t isolate*.log | head -n1); node --prof-process \"$f\" > prof-process.log",
"test": "mocha specs --reporter spec"
},
"engines": {
"node": ">=12.19.0"
},
"license": "MIT",
"dependencies": {
"bluebird": "3.5.1",
"dotenv": "16.0.3",
"hydra": "1.9.3",
"hydra-plugin-hls": "0.2.6",
"hydra-plugin-loggly": "0.1.13",
"route-parser": "0.0.5",
"ws": "8.5.0"
},
"devDependencies": {
"chai": "4.0.2",
"eslint": "4.0.0",
"eslint-config-google": "0.8.0",
"eslint-plugin-mocha": "4.11.0",
"mocha": "8.1.3",
"superagent": "6.1.0"
}
}