-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 4.05 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 4.05 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@abca/cdk",
"version": "0.0.0",
"private": true,
"description": "ABCA CDK application",
"license": "MIT-0",
"_cedar_parity_pin": "DO NOT BUMP @cedar-policy/cedar-wasm IN ISOLATION. The Python cedarpy binding (agent/pyproject.toml) and this WASM binding share a Rust core and must move together. Drift between bindings can produce divergent (decision, matching_rule_ids) on the same (policy, input). See docs/design/CEDAR_HITL_GATES.md §15.6 (decision #23). The contracts/cedar-parity/ golden fixtures are how CI catches divergence; bumping either side requires bumping the other AND refreshing the fixtures in the same commit.",
"scripts": {
"compile": "tsc --build tsconfig.json",
"watch": "tsc --build -w tsconfig.json",
"test": "jest",
"eslint": "eslint --fix src test",
"synth": "npx cdk synth",
"synth:quiet": "npx cdk synth -q"
},
"dependencies": {
"@aws-cdk/aws-bedrock-alpha": "2.260.0-alpha.0",
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/client-bedrock-agentcore": "^3.1078.0",
"@aws-sdk/client-bedrock-runtime": "^3.1078.0",
"@aws-sdk/client-dynamodb": "^3.1078.0",
"@aws-sdk/client-ecs": "^3.1078.0",
"@aws-sdk/client-lambda": "^3.1078.0",
"@aws-sdk/client-s3": "^3.1078.0",
"@aws-sdk/client-secrets-manager": "^3.1078.0",
"@aws-sdk/credential-provider-node": "^3.972.61",
"@aws-sdk/lib-dynamodb": "^3.1078.0",
"@aws-sdk/s3-presigned-post": "^3.1078.0",
"@aws-sdk/s3-request-presigner": "^3.1078.0",
"@aws/durable-execution-sdk-js": "^2.0.0",
"@cedar-policy/cedar-wasm": "4.8.2",
"@smithy/protocol-http": "^5.5.5",
"@smithy/signature-v4": "^5.6.1",
"aws-cdk-lib": "^2.260.0",
"cdk-nag": "^2.38.2",
"constructs": "^10.6.0",
"js-yaml": "^4.1.1",
"pdf-parse": "^2.4.5",
"semver": "^7.8.5",
"ulid": "^3.0.2",
"ws": "^8.21.0"
},
"devDependencies": {
"@aws-cdk/integ-runner": "2.202.1",
"@aws-cdk/integ-tests-alpha": "2.260.0-alpha.0",
"@cdklabs/eslint-plugin": "^2",
"@stylistic/eslint-plugin": "^5",
"@types/aws-lambda": "^8.10.162",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26",
"@types/pdf-parse": "^1.1.5",
"@types/semver": "^7.7.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"aws-cdk": "^2",
"esbuild": "^0.28.1",
"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",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"resolutions": {},
"engines": {
"node": ">= 20.x <= 24.x"
},
"jest": {
"cacheDirectory": "<rootDir>/.jest-cache",
"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": 82,
"functions": 94,
"lines": 91,
"statements": 91
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/integ/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"<rootDir>/test/integ/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"setupFiles": [
"<rootDir>/test/setup/disable-bundling.ts"
],
"setupFilesAfterEnv": [
"aws-cdk-lib/testhelpers/jest-autoclean"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"transform": {
"^.+\\.[t]sx?$": [
"ts-jest",
{
"tsconfig": "tsconfig.jest.json"
}
]
}
}
}