-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.projenrc.js
29 lines (27 loc) · 948 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
const { typescript } = require('projen');
const project = new typescript.TypeScriptProject({
defaultReleaseBranch: 'main',
name: '@dynamic-labs/passport-dynamic',
license: 'MIT',
copyrightOwner: 'Dynamic Labs',
deps: ['passport-strategy', 'jsonwebtoken@^9.0.2'],
// description: undefined, /* The description is just a string that helps people understand the purpose of the package. */
devDeps: [
'supertest@^6.2.3',
'@types/supertest',
'@types/passport',
'@types/passport-strategy',
'@types/jsonwebtoken@^9.0.2',
'@types/[email protected]',
'keypair',
'express',
'passport',
] /* Build dependencies for this module. */,
// packageName: undefined, /* The "name" in package.json. */
releaseToNpm: true,
repository: 'https://github.com/dynamic-labs/passport-dynamic.git',
npmDistTag: 'latest',
npmRegistryUrl: 'https://registry.npmjs.org',
packageManager: 'npm',
});
project.synth();