-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.01 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.01 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
{
"name": "qamax-auth-cli",
"version": "1.0.1",
"description": "CLI tool to capture authentication sessions for QualityMax",
"main": "index.js",
"bin": {
"qamax-auth": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "node test.js",
"build": "bash scripts/build.sh"
},
"pkg": {
"scripts": [
"index.js",
"lib/**/*.js"
],
"assets": [
"package.json"
],
"targets": [
"node18-macos-x64",
"node18-macos-arm64",
"node18-linux-x64",
"node18-win-x64"
],
"outputPath": "dist"
},
"keywords": [
"qamax",
"auth",
"playwright",
"testing",
"automation"
],
"author": "QualityMax",
"license": "MIT",
"dependencies": {
"commander": "^11.1.0",
"chalk": "^4.1.2",
"chrome-launcher": "^1.1.0",
"chrome-remote-interface": "^0.33.0"
},
"devDependencies": {
"pkg": "^5.8.1"
},
"optionalDependencies": {
"playwright": "^1.40.0"
},
"engines": {
"node": ">=16.0.0"
}
}