-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.projenrc.ts
48 lines (45 loc) · 1.32 KB
/
.projenrc.ts
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
import { awscdk } from 'projen';
import { NpmAccess } from 'projen/lib/javascript';
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Daniel Jonsén',
authorAddress: '[email protected]',
cdkVersion: '2.82.0',
projenVersion: '^0.86.8',
defaultReleaseBranch: 'main',
description: 'Use ghrawel to deploy an AWS API Gateway RestAPI capable of returning GitHub App installation access tokens and use AWS IAM to control access to this API.',
jsiiVersion: '~5.5.0',
name: '@catnekaise/ghrawel',
projenrcTs: true,
license: 'Apache-2.0',
repositoryUrl: 'https://github.com/catnekaise/ghrawel.git',
buildWorkflow: true,
pullRequestTemplate: false,
releaseToNpm: true,
npmProvenance: true,
npmAccess: NpmAccess.PUBLIC,
release: true,
depsUpgrade: false,
gitignore: ['.idea'],
githubOptions: {
pullRequestLint: true,
mergify: false,
},
publishToNuget: {
dotNetNamespace: 'Catnekaise.CDK.Ghrawel',
packageId: 'Catnekaise.CDK.Ghrawel',
},
publishToPypi: {
distName: 'catnekaise.ghrawel',
module: 'catnekaise_ghrawel',
},
keywords: [
'github',
'github-actions',
'aws-iam',
'github-app',
'api-gateway',
],
});
project.addDevDeps('@catnekaise/cdk-iam-utilities@^0.0.30');
project.addPeerDeps('@catnekaise/cdk-iam-utilities@^0.0.30');
project.synth();