-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.41 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.41 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
{
"name": "pion-browser-tests",
"version": "1.0.0",
"description": "Automated end-to-end browser tests that verify pion/webrtc compatibility across all major browsers.",
"keywords": [
"browser",
"tests",
"webrtc",
"pion",
"media",
"real-time"
],
"homepage": "https://github.com/pion/browser-tests#readme",
"bugs": {
"url": "https://github.com/pion/browser-tests/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pion/browser-tests.git"
},
"license": "MIT",
"author": "Pion",
"type": "module",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"typecheck": "tsc",
"test": "node scripts/run-browser-tests.ts",
"test:browser": "node scripts/run-browser-tests.ts",
"test:chrome": "cross-env TEST_BROWSER=chrome node scripts/run-browser-tests.ts",
"test:firefox": "cross-env TEST_BROWSER=firefox node scripts/run-browser-tests.ts",
"test:edge": "cross-env TEST_BROWSER=edge node scripts/run-browser-tests.ts",
"test:safari": "cross-env TEST_BROWSER=safari node scripts/run-browser-tests.ts"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@vitest/browser": "^4.0.17",
"@vitest/browser-webdriverio": "^4.0.17",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"jiti": "^2.6.1",
"typescript": "^6.0.0",
"typescript-eslint": "^8.54.0",
"vitest": "^4.0.17",
"webdriverio": "^9.23.2"
}
}