-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.projenrc.js
43 lines (42 loc) · 1.12 KB
/
.projenrc.js
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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Amazon Web Services',
authorName: 'Amazon Web Services',
authorUrl: 'https://aws.amazon.com',
authorAddress: '',
authorOrganization: true,
keywords: [
'aws',
'cdk',
'powertools',
'python',
'layer',
'lambda',
'devax',
'typescript',
'nodejs',
],
jsiiVersion: '5.4.5',
typescriptVersion: '5.4.5',
projenVersion: '0.84.13',
devDeps: ['jsii-pacmak@1.101.0', 'publib@0.2.866'],
cdkVersion: '2.150.0',
defaultReleaseBranch: 'main',
minNodeVersion: '18.18.2',
majorVersion: 3,
name: 'cdk-aws-lambda-powertools-layer',
repositoryUrl:
'https://github.com/awslabs/cdk-aws-lambda-powertools-layer.git',
description: 'Powertools for AWS Lambda layer for python and typescript',
jestOptions: {
jestVersion: '29',
},
github: false,
publishToPypi: {
distName: 'cdk-aws-lambda-powertools-layer',
module: 'cdk_aws_lambda_powertools_layer',
},
license: 'MIT-0',
copyrightOwner: 'Amazon.com, Inc. or its affiliates. All Rights Reserved.',
});
project.synth();