62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "karma-webkit-launcher",
|
|
"version": "2.1.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": "^9.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.29.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"eslint": "^8.32.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"eslint-config-prettier": "^8.6.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"karma": "^6.4.1",
|
|
"karma-jasmine": "^5.1.0",
|
|
"karma-webkit-launcher": "^2.0.0"
|
|
},
|
|
"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 .",
|
|
"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-upgrade && npm install && npm update && npm prune && npm audit fix && npm run test"
|
|
}
|
|
}
|