-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.02 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 2.02 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
{
"name": "fit-cli",
"version": "0.1.0",
"description": "A CLI tool to help make FIT (Functional Integration Testing) easier to use.",
"type": "module",
"bin": {
"fit": "./dist/index.js"
},
"scripts": {
"help": "bun src/fit/main/main.ts help",
"start": "bun src/fit/main/main.ts",
"wizard": "bun src/fit/main/main.ts wizard",
"run": "bun src/fit/run/run.ts",
"config": "bun src/fit/config/config.ts",
"replay": "bun src/util/non-fit/replay-entry.ts --replay",
"definition": "bun src/fit/definition/definition.ts",
"cloud-instances": "bun src/cloud/cloud-instances/cloud-instances.ts",
"secrets": "bun src/cloud/util/aws/secrets-cli.ts",
"archive": "bun src/fit/archive/archive.ts",
"upgrade": "bun src/fit/upgrade/upgrade.ts",
"generate-fit-tests-cache": "bun src/fit/shared/select-fit-tests/generate-fit-tests-cache.ts",
"dev": "bun --watch src/fit/main/main.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "FORCE_COLOR=1 node --import tsx --test 'src/**/tests/*.test.ts'"
},
"engines": {
"bun": ">=1.0"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@aws-sdk/client-ec2": "^3.1069.0",
"@aws-sdk/client-iam": "^3.1075.0",
"@aws-sdk/client-s3": "^3.1069.0",
"@aws-sdk/client-secrets-manager": "^3.1068.0",
"@aws-sdk/client-ssm": "^3.1069.0",
"@aws-sdk/client-sts": "^3.1069.0",
"@aws-sdk/credential-providers": "^3.1069.0",
"@aws-sdk/lib-storage": "^3.1069.0",
"@inquirer/prompts": "^7.2.0",
"archiver": "^8.0.0",
"json5": "^2.2.3",
"xunit-viewer": "^10.6.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/archiver": "^8.0.0",
"@types/node": "^22.10.0",
"eslint": "^10.4.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.60.1"
},
"patchedDependencies": {
"detect-file-encoding-and-language@2.4.0": "patches/detect-file-encoding-and-language@2.4.0.patch"
}
}