-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.18 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
{
"name": "mempool-e2e-suite",
"version": "1.0.0",
"description": "Production-grade Playwright + TypeScript end-to-end test suite for mempool.space, a real-world Bitcoin blockchain explorer. Covers search, transaction inspection, real-time mempool updates, fee estimation, Lightning network, and multi-browser cross-platform validation.",
"type": "module",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:chromium": "playwright test --project=chromium",
"test:firefox": "playwright test --project=firefox",
"test:webkit": "playwright test --project=webkit",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"report": "playwright show-report",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,json,md}\"",
"typecheck": "tsc --noEmit"
},
"keywords": [
"playwright",
"typescript",
"e2e-testing",
"fintech-qa",
"bitcoin",
"blockchain-explorer",
"test-automation"
],
"author": "Asad Mukhtar",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/node": "^20.11.0",
"typescript": "^5.4.0"
}
}