-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "playwright-zephyr",
"version": "1.2.0",
"description": "Zephyr reporter for the Playwright",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"files": [
"lib/src"
],
"scripts": {
"prepare": "npm run build",
"version": "npm run format",
"build": "tsc",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"format": "prettier --write \"(src|tests)/*.(ts)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/elaichenkov/playwright-zephyr.git"
},
"keywords": [
"playwright",
"zephyr",
"reporter",
"typescript",
"tools"
],
"author": "Yevhen Laichenkov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elaichenkov/playwright-zephyr/issues"
},
"homepage": "https://github.com/elaichenkov/playwright-zephyr#readme",
"devDependencies": {
"@playwright/test": "^1.36.2",
"prettier": "^3.0.1",
"release-it": "^18.0.0",
"typescript": "^5.1.6"
},
"dependencies": {
"axios": "^1.4.0",
"picocolors": "^1.0.0",
"table": "^6.8.1",
"@types/adm-zip": "^0.5.0",
"adm-zip": "^0.5.10"
}
}