-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.97 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.97 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
48
49
50
51
52
53
54
55
56
57
58
{
"name": "playwright",
"version": "1.0.0",
"description": "Sandbox to learn how to use and best set up Playwright",
"main": "index.js",
"scripts": {
"test": "playwright test --project=chromium --project=webkit",
"testHeaded": "playwright test --headed",
"testUi": "playwright test --ui",
"testChrome": "playwright test --project=chromium",
"testWebkit": "playwright test --project=webkit",
"testFirefox": "playwright test --project=firefox",
"eslint": "node node_modules/eslint/bin/eslint.js -f stylish",
"showTrace": "playwright show-trace",
"report": "playwright show-report",
"allure:generate": "allure generate allure-results --clean -o allure-report",
"allure:open": "allure open allure-report",
"allure:serve": "allure serve allure-results",
"test:allure": "playwright test && npm run allure:generate && npm run allure:open",
"codegenMini": "playwright codegen --viewport-size=\"500,800\"",
"codegen": "playwright codegen",
"agentInit": "playwright init-agents --loop=vscode"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CDTester/playwright.git"
},
"keywords": [
"playwright",
"typescript"
],
"author": "Chris Day",
"license": "MIT",
"bugs": {
"url": "https://github.com/CDTester/playwright/issues"
},
"homepage": "https://github.com/CDTester/playwright#readme",
"dependencies": {
"playwright": "latest",
"playwright-core": "latest",
"ajv": "latest"
},
"devDependencies": {
"@playwright/browser-chromium": "latest",
"@playwright/browser-firefox": "latest",
"@playwright/browser-webkit": "latest",
"@playwright/test": "latest",
"@types/node": "^24.2.0",
"@typescript-eslint/eslint-plugin": "5.57.0",
"@typescript-eslint/parser": "5.57.0",
"allure-playwright": "latest",
"create-playwright": "latest",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"ts-node": "^10.7.0",
"typescript": "^5.7.2"
}
}