This repository has been archived by the owner on Jul 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 341
/
package.json
101 lines (101 loc) · 2.58 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "friends",
"description": "P2P chat powered by the Web.",
"version": "1.0.0",
"author": [
"feross",
"maxogden",
"mafintosh",
"ngoldman",
"shama",
"jlord",
"chrisdickinson"
],
"browser": {
"ghsign": false,
"github-current-user": false,
"leveldown": "level-js"
},
"browserify": {
"transforms": [
"brfs"
]
},
"bugs": {
"url": "https://github.com/moose-team/friends/issues"
},
"dependencies": {
"application-config-path": "^0.1.0",
"cat-names": "^1.0.2",
"dom-delegate": "^2.0.3",
"end-of-stream": "^1.1.0",
"friends-swarm": "^2.0.0",
"ghsign": "^3.0.1",
"github-current-user": "^2.5.0",
"highlight.js": "^9.2.0",
"inherits": "^2.0.1",
"level-js": "^2.2.1",
"leveldown": "^1.4.1",
"levelup": "^1.2.1",
"lodash.uniq": "^4.2.0",
"mkdirp": "^0.5.1",
"modal-element": "^1.0.0",
"moment": "^2.12.0",
"rich-message": "^1.0.2",
"silence-chromium": "^2.0.0",
"simple-get": "^2.0.0",
"subleveldown": "^2.0.0",
"yo-yo": "^1.1.1"
},
"devDependencies": {
"beefy": "^2.1.5",
"brfs": "^1.4.1",
"electron-packager": "^5.0.2",
"electron-prebuilt": "0.36.10",
"nib": "^1.1.0",
"node-gyp": "^2.0.2",
"rimraf": "^2.3.3",
"shelljs": "^0.4.0",
"standard": "*",
"stylus": "^0.52.0",
"watchify": "^3.2.1"
},
"engines": {
"node": ">=4",
"npm": ">=2.8.3"
},
"homepage": "https://github.com/moose-team/friends",
"keywords": [
"chat",
"communication",
"crypto",
"discussion",
"friends",
"irc",
"mad science",
"p2p",
"peer-to-peer",
"replication",
"slack",
"team chat",
"webrtc"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/moose-team/friends.git"
},
"scripts": {
"build-css": "stylus -u nib app/style/index.styl -o app/style/bundle.css -c",
"prepackage": "npm run build-css",
"package": "node pkg.js",
"package-all": "npm run package -- --all",
"rebuild-leveldb": "cd node_modules/leveldown && set HOME=~/.electron-gyp && node-gyp rebuild --target=$npm_package_devDependencies_electron_prebuilt --arch=x64 --dist-url=https://atom.io/download/atom-shell",
"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": "stylus -u nib app/style/index.styl -o app/style/bundle.css -w",
"web": "beefy app/web.js:bundle.js"
}
}