-
Notifications
You must be signed in to change notification settings - Fork 60
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "rtcpeerconnection",
"version": "8.4.0",
"description": "A tiny browser module that normalizes and simplifies the API for WebRTC peer connections.",
"main": "rtcpeerconnection.js",
"repository": {
"type": "git",
"url": "https://github.com/otalk/RTCPeerConnection"
},
"keywords": [
"browser",
"RTCPeerConnection",
"WebRTC",
"Jingle"
],
"author": "Henrik Joreteg <[email protected]>",
"license": "MIT",
"dependencies": {
"lodash.clonedeep": "^4.3.2",
"sdp-jingle-json": "^3.0.0",
"wildemitter": "1.x"
},
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"jshint": "^2.9.1",
"precommit-hook": "^3.0",
"tape": "^4.0.0",
"testling": "^1.7.1",
"travis-multirunner": "^3.3.0",
"webrtc-adapter": "^6.0.2"
},
"scripts": {
"test-travis": "test/run-tests",
"lint": "jshint .",
"build": "node build.js",
"validate": "npm ls"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/10..latest",
"chrome/32..latest",
"firefox/24..latest",
"safari/latest",
"opera/18..latest"
]
},
"pre-commit": [
"lint",
"validate",
"test"
]
}