@pipeline-builder/pipeline-events 0.0.1

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,159 @@
1
+ {
2
+ "name": "@pipeline-builder/pipeline-events",
3
+ "description": "AWS Lambda handler for Pipeline Builder that ingests CodePipeline state-change events from EventBridge and forwards normalized payloads to the reporting service.",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/mwashburn160/pipeline-builder.git"
7
+ },
8
+ "devDependencies": {
9
+ "@aws-sdk/client-codepipeline": "3.1101.0",
10
+ "@aws-sdk/client-secrets-manager": "3.1101.0",
11
+ "@jest/globals": "30.4.1",
12
+ "@stylistic/eslint-plugin": "^2",
13
+ "@types/aws-lambda": "8.10.162",
14
+ "@types/node": "26.1.2",
15
+ "@typescript-eslint/eslint-plugin": "^8",
16
+ "@typescript-eslint/parser": "^8",
17
+ "@typescript/native": "npm:typescript@^7.0.2",
18
+ "eslint": "^9",
19
+ "eslint-import-resolver-typescript": "^4.4.4",
20
+ "eslint-plugin-import": "^2.32.0",
21
+ "jest": "30.4.2",
22
+ "jest-junit": "^17",
23
+ "ts-jest": "29.4.12",
24
+ "typescript": "npm:@typescript/typescript6@^6.0.2"
25
+ },
26
+ "keywords": [
27
+ "ci-cd",
28
+ "cicd",
29
+ "continuous-delivery",
30
+ "devops",
31
+ "self-service",
32
+ "platform-engineering",
33
+ "internal-developer-platform",
34
+ "developer-platform",
35
+ "aws",
36
+ "aws-cdk",
37
+ "cdk",
38
+ "codepipeline",
39
+ "codebuild",
40
+ "cloudformation",
41
+ "pipeline",
42
+ "pipeline-as-code",
43
+ "infrastructure-as-code",
44
+ "iac",
45
+ "compliance",
46
+ "policy-as-code",
47
+ "governance",
48
+ "golden-paths",
49
+ "multi-tenant",
50
+ "rbac",
51
+ "ai",
52
+ "ai-pipeline-generation",
53
+ "llm",
54
+ "bedrock",
55
+ "plugins",
56
+ "plugin-marketplace",
57
+ "containerized",
58
+ "docker",
59
+ "kubernetes",
60
+ "typescript",
61
+ "cli"
62
+ ],
63
+ "engines": {
64
+ "node": ">= 24.14.0"
65
+ },
66
+ "devEngines": {
67
+ "packageManager": {
68
+ "name": "pnpm",
69
+ "version": ">=10",
70
+ "onFail": "ignore"
71
+ }
72
+ },
73
+ "main": "lib/index.js",
74
+ "license": "Apache-2.0",
75
+ "homepage": "https://mwashburn160.github.io/pipeline-builder/",
76
+ "publishConfig": {
77
+ "access": "public",
78
+ "registry": "https://registry.npmjs.org/"
79
+ },
80
+ "version": "0.0.1",
81
+ "bugs": {
82
+ "url": "https://github.com/mwashburn160/pipeline-builder/issues"
83
+ },
84
+ "jest": {
85
+ "coverageProvider": "v8",
86
+ "testMatch": [
87
+ "<rootDir>/@(src|test)/**/*(*.)@(spec|test).ts?(x)",
88
+ "<rootDir>/@(src|test)/**/__tests__/**/*.ts?(x)"
89
+ ],
90
+ "clearMocks": true,
91
+ "collectCoverage": true,
92
+ "coverageReporters": [
93
+ "json",
94
+ "lcov",
95
+ "clover",
96
+ "cobertura",
97
+ "text"
98
+ ],
99
+ "coverageDirectory": "coverage",
100
+ "coveragePathIgnorePatterns": [
101
+ "/node_modules/"
102
+ ],
103
+ "testPathIgnorePatterns": [
104
+ "/node_modules/"
105
+ ],
106
+ "watchPathIgnorePatterns": [
107
+ "/node_modules/"
108
+ ],
109
+ "reporters": [
110
+ "default",
111
+ [
112
+ "jest-junit",
113
+ {
114
+ "outputDirectory": "test-reports"
115
+ }
116
+ ]
117
+ ],
118
+ "transform": {
119
+ "^.+\\.[t]sx?$": [
120
+ "ts-jest",
121
+ {
122
+ "useESM": true,
123
+ "tsconfig": "tsconfig.dev.json",
124
+ "diagnostics": {
125
+ "ignoreCodes": [
126
+ 151002
127
+ ]
128
+ }
129
+ }
130
+ ]
131
+ },
132
+ "extensionsToTreatAsEsm": [
133
+ ".ts",
134
+ ".tsx"
135
+ ],
136
+ "moduleNameMapper": {
137
+ "^uuid$": "<rootDir>/../../jest-uuid-stub.js",
138
+ "^(\\.{1,2}/.*)\\.js$": "$1",
139
+ "^@aws-sdk/client-sqs$": "<rootDir>/test/aws-sdk-stub.js",
140
+ "^@aws-sdk/client-codecommit$": "<rootDir>/test/aws-sdk-stub.js"
141
+ }
142
+ },
143
+ "types": "lib/index.d.ts",
144
+ "type": "module",
145
+ "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm dlx projen\".",
146
+ "scripts": {
147
+ "build": "pnpm dlx projen build",
148
+ "compile": "pnpm dlx projen compile",
149
+ "default": "pnpm dlx projen default",
150
+ "eslint": "pnpm dlx projen eslint",
151
+ "package": "pnpm dlx projen package",
152
+ "post-compile": "pnpm dlx projen post-compile",
153
+ "pre-compile": "pnpm dlx projen pre-compile",
154
+ "test": "pnpm dlx projen test",
155
+ "test:watch": "pnpm dlx projen test:watch",
156
+ "watch": "pnpm dlx projen watch",
157
+ "projen": "pnpm dlx projen"
158
+ }
159
+ }