-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.projenrc.ts
More file actions
32 lines (31 loc) · 992 Bytes
/
.projenrc.ts
File metadata and controls
32 lines (31 loc) · 992 Bytes
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
import { typescript, github } from 'projen';
import { NpmAccess } from 'projen/lib/javascript';
const project = new typescript.TypeScriptProject({
defaultReleaseBranch: 'main',
name: '@superluminar-io/transit-gw',
description: 'A lean, opinionated blueprint to deploy Transit Gateway in an AWS Organization.',
projenrcTs: true,
bin: {
'transit-gw': 'bin/transit-gw',
},
license: 'MIT',
authorOrganization: true,
authorUrl: 'https://superluminar.io',
authorName: 'superluminar GmbH',
releaseToNpm: true,
release: true,
package: true,
npmAccess: NpmAccess.PUBLIC,
repository: 'git+https://github.com/superluminar-io/transit-gw.git',
deps: [
'clipanion',
'typescript',
],
// devDeps: [], /* Build dependencies for this module. */
sampleCode: false,
gitignore: ['/blueprints/**/package-lock.json', '/blueprints/**/yarn.lock'],
githubOptions: {
projenCredentials: github.GithubCredentials.fromApp(),
},
});
project.synth();