-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.29 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@taimos/cdk-construct-gitlab-variable",
"version": "1.1.0",
"description": "An AWS CDK Construct that creates GITLAB CI/CD variables from SecretsManager Secrets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf dist doc 'lib/lambda.zip' 'lib/**/*.js' 'lib/**/*.d.ts' 'tst/**/*.js' 'tst/**/*.d.ts'",
"test": "jest",
"test:watch": "jest --watch",
"doc": "typedoc --excludeExternals --mode file --out doc lib/",
"build": "npm-run-all clean build:lambda build:jsii test",
"build:jsii": "jsii",
"build:lambda": "npm ci --prefix lambda/ && npm run build --prefix lambda/",
"package": "npm-run-all build doc && jsii-pacmak",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"version": "npm run changelog && git add CHANGELOG.md"
},
"jsii": {
"outdir": "dist",
"targets": {
"python": {
"distName": "taimos.cdk-construct-gitlab-variable",
"module": "taimos.cdk_construct_gitlab_variable"
}
}
},
"keywords": [
"cdk",
"aws-cdk",
"construct",
"gitlab",
"ci",
"cd"
],
"author": {
"email": "thorsten.hoeger@taimos.de",
"name": "Thorsten Hoeger",
"url": "https://www.taimos.de"
},
"awscdkio": {
"twitter": "hoegertn"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/taimos/cdk-construct-gitlab-variable"
},
"devDependencies": {
"@aws-cdk/assert": "1.49.1",
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"concurrently": "^5.2.0",
"npm-run-all": "^4.1.5",
"jest": "^26.1.0",
"rimraf": "^3.0.2",
"jsii": "^1.8.0",
"jsii-pacmak": "^1.8.0",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.6"
},
"dependencies": {
"constructs": "3.0.4",
"@aws-cdk/aws-cloudformation": "1.49.1",
"@aws-cdk/aws-lambda": "1.49.1",
"@aws-cdk/aws-secretsmanager": "1.49.1",
"@aws-cdk/core": "1.49.1",
"@aws-cdk/custom-resources": "1.49.1"
},
"peerDependencies": {
"constructs": "3.0.4",
"@aws-cdk/aws-cloudformation": "1.49.1",
"@aws-cdk/aws-lambda": "1.49.1",
"@aws-cdk/aws-secretsmanager": "1.49.1",
"@aws-cdk/core": "1.49.1",
"@aws-cdk/custom-resources": "1.49.1"
}
}