@codemcp/skills 1.7.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/bin/cli.mjs ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env node
2
+
3
+ import module from 'node:module';
4
+
5
+ // https://nodejs.org/api/module.html#module-compile-cache
6
+ if (module.enableCompileCache && !process.env.NODE_DISABLE_COMPILE_CACHE) {
7
+ try {
8
+ module.enableCompileCache();
9
+ } catch {
10
+ // Ignore errors
11
+ }
12
+ }
13
+
14
+ await import('../dist/cli.mjs');
@@ -0,0 +1,476 @@
1
+ # Licenses of Bundled Dependencies
2
+
3
+ The published artifact additionally contains code with the following licenses:
4
+ BSD-2-Clause, ISC, MIT
5
+
6
+ # Bundled Dependencies
7
+
8
+ ## @clack/core, @clack/prompts
9
+
10
+ License: MIT
11
+ By: Nate Moore
12
+ Repositories: https://github.com/bombshell-dev/clack, https://github.com/bombshell-dev/clack
13
+
14
+ > MIT License
15
+ >
16
+ > Copyright (c) Nate Moore
17
+ >
18
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
19
+ >
20
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
21
+ >
22
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ ---------------------------------------
25
+
26
+ ## @kwsites/file-exists
27
+
28
+ License: MIT
29
+ By: Steve King
30
+ Repository: https://github.com/kwsites/file-exists
31
+
32
+ > The MIT License (MIT)
33
+ >
34
+ > Copyright (c) 2015 Steve King
35
+ >
36
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
37
+ > this software and associated documentation files (the "Software"), to deal in
38
+ > the Software without restriction, including without limitation the rights to
39
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
40
+ > the Software, and to permit persons to whom the Software is furnished to do so,
41
+ > subject to the following conditions:
42
+ >
43
+ > The above copyright notice and this permission notice shall be included in all
44
+ > copies or substantial portions of the Software.
45
+ >
46
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
47
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
48
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
49
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
50
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
51
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
52
+
53
+ ---------------------------------------
54
+
55
+ ## @kwsites/promise-deferred
56
+
57
+ License: MIT
58
+ By: Steve King
59
+ Repository: https://github.com/kwsites/promise-deferred
60
+
61
+ > MIT License
62
+ >
63
+ > Copyright (c) 2018 kwsites
64
+ >
65
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
66
+ > of this software and associated documentation files (the "Software"), to deal
67
+ > in the Software without restriction, including without limitation the rights
68
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
69
+ > copies of the Software, and to permit persons to whom the Software is
70
+ > furnished to do so, subject to the following conditions:
71
+ >
72
+ > The above copyright notice and this permission notice shall be included in all
73
+ > copies or substantial portions of the Software.
74
+ >
75
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
76
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
77
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
78
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
79
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
80
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
81
+ > SOFTWARE.
82
+
83
+ ---------------------------------------
84
+
85
+ ## debug
86
+
87
+ License: MIT
88
+ By: Josh Junon, TJ Holowaychuk, Nathan Rajlich, Andrew Rhyne
89
+ Repository: https://github.com/debug-js/debug
90
+
91
+ > (The MIT License)
92
+ >
93
+ > Copyright (c) 2014-2017 TJ Holowaychuk <tj@vision-media.ca>
94
+ > Copyright (c) 2018-2021 Josh Junon
95
+ >
96
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software
97
+ > and associated documentation files (the 'Software'), to deal in the Software without restriction,
98
+ > including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
99
+ > and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so,
100
+ > subject to the following conditions:
101
+ >
102
+ > The above copyright notice and this permission notice shall be included in all copies or substantial
103
+ > portions of the Software.
104
+ >
105
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT
106
+ > LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
107
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
108
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
109
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
110
+
111
+ ---------------------------------------
112
+
113
+ ## esprima
114
+
115
+ License: BSD-2-Clause
116
+ By: Ariya Hidayat
117
+ Repository: https://github.com/jquery/esprima
118
+
119
+ > Copyright JS Foundation and other contributors, https://js.foundation/
120
+ >
121
+ > Redistribution and use in source and binary forms, with or without
122
+ > modification, are permitted provided that the following conditions are met:
123
+ >
124
+ > * Redistributions of source code must retain the above copyright
125
+ > notice, this list of conditions and the following disclaimer.
126
+ > * Redistributions in binary form must reproduce the above copyright
127
+ > notice, this list of conditions and the following disclaimer in the
128
+ > documentation and/or other materials provided with the distribution.
129
+ >
130
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
131
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
132
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
133
+ > ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
134
+ > DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
135
+ > (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
136
+ > LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
137
+ > ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
138
+ > (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
139
+ > THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
140
+
141
+ ---------------------------------------
142
+
143
+ ## extend-shallow
144
+
145
+ License: MIT
146
+ By: Jon Schlinkert
147
+ Repository: https://github.com/jonschlinkert/extend-shallow
148
+
149
+ > The MIT License (MIT)
150
+ >
151
+ > Copyright (c) 2014-2015, Jon Schlinkert.
152
+ >
153
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
154
+ > of this software and associated documentation files (the "Software"), to deal
155
+ > in the Software without restriction, including without limitation the rights
156
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
157
+ > copies of the Software, and to permit persons to whom the Software is
158
+ > furnished to do so, subject to the following conditions:
159
+ >
160
+ > The above copyright notice and this permission notice shall be included in
161
+ > all copies or substantial portions of the Software.
162
+ >
163
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
164
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
165
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
166
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
167
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
168
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
169
+ > THE SOFTWARE.
170
+
171
+ ---------------------------------------
172
+
173
+ ## gray-matter
174
+
175
+ License: MIT
176
+ By: Jon Schlinkert, Andrew Meyer, Brian Woodward, Caesar Schinas, Ian Storm Taylor, Osman Nuri Okumuş, Pawel Kadluczka, Rob Loach, Zach Whaley
177
+ Repository: https://github.com/jonschlinkert/gray-matter
178
+
179
+ > The MIT License (MIT)
180
+ >
181
+ > Copyright (c) 2014-2018, Jon Schlinkert.
182
+ >
183
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
184
+ > of this software and associated documentation files (the "Software"), to deal
185
+ > in the Software without restriction, including without limitation the rights
186
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
187
+ > copies of the Software, and to permit persons to whom the Software is
188
+ > furnished to do so, subject to the following conditions:
189
+ >
190
+ > The above copyright notice and this permission notice shall be included in
191
+ > all copies or substantial portions of the Software.
192
+ >
193
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
194
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
195
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
196
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
197
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
198
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
199
+ > THE SOFTWARE.
200
+
201
+ ---------------------------------------
202
+
203
+ ## has-flag, supports-color
204
+
205
+ License: MIT
206
+ By: Sindre Sorhus
207
+ Repositories: https://github.com/sindresorhus/has-flag, https://github.com/chalk/supports-color
208
+
209
+ > MIT License
210
+ >
211
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
212
+ >
213
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
214
+ >
215
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
216
+ >
217
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
218
+
219
+ ---------------------------------------
220
+
221
+ ## is-extendable
222
+
223
+ License: MIT
224
+ By: Jon Schlinkert
225
+ Repository: https://github.com/jonschlinkert/is-extendable
226
+
227
+ > The MIT License (MIT)
228
+ >
229
+ > Copyright (c) 2015, Jon Schlinkert.
230
+ >
231
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
232
+ > of this software and associated documentation files (the "Software"), to deal
233
+ > in the Software without restriction, including without limitation the rights
234
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
235
+ > copies of the Software, and to permit persons to whom the Software is
236
+ > furnished to do so, subject to the following conditions:
237
+ >
238
+ > The above copyright notice and this permission notice shall be included in
239
+ > all copies or substantial portions of the Software.
240
+ >
241
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
242
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
243
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
244
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
245
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
246
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
247
+ > THE SOFTWARE.
248
+
249
+ ---------------------------------------
250
+
251
+ ## js-yaml
252
+
253
+ License: MIT
254
+ By: Vladimir Zapparov, Aleksey V Zapparov, Vitaly Puzrin, Martin Grenfell
255
+ Repository: https://github.com/nodeca/js-yaml
256
+
257
+ > (The MIT License)
258
+ >
259
+ > Copyright (C) 2011-2015 by Vitaly Puzrin
260
+ >
261
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
262
+ > of this software and associated documentation files (the "Software"), to deal
263
+ > in the Software without restriction, including without limitation the rights
264
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
265
+ > copies of the Software, and to permit persons to whom the Software is
266
+ > furnished to do so, subject to the following conditions:
267
+ >
268
+ > The above copyright notice and this permission notice shall be included in
269
+ > all copies or substantial portions of the Software.
270
+ >
271
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
272
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
273
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
274
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
275
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
276
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
277
+ > THE SOFTWARE.
278
+
279
+ ---------------------------------------
280
+
281
+ ## kind-of
282
+
283
+ License: MIT
284
+ By: Jon Schlinkert, David Fox-Powell, James, Ken Sheedlo, laggingreflex, Miguel Mota, Peter deHaan, tunnckoCore
285
+ Repository: https://github.com/jonschlinkert/kind-of
286
+
287
+ > The MIT License (MIT)
288
+ >
289
+ > Copyright (c) 2014-2017, Jon Schlinkert.
290
+ >
291
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
292
+ > of this software and associated documentation files (the "Software"), to deal
293
+ > in the Software without restriction, including without limitation the rights
294
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
295
+ > copies of the Software, and to permit persons to whom the Software is
296
+ > furnished to do so, subject to the following conditions:
297
+ >
298
+ > The above copyright notice and this permission notice shall be included in
299
+ > all copies or substantial portions of the Software.
300
+ >
301
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
302
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
303
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
304
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
305
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
306
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
307
+ > THE SOFTWARE.
308
+
309
+ ---------------------------------------
310
+
311
+ ## ms
312
+
313
+ License: MIT
314
+ Repository: https://github.com/vercel/ms
315
+
316
+ > The MIT License (MIT)
317
+ >
318
+ > Copyright (c) 2020 Vercel, Inc.
319
+ >
320
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
321
+ > of this software and associated documentation files (the "Software"), to deal
322
+ > in the Software without restriction, including without limitation the rights
323
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
324
+ > copies of the Software, and to permit persons to whom the Software is
325
+ > furnished to do so, subject to the following conditions:
326
+ >
327
+ > The above copyright notice and this permission notice shall be included in all
328
+ > copies or substantial portions of the Software.
329
+ >
330
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
331
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
332
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
333
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
334
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
335
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
336
+ > SOFTWARE.
337
+
338
+ ---------------------------------------
339
+
340
+ ## picocolors
341
+
342
+ License: ISC
343
+ By: Alexey Raspopov
344
+ Repository: https://github.com/alexeyraspopov/picocolors
345
+
346
+ > ISC License
347
+ >
348
+ > Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
349
+ >
350
+ > Permission to use, copy, modify, and/or distribute this software for any
351
+ > purpose with or without fee is hereby granted, provided that the above
352
+ > copyright notice and this permission notice appear in all copies.
353
+ >
354
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
355
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
356
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
357
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
358
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
359
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
360
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
361
+
362
+ ---------------------------------------
363
+
364
+ ## section-matter
365
+
366
+ License: MIT
367
+ By: Jon Schlinkert
368
+ Repository: https://github.com/jonschlinkert/section-matter
369
+
370
+ > The MIT License (MIT)
371
+ >
372
+ > Copyright (c) 2017, Jon Schlinkert.
373
+ >
374
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
375
+ > of this software and associated documentation files (the "Software"), to deal
376
+ > in the Software without restriction, including without limitation the rights
377
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
378
+ > copies of the Software, and to permit persons to whom the Software is
379
+ > furnished to do so, subject to the following conditions:
380
+ >
381
+ > The above copyright notice and this permission notice shall be included in all
382
+ > copies or substantial portions of the Software.
383
+ >
384
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
385
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
386
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
387
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
388
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
389
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
390
+ > SOFTWARE.
391
+
392
+ ---------------------------------------
393
+
394
+ ## simple-git
395
+
396
+ License: MIT
397
+ By: Steve King
398
+ Repository: https://github.com/steveukx/git-js
399
+
400
+ ---------------------------------------
401
+
402
+ ## sisteransi
403
+
404
+ License: MIT
405
+ By: Terkel Gjervig
406
+ Repository: https://github.com/terkelg/sisteransi
407
+
408
+ > MIT License
409
+ >
410
+ > Copyright (c) 2018 Terkel Gjervig Nielsen
411
+ >
412
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
413
+ > of this software and associated documentation files (the "Software"), to deal
414
+ > in the Software without restriction, including without limitation the rights
415
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
416
+ > copies of the Software, and to permit persons to whom the Software is
417
+ > furnished to do so, subject to the following conditions:
418
+ >
419
+ > The above copyright notice and this permission notice shall be included in all
420
+ > copies or substantial portions of the Software.
421
+ >
422
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
423
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
424
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
425
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
426
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
427
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
428
+ > SOFTWARE.
429
+
430
+ ---------------------------------------
431
+
432
+ ## strip-bom-string
433
+
434
+ License: MIT
435
+ By: Jon Schlinkert
436
+ Repository: https://github.com/jonschlinkert/strip-bom-string
437
+
438
+ > The MIT License (MIT)
439
+ >
440
+ > Copyright (c) 2015, 2017, Jon Schlinkert
441
+ >
442
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
443
+ > of this software and associated documentation files (the "Software"), to deal
444
+ > in the Software without restriction, including without limitation the rights
445
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
446
+ > copies of the Software, and to permit persons to whom the Software is
447
+ > furnished to do so, subject to the following conditions:
448
+ >
449
+ > The above copyright notice and this permission notice shall be included in
450
+ > all copies or substantial portions of the Software.
451
+ >
452
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
453
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
454
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
455
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
456
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
457
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
458
+ > THE SOFTWARE.
459
+
460
+ ---------------------------------------
461
+
462
+ ## xdg-basedir
463
+
464
+ License: MIT
465
+ By: Sindre Sorhus
466
+ Repository: https://github.com/sindresorhus/xdg-basedir
467
+
468
+ > MIT License
469
+ >
470
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
471
+ >
472
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
473
+ >
474
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
475
+ >
476
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.