-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
48 lines (48 loc) · 1010 Bytes
/
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
{
"name": "localmedia",
"version": "5.2.0",
"license": "ISC",
"homepage": "https://github.com/otalk/localmedia#readme",
"bugs": {
"url": "https://github.com/otalk/localmedia/issues"
},
"keywords": [
"webrtc",
"browser",
"getUserMedia"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/otalk/localmedia.git"
},
"main": "localmedia.js",
"description": "WebRTC abstraction for managing local media streams.",
"dependencies": {
"wildemitter": "^1.0.0",
"getscreenmedia": "^5.1.2",
"hark": "^1.0.0",
"mockconsole": "0.0.x"
},
"devDependencies": {
"browserify": "^13.1.0",
"jshint": "^2.9.5",
"precommit-hook": "^3.0.0",
"tape": "^4.6.0",
"webrtc-adapter": "^6.0.0"
},
"peerDependencies": {
"webrtc-adapter": "^6.0.0"
},
"testling": {
"files": "test/*.js"
},
"scripts": {
"lint": "jshint .",
"validate": "npm ls"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}