-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 999 Bytes
/
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
{
"name": "loadbalancer",
"version": "2.0.1",
"description": "Load balancer for chat rooms",
"main": "index.js",
"scripts": {
"test": "KEY=MOCK_KEY ./node_modules/mocha/bin/mocha --exit",
"start": "node server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billymfl/loadbalancer.git"
},
"keywords": [
"loadbalancer",
"microservice"
],
"author": "Billy Marin",
"license": "MIT",
"bugs": {
"url": "https://github.com/billymfl/loadbalancer/issues"
},
"homepage": "https://github.com/billymfl/loadbalancer#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"helmet": "^3.20.0",
"hide-powered-by": "^1.1.0",
"log4js": "^4.5.1",
"nocache": "^2.1.0",
"splunk-logging": "^0.10.1",
"underscore": "^1.9.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"mocha": "^6.2.0"
}
}