@stackblender/openapi-guard 0.2.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/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ Copyright © 2026 StackBlender. All rights reserved.
2
+
3
+ You are granted a limited, non-exclusive, non-transferable license to install
4
+ and use StackBlender OpenAPI Guard.
5
+
6
+ You may not redistribute, sublicense, sell, modify, reverse engineer, or create
7
+ derivative commercial distributions of the software except where applicable
8
+ law expressly permits otherwise.
9
+
10
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
11
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12
+ FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. IN NO EVENT SHALL
13
+ STACKBLENDER BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
14
+ ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION
15
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,82 @@
1
+ # OpenAPI Guard
2
+
3
+ Check an OpenAPI 3.x contract against Spring Boot Java/Kotlin and NestJS
4
+ TypeScript endpoints without opening an editor. Analysis runs locally and does
5
+ not upload source code, specifications, diagnostics, or repository metadata.
6
+
7
+ ## Run without installing
8
+
9
+ From the project containing your OpenAPI document and implementation:
10
+
11
+ ```sh
12
+ npx @stackblender/openapi-guard .
13
+ ```
14
+
15
+ OpenAPI Guard discovers conventional OpenAPI filenames and supported source files.
16
+ Use versioned JSON when another tool or coding agent consumes the result:
17
+
18
+ ```sh
19
+ npx @stackblender/openapi-guard . --format json
20
+ ```
21
+
22
+ ## Install in a project
23
+
24
+ ```sh
25
+ npm install --save-dev @stackblender/openapi-guard
26
+ ```
27
+
28
+ Then add a repeatable project command:
29
+
30
+ ```json
31
+ {
32
+ "scripts": {
33
+ "openapi:check": "openapi-guard ."
34
+ }
35
+ }
36
+ ```
37
+
38
+ ## Options and exit codes
39
+
40
+ ```text
41
+ Usage: openapi-guard [workspace] [options]
42
+
43
+ Options:
44
+ --spec <path> Workspace-relative OpenAPI specification
45
+ --include <glob> Source include glob; may be repeated
46
+ --exclude <glob> Additional exclude glob; may be repeated
47
+ --implementation-path-prefix <path>
48
+ Prefix applied to discovered implementation routes
49
+ --format <format> text (default) or json
50
+ -h, --help Show help
51
+ ```
52
+
53
+ Exit code `0` means the contract is clean, `1` means contract drift was found,
54
+ and `2` means configuration, discovery, parsing, or execution failed.
55
+
56
+ ## MCP
57
+
58
+ The package also installs `openapi-guard-mcp`, a local read-only MCP server using
59
+ standard input/output. An MCP client can launch a pinned package version with:
60
+
61
+ ```text
62
+ command: npx
63
+ arguments: --yes --package=@stackblender/openapi-guard@0.2.0 openapi-guard-mcp
64
+ working directory: /absolute/path/to/project
65
+ transport: stdio
66
+ ```
67
+
68
+ It exposes `check_openapi_contract` and uses the same versioned result as the CLI.
69
+ Pin the package version in persistent agent configuration so an update is a
70
+ deliberate choice.
71
+
72
+ ## Current scope
73
+
74
+ OpenAPI Guard detects missing implementations, undocumented implementations, and
75
+ HTTP-method mismatches for common literal Spring MVC and NestJS routes. It skips
76
+ computed or unresolved routing rather than guessing. Parameters, request and
77
+ response bodies, DTO/schema comparison, custom decorators, and runtime route
78
+ discovery are not currently analyzed.
79
+
80
+ See the [documentation and support repository](https://github.com/StackBlender/openapi-guard-support),
81
+ [report a bug](https://github.com/StackBlender/openapi-guard-support/issues), or
82
+ [report a security concern privately](https://github.com/StackBlender/openapi-guard-support/security/advisories/new).
@@ -0,0 +1,549 @@
1
+ # Third-Party Notices
2
+
3
+ StackBlender OpenAPI Guard includes the following third-party software in its bundled JavaScript:
4
+
5
+ | Package | Version | License |
6
+ | ---------------------------------------------------------------------------------------------------------------------------------- | ------- | ------------- |
7
+ | `@babel/parser`, `@babel/types` | 7.29.8 | MIT |
8
+ | `@babel/helper-string-parser`, `@babel/helper-validator-identifier` | 7.29.7 | MIT |
9
+ | `java-parser` | 3.0.1 | Apache-2.0 |
10
+ | `chevrotain`, `@chevrotain/cst-dts-gen`, `@chevrotain/gast`, `@chevrotain/regexp-to-ast`, `@chevrotain/types`, `@chevrotain/utils` | 11.0.3 | Apache-2.0 |
11
+ | `chevrotain-allstar` | 0.3.1 | MIT |
12
+ | `lodash`, `lodash-es` | 4.18.1 | MIT |
13
+ | `kotlin-parser-antlr` | 1.0.0 | MIT |
14
+ | `antlr4` | 4.9.1 | BSD-3-Clause |
15
+ | `minimatch` | 10.2.6 | BlueOak-1.0.0 |
16
+ | `brace-expansion` | 5.0.9 | MIT |
17
+ | `balanced-match` | 4.0.4 | MIT |
18
+ | `yaml` | 2.9.0 | ISC |
19
+
20
+ The notices below are provided for attribution and license compliance. They do not change the proprietary license that applies to StackBlender OpenAPI Guard itself.
21
+
22
+ ## MIT — @babel/parser
23
+
24
+ ```text
25
+ Copyright (C) 2012-2014 by various contributors (see AUTHORS)
26
+
27
+ Permission is hereby granted, free of charge, to any person obtaining a copy
28
+ of this software and associated documentation files (the "Software"), to deal
29
+ in the Software without restriction, including without limitation the rights
30
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
31
+ copies of the Software, and to permit persons to whom the Software is
32
+ furnished to do so, subject to the following conditions:
33
+
34
+ The above copyright notice and this permission notice shall be included in
35
+ all copies or substantial portions of the Software.
36
+
37
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
38
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
39
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
40
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
41
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
42
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
43
+ THE SOFTWARE.
44
+ ```
45
+
46
+ ## MIT — Babel types and helpers
47
+
48
+ Applies to `@babel/types`, `@babel/helper-string-parser`, and
49
+ `@babel/helper-validator-identifier`.
50
+
51
+ ```text
52
+ MIT License
53
+
54
+ Copyright (c) 2014-present Sebastian McKenzie and other contributors
55
+
56
+ Permission is hereby granted, free of charge, to any person obtaining
57
+ a copy of this software and associated documentation files (the
58
+ "Software"), to deal in the Software without restriction, including
59
+ without limitation the rights to use, copy, modify, merge, publish,
60
+ distribute, sublicense, and/or sell copies of the Software, and to
61
+ permit persons to whom the Software is furnished to do so, subject to
62
+ the following conditions:
63
+
64
+ The above copyright notice and this permission notice shall be
65
+ included in all copies or substantial portions of the Software.
66
+
67
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
68
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
69
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
70
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
71
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
72
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
73
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
74
+ ```
75
+
76
+ ## Apache License 2.0
77
+
78
+ ```text
79
+ Copyright 2018-2025 the original author or authors from the JHipster project
80
+
81
+ Apache License
82
+ Version 2.0, January 2004
83
+ http://www.apache.org/licenses/
84
+
85
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
86
+
87
+ 1. Definitions.
88
+
89
+ "License" shall mean the terms and conditions for use, reproduction,
90
+ and distribution as defined by Sections 1 through 9 of this document.
91
+
92
+ "Licensor" shall mean the copyright owner or entity authorized by
93
+ the copyright owner that is granting the License.
94
+
95
+ "Legal Entity" shall mean the union of the acting entity and all
96
+ other entities that control, are controlled by, or are under common
97
+ control with that entity. For the purposes of this definition,
98
+ "control" means (i) the power, direct or indirect, to cause the
99
+ direction or management of such entity, whether by contract or
100
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
101
+ outstanding shares, or (iii) beneficial ownership of such entity.
102
+
103
+ "You" (or "Your") shall mean an individual or Legal Entity
104
+ exercising permissions granted by this License.
105
+
106
+ "Source" form shall mean the preferred form for making modifications,
107
+ including but not limited to software source code, documentation
108
+ source, and configuration files.
109
+
110
+ "Object" form shall mean any form resulting from mechanical
111
+ transformation or translation of a Source form, including but
112
+ not limited to compiled object code, generated documentation,
113
+ and conversions to other media types.
114
+
115
+ "Work" shall mean the work of authorship, whether in Source or
116
+ Object form, made available under the License, as indicated by a
117
+ copyright notice that is included in or attached to the work
118
+ (an example is provided in the Appendix below).
119
+
120
+ "Derivative Works" shall mean any work, whether in Source or Object
121
+ form, that is based on (or derived from) the Work and for which the
122
+ editorial revisions, annotations, elaborations, or other modifications
123
+ represent, as a whole, an original work of authorship. For the purposes
124
+ of this License, Derivative Works shall not include works that remain
125
+ separable from, or merely link (or bind by name) to the interfaces of,
126
+ the Work and Derivative Works thereof.
127
+
128
+ "Contribution" shall mean any work of authorship, including
129
+ the original version of the Work and any modifications or additions
130
+ to that Work or Derivative Works thereof, that is intentionally
131
+ submitted to Licensor for inclusion in the Work by the copyright owner
132
+ or by an individual or Legal Entity authorized to submit on behalf of
133
+ the copyright owner. For the purposes of this definition, "submitted"
134
+ means any form of electronic, verbal, or written communication sent
135
+ to the Licensor or its representatives, including but not limited to
136
+ communication on electronic mailing lists, source code control systems,
137
+ and issue tracking systems that are managed by, or on behalf of, the
138
+ Licensor for the purpose of discussing and improving the Work, but
139
+ excluding communication that is conspicuously marked or otherwise
140
+ designated in writing by the copyright owner as "Not a Contribution."
141
+
142
+ "Contributor" shall mean Licensor and any individual or Legal Entity
143
+ on behalf of whom a Contribution has been received by Licensor and
144
+ subsequently incorporated within the Work.
145
+
146
+ 2. Grant of Copyright License. Subject to the terms and conditions of
147
+ this License, each Contributor hereby grants to You a perpetual,
148
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
149
+ copyright license to reproduce, prepare Derivative Works of,
150
+ publicly display, publicly perform, sublicense, and distribute the
151
+ Work and such Derivative Works in Source or Object form.
152
+
153
+ 3. Grant of Patent License. Subject to the terms and conditions of
154
+ this License, each Contributor hereby grants to You a perpetual,
155
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
156
+ (except as stated in this section) patent license to make, have made,
157
+ use, offer to sell, sell, import, and otherwise transfer the Work,
158
+ where such license applies only to those patent claims licensable
159
+ by such Contributor that are necessarily infringed by their
160
+ Contribution(s) alone or by combination of their Contribution(s)
161
+ with the Work to which such Contribution(s) was submitted. If You
162
+ institute patent litigation against any entity (including a
163
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
164
+ or a Contribution incorporated within the Work constitutes direct
165
+ or contributory patent infringement, then any patent licenses
166
+ granted to You under this License for that Work shall terminate
167
+ as of the date such litigation is filed.
168
+
169
+ 4. Redistribution. You may reproduce and distribute copies of the
170
+ Work or Derivative Works thereof in any medium, with or without
171
+ modifications, and in Source or Object form, provided that You
172
+ meet the following conditions:
173
+
174
+ (a) You must give any other recipients of the Work or
175
+ Derivative Works a copy of this License; and
176
+
177
+ (b) You must cause any modified files to carry prominent notices
178
+ stating that You changed the files; and
179
+
180
+ (c) You must retain, in the Source form of any Derivative Works
181
+ that You distribute, all copyright, patent, trademark, and
182
+ attribution notices from the Source form of the Work,
183
+ excluding those notices that do not pertain to any part of
184
+ the Derivative Works; and
185
+
186
+ (d) If the Work includes a "NOTICE" text file as part of its
187
+ distribution, then any Derivative Works that You distribute must
188
+ include a readable copy of the attribution notices contained
189
+ within such NOTICE file, excluding those notices that do not
190
+ pertain to any part of the Derivative Works, in at least one
191
+ of the following places: within a NOTICE text file distributed
192
+ as part of the Derivative Works; within the Source form or
193
+ documentation, if provided along with the Derivative Works; or,
194
+ within a display generated by the Derivative Works, if and
195
+ wherever such third-party notices normally appear. The contents
196
+ of the NOTICE file are for informational purposes only and
197
+ do not modify the License. You may add Your own attribution
198
+ notices within Derivative Works that You distribute, alongside
199
+ or as an addendum to the NOTICE text from the Work, provided
200
+ that such additional attribution notices cannot be construed
201
+ as modifying the License.
202
+
203
+ You may add Your own copyright statement to Your modifications and
204
+ may provide additional or different license terms and conditions
205
+ for use, reproduction, or distribution of Your modifications, or
206
+ for any such Derivative Works as a whole, provided Your use,
207
+ reproduction, and distribution of the Work otherwise complies with
208
+ the conditions stated in this License.
209
+
210
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
211
+ any Contribution intentionally submitted for inclusion in the Work
212
+ by You to the Licensor shall be under the terms and conditions of
213
+ this License, without any additional terms or conditions.
214
+ Notwithstanding the above, nothing herein shall supersede or modify
215
+ the terms of any separate license agreement you may have executed
216
+ with Licensor regarding such Contributions.
217
+
218
+ 6. Trademarks. This License does not grant permission to use the trade
219
+ names, trademarks, service marks, or product names of the Licensor,
220
+ except as required for reasonable and customary use in describing the
221
+ origin of the Work and reproducing the content of the NOTICE file.
222
+
223
+ 7. Disclaimer of Warranty. Unless required by applicable law or
224
+ agreed to in writing, Licensor provides the Work (and each
225
+ Contributor provides its Contributions) on an "AS IS" BASIS,
226
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
227
+ implied, including, without limitation, any warranties or conditions
228
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
229
+ PARTICULAR PURPOSE. You are solely responsible for determining the
230
+ appropriateness of using or redistributing the Work and assume any
231
+ risks associated with Your exercise of permissions under this License.
232
+
233
+ 8. Limitation of Liability. In no event and under no legal theory,
234
+ whether in tort (including negligence), contract, or otherwise,
235
+ unless required by applicable law (such as deliberate and grossly
236
+ negligent acts) or agreed to in writing, shall any Contributor be
237
+ liable to You for damages, including any direct, indirect, special,
238
+ incidental, or consequential damages of any character arising as a
239
+ result of this License or out of the use or inability to use the
240
+ Work (including but not limited to damages for loss of goodwill,
241
+ work stoppage, computer failure or malfunction, or any and all
242
+ other commercial damages or losses), even if such Contributor
243
+ has been advised of the possibility of such damages.
244
+
245
+ 9. Accepting Warranty or Additional Liability. While redistributing
246
+ the Work or Derivative Works thereof, You may choose to offer,
247
+ and charge a fee for, acceptance of support, warranty, indemnity,
248
+ or other liability obligations and/or rights consistent with this
249
+ License. However, in accepting such obligations, You may act only
250
+ on Your own behalf and on Your sole responsibility, not on behalf
251
+ of any other Contributor, and only if You agree to indemnify,
252
+ defend, and hold each Contributor harmless for any liability
253
+ incurred by, or claims asserted against, such Contributor by reason
254
+ of your accepting any such warranty or additional liability.
255
+
256
+ END OF TERMS AND CONDITIONS
257
+
258
+ APPENDIX: How to apply the Apache License to your work.
259
+
260
+ To apply the Apache License to your work, attach the following
261
+ boilerplate notice, with the fields enclosed by brackets "[]"
262
+ replaced with your own identifying information. (Don't include
263
+ the brackets!) The text should be enclosed in the appropriate
264
+ comment syntax for the file format. We also recommend that a
265
+ file or class name and description of purpose be included on the
266
+ same "printed page" as the copyright notice for easier
267
+ identification within third-party archives.
268
+
269
+ Copyright [yyyy] [name of copyright owner]
270
+
271
+ Licensed under the Apache License, Version 2.0 (the "License");
272
+ you may not use this file except in compliance with the License.
273
+ You may obtain a copy of the License at
274
+
275
+ http://www.apache.org/licenses/LICENSE-2.0
276
+
277
+ Unless required by applicable law or agreed to in writing, software
278
+ distributed under the License is distributed on an "AS IS" BASIS,
279
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
280
+ See the License for the specific language governing permissions and
281
+ limitations under the License.
282
+ ```
283
+
284
+ ## MIT — chevrotain-allstar
285
+
286
+ ```text
287
+ Copyright 2022 TypeFox GmbH
288
+
289
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
290
+ associated documentation files (the "Software"), to deal in the Software without restriction,
291
+ including without limitation the rights to use, copy, modify, merge, publish, distribute,
292
+ sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
293
+ furnished to do so, subject to the following conditions:
294
+
295
+ The above copyright notice and this permission notice shall be included in all copies or
296
+ substantial portions of the Software.
297
+
298
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
299
+ BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
300
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
301
+ DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
302
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
303
+ ```
304
+
305
+ ## MIT — Lodash
306
+
307
+ ```text
308
+ Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
309
+
310
+ Based on Underscore.js, copyright Jeremy Ashkenas,
311
+ DocumentCloud and Investigative Reporters & Editors <http://underscorejs.org/>
312
+
313
+ This software consists of voluntary contributions made by many
314
+ individuals. For exact contribution history, see the revision history
315
+ available at https://github.com/lodash/lodash
316
+
317
+ The following license applies to all parts of this software except as
318
+ documented below:
319
+
320
+ ====
321
+
322
+ Permission is hereby granted, free of charge, to any person obtaining
323
+ a copy of this software and associated documentation files (the
324
+ "Software"), to deal in the Software without restriction, including
325
+ without limitation the rights to use, copy, modify, merge, publish,
326
+ distribute, sublicense, and/or sell copies of the Software, and to
327
+ permit persons to whom the Software is furnished to do so, subject to
328
+ the following conditions:
329
+
330
+ The above copyright notice and this permission notice shall be
331
+ included in all copies or substantial portions of the Software.
332
+
333
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
334
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
335
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
336
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
337
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
338
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
339
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
340
+
341
+ ====
342
+
343
+ Copyright and related rights for sample code are waived via CC0. Sample
344
+ code is defined as all source code displayed within the prose of the
345
+ documentation.
346
+
347
+ CC0: http://creativecommons.org/publicdomain/zero/1.0/
348
+
349
+ ====
350
+
351
+ Files located in the node_modules and vendor directories are externally
352
+ maintained libraries used by this software which have their own
353
+ licenses; we recommend you read them, as their terms may differ from the
354
+ terms above.
355
+ ```
356
+
357
+ ## MIT — kotlin-parser-antlr
358
+
359
+ Version 1.0.0 declares the MIT license in its npm package metadata but does not include a license file. The package metadata identifies Shirsh Zibbu as its author.
360
+
361
+ ```text
362
+ Copyright (c) Shirsh Zibbu
363
+
364
+ Permission is hereby granted, free of charge, to any person obtaining a copy
365
+ of this software and associated documentation files (the "Software"), to deal
366
+ in the Software without restriction, including without limitation the rights
367
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
368
+ copies of the Software, and to permit persons to whom the Software is
369
+ furnished to do so, subject to the following conditions:
370
+
371
+ The above copyright notice and this permission notice shall be included in all
372
+ copies or substantial portions of the Software.
373
+
374
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
375
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
376
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
377
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
378
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
379
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
380
+ SOFTWARE.
381
+ ```
382
+
383
+ ## MIT — brace-expansion
384
+
385
+ ```text
386
+ MIT License
387
+
388
+ Copyright Julian Gruber <julian@juliangruber.com>
389
+
390
+ TypeScript port Copyright Isaac Z. Schlueter <i@izs.me>
391
+
392
+ Permission is hereby granted, free of charge, to any person obtaining a copy
393
+ of this software and associated documentation files (the "Software"), to deal
394
+ in the Software without restriction, including without limitation the rights
395
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
396
+ copies of the Software, and to permit persons to whom the Software is
397
+ furnished to do so, subject to the following conditions:
398
+
399
+ The above copyright notice and this permission notice shall be included in all
400
+ copies or substantial portions of the Software.
401
+
402
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
403
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
404
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
405
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
406
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
407
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
408
+ SOFTWARE.
409
+ ```
410
+
411
+ ## MIT — balanced-match
412
+
413
+ ```text
414
+ (MIT)
415
+
416
+ Original code Copyright Julian Gruber <julian@juliangruber.com>
417
+
418
+ Port to TypeScript Copyright Isaac Z. Schlueter <i@izs.me>
419
+
420
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
421
+ this software and associated documentation files (the "Software"), to deal in
422
+ the Software without restriction, including without limitation the rights to
423
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
424
+ of the Software, and to permit persons to whom the Software is furnished to do
425
+ so, subject to the following conditions:
426
+
427
+ The above copyright notice and this permission notice shall be included in all
428
+ copies or substantial portions of the Software.
429
+
430
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
431
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
432
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
433
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
434
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
435
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
436
+ SOFTWARE.
437
+ ```
438
+
439
+ ## BSD 3-Clause — antlr4
440
+
441
+ Version 4.9.1 declares BSD-3-Clause in its npm package metadata. Its bundled source identifies The ANTLR Project as copyright holder but the npm package omits the referenced license file.
442
+
443
+ ```text
444
+ Copyright (c) 2012-2017 The ANTLR Project. All rights reserved.
445
+
446
+ Redistribution and use in source and binary forms, with or without
447
+ modification, are permitted provided that the following conditions are met:
448
+
449
+ 1. Redistributions of source code must retain the above copyright notice,
450
+ this list of conditions and the following disclaimer.
451
+
452
+ 2. Redistributions in binary form must reproduce the above copyright notice,
453
+ this list of conditions and the following disclaimer in the documentation
454
+ and/or other materials provided with the distribution.
455
+
456
+ 3. Neither the name of the copyright holder nor the names of its contributors
457
+ may be used to endorse or promote products derived from this software
458
+ without specific prior written permission.
459
+
460
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
461
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
462
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
463
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
464
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
465
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
466
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
467
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
468
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
469
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
470
+ POSSIBILITY OF SUCH DAMAGE.
471
+ ```
472
+
473
+ ## Blue Oak Model License 1.0.0 — minimatch
474
+
475
+ ```text
476
+ # Blue Oak Model License
477
+
478
+ Version 1.0.0
479
+
480
+ ## Purpose
481
+
482
+ This license gives everyone as much permission to work with
483
+ this software as possible, while protecting contributors
484
+ from liability.
485
+
486
+ ## Acceptance
487
+
488
+ In order to receive this license, you must agree to its
489
+ rules. The rules of this license are both obligations
490
+ under that agreement and conditions to your license.
491
+ You must not do anything with this software that triggers
492
+ a rule that you cannot or will not follow.
493
+
494
+ ## Copyright
495
+
496
+ Each contributor licenses you to do everything with this
497
+ software that would otherwise infringe that contributor's
498
+ copyright in it.
499
+
500
+ ## Notices
501
+
502
+ You must ensure that everyone who gets a copy of
503
+ any part of this software from you, with or without
504
+ changes, also gets the text of this license or a link to
505
+ <https://blueoakcouncil.org/license/1.0.0>.
506
+
507
+ ## Excuse
508
+
509
+ If anyone notifies you in writing that you have not
510
+ complied with [Notices](#notices), you can keep your
511
+ license by taking all practical steps to comply within 30
512
+ days after the notice. If you do not do so, your license
513
+ ends immediately.
514
+
515
+ ## Patent
516
+
517
+ Each contributor licenses you to do everything with this
518
+ software that would otherwise infringe any patent claims
519
+ they can license or become able to license.
520
+
521
+ ## Reliability
522
+
523
+ No contributor can revoke this license.
524
+
525
+ ## No Liability
526
+
527
+ **_As far as the law allows, this software comes as is,
528
+ without any warranty or condition, and no contributor
529
+ will be liable to anyone for any damages related to this
530
+ software or this license, under any kind of legal claim._**
531
+ ```
532
+
533
+ ## ISC — yaml
534
+
535
+ ```text
536
+ Copyright Eemeli Aro <eemeli@gmail.com>
537
+
538
+ Permission to use, copy, modify, and/or distribute this software for any purpose
539
+ with or without fee is hereby granted, provided that the above copyright notice
540
+ and this permission notice appear in all copies.
541
+
542
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
543
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
544
+ FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
545
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
546
+ OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
547
+ TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
548
+ THIS SOFTWARE.
549
+ ```