-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.76 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@rifflearning/simplewebrtc",
"version": "3.3.0-dev.0",
"description": "World's easiest webrtc",
"license": "MIT",
"author": "Henrik Joreteg <hjoreteg@gmail.com>",
"contributors": [
"Philipp Hancke <fippo@appear.in>",
"Xander Dumaine <xander.dumaine@gmail.com>",
"Jordan Reedie <jordan@riffanalytics.ai>"
],
"homepage": "https://github.com/rifflearning/SimpleWebRTC#readme",
"repository": {
"type": "git",
"url": "https://github.com/rifflearning/SimpleWebRTC.git"
},
"upstream": {
"type": "git",
"url": "https://github.com/simplewebrtc/SimpleWebRTC.git"
},
"bugs": {
"url": "https://github.com/rifflearning/SimpleWebRTC/issues"
},
"main": "./src/simplewebrtc.js",
"files": [
"src/"
],
"scripts": {
"build": "node build.js",
"test-travis": "test/run-selenium",
"updateLatest": "./scripts/updateLatest.sh",
"lint": "jshint src",
"validate": "npm ls",
"test-page": "echo \"open https://0.0.0.0:8443/test/\" && stupid-server -s -h 0.0.0.0",
"test": "node test/selenium/index.js"
},
"pre-commit": [
"lint",
"validate"
],
"peerDependencies": {
"webrtc-adapter": "^6.4.8"
},
"dependencies": {
"@rifflearning/attachmediastream": "^3.0.0",
"@rifflearning/localmedia": "^6.0.0",
"filetransfer": "^2.0.4",
"mockconsole": "0.0.1",
"rtcpeerconnection": "^8.0.0",
"socket.io-client": "^2.3.0",
"webrtcsupport": "^2.2.0",
"wildemitter": "^1.2.1"
},
"devDependencies": {
"browserify": "^16.5.1",
"precommit-hook": "^3.0.0",
"stupid-server": "^0.2.2",
"tape": "^4.13.2",
"testling": "^1.7.3",
"travis-multirunner": "^4.6.0",
"webrtc-adapter": "^6.4.8",
"webrtc-testbed": "git+https://github.com/fippo/testbed.git"
}
}