@jjrawlins/cdk-deploy-pr-github-action 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,164 @@
1
+ {
2
+ "name": "@jjrawlins/cdk-deploy-pr-github-action",
3
+ "description": "A projen construct that generates GitHub Actions workflows for CDK deployments with GitHub Environments, parallel stages, versioned assemblies, and manual rollback.",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/JaysonRawlins/cdk-deploy-pr-github-action.git"
7
+ },
8
+ "scripts": {
9
+ "build": "npx projen build",
10
+ "bump": "npx projen bump",
11
+ "clobber": "npx projen clobber",
12
+ "compat": "npx projen compat",
13
+ "compile": "npx projen compile",
14
+ "default": "npx projen default",
15
+ "docgen": "npx projen docgen",
16
+ "eject": "npx projen eject",
17
+ "eslint": "npx projen eslint",
18
+ "package": "npx projen package",
19
+ "package-all": "npx projen package-all",
20
+ "package:dotnet": "npx projen package:dotnet",
21
+ "package:go": "npx projen package:go",
22
+ "package:js": "npx projen package:js",
23
+ "package:python": "npx projen package:python",
24
+ "post-compile": "npx projen post-compile",
25
+ "post-upgrade": "npx projen post-upgrade",
26
+ "pre-compile": "npx projen pre-compile",
27
+ "release": "npx projen release",
28
+ "test": "npx projen test",
29
+ "test:watch": "npx projen test:watch",
30
+ "unbump": "npx projen unbump",
31
+ "upgrade": "npx projen upgrade",
32
+ "watch": "npx projen watch",
33
+ "projen": "npx projen"
34
+ },
35
+ "author": {
36
+ "name": "Jayson Rawlins",
37
+ "email": "JaysonJ.Rawlins@gmail.com",
38
+ "organization": false
39
+ },
40
+ "devDependencies": {
41
+ "@stylistic/eslint-plugin": "^2",
42
+ "@types/jest": "^30.0.0",
43
+ "@types/node": "^25.3.1",
44
+ "@typescript-eslint/eslint-plugin": "^8",
45
+ "@typescript-eslint/parser": "^8",
46
+ "aws-cdk": "2.1029.2",
47
+ "aws-cdk-lib": "2.85.0",
48
+ "commit-and-tag-version": "^12",
49
+ "constructs": "10.0.5",
50
+ "eslint": "^9",
51
+ "eslint-import-resolver-typescript": "^4.4.4",
52
+ "eslint-plugin-import": "^2.32.0",
53
+ "jest": "^30.2.0",
54
+ "jest-junit": "^16",
55
+ "jsii": "^5.8.0",
56
+ "jsii-diff": "^1.127.0",
57
+ "jsii-docgen": "^10.5.0",
58
+ "jsii-pacmak": "^1.127.0",
59
+ "jsii-rosetta": "^5.8.0",
60
+ "projen": "^0.98.10",
61
+ "ts-jest": "^29.4.6",
62
+ "ts-node": "^10.9.2",
63
+ "typescript": "^5.9.3"
64
+ },
65
+ "peerDependencies": {
66
+ "aws-cdk-lib": "^2.85.0",
67
+ "constructs": ">=10.0.5 <11.0.0"
68
+ },
69
+ "resolutions": {
70
+ "brace-expansion": "1.1.12",
71
+ "form-data": "^4.0.4",
72
+ "@eslint/plugin-kit": "^0.3.4",
73
+ "aws-cdk-lib": ">=2.85.0 <3.0.0",
74
+ "constructs": "10.0.5",
75
+ "projen": ">=0.98.10 <1.0.0"
76
+ },
77
+ "keywords": [
78
+ "action",
79
+ "aws",
80
+ "cdk",
81
+ "deploy",
82
+ "github",
83
+ "github-environments",
84
+ "pipeline"
85
+ ],
86
+ "engines": {
87
+ "node": ">=20.0.0"
88
+ },
89
+ "main": "lib/index.js",
90
+ "license": "Apache-2.0",
91
+ "publishConfig": {
92
+ "access": "public"
93
+ },
94
+ "version": "0.0.0",
95
+ "jest": {
96
+ "coverageProvider": "v8",
97
+ "testMatch": [
98
+ "<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
99
+ "<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)",
100
+ "<rootDir>/@(projenrc)/**/*(*.)@(spec|test).ts?(x)",
101
+ "<rootDir>/@(projenrc)/**/__tests__/**/*.ts?(x)"
102
+ ],
103
+ "clearMocks": true,
104
+ "collectCoverage": true,
105
+ "coverageReporters": [
106
+ "json",
107
+ "lcov",
108
+ "clover",
109
+ "cobertura",
110
+ "text"
111
+ ],
112
+ "coverageDirectory": "coverage",
113
+ "coveragePathIgnorePatterns": [
114
+ "/node_modules/"
115
+ ],
116
+ "testPathIgnorePatterns": [
117
+ "/node_modules/"
118
+ ],
119
+ "watchPathIgnorePatterns": [
120
+ "/node_modules/"
121
+ ],
122
+ "reporters": [
123
+ "default",
124
+ [
125
+ "jest-junit",
126
+ {
127
+ "outputDirectory": "test-reports"
128
+ }
129
+ ]
130
+ ],
131
+ "transform": {
132
+ "^.+\\.[t]sx?$": [
133
+ "ts-jest",
134
+ {
135
+ "tsconfig": "tsconfig.dev.json"
136
+ }
137
+ ]
138
+ }
139
+ },
140
+ "types": "lib/index.d.ts",
141
+ "stability": "stable",
142
+ "jsii": {
143
+ "outdir": "dist",
144
+ "targets": {
145
+ "python": {
146
+ "distName": "jjrawlins-cdk-deploy-pr-github-action",
147
+ "module": "jjrawlins_cdk_deploy_pr_github_action"
148
+ },
149
+ "dotnet": {
150
+ "namespace": "JJRawlins.CdkDeployPrGithubAction",
151
+ "packageId": "JJRawlins.CdkDeployPrGithubAction"
152
+ },
153
+ "go": {
154
+ "moduleName": "github.com/JaysonRawlins/cdk-deploy-pr-github-action",
155
+ "packageName": "cdkdeployprgithubaction"
156
+ }
157
+ },
158
+ "tsc": {
159
+ "outDir": "lib",
160
+ "rootDir": "src"
161
+ }
162
+ },
163
+ "//": "~~ Generated by projen. To modify, edit .projenrc.ts and run \"npx projen\"."
164
+ }