-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
32 lines (31 loc) · 925 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
27
28
29
30
31
32
const { awscdk } = require('projen');
const { Stability } = require('projen/lib/cdk');
const { NpmAccess } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkConstructLibrary({
author: 'ODF Data',
authorUrl: 'https://odfdata.com',
jsiiFqn: 'projen.AwsCdkConstructLibrary',
cdkVersion: '2.54.0',
defaultReleaseBranch: 'master',
name: '@odfdata/blockchain-listener',
repositoryUrl: 'https://github.com/odfdata/blockchain-listener.git',
authorOrganization: true,
releaseToNpm: true,
npmAccess: NpmAccess.PUBLIC,
description: 'The AWS Constructor to create a Blockchain Listener using AWS Fargate and Event Bridge',
stability: Stability.STABLE,
gitignore: ['.idea/'],
majorVersion: 1,
keywords: [
'aws',
'aws-cdk',
'awscdk',
'blockchain',
'cdk',
'blockchain-listener',
'aws-ecs',
'aws-event-bridge',
],
depsUpgrade: false,
});
project.synth();