-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
156 lines (156 loc) · 4.27 KB
/
Copy pathpackage.json
File metadata and controls
156 lines (156 loc) · 4.27 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "cdk-docker-image-deployment",
"description": "This module allows you to copy docker image assets to a repository you control. This can be necessary if you want to build a Docker image in one CDK app and consume it in a different app or outside the CDK.",
"repository": {
"type": "git",
"url": "https://github.com/cdklabs/cdk-docker-image-deployment.git"
},
"scripts": {
"build": "projen build",
"bump": "projen bump",
"bump:releasable-commits": "projen bump:releasable-commits",
"clobber": "projen clobber",
"compat": "projen compat",
"compile": "projen compile",
"default": "projen default",
"docgen": "projen docgen",
"eject": "projen eject",
"eslint": "projen eslint",
"package": "projen package",
"package-all": "projen package-all",
"package:dotnet": "projen package:dotnet",
"package:java": "projen package:java",
"package:js": "projen package:js",
"package:python": "projen package:python",
"post-compile": "projen post-compile",
"post-upgrade": "projen post-upgrade",
"pre-compile": "projen pre-compile",
"release": "projen release",
"test": "projen test",
"test:watch": "projen test:watch",
"unbump": "projen unbump",
"upgrade": "projen upgrade",
"watch": "projen watch",
"projen": "projen"
},
"author": {
"name": "Parker Scanlon",
"url": "https://aws.amazon.com/",
"organization": false
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2",
"@types/jest": "^27",
"@types/node": "^16 <= 16.18.78",
"@typescript-eslint/eslint-plugin": "^8",
"@typescript-eslint/parser": "^8",
"aws-cdk-lib": "2.24.0",
"commit-and-tag-version": "^12",
"constructs": "10.5.1",
"esbuild": "^0.28.2",
"eslint": "^9",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"jest": "^27",
"jest-junit": "^17",
"jsii": "~5.9.0",
"jsii-diff": "^1.139.0",
"jsii-docgen": "^10.5.0",
"jsii-pacmak": "^1.139.0",
"jsii-rosetta": "~5.9.0",
"projen": "^0.101.31",
"ts-jest": "^27",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"aws-cdk-lib": "^2.24.0",
"constructs": "^10.5.1"
},
"dependencies": {
"@types/aws-lambda": "^8.10.162",
"aws-sdk": "^2.1693.0"
},
"bundledDependencies": [
"@types/aws-lambda",
"aws-sdk"
],
"keywords": [
"cdk"
],
"main": "lib/index.js",
"license": "Apache-2.0",
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
"stability": "stable",
"publishConfig": {
"access": "public"
},
"version": "0.0.0",
"jest": {
"coverageProvider": "v8",
"testMatch": [
"<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)",
"<rootDir>/@(projenrc)/**/*(*.)@(spec|test).ts?(x)",
"<rootDir>/@(projenrc)/**/__tests__/**/*.ts?(x)"
],
"clearMocks": true,
"collectCoverage": true,
"coverageReporters": [
"json",
"lcov",
"clover",
"cobertura",
"text"
],
"coverageDirectory": "coverage",
"coveragePathIgnorePatterns": [
"/node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/"
],
"watchPathIgnorePatterns": [
"/node_modules/"
],
"reporters": [
"default",
[
"jest-junit",
{
"outputDirectory": "test-reports"
}
]
],
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
}
},
"types": "lib/index.d.ts",
"jsii": {
"outdir": "dist",
"targets": {
"java": {
"package": "io.github.cdklabs.cdk.docker.image.deployment",
"maven": {
"groupId": "io.github.cdklabs",
"artifactId": "cdk-docker-image-deployment"
}
},
"python": {
"distName": "cdk-docker-image-deployment",
"module": "cdk_docker_image_deployment"
},
"dotnet": {
"namespace": "Cdklabs.CdkDockerImageDeployment",
"packageId": "Cdklabs.CdkDockerImageDeployment"
}
},
"tsconfig": "tsconfig.json",
"validateTsconfig": "strict"
},
"//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
}