forked from sjkummer/janus-gateway-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.4 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.4 KB
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
{
"name": "janus-gateway-rn",
"description": "Core concepts for Janus Javascript client, for React Native",
"version": "0.1.4",
"author": "Cargomedia",
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git@github.com:bytecodeagency/janus-gateway-rn.git"
},
"scripts": {
"build": "npm install && $(npm bin)/gulp",
"test": "$(npm bin)/mocha --exit && $(npm bin)/karma start test/karma.conf.js",
"test-codecov": "$(npm bin)/istanbul cover $(npm bin)/_mocha -- --exit -R spec && cat ./coverage/coverage.json | $(npm bin)/codecov"
},
"dependencies": {
"bluebird": "^3.0.6",
"eventemitter2": "^2.1.3",
"webrtc-adapter": "~1.1.0",
"websocket": "^1.0.22"
},
"devDependencies": {
"browserify": "^13.0.0",
"chai": "^2.1.2",
"exorcist": "^0.4.0",
"exposify": "^0.5.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-param": "^1.0.3",
"gulp-rename": "^1.2.2",
"gulp-sourcemaps": "^1.6.0",
"gulp-uglify": "^3.0.2",
"istanbul": "^0.4.2",
"jquery": "^3.0.0",
"karma": "^4.3.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-mocha": "^1.1.1",
"karma-read-json": "^1.1.0",
"mocha": "^6.2.0",
"resolve": "^1.1.7",
"sinon": "^1.17.3",
"underscore": "^1.8.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"ws": "^7.2.0"
}
}