forked from cloudcomponents/cdk-constructs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.77 KB
/
package.json
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
{
"name": "@cloudcomponents/cdk-cloudfront-authorization",
"version": "1.42.0",
"description": "CloudFront with Cognito authentication using Lambda@Edge",
"license": "MIT",
"author": {
"name": "hupe1980",
"url": "https://github.com/hupe1980"
},
"awscdkio": {
"twitter": "hupe1980"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudcomponents/cdk-constructs.git",
"directory": "packages/cdk-cloudfront-authorization"
},
"homepage": "https://github.com/cloudcomponents/cdk-constructs",
"keywords": [
"aws",
"cdk",
"awscdk",
"@cloudcomponents"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
".jsii"
],
"scripts": {
"build": "cdkdx build",
"watch": "cdkdx build -w",
"test": "cdkdx test",
"lint": "cdkdx lint",
"upgrade:cdk": "cdkdx upgrade-cdk",
"package": "cdkdx package",
"docgen": "cdkdx docgen",
"release:npm": "cdkdx release npm",
"release:pypi": "cdkdx release pypi"
},
"jsii": {
"outdir": "dist",
"tsc": {
"outDir": "lib",
"rootDir": "src"
},
"excludeTypescript": [
"src/lambdas",
"src/**/__tests__"
],
"targets": {
"python": {
"distName": "cloudcomponents.cdk-cloudfront-authorization",
"module": "cloudcomponents.cdk_cloudfront_authorization"
}
}
},
"peerDependencies": {
"@aws-cdk/aws-certificatemanager": "^1.121.0",
"@aws-cdk/aws-cloudfront": "^1.121.0",
"@aws-cdk/aws-cloudfront-origins": "^1.121.0",
"@aws-cdk/aws-cognito": "^1.121.0",
"@aws-cdk/aws-iam": "^1.121.0",
"@aws-cdk/aws-lambda": "^1.121.0",
"@aws-cdk/aws-s3": "^1.121.0",
"@aws-cdk/core": "^1.121.0",
"@aws-cdk/custom-resources": "^1.121.0",
"@cloudcomponents/cdk-lambda-at-edge-pattern": "^1.41.0",
"constructs": "^3.2.0"
},
"dependencies": {
"@aws-cdk/aws-certificatemanager": "^1.121.0",
"@aws-cdk/aws-cloudfront": "^1.121.0",
"@aws-cdk/aws-cloudfront-origins": "^1.121.0",
"@aws-cdk/aws-cognito": "^1.121.0",
"@aws-cdk/aws-iam": "^1.121.0",
"@aws-cdk/aws-lambda": "^1.121.0",
"@aws-cdk/aws-s3": "^1.121.0",
"@aws-cdk/core": "^1.121.0",
"@aws-cdk/custom-resources": "^1.121.0",
"@cloudcomponents/cdk-lambda-at-edge-pattern": "^1.41.0"
},
"devDependencies": {
"@aws-cdk/assert": "^1.121.0",
"@types/cookie": "^0.4.0",
"@types/jsonwebtoken": "^8.5.1",
"aws-local-testing-library": "^0.0.7",
"aws-sdk": "^2.974.0",
"axios": "^0.21.1",
"axios-retry": "^3.1.9",
"cookie": "^0.4.1",
"jest-cdk-snapshot": "^1.4.2",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^1.12.3",
"ts-jest": "^27.0.1"
},
"externals": [
"aws-sdk"
],
"publishConfig": {
"access": "public"
}
}