forked from ryanrosello-og/zebrunner-playwright-agent
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 2.21 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
59
60
61
62
{
"name": "@zebrunner/javascript-agent-playwright",
"version": "1.0.2",
"main": "build/javascript-agent-playwright/index.js",
"license": "Apache-2.0",
"description": "Zebrunner Agent for Playwright",
"scripts": {
"clean": "rimraf ./build",
"build": "tsc -p ./tsconfig.json",
"lint": "eslint **/*.ts",
"test": "npx playwright test",
"test:api": "npx playwright test tests/api/api-test.spec.ts --project='API Tests'",
"test:api-2-descr": "playwright test tests/api/api-test-2-descr.spec.js --project='API Tests'",
"test:api-all-pass-skip": "playwright test tests/api/api-all-pass-skip.spec.js --project='API Tests'",
"test:web": "playwright test tests/example.spec.js",
"test:demo": "playwright test tests/demo-todo-app.spec.js",
"test:tcm-zbr-web": "playwright test tests/tcm-zbr-web.spec.js",
"test:tcm-testrail-web": "playwright test tests/tcm-testrail-web.spec.js",
"test:tcm-xray-web": "playwright test tests/tcm-xray-web.spec.js",
"test:tcm-zephyr-web": "playwright test tests/tcm-zephyr-web.spec.js"
},
"devDependencies": {
"@playwright/test": "^1.44.1",
"@types/node": "^20.14.6",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"playwright": "^1.18.1",
"prettier": "^2.5.1",
"rimraf": "^5.0.1",
"typescript": "^4.5.5"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@slack/web-api": "^6.6.0",
"axios": "^0.25.0",
"dotenv": "^16.3.1",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"loglevel": "^1.8.1",
"ua-parser-js": "^1.0.2",
"uuid": "^8.3.2"
},
"homepage": "https://github.com/zebrunner/javascript-agent-playwright#readme",
"bugs": {
"url": "https://github.com/zebrunner/javascript-agent-playwright/issues"
},
"keywords": [
"zebrunner",
"reporting",
"playwright"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zebrunner/javascript-agent-playwright"
},
"author": "https://github.com/zebrunner"
}