-
Notifications
You must be signed in to change notification settings - Fork 0
/
.projenrc.js
36 lines (32 loc) · 1.18 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
const { awscdk } = require('projen');
const { NpmAccess } = require('projen/lib/javascript');
const project = new awscdk.AwsCdkConstructLibrary({
stability: 'stable',
author: 'cloudxs GmbH',
authorAddress: 'https://www.cloudxs.ch',
authorOrganization: true,
majorVersion: 1,
cdkVersion: '2.1.0',
defaultReleaseBranch: 'main',
name: '@cloudxs/cdk-iot-wireless',
repositoryUrl: 'https://github.com/cloudxsgmbh/cdk-iot-wireless.git',
description: 'This package contains AWS CDK L2 constructs for IoT Wireless.',
npmAccess: NpmAccess.PUBLIC,
/* deps: [
'aws-cdk-lib',
'constructs',
], */
/* bundledDeps: [
'esbuild',
], */
keywords: ['aws', 'cdk', 'cdkv2', 'iot', 'wireless', 'lorawan', 'lambda', 'gateway'],
// 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. */
/* publishToPypi: {
distName: 'cdk-iot-wireless',
module: 'cdk-iot-wireless',
}, */
});
project.synth();