-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@reportportal/agent-js-playwright",
"version": "5.1.11",
"description": "Agent to integrate Playwright with ReportPortal.",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./build",
"lint": "eslint \"src/**/*.ts\"",
"format": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@reportportal/client-javascript": "~5.3.0",
"strip-ansi": "6.0.1"
},
"files": [
"/build"
],
"devDependencies": {
"@playwright/test": "^1.45.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"axios": "^0.28.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^15.0.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^29.2.2",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-playwright.git"
},
"author": "ReportPortal.io",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reportportal/agent-js-playwright/issues"
},
"homepage": "https://github.com/reportportal/agent-js-playwright#readme",
"engines": {
"node": ">=14.x"
},
"keywords": [
"epam",
"reports",
"portal",
"playwright",
"reporters",
"reportportal"
]
}