-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.58 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 2.58 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "@abca/cli",
"bin": {
"bgagent": "lib/bin/bgagent.js"
},
"files": [
"lib"
],
"engines": {
"node": ">= 20.x <= 24.x"
},
"scripts": {
"compile": "tsc --build tsconfig.json",
"eslint": "eslint --fix --no-error-on-unmatched-pattern src test build-tools",
"test": "jest --passWithNoTests --updateSnapshot",
"test:watch": "jest --watch",
"build": "npm run compile && npm run test && npm run eslint",
"security:retire": "retire --path . --severity high"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^5",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.0",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"eslint": "^10",
"eslint-import-resolver-typescript": "^4",
"eslint-plugin-import-x": "^4",
"eslint-plugin-jest": "^29.15.4",
"eslint-plugin-jsdoc": "^63.0.10",
"eslint-plugin-license-header": "^0.9.0",
"jest": "^30.4.2",
"jest-junit": "^17",
"retire": "^5.4.3",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3"
},
"dependencies": {
"@aws-sdk/client-bedrock": "3.1078.0",
"@aws-sdk/client-bedrock-agentcore-control": "3.1078.0",
"@aws-sdk/client-cloudformation": "3.1078.0",
"@aws-sdk/client-cognito-identity-provider": "3.1078.0",
"@aws-sdk/client-dynamodb": "3.1078.0",
"@aws-sdk/client-secrets-manager": "3.1078.0",
"@aws-sdk/lib-dynamodb": "3.1078.0",
"commander": "^14.0.3"
},
"resolutions": {},
"main": "lib/index.js",
"license": "MIT-0",
"version": "0.0.0",
"jest": {
"coverageProvider": "v8",
"testMatch": [
"<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coverageThreshold": {
"global": {
"branches": 84,
"functions": 78,
"lines": 68,
"statements": 68
}
},
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"transform": {
"^.+\\.[t]sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.jest.json"
}
]
}
},
"types": "lib/index.d.ts",
"private": true
}