-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (43 loc) · 1.14 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
{
"name": "rsg-log-server",
"version": "0.0.3",
"description": "A tiny server that accepts Serilog logs via HTTP post and adds them to your MongoDB database.",
"main": "server.js",
"dependencies": {
"body-parser": "^1.12.0",
"chai": "^3.5.0",
"confucious": "0.0.9",
"cron": "^1.1.1",
"data-forge": "^0.5.1",
"express": "^4.12.2",
"linq": "^3.0.4-beta",
"moment": "^2.17.1",
"mongodb": "2.2.26",
"nodemailer": "^2.6.4",
"yargs": "^3.11.0"
},
"devDependencies": {
"chai-as-promised": "^6.0.0",
"mock-require": "^2.0.0",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Real-Serious-Games/LogServer"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/Real-Serious-Games/LogServer/issues"
},
"homepage": "https://github.com/Real-Serious-Games/LogServer",
"bin": {
"rsg-log-server": "./bin/rsg-log-server"
},
"preferGlobal": true
}