-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 893 Bytes
/
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
{
"name": "data-driven-playwright-tests",
"version": "1.0.0",
"description": "Data-driven Playwright tests",
"scripts": {
"e2e-tests": "npx playwright test",
"poste2e-tests": "npm run create-allure-report",
"create-allure-report": "allure generate allure-results -o allure-report --clean",
"open-allure-report": "allure open allure-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taninnazar/data-driven-playwright-tests.git"
},
"keywords": ["playwright"],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/taninnazar/data-driven-playwright-tests/issues"
},
"homepage": "https://github.com/taninnazar/data-driven-playwright-tests#readme",
"devDependencies": {
"@playwright/test": "1.41.0",
"allure-commandline": "2.24.1",
"allure-playwright": "2.9.2",
"ts-node": "10.9.1"
}
}