forked from mozilla/minijanus.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 800 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 800 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
{
"name": "@networked-aframe/minijanus",
"version": "0.7.0",
"description": "A small Javascript wrapper for talking to the Janus WebRTC signalling API.",
"browser": "minijanus.js",
"repository": {
"type": "git",
"url": "https://github.com/networked-aframe/minijanus.js.git"
},
"keywords": [
"janus",
"janus-gateway",
"webrtc"
],
"author": "Marshall Quander <marshall@quander.me>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/networked-aframe/minijanus.js/issues"
},
"homepage": "https://github.com/networked-aframe/minijanus.js#readme",
"devDependencies": {
"browserify": "^16.2",
"tape": "^4.9"
},
"scripts": {
"build": "browserify minijanus.js --standalone Minijanus > bundle.js",
"test": "tape tests.js"
}
}