forked from Adrinalin4ik/easy-mediasoup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.33 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
78
{
"name": "easy-mediasoup",
"version": "1.2.3",
"description": "Mediasoup overhead",
"main": "./dist/easy-mediasoup.bundle.js",
"scripts": {
"start": "http-server -S -C server.crt -K server.key",
"dev": "npm test -- -w",
"init": "mkdir es5-bundle",
"clean": "rm -rf es5-bundle",
"prebuild": "npm run clean && npm run init",
"babel-build": "babel ./src -d ./es5-bundle --ignore test.js --presets babel-preset-es2015",
"build": "npm run babel-build && webpack",
"pretest": "npm run build",
"test": "mocha --compilers js:babel-core/register ./src/**/*.test.js",
"test:single": "mocha --compilers js:babel-core/register",
"bundle_build": "npm run clean && npm run babel-build && node build.js",
"prod-build": "npm run bundle_build --production=true",
"test-page": "echo \"open https://0.0.0.0:8443/test/\" && http-server",
"lint": "jshint .",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Adrinalin4ik/easy-mediasoup.git"
},
"keywords": [
"easy-mediasoup",
"mediasoup",
"webrtc",
"sfu"
],
"author": "Alexey Panfilkin",
"license": "ISC",
"bugs": {
"url": "https://github.com/Adrinalin4ik/easy-mediasoup/issues"
},
"homepage": "https://github.com/Adrinalin4ik/easy-mediasoup#readme",
"dependencies": {
"ajv": "^6.5.2",
"axios": "^0.18.0",
"debug": "^3.1.0",
"mediasoup-client": "2.4.6",
"msr": "^1.3.4",
"protoo-client": "3.0.3",
"random-string": "^0.2.0",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"url-parse": "^1.4.1",
"webpack": "^4.15.1",
"webrtc-adapter": "^4.0.0",
"wildemitter": "^1.2.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.16.0",
"babelify": "^8.0.0",
"browserify": "^13.1.0",
"chai": "^3.5.0",
"http-server": "^0.2.2",
"mocha": "^5.2.0",
"request": "^2.87.0",
"selenium-webdriver": "^3.0.1",
"tape": "^4.9.1",
"travis-multirunner": "^3.0.0",
"uglify-js": "^2.7.3",
"webpack-cli": "^2.1.5"
},
"files": [
"dist"
]
}