-
Notifications
You must be signed in to change notification settings - Fork 3
/
.projenrc.js
53 lines (47 loc) · 1.27 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
44
45
46
47
48
49
50
51
52
53
const { awscdk } = require('projen');
const { UpgradeDependenciesSchedule } = require('projen/lib/javascript');
const AUTOMATION_TOKEN = 'PROJEN_GITHUB_TOKEN';
const project = new awscdk.AwsCdkConstructLibrary({
authorAddress: 'stefan.freitag@udo.edu',
authorName: 'Stefan Freitag',
description: 'A simple AWS budget notifier.',
cdkVersion: '2.134.0',
name: 'aws_budget_notifier',
repository: 'https://github.com/stefanfreitag/cdk-budget-notifier.git',
catalog: {
twitter: 'stefanfreitag',
announce: false,
},
depsUpgradeOptions: {
workflowOptions: {
schedule: UpgradeDependenciesSchedule.MONTHLY,
secret: AUTOMATION_TOKEN,
},
},
defaultReleaseBranch: 'master',
codeCov: true,
dependabot: false,
antitamper: false,
keywords: [
'aws',
'cdk',
'budget',
],
publishToMaven: {
javaPackage: 'io.github.stefanfreitag.cdk.budgetnotifier',
mavenArtifactId: 'cdkBudgetNotifier',
mavenGroupId: 'io.github.stefanfreitag',
},
publishToPypi: {
module: 'cdk_budget_notifier',
distName: 'cdk-budget-notifier',
},
jsiiVersion: '5.x',
jest: {
jestVersion: '^29',
},
typescriptVersion: '5.3.3',
});
project.gitignore.addPatterns('.history/');
project.npmignore.addPatterns('.history/');
project.synth();