-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 838 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
{
"name": "termtalk",
"version": "0.5.0",
"description": "Talk to your peers in the terminal using TermTalk.",
"main": "tui/index.js",
"scripts": {
"termtalk": "node tui/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Terminalfreaks/TermTalk.git"
},
"keywords": [
"chat",
"client",
"chat-app",
"socket-io",
"cli"
],
"author": "Terminalfreaks",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Terminalfreaks/TermTalk/issues"
},
"homepage": "https://github.com/Terminalfreaks/TermTalk#readme",
"dependencies": {
"blessed": "^0.1.81",
"blessed-contrib": "git+https://github.com/Terminalfreaks/blessed-contrib.git",
"enquirer": "^2.3.5",
"socket.io-client": "^2.3.0"
},
"bin": {
"termtalk": "tui/index.js"
}
}