-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.84 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
{
"name": "karma-webkit-launcher",
"version": "2.6.0",
"description": "A Karma plugin. Launcher for Webkit.",
"preferGlobal": true,
"keywords": [
"headless",
"karma",
"karma-launcher",
"karma-plugin",
"launcher",
"playwright",
"testing",
"webkit"
],
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"is-ci": "^3.0.1",
"uuid": "^10.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.16.0",
"eslint": "^8.56.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"karma": "^6.4.3",
"karma-jasmine": "^5.1.0",
"playwright-webkit": "^1.45.1",
"prettier": "^3.3.2"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"author": {
"name": "Markus Bordihn",
"email": "Markus@Bordihn.de",
"url": "https://github.com/MarkusBordihn"
},
"repository": {
"type": "git",
"url": "https://github.com/google/karma-webkit-launcher.git"
},
"bugs": {
"url": "https://github.com/google/karma-webkit-launcher/issues"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"test": "npm run test:auto_detect && npm run test:playwright && npm run test:playwright_headless",
"test:auto_detect": "karma start test/auto_detect_test.conf",
"test:epiphany": "karma start test/epiphany_test.conf",
"test:safari": "karma start test/safari_test.conf",
"test:playwright": "karma start test/playwright_test.conf",
"test:playwright_headless": "karma start test/playwright_headless_test.conf",
"sync": "git pull && npm install & npm update && npm prune && npm audit fix",
"upgrade": "npx npm-check -u --skip-unused && npm install && npm update && npm prune && npm audit fix",
"postupgrade": "npm run test"
}
}