-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "posthog-playwright",
"version": "1.0.0",
"description": "Test PostHog analytics events in your Playwright tests with type-safe assertions and automatic event capture",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && cp src/global.d.ts dist/global.d.ts",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"prepublishOnly": "npm run rebuild",
"test": "npm run build && playwright test",
"test:ui": "npm run build && playwright test --ui",
"test:debug": "npm run build && playwright test --debug",
"serve": "npx http-server test-app -p 8080"
},
"keywords": [
"playwright",
"posthog",
"analytics",
"testing",
"e2e",
"tracking",
"test",
"fixture",
"matcher",
"assertions",
"event-tracking",
"product-analytics",
"typescript"
],
"author": "posthog-playwright contributors",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"peerDependencies": {
"@playwright/test": "^1.40.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/lodash.ismatch": "^4.4.9",
"@types/node": "^25.0.3",
"http-server": "^14.1.1",
"typescript": "^5.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/posthog-playwright.git"
},
"bugs": {
"url": "https://github.com/yourusername/posthog-playwright/issues"
},
"homepage": "https://github.com/yourusername/posthog-playwright#readme",
"dependencies": {
"lodash.ismatch": "^4.4.0"
}
}