-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.82 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@hexdee606/playwright-logger",
"version": "0.1.0",
"description": "Clean ASCII-based Playwright reporter with verbose + structured log output and timezone support.",
"keywords": [
"playwright",
"reporter",
"ascii",
"logger",
"typescript",
"console",
"test",
"ci",
"cli"
],
"homepage": "https://github.com/hexdee606/playwright-logger",
"bugs": {
"url": "https://github.com/hexdee606/playwright-logger/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hexdee606/playwright-logger.git"
},
"license": "Apache-2.0",
"author": "Dipen Chavan (hexdee606)",
"maintainers": [
{
"name": "Dipen Chavan",
"email": "10842172+hexdee606@users.noreply.github.com"
}
],
"type": "module",
"exports": {
".": "./dist/reporter.js"
},
"main": "dist/reporter.js",
"types": "dist/reporter.d.ts",
"directories": {
"test": "test"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"check": "tsc --noEmit",
"test": "npx playwright test test/tests --config=test/playwright.config.ts",
"version:patch": "npm version patch && git push --follow-tags && npm publish",
"version:minor": "npm version minor && git push --follow-tags && npm publish",
"version:major": "npm version major && git push --follow-tags && npm publish"
},
"dependencies": {
"@playwright/test": "^1.56.1",
"consola": "^3.4.2",
"moment": "^2.30.1",
"moment-timezone": "^0.6.0"
},
"devDependencies": {
"typescript": "^5.9.3",
"@types/node": "^24.10.1",
"chalk": "^5.6.2"
},
"peerDependencies": {
"node": ">=20.19.0"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public"
}
}