-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.57 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.57 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
{
"name": "testbench",
"version": "1.0.0",
"description": "A CLI tool for running API calls and Playwright tests against remote servers",
"main": "dist/index.js",
"bin": {
"testbench": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"watch": "tsc --watch",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"get-token": "playwright test src/actions/playwright/get-token.spec.ts",
"update-server": "tsx src/index.ts update-server",
"ci-sites": "tsx src/index.ts ci-sites",
"debug-tunnels": "tsx src/index.ts debug-tunnels",
"smoketest": "playwright test src/tests"
},
"keywords": [
"cli",
"testing",
"playwright",
"api",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@types/imap": "^0.8.42",
"@types/inquirer": "^9.0.9",
"@types/nodemailer": "^7.0.3",
"axios": "^1.6.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"imap": "^0.8.19",
"inquirer": "^12.10.0",
"nodemailer": "^7.0.10",
"playwright": "^1.40.1"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^1.0.4",
"@vitest/ui": "^1.0.4",
"ajv": "^8.17.1",
"cross-env": "^7.0.3",
"ts-node": "^10.9.1",
"tsx": "^4.20.6",
"typescript": "^5.3.2",
"vitest": "^1.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}