-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.11 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": "tool-socketio-logger",
"version": "0.0.3",
"description": "A simple as-it-is message logger powered by socket.io",
"main": "index.js",
"scripts": {
"start": "npm run start-bright",
"start-dark": "node index.js --color dark",
"start-bright": "node index.js --color bright",
"start-demo": "http-server -p 9527 ./client-demo",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/unknownmoon/tool-socketio-logger.git"
},
"keywords": [
"socket.io",
"logger"
],
"author": "Unknown Moon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/unknownmoon/tool-socketio-logger/issues"
},
"homepage": "https://github.com/unknownmoon/tool-socketio-logger#readme",
"devDependencies": {
"http-server": "^0.9.0"
},
"dependencies": {
"chalk": "^1.1.3",
"lodash": "^4.16.4",
"minimist": "^1.2.0",
"socket.io": "^1.7.1"
},
"engines": {
"node": ">= 4.1.0",
"npm": ">= 3.0.0"
},
"bin": {
"tool-socketio-logger": "index.js"
}
}