forked from daviddias/lan-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.59 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
49
50
51
52
53
{
"name": "lan-chat",
"version": "1.0.0",
"description": "Chat for you and your friends during those trainings, hackathons, lans, and other events where the wan never works",
"bin": "src/bin/index.js",
"scripts": {
"codestyle": "./node_modules/.bin/jscs src/lib/*.js src/bin/*.js tests/*.js",
"lint": "./node_modules/.bin/jshint .",
"test": "node ./node_modules/.bin/lab -r tap tests/*-test.js | ./node_modules/.bin/tap-spec",
"test-cov": "node ./node_modules/.bin/lab -t 100 tests/*-test.js",
"test-cov-html": "node ./node_modules/.bin/lab -r html -o coverage.html tests/*-test.js",
"c1": "ROUTER_PORT=6010 PUB_PORT=6011 TARGET_ROUTER_PORT=6020 ./src/bin/index.js join -n client1",
"c2": "ROUTER_PORT=6020 PUB_PORT=6021 TARGET_ROUTER_PORT=6010 ./src/bin/index.js join -n client2"
},
"precommit": [
"codestyle",
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/lan-chat.git"
},
"keywords": [
"events",
"lan",
"p2p",
"chat",
"0mq",
"zmq"
],
"author": "David Dias, Gonçalo Pestana, Alexandre Campos",
"license": "none",
"bugs": {
"url": "https://github.com/diasdavid/lan-chat/issues"
},
"homepage": "https://github.com/diasdavid/lan-chat",
"dependencies": {
"duplex": "^1.0.0",
"event-stream": "^3.2.1",
"generator-ronin": "^0.1.2",
"ip": "^0.3.2",
"ronin": "^0.2.0",
"zmq": "^2.10.0"
},
"devDependencies": {
"code": "^1.3.0",
"jscs": "^1.10.0",
"jshint": "^2.6.0",
"lab": "^5.2.1",
"precommit-hook": "^1.0.7",
"tap-spec": "^2.2.0"
}
}