forked from AndrewBelt/hack.chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 977 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 977 Bytes
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
{
"name": "hack.chat",
"version": "1.0.0",
"description": "A minimal, distraction-free chat application for the web",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "(cd client; make)",
"start": "concurrent -k \"node server.js\" \"http-server ./client -o\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/AndrewBelt/hack.chat.git"
},
"keywords": [
"chat"
],
"author": {
"name": "Andrew Belt",
"email": "andrewpbelt@gmail.com",
"url": "https://github.com/AndrewBelt"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/AndrewBelt/hack.chat/issues"
},
"homepage": "https://github.com/AndrewBelt/hack.chat",
"dependencies": {
"byline": "^4.2.1",
"concurrently": "^0.1.1",
"http-server": "^0.8.5",
"jade": "^1.11.0",
"less": "^2.5.3",
"ws": "^0.7.2"
},
"engines": {
"node": ">=0.12.0"
}
}