-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
31 lines (29 loc) · 1.03 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
const { cdk8s } = require('projen');
const project = new cdk8s.ConstructLibraryCdk8s({
author: 'Hunter-Thompson',
authorAddress: 'aatman@auroville.org.in',
cdk8sVersion: '2.2.74',
constructsVersion: '10.0.5',
defaultReleaseBranch: 'main',
name: 'cdk8s-various',
repositoryUrl: 'https://github.com/opencdk8s/cdk8s-various.git',
keywords: ['cdk8s', 'cdk'],
npmAccess: 'public',
publishToGo: {
gitUserName: 'Hunter-Thompson',
gitUserEmail: 'aatman@auroville.org.in',
moduleName: 'github.com/opencdk8s/cdk8s-various-go',
},
depsUpgrade: true,
dependabot: false,
pullRequestTemplate: false,
codeCov: true,
clobber: false,
readme: true,
mergify: true,
// deps: [], /* Runtime dependencies of this module. */
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: [], /* Build dependencies for this module. */
// packageName: undefined, /* The "name" in package.json. */
});
project.synth();