playwright-network-metrics 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "playwright-network-metrics",
3
+ "version": "0.1.1",
4
+ "description": "Capture and aggregate network performance metrics in Playwright tests with interactive HTML reports.",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/DenisBratchikov/playwright-network-metrics.git"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/DenisBratchikov/playwright-network-metrics/issues"
14
+ },
15
+ "homepage": "https://github.com/DenisBratchikov/playwright-network-metrics#readme",
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "scripts": {
20
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean --external @playwright/test",
21
+ "lint": "biome check .",
22
+ "lint:fix": "biome check --apply .",
23
+ "test": "jest",
24
+ "test:pw": "npx playwright test --config playwright-tests/playwright.config.ts",
25
+ "test:watch": "jest --watch"
26
+ },
27
+ "keywords": [
28
+ "playwright",
29
+ "network",
30
+ "metrics",
31
+ "performance",
32
+ "reporter",
33
+ "fixture",
34
+ "aggregate"
35
+ ],
36
+ "author": {
37
+ "name": "Denis Bratchikov",
38
+ "url": "https://github.com/DenisBratchikov"
39
+ },
40
+ "license": "MIT",
41
+ "devDependencies": {
42
+ "@biomejs/biome": "^2.3.10",
43
+ "@playwright/test": "^1.57.0",
44
+ "@types/jest": "^30.0.0",
45
+ "@types/micromatch": "^4.0.10",
46
+ "jest": "^30.2.0",
47
+ "ts-jest": "^29.4.6",
48
+ "ts-node": "^10.9.2",
49
+ "tsup": "^8.5.1",
50
+ "typescript": "^5.9.3"
51
+ },
52
+ "peerDependencies": {
53
+ "@playwright/test": ">=1.30.0"
54
+ },
55
+ "dependencies": {
56
+ "micromatch": "^4.0.8"
57
+ }
58
+ }