forked from moose-team/friends
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.34 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "friends",
"description": "p2p chat",
"version": "1.0.0",
"author": [
"feross",
"maxogden",
"mafintosh",
"ngoldman",
"shama",
"jlord",
"chrisdickinson"
],
"bugs": {
"url": "https://github.com/moose-team/friends/issues"
},
"dependencies": {
"cat-names": "^1.0.2",
"ctype": "^0.5.4",
"delegate-dom": "0.0.1",
"end-of-stream": "^1.1.0",
"ghlink": "^0.1.2",
"ghsign": "^1.3.1",
"github-current-user": "^2.4.1",
"highlight.js": "^8.5.0",
"html-parser": "^0.8.0",
"html-to-vdom": "^0.5.5",
"hyperlog": "^3.3.1",
"inherits": "^2.0.1",
"leveldown": "maxogden/leveldown#newnan",
"levelup": "^0.19.0",
"lodash.uniq": "^3.1.0",
"markdown-it": "^4.2.0",
"markdown-it-emoji": "^1.0.0",
"minimist": "^1.1.1",
"moment": "^2.10.2",
"protocol-buffers": "^3.0.0",
"request": "^2.55.0",
"signalhub": "^3.3.0",
"silence-chromium": "^2.0.0",
"single-line-log": "^0.4.1",
"subleveldown": "^2.0.0",
"through2": "^0.6.5",
"twemoji": "^1.4.1",
"virtual-dom": "^2.0.1",
"webrtc-swarm": "^1.2.0"
},
"devDependencies": {
"node-gyp": "^1.0.3",
"electron-prebuilt": "^0.25.1",
"electron-packager": "^3.1.0",
"nib": "^1.1.0",
"standard": "^3.2.1",
"stylus": "^0.51.0"
},
"homepage": "https://github.com/moose-team/friends",
"keywords": [
"peer-to-peer",
"mad science",
"chat",
"friends",
"p2p",
"discussion",
"communication",
"team chat",
"replication",
"crypto",
"webrtc",
"irc",
"slack"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/moose-team/friends.git"
},
"scripts": {
"build-css": "mkdir -p dist && stylus -u nib css/app.styl -o dist/ -c",
"package": "npm run build-css && electron-packager . Friends --icon=static/Icon.icns",
"start": "npm run build-css && electron index.js 2>&1 | silence-chromium",
"test": "standard",
"watch": "npm run build-css && (npm run watch-css & electron index.js 2>&1 | silence-chromium)",
"watch-css": "mkdir -p dist && stylus -u nib css/app.styl -o dist/ -w",
"rebuild-leveldb": "cd node_modules/leveldown && HOME=~/.electron-gyp node-gyp rebuild --target=0.25.1 --arch=x64 --dist-url=https://atom.io/download/atom-shell"
}
}