-
Notifications
You must be signed in to change notification settings - Fork 1
/
.projenrc.js
26 lines (25 loc) · 1011 Bytes
/
.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
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',
stability: 'experimental',
name: '@opencdk8s/cdk8s-external-secrets',
repositoryUrl: 'https://github.com/opencdk8s/cdk8s-external-secrets.git',
publishToGo: {
gitUserName: 'Hunter-Thompson',
gitUserEmail: 'aatman@auroville.org.in',
moduleName: 'github.com/opencdk8s/cdk8s-external-secrets-go',
},
npmAccess: 'public',
mergify: false,
keywords: ['cdk8s'],
depsUpgrade: false,
// 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();