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
|
{
"name": "hack.chat-v2",
"version": "2.0.0",
"description": "a minimal distraction free chat application",
"main": "main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hack-chat/main.git"
},
"engines": {
"node": ">= 8.10.0",
"npm": ">= 5.7.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"config": "node src/scripts/configure.js",
"debug": "node src/scripts/debug.js",
"dev": "node src/scripts/debug.js"
},
"author": "Marzavec",
"license": "WTFPL",
"dependencies": {
"chalk": "^2.3.2",
"common-tags": "^1.7.2",
"dateformat": "^3.0.3",
"deasync": "^0.1.12",
"didyoumean2": "^1.3.0",
"fs-extra": "^5.0.0",
"prompt": "^1.0.0",
"readdir-recursive": "0.0.4",
"ws": "^5.0.0"
}
}
|