-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (33 loc) · 853 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (33 loc) · 853 Bytes
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
{
"name": "playwright-postman-framework",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "npx playwright test",
"test:ui": "npx playwright test tests/ui",
"test:api": "node dist/newman-runner.js",
"build": "tsc",
"dev": "ts-node newman-runner.ts",
"report:open:ui": "npx playwright show-report reports/ui",
"report:open:api": "start reports/api/newman-report.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.52.0",
"@types/node": "^22.14.1",
"dotenv": "^16.5.0",
"newman": "^6.2.1",
"newman-reporter-htmlextra": "^1.23.1",
"playwright": "^1.52.0"
},
"dependencies": {
"typescript": "^5.8.3"
}
}