-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.47 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "playwright-trx-reporter",
"version": "1.0.10",
"description": "TRX reporter for playwright",
"author": {
"name": "Song Gao"
},
"keywords": [
"playwright",
"TRX"
],
"license": "ISC",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test:playwright-single-trx": "npx playwright install && npx playwright test --config=./playwright.singleTrx.config.ts || exit 0",
"test:playwright-multi-trx": "npx playwright install && npx playwright test --config=./playwright.multiTrx.config.ts || exit 0",
"test:playwright-generate-trx": "npx test:playwright-single-trx && test:playwright-multi-trx",
"test:jest": "npx jest"
},
"devDependencies": {
"@playwright/test": "^1.30.0",
"@tsconfig/recommended": "^1.0.2",
"@types/jest": "^29.4.0",
"@types/jsdom": "^21.0.1",
"@types/node": "^16.18.0",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.0",
"fast-xml-parser": "^4.0.15",
"jest": "^29.4.1",
"jsdom": "^22.0.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.5.0",
"typescript": "^5.0.0"
},
"dependencies": {
"uuid": "^9.0.0"
}
}