-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
37 lines (37 loc) · 1.2 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
const { awscdk } = require('projen');
const { GithubCredentials } = require('projen/lib/github');
const { NpmAccess } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkConstructLibrary({
description: 'A CDK construct to create an AWS AppSync data source to call AWS Step Functions express workflows.',
author: 'OpsBR Software Technology Inc.',
authorAddress: 'https://opsbr.com',
authorOrganization: true,
cdkVersion: '2.52.0',
defaultReleaseBranch: 'main',
name: 'cdk-appsync-data-source-sfn-express',
repositoryUrl: 'https://github.com/opsbr/cdk-appsync-data-source-sfn-express.git',
packageName: '@opsbr/cdk-appsync-data-source-sfn-express',
license: 'Apache-2.0',
stability: 'experimental',
scripts: {
integ: 'npx cdk deploy --app ./lib/integ.default.js',
},
minNodeVersion: '18.12.1',
packageManager: 'yarn',
npmAccess: NpmAccess.PUBLIC,
keywords: [
'appsync',
'stepfunctions',
'Serverless',
'State Machine',
],
githubOptions: {
projenCredentials: GithubCredentials.fromApp(),
},
workflowGitIdentity: {
name: 'opsbr-bot',
email: '[email protected]',
},
});
project.addGitIgnore('/cdk.out/');
project.synth();