forked from turntayble81/natelogg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 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
46
47
48
{
"name": "natelogg",
"version": "1.0.10",
"description": "Log monitoring in realtime through your browser. Built-in support for color Bunyan logging and filtering.",
"homepage": "",
"author": {
"name": "Haig Papaghanian",
"email": "[email protected]",
"url": "https://github.com/ichernev"
},
"bin": {
"natelogg-server": "./index.js"
},
"keywords": [
"tail",
"log",
"realtime",
"browser",
"format",
"bunyan"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/haigo/natelogg.git"
},
"bugs": {
"url": "https://github.com/haigo/natelogg/issues"
},
"scripts": {
"start": "node index.js",
"inspect": "node index.js --enableInspector",
"liveReload": "node index.js --enableLiveReload",
"all": "node index.js --enableInspector --enableLiveReload",
"test": "echo \"Error: no test specified\" && exit 1"
},
"license": "MIT",
"dependencies": {
"ejs": "2.4.2",
"express": "4.14.0",
"minimist": "^1.2.0",
"moment": "2.13.0",
"morgan": "1.7.0",
"ramda": "^0.24.1",
"socket.io": "1.4.8",
"tail": "1.1.0"
}
}