-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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
{
"name": "webrtc-test-suite",
"version": "2.1.2",
"main": "dist/index.js",
"source": "index.js",
"repository": "[email protected]:theanam/webrtc-test-suite.git",
"homepage": "https://github.com/theanam/webrtc-test-suite",
"author": "Anam Ahmed <[email protected]>",
"license": "MIT",
"keywords": [
"webrtc",
"feature testing",
"browser compatibility",
"getusermedia",
"rtcpeerconnection",
"hardware test",
"getusermedia",
"testusermedia",
"mediadevices",
"real time"
],
"devDependencies": {
"jquery": "^3.5.1",
"parcel-bundler": "^1.12.4",
"sass": "^1.26.8"
},
"scripts": {
"watch": "parcel watch index.js --global _rtc",
"build": "parcel build index.js --global _rtc" ,
"run-example": "parcel test/index.html -d test-temp",
"build-example": "parcel build test/index.html -d test-dist --public-url /webrtc-test-suite",
"publish-page": "yarn build-example && cp test-temp/test.png test-dist/ && npx gh-pages -d test-dist && rm -rf test-dist"
},
"browserslist": [
"defaults",
"not IE 11",
"not IE_Mob 11"
]
}