-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2 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
{
"name": "@alliander-opensource/aws-jwt-sts",
"license": "MIT",
"version": "0.3.8",
"author": {
"name": "Alliander NV"
},
"repository": {
"type": "git",
"url": "https://github.com/alliander-opensource/aws-jwt-sts.git"
},
"main": "dist/index.js",
"files": [
"dist/*",
".jsii"
],
"types": "dist/index.d.ts",
"keywords": [
"awscdk"
],
"jsii": {
"tsc": {
"rootDir": "src",
"outDir": "dist"
},
"outdir": "jsii",
"versionFormat": "full",
"targets": {
"python": {
"distName": "alliander-opensource-aws-jwt-sts",
"module": "alliander_opensource.aws_jwt_sts"
}
}
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "./build.sh",
"watch": "tsc -w",
"test": "npx jest --coverage",
"cdk": "cdk",
"lint": "npx oxlint ."
},
"devDependencies": {
"@types/aws-lambda": "^8.10.161",
"@types/jest": "^30.0.0",
"@types/node": "^25.8.0",
"aws-cdk": "^2.1122.0",
"aws-cdk-lib": "2.254.0",
"aws-sdk-client-mock": "^4.1.0",
"aws-sdk-client-mock-jest": "^4.1.0",
"constructs": "10.6.0",
"esbuild": "^0.28.0",
"jest": "^30.4.2",
"jsii": "^5.9.41",
"jwt-decode": "^4.0.0",
"oxlint": "^1.65.0",
"ts-jest": "^29.4.9",
"ts-node": "^10.9.2",
"typescript": "~6.0.3"
},
"peerDependencies": {
"aws-cdk-lib": "2.254.0",
"constructs": "^10.6.0"
},
"dependencies": {
"@aws-lambda-powertools/logger": "^2.33.0",
"@aws-sdk/client-kms": "^3.1048.0",
"@aws-sdk/client-s3": "^3.1048.0",
"@types/aws-lambda": "^8.10.161",
"@types/jsrsasign": "^10.5.15",
"base64url": "^3.0.1",
"jsrsasign": "^11.1.3"
},
"overrides": {
"jest": "$jest",
"diff": "8.0.3",
"brace-expansion@<1.1.13": "1.1.13"
},
"bundleDependencies": [
"@aws-lambda-powertools/logger",
"@aws-sdk/client-kms",
"@aws-sdk/client-s3",
"@types/aws-lambda",
"@types/jsrsasign",
"base64url",
"jsrsasign"
]
}