-
Notifications
You must be signed in to change notification settings - Fork 9
/
.projenrc.js
27 lines (25 loc) · 1.05 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
const { awscdk } = require('projen');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Cameron Magee',
authorAddress: '[email protected]',
copyrightOwner: 'Amazon.com, Inc. or its affiliates. All Rights Reserved.',
cdkVersion: '2.158.0',
constructsVersion: '10.3.0',
defaultReleaseBranch: 'main',
name: 'cdk-image-pipeline',
repositoryUrl: 'https://github.com/aws-samples/cdk-image-pipeline.git',
description: 'Quickly deploy a complete EC2 Image Builder Image Pipeline using CDK',
packageName: 'cdk-image-pipeline',
publishToPypi: {
distName: 'cdk-image-pipeline',
module: 'cdk_image_pipeline',
},
license: 'Apache-2.0',
pullRequestTemplateContents: ['# Fixes', ' ', ' ', 'By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.'],
releaseToNpm: true,
devDeps: ['@types/[email protected]'],
});
project.addPeerDeps('[email protected]');
project.addDevDeps('[email protected]');
project.addDevDeps('[email protected]');
project.synth();