forked from Temasys/AdapterJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.14 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
79
80
81
82
83
84
85
86
87
{
"name": "adapterjs",
"description": "Creating a common API for WebRTC in the browser",
"version": "0.14.0",
"homepage": "https://temasys.github.io/",
"author": {
"name": "Temasys Communications Pte. Ltd.",
"email": "[email protected]"
},
"main": "publish/adapter.min.js",
"repository": {
"type": "git",
"url": "[email protected]:Temasys/AdapterJS.git"
},
"licenses": [
{
"type": "Apache",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"scripts": {
"postinstall": "npm --prefix third_party/adapter install third_party/adapter",
"version": "grunt publish",
"prepublish": "grunt publish",
"test": "./test.sh;"
},
"dependencies": {},
"devDependencies": {
"chai": "2.1.1",
"grunt": "0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "0.6.0",
"grunt-contrib-compress": "0.13.0",
"grunt-contrib-concat": "0.5.1",
"grunt-contrib-copy": "0.7.0",
"grunt-contrib-jshint": "0.11.2",
"grunt-contrib-uglify": "0.9.1",
"grunt-contrib-yuidoc": "0.7.0",
"grunt-include-replace": "^3.2.0",
"grunt-karma": "^0.12.0",
"grunt-replace": "0.7.9",
"karma": "^0.13.2",
"karma-cdash-reporter": "^0.1.0",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.1.7",
"karma-cli": "^0.1.0",
"karma-firefox-launcher": "0.1.4",
"karma-ie-launcher": "0.2.0",
"karma-mocha": "0.1.10",
"karma-mocha-reporter": "1.0.2",
"karma-opera-launcher": "0.1.0",
"karma-requirejs": "^0.2.2",
"karma-safari-launcher": "^0.1.1",
"karma-script-launcher": "0.1.0",
"mocha": "2.1.0",
"requirejs": "^2.1.19"
},
"testling": {
"files": "tmp/*.js",
"browsers": [
"ie/9",
"chrome/30..latest",
"chrome/canary",
"firefox/26..latest",
"firefox/nightly",
"opera/17..latest",
"opera/next",
"safari/latest",
"iphone/latest",
"ipad/latest",
"android-browser/latest"
]
},
"engines": {
"node": ">=0.10.26",
"npm": ">=1.4.6",
"grunt": ">=0.4.1"
},
"keywords": [
"webrtc",
"ortc",
"adapter",
"shim",
"polyfill",
"rtc"
]
}