forked from open-easyrtc/open-easyrtc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.13 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
{
"name": "open-easyrtc",
"version": "2.0.20",
"homepage": "https://github.com/open-easyrtc/open-easyrtc",
"author": "Harold Thetiot <[email protected]>",
"description": "Open-EasyRTC enables quick development of WebRTC",
"contributors": [
"Harold Thetiot <[email protected]>",
"Chris De Pasquale <[email protected]>",
"Doug Pelton <[email protected]>",
"Rod Apeldoorn <[email protected]>",
"Eric Davies <[email protected]>"
],
"keywords": [
"webRTC",
"easy",
"EasyRTC",
"RTC",
"server"
],
"repository": {
"type": "git",
"url": "https://github.com/open-easyrtc/open-easyrtc.git"
},
"bugs": {
"url": "https://github.com/open-easyrtc/open-easyrtc/issues"
},
"main": "index",
"dependencies": {
"async": "^3.2.3",
"colors": "*",
"socket.io-client": "^2.4.0",
"underscore": "^1.13.2",
"webrtc-adapter": "^8.1.1"
},
"scripts": {
"lint": "grunt lint",
"cleanup": "rm -fr node_modules/ && npm install && rm -fr bower_components/ && bower install",
"build": "grunt build",
"test": "grunt test",
"test-headless": "grunt test-headless",
"doc": "grunt jsdoc:client jsdoc:server",
"serve": "grunt serve"
},
"analyze": false,
"license": "BSD-2-Clause",
"engines": {
"node": ">=0.8"
},
"devDependencies": {
"fs": "0.0.2",
"grunt": "1.5",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-connect": "^3.0.0",
"grunt-contrib-csslint": "^2.0.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-file-info": "^1.0.10",
"grunt-jsdoc": "^2.4.1",
"grunt-karma": "^4.0.2",
"jasmine": "^3.5.0",
"jasmine-core": "^2.4.1",
"jsdoc-oblivion": "0.0.4",
"karma": "^6.3.2",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^2.0.2",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.2",
"karma-requirejs": "^1.0.0",
"requirejs": "^2.2.0",
"strip-json-comments": "^2.0.1",
"time-grunt": "^1.3.0"
}
}