-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1.02 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": "rsg-log-viewer",
"version": "0.0.1",
"description": "A front end viewer for displaying and querying a collection of logs. This system expects the logs to be in the Serilog structured logging format. ",
"main": "server.js",
"author": {
"name": "Adam Single",
"email": "adam.single@realseriousgames.com"
},
"contributors": [
{
"name": "Ashley Davis",
"email": "ashley.davis@realseriousgames.com"
}
],
"licence": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Real-Serious-Games/logviewer"
},
"bugs": {
"url": "https://github.com/Real-Serious-Games/logviewer/issues"
},
"homepage": "https://github.com/Real-Serious-Games/logviewer",
"dependencies": {
"body-parser": "^1.11.0",
"chai": "^3.3.0",
"confucious": "0.0.9",
"express": "^4.11.1",
"mocha": "^2.3.3",
"mongodb": "2.2.26",
"socket.io": "^1.3.2",
"yargs": "^3.30.0"
},
"bin": {
"rsg-log-viewer": "./bin/rsg-log-viewer"
},
"preferGlobal": true
}