@testrelic/playwright-analytics 1.2.0 → 1.2.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 +13 -18
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@testrelic/playwright-analytics",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Playwright custom reporter and navigation-tracking fixture for test analytics",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -46,11 +46,20 @@
|
|
|
46
46
|
"dist",
|
|
47
47
|
"timeline-schema.json"
|
|
48
48
|
],
|
|
49
|
+
"scripts": {
|
|
50
|
+
"build": "tsup",
|
|
51
|
+
"test": "vitest run --exclude '**/e2e/**'",
|
|
52
|
+
"test:watch": "vitest",
|
|
53
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
54
|
+
"typecheck": "tsc --noEmit",
|
|
55
|
+
"test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
|
|
56
|
+
"test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
|
|
57
|
+
},
|
|
49
58
|
"peerDependencies": {
|
|
50
59
|
"@playwright/test": ">=1.35.0"
|
|
51
60
|
},
|
|
52
61
|
"dependencies": {
|
|
53
|
-
"@testrelic/core": "
|
|
62
|
+
"@testrelic/core": "workspace:*"
|
|
54
63
|
},
|
|
55
64
|
"devDependencies": {
|
|
56
65
|
"@playwright/test": "^1.35.0",
|
|
@@ -63,19 +72,5 @@
|
|
|
63
72
|
"node": ">=18"
|
|
64
73
|
},
|
|
65
74
|
"license": "MIT",
|
|
66
|
-
"homepage": "https://testrelic.co"
|
|
67
|
-
|
|
68
|
-
"type": "git",
|
|
69
|
-
"url": "https://testrelic.co",
|
|
70
|
-
"directory": "packages/playwright-analytics"
|
|
71
|
-
},
|
|
72
|
-
"scripts": {
|
|
73
|
-
"build": "tsup",
|
|
74
|
-
"test": "vitest run --exclude '**/e2e/**'",
|
|
75
|
-
"test:watch": "vitest",
|
|
76
|
-
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
77
|
-
"typecheck": "tsc --noEmit",
|
|
78
|
-
"test:e2e": "pnpm run build && npx playwright test --config __tests__/e2e/playwright.config.ts",
|
|
79
|
-
"test:e2e:validate": "npx tsx __tests__/e2e/validate-report.ts"
|
|
80
|
-
}
|
|
81
|
-
}
|
|
75
|
+
"homepage": "https://testrelic.co"
|
|
76
|
+
}
|