forked from dragosch/kurento-group-call
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.45 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
{
"name": "kurento-group-call",
"version": "0.0.3",
"description": "Simple javascript library used to initiate a group call (many to many video and audio call) using Kurento Media Server",
"main": "lib/server.js",
"private": false,
"scripts": {
"test": "mocha -w lib/backend/test"
},
"repository": {
"type": "git",
"url": "https://github.com/dragosch/kurento-group-call.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/dragosch/kurento-group-call/blob/master/LICENSE"
}
],
"dependencies": {
"async": "~0.9.0",
"kurento-client": "5.1.0",
"shortid": "^2.2.2"
},
"devDependencies": {
"bower": "^1.3.12",
"grunt": "^0.4.5",
"grunt-browserify": "~3.7.0",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-githooks": "^0.3.1",
"grunt-jsbeautifier": "^0.2.10",
"grunt-jscoverage": "^0.1.3",
"grunt-jsdoc": "^0.6.3",
"grunt-npm2bower-sync": "^0.8.1",
"grunt-shell": "^1.1.2",
"qunitjs": "^1.18.0",
"mocha": "^2.2.5",
"should": "^6.0.3"
},
"bugs": {
"url": "https://github.com/dragosch/kurento-group-call/issues"
},
"homepage": "https://github.com/dragosch/kurento-group-call",
"directories": {
"example": "example"
},
"keywords": [
"Kurento", "WebRTC", "video", "audio"
],
"author": "Alexander Dragosch <[email protected]>",
"license": "MIT"
}