cdk-cost-analyzer 0.1.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.
Files changed (228) hide show
  1. package/.cdk-cost-analyzer-cache/metadata.json +12 -0
  2. package/.gitlab-ci.yml +214 -0
  3. package/.husky/pre-commit +12 -0
  4. package/.kiro/hooks/accessibility-audit.kiro.hook +18 -0
  5. package/.kiro/hooks/api-schema-validation.kiro.hook +21 -0
  6. package/.kiro/hooks/auto-test-on-save.kiro.hook +19 -0
  7. package/.kiro/hooks/cdk-synth-on-change.kiro.hook +20 -0
  8. package/.kiro/hooks/code-coverage-check.kiro.hook +14 -0
  9. package/.kiro/hooks/commit-message-helper.kiro.hook +14 -0
  10. package/.kiro/hooks/dependency-update-check.kiro.hook +14 -0
  11. package/.kiro/hooks/env-file-validation.kiro.hook +18 -0
  12. package/.kiro/hooks/lint-and-format-on-save.kiro.hook +21 -0
  13. package/.kiro/hooks/mcp-config-validation.kiro.hook +17 -0
  14. package/.kiro/hooks/mcp-server-test.kiro.hook +14 -0
  15. package/.kiro/hooks/performance-analysis.kiro.hook +14 -0
  16. package/.kiro/hooks/readme-spell-check.kiro.hook +14 -0
  17. package/.kiro/hooks/security-scan-on-dependency-change.kiro.hook +21 -0
  18. package/.kiro/hooks/translation-update.kiro.hook +18 -0
  19. package/.kiro/hooks/update-documentation.kiro.hook +18 -0
  20. package/.kiro/settings/mcp.json +20 -0
  21. package/.kiro/specs/cdk-cost-analyzer/design.md +620 -0
  22. package/.kiro/specs/cdk-cost-analyzer/requirements.md +183 -0
  23. package/.kiro/specs/cdk-cost-analyzer/tasks.md +357 -0
  24. package/.kiro/specs/github-actions-ci/design.md +281 -0
  25. package/.kiro/specs/github-actions-ci/requirements.md +86 -0
  26. package/.kiro/specs/github-actions-ci/tasks.md +115 -0
  27. package/.kiro/specs/nlb-calculator-test-coverage/design.md +190 -0
  28. package/.kiro/specs/nlb-calculator-test-coverage/requirements.md +84 -0
  29. package/.kiro/specs/nlb-calculator-test-coverage/tasks.md +150 -0
  30. package/.kiro/specs/production-readiness/design.md +1213 -0
  31. package/.kiro/specs/production-readiness/requirements.md +312 -0
  32. package/.kiro/specs/production-readiness/tasks.md +269 -0
  33. package/.kiro/specs/repository-cleanup/design.md +283 -0
  34. package/.kiro/specs/repository-cleanup/requirements.md +74 -0
  35. package/.kiro/specs/repository-cleanup/tasks.md +64 -0
  36. package/.kiro/steering/aws-cli-best-practices.md +41 -0
  37. package/.kiro/steering/cdk-best-practices.md +49 -0
  38. package/.kiro/steering/development-standards.md +54 -0
  39. package/.kiro/steering/docker-best-practices.md +34 -0
  40. package/.kiro/steering/documentation-style.md +151 -0
  41. package/.kiro/steering/git-best-practices.md +37 -0
  42. package/.kiro/steering/mcp-best-practices.md +95 -0
  43. package/.kiro/steering/python-best-practices.md +48 -0
  44. package/.kiro/steering/react-best-practices.md +44 -0
  45. package/.kiro/steering/security-best-practices.md +41 -0
  46. package/.kiro/steering/testing-best-practices.md +59 -0
  47. package/.kiro/steering/typescript-best-practices.md +40 -0
  48. package/CHANGELOG.md +49 -0
  49. package/CONTRIBUTING.md +258 -0
  50. package/LICENSE +19 -0
  51. package/README.md +480 -0
  52. package/SECURITY.md +117 -0
  53. package/dist/api/index.d.ts +11 -0
  54. package/dist/api/index.js +65 -0
  55. package/dist/api/types.d.ts +15 -0
  56. package/dist/api/types.js +3 -0
  57. package/dist/cli/index.d.ts +2 -0
  58. package/dist/cli/index.js +262 -0
  59. package/dist/config/ConfigManager.d.ts +40 -0
  60. package/dist/config/ConfigManager.js +238 -0
  61. package/dist/config/index.d.ts +2 -0
  62. package/dist/config/index.js +19 -0
  63. package/dist/config/types.d.ts +72 -0
  64. package/dist/config/types.js +15 -0
  65. package/dist/diff/DiffEngine.d.ts +7 -0
  66. package/dist/diff/DiffEngine.js +73 -0
  67. package/dist/diff/index.d.ts +2 -0
  68. package/dist/diff/index.js +21 -0
  69. package/dist/diff/types.d.ts +20 -0
  70. package/dist/diff/types.js +3 -0
  71. package/dist/integrations/GitLabIntegration.d.ts +7 -0
  72. package/dist/integrations/GitLabIntegration.js +45 -0
  73. package/dist/integrations/index.d.ts +2 -0
  74. package/dist/integrations/index.js +21 -0
  75. package/dist/integrations/types.d.ts +11 -0
  76. package/dist/integrations/types.js +13 -0
  77. package/dist/parser/TemplateParser.d.ts +8 -0
  78. package/dist/parser/TemplateParser.js +75 -0
  79. package/dist/parser/index.d.ts +2 -0
  80. package/dist/parser/index.js +22 -0
  81. package/dist/parser/types.d.ts +30 -0
  82. package/dist/parser/types.js +3 -0
  83. package/dist/pipeline/PipelineOrchestrator.d.ts +23 -0
  84. package/dist/pipeline/PipelineOrchestrator.js +191 -0
  85. package/dist/pipeline/index.d.ts +2 -0
  86. package/dist/pipeline/index.js +19 -0
  87. package/dist/pipeline/types.d.ts +41 -0
  88. package/dist/pipeline/types.js +13 -0
  89. package/dist/pricing/CacheManager.d.ts +75 -0
  90. package/dist/pricing/CacheManager.js +195 -0
  91. package/dist/pricing/PricingClient.d.ts +17 -0
  92. package/dist/pricing/PricingClient.js +122 -0
  93. package/dist/pricing/PricingService.d.ts +16 -0
  94. package/dist/pricing/PricingService.js +149 -0
  95. package/dist/pricing/calculators/ALBCalculator.d.ts +16 -0
  96. package/dist/pricing/calculators/ALBCalculator.js +163 -0
  97. package/dist/pricing/calculators/APIGatewayCalculator.d.ts +10 -0
  98. package/dist/pricing/calculators/APIGatewayCalculator.js +177 -0
  99. package/dist/pricing/calculators/CloudFrontCalculator.d.ts +59 -0
  100. package/dist/pricing/calculators/CloudFrontCalculator.js +151 -0
  101. package/dist/pricing/calculators/DynamoDBCalculator.d.ts +9 -0
  102. package/dist/pricing/calculators/DynamoDBCalculator.js +146 -0
  103. package/dist/pricing/calculators/EC2Calculator.d.ts +7 -0
  104. package/dist/pricing/calculators/EC2Calculator.js +80 -0
  105. package/dist/pricing/calculators/ECSCalculator.d.ts +9 -0
  106. package/dist/pricing/calculators/ECSCalculator.js +116 -0
  107. package/dist/pricing/calculators/ElastiCacheCalculator.d.ts +8 -0
  108. package/dist/pricing/calculators/ElastiCacheCalculator.js +106 -0
  109. package/dist/pricing/calculators/LambdaCalculator.d.ts +13 -0
  110. package/dist/pricing/calculators/LambdaCalculator.js +111 -0
  111. package/dist/pricing/calculators/NLBCalculator.d.ts +16 -0
  112. package/dist/pricing/calculators/NLBCalculator.js +138 -0
  113. package/dist/pricing/calculators/NatGatewayCalculator.d.ts +12 -0
  114. package/dist/pricing/calculators/NatGatewayCalculator.js +116 -0
  115. package/dist/pricing/calculators/RDSCalculator.d.ts +9 -0
  116. package/dist/pricing/calculators/RDSCalculator.js +103 -0
  117. package/dist/pricing/calculators/S3Calculator.d.ts +8 -0
  118. package/dist/pricing/calculators/S3Calculator.js +68 -0
  119. package/dist/pricing/calculators/VPCEndpointCalculator.d.ts +12 -0
  120. package/dist/pricing/calculators/VPCEndpointCalculator.js +129 -0
  121. package/dist/pricing/index.d.ts +10 -0
  122. package/dist/pricing/index.js +37 -0
  123. package/dist/pricing/types.d.ts +53 -0
  124. package/dist/pricing/types.js +22 -0
  125. package/dist/releasetag.txt +1 -0
  126. package/dist/reporter/Reporter.d.ts +18 -0
  127. package/dist/reporter/Reporter.js +412 -0
  128. package/dist/reporter/index.d.ts +2 -0
  129. package/dist/reporter/index.js +21 -0
  130. package/dist/reporter/types.d.ts +72 -0
  131. package/dist/reporter/types.js +3 -0
  132. package/dist/synthesis/SynthesisOrchestrator.d.ts +26 -0
  133. package/dist/synthesis/SynthesisOrchestrator.js +243 -0
  134. package/dist/synthesis/index.d.ts +2 -0
  135. package/dist/synthesis/index.js +19 -0
  136. package/dist/synthesis/types.d.ts +17 -0
  137. package/dist/synthesis/types.js +13 -0
  138. package/dist/threshold/ThresholdEnforcer.d.ts +29 -0
  139. package/dist/threshold/ThresholdEnforcer.js +143 -0
  140. package/dist/threshold/index.d.ts +2 -0
  141. package/dist/threshold/index.js +19 -0
  142. package/dist/threshold/types.d.ts +15 -0
  143. package/dist/threshold/types.js +17 -0
  144. package/docs/CALCULATORS.md +820 -0
  145. package/docs/CI_CD.md +608 -0
  146. package/docs/CONFIGURATION.md +407 -0
  147. package/docs/DEVELOPMENT.md +387 -0
  148. package/docs/RELEASE.md +223 -0
  149. package/docs/TROUBLESHOOTING.md +847 -0
  150. package/examples/.cdk-cost-analyzer.yml +85 -0
  151. package/examples/.gitlab-ci.yml +125 -0
  152. package/examples/api-usage.js +26 -0
  153. package/examples/complex/base.json +16 -0
  154. package/examples/complex/target.json +29 -0
  155. package/examples/monorepo/.gitlab-ci.yml +251 -0
  156. package/examples/monorepo/README.md +341 -0
  157. package/examples/monorepo/package.json +27 -0
  158. package/examples/monorepo/packages/backend-infra/.cdk-cost-analyzer.yml +34 -0
  159. package/examples/monorepo/packages/backend-infra/bin/app.ts +16 -0
  160. package/examples/monorepo/packages/backend-infra/cdk.json +7 -0
  161. package/examples/monorepo/packages/backend-infra/lib/backend-stack.ts +128 -0
  162. package/examples/monorepo/packages/backend-infra/package.json +30 -0
  163. package/examples/monorepo/packages/backend-infra/tsconfig.json +11 -0
  164. package/examples/monorepo/packages/data-infra/.cdk-cost-analyzer.yml +38 -0
  165. package/examples/monorepo/packages/data-infra/bin/app.ts +16 -0
  166. package/examples/monorepo/packages/data-infra/cdk.json +7 -0
  167. package/examples/monorepo/packages/data-infra/lib/data-stack.ts +121 -0
  168. package/examples/monorepo/packages/data-infra/package.json +30 -0
  169. package/examples/monorepo/packages/data-infra/tsconfig.json +11 -0
  170. package/examples/monorepo/packages/frontend-infra/.cdk-cost-analyzer.yml +31 -0
  171. package/examples/monorepo/packages/frontend-infra/bin/app.ts +16 -0
  172. package/examples/monorepo/packages/frontend-infra/cdk.json +7 -0
  173. package/examples/monorepo/packages/frontend-infra/lib/frontend-stack.ts +60 -0
  174. package/examples/monorepo/packages/frontend-infra/package.json +30 -0
  175. package/examples/monorepo/packages/frontend-infra/tsconfig.json +11 -0
  176. package/examples/monorepo/tsconfig.json +35 -0
  177. package/examples/multi-stack/.cdk-cost-analyzer.yml +72 -0
  178. package/examples/multi-stack/.gitlab-ci.yml +184 -0
  179. package/examples/multi-stack/README.md +279 -0
  180. package/examples/multi-stack/bin/app.ts +36 -0
  181. package/examples/multi-stack/cdk.json +72 -0
  182. package/examples/multi-stack/lib/compute-stack.ts +128 -0
  183. package/examples/multi-stack/lib/networking-stack.ts +69 -0
  184. package/examples/multi-stack/lib/storage-stack.ts +141 -0
  185. package/examples/multi-stack/package-lock.json +4437 -0
  186. package/examples/multi-stack/package.json +42 -0
  187. package/examples/multi-stack/tsconfig.json +34 -0
  188. package/examples/simple/base.json +8 -0
  189. package/examples/simple/target.json +14 -0
  190. package/examples/single-stack/.NVP +0 -0
  191. package/examples/single-stack/.cdk-cost-analyzer.yml +52 -0
  192. package/examples/single-stack/.gitlab-ci.yml +126 -0
  193. package/examples/single-stack/README.md +184 -0
  194. package/examples/single-stack/UeK +0 -0
  195. package/examples/single-stack/bin/app.ts +16 -0
  196. package/examples/single-stack/cdk.json +72 -0
  197. package/examples/single-stack/lib/infrastructure-stack.ts +119 -0
  198. package/examples/single-stack/package-lock.json +4443 -0
  199. package/examples/single-stack/package.json +38 -0
  200. package/examples/single-stack/tsconfig.json +34 -0
  201. package/package.json +139 -0
  202. package/test-cdk-project/README-COMPUTE.md +141 -0
  203. package/test-cdk-project/README.md +95 -0
  204. package/test-cdk-project/app-with-compute.js +102 -0
  205. package/test-cdk-project/app.js +81 -0
  206. package/test-cdk-project/cdk-compute.json +3 -0
  207. package/test-cdk-project/cdk.context.json +7 -0
  208. package/test-cdk-project/cdk.json +3 -0
  209. package/test-cdk-project/cdk.out/TestStack.assets.json +21 -0
  210. package/test-cdk-project/cdk.out/TestStack.template.json +115 -0
  211. package/test-cdk-project/cdk.out/cdk.out +1 -0
  212. package/test-cdk-project/cdk.out/manifest.json +503 -0
  213. package/test-cdk-project/cdk.out/tree.json +1 -0
  214. package/test-cdk-project/cdk.out.base/TestStack.assets.json +21 -0
  215. package/test-cdk-project/cdk.out.base/TestStack.template.json +115 -0
  216. package/test-cdk-project/cdk.out.base/cdk.out +1 -0
  217. package/test-cdk-project/cdk.out.base/manifest.json +503 -0
  218. package/test-cdk-project/cdk.out.base/tree.json +1 -0
  219. package/test-cdk-project/cdk.out.target/TestStack.assets.json +21 -0
  220. package/test-cdk-project/cdk.out.target/TestStack.template.json +183 -0
  221. package/test-cdk-project/cdk.out.target/cdk.out +1 -0
  222. package/test-cdk-project/cdk.out.target/manifest.json +521 -0
  223. package/test-cdk-project/cdk.out.target/tree.json +1 -0
  224. package/test-cdk-project/package-lock.json +422 -0
  225. package/test-cdk-project/package.json +17 -0
  226. package/tools/workflows/README.md +102 -0
  227. package/tools/workflows/validate-workflows.js +109 -0
  228. package/tools/workflows/workflow-utils.ts +181 -0
@@ -0,0 +1,258 @@
1
+ # Contributing to CDK Cost Analyzer
2
+
3
+ Thank you for your interest in contributing to CDK Cost Analyzer. This document provides guidelines for contributing to the project.
4
+
5
+ ## Code of Conduct
6
+
7
+ Be respectful and constructive in all interactions. We aim to maintain a welcoming environment for all contributors.
8
+
9
+ ## Getting Started
10
+
11
+ ### Prerequisites
12
+
13
+ - Node.js >= 18.0.0
14
+ - npm or yarn
15
+ - AWS account with credentials configured
16
+ - Git
17
+
18
+ ### Development Setup
19
+
20
+ 1. Fork and clone the repository:
21
+ ```bash
22
+ git clone https://github.com/buildinginthecloud/cdk-cost-analyzer.git
23
+ cd cdk-cost-analyzer
24
+ ```
25
+
26
+ 2. Install dependencies:
27
+ ```bash
28
+ npm install
29
+ ```
30
+
31
+ 3. Build the project:
32
+ ```bash
33
+ npm run build
34
+ ```
35
+
36
+ 4. Run tests:
37
+ ```bash
38
+ npm run test
39
+ ```
40
+
41
+ See the [Development Guide](docs/DEVELOPMENT.md) for detailed information about the project architecture and development workflow.
42
+
43
+ ## How to Contribute
44
+
45
+ ### Reporting Issues
46
+
47
+ Before creating an issue:
48
+ - Check existing issues to avoid duplicates
49
+ - Use the issue search to find similar problems
50
+ - Collect relevant information (error messages, logs, environment details)
51
+
52
+ When creating an issue:
53
+ - Use a clear, descriptive title
54
+ - Provide steps to reproduce the problem
55
+ - Include expected vs actual behavior
56
+ - Add relevant code samples or templates
57
+ - Specify your environment (Node version, OS, AWS region)
58
+
59
+ ### Suggesting Features
60
+
61
+ Feature requests are welcome. Please:
62
+ - Explain the use case and problem it solves
63
+ - Describe the proposed solution
64
+ - Consider alternative approaches
65
+ - Be open to discussion and feedback
66
+
67
+ ### Submitting Changes
68
+
69
+ 1. Create a feature branch:
70
+ ```bash
71
+ git checkout -b feature/your-feature-name
72
+ ```
73
+
74
+ 2. Make your changes following the code standards below
75
+
76
+ 3. Add tests for new functionality:
77
+ ```bash
78
+ npm run test
79
+ ```
80
+
81
+ 4. Ensure linting passes:
82
+ ```bash
83
+ npm run lint
84
+ npm run eslint
85
+ ```
86
+
87
+ 5. Build the project:
88
+ ```bash
89
+ npm run build
90
+ ```
91
+
92
+ 6. Commit your changes using conventional commits:
93
+ ```bash
94
+ git commit -m "feat: add support for ElastiCache clusters"
95
+ ```
96
+
97
+ 7. Push to your fork and create a pull request
98
+
99
+ ### Pull Request Guidelines
100
+
101
+ - Keep changes focused and atomic
102
+ - Write clear commit messages following [Conventional Commits](https://www.conventionalcommits.org/)
103
+ - Include tests for new features
104
+ - Update documentation as needed
105
+ - Ensure all tests pass
106
+ - Link related issues in the PR description
107
+
108
+ ## Code Standards
109
+
110
+ ### TypeScript
111
+
112
+ - Use strict TypeScript configuration
113
+ - Define return types for all functions
114
+ - Prefer `const` over `let`, avoid `var`
115
+ - Use meaningful variable and function names
116
+ - Follow existing code style and patterns
117
+
118
+ ### Testing
119
+
120
+ - Write unit tests for all public functions
121
+ - Use property-based tests for universal properties
122
+ - Aim for high test coverage (>80%)
123
+ - Use descriptive test names
124
+ - Mock external dependencies
125
+
126
+ ### Documentation
127
+
128
+ - Update README.md for user-facing changes
129
+ - Add JSDoc comments for public APIs
130
+ - Update relevant documentation in `docs/`
131
+ - Include code examples where appropriate
132
+
133
+ ### Commit Messages
134
+
135
+ Follow the [Conventional Commits](https://www.conventionalcommits.org/) specification:
136
+
137
+ - `feat:` New features
138
+ - `fix:` Bug fixes
139
+ - `docs:` Documentation changes
140
+ - `style:` Code style changes (formatting, etc.)
141
+ - `refactor:` Code refactoring
142
+ - `test:` Test additions or changes
143
+ - `chore:` Build process or tooling changes
144
+
145
+ Examples:
146
+ ```
147
+ feat: add support for AWS::ElastiCache::CacheCluster
148
+ fix: correct RDS multi-AZ pricing calculation
149
+ docs: update configuration guide with new options
150
+ test: add property tests for DynamoDB calculator
151
+ ```
152
+
153
+ ## Adding New Resource Types
154
+
155
+ To add support for a new AWS resource type:
156
+
157
+ 1. Create a calculator in `src/pricing/calculators/`:
158
+ ```typescript
159
+ export class NewResourceCalculator implements ResourceCostCalculator {
160
+ supports(resourceType: string): boolean {
161
+ return resourceType === 'AWS::Service::Resource';
162
+ }
163
+
164
+ async calculateCost(
165
+ resource: CloudFormationResource,
166
+ region: string,
167
+ pricingClient: PricingClient
168
+ ): Promise<MonthlyCost> {
169
+ // Implementation
170
+ }
171
+ }
172
+ ```
173
+
174
+ 2. Register the calculator in `src/pricing/PricingService.ts`
175
+
176
+ 3. Add comprehensive tests in `test/pricing/`
177
+
178
+ 4. Update documentation:
179
+ - Add to supported resources list in README.md
180
+ - Document assumptions in docs/CALCULATORS.md
181
+ - Add example in `examples/`
182
+
183
+ 5. Create a pull request with your changes
184
+
185
+ ## Project Structure
186
+
187
+ ```
188
+ cdk-cost-analyzer/
189
+ ├── src/
190
+ │ ├── api/ # Programmatic API
191
+ │ ├── cli/ # Command-line interface
192
+ │ ├── config/ # Configuration management
193
+ │ ├── diff/ # Template comparison
194
+ │ ├── parser/ # CloudFormation parsing
195
+ │ ├── pricing/ # Cost calculation
196
+ │ ├── reporter/ # Report formatting
197
+ │ ├── synthesis/ # CDK synthesis
198
+ │ └── threshold/ # Threshold enforcement
199
+ ├── test/ # Test files (mirrors src/)
200
+ ├── docs/ # Documentation
201
+ └── examples/ # Example projects
202
+ ```
203
+
204
+ ## Development Workflow
205
+
206
+ ### Running Tests
207
+
208
+ ```bash
209
+ # All tests
210
+ npm run test
211
+
212
+ # Silent mode (minimal output)
213
+ npm run test:silent
214
+
215
+ # Watch mode
216
+ npm run test:watch
217
+
218
+ # Specific test file
219
+ npx vitest run test/pricing/EC2Calculator.test.ts
220
+ ```
221
+
222
+ ### Building
223
+
224
+ ```bash
225
+ # Full build (compile + test)
226
+ npm run build
227
+
228
+ # Compile only
229
+ npm run compile
230
+
231
+ # Watch mode
232
+ npm run watch
233
+ ```
234
+
235
+ ### Linting
236
+
237
+ ```bash
238
+ # Type checking
239
+ npm run lint
240
+
241
+ # ESLint
242
+ npm run eslint
243
+ ```
244
+
245
+ ## Release Process
246
+
247
+ Releases are managed by maintainers. See [docs/RELEASE.md](docs/RELEASE.md) for details.
248
+
249
+ ## Getting Help
250
+
251
+ - Check the [Documentation](docs/)
252
+ - Review [Troubleshooting Guide](docs/TROUBLESHOOTING.md)
253
+ - Search existing issues
254
+ - Create a new issue with your question
255
+
256
+ ## License
257
+
258
+ By contributing, you agree that your contributions will be licensed under the MIT License.
package/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2026 Yvo van Zee
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in all
11
+ copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19
+ SOFTWARE.