-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 906 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 906 Bytes
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": "bunyan-remote",
"version": "0.0.3",
"description": "Remote logger for node-bunyan that logs to the browser via Bunyan DevTools",
"main": "index.js",
"scripts": {
"test": "mocha test/**/*.spec.js",
"lint": "eslint lib chrome-extension test --ignore-pattern '/chrome-extension/vendor/*'",
"start": "node examples/server.js | bunyan"
},
"keywords": [
"bunyan",
"remote",
"logger",
"sockets",
"websockets",
"devtool",
"logs",
"node",
"node-bunyan"
],
"author": "Alejandro Gonzalez Sole",
"repository": {
"type": "git",
"url": "https://github.com/guatedude2/bunyan-remote"
},
"license": "MIT",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.2",
"mocha": "^2.4.5",
"sinon": "^1.17.4"
},
"dependencies": {
"bunyan": "^1.8.1",
"es6-promise": "^3.2.1",
"socket.io": "^1.4.6"
}
}