-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "webrtc-bbs",
"version": "0.1.0",
"description": "A distributed anonymous BBS over P2P overlay using WebRTC",
"main": "src/main.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "browserify --standalone WebRtcBbs . | uglifyjs > public/js/webrtc-bbs.js",
"build-no-minify": "browserify --standalone WebRtcBbs . > public/js/webrtc-bbs.js"
},
"repository": {
"type": "git",
"url": "https://github.com/tsujio/webrtc-bbs.git"
},
"keywords": [
"webrtc",
"bbs"
],
"author": "tsujio",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsujio/webrtc-bbs/issues"
},
"homepage": "https://github.com/tsujio/webrtc-bbs",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
"underscore": "global:_",
"cryptojs": "global:CryptoJS",
"peerjs": "global:Peer",
"webrtcnet": {
"exports": "Chord"
}
},
"browser": {
"webrtcnet": "./lib/webrtc-chord/dist/webrtc-net.js"
},
"devDependencies": {
"browserify": "^4.2.0",
"browserify-shim": "^3.6.0",
"uglify-js": "^2.4.15"
},
"dependencies": {
"peer": "^0.2.6"
}
}