-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.51 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
64
65
66
67
68
69
70
71
72
73
{
"name": "vikas-playwright-helper",
"version": "2.1.4",
"description": "Playwright Helper Library for testing",
"main": "./dist/src/playwright-helper/index.js",
"types": "./dist/src/playwright-helper/index.d.ts",
"projectType": "library",
"exports": {
".": "./dist/src/playwright-helper/index.js",
"./constants": "./dist/src/playwright-helper/constant/index.js",
"./custom-logger": "./dist/src/playwright-helper/utils/custom-logger.js",
"./msTeamReports": "./dist/src/playwright-helper/utils/teamSummaryReport.js",
"./api": "./dist/src/playwright-helper/api/index.js",
"./splunk-logger": "./dist/src/playwright-helper/utils/splunk-logger.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vikas1712/Playwright-helper.git"
},
"author": "Vikas Yadav <[email protected]>",
"keywords": [
"playwright",
"typescript",
"testing"
],
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*",
"README.md"
],
"scripts": {
"bump:patch": "npm version patch -m 'Patch update to %s'",
"bump:minor": "npm version minor -m 'Minor update to %s'",
"bump:major": "npm version major -m 'Major update to %s'",
"report": "playwright show-report .tmp/report",
"ui": "playwright test --ui-port 0",
"trace": "playwright show-trace --port 0",
"lint": "eslint 'tests/**/*.ts' 'src/**/*.ts' ",
"lint:fix": "eslint 'tests/**/*.ts' 'src/**/*.ts' --fix",
"build": "tsc -p tsconfig.json",
"release": "npm run build",
"format": "prettier --write 'tests/**/*.ts' 'src/**/*.ts' '**/*.json' '**/*.md' '!package-lock.json' '!dist/**/*' '!build/**/*'",
"ready": "rimraf dist node_modules package-lock.json && npm i",
"clean": "rimraf dist node_modules package-lock.json",
"docs": "typedoc --entryPoints src/playwright-helper --out docs --exclude \"**/node_modules/**/*\" --readme none",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@playwright/test": "~1.47.0",
"@types/node": "~22.5.4",
"semantic-release": "~24.1.0",
"typedoc": "~0.26.6",
"typescript": "~5.5.4"
},
"directories": {
"doc": "docs"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/Vikas1712/Playwright-helper/issues"
},
"homepage": "https://github.com/Vikas1712/Playwright-helper#readme",
"dependencies": {
"tslib": "^2.7.0",
"ajv": "^8.17.1",
"winston": "~3.14.2",
"genson-js": "^0.0.8",
"axios": "^1.7.7",
"@reportportal/client-javascript": "~5.1.4"
}
}