-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.12 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
{
"name": "heinrich",
"version": "0.6.3",
"description": "A lightweight load-balancer written in Node.js",
"main": "main.js",
"scripts": {
"start": "node --stack-size=4096 --max-old-space-size=1024 main.js &",
"test": "mocha ./tests/*.js --timeout 15000"
},
"pre-commit": [
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GavinDmello/heinrich.git"
},
"author": "GavinDmello",
"license": "BSD",
"bugs": {
"url": "https://github.com/GavinDmello/heinrich/issues"
},
"homepage": "https://github.com/GavinDmello/heinrich#readme",
"dependencies": {
"ascii-art": "^1.4.2",
"async": "^2.0.1",
"body-parser": "^1.15.2",
"concat-stream": "^1.5.2",
"express": "^4.14.0",
"ioredis": "^2.4.0",
"leveldown": "^1.5.0",
"levelup": "^1.3.3",
"nodemailer": "^2.6.4",
"nodemailer-smtp-transport": "^2.7.2",
"pfade": "^0.3.0",
"socket.io": "^1.7.1",
"stream-throttle": "^0.1.3",
"tcp-ping": "^0.1.1"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"pre-commit": "^1.1.3",
"supertest": "^2.0.0"
}
}