-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 827 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
{
"name": "slack-tui",
"version": "0.2.0",
"description": "TUI-based Slack client.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\"# && exit 1",
"start": "node index.js"
},
"preferGlobal": true,
"bin": {
"slack-tui": "index.js"
},
"author": "hikalium",
"license": "MIT",
"dependencies": {
"@types/node": "^7.0.43",
"blessed": "^0.1.81",
"node-notifier": "^5.1.2",
"slackbotapi": "^1.3.9"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/hikalium/slack-tui.git"
},
"keywords": [
"Slack",
"Client",
"TUI",
"console",
"terminal"
],
"bugs": {
"url": "https://github.com/hikalium/slack-tui/issues"
},
"homepage": "https://github.com/hikalium/slack-tui#readme"
}