forked from HarshRohila/cdk-secure-parameter-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.projenrc.js
26 lines (24 loc) · 1.08 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
const { awscdk } = require('projen');
const cdkVersion = '2.59.0'; /* First release of 2023 */
const project = new awscdk.AwsCdkConstructLibrary({
author: 'Harsh Rohila',
authorAddress: '[email protected]',
cdkVersion,
defaultReleaseBranch: 'master',
name: 'cdk-secure-parameter-store',
repositoryUrl: 'https://github.com/HarshRohila/cdk-secure-parameter-store.git',
bundledDeps: ['aws-sdk'],
// cdkTestDependencies: undefined, /* AWS CDK modules required for testing. */
peerDeps: ['constructs', 'aws-cdk-lib'],
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
// devDeps: ['aws-cdk-lib'],
keywords: ['cdk', 'parameter store', 'secure parameter store'],
scripts: {
'dev:deploy': "yarn build && npx cdk deploy --app='./lib/integ.default.js'",
},
gitignore: ['cdk.out'],
devDeps: [`cdk@${cdkVersion}`],
// packageName: undefined, /* The "name" in package.json. */
// release: undefined, /* Add release management to this project. */
});
project.synth();