-
Notifications
You must be signed in to change notification settings - Fork 16
/
.projenrc.ts
85 lines (76 loc) · 2.11 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
import { AwsCdkConstructLibrary } from "@pepperize/projen-awscdk-construct";
import { awscdk, javascript } from "projen";
const project = new AwsCdkConstructLibrary({
author: "Patrick Florek",
authorAddress: "[email protected]",
license: "MIT",
copyrightOwner: "Pepperize UG (haftungsbeschränkt)",
cdkVersion: "2.37.1",
name: "@pepperize/cdk-organizations",
description: "Manage AWS organizations, organizational units (OU), accounts and service control policies (SCP).",
keywords: [
"aws",
"cdk",
"organizations",
"organization-principal",
"organizational-unit",
"account",
"account-management",
"policies",
"service-control-policy",
"delegated-administrator",
"trusted-service",
"trusted-access",
"tag-resources",
],
repositoryUrl: "https://github.com/pepperize/cdk-organizations.git",
projenrcTs: true,
deps: ["pascal-case"],
bundledDeps: ["pascal-case"],
devDeps: [
"@pepperize/projen-awscdk-construct@~0.0.730",
"@types/aws-lambda",
"@types/jest",
"@types/sinon",
"aws-lambda",
"aws-sdk",
"aws-sdk-mock",
"cdk-nag",
"jest-cdk-snapshot",
"sinon",
],
versionrcOptions: {
types: [{ type: "chore", section: "Chore", hidden: false }],
},
defaultReleaseBranch: "main",
releaseToNpm: true,
npmAccess: javascript.NpmAccess.PUBLIC,
publishToNuget: {
dotNetNamespace: "Pepperize.CDK",
packageId: "Pepperize.CDK.Organizations",
},
publishToPypi: {
distName: "pepperize.cdk-organizations",
module: "pepperize_cdk_organizations",
},
publishToMaven: {
mavenEndpoint: "https://s01.oss.sonatype.org",
mavenGroupId: "com.pepperize",
mavenArtifactId: "cdk-organizations",
javaPackage: "com.pepperize.cdk.organizations",
},
gitpod: true,
lambdaOptions: {
runtime: awscdk.LambdaRuntime.NODEJS_18_X,
bundlingOptions: {
externals: [],
},
},
});
project.gitpod?.addCustomTask({
name: "setup",
init: "yarn install && npx projen build",
command: "npx projen watch",
});
project.gitpod?.addVscodeExtensions("dbaeumer.vscode-eslint");
project.synth();