-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 925 Bytes
/
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
{
"name": "zyre-chat",
"version": "2.1.0",
"description": "Simple chat based on zyre.js",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/interpretor/zyre-chat.git"
},
"keywords": [
"zyre",
"zre",
"zeromq",
"zmq",
"libzmq",
"p2p",
"peer",
"peer-to-peer",
"chat"
],
"author": "Sebastian Rager <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/interpretor/zyre-chat/issues"
},
"homepage": "https://github.com/interpretor/zyre-chat#readme",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.15.1",
"zyre.js": "^1.3.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1"
},
"engines": {
"node": ">=8.9.0"
},
"preferGlobal": true,
"bin": {
"zyre-chat": "bin/start.js"
}
}