-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
42 lines (42 loc) · 1.04 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
{
"private": true,
"name": "lxjs-chat",
"description": "Talk to strangers! (P2P video chat using WebRTC)",
"version": "1.1.0",
"author": "Feross Aboukhadijeh <[email protected]> (http://feross.org/)",
"bugs": {
"url": "https://github.com/feross/instant.io/issues"
},
"dependencies": {
"custom-error": "^0.2.1",
"hat": "0.0.3",
"node-static": "^0.7.3",
"simple-peer": "^8.1.0",
"simple-websocket": "^5.0.2",
"ws": "^3.0.0"
},
"devDependencies": {
"browserify": "^14.0.0",
"nodemon": "^1.11.0",
"standard": "^10.0.2",
"watchify": "^3.9.0"
},
"keywords": [
"p2p",
"webrtc",
"data channel",
"video chat"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/feross/instant.io.git"
},
"scripts": {
"build": "browserify public/js/index.js > public/js/bundle.js",
"install": "npm run build",
"start": "node app.js",
"watch": "watchify public/js/index.js -o public/js/bundle.js -dv & nodemon app.js"
}
}