-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.02 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": "catox",
"version": "1.0.4",
"description": "A customizable, lightweight, minimalistic, text-based UI for single user chat that runs on top of ratox.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "lsc --output ./lib --compile *.ls; cp init.txt lib; echo \"#!/usr/bin/env node\nrequire('./lib/index');\" > run; chmod +x run"
},
"keywords": [
"tox",
"ncurses",
"gui",
"ratox"
],
"author": "Yousef Amar <[email protected]>",
"license": "ISC",
"dependencies": {
"blessed": "0.0.37",
"moment": "^2.8.3",
"tail": "^0.4.0"
},
"devDependencies": {
"LiveScript": "^1.3.1"
},
"preferGlobal": true,
"files": [
"run",
"lib",
"readme.md"
],
"bin": {
"catox": "run"
},
"repository": {
"type": "git",
"url": "https://github.com/Paraknight/catox.git"
},
"bugs": {
"url": "https://github.com/Paraknight/catox/issues"
},
"homepage": "https://github.com/Paraknight/catox"
}