-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.01 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.01 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
{
"name": "api-automation-starter",
"version": "1.0.0",
"description": "Starter Project for Creating API Automation Project Using Playwright Framework",
"main": "index.js",
"scripts": {
"allure:generate": "npx allure generate ./allure-results --clean",
"allure:serve": "npx allure serve --port 8081",
"test-single": "npx playwright test --project=chromium",
"post-test": "npm run allure:generate",
"pre-serve": "copyfiles --flat tools/allure/categories.json allure-results",
"generate-test": "node ./tools/generator/generate.js",
"generate-data": "node ./tools/generator/generate-data.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.34.3",
"@types/node-fetch": "^2.6.4"
},
"dependencies": {
"allure-commandline": "^2.22.1",
"allure-playwright": "^2.4.0",
"copyfiles": "^2.4.1",
"dotenv": "^16.1.4",
"generate-template-files": "^3.2.1",
"node-fetch": "^2.6.12",
"typescript": "^5.1.3"
}
}