immosquare-cleaner 0.1.62 → 0.1.63

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 (1407) hide show
  1. checksums.yaml +4 -4
  2. data/lib/immosquare-cleaner/version.rb +1 -1
  3. data/lib/immosquare-cleaner.rb +48 -18
  4. data/linters/erb-lint-3.4.1.yml +14 -0
  5. data/linters/rubocop-3.4.1.yml +2 -0
  6. data/node_modules/@eslint/config-array/README.md +3 -3
  7. data/node_modules/@eslint/config-array/dist/cjs/index.d.cts +1 -1
  8. data/node_modules/@eslint/config-array/package.json +3 -3
  9. data/node_modules/@eslint/core/README.md +3 -3
  10. data/node_modules/@eslint/core/dist/cjs/types.d.cts +102 -23
  11. data/node_modules/@eslint/core/dist/esm/types.d.ts +102 -23
  12. data/node_modules/@eslint/core/package.json +1 -1
  13. data/node_modules/@eslint/eslintrc/conf/environments.js +1 -1
  14. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +21 -12
  15. data/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs.map +1 -1
  16. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +59 -34
  17. data/node_modules/@eslint/eslintrc/dist/eslintrc.cjs.map +1 -1
  18. data/node_modules/@eslint/eslintrc/dist/eslintrc.d.cts +76 -0
  19. data/node_modules/@eslint/eslintrc/lib/cascading-config-array-factory.js +6 -4
  20. data/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +2 -0
  21. data/node_modules/@eslint/eslintrc/lib/config-array/config-dependency.js +5 -5
  22. data/node_modules/@eslint/eslintrc/lib/config-array/extracted-config.js +2 -2
  23. data/node_modules/@eslint/eslintrc/lib/config-array/ignore-pattern.js +6 -5
  24. data/node_modules/@eslint/eslintrc/lib/config-array/override-tester.js +7 -5
  25. data/node_modules/@eslint/eslintrc/lib/config-array-factory.js +13 -6
  26. data/node_modules/@eslint/eslintrc/lib/flat-compat.js +4 -3
  27. data/node_modules/@eslint/eslintrc/lib/shared/ajv.js +1 -1
  28. data/node_modules/@eslint/eslintrc/lib/shared/config-ops.js +2 -2
  29. data/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +17 -8
  30. data/node_modules/@eslint/eslintrc/lib/shared/deprecation-warnings.js +1 -1
  31. data/node_modules/@eslint/eslintrc/lib/shared/relative-module-resolver.js +2 -1
  32. data/node_modules/@eslint/eslintrc/lib/types/index.d.ts +76 -0
  33. data/node_modules/@eslint/eslintrc/package.json +11 -9
  34. data/node_modules/@eslint/eslintrc/universal.js +2 -1
  35. data/node_modules/@eslint/js/package.json +1 -1
  36. data/node_modules/@eslint/js/src/index.js +2 -2
  37. data/node_modules/@eslint/object-schema/README.md +3 -3
  38. data/node_modules/@eslint/object-schema/dist/cjs/index.d.cts +2 -2
  39. data/node_modules/@eslint/object-schema/package.json +2 -2
  40. data/node_modules/@eslint/plugin-kit/README.md +3 -3
  41. data/node_modules/@eslint/plugin-kit/dist/cjs/index.d.cts +2 -2
  42. data/node_modules/@eslint/plugin-kit/package.json +9 -8
  43. data/node_modules/@humanwhocodes/retry/dist/retrier.cjs +7 -7
  44. data/node_modules/@humanwhocodes/retry/dist/retrier.js +7 -7
  45. data/node_modules/@humanwhocodes/retry/dist/retrier.min.js +1 -1
  46. data/node_modules/@humanwhocodes/retry/dist/retrier.mjs +7 -7
  47. data/node_modules/@humanwhocodes/retry/package.json +1 -1
  48. data/node_modules/eslint/README.md +36 -16
  49. data/node_modules/eslint/conf/rule-type-list.json +82 -18
  50. data/node_modules/eslint/lib/cli.js +34 -4
  51. data/node_modules/eslint/lib/config/config-loader.js +43 -26
  52. data/node_modules/eslint/lib/config/config.js +6 -1
  53. data/node_modules/eslint/lib/config/flat-config-schema.js +16 -1
  54. data/node_modules/eslint/lib/config/rule-validator.js +12 -2
  55. data/node_modules/eslint/lib/eslint/eslint.js +10 -7
  56. data/node_modules/eslint/lib/linter/linter.js +98 -8
  57. data/node_modules/eslint/lib/options.js +19 -0
  58. data/node_modules/eslint/lib/rules/array-bracket-newline.js +20 -2
  59. data/node_modules/eslint/lib/rules/array-bracket-spacing.js +20 -2
  60. data/node_modules/eslint/lib/rules/array-element-newline.js +20 -2
  61. data/node_modules/eslint/lib/rules/arrow-body-style.js +2 -1
  62. data/node_modules/eslint/lib/rules/arrow-parens.js +20 -2
  63. data/node_modules/eslint/lib/rules/arrow-spacing.js +20 -2
  64. data/node_modules/eslint/lib/rules/block-spacing.js +20 -2
  65. data/node_modules/eslint/lib/rules/brace-style.js +20 -2
  66. data/node_modules/eslint/lib/rules/callback-return.js +19 -3
  67. data/node_modules/eslint/lib/rules/camelcase.js +1 -0
  68. data/node_modules/eslint/lib/rules/capitalized-comments.js +1 -0
  69. data/node_modules/eslint/lib/rules/comma-dangle.js +20 -2
  70. data/node_modules/eslint/lib/rules/comma-spacing.js +20 -2
  71. data/node_modules/eslint/lib/rules/comma-style.js +20 -2
  72. data/node_modules/eslint/lib/rules/computed-property-spacing.js +20 -2
  73. data/node_modules/eslint/lib/rules/consistent-this.js +10 -0
  74. data/node_modules/eslint/lib/rules/curly.js +1 -0
  75. data/node_modules/eslint/lib/rules/default-case-last.js +2 -2
  76. data/node_modules/eslint/lib/rules/default-param-last.js +1 -0
  77. data/node_modules/eslint/lib/rules/dot-location.js +20 -2
  78. data/node_modules/eslint/lib/rules/dot-notation.js +1 -0
  79. data/node_modules/eslint/lib/rules/eol-last.js +20 -2
  80. data/node_modules/eslint/lib/rules/func-call-spacing.js +20 -2
  81. data/node_modules/eslint/lib/rules/func-name-matching.js +1 -0
  82. data/node_modules/eslint/lib/rules/func-style.js +1 -0
  83. data/node_modules/eslint/lib/rules/function-call-argument-newline.js +20 -2
  84. data/node_modules/eslint/lib/rules/function-paren-newline.js +20 -2
  85. data/node_modules/eslint/lib/rules/generator-star-spacing.js +20 -2
  86. data/node_modules/eslint/lib/rules/global-require.js +19 -3
  87. data/node_modules/eslint/lib/rules/handle-callback-err.js +19 -3
  88. data/node_modules/eslint/lib/rules/id-blacklist.js +14 -2
  89. data/node_modules/eslint/lib/rules/id-denylist.js +1 -0
  90. data/node_modules/eslint/lib/rules/id-length.js +1 -0
  91. data/node_modules/eslint/lib/rules/id-match.js +1 -0
  92. data/node_modules/eslint/lib/rules/implicit-arrow-linebreak.js +20 -2
  93. data/node_modules/eslint/lib/rules/indent-legacy.js +19 -3
  94. data/node_modules/eslint/lib/rules/indent.js +20 -2
  95. data/node_modules/eslint/lib/rules/init-declarations.js +1 -0
  96. data/node_modules/eslint/lib/rules/jsx-quotes.js +20 -2
  97. data/node_modules/eslint/lib/rules/key-spacing.js +20 -2
  98. data/node_modules/eslint/lib/rules/keyword-spacing.js +20 -2
  99. data/node_modules/eslint/lib/rules/line-comment-position.js +20 -2
  100. data/node_modules/eslint/lib/rules/linebreak-style.js +20 -2
  101. data/node_modules/eslint/lib/rules/lines-around-comment.js +20 -2
  102. data/node_modules/eslint/lib/rules/lines-around-directive.js +20 -2
  103. data/node_modules/eslint/lib/rules/lines-between-class-members.js +20 -2
  104. data/node_modules/eslint/lib/rules/logical-assignment-operators.js +1 -0
  105. data/node_modules/eslint/lib/rules/max-len.js +20 -2
  106. data/node_modules/eslint/lib/rules/max-statements-per-line.js +20 -2
  107. data/node_modules/eslint/lib/rules/multiline-comment-style.js +20 -2
  108. data/node_modules/eslint/lib/rules/multiline-ternary.js +20 -2
  109. data/node_modules/eslint/lib/rules/new-parens.js +20 -2
  110. data/node_modules/eslint/lib/rules/newline-after-var.js +20 -3
  111. data/node_modules/eslint/lib/rules/newline-before-return.js +20 -2
  112. data/node_modules/eslint/lib/rules/newline-per-chained-call.js +20 -2
  113. data/node_modules/eslint/lib/rules/no-buffer-constructor.js +19 -3
  114. data/node_modules/eslint/lib/rules/no-catch-shadow.js +14 -3
  115. data/node_modules/eslint/lib/rules/no-confusing-arrow.js +20 -2
  116. data/node_modules/eslint/lib/rules/no-console.js +3 -1
  117. data/node_modules/eslint/lib/rules/no-continue.js +1 -0
  118. data/node_modules/eslint/lib/rules/no-div-regex.js +1 -0
  119. data/node_modules/eslint/lib/rules/no-else-return.js +1 -0
  120. data/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +1 -0
  121. data/node_modules/eslint/lib/rules/no-extra-label.js +1 -0
  122. data/node_modules/eslint/lib/rules/no-extra-parens.js +20 -2
  123. data/node_modules/eslint/lib/rules/no-extra-semi.js +20 -2
  124. data/node_modules/eslint/lib/rules/no-floating-decimal.js +20 -2
  125. data/node_modules/eslint/lib/rules/no-implicit-coercion.js +1 -0
  126. data/node_modules/eslint/lib/rules/no-inline-comments.js +1 -0
  127. data/node_modules/eslint/lib/rules/no-label-var.js +1 -0
  128. data/node_modules/eslint/lib/rules/no-labels.js +1 -0
  129. data/node_modules/eslint/lib/rules/no-lonely-if.js +1 -0
  130. data/node_modules/eslint/lib/rules/no-magic-numbers.js +1 -0
  131. data/node_modules/eslint/lib/rules/no-mixed-operators.js +20 -2
  132. data/node_modules/eslint/lib/rules/no-mixed-requires.js +19 -3
  133. data/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +20 -2
  134. data/node_modules/eslint/lib/rules/no-multi-spaces.js +20 -2
  135. data/node_modules/eslint/lib/rules/no-multi-str.js +1 -0
  136. data/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +20 -2
  137. data/node_modules/eslint/lib/rules/no-native-reassign.js +14 -3
  138. data/node_modules/eslint/lib/rules/no-negated-condition.js +1 -0
  139. data/node_modules/eslint/lib/rules/no-negated-in-lhs.js +14 -3
  140. data/node_modules/eslint/lib/rules/no-nested-ternary.js +1 -0
  141. data/node_modules/eslint/lib/rules/no-new-object.js +14 -5
  142. data/node_modules/eslint/lib/rules/no-new-require.js +19 -3
  143. data/node_modules/eslint/lib/rules/no-new-symbol.js +14 -5
  144. data/node_modules/eslint/lib/rules/no-path-concat.js +19 -3
  145. data/node_modules/eslint/lib/rules/no-plusplus.js +1 -0
  146. data/node_modules/eslint/lib/rules/no-process-env.js +19 -3
  147. data/node_modules/eslint/lib/rules/no-process-exit.js +19 -3
  148. data/node_modules/eslint/lib/rules/no-restricted-modules.js +19 -3
  149. data/node_modules/eslint/lib/rules/no-return-await.js +7 -3
  150. data/node_modules/eslint/lib/rules/no-shadow-restricted-names.js +17 -7
  151. data/node_modules/eslint/lib/rules/no-spaced-func.js +20 -3
  152. data/node_modules/eslint/lib/rules/no-sync.js +19 -3
  153. data/node_modules/eslint/lib/rules/no-tabs.js +20 -2
  154. data/node_modules/eslint/lib/rules/no-ternary.js +1 -0
  155. data/node_modules/eslint/lib/rules/no-trailing-spaces.js +20 -2
  156. data/node_modules/eslint/lib/rules/no-undef-init.js +1 -0
  157. data/node_modules/eslint/lib/rules/no-undefined.js +1 -0
  158. data/node_modules/eslint/lib/rules/no-underscore-dangle.js +1 -0
  159. data/node_modules/eslint/lib/rules/no-unneeded-ternary.js +1 -0
  160. data/node_modules/eslint/lib/rules/no-useless-computed-key.js +1 -0
  161. data/node_modules/eslint/lib/rules/no-useless-concat.js +1 -0
  162. data/node_modules/eslint/lib/rules/no-void.js +1 -0
  163. data/node_modules/eslint/lib/rules/no-warning-comments.js +1 -0
  164. data/node_modules/eslint/lib/rules/no-whitespace-before-property.js +20 -2
  165. data/node_modules/eslint/lib/rules/nonblock-statement-body-position.js +20 -2
  166. data/node_modules/eslint/lib/rules/object-curly-newline.js +20 -2
  167. data/node_modules/eslint/lib/rules/object-curly-spacing.js +20 -2
  168. data/node_modules/eslint/lib/rules/object-property-newline.js +20 -2
  169. data/node_modules/eslint/lib/rules/object-shorthand.js +1 -0
  170. data/node_modules/eslint/lib/rules/one-var-declaration-per-line.js +20 -2
  171. data/node_modules/eslint/lib/rules/one-var.js +1 -0
  172. data/node_modules/eslint/lib/rules/operator-assignment.js +1 -0
  173. data/node_modules/eslint/lib/rules/operator-linebreak.js +20 -2
  174. data/node_modules/eslint/lib/rules/padded-blocks.js +20 -2
  175. data/node_modules/eslint/lib/rules/padding-line-between-statements.js +20 -2
  176. data/node_modules/eslint/lib/rules/prefer-arrow-callback.js +1 -0
  177. data/node_modules/eslint/lib/rules/prefer-destructuring.js +1 -0
  178. data/node_modules/eslint/lib/rules/prefer-exponentiation-operator.js +1 -0
  179. data/node_modules/eslint/lib/rules/prefer-numeric-literals.js +1 -0
  180. data/node_modules/eslint/lib/rules/prefer-object-spread.js +1 -0
  181. data/node_modules/eslint/lib/rules/prefer-reflect.js +7 -3
  182. data/node_modules/eslint/lib/rules/prefer-spread.js +1 -0
  183. data/node_modules/eslint/lib/rules/prefer-template.js +1 -0
  184. data/node_modules/eslint/lib/rules/quote-props.js +20 -2
  185. data/node_modules/eslint/lib/rules/quotes.js +20 -2
  186. data/node_modules/eslint/lib/rules/rest-spread-spacing.js +20 -2
  187. data/node_modules/eslint/lib/rules/semi-spacing.js +20 -2
  188. data/node_modules/eslint/lib/rules/semi-style.js +20 -2
  189. data/node_modules/eslint/lib/rules/semi.js +20 -2
  190. data/node_modules/eslint/lib/rules/sort-imports.js +3 -2
  191. data/node_modules/eslint/lib/rules/sort-keys.js +1 -0
  192. data/node_modules/eslint/lib/rules/sort-vars.js +1 -0
  193. data/node_modules/eslint/lib/rules/space-before-blocks.js +20 -2
  194. data/node_modules/eslint/lib/rules/space-before-function-paren.js +20 -2
  195. data/node_modules/eslint/lib/rules/space-in-parens.js +20 -2
  196. data/node_modules/eslint/lib/rules/space-infix-ops.js +20 -2
  197. data/node_modules/eslint/lib/rules/space-unary-ops.js +20 -2
  198. data/node_modules/eslint/lib/rules/spaced-comment.js +20 -2
  199. data/node_modules/eslint/lib/rules/switch-colon-spacing.js +20 -2
  200. data/node_modules/eslint/lib/rules/template-curly-spacing.js +20 -2
  201. data/node_modules/eslint/lib/rules/template-tag-spacing.js +20 -2
  202. data/node_modules/eslint/lib/rules/vars-on-top.js +1 -0
  203. data/node_modules/eslint/lib/rules/wrap-iife.js +20 -2
  204. data/node_modules/eslint/lib/rules/wrap-regex.js +20 -2
  205. data/node_modules/eslint/lib/rules/yield-star-spacing.js +20 -2
  206. data/node_modules/eslint/lib/rules/yoda.js +1 -0
  207. data/node_modules/eslint/lib/shared/flags.js +44 -6
  208. data/node_modules/eslint/lib/shared/option-utils.js +56 -0
  209. data/node_modules/eslint/lib/shared/types.js +19 -1
  210. data/node_modules/eslint/lib/types/index.d.ts +82 -64
  211. data/node_modules/eslint/lib/types/rules/best-practices.d.ts +109 -95
  212. data/node_modules/eslint/lib/types/rules/deprecated.d.ts +32 -15
  213. data/node_modules/eslint/lib/types/rules/ecmascript-6.d.ts +39 -39
  214. data/node_modules/eslint/lib/types/rules/node-commonjs.d.ts +23 -12
  215. data/node_modules/eslint/lib/types/rules/possible-errors.d.ts +86 -54
  216. data/node_modules/eslint/lib/types/rules/strict-mode.d.ts +1 -1
  217. data/node_modules/eslint/lib/types/rules/stylistic-issues.d.ts +105 -99
  218. data/node_modules/eslint/lib/types/rules/variables.d.ts +12 -12
  219. data/node_modules/eslint/messages/config-plugin-missing.js +14 -0
  220. data/node_modules/eslint/messages/config-serialize-function.js +28 -0
  221. data/node_modules/eslint/messages/eslintrc-plugins.js +6 -2
  222. data/node_modules/eslint/package.json +11 -9
  223. data/node_modules/eslint-plugin-sonarjs/README.md +2 -2
  224. data/node_modules/eslint-plugin-sonarjs/cjs/S100/generated-meta.js +1 -1
  225. data/node_modules/eslint-plugin-sonarjs/cjs/S100/index.js +1 -1
  226. data/node_modules/eslint-plugin-sonarjs/cjs/S100/meta.js +1 -1
  227. data/node_modules/eslint-plugin-sonarjs/cjs/S100/rule.js +1 -1
  228. data/node_modules/eslint-plugin-sonarjs/cjs/S101/generated-meta.js +1 -1
  229. data/node_modules/eslint-plugin-sonarjs/cjs/S101/index.js +1 -1
  230. data/node_modules/eslint-plugin-sonarjs/cjs/S101/meta.js +1 -1
  231. data/node_modules/eslint-plugin-sonarjs/cjs/S101/rule.js +1 -1
  232. data/node_modules/eslint-plugin-sonarjs/cjs/S104/generated-meta.js +1 -1
  233. data/node_modules/eslint-plugin-sonarjs/cjs/S104/index.js +1 -1
  234. data/node_modules/eslint-plugin-sonarjs/cjs/S104/meta.js +1 -1
  235. data/node_modules/eslint-plugin-sonarjs/cjs/S104/rule.js +1 -1
  236. data/node_modules/eslint-plugin-sonarjs/cjs/S105/generated-meta.js +1 -1
  237. data/node_modules/eslint-plugin-sonarjs/cjs/S105/index.js +1 -1
  238. data/node_modules/eslint-plugin-sonarjs/cjs/S105/meta.js +1 -1
  239. data/node_modules/eslint-plugin-sonarjs/cjs/S105/rule.js +1 -1
  240. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/generated-meta.js +1 -1
  241. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/index.js +1 -1
  242. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/meta.js +1 -1
  243. data/node_modules/eslint-plugin-sonarjs/cjs/S1066/rule.js +1 -1
  244. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/generated-meta.js +1 -1
  245. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/index.js +1 -1
  246. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/meta.js +1 -1
  247. data/node_modules/eslint-plugin-sonarjs/cjs/S1067/rule.js +1 -1
  248. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/generated-meta.js +1 -1
  249. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/index.js +1 -1
  250. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/meta.js +1 -1
  251. data/node_modules/eslint-plugin-sonarjs/cjs/S1110/rule.js +1 -1
  252. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/generated-meta.js +1 -1
  253. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/index.js +1 -1
  254. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/meta.js +1 -1
  255. data/node_modules/eslint-plugin-sonarjs/cjs/S1119/rule.js +1 -1
  256. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/generated-meta.js +1 -1
  257. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/index.js +1 -1
  258. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/meta.js +1 -1
  259. data/node_modules/eslint-plugin-sonarjs/cjs/S1121/rule.js +1 -1
  260. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/generated-meta.js +1 -1
  261. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/index.js +1 -1
  262. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/meta.js +1 -1
  263. data/node_modules/eslint-plugin-sonarjs/cjs/S1125/rule.js +1 -1
  264. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/generated-meta.js +1 -1
  265. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/index.js +1 -1
  266. data/node_modules/eslint-plugin-sonarjs/cjs/S1126/meta.js +1 -1
  267. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/generated-meta.js +1 -1
  268. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/index.js +1 -1
  269. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/meta.js +1 -1
  270. data/node_modules/eslint-plugin-sonarjs/cjs/S1128/rule.js +1 -1
  271. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/generated-meta.js +1 -1
  272. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/index.js +1 -1
  273. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/meta.js +1 -1
  274. data/node_modules/eslint-plugin-sonarjs/cjs/S1134/rule.js +1 -1
  275. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/generated-meta.js +1 -1
  276. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/index.js +1 -1
  277. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/meta.js +1 -1
  278. data/node_modules/eslint-plugin-sonarjs/cjs/S1135/rule.js +1 -1
  279. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/generated-meta.js +1 -1
  280. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/index.js +1 -1
  281. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/meta.js +1 -1
  282. data/node_modules/eslint-plugin-sonarjs/cjs/S1154/rule.js +1 -1
  283. data/node_modules/eslint-plugin-sonarjs/cjs/S117/generated-meta.js +1 -1
  284. data/node_modules/eslint-plugin-sonarjs/cjs/S117/index.js +1 -1
  285. data/node_modules/eslint-plugin-sonarjs/cjs/S117/meta.js +1 -1
  286. data/node_modules/eslint-plugin-sonarjs/cjs/S117/rule.js +1 -1
  287. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/generated-meta.js +1 -1
  288. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/index.js +1 -1
  289. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/meta.js +1 -1
  290. data/node_modules/eslint-plugin-sonarjs/cjs/S1172/rule.js +1 -1
  291. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/generated-meta.js +1 -1
  292. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/index.js +1 -1
  293. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/meta.js +1 -1
  294. data/node_modules/eslint-plugin-sonarjs/cjs/S1192/rule.js +1 -1
  295. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/generated-meta.js +1 -1
  296. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/index.js +1 -1
  297. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/meta.js +1 -1
  298. data/node_modules/eslint-plugin-sonarjs/cjs/S1219/rule.js +1 -1
  299. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/generated-meta.js +1 -1
  300. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/index.js +1 -1
  301. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/meta.js +1 -1
  302. data/node_modules/eslint-plugin-sonarjs/cjs/S1226/rule.js +1 -1
  303. data/node_modules/eslint-plugin-sonarjs/cjs/S124/generated-meta.js +1 -1
  304. data/node_modules/eslint-plugin-sonarjs/cjs/S124/index.js +1 -1
  305. data/node_modules/eslint-plugin-sonarjs/cjs/S124/meta.js +1 -1
  306. data/node_modules/eslint-plugin-sonarjs/cjs/S124/rule.js +1 -1
  307. data/node_modules/eslint-plugin-sonarjs/cjs/S125/generated-meta.js +1 -1
  308. data/node_modules/eslint-plugin-sonarjs/cjs/S125/index.js +1 -1
  309. data/node_modules/eslint-plugin-sonarjs/cjs/S125/meta.js +1 -1
  310. data/node_modules/eslint-plugin-sonarjs/cjs/S125/rule.js +15 -35
  311. data/node_modules/eslint-plugin-sonarjs/cjs/S126/generated-meta.js +1 -1
  312. data/node_modules/eslint-plugin-sonarjs/cjs/S126/index.js +1 -1
  313. data/node_modules/eslint-plugin-sonarjs/cjs/S126/meta.js +1 -1
  314. data/node_modules/eslint-plugin-sonarjs/cjs/S126/rule.js +1 -1
  315. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/generated-meta.js +1 -1
  316. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/index.js +1 -1
  317. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/meta.js +1 -1
  318. data/node_modules/eslint-plugin-sonarjs/cjs/S1264/rule.js +1 -1
  319. data/node_modules/eslint-plugin-sonarjs/cjs/S128/generated-meta.js +1 -1
  320. data/node_modules/eslint-plugin-sonarjs/cjs/S128/index.js +1 -1
  321. data/node_modules/eslint-plugin-sonarjs/cjs/S128/meta.js +1 -1
  322. data/node_modules/eslint-plugin-sonarjs/cjs/S128/rule.js +2 -5
  323. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/generated-meta.js +1 -1
  324. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/index.js +1 -1
  325. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/meta.js +1 -1
  326. data/node_modules/eslint-plugin-sonarjs/cjs/S1291/rule.js +1 -1
  327. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/generated-meta.js +1 -1
  328. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/index.js +1 -1
  329. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/meta.js +1 -1
  330. data/node_modules/eslint-plugin-sonarjs/cjs/S1301/rule.js +1 -1
  331. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/generated-meta.js +1 -1
  332. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/index.js +1 -1
  333. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/meta.js +1 -1
  334. data/node_modules/eslint-plugin-sonarjs/cjs/S1313/rule.js +1 -1
  335. data/node_modules/eslint-plugin-sonarjs/cjs/S134/generated-meta.js +1 -1
  336. data/node_modules/eslint-plugin-sonarjs/cjs/S134/index.js +1 -1
  337. data/node_modules/eslint-plugin-sonarjs/cjs/S134/meta.js +1 -1
  338. data/node_modules/eslint-plugin-sonarjs/cjs/S134/rule.js +1 -1
  339. data/node_modules/eslint-plugin-sonarjs/cjs/S135/generated-meta.js +1 -1
  340. data/node_modules/eslint-plugin-sonarjs/cjs/S135/index.js +1 -1
  341. data/node_modules/eslint-plugin-sonarjs/cjs/S135/meta.js +1 -1
  342. data/node_modules/eslint-plugin-sonarjs/cjs/S135/rule.js +1 -1
  343. data/node_modules/eslint-plugin-sonarjs/cjs/S138/generated-meta.js +1 -1
  344. data/node_modules/eslint-plugin-sonarjs/cjs/S138/index.js +1 -1
  345. data/node_modules/eslint-plugin-sonarjs/cjs/S138/meta.js +1 -1
  346. data/node_modules/eslint-plugin-sonarjs/cjs/S138/rule.js +1 -1
  347. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/generated-meta.js +1 -1
  348. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/index.js +1 -1
  349. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/meta.js +1 -1
  350. data/node_modules/eslint-plugin-sonarjs/cjs/S1439/rule.js +1 -1
  351. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/generated-meta.js +1 -1
  352. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/index.js +1 -1
  353. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/meta.js +1 -1
  354. data/node_modules/eslint-plugin-sonarjs/cjs/S1444/rule.js +1 -1
  355. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/generated-meta.js +1 -1
  356. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/index.js +1 -1
  357. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/meta.js +1 -1
  358. data/node_modules/eslint-plugin-sonarjs/cjs/S1451/rule.js +1 -1
  359. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/generated-meta.js +1 -1
  360. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/index.js +1 -1
  361. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/meta.js +1 -1
  362. data/node_modules/eslint-plugin-sonarjs/cjs/S1472/rule.js +1 -1
  363. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/generated-meta.js +1 -1
  364. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/index.js +1 -1
  365. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/meta.js +1 -1
  366. data/node_modules/eslint-plugin-sonarjs/cjs/S1479/rule.js +1 -1
  367. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/generated-meta.js +1 -1
  368. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/index.js +1 -1
  369. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/meta.js +1 -1
  370. data/node_modules/eslint-plugin-sonarjs/cjs/S1481/rule.js +1 -1
  371. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/generated-meta.js +1 -1
  372. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/index.js +1 -1
  373. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/meta.js +1 -1
  374. data/node_modules/eslint-plugin-sonarjs/cjs/S1488/rule.js +1 -1
  375. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/generated-meta.js +1 -1
  376. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/index.js +1 -1
  377. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/meta.js +1 -1
  378. data/node_modules/eslint-plugin-sonarjs/cjs/S1515/rule.js +1 -1
  379. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/generated-meta.js +1 -1
  380. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/index.js +1 -1
  381. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/meta.js +1 -1
  382. data/node_modules/eslint-plugin-sonarjs/cjs/S1523/rule.js +1 -1
  383. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/generated-meta.js +1 -1
  384. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/index.js +1 -1
  385. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/meta.js +1 -1
  386. data/node_modules/eslint-plugin-sonarjs/cjs/S1526/rule.js +1 -1
  387. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/generated-meta.js +1 -1
  388. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/index.js +1 -1
  389. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/meta.js +1 -1
  390. data/node_modules/eslint-plugin-sonarjs/cjs/S1527/rule.js +1 -1
  391. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/generated-meta.js +1 -1
  392. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/index.js +1 -1
  393. data/node_modules/eslint-plugin-sonarjs/cjs/S1528/meta.js +1 -1
  394. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/generated-meta.js +1 -1
  395. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/index.js +1 -1
  396. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/meta.js +1 -1
  397. data/node_modules/eslint-plugin-sonarjs/cjs/S1529/rule.js +1 -1
  398. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/generated-meta.js +1 -1
  399. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/index.js +1 -1
  400. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/meta.js +1 -1
  401. data/node_modules/eslint-plugin-sonarjs/cjs/S1530/rule.js +1 -1
  402. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/generated-meta.js +1 -1
  403. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/index.js +1 -1
  404. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/meta.js +1 -1
  405. data/node_modules/eslint-plugin-sonarjs/cjs/S1533/rule.js +1 -1
  406. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/generated-meta.js +1 -1
  407. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/index.js +1 -1
  408. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/meta.js +1 -1
  409. data/node_modules/eslint-plugin-sonarjs/cjs/S1535/rule.js +1 -1
  410. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/generated-meta.js +1 -1
  411. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/index.js +1 -1
  412. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/meta.js +1 -1
  413. data/node_modules/eslint-plugin-sonarjs/cjs/S1541/rule.js +1 -1
  414. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/generated-meta.js +1 -1
  415. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/index.js +1 -1
  416. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/meta.js +1 -1
  417. data/node_modules/eslint-plugin-sonarjs/cjs/S1607/rule.js +1 -1
  418. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/generated-meta.js +1 -1
  419. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/index.js +1 -1
  420. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/meta.js +1 -1
  421. data/node_modules/eslint-plugin-sonarjs/cjs/S1751/rule.js +1 -1
  422. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/generated-meta.js +1 -1
  423. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/index.js +1 -1
  424. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/meta.js +1 -1
  425. data/node_modules/eslint-plugin-sonarjs/cjs/S1764/rule.js +1 -1
  426. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/generated-meta.js +1 -1
  427. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/index.js +1 -1
  428. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/meta.js +1 -1
  429. data/node_modules/eslint-plugin-sonarjs/cjs/S1821/rule.js +1 -1
  430. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/generated-meta.js +1 -1
  431. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/index.js +1 -1
  432. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/meta.js +1 -1
  433. data/node_modules/eslint-plugin-sonarjs/cjs/S1848/rule.js +1 -1
  434. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/generated-meta.js +1 -1
  435. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/index.js +1 -1
  436. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/meta.js +1 -1
  437. data/node_modules/eslint-plugin-sonarjs/cjs/S1854/rule.js +1 -1
  438. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/generated-meta.js +1 -1
  439. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/index.js +1 -1
  440. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/meta.js +1 -1
  441. data/node_modules/eslint-plugin-sonarjs/cjs/S1862/rule.js +1 -1
  442. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/generated-meta.js +1 -1
  443. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/index.js +1 -1
  444. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/meta.js +1 -1
  445. data/node_modules/eslint-plugin-sonarjs/cjs/S1871/rule.js +1 -1
  446. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/generated-meta.js +1 -1
  447. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/index.js +1 -1
  448. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/meta.js +1 -1
  449. data/node_modules/eslint-plugin-sonarjs/cjs/S1874/rule.js +1 -1
  450. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/generated-meta.js +1 -1
  451. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/index.js +1 -1
  452. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/meta.js +1 -1
  453. data/node_modules/eslint-plugin-sonarjs/cjs/S1940/rule.js +1 -1
  454. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/generated-meta.js +1 -1
  455. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/index.js +1 -1
  456. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/meta.js +1 -1
  457. data/node_modules/eslint-plugin-sonarjs/cjs/S1994/rule.js +1 -1
  458. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/generated-meta.js +1 -1
  459. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/index.js +1 -1
  460. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/meta.js +1 -1
  461. data/node_modules/eslint-plugin-sonarjs/cjs/S2004/rule.js +1 -1
  462. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/generated-meta.js +1 -1
  463. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/index.js +1 -1
  464. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/meta.js +1 -1
  465. data/node_modules/eslint-plugin-sonarjs/cjs/S2068/rule.js +1 -1
  466. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/generated-meta.js +1 -1
  467. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/index.js +1 -1
  468. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/meta.js +1 -1
  469. data/node_modules/eslint-plugin-sonarjs/cjs/S2077/rule.js +1 -1
  470. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/generated-meta.js +1 -1
  471. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/index.js +1 -1
  472. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/meta.js +1 -1
  473. data/node_modules/eslint-plugin-sonarjs/cjs/S2092/rule.js +1 -1
  474. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/generated-meta.js +1 -1
  475. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/index.js +1 -1
  476. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/meta.js +1 -1
  477. data/node_modules/eslint-plugin-sonarjs/cjs/S2123/rule.js +1 -1
  478. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/generated-meta.js +1 -1
  479. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/index.js +1 -1
  480. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/meta.js +1 -1
  481. data/node_modules/eslint-plugin-sonarjs/cjs/S2137/rule.js +1 -1
  482. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/generated-meta.js +1 -1
  483. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/index.js +1 -1
  484. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/meta.js +1 -1
  485. data/node_modules/eslint-plugin-sonarjs/cjs/S2138/rule.js +1 -1
  486. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/generated-meta.js +1 -1
  487. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/index.js +1 -1
  488. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/meta.js +1 -1
  489. data/node_modules/eslint-plugin-sonarjs/cjs/S2187/rule.js +1 -1
  490. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/generated-meta.js +1 -1
  491. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/index.js +1 -1
  492. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/meta.js +1 -1
  493. data/node_modules/eslint-plugin-sonarjs/cjs/S2201/rule.js +1 -1
  494. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/generated-meta.js +1 -1
  495. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/index.js +1 -1
  496. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/meta.js +1 -1
  497. data/node_modules/eslint-plugin-sonarjs/cjs/S2208/rule.js +1 -1
  498. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/generated-meta.js +1 -1
  499. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/index.js +1 -1
  500. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/meta.js +1 -1
  501. data/node_modules/eslint-plugin-sonarjs/cjs/S2234/rule.js +1 -1
  502. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/generated-meta.js +1 -1
  503. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/index.js +1 -1
  504. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/meta.js +1 -1
  505. data/node_modules/eslint-plugin-sonarjs/cjs/S2245/rule.js +1 -1
  506. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/generated-meta.js +1 -1
  507. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/index.js +1 -1
  508. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/meta.js +1 -1
  509. data/node_modules/eslint-plugin-sonarjs/cjs/S2251/rule.js +1 -1
  510. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/generated-meta.js +1 -1
  511. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/index.js +1 -1
  512. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/meta.js +1 -1
  513. data/node_modules/eslint-plugin-sonarjs/cjs/S2255/rule.js +1 -1
  514. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/generated-meta.js +1 -1
  515. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/index.js +1 -1
  516. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/meta.js +1 -1
  517. data/node_modules/eslint-plugin-sonarjs/cjs/S2259/rule.js +1 -1
  518. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/generated-meta.js +1 -1
  519. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/index.js +1 -1
  520. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/meta.js +1 -1
  521. data/node_modules/eslint-plugin-sonarjs/cjs/S2301/rule.js +1 -1
  522. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/generated-meta.js +1 -1
  523. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/index.js +1 -1
  524. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/meta.js +1 -1
  525. data/node_modules/eslint-plugin-sonarjs/cjs/S2310/rule.js +1 -1
  526. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/generated-meta.js +1 -1
  527. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/index.js +1 -1
  528. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/meta.js +1 -1
  529. data/node_modules/eslint-plugin-sonarjs/cjs/S2392/rule.js +1 -1
  530. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/generated-meta.js +1 -1
  531. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/index.js +1 -1
  532. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/meta.js +1 -1
  533. data/node_modules/eslint-plugin-sonarjs/cjs/S2424/rule.js +1 -1
  534. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/generated-meta.js +1 -1
  535. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/index.js +1 -1
  536. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/meta.js +1 -1
  537. data/node_modules/eslint-plugin-sonarjs/cjs/S2428/rule.js +1 -1
  538. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/generated-meta.js +1 -1
  539. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/index.js +1 -1
  540. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/meta.js +1 -1
  541. data/node_modules/eslint-plugin-sonarjs/cjs/S2486/rule.js +1 -1
  542. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/generated-meta.js +1 -1
  543. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/index.js +1 -1
  544. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/meta.js +1 -1
  545. data/node_modules/eslint-plugin-sonarjs/cjs/S2589/rule.js +1 -1
  546. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/generated-meta.js +1 -1
  547. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/index.js +1 -1
  548. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/meta.js +1 -1
  549. data/node_modules/eslint-plugin-sonarjs/cjs/S2598/rule.js +1 -1
  550. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/generated-meta.js +1 -1
  551. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/index.js +1 -1
  552. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/meta.js +1 -1
  553. data/node_modules/eslint-plugin-sonarjs/cjs/S2612/rule.js +1 -1
  554. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/generated-meta.js +1 -1
  555. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/index.js +1 -1
  556. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/meta.js +1 -1
  557. data/node_modules/eslint-plugin-sonarjs/cjs/S2639/rule.js +1 -1
  558. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/generated-meta.js +1 -1
  559. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/index.js +1 -1
  560. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/meta.js +1 -1
  561. data/node_modules/eslint-plugin-sonarjs/cjs/S2681/rule.js +1 -1
  562. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/generated-meta.js +1 -1
  563. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/index.js +1 -1
  564. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/meta.js +1 -1
  565. data/node_modules/eslint-plugin-sonarjs/cjs/S2692/rule.js +1 -1
  566. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/generated-meta.js +1 -1
  567. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/index.js +1 -1
  568. data/node_modules/eslint-plugin-sonarjs/cjs/S2699/meta.js +1 -1
  569. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/generated-meta.js +1 -1
  570. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/index.js +1 -1
  571. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/meta.js +1 -1
  572. data/node_modules/eslint-plugin-sonarjs/cjs/S2703/rule.js +1 -1
  573. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/generated-meta.js +1 -1
  574. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/index.js +1 -1
  575. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/meta.js +1 -1
  576. data/node_modules/eslint-plugin-sonarjs/cjs/S2737/rule.js +1 -1
  577. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/generated-meta.js +1 -1
  578. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/index.js +1 -1
  579. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/meta.js +1 -1
  580. data/node_modules/eslint-plugin-sonarjs/cjs/S2755/rule.js +1 -1
  581. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/generated-meta.js +1 -1
  582. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/index.js +1 -1
  583. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/meta.js +1 -1
  584. data/node_modules/eslint-plugin-sonarjs/cjs/S2757/rule.js +1 -1
  585. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/generated-meta.js +1 -1
  586. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/index.js +1 -1
  587. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/meta.js +1 -1
  588. data/node_modules/eslint-plugin-sonarjs/cjs/S2817/rule.js +1 -1
  589. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/generated-meta.js +1 -1
  590. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/index.js +1 -1
  591. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/meta.js +1 -1
  592. data/node_modules/eslint-plugin-sonarjs/cjs/S2819/rule.js +1 -1
  593. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/generated-meta.js +1 -1
  594. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/index.js +1 -1
  595. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/meta.js +1 -1
  596. data/node_modules/eslint-plugin-sonarjs/cjs/S2870/rule.js +1 -1
  597. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/generated-meta.js +1 -1
  598. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/index.js +1 -1
  599. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/meta.js +1 -1
  600. data/node_modules/eslint-plugin-sonarjs/cjs/S2871/rule.js +1 -1
  601. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/generated-meta.js +1 -1
  602. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/index.js +1 -1
  603. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/meta.js +1 -1
  604. data/node_modules/eslint-plugin-sonarjs/cjs/S2970/rule.js +1 -1
  605. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/generated-meta.js +1 -1
  606. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/index.js +1 -1
  607. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/meta.js +1 -1
  608. data/node_modules/eslint-plugin-sonarjs/cjs/S2990/rule.js +1 -1
  609. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/generated-meta.js +1 -1
  610. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/index.js +1 -1
  611. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/meta.js +1 -1
  612. data/node_modules/eslint-plugin-sonarjs/cjs/S2999/rule.js +1 -1
  613. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/generated-meta.js +1 -1
  614. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/index.js +1 -1
  615. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/meta.js +1 -1
  616. data/node_modules/eslint-plugin-sonarjs/cjs/S3001/rule.js +1 -1
  617. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/generated-meta.js +1 -1
  618. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/index.js +1 -1
  619. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/meta.js +1 -1
  620. data/node_modules/eslint-plugin-sonarjs/cjs/S3003/rule.js +1 -1
  621. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/generated-meta.js +1 -1
  622. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/index.js +1 -1
  623. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/meta.js +1 -1
  624. data/node_modules/eslint-plugin-sonarjs/cjs/S3317/rule.js +1 -1
  625. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/generated-meta.js +1 -1
  626. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/index.js +1 -1
  627. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/meta.js +1 -1
  628. data/node_modules/eslint-plugin-sonarjs/cjs/S3330/rule.js +1 -1
  629. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/generated-meta.js +1 -1
  630. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/index.js +1 -1
  631. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/meta.js +1 -1
  632. data/node_modules/eslint-plugin-sonarjs/cjs/S3358/rule.js +1 -1
  633. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/generated-meta.js +1 -1
  634. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/index.js +1 -1
  635. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/meta.js +1 -1
  636. data/node_modules/eslint-plugin-sonarjs/cjs/S3402/rule.js +1 -1
  637. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/generated-meta.js +1 -1
  638. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/index.js +1 -1
  639. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/meta.js +1 -1
  640. data/node_modules/eslint-plugin-sonarjs/cjs/S3403/rule.js +1 -1
  641. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/generated-meta.js +1 -1
  642. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/index.js +1 -1
  643. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/meta.js +1 -1
  644. data/node_modules/eslint-plugin-sonarjs/cjs/S3415/rule.js +1 -1
  645. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/generated-meta.js +1 -1
  646. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/index.js +1 -1
  647. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/meta.js +1 -1
  648. data/node_modules/eslint-plugin-sonarjs/cjs/S3499/rule.js +1 -1
  649. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/generated-meta.js +1 -1
  650. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/index.js +1 -1
  651. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/meta.js +1 -1
  652. data/node_modules/eslint-plugin-sonarjs/cjs/S3500/rule.js +1 -1
  653. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/generated-meta.js +1 -1
  654. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/index.js +1 -1
  655. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/meta.js +1 -1
  656. data/node_modules/eslint-plugin-sonarjs/cjs/S3513/rule.js +1 -1
  657. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/generated-meta.js +1 -1
  658. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/index.js +1 -1
  659. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/meta.js +1 -1
  660. data/node_modules/eslint-plugin-sonarjs/cjs/S3514/rule.js +1 -1
  661. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/generated-meta.js +1 -1
  662. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/index.js +1 -1
  663. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/meta.js +1 -1
  664. data/node_modules/eslint-plugin-sonarjs/cjs/S3516/rule.js +1 -1
  665. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/generated-meta.js +1 -1
  666. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/index.js +1 -1
  667. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/meta.js +1 -1
  668. data/node_modules/eslint-plugin-sonarjs/cjs/S3524/rule.js +1 -1
  669. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/generated-meta.js +1 -1
  670. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/index.js +1 -1
  671. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/meta.js +1 -1
  672. data/node_modules/eslint-plugin-sonarjs/cjs/S3525/rule.js +1 -1
  673. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/generated-meta.js +1 -1
  674. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/index.js +1 -1
  675. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/meta.js +1 -1
  676. data/node_modules/eslint-plugin-sonarjs/cjs/S3531/rule.js +1 -1
  677. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/generated-meta.js +1 -1
  678. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/index.js +1 -1
  679. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/meta.js +1 -1
  680. data/node_modules/eslint-plugin-sonarjs/cjs/S3533/rule.js +1 -1
  681. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/generated-meta.js +1 -1
  682. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/index.js +1 -1
  683. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/meta.js +1 -1
  684. data/node_modules/eslint-plugin-sonarjs/cjs/S3579/rule.js +1 -1
  685. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/generated-meta.js +1 -1
  686. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/index.js +1 -1
  687. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/meta.js +1 -1
  688. data/node_modules/eslint-plugin-sonarjs/cjs/S3616/rule.js +1 -1
  689. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/generated-meta.js +1 -1
  690. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/index.js +1 -1
  691. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/meta.js +1 -1
  692. data/node_modules/eslint-plugin-sonarjs/cjs/S3626/rule.js +1 -1
  693. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/generated-meta.js +1 -1
  694. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/index.js +1 -1
  695. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/meta.js +1 -1
  696. data/node_modules/eslint-plugin-sonarjs/cjs/S3686/rule.js +1 -1
  697. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/generated-meta.js +1 -1
  698. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/index.js +1 -1
  699. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/meta.js +1 -1
  700. data/node_modules/eslint-plugin-sonarjs/cjs/S3699/rule.js +1 -1
  701. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/generated-meta.js +1 -1
  702. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/index.js +1 -1
  703. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/meta.js +1 -1
  704. data/node_modules/eslint-plugin-sonarjs/cjs/S3723/rule.js +1 -1
  705. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/generated-meta.js +1 -1
  706. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/index.js +1 -1
  707. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/meta.js +1 -1
  708. data/node_modules/eslint-plugin-sonarjs/cjs/S3735/rule.js +1 -1
  709. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/generated-meta.js +1 -1
  710. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/index.js +1 -1
  711. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/meta.js +1 -1
  712. data/node_modules/eslint-plugin-sonarjs/cjs/S3757/rule.js +1 -1
  713. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/generated-meta.js +1 -1
  714. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/index.js +1 -1
  715. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/meta.js +1 -1
  716. data/node_modules/eslint-plugin-sonarjs/cjs/S3758/rule.js +1 -1
  717. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/generated-meta.js +1 -1
  718. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/index.js +1 -1
  719. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/meta.js +1 -1
  720. data/node_modules/eslint-plugin-sonarjs/cjs/S3760/rule.js +1 -1
  721. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/generated-meta.js +2 -2
  722. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/index.js +1 -1
  723. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/meta.js +1 -1
  724. data/node_modules/eslint-plugin-sonarjs/cjs/S3776/rule.js +3 -2
  725. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/generated-meta.js +1 -1
  726. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/index.js +1 -1
  727. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/meta.js +1 -1
  728. data/node_modules/eslint-plugin-sonarjs/cjs/S3782/rule.js +1 -1
  729. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/generated-meta.js +1 -1
  730. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/index.js +1 -1
  731. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/meta.js +1 -1
  732. data/node_modules/eslint-plugin-sonarjs/cjs/S3785/rule.js +1 -1
  733. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/generated-meta.js +1 -1
  734. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/index.js +1 -1
  735. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/meta.js +1 -1
  736. data/node_modules/eslint-plugin-sonarjs/cjs/S3796/rule.js +1 -1
  737. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/generated-meta.js +1 -1
  738. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/index.js +1 -1
  739. data/node_modules/eslint-plugin-sonarjs/cjs/S3798/meta.js +1 -1
  740. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/generated-meta.js +1 -1
  741. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/index.js +1 -1
  742. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/meta.js +1 -1
  743. data/node_modules/eslint-plugin-sonarjs/cjs/S3800/rule.js +1 -1
  744. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/generated-meta.js +1 -1
  745. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/index.js +1 -1
  746. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/meta.js +1 -1
  747. data/node_modules/eslint-plugin-sonarjs/cjs/S3801/rule.js +21 -2
  748. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/generated-meta.js +1 -1
  749. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/index.js +1 -1
  750. data/node_modules/eslint-plugin-sonarjs/cjs/S3827/meta.js +1 -1
  751. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/generated-meta.js +1 -1
  752. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/index.js +1 -1
  753. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/meta.js +1 -1
  754. data/node_modules/eslint-plugin-sonarjs/cjs/S3854/rule.js +1 -1
  755. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/generated-meta.js +1 -1
  756. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/index.js +1 -1
  757. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/meta.js +1 -1
  758. data/node_modules/eslint-plugin-sonarjs/cjs/S3923/rule.js +1 -1
  759. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/generated-meta.js +1 -1
  760. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/index.js +1 -1
  761. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/meta.js +1 -1
  762. data/node_modules/eslint-plugin-sonarjs/cjs/S3972/rule.js +1 -1
  763. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/generated-meta.js +1 -1
  764. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/index.js +1 -1
  765. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/meta.js +1 -1
  766. data/node_modules/eslint-plugin-sonarjs/cjs/S3973/rule.js +1 -1
  767. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/generated-meta.js +1 -1
  768. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/index.js +1 -1
  769. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/meta.js +1 -1
  770. data/node_modules/eslint-plugin-sonarjs/cjs/S3981/rule.js +1 -1
  771. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/generated-meta.js +1 -1
  772. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/index.js +1 -1
  773. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/meta.js +1 -1
  774. data/node_modules/eslint-plugin-sonarjs/cjs/S3984/rule.js +1 -1
  775. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/generated-meta.js +1 -1
  776. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/index.js +1 -1
  777. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/meta.js +1 -1
  778. data/node_modules/eslint-plugin-sonarjs/cjs/S4030/rule.js +1 -1
  779. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/generated-meta.js +1 -1
  780. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/index.js +1 -1
  781. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/meta.js +1 -1
  782. data/node_modules/eslint-plugin-sonarjs/cjs/S4036/rule.js +1 -1
  783. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/generated-meta.js +1 -1
  784. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/index.js +1 -1
  785. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/meta.js +1 -1
  786. data/node_modules/eslint-plugin-sonarjs/cjs/S4043/rule.js +1 -1
  787. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/generated-meta.js +1 -1
  788. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/index.js +1 -1
  789. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/meta.js +1 -1
  790. data/node_modules/eslint-plugin-sonarjs/cjs/S4123/rule.js +1 -1
  791. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/generated-meta.js +1 -1
  792. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/index.js +1 -1
  793. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/meta.js +1 -1
  794. data/node_modules/eslint-plugin-sonarjs/cjs/S4139/rule.js +1 -1
  795. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/generated-meta.js +1 -1
  796. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/index.js +1 -1
  797. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/meta.js +1 -1
  798. data/node_modules/eslint-plugin-sonarjs/cjs/S4143/rule.js +1 -1
  799. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/generated-meta.js +1 -1
  800. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/index.js +1 -1
  801. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/meta.js +1 -1
  802. data/node_modules/eslint-plugin-sonarjs/cjs/S4144/rule.js +1 -1
  803. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/generated-meta.js +1 -1
  804. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/index.js +1 -1
  805. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/meta.js +1 -1
  806. data/node_modules/eslint-plugin-sonarjs/cjs/S4158/rule.js +1 -1
  807. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/generated-meta.js +1 -1
  808. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/index.js +1 -1
  809. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/meta.js +1 -1
  810. data/node_modules/eslint-plugin-sonarjs/cjs/S4165/rule.js +1 -1
  811. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/generated-meta.js +1 -1
  812. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/index.js +1 -1
  813. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/meta.js +1 -1
  814. data/node_modules/eslint-plugin-sonarjs/cjs/S4322/rule.js +1 -1
  815. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/generated-meta.js +1 -1
  816. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/index.js +1 -1
  817. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/meta.js +1 -1
  818. data/node_modules/eslint-plugin-sonarjs/cjs/S4323/rule.js +1 -1
  819. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/generated-meta.js +1 -1
  820. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/index.js +1 -1
  821. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/meta.js +1 -1
  822. data/node_modules/eslint-plugin-sonarjs/cjs/S4324/rule.js +1 -1
  823. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/generated-meta.js +1 -1
  824. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/index.js +1 -1
  825. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/meta.js +1 -1
  826. data/node_modules/eslint-plugin-sonarjs/cjs/S4328/rule.js +1 -1
  827. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/generated-meta.js +1 -1
  828. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/index.js +1 -1
  829. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/meta.js +1 -1
  830. data/node_modules/eslint-plugin-sonarjs/cjs/S4335/rule.js +1 -1
  831. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/generated-meta.js +1 -1
  832. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/index.js +1 -1
  833. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/meta.js +1 -1
  834. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.aws.js +1 -1
  835. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.js +1 -1
  836. data/node_modules/eslint-plugin-sonarjs/cjs/S4423/rule.lib.js +1 -1
  837. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/generated-meta.js +1 -1
  838. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/index.js +1 -1
  839. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/meta.js +1 -1
  840. data/node_modules/eslint-plugin-sonarjs/cjs/S4426/rule.js +1 -1
  841. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/generated-meta.js +1 -1
  842. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/index.js +1 -1
  843. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/meta.js +1 -1
  844. data/node_modules/eslint-plugin-sonarjs/cjs/S4502/rule.js +1 -1
  845. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/generated-meta.js +1 -1
  846. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/index.js +1 -1
  847. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/meta.js +1 -1
  848. data/node_modules/eslint-plugin-sonarjs/cjs/S4507/rule.js +1 -1
  849. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/generated-meta.js +1 -1
  850. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/index.js +1 -1
  851. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/meta.js +1 -1
  852. data/node_modules/eslint-plugin-sonarjs/cjs/S4524/rule.js +1 -1
  853. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/generated-meta.js +1 -1
  854. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/index.js +1 -1
  855. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/meta.js +1 -1
  856. data/node_modules/eslint-plugin-sonarjs/cjs/S4619/rule.js +1 -1
  857. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/generated-meta.js +1 -1
  858. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/index.js +1 -1
  859. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/meta.js +1 -1
  860. data/node_modules/eslint-plugin-sonarjs/cjs/S4621/rule.js +1 -1
  861. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/generated-meta.js +1 -1
  862. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/index.js +1 -1
  863. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/meta.js +1 -1
  864. data/node_modules/eslint-plugin-sonarjs/cjs/S4622/rule.js +1 -1
  865. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/generated-meta.js +1 -1
  866. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/index.js +1 -1
  867. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/meta.js +1 -1
  868. data/node_modules/eslint-plugin-sonarjs/cjs/S4623/rule.js +1 -1
  869. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/generated-meta.js +1 -1
  870. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/index.js +1 -1
  871. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/meta.js +1 -1
  872. data/node_modules/eslint-plugin-sonarjs/cjs/S4624/rule.js +1 -1
  873. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/generated-meta.js +1 -1
  874. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/index.js +1 -1
  875. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/meta.js +1 -1
  876. data/node_modules/eslint-plugin-sonarjs/cjs/S4634/rule.js +1 -1
  877. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/generated-meta.js +1 -1
  878. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/index.js +1 -1
  879. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/meta.js +1 -1
  880. data/node_modules/eslint-plugin-sonarjs/cjs/S4721/rule.js +1 -1
  881. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/generated-meta.js +1 -1
  882. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/index.js +1 -1
  883. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/meta.js +1 -1
  884. data/node_modules/eslint-plugin-sonarjs/cjs/S4782/rule.js +1 -1
  885. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/generated-meta.js +1 -1
  886. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/index.js +1 -1
  887. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/meta.js +1 -1
  888. data/node_modules/eslint-plugin-sonarjs/cjs/S4784/rule.js +1 -1
  889. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/generated-meta.js +1 -1
  890. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/index.js +1 -1
  891. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/meta.js +1 -1
  892. data/node_modules/eslint-plugin-sonarjs/cjs/S4787/rule.js +1 -1
  893. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/generated-meta.js +1 -1
  894. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/index.js +1 -1
  895. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/meta.js +1 -1
  896. data/node_modules/eslint-plugin-sonarjs/cjs/S4790/rule.js +1 -1
  897. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/generated-meta.js +1 -1
  898. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/index.js +1 -1
  899. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/meta.js +1 -1
  900. data/node_modules/eslint-plugin-sonarjs/cjs/S4798/rule.js +1 -1
  901. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/generated-meta.js +1 -1
  902. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/index.js +1 -1
  903. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/meta.js +1 -1
  904. data/node_modules/eslint-plugin-sonarjs/cjs/S4817/rule.js +1 -1
  905. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/generated-meta.js +1 -1
  906. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/index.js +1 -1
  907. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/meta.js +1 -1
  908. data/node_modules/eslint-plugin-sonarjs/cjs/S4818/rule.js +1 -1
  909. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/generated-meta.js +1 -1
  910. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/index.js +1 -1
  911. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/meta.js +1 -1
  912. data/node_modules/eslint-plugin-sonarjs/cjs/S4822/rule.js +1 -1
  913. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/generated-meta.js +1 -1
  914. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/index.js +1 -1
  915. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/meta.js +1 -1
  916. data/node_modules/eslint-plugin-sonarjs/cjs/S4823/rule.js +1 -1
  917. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/generated-meta.js +1 -1
  918. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/index.js +1 -1
  919. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/meta.js +1 -1
  920. data/node_modules/eslint-plugin-sonarjs/cjs/S4829/rule.js +1 -1
  921. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/generated-meta.js +1 -1
  922. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/index.js +1 -1
  923. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/meta.js +1 -1
  924. data/node_modules/eslint-plugin-sonarjs/cjs/S4830/rule.js +1 -1
  925. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/generated-meta.js +1 -1
  926. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/index.js +1 -1
  927. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/meta.js +1 -1
  928. data/node_modules/eslint-plugin-sonarjs/cjs/S5042/rule.js +1 -1
  929. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/generated-meta.js +1 -1
  930. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/index.js +1 -1
  931. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/meta.js +1 -1
  932. data/node_modules/eslint-plugin-sonarjs/cjs/S5122/rule.js +1 -1
  933. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/generated-meta.js +1 -1
  934. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/index.js +1 -1
  935. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/meta.js +1 -1
  936. data/node_modules/eslint-plugin-sonarjs/cjs/S5148/rule.js +1 -1
  937. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/generated-meta.js +1 -1
  938. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/index.js +1 -1
  939. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/meta.js +1 -1
  940. data/node_modules/eslint-plugin-sonarjs/cjs/S5247/rule.js +1 -1
  941. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/generated-meta.js +1 -1
  942. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/index.js +1 -1
  943. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/meta.js +1 -1
  944. data/node_modules/eslint-plugin-sonarjs/cjs/S5256/rule.js +1 -1
  945. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/generated-meta.js +1 -1
  946. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/index.js +1 -1
  947. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/meta.js +1 -1
  948. data/node_modules/eslint-plugin-sonarjs/cjs/S5257/rule.js +1 -1
  949. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/generated-meta.js +1 -1
  950. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/index.js +1 -1
  951. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/meta.js +1 -1
  952. data/node_modules/eslint-plugin-sonarjs/cjs/S5260/rule.js +1 -1
  953. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/generated-meta.js +1 -1
  954. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/index.js +1 -1
  955. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/meta.js +1 -1
  956. data/node_modules/eslint-plugin-sonarjs/cjs/S5264/rule.js +1 -1
  957. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/generated-meta.js +1 -1
  958. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/index.js +1 -1
  959. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/meta.js +1 -1
  960. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.aws.js +1 -1
  961. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.js +1 -1
  962. data/node_modules/eslint-plugin-sonarjs/cjs/S5332/rule.lib.js +1 -1
  963. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/generated-meta.js +1 -1
  964. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/index.js +1 -1
  965. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/meta.js +1 -1
  966. data/node_modules/eslint-plugin-sonarjs/cjs/S5443/rule.js +1 -1
  967. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/generated-meta.js +1 -1
  968. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/index.js +1 -1
  969. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/meta.js +1 -1
  970. data/node_modules/eslint-plugin-sonarjs/cjs/S5527/rule.js +1 -1
  971. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/generated-meta.js +1 -1
  972. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/index.js +1 -1
  973. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/meta.js +1 -1
  974. data/node_modules/eslint-plugin-sonarjs/cjs/S5542/rule.js +1 -1
  975. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/generated-meta.js +1 -1
  976. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/index.js +1 -1
  977. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/meta.js +1 -1
  978. data/node_modules/eslint-plugin-sonarjs/cjs/S5547/rule.js +1 -1
  979. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/generated-meta.js +1 -1
  980. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/index.js +1 -1
  981. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/meta.js +1 -1
  982. data/node_modules/eslint-plugin-sonarjs/cjs/S5604/rule.js +1 -1
  983. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/generated-meta.js +1 -1
  984. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/index.js +1 -1
  985. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/meta.js +1 -1
  986. data/node_modules/eslint-plugin-sonarjs/cjs/S5659/rule.js +1 -1
  987. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/generated-meta.js +1 -1
  988. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/index.js +1 -1
  989. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/meta.js +1 -1
  990. data/node_modules/eslint-plugin-sonarjs/cjs/S5689/rule.js +1 -1
  991. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/generated-meta.js +1 -1
  992. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/index.js +1 -1
  993. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/meta.js +1 -1
  994. data/node_modules/eslint-plugin-sonarjs/cjs/S5691/rule.js +1 -1
  995. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/generated-meta.js +1 -1
  996. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/index.js +1 -1
  997. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/meta.js +1 -1
  998. data/node_modules/eslint-plugin-sonarjs/cjs/S5693/rule.js +1 -1
  999. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/generated-meta.js +1 -1
  1000. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/index.js +1 -1
  1001. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/meta.js +1 -1
  1002. data/node_modules/eslint-plugin-sonarjs/cjs/S5725/rule.js +1 -1
  1003. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/generated-meta.js +1 -1
  1004. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/index.js +1 -1
  1005. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/meta.js +1 -1
  1006. data/node_modules/eslint-plugin-sonarjs/cjs/S5728/rule.js +1 -1
  1007. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/generated-meta.js +1 -1
  1008. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/index.js +1 -1
  1009. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/meta.js +1 -1
  1010. data/node_modules/eslint-plugin-sonarjs/cjs/S5730/rule.js +1 -1
  1011. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/generated-meta.js +1 -1
  1012. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/index.js +1 -1
  1013. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/meta.js +1 -1
  1014. data/node_modules/eslint-plugin-sonarjs/cjs/S5732/rule.js +1 -1
  1015. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/generated-meta.js +1 -1
  1016. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/index.js +1 -1
  1017. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/meta.js +1 -1
  1018. data/node_modules/eslint-plugin-sonarjs/cjs/S5734/rule.js +1 -1
  1019. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/generated-meta.js +1 -1
  1020. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/index.js +1 -1
  1021. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/meta.js +1 -1
  1022. data/node_modules/eslint-plugin-sonarjs/cjs/S5736/rule.js +1 -1
  1023. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/generated-meta.js +1 -1
  1024. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/index.js +1 -1
  1025. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/meta.js +1 -1
  1026. data/node_modules/eslint-plugin-sonarjs/cjs/S5739/rule.js +1 -1
  1027. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/generated-meta.js +3 -3
  1028. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/index.js +1 -1
  1029. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/meta.js +1 -1
  1030. data/node_modules/eslint-plugin-sonarjs/cjs/S5742/rule.js +1 -1
  1031. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/generated-meta.js +1 -1
  1032. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/index.js +1 -1
  1033. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/meta.js +1 -1
  1034. data/node_modules/eslint-plugin-sonarjs/cjs/S5743/rule.js +1 -1
  1035. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/generated-meta.js +1 -1
  1036. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/index.js +1 -1
  1037. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/meta.js +1 -1
  1038. data/node_modules/eslint-plugin-sonarjs/cjs/S5757/rule.js +1 -1
  1039. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/generated-meta.js +1 -1
  1040. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/index.js +1 -1
  1041. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/meta.js +1 -1
  1042. data/node_modules/eslint-plugin-sonarjs/cjs/S5759/rule.js +1 -1
  1043. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/generated-meta.js +1 -1
  1044. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/index.js +1 -1
  1045. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/meta.js +1 -1
  1046. data/node_modules/eslint-plugin-sonarjs/cjs/S5842/rule.js +1 -1
  1047. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/generated-meta.js +1 -1
  1048. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/index.js +1 -1
  1049. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/meta.js +1 -1
  1050. data/node_modules/eslint-plugin-sonarjs/cjs/S5843/rule.js +1 -1
  1051. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/generated-meta.js +1 -1
  1052. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/index.js +1 -1
  1053. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/meta.js +1 -1
  1054. data/node_modules/eslint-plugin-sonarjs/cjs/S5850/rule.js +1 -1
  1055. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/generated-meta.js +1 -1
  1056. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/index.js +1 -1
  1057. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/meta.js +1 -1
  1058. data/node_modules/eslint-plugin-sonarjs/cjs/S5852/rule.js +1 -1
  1059. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/generated-meta.js +1 -1
  1060. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/index.js +1 -1
  1061. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/meta.js +1 -1
  1062. data/node_modules/eslint-plugin-sonarjs/cjs/S5856/rule.js +1 -1
  1063. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/generated-meta.js +1 -1
  1064. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/index.js +1 -1
  1065. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/meta.js +1 -1
  1066. data/node_modules/eslint-plugin-sonarjs/cjs/S5860/rule.js +1 -1
  1067. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/generated-meta.js +1 -1
  1068. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/index.js +1 -1
  1069. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/meta.js +1 -1
  1070. data/node_modules/eslint-plugin-sonarjs/cjs/S5863/rule.js +1 -1
  1071. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/generated-meta.js +1 -1
  1072. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/index.js +1 -1
  1073. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/meta.js +1 -1
  1074. data/node_modules/eslint-plugin-sonarjs/cjs/S5867/rule.js +1 -1
  1075. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/generated-meta.js +1 -1
  1076. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/index.js +1 -1
  1077. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/meta.js +1 -1
  1078. data/node_modules/eslint-plugin-sonarjs/cjs/S5868/rule.js +1 -1
  1079. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/generated-meta.js +1 -1
  1080. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/index.js +1 -1
  1081. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/meta.js +1 -1
  1082. data/node_modules/eslint-plugin-sonarjs/cjs/S5869/rule.js +1 -1
  1083. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/generated-meta.js +1 -1
  1084. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/index.js +1 -1
  1085. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/meta.js +1 -1
  1086. data/node_modules/eslint-plugin-sonarjs/cjs/S5876/rule.js +1 -1
  1087. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/generated-meta.js +1 -1
  1088. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/index.js +1 -1
  1089. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/meta.js +1 -1
  1090. data/node_modules/eslint-plugin-sonarjs/cjs/S5958/rule.js +1 -1
  1091. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/generated-meta.js +1 -1
  1092. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/index.js +1 -1
  1093. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/meta.js +1 -1
  1094. data/node_modules/eslint-plugin-sonarjs/cjs/S5973/rule.js +1 -1
  1095. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/generated-meta.js +1 -1
  1096. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/index.js +1 -1
  1097. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/meta.js +1 -1
  1098. data/node_modules/eslint-plugin-sonarjs/cjs/S6019/rule.js +1 -1
  1099. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/generated-meta.js +1 -1
  1100. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/index.js +1 -1
  1101. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/meta.js +1 -1
  1102. data/node_modules/eslint-plugin-sonarjs/cjs/S6035/rule.js +1 -1
  1103. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/generated-meta.js +1 -1
  1104. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/index.js +1 -1
  1105. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/meta.js +1 -1
  1106. data/node_modules/eslint-plugin-sonarjs/cjs/S6079/rule.js +1 -1
  1107. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/generated-meta.js +1 -1
  1108. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/index.js +1 -1
  1109. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/meta.js +1 -1
  1110. data/node_modules/eslint-plugin-sonarjs/cjs/S6080/rule.js +1 -1
  1111. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/generated-meta.js +1 -1
  1112. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/index.js +1 -1
  1113. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/meta.js +1 -1
  1114. data/node_modules/eslint-plugin-sonarjs/cjs/S6092/rule.js +1 -1
  1115. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/generated-meta.js +1 -1
  1116. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/index.js +1 -1
  1117. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/meta.js +1 -1
  1118. data/node_modules/eslint-plugin-sonarjs/cjs/S6245/rule.js +1 -1
  1119. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/generated-meta.js +1 -1
  1120. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/index.js +1 -1
  1121. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/meta.js +1 -1
  1122. data/node_modules/eslint-plugin-sonarjs/cjs/S6249/rule.js +1 -1
  1123. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/generated-meta.js +1 -1
  1124. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/index.js +1 -1
  1125. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/meta.js +1 -1
  1126. data/node_modules/eslint-plugin-sonarjs/cjs/S6252/rule.js +1 -1
  1127. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/generated-meta.js +1 -1
  1128. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/index.js +1 -1
  1129. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/meta.js +1 -1
  1130. data/node_modules/eslint-plugin-sonarjs/cjs/S6265/rule.js +1 -1
  1131. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/generated-meta.js +1 -1
  1132. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/index.js +1 -1
  1133. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/meta.js +1 -1
  1134. data/node_modules/eslint-plugin-sonarjs/cjs/S6268/rule.js +1 -1
  1135. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/generated-meta.js +1 -1
  1136. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/index.js +1 -1
  1137. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/meta.js +1 -1
  1138. data/node_modules/eslint-plugin-sonarjs/cjs/S6270/rule.js +1 -1
  1139. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/generated-meta.js +1 -1
  1140. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/index.js +1 -1
  1141. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/meta.js +1 -1
  1142. data/node_modules/eslint-plugin-sonarjs/cjs/S6275/rule.js +1 -1
  1143. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/generated-meta.js +1 -1
  1144. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/index.js +1 -1
  1145. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/meta.js +1 -1
  1146. data/node_modules/eslint-plugin-sonarjs/cjs/S6281/rule.js +1 -1
  1147. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/generated-meta.js +1 -1
  1148. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/index.js +1 -1
  1149. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/meta.js +1 -1
  1150. data/node_modules/eslint-plugin-sonarjs/cjs/S6299/rule.js +1 -1
  1151. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/generated-meta.js +1 -1
  1152. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/index.js +1 -1
  1153. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/meta.js +1 -1
  1154. data/node_modules/eslint-plugin-sonarjs/cjs/S6302/rule.js +1 -1
  1155. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/generated-meta.js +1 -1
  1156. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/index.js +1 -1
  1157. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/meta.js +1 -1
  1158. data/node_modules/eslint-plugin-sonarjs/cjs/S6303/rule.js +1 -1
  1159. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/generated-meta.js +1 -1
  1160. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/index.js +1 -1
  1161. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/meta.js +1 -1
  1162. data/node_modules/eslint-plugin-sonarjs/cjs/S6304/rule.js +1 -1
  1163. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/generated-meta.js +1 -1
  1164. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/index.js +1 -1
  1165. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/meta.js +1 -1
  1166. data/node_modules/eslint-plugin-sonarjs/cjs/S6308/rule.js +1 -1
  1167. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/generated-meta.js +1 -1
  1168. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/index.js +1 -1
  1169. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/meta.js +1 -1
  1170. data/node_modules/eslint-plugin-sonarjs/cjs/S6317/rule.js +1 -1
  1171. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/generated-meta.js +1 -1
  1172. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/index.js +1 -1
  1173. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/meta.js +1 -1
  1174. data/node_modules/eslint-plugin-sonarjs/cjs/S6319/rule.js +1 -1
  1175. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/generated-meta.js +1 -1
  1176. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/index.js +1 -1
  1177. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/meta.js +1 -1
  1178. data/node_modules/eslint-plugin-sonarjs/cjs/S6321/rule.js +1 -1
  1179. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/generated-meta.js +1 -1
  1180. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/index.js +1 -1
  1181. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/meta.js +1 -1
  1182. data/node_modules/eslint-plugin-sonarjs/cjs/S6323/rule.js +1 -1
  1183. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/generated-meta.js +1 -1
  1184. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/index.js +1 -1
  1185. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/meta.js +1 -1
  1186. data/node_modules/eslint-plugin-sonarjs/cjs/S6324/rule.js +1 -1
  1187. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/generated-meta.js +1 -1
  1188. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/index.js +1 -1
  1189. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/meta.js +1 -1
  1190. data/node_modules/eslint-plugin-sonarjs/cjs/S6326/rule.js +1 -1
  1191. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/generated-meta.js +1 -1
  1192. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/index.js +1 -1
  1193. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/meta.js +1 -1
  1194. data/node_modules/eslint-plugin-sonarjs/cjs/S6327/rule.js +1 -1
  1195. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/generated-meta.js +1 -1
  1196. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/index.js +1 -1
  1197. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/meta.js +1 -1
  1198. data/node_modules/eslint-plugin-sonarjs/cjs/S6328/rule.js +1 -1
  1199. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/generated-meta.js +1 -1
  1200. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/index.js +1 -1
  1201. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/meta.js +1 -1
  1202. data/node_modules/eslint-plugin-sonarjs/cjs/S6329/rule.js +1 -1
  1203. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/generated-meta.js +1 -1
  1204. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/index.js +1 -1
  1205. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/meta.js +1 -1
  1206. data/node_modules/eslint-plugin-sonarjs/cjs/S6330/rule.js +2 -2
  1207. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/generated-meta.js +1 -1
  1208. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/index.js +1 -1
  1209. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/meta.js +1 -1
  1210. data/node_modules/eslint-plugin-sonarjs/cjs/S6331/rule.js +1 -1
  1211. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/generated-meta.js +1 -1
  1212. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/index.js +1 -1
  1213. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/meta.js +1 -1
  1214. data/node_modules/eslint-plugin-sonarjs/cjs/S6332/rule.js +1 -1
  1215. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/generated-meta.js +1 -1
  1216. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/index.js +1 -1
  1217. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/meta.js +1 -1
  1218. data/node_modules/eslint-plugin-sonarjs/cjs/S6333/rule.js +1 -1
  1219. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/generated-meta.js +1 -1
  1220. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/index.js +1 -1
  1221. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/meta.js +1 -1
  1222. data/node_modules/eslint-plugin-sonarjs/cjs/S6351/rule.js +1 -1
  1223. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/generated-meta.js +1 -1
  1224. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/index.js +1 -1
  1225. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/meta.js +1 -1
  1226. data/node_modules/eslint-plugin-sonarjs/cjs/S6353/rule.js +1 -1
  1227. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/generated-meta.js +1 -1
  1228. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/index.js +1 -1
  1229. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/meta.js +1 -1
  1230. data/node_modules/eslint-plugin-sonarjs/cjs/S6397/rule.js +1 -1
  1231. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/generated-meta.js +21 -2
  1232. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/index.js +1 -1
  1233. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/meta.js +1 -1
  1234. data/node_modules/eslint-plugin-sonarjs/cjs/S6418/rule.js +2 -21
  1235. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/generated-meta.js +1 -1
  1236. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/index.js +1 -1
  1237. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/meta.js +1 -1
  1238. data/node_modules/eslint-plugin-sonarjs/cjs/S6426/rule.js +1 -1
  1239. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/generated-meta.js +1 -1
  1240. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/index.js +1 -1
  1241. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/meta.js +1 -1
  1242. data/node_modules/eslint-plugin-sonarjs/cjs/S6439/rule.js +1 -1
  1243. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/generated-meta.js +1 -1
  1244. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/index.js +1 -1
  1245. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/meta.js +1 -1
  1246. data/node_modules/eslint-plugin-sonarjs/cjs/S6442/rule.js +1 -1
  1247. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/generated-meta.js +1 -1
  1248. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/index.js +1 -1
  1249. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/meta.js +1 -1
  1250. data/node_modules/eslint-plugin-sonarjs/cjs/S6443/rule.js +1 -1
  1251. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/generated-meta.js +1 -1
  1252. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/index.js +1 -1
  1253. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/meta.js +1 -1
  1254. data/node_modules/eslint-plugin-sonarjs/cjs/S6486/rule.js +1 -1
  1255. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/generated-meta.js +1 -1
  1256. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/index.js +1 -1
  1257. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/meta.js +1 -1
  1258. data/node_modules/eslint-plugin-sonarjs/cjs/S6564/rule.js +1 -1
  1259. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/generated-meta.js +1 -1
  1260. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/index.js +1 -1
  1261. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/meta.js +1 -1
  1262. data/node_modules/eslint-plugin-sonarjs/cjs/S6594/rule.js +1 -1
  1263. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/generated-meta.js +1 -1
  1264. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/index.js +1 -1
  1265. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/meta.js +1 -1
  1266. data/node_modules/eslint-plugin-sonarjs/cjs/S6627/rule.js +1 -1
  1267. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/generated-meta.js +1 -1
  1268. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/index.js +1 -1
  1269. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/meta.js +1 -1
  1270. data/node_modules/eslint-plugin-sonarjs/cjs/S6759/rule.js +1 -1
  1271. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/generated-meta.js +1 -1
  1272. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/index.js +1 -1
  1273. data/node_modules/eslint-plugin-sonarjs/cjs/S6958/meta.js +1 -1
  1274. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/generated-meta.js +1 -1
  1275. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/index.js +1 -1
  1276. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/meta.js +1 -1
  1277. data/node_modules/eslint-plugin-sonarjs/cjs/S6959/rule.js +1 -1
  1278. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/generated-meta.js +1 -1
  1279. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/index.js +1 -1
  1280. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/meta.js +1 -1
  1281. data/node_modules/eslint-plugin-sonarjs/cjs/S7059/rule.js +1 -1
  1282. data/node_modules/eslint-plugin-sonarjs/cjs/S881/generated-meta.js +1 -1
  1283. data/node_modules/eslint-plugin-sonarjs/cjs/S881/index.js +1 -1
  1284. data/node_modules/eslint-plugin-sonarjs/cjs/S881/meta.js +1 -1
  1285. data/node_modules/eslint-plugin-sonarjs/cjs/S881/rule.js +1 -1
  1286. data/node_modules/eslint-plugin-sonarjs/cjs/S888/generated-meta.js +1 -1
  1287. data/node_modules/eslint-plugin-sonarjs/cjs/S888/index.js +1 -1
  1288. data/node_modules/eslint-plugin-sonarjs/cjs/S888/meta.js +1 -1
  1289. data/node_modules/eslint-plugin-sonarjs/cjs/S888/rule.js +1 -1
  1290. data/node_modules/eslint-plugin-sonarjs/cjs/S930/generated-meta.js +1 -1
  1291. data/node_modules/eslint-plugin-sonarjs/cjs/S930/index.js +1 -1
  1292. data/node_modules/eslint-plugin-sonarjs/cjs/S930/meta.js +1 -1
  1293. data/node_modules/eslint-plugin-sonarjs/cjs/S930/rule.js +1 -1
  1294. data/node_modules/eslint-plugin-sonarjs/cjs/external/core.js +1 -1
  1295. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/accessibility.js +1 -1
  1296. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/aws/index.js +1 -1
  1297. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/collection.js +1 -1
  1298. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/index.js +1 -1
  1299. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/decorators/interceptor.js +0 -4
  1300. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/files.js +1 -1
  1301. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-files.js +1 -1
  1302. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/find-up.js +1 -1
  1303. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/globals.js +1 -1
  1304. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/index.js +1 -1
  1305. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/package-json.js +30 -9
  1306. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/Detector.js +1 -1
  1307. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/CamelCaseDetector.js +1 -1
  1308. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/ContainsDetector.js +1 -1
  1309. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/EndWithDetector.js +1 -1
  1310. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/detectors/KeywordsDetector.js +1 -1
  1311. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/recognizers/index.js +1 -1
  1312. data/node_modules/eslint-plugin-sonarjs/cjs/helpers/validate-version.js +1 -1
  1313. data/node_modules/eslint-plugin-sonarjs/cjs/plugin-rules.js +1 -1
  1314. data/node_modules/eslint-plugin-sonarjs/package.json +2 -8
  1315. data/node_modules/eslint-plugin-sonarjs/types/S3723/rule.d.ts +0 -1
  1316. data/node_modules/eslint-plugin-sonarjs/types/S3776/generated-meta.d.ts +8 -2
  1317. data/node_modules/eslint-plugin-sonarjs/types/S6418/generated-meta.d.ts +17 -0
  1318. data/node_modules/eslint-plugin-sonarjs/types/helpers/package-json.d.ts +17 -1
  1319. data/node_modules/eslint-plugin-sonarjs/types/plugin-rules.d.ts +0 -1
  1320. data/node_modules/eslint-plugin-sonarjs/types/plugin.d.ts +4 -9
  1321. data/node_modules/jscodeshift/CHANGELOG.md +63 -29
  1322. data/node_modules/jscodeshift/README.md +1 -0
  1323. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.input.js +1 -0
  1324. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.js +11 -0
  1325. data/node_modules/jscodeshift/dist/__testfixtures__/test-async-transform.output.js +1 -0
  1326. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.input.js +1 -0
  1327. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.js +7 -0
  1328. data/node_modules/jscodeshift/dist/__testfixtures__/test-sync-transform.output.js +1 -0
  1329. data/node_modules/jscodeshift/dist/testUtils.js +30 -6
  1330. data/node_modules/jscodeshift/package.json +4 -2
  1331. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.input.js +1 -0
  1332. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.js +11 -0
  1333. data/node_modules/jscodeshift/src/__testfixtures__/test-async-transform.output.js +1 -0
  1334. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.input.js +1 -0
  1335. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.js +7 -0
  1336. data/node_modules/jscodeshift/src/__testfixtures__/test-sync-transform.output.js +1 -0
  1337. data/node_modules/jscodeshift/src/testUtils.js +30 -6
  1338. data/node_modules/jscodeshift/website/package.json +1 -1
  1339. data/node_modules/prettier/LICENSE +0 -4373
  1340. data/node_modules/prettier/README.md +7 -8
  1341. data/node_modules/prettier/THIRD-PARTY-NOTICES.md +4416 -0
  1342. data/node_modules/prettier/doc.js +237 -213
  1343. data/node_modules/prettier/doc.mjs +237 -213
  1344. data/node_modules/prettier/index.cjs +9 -1
  1345. data/node_modules/prettier/index.d.ts +13 -3
  1346. data/node_modules/prettier/index.mjs +619 -439
  1347. data/node_modules/prettier/internal/cli.mjs +1923 -945
  1348. data/node_modules/prettier/package.json +2 -1
  1349. data/node_modules/prettier/plugins/acorn.js +1 -1
  1350. data/node_modules/prettier/plugins/acorn.mjs +1 -1
  1351. data/node_modules/prettier/plugins/angular.js +2 -2
  1352. data/node_modules/prettier/plugins/angular.mjs +2 -2
  1353. data/node_modules/prettier/plugins/babel.js +8 -8
  1354. data/node_modules/prettier/plugins/babel.mjs +8 -8
  1355. data/node_modules/prettier/plugins/estree.js +27 -27
  1356. data/node_modules/prettier/plugins/estree.mjs +27 -27
  1357. data/node_modules/prettier/plugins/flow.js +15 -15
  1358. data/node_modules/prettier/plugins/flow.mjs +15 -15
  1359. data/node_modules/prettier/plugins/glimmer.js +21 -21
  1360. data/node_modules/prettier/plugins/glimmer.mjs +22 -22
  1361. data/node_modules/prettier/plugins/graphql.js +16 -16
  1362. data/node_modules/prettier/plugins/graphql.mjs +16 -16
  1363. data/node_modules/prettier/plugins/html.js +17 -17
  1364. data/node_modules/prettier/plugins/html.mjs +17 -17
  1365. data/node_modules/prettier/plugins/markdown.js +42 -42
  1366. data/node_modules/prettier/plugins/markdown.mjs +42 -42
  1367. data/node_modules/prettier/plugins/meriyah.js +2 -2
  1368. data/node_modules/prettier/plugins/meriyah.mjs +2 -2
  1369. data/node_modules/prettier/plugins/postcss.js +26 -26
  1370. data/node_modules/prettier/plugins/postcss.mjs +26 -26
  1371. data/node_modules/prettier/plugins/typescript.js +10 -10
  1372. data/node_modules/prettier/plugins/typescript.mjs +11 -11
  1373. data/node_modules/prettier/plugins/yaml.js +65 -65
  1374. data/node_modules/prettier/plugins/yaml.mjs +65 -65
  1375. data/node_modules/prettier/standalone.d.ts +1 -1
  1376. data/node_modules/prettier/standalone.js +24 -24
  1377. data/node_modules/prettier/standalone.mjs +24 -24
  1378. data/node_modules/semver/README.md +14 -4
  1379. data/node_modules/semver/bin/semver.js +2 -1
  1380. data/node_modules/semver/classes/semver.js +22 -6
  1381. data/node_modules/semver/functions/diff.js +5 -12
  1382. data/node_modules/semver/internal/re.js +2 -0
  1383. data/node_modules/semver/package.json +8 -7
  1384. data/package.json +8 -9
  1385. metadata +44 -26
  1386. data/node_modules/.bin/ncu +0 -1
  1387. data/node_modules/.bin/npm-check-updates +0 -1
  1388. data/node_modules/npm-check-updates/LICENSE +0 -13
  1389. data/node_modules/npm-check-updates/README.md +0 -839
  1390. data/node_modules/npm-check-updates/build/cli.d.ts +0 -1
  1391. data/node_modules/npm-check-updates/build/cli.js +0 -29
  1392. data/node_modules/npm-check-updates/build/cli.js.map +0 -1
  1393. data/node_modules/npm-check-updates/build/index-B5lQw6vg.js +0 -6
  1394. data/node_modules/npm-check-updates/build/index-B5lQw6vg.js.map +0 -1
  1395. data/node_modules/npm-check-updates/build/index-BnIU43YD.js +0 -2
  1396. data/node_modules/npm-check-updates/build/index-BnIU43YD.js.map +0 -1
  1397. data/node_modules/npm-check-updates/build/index-CUgqEqMa.js +0 -2
  1398. data/node_modules/npm-check-updates/build/index-CUgqEqMa.js.map +0 -1
  1399. data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js +0 -58
  1400. data/node_modules/npm-check-updates/build/index-D3Mtu-Hr.js.map +0 -1
  1401. data/node_modules/npm-check-updates/build/index-_DliZFxU.js +0 -5
  1402. data/node_modules/npm-check-updates/build/index-_DliZFxU.js.map +0 -1
  1403. data/node_modules/npm-check-updates/build/index.d.ts +0 -211
  1404. data/node_modules/npm-check-updates/build/index.js +0 -551
  1405. data/node_modules/npm-check-updates/build/index.js.map +0 -1
  1406. data/node_modules/npm-check-updates/package.json +0 -179
  1407. /data/node_modules/@eslint/plugin-kit/dist/cjs/{types.ts → types.cts} +0 -0
@@ -0,0 +1,4416 @@
1
+ # Licenses of bundled dependencies
2
+
3
+ The published Prettier artifact additionally contains code with the following licenses:
4
+ MIT, ISC, BSD-3-Clause, BSD-2-Clause, and Apache-2.0.
5
+
6
+ ## @angular/compiler@v19.1.2
7
+
8
+ > Angular - the compiler library
9
+
10
+ License: MIT
11
+ Repository: <https://github.com/angular/angular.git>
12
+ Author: angular
13
+
14
+ > The MIT License
15
+ >
16
+ > Copyright (c) 2010-2025 Google LLC. https://angular.dev/license
17
+ >
18
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
19
+ > of this software and associated documentation files (the "Software"), to deal
20
+ > in the Software without restriction, including without limitation the rights
21
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
22
+ > copies of the Software, and to permit persons to whom the Software is
23
+ > furnished to do so, subject to the following conditions:
24
+ >
25
+ > The above copyright notice and this permission notice shall be included in
26
+ > all copies or substantial portions of the Software.
27
+ >
28
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
29
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
30
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
31
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
32
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
33
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
34
+ > THE SOFTWARE.
35
+
36
+ ----------------------------------------
37
+
38
+ ## @babel/code-frame@v7.26.2
39
+
40
+ > Generate errors that contain a code frame that point to source locations.
41
+
42
+ License: MIT
43
+ Homepage: <https://babel.dev/docs/en/next/babel-code-frame>
44
+ Repository: <https://github.com/babel/babel.git>
45
+ Author: The Babel Team (https://babel.dev/team)
46
+
47
+ > MIT License
48
+ >
49
+ > Copyright (c) 2014-present Sebastian McKenzie and other contributors
50
+ >
51
+ > Permission is hereby granted, free of charge, to any person obtaining
52
+ > a copy of this software and associated documentation files (the
53
+ > "Software"), to deal in the Software without restriction, including
54
+ > without limitation the rights to use, copy, modify, merge, publish,
55
+ > distribute, sublicense, and/or sell copies of the Software, and to
56
+ > permit persons to whom the Software is furnished to do so, subject to
57
+ > the following conditions:
58
+ >
59
+ > The above copyright notice and this permission notice shall be
60
+ > included in all copies or substantial portions of the Software.
61
+ >
62
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
63
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
64
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
65
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
66
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
67
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
68
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
69
+
70
+ ----------------------------------------
71
+
72
+ ## @babel/helper-validator-identifier@v7.25.9
73
+
74
+ > Validate identifier/keywords name
75
+
76
+ License: MIT
77
+ Repository: <https://github.com/babel/babel.git>
78
+ Author: The Babel Team (https://babel.dev/team)
79
+
80
+ > MIT License
81
+ >
82
+ > Copyright (c) 2014-present Sebastian McKenzie and other contributors
83
+ >
84
+ > Permission is hereby granted, free of charge, to any person obtaining
85
+ > a copy of this software and associated documentation files (the
86
+ > "Software"), to deal in the Software without restriction, including
87
+ > without limitation the rights to use, copy, modify, merge, publish,
88
+ > distribute, sublicense, and/or sell copies of the Software, and to
89
+ > permit persons to whom the Software is furnished to do so, subject to
90
+ > the following conditions:
91
+ >
92
+ > The above copyright notice and this permission notice shall be
93
+ > included in all copies or substantial portions of the Software.
94
+ >
95
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
96
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
97
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
98
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
99
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
100
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
101
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
102
+
103
+ ----------------------------------------
104
+
105
+ ## @babel/parser@v7.26.9
106
+
107
+ > A JavaScript parser
108
+
109
+ License: MIT
110
+ Homepage: <https://babel.dev/docs/en/next/babel-parser>
111
+ Repository: <https://github.com/babel/babel.git>
112
+ Author: The Babel Team (https://babel.dev/team)
113
+
114
+ > Copyright (C) 2012-2014 by various contributors (see AUTHORS)
115
+ >
116
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
117
+ > of this software and associated documentation files (the "Software"), to deal
118
+ > in the Software without restriction, including without limitation the rights
119
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
120
+ > copies of the Software, and to permit persons to whom the Software is
121
+ > furnished to do so, subject to the following conditions:
122
+ >
123
+ > The above copyright notice and this permission notice shall be included in
124
+ > all copies or substantial portions of the Software.
125
+ >
126
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
127
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
128
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
129
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
130
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
131
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
132
+ > THE SOFTWARE.
133
+
134
+ ----------------------------------------
135
+
136
+ ## @glimmer/syntax@v0.94.7
137
+
138
+ License: MIT
139
+ Repository: <git+https://github.com/glimmerjs/glimmer-vm.git>
140
+
141
+ > Copyright (c) 2015 Tilde, Inc.
142
+ >
143
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
144
+ > this software and associated documentation files (the "Software"), to deal in
145
+ > the Software without restriction, including without limitation the rights to
146
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
147
+ > of the Software, and to permit persons to whom the Software is furnished to do
148
+ > so, subject to the following conditions:
149
+ >
150
+ > The above copyright notice and this permission notice shall be included in all
151
+ > copies or substantial portions of the Software.
152
+ >
153
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
154
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
155
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
156
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
157
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
158
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
159
+ > SOFTWARE.
160
+
161
+ ----------------------------------------
162
+
163
+ ## @glimmer/util@v0.94.6
164
+
165
+ > Common utilities used in Glimmer
166
+
167
+ License: MIT
168
+ Repository: <git+https://github.com/glimmerjs/glimmer-vm.git>
169
+
170
+ > Copyright (c) 2015 Tilde, Inc.
171
+ >
172
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
173
+ > this software and associated documentation files (the "Software"), to deal in
174
+ > the Software without restriction, including without limitation the rights to
175
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
176
+ > of the Software, and to permit persons to whom the Software is furnished to do
177
+ > so, subject to the following conditions:
178
+ >
179
+ > The above copyright notice and this permission notice shall be included in all
180
+ > copies or substantial portions of the Software.
181
+ >
182
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
183
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
184
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
185
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
186
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
187
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
188
+ > SOFTWARE.
189
+
190
+ ----------------------------------------
191
+
192
+ ## @glimmer/wire-format@v0.94.6
193
+
194
+ License: MIT
195
+ Repository: <git+https://github.com/glimmerjs/glimmer-vm.git>
196
+
197
+ > Copyright (c) 2015 Tilde, Inc.
198
+ >
199
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
200
+ > this software and associated documentation files (the "Software"), to deal in
201
+ > the Software without restriction, including without limitation the rights to
202
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
203
+ > of the Software, and to permit persons to whom the Software is furnished to do
204
+ > so, subject to the following conditions:
205
+ >
206
+ > The above copyright notice and this permission notice shall be included in all
207
+ > copies or substantial portions of the Software.
208
+ >
209
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
210
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
211
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
212
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
213
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
214
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
215
+ > SOFTWARE.
216
+
217
+ ----------------------------------------
218
+
219
+ ## @handlebars/parser@v2.0.0
220
+
221
+ > The parser for the Handlebars language
222
+
223
+ License: ISC
224
+ Homepage: <https://github.com/handlebars-lang/handlebars-parser#readme>
225
+ Repository: <git+https://github.com/handlebars-lang/handlebars-parser.git>
226
+
227
+ ----------------------------------------
228
+
229
+ ## @keyv/serialize@v1.0.2
230
+
231
+ > Serialization for Keyv
232
+
233
+ License: MIT
234
+ Homepage: <https://github.com/jaredwray/keyv>
235
+ Repository: <git+https://github.com/jaredwray/keyv.git>
236
+ Author: Jared Wray <me@jaredwray.com> (https://jaredwray.com)
237
+
238
+ > MIT License
239
+ >
240
+ > Copyright (c) 2017-2021 Luke Childs
241
+ > Copyright (c) 2021-2022 Jared Wray
242
+ >
243
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
244
+ > of this software and associated documentation files (the "Software"), to deal
245
+ > in the Software without restriction, including without limitation the rights
246
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
247
+ > copies of the Software, and to permit persons to whom the Software is
248
+ > furnished to do so, subject to the following conditions:
249
+ >
250
+ > The above copyright notice and this permission notice shall be included in all
251
+ > copies or substantial portions of the Software.
252
+ >
253
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
254
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
255
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
256
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
257
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
258
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
259
+ > SOFTWARE.
260
+
261
+ ----------------------------------------
262
+
263
+ ## @nodelib/fs.scandir@v2.1.5
264
+
265
+ > List files and directories inside the specified directory
266
+
267
+ License: MIT
268
+
269
+ > The MIT License (MIT)
270
+ >
271
+ > Copyright (c) Denis Malinochkin
272
+ >
273
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
274
+ > of this software and associated documentation files (the "Software"), to deal
275
+ > in the Software without restriction, including without limitation the rights
276
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
277
+ > copies of the Software, and to permit persons to whom the Software is
278
+ > furnished to do so, subject to the following conditions:
279
+ >
280
+ > The above copyright notice and this permission notice shall be included in all
281
+ > copies or substantial portions of the Software.
282
+ >
283
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
284
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
285
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
286
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
287
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
288
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
289
+ > SOFTWARE.
290
+
291
+ ----------------------------------------
292
+
293
+ ## @nodelib/fs.stat@v2.0.5
294
+
295
+ > Get the status of a file with some features
296
+
297
+ License: MIT
298
+
299
+ > The MIT License (MIT)
300
+ >
301
+ > Copyright (c) Denis Malinochkin
302
+ >
303
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
304
+ > of this software and associated documentation files (the "Software"), to deal
305
+ > in the Software without restriction, including without limitation the rights
306
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
307
+ > copies of the Software, and to permit persons to whom the Software is
308
+ > furnished to do so, subject to the following conditions:
309
+ >
310
+ > The above copyright notice and this permission notice shall be included in all
311
+ > copies or substantial portions of the Software.
312
+ >
313
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
314
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
315
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
316
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
317
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
318
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
319
+ > SOFTWARE.
320
+
321
+ ----------------------------------------
322
+
323
+ ## @nodelib/fs.walk@v1.2.8
324
+
325
+ > A library for efficiently walking a directory recursively
326
+
327
+ License: MIT
328
+
329
+ > The MIT License (MIT)
330
+ >
331
+ > Copyright (c) Denis Malinochkin
332
+ >
333
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
334
+ > of this software and associated documentation files (the "Software"), to deal
335
+ > in the Software without restriction, including without limitation the rights
336
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
337
+ > copies of the Software, and to permit persons to whom the Software is
338
+ > furnished to do so, subject to the following conditions:
339
+ >
340
+ > The above copyright notice and this permission notice shall be included in all
341
+ > copies or substantial portions of the Software.
342
+ >
343
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
344
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
345
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
346
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
347
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
348
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
349
+ > SOFTWARE.
350
+
351
+ ----------------------------------------
352
+
353
+ ## @prettier/is-es5-identifier-name@v0.2.0
354
+
355
+ > Check if provided string is an `IdentifierName` as specified in ECMA262 edition 5.1 section 7.6.
356
+
357
+ License: MIT
358
+ Author: fisker Cheung <lionkay@gmail.com>
359
+
360
+ > MIT License
361
+ >
362
+ > Copyright (c) fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
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
+
384
+ ## @prettier/parse-srcset@v3.1.0
385
+
386
+ > A spec-conformant JavaScript parser for the HTML5 srcset attribute
387
+
388
+ License: MIT
389
+ Homepage: <https://github.com/prettier/parse-srcset#readme>
390
+ Author: Alex Bell <alex@bellandwhistle.net>
391
+
392
+ > The MIT License (MIT)
393
+ >
394
+ > Copyright (c) 2014 Alex Bell
395
+ > Copyright (c) fisker Cheung
396
+ >
397
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
398
+ > of this software and associated documentation files (the "Software"), to deal
399
+ > in the Software without restriction, including without limitation the rights
400
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
401
+ > copies of the Software, and to permit persons to whom the Software is
402
+ > furnished to do so, subject to the following conditions:
403
+ >
404
+ > The above copyright notice and this permission notice shall be included in all
405
+ > copies or substantial portions of the Software.
406
+ >
407
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
408
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
409
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
410
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
411
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
412
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
413
+ > SOFTWARE.
414
+
415
+ ----------------------------------------
416
+
417
+ ## @typescript-eslint/types@v8.24.1
418
+
419
+ > Types for the TypeScript-ESTree AST spec
420
+
421
+ License: MIT
422
+ Homepage: <https://typescript-eslint.io>
423
+ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
424
+
425
+ > MIT License
426
+ >
427
+ > Copyright (c) 2019 typescript-eslint and other contributors
428
+ >
429
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
430
+ > of this software and associated documentation files (the "Software"), to deal
431
+ > in the Software without restriction, including without limitation the rights
432
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
433
+ > copies of the Software, and to permit persons to whom the Software is
434
+ > furnished to do so, subject to the following conditions:
435
+ >
436
+ > The above copyright notice and this permission notice shall be included in all
437
+ > copies or substantial portions of the Software.
438
+ >
439
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
440
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
441
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
442
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
443
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
444
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
445
+ > SOFTWARE.
446
+
447
+ ----------------------------------------
448
+
449
+ ## @typescript-eslint/typescript-estree@v8.24.1
450
+
451
+ > A parser that converts TypeScript source code into an ESTree compatible form
452
+
453
+ License: MIT
454
+ Homepage: <https://typescript-eslint.io/packages/typescript-estree>
455
+ Repository: <https://github.com/typescript-eslint/typescript-eslint.git>
456
+
457
+ > MIT License
458
+ >
459
+ > Copyright (c) 2019 typescript-eslint and other contributors
460
+ >
461
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
462
+ > of this software and associated documentation files (the "Software"), to deal
463
+ > in the Software without restriction, including without limitation the rights
464
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
465
+ > copies of the Software, and to permit persons to whom the Software is
466
+ > furnished to do so, subject to the following conditions:
467
+ >
468
+ > The above copyright notice and this permission notice shall be included in all
469
+ > copies or substantial portions of the Software.
470
+ >
471
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
472
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
473
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
474
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
475
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
476
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
477
+ > SOFTWARE.
478
+
479
+ ----------------------------------------
480
+
481
+ ## acorn@v8.14.0
482
+
483
+ > ECMAScript parser
484
+
485
+ License: MIT
486
+ Homepage: <https://github.com/acornjs/acorn>
487
+ Repository: <git+https://github.com/acornjs/acorn.git>
488
+
489
+ > MIT License
490
+ >
491
+ > Copyright (C) 2012-2022 by various contributors (see AUTHORS)
492
+ >
493
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
494
+ > of this software and associated documentation files (the "Software"), to deal
495
+ > in the Software without restriction, including without limitation the rights
496
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
497
+ > copies of the Software, and to permit persons to whom the Software is
498
+ > furnished to do so, subject to the following conditions:
499
+ >
500
+ > The above copyright notice and this permission notice shall be included in
501
+ > all copies or substantial portions of the Software.
502
+ >
503
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
504
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
505
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
506
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
507
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
508
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
509
+ > THE SOFTWARE.
510
+
511
+ ----------------------------------------
512
+
513
+ ## acorn-jsx@v5.3.2
514
+
515
+ > Modern, fast React.js JSX parser
516
+
517
+ License: MIT
518
+ Homepage: <https://github.com/acornjs/acorn-jsx>
519
+ Repository: <https://github.com/acornjs/acorn-jsx>
520
+
521
+ > Copyright (C) 2012-2017 by Ingvar Stepanyan
522
+ >
523
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
524
+ > of this software and associated documentation files (the "Software"), to deal
525
+ > in the Software without restriction, including without limitation the rights
526
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
527
+ > copies of the Software, and to permit persons to whom the Software is
528
+ > furnished to do so, subject to the following conditions:
529
+ >
530
+ > The above copyright notice and this permission notice shall be included in
531
+ > all copies or substantial portions of the Software.
532
+ >
533
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
534
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
535
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
536
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
537
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
538
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
539
+ > THE SOFTWARE.
540
+
541
+ ----------------------------------------
542
+
543
+ ## angular-estree-parser@v10.2.0
544
+
545
+ > A parser that converts Angular source code into an ESTree-compatible form
546
+
547
+ License: MIT
548
+ Homepage: <https://github.com/prettier/angular-estree-parser#readme>
549
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
550
+
551
+ > MIT License
552
+ >
553
+ > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
554
+ >
555
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
556
+ > of this software and associated documentation files (the "Software"), to deal
557
+ > in the Software without restriction, including without limitation the rights
558
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
559
+ > copies of the Software, and to permit persons to whom the Software is
560
+ > furnished to do so, subject to the following conditions:
561
+ >
562
+ > The above copyright notice and this permission notice shall be included in all
563
+ > copies or substantial portions of the Software.
564
+ >
565
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
566
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
567
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
568
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
569
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
570
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
571
+ > SOFTWARE.
572
+
573
+ ----------------------------------------
574
+
575
+ ## angular-html-parser@v8.0.1
576
+
577
+ > A HTML parser extracted from Angular with some modifications
578
+
579
+ License: MIT
580
+ Homepage: <https://github.com/prettier/angular-html-parser/blob/master/packages/angular-html-parser#readme>
581
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
582
+
583
+ > MIT License
584
+ >
585
+ > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
586
+ >
587
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
588
+ > of this software and associated documentation files (the "Software"), to deal
589
+ > in the Software without restriction, including without limitation the rights
590
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
591
+ > copies of the Software, and to permit persons to whom the Software is
592
+ > furnished to do so, subject to the following conditions:
593
+ >
594
+ > The above copyright notice and this permission notice shall be included in all
595
+ > copies or substantial portions of the Software.
596
+ >
597
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
598
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
599
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
600
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
601
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
602
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
603
+ > SOFTWARE.
604
+
605
+ ----------------------------------------
606
+
607
+ ## ansi-regex@v6.1.0
608
+
609
+ > Regular expression for matching ANSI escape codes
610
+
611
+ License: MIT
612
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
613
+
614
+ > MIT License
615
+ >
616
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
617
+ >
618
+ > 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:
619
+ >
620
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
621
+ >
622
+ > 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.
623
+
624
+ ----------------------------------------
625
+
626
+ ## bail@v1.0.5
627
+
628
+ > Throw a given error
629
+
630
+ License: MIT
631
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
632
+ Contributors:
633
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
634
+
635
+ > (The MIT License)
636
+ >
637
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
638
+ >
639
+ > Permission is hereby granted, free of charge, to any person obtaining
640
+ > a copy of this software and associated documentation files (the
641
+ > 'Software'), to deal in the Software without restriction, including
642
+ > without limitation the rights to use, copy, modify, merge, publish,
643
+ > distribute, sublicense, and/or sell copies of the Software, and to
644
+ > permit persons to whom the Software is furnished to do so, subject to
645
+ > the following conditions:
646
+ >
647
+ > The above copyright notice and this permission notice shall be
648
+ > included in all copies or substantial portions of the Software.
649
+ >
650
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
651
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
652
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
653
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
654
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
655
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
656
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
657
+
658
+ ----------------------------------------
659
+
660
+ ## braces@v3.0.3
661
+
662
+ > Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.
663
+
664
+ License: MIT
665
+ Homepage: <https://github.com/micromatch/braces>
666
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
667
+ Contributors:
668
+ - Brian Woodward (https://twitter.com/doowb)
669
+ - Elan Shanker (https://github.com/es128)
670
+ - Eugene Sharygin (https://github.com/eush77)
671
+ - hemanth.hm (http://h3manth.com)
672
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
673
+
674
+ > The MIT License (MIT)
675
+ >
676
+ > Copyright (c) 2014-present, Jon Schlinkert.
677
+ >
678
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
679
+ > of this software and associated documentation files (the "Software"), to deal
680
+ > in the Software without restriction, including without limitation the rights
681
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
682
+ > copies of the Software, and to permit persons to whom the Software is
683
+ > furnished to do so, subject to the following conditions:
684
+ >
685
+ > The above copyright notice and this permission notice shall be included in
686
+ > all copies or substantial portions of the Software.
687
+ >
688
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
689
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
690
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
691
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
692
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
693
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
694
+ > THE SOFTWARE.
695
+
696
+ ----------------------------------------
697
+
698
+ ## cacheable@v1.8.8
699
+
700
+ > High Performance Layer 1 / Layer 2 Caching with Keyv Storage
701
+
702
+ License: MIT
703
+ Repository: <git+https://github.com/jaredwray/cacheable.git>
704
+ Author: Jared Wray <me@jaredwray.com>
705
+
706
+ > MIT License & © Jared Wray
707
+ >
708
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
709
+ > of this software and associated documentation files (the "Software"), to
710
+ > deal in the Software without restriction, including without limitation the
711
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
712
+ > sell copies of the Software, and to permit persons to whom the Software is
713
+ > furnished to do so, subject to the following conditions:
714
+ >
715
+ > The above copyright notice and this permission notice shall be included in
716
+ > all copies or substantial portions of the Software.
717
+ >
718
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
719
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
720
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
721
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
722
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
723
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
724
+ > DEALINGS IN THE SOFTWARE.
725
+
726
+ ----------------------------------------
727
+
728
+ ## camelcase@v8.0.0
729
+
730
+ > Convert a dash/dot/underscore/space separated string to camelCase or PascalCase: `foo-bar` → `fooBar`
731
+
732
+ License: MIT
733
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
734
+
735
+ > MIT License
736
+ >
737
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
738
+ >
739
+ > 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:
740
+ >
741
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
742
+ >
743
+ > 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.
744
+
745
+ ----------------------------------------
746
+
747
+ ## ccount@v1.1.0
748
+
749
+ > Count characters
750
+
751
+ License: MIT
752
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
753
+ Contributors:
754
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
755
+
756
+ > (The MIT License)
757
+ >
758
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
759
+ >
760
+ > Permission is hereby granted, free of charge, to any person obtaining
761
+ > a copy of this software and associated documentation files (the
762
+ > 'Software'), to deal in the Software without restriction, including
763
+ > without limitation the rights to use, copy, modify, merge, publish,
764
+ > distribute, sublicense, and/or sell copies of the Software, and to
765
+ > permit persons to whom the Software is furnished to do so, subject to
766
+ > the following conditions:
767
+ >
768
+ > The above copyright notice and this permission notice shall be
769
+ > included in all copies or substantial portions of the Software.
770
+ >
771
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
772
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
773
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
774
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
775
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
776
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
777
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
778
+
779
+ ----------------------------------------
780
+
781
+ ## chalk@v5.4.1
782
+
783
+ > Terminal string styling done right
784
+
785
+ License: MIT
786
+
787
+ > MIT License
788
+ >
789
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
790
+ >
791
+ > 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:
792
+ >
793
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
794
+ >
795
+ > 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.
796
+
797
+ ----------------------------------------
798
+
799
+ ## character-entities@v1.2.4
800
+
801
+ > HTML character entity information
802
+
803
+ License: MIT
804
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
805
+ Contributors:
806
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
807
+
808
+ > (The MIT License)
809
+ >
810
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
811
+ >
812
+ > Permission is hereby granted, free of charge, to any person obtaining
813
+ > a copy of this software and associated documentation files (the
814
+ > 'Software'), to deal in the Software without restriction, including
815
+ > without limitation the rights to use, copy, modify, merge, publish,
816
+ > distribute, sublicense, and/or sell copies of the Software, and to
817
+ > permit persons to whom the Software is furnished to do so, subject to
818
+ > the following conditions:
819
+ >
820
+ > The above copyright notice and this permission notice shall be
821
+ > included in all copies or substantial portions of the Software.
822
+ >
823
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
824
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
825
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
826
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
827
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
828
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
829
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
830
+
831
+ ----------------------------------------
832
+
833
+ ## character-entities-legacy@v1.1.4
834
+
835
+ > HTML legacy character entity information
836
+
837
+ License: MIT
838
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
839
+ Contributors:
840
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
841
+
842
+ > (The MIT License)
843
+ >
844
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
845
+ >
846
+ > Permission is hereby granted, free of charge, to any person obtaining
847
+ > a copy of this software and associated documentation files (the
848
+ > 'Software'), to deal in the Software without restriction, including
849
+ > without limitation the rights to use, copy, modify, merge, publish,
850
+ > distribute, sublicense, and/or sell copies of the Software, and to
851
+ > permit persons to whom the Software is furnished to do so, subject to
852
+ > the following conditions:
853
+ >
854
+ > The above copyright notice and this permission notice shall be
855
+ > included in all copies or substantial portions of the Software.
856
+ >
857
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
858
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
859
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
860
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
861
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
862
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
863
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
864
+
865
+ ----------------------------------------
866
+
867
+ ## character-reference-invalid@v1.1.4
868
+
869
+ > HTML invalid numeric character reference information
870
+
871
+ License: MIT
872
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
873
+ Contributors:
874
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
875
+
876
+ > (The MIT License)
877
+ >
878
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
879
+ >
880
+ > Permission is hereby granted, free of charge, to any person obtaining
881
+ > a copy of this software and associated documentation files (the
882
+ > 'Software'), to deal in the Software without restriction, including
883
+ > without limitation the rights to use, copy, modify, merge, publish,
884
+ > distribute, sublicense, and/or sell copies of the Software, and to
885
+ > permit persons to whom the Software is furnished to do so, subject to
886
+ > the following conditions:
887
+ >
888
+ > The above copyright notice and this permission notice shall be
889
+ > included in all copies or substantial portions of the Software.
890
+ >
891
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
892
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
893
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
894
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
895
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
896
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
897
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
898
+
899
+ ----------------------------------------
900
+
901
+ ## ci-info@v4.1.0
902
+
903
+ > Get details about the current Continuous Integration environment
904
+
905
+ License: MIT
906
+ Homepage: <https://github.com/watson/ci-info>
907
+ Author: Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)
908
+ Contributors:
909
+ - Sibiraj (https://github.com/sibiraj-s)
910
+
911
+ > The MIT License (MIT)
912
+ >
913
+ > Copyright (c) 2016 Thomas Watson Steen
914
+ >
915
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
916
+ > of this software and associated documentation files (the "Software"), to deal
917
+ > in the Software without restriction, including without limitation the rights
918
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
919
+ > copies of the Software, and to permit persons to whom the Software is
920
+ > furnished to do so, subject to the following conditions:
921
+ >
922
+ > The above copyright notice and this permission notice shall be included in all
923
+ > copies or substantial portions of the Software.
924
+ >
925
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
926
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
927
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
928
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
929
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
930
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
931
+ > SOFTWARE.
932
+
933
+ ----------------------------------------
934
+
935
+ ## collapse-white-space@v1.0.6
936
+
937
+ > Replace multiple white-space characters with a single space
938
+
939
+ License: MIT
940
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
941
+ Contributors:
942
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
943
+
944
+ > (The MIT License)
945
+ >
946
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
947
+ >
948
+ > Permission is hereby granted, free of charge, to any person obtaining
949
+ > a copy of this software and associated documentation files (the
950
+ > 'Software'), to deal in the Software without restriction, including
951
+ > without limitation the rights to use, copy, modify, merge, publish,
952
+ > distribute, sublicense, and/or sell copies of the Software, and to
953
+ > permit persons to whom the Software is furnished to do so, subject to
954
+ > the following conditions:
955
+ >
956
+ > The above copyright notice and this permission notice shall be
957
+ > included in all copies or substantial portions of the Software.
958
+ >
959
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
960
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
961
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
962
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
963
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
964
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
965
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
966
+
967
+ ----------------------------------------
968
+
969
+ ## common-path-prefix@v3.0.0
970
+
971
+ > Computes the longest prefix string that is common to each path, excluding the base component
972
+
973
+ License: ISC
974
+ Homepage: <https://github.com/novemberborn/common-path-prefix#readme>
975
+ Repository: <git+https://github.com/novemberborn/common-path-prefix.git>
976
+ Author: Mark Wubben (https://novemberborn.net/)
977
+
978
+ > ISC License (ISC)
979
+ > Copyright (c) 2016, Mark Wubben
980
+ >
981
+ > Permission to use, copy, modify, and/or distribute this software for any purpose
982
+ > with or without fee is hereby granted, provided that the above copyright notice
983
+ > and this permission notice appear in all copies.
984
+ >
985
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
986
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
987
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
988
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
989
+ > OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
990
+ > TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
991
+ > THIS SOFTWARE.
992
+
993
+ ----------------------------------------
994
+
995
+ ## dashify@v2.0.0
996
+
997
+ > Convert a camelcase or space-separated string to a dash-separated string. ~12 sloc, fast, supports diacritics.
998
+
999
+ License: MIT
1000
+ Homepage: <https://github.com/jonschlinkert/dashify>
1001
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
1002
+ Contributors:
1003
+ - Jeffrey Priebe (https://github.com/jeffreypriebe)
1004
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
1005
+ - Ondrej Brinkel (https://www.anzui.de)
1006
+
1007
+ > The MIT License (MIT)
1008
+ >
1009
+ > Copyright (c) 2015-present, Jon Schlinkert.
1010
+ >
1011
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1012
+ > of this software and associated documentation files (the "Software"), to deal
1013
+ > in the Software without restriction, including without limitation the rights
1014
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1015
+ > copies of the Software, and to permit persons to whom the Software is
1016
+ > furnished to do so, subject to the following conditions:
1017
+ >
1018
+ > The above copyright notice and this permission notice shall be included in
1019
+ > all copies or substantial portions of the Software.
1020
+ >
1021
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1022
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1023
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1024
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1025
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1026
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1027
+ > THE SOFTWARE.
1028
+
1029
+ ----------------------------------------
1030
+
1031
+ ## diff@v7.0.0
1032
+
1033
+ > A JavaScript text diff implementation.
1034
+
1035
+ License: BSD-3-Clause
1036
+ Repository: <git://github.com/kpdecker/jsdiff.git>
1037
+
1038
+ > BSD 3-Clause License
1039
+ >
1040
+ > Copyright (c) 2009-2015, Kevin Decker <kpdecker@gmail.com>
1041
+ > All rights reserved.
1042
+ >
1043
+ > Redistribution and use in source and binary forms, with or without
1044
+ > modification, are permitted provided that the following conditions are met:
1045
+ >
1046
+ > 1. Redistributions of source code must retain the above copyright notice, this
1047
+ > list of conditions and the following disclaimer.
1048
+ >
1049
+ > 2. Redistributions in binary form must reproduce the above copyright notice,
1050
+ > this list of conditions and the following disclaimer in the documentation
1051
+ > and/or other materials provided with the distribution.
1052
+ >
1053
+ > 3. Neither the name of the copyright holder nor the names of its
1054
+ > contributors may be used to endorse or promote products derived from
1055
+ > this software without specific prior written permission.
1056
+ >
1057
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1058
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1059
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1060
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1061
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1062
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1063
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1064
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1065
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1066
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1067
+
1068
+ ----------------------------------------
1069
+
1070
+ ## editorconfig@v0.15.3
1071
+
1072
+ > EditorConfig File Locator and Interpreter for Node.js
1073
+
1074
+ License: MIT
1075
+ Repository: <git://github.com/editorconfig/editorconfig-core-js.git>
1076
+ Author: EditorConfig Team
1077
+ Contributors:
1078
+ - Hong Xu (topbug.net)
1079
+ - Jed Mao (https://github.com/jedmao/)
1080
+ - Trey Hunner (http://treyhunner.com)
1081
+
1082
+ > Copyright © 2012 EditorConfig Team
1083
+ >
1084
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1085
+ > of this software and associated documentation files (the “Software”), to deal
1086
+ > in the Software without restriction, including without limitation the rights
1087
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1088
+ > copies of the Software, and to permit persons to whom the Software is
1089
+ > furnished to do so, subject to the following conditions:
1090
+ >
1091
+ > The above copyright notice and this permission notice shall be included in
1092
+ > all copies or substantial portions of the Software.
1093
+ >
1094
+ > THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1095
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1096
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1097
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1098
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1099
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1100
+ > THE SOFTWARE.
1101
+
1102
+ ----------------------------------------
1103
+
1104
+ ## emoji-regex@v10.4.0
1105
+
1106
+ > A regular expression to match all Emoji-only symbols as per the Unicode Standard.
1107
+
1108
+ License: MIT
1109
+ Homepage: <https://mths.be/emoji-regex>
1110
+ Repository: <https://github.com/mathiasbynens/emoji-regex.git>
1111
+ Author: Mathias Bynens (https://mathiasbynens.be/)
1112
+
1113
+ > Copyright Mathias Bynens <https://mathiasbynens.be/>
1114
+ >
1115
+ > Permission is hereby granted, free of charge, to any person obtaining
1116
+ > a copy of this software and associated documentation files (the
1117
+ > "Software"), to deal in the Software without restriction, including
1118
+ > without limitation the rights to use, copy, modify, merge, publish,
1119
+ > distribute, sublicense, and/or sell copies of the Software, and to
1120
+ > permit persons to whom the Software is furnished to do so, subject to
1121
+ > the following conditions:
1122
+ >
1123
+ > The above copyright notice and this permission notice shall be
1124
+ > included in all copies or substantial portions of the Software.
1125
+ >
1126
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1127
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1128
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1129
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1130
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1131
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1132
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1133
+
1134
+ ----------------------------------------
1135
+
1136
+ ## escape-string-regexp@v5.0.0
1137
+
1138
+ > Escape RegExp special characters
1139
+
1140
+ License: MIT
1141
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1142
+
1143
+ > MIT License
1144
+ >
1145
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1146
+ >
1147
+ > 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:
1148
+ >
1149
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1150
+ >
1151
+ > 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.
1152
+
1153
+ ----------------------------------------
1154
+
1155
+ ## espree@v10.3.0
1156
+
1157
+ > An Esprima-compatible JavaScript parser built on Acorn
1158
+
1159
+ License: BSD-2-Clause
1160
+ Homepage: <https://github.com/eslint/js/blob/main/packages/espree/README.md>
1161
+ Author: Nicholas C. Zakas <nicholas+npm@nczconsulting.com>
1162
+
1163
+ > BSD 2-Clause License
1164
+ >
1165
+ > Copyright (c) Open JS Foundation
1166
+ > All rights reserved.
1167
+ >
1168
+ > Redistribution and use in source and binary forms, with or without
1169
+ > modification, are permitted provided that the following conditions are met:
1170
+ >
1171
+ > 1. Redistributions of source code must retain the above copyright notice, this
1172
+ > list of conditions and the following disclaimer.
1173
+ >
1174
+ > 2. Redistributions in binary form must reproduce the above copyright notice,
1175
+ > this list of conditions and the following disclaimer in the documentation
1176
+ > and/or other materials provided with the distribution.
1177
+ >
1178
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
1179
+ > AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1180
+ > IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
1181
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
1182
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1183
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
1184
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
1185
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
1186
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1187
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1188
+
1189
+ ----------------------------------------
1190
+
1191
+ ## extend@v3.0.2
1192
+
1193
+ > Port of jQuery.extend for node.js and the browser
1194
+
1195
+ License: MIT
1196
+ Repository: <https://github.com/justmoon/node-extend.git>
1197
+ Author: Stefan Thomas <justmoon@members.fsf.org> (http://www.justmoon.net)
1198
+ Contributors:
1199
+ - Jordan Harband (https://github.com/ljharb)
1200
+
1201
+ > The MIT License (MIT)
1202
+ >
1203
+ > Copyright (c) 2014 Stefan Thomas
1204
+ >
1205
+ > Permission is hereby granted, free of charge, to any person obtaining
1206
+ > a copy of this software and associated documentation files (the
1207
+ > "Software"), to deal in the Software without restriction, including
1208
+ > without limitation the rights to use, copy, modify, merge, publish,
1209
+ > distribute, sublicense, and/or sell copies of the Software, and to
1210
+ > permit persons to whom the Software is furnished to do so, subject to
1211
+ > the following conditions:
1212
+ >
1213
+ > The above copyright notice and this permission notice shall be
1214
+ > included in all copies or substantial portions of the Software.
1215
+ >
1216
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1217
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1218
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1219
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1220
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1221
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1222
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1223
+
1224
+ ----------------------------------------
1225
+
1226
+ ## fast-glob@v3.3.3
1227
+
1228
+ > It's a very fast and efficient glob library for Node.js
1229
+
1230
+ License: MIT
1231
+ Author: Denis Malinochkin (https://mrmlnc.com)
1232
+
1233
+ > The MIT License (MIT)
1234
+ >
1235
+ > Copyright (c) Denis Malinochkin
1236
+ >
1237
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1238
+ > of this software and associated documentation files (the "Software"), to deal
1239
+ > in the Software without restriction, including without limitation the rights
1240
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1241
+ > copies of the Software, and to permit persons to whom the Software is
1242
+ > furnished to do so, subject to the following conditions:
1243
+ >
1244
+ > The above copyright notice and this permission notice shall be included in all
1245
+ > copies or substantial portions of the Software.
1246
+ >
1247
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1248
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1249
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1250
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1251
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1252
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1253
+ > SOFTWARE.
1254
+
1255
+ ----------------------------------------
1256
+
1257
+ ## fast-json-stable-stringify@v2.1.0
1258
+
1259
+ > deterministic `JSON.stringify()` - a faster version of substack's json-stable-strigify without jsonify
1260
+
1261
+ License: MIT
1262
+ Homepage: <https://github.com/epoberezkin/fast-json-stable-stringify>
1263
+ Repository: <git://github.com/epoberezkin/fast-json-stable-stringify.git>
1264
+ Author: James Halliday <mail@substack.net> (http://substack.net)
1265
+
1266
+ > This software is released under the MIT license:
1267
+ >
1268
+ > Copyright (c) 2017 Evgeny Poberezkin
1269
+ > Copyright (c) 2013 James Halliday
1270
+ >
1271
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
1272
+ > this software and associated documentation files (the "Software"), to deal in
1273
+ > the Software without restriction, including without limitation the rights to
1274
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
1275
+ > the Software, and to permit persons to whom the Software is furnished to do so,
1276
+ > subject to the following conditions:
1277
+ >
1278
+ > The above copyright notice and this permission notice shall be included in all
1279
+ > copies or substantial portions of the Software.
1280
+ >
1281
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1282
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
1283
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
1284
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
1285
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
1286
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1287
+
1288
+ ----------------------------------------
1289
+
1290
+ ## fastq@v1.18.0
1291
+
1292
+ > Fast, in memory work queue
1293
+
1294
+ License: ISC
1295
+ Homepage: <https://github.com/mcollina/fastq#readme>
1296
+ Repository: <git+https://github.com/mcollina/fastq.git>
1297
+ Author: Matteo Collina <hello@matteocollina.com>
1298
+
1299
+ > Copyright (c) 2015-2020, Matteo Collina <matteo.collina@gmail.com>
1300
+ >
1301
+ > Permission to use, copy, modify, and/or distribute this software for any
1302
+ > purpose with or without fee is hereby granted, provided that the above
1303
+ > copyright notice and this permission notice appear in all copies.
1304
+ >
1305
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1306
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1307
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1308
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1309
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1310
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
1311
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1312
+
1313
+ ----------------------------------------
1314
+
1315
+ ## file-entry-cache@v10.0.6
1316
+
1317
+ > A lightweight cache for file metadata, ideal for processes that work on a specific set of files and only need to reprocess files that have changed since the last run
1318
+
1319
+ License: MIT
1320
+ Repository: <git+https://github.com/jaredwray/cacheable.git>
1321
+ Author: Jared Wray <me@jaredwray.com>
1322
+
1323
+ > MIT License & © Jared Wray
1324
+ >
1325
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1326
+ > of this software and associated documentation files (the "Software"), to
1327
+ > deal in the Software without restriction, including without limitation the
1328
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1329
+ > sell copies of the Software, and to permit persons to whom the Software is
1330
+ > furnished to do so, subject to the following conditions:
1331
+ >
1332
+ > The above copyright notice and this permission notice shall be included in
1333
+ > all copies or substantial portions of the Software.
1334
+ >
1335
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1336
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1337
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1338
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1339
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1340
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1341
+ > DEALINGS IN THE SOFTWARE.
1342
+
1343
+ ----------------------------------------
1344
+
1345
+ ## fill-range@v7.1.1
1346
+
1347
+ > Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`
1348
+
1349
+ License: MIT
1350
+ Homepage: <https://github.com/jonschlinkert/fill-range>
1351
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
1352
+ Contributors:
1353
+ - Edo Rivai (edo.rivai.nl)
1354
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
1355
+ - Paul Miller (paulmillr.com)
1356
+ - Rouven Weßling (www.rouvenwessling.de)
1357
+ - null (https://github.com/wtgtybhertgeghgtwtg)
1358
+
1359
+ > The MIT License (MIT)
1360
+ >
1361
+ > Copyright (c) 2014-present, Jon Schlinkert.
1362
+ >
1363
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1364
+ > of this software and associated documentation files (the "Software"), to deal
1365
+ > in the Software without restriction, including without limitation the rights
1366
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1367
+ > copies of the Software, and to permit persons to whom the Software is
1368
+ > furnished to do so, subject to the following conditions:
1369
+ >
1370
+ > The above copyright notice and this permission notice shall be included in
1371
+ > all copies or substantial portions of the Software.
1372
+ >
1373
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1374
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1375
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1376
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1377
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1378
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1379
+ > THE SOFTWARE.
1380
+
1381
+ ----------------------------------------
1382
+
1383
+ ## find-cache-dir@v5.0.0
1384
+
1385
+ > Finds the common standard cache directory
1386
+
1387
+ License: MIT
1388
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1389
+
1390
+ > MIT License
1391
+ >
1392
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1393
+ > Copyright (c) James Talmage <james@talmage.io> (https://github.com/jamestalmage)
1394
+ >
1395
+ > 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:
1396
+ >
1397
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1398
+ >
1399
+ > 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.
1400
+
1401
+ ----------------------------------------
1402
+
1403
+ ## find-up@v6.3.0
1404
+
1405
+ > Find a file or directory by walking up parent directories
1406
+
1407
+ License: MIT
1408
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1409
+
1410
+ > MIT License
1411
+ >
1412
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1413
+ >
1414
+ > 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:
1415
+ >
1416
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1417
+ >
1418
+ > 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.
1419
+
1420
+ ----------------------------------------
1421
+
1422
+ ## flat-cache@v6.1.6
1423
+
1424
+ > A simple key/value storage using files to persist the data
1425
+
1426
+ License: MIT
1427
+ Repository: <git+https://github.com/jaredwray/cacheable.git>
1428
+ Author: Jared Wray <me@jaredwray.com>
1429
+
1430
+ > MIT License & © Jared Wray
1431
+ >
1432
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1433
+ > of this software and associated documentation files (the "Software"), to
1434
+ > deal in the Software without restriction, including without limitation the
1435
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1436
+ > sell copies of the Software, and to permit persons to whom the Software is
1437
+ > furnished to do so, subject to the following conditions:
1438
+ >
1439
+ > The above copyright notice and this permission notice shall be included in
1440
+ > all copies or substantial portions of the Software.
1441
+ >
1442
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1443
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1444
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1445
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1446
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1447
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
1448
+ > DEALINGS IN THE SOFTWARE.
1449
+
1450
+ ----------------------------------------
1451
+
1452
+ ## flatted@v3.3.2
1453
+
1454
+ > A super light and fast circular JSON parser.
1455
+
1456
+ License: ISC
1457
+ Homepage: <https://github.com/WebReflection/flatted#readme>
1458
+ Repository: <git+https://github.com/WebReflection/flatted.git>
1459
+ Author: Andrea Giammarchi
1460
+
1461
+ > ISC License
1462
+ >
1463
+ > Copyright (c) 2018-2020, Andrea Giammarchi, @WebReflection
1464
+ >
1465
+ > Permission to use, copy, modify, and/or distribute this software for any
1466
+ > purpose with or without fee is hereby granted, provided that the above
1467
+ > copyright notice and this permission notice appear in all copies.
1468
+ >
1469
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1470
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
1471
+ > AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1472
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1473
+ > LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
1474
+ > OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1475
+ > PERFORMANCE OF THIS SOFTWARE.
1476
+
1477
+ ----------------------------------------
1478
+
1479
+ ## flatten@v1.0.3
1480
+
1481
+ > Flatten arbitrarily nested arrays into a non-nested list of non-array items. Maintained for legacy compatibility.
1482
+
1483
+ License: MIT
1484
+ Homepage: <https://github.com/mk-pmb/flatten-js/#readme>
1485
+ Repository: <git+https://github.com/mk-pmb/flatten-js.git>
1486
+ Author: Joshua Holbrook <josh.holbrook@gmail.com> (http://jesusabdullah.net)
1487
+ Contributors:
1488
+ - M.K. (https://github.com/mk-pmb)
1489
+
1490
+ > The MIT License (MIT)
1491
+ >
1492
+ > Copyright (c) 2016 Joshua Holbrook
1493
+ >
1494
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1495
+ > of this software and associated documentation files (the "Software"), to deal
1496
+ > in the Software without restriction, including without limitation the rights
1497
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1498
+ > copies of the Software, and to permit persons to whom the Software is
1499
+ > furnished to do so, subject to the following conditions:
1500
+ >
1501
+ > The above copyright notice and this permission notice shall be included in
1502
+ > all copies or substantial portions of the Software.
1503
+ >
1504
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1505
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1506
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1507
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1508
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1509
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1510
+ > THE SOFTWARE.
1511
+
1512
+ ----------------------------------------
1513
+
1514
+ ## flow-parser@v0.259.1
1515
+
1516
+ > JavaScript parser written in OCaml. Produces ESTree AST
1517
+
1518
+ License: MIT
1519
+ Homepage: <https://flow.org>
1520
+ Repository: <https://github.com/facebook/flow.git>
1521
+ Author: Flow Team <flow@fb.com>
1522
+
1523
+ ----------------------------------------
1524
+
1525
+ ## get-east-asian-width@v1.3.0
1526
+
1527
+ > Determine the East Asian Width of a Unicode character
1528
+
1529
+ License: MIT
1530
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1531
+
1532
+ > MIT License
1533
+ >
1534
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1535
+ >
1536
+ > 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:
1537
+ >
1538
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1539
+ >
1540
+ > 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.
1541
+
1542
+ ----------------------------------------
1543
+
1544
+ ## get-stdin@v9.0.0
1545
+
1546
+ > Get stdin as a string or buffer
1547
+
1548
+ License: MIT
1549
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1550
+
1551
+ > MIT License
1552
+ >
1553
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1554
+ >
1555
+ > 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:
1556
+ >
1557
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1558
+ >
1559
+ > 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.
1560
+
1561
+ ----------------------------------------
1562
+
1563
+ ## glob-parent@v5.1.2
1564
+
1565
+ > Extract the non-magic parent path from a glob string.
1566
+
1567
+ License: ISC
1568
+ Author: Gulp Team <team@gulpjs.com> (https://gulpjs.com/)
1569
+ Contributors:
1570
+ - Elan Shanker (https://github.com/es128)
1571
+ - Blaine Bublitz <blaine.bublitz@gmail.com>
1572
+
1573
+ > The ISC License
1574
+ >
1575
+ > Copyright (c) 2015, 2019 Elan Shanker
1576
+ >
1577
+ > Permission to use, copy, modify, and/or distribute this software for any
1578
+ > purpose with or without fee is hereby granted, provided that the above
1579
+ > copyright notice and this permission notice appear in all copies.
1580
+ >
1581
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
1582
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
1583
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
1584
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
1585
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
1586
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
1587
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1588
+
1589
+ ----------------------------------------
1590
+
1591
+ ## graphql@v16.10.0
1592
+
1593
+ > A Query Language and Runtime which can target any service.
1594
+
1595
+ License: MIT
1596
+ Homepage: <https://github.com/graphql/graphql-js>
1597
+ Repository: <https://github.com/graphql/graphql-js.git>
1598
+
1599
+ > MIT License
1600
+ >
1601
+ > Copyright (c) GraphQL Contributors
1602
+ >
1603
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1604
+ > of this software and associated documentation files (the "Software"), to deal
1605
+ > in the Software without restriction, including without limitation the rights
1606
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1607
+ > copies of the Software, and to permit persons to whom the Software is
1608
+ > furnished to do so, subject to the following conditions:
1609
+ >
1610
+ > The above copyright notice and this permission notice shall be included in all
1611
+ > copies or substantial portions of the Software.
1612
+ >
1613
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1614
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1615
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1616
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1617
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1618
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1619
+ > SOFTWARE.
1620
+
1621
+ ----------------------------------------
1622
+
1623
+ ## hookified@v1.7.0
1624
+
1625
+ > Event and Middleware Hooks
1626
+
1627
+ License: MIT
1628
+ Homepage: <https://github.com/jaredwray/hookified#readme>
1629
+ Repository: <git+https://github.com/jaredwray/hookified.git>
1630
+ Author: Jared Wray <me@jaredwray.com>
1631
+
1632
+ > MIT License & © Jared Wray
1633
+ >
1634
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1635
+ > of this software and associated documentation files (the "Software"), to deal
1636
+ > in the Software without restriction, including without limitation the rights
1637
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1638
+ > copies of the Software, and to permit persons to whom the Software is
1639
+ > furnished to do so, subject to the following conditions:
1640
+ >
1641
+ > The above copyright notice and this permission notice shall be included in all
1642
+ > copies or substantial portions of the Software.
1643
+ >
1644
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1645
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1646
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1647
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1648
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1649
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
1650
+ > SOFTWARE.
1651
+
1652
+ ----------------------------------------
1653
+
1654
+ ## ignore@v7.0.3
1655
+
1656
+ > Ignore is a manager and filter for .gitignore rules, the one used by eslint, gitbook and many others.
1657
+
1658
+ License: MIT
1659
+ Repository: <git@github.com:kaelzhang/node-ignore.git>
1660
+ Author: kael
1661
+
1662
+ > Copyright (c) 2013 Kael Zhang <i@kael.me>, contributors
1663
+ > http://kael.me/
1664
+ >
1665
+ > Permission is hereby granted, free of charge, to any person obtaining
1666
+ > a copy of this software and associated documentation files (the
1667
+ > "Software"), to deal in the Software without restriction, including
1668
+ > without limitation the rights to use, copy, modify, merge, publish,
1669
+ > distribute, sublicense, and/or sell copies of the Software, and to
1670
+ > permit persons to whom the Software is furnished to do so, subject to
1671
+ > the following conditions:
1672
+ >
1673
+ > The above copyright notice and this permission notice shall be
1674
+ > included in all copies or substantial portions of the Software.
1675
+ >
1676
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1677
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1678
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
1679
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
1680
+ > LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
1681
+ > OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
1682
+ > WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1683
+
1684
+ ----------------------------------------
1685
+
1686
+ ## import-meta-resolve@v4.1.0
1687
+
1688
+ > Resolve things like Node.js — ponyfill for `import.meta.resolve`
1689
+
1690
+ License: MIT
1691
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1692
+ Contributors:
1693
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1694
+
1695
+ > (The MIT License)
1696
+ >
1697
+ > Copyright (c) 2021 Titus Wormer <mailto:tituswormer@gmail.com>
1698
+ >
1699
+ > Permission is hereby granted, free of charge, to any person obtaining
1700
+ > a copy of this software and associated documentation files (the
1701
+ > 'Software'), to deal in the Software without restriction, including
1702
+ > without limitation the rights to use, copy, modify, merge, publish,
1703
+ > distribute, sublicense, and/or sell copies of the Software, and to
1704
+ > permit persons to whom the Software is furnished to do so, subject to
1705
+ > the following conditions:
1706
+ >
1707
+ > The above copyright notice and this permission notice shall be
1708
+ > included in all copies or substantial portions of the Software.
1709
+ >
1710
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1711
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1712
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1713
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1714
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1715
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1716
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1717
+ >
1718
+ > ---
1719
+ >
1720
+ > This is a derivative work based on:
1721
+ > <https://github.com/nodejs/node>.
1722
+ > Which is licensed:
1723
+ >
1724
+ > """
1725
+ > Copyright Node.js contributors. All rights reserved.
1726
+ >
1727
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1728
+ > of this software and associated documentation files (the "Software"), to
1729
+ > deal in the Software without restriction, including without limitation the
1730
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1731
+ > sell copies of the Software, and to permit persons to whom the Software is
1732
+ > furnished to do so, subject to the following conditions:
1733
+ >
1734
+ > The above copyright notice and this permission notice shall be included in
1735
+ > all copies or substantial portions of the Software.
1736
+ >
1737
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1738
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1739
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1740
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1741
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1742
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1743
+ > IN THE SOFTWARE.
1744
+ > """
1745
+ >
1746
+ > This license applies to parts of Node.js originating from the
1747
+ > https://github.com/joyent/node repository:
1748
+ >
1749
+ > """
1750
+ > Copyright Joyent, Inc. and other Node contributors. All rights reserved.
1751
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1752
+ > of this software and associated documentation files (the "Software"), to
1753
+ > deal in the Software without restriction, including without limitation the
1754
+ > rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
1755
+ > sell copies of the Software, and to permit persons to whom the Software is
1756
+ > furnished to do so, subject to the following conditions:
1757
+ >
1758
+ > The above copyright notice and this permission notice shall be included in
1759
+ > all copies or substantial portions of the Software.
1760
+ >
1761
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1762
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1763
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1764
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1765
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
1766
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
1767
+ > IN THE SOFTWARE.
1768
+ > """
1769
+
1770
+ ----------------------------------------
1771
+
1772
+ ## index-to-position@v0.1.2
1773
+
1774
+ > Convert a string index to its line and column position
1775
+
1776
+ License: MIT
1777
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1778
+
1779
+ > MIT License
1780
+ >
1781
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
1782
+ >
1783
+ > 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:
1784
+ >
1785
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
1786
+ >
1787
+ > 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.
1788
+
1789
+ ----------------------------------------
1790
+
1791
+ ## indexes-of@v1.0.1
1792
+
1793
+ > line String/Array#indexOf but return all the indexes in an array
1794
+
1795
+ License: MIT
1796
+ Homepage: <https://github.com/dominictarr/indexes-of>
1797
+ Repository: <git://github.com/dominictarr/indexes-of.git>
1798
+ Author: Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)
1799
+
1800
+ > Copyright (c) 2013 Dominic Tarr
1801
+ >
1802
+ > Permission is hereby granted, free of charge,
1803
+ > to any person obtaining a copy of this software and
1804
+ > associated documentation files (the "Software"), to
1805
+ > deal in the Software without restriction, including
1806
+ > without limitation the rights to use, copy, modify,
1807
+ > merge, publish, distribute, sublicense, and/or sell
1808
+ > copies of the Software, and to permit persons to whom
1809
+ > the Software is furnished to do so,
1810
+ > subject to the following conditions:
1811
+ >
1812
+ > The above copyright notice and this permission notice
1813
+ > shall be included in all copies or substantial portions of the Software.
1814
+ >
1815
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
1816
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
1817
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1818
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
1819
+ > ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1820
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1821
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1822
+
1823
+ ----------------------------------------
1824
+
1825
+ ## inherits@v2.0.4
1826
+
1827
+ > Browser-friendly inheritance fully compatible with standard node.js inherits()
1828
+
1829
+ License: ISC
1830
+
1831
+ > The ISC License
1832
+ >
1833
+ > Copyright (c) Isaac Z. Schlueter
1834
+ >
1835
+ > Permission to use, copy, modify, and/or distribute this software for any
1836
+ > purpose with or without fee is hereby granted, provided that the above
1837
+ > copyright notice and this permission notice appear in all copies.
1838
+ >
1839
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
1840
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
1841
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
1842
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
1843
+ > LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
1844
+ > OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
1845
+ > PERFORMANCE OF THIS SOFTWARE.
1846
+
1847
+ ----------------------------------------
1848
+
1849
+ ## is-alphabetical@v1.0.4
1850
+
1851
+ > Check if a character is alphabetical
1852
+
1853
+ License: MIT
1854
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1855
+ Contributors:
1856
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1857
+
1858
+ > (The MIT License)
1859
+ >
1860
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
1861
+ >
1862
+ > Permission is hereby granted, free of charge, to any person obtaining
1863
+ > a copy of this software and associated documentation files (the
1864
+ > 'Software'), to deal in the Software without restriction, including
1865
+ > without limitation the rights to use, copy, modify, merge, publish,
1866
+ > distribute, sublicense, and/or sell copies of the Software, and to
1867
+ > permit persons to whom the Software is furnished to do so, subject to
1868
+ > the following conditions:
1869
+ >
1870
+ > The above copyright notice and this permission notice shall be
1871
+ > included in all copies or substantial portions of the Software.
1872
+ >
1873
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1874
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1875
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1876
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1877
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1878
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1879
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1880
+
1881
+ ----------------------------------------
1882
+
1883
+ ## is-alphanumerical@v1.0.4
1884
+
1885
+ > Check if a character is alphanumerical
1886
+
1887
+ License: MIT
1888
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1889
+ Contributors:
1890
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1891
+
1892
+ > (The MIT License)
1893
+ >
1894
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
1895
+ >
1896
+ > Permission is hereby granted, free of charge, to any person obtaining
1897
+ > a copy of this software and associated documentation files (the
1898
+ > 'Software'), to deal in the Software without restriction, including
1899
+ > without limitation the rights to use, copy, modify, merge, publish,
1900
+ > distribute, sublicense, and/or sell copies of the Software, and to
1901
+ > permit persons to whom the Software is furnished to do so, subject to
1902
+ > the following conditions:
1903
+ >
1904
+ > The above copyright notice and this permission notice shall be
1905
+ > included in all copies or substantial portions of the Software.
1906
+ >
1907
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1908
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1909
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1910
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1911
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1912
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1913
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1914
+
1915
+ ----------------------------------------
1916
+
1917
+ ## is-buffer@v2.0.5
1918
+
1919
+ > Determine if an object is a Buffer
1920
+
1921
+ License: MIT
1922
+ Repository: <git://github.com/feross/is-buffer.git>
1923
+ Author: Feross Aboukhadijeh <feross@feross.org> (https://feross.org)
1924
+
1925
+ > The MIT License (MIT)
1926
+ >
1927
+ > Copyright (c) Feross Aboukhadijeh
1928
+ >
1929
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1930
+ > of this software and associated documentation files (the "Software"), to deal
1931
+ > in the Software without restriction, including without limitation the rights
1932
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1933
+ > copies of the Software, and to permit persons to whom the Software is
1934
+ > furnished to do so, subject to the following conditions:
1935
+ >
1936
+ > The above copyright notice and this permission notice shall be included in
1937
+ > all copies or substantial portions of the Software.
1938
+ >
1939
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1940
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1941
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1942
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1943
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1944
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
1945
+ > THE SOFTWARE.
1946
+
1947
+ ----------------------------------------
1948
+
1949
+ ## is-decimal@v1.0.4
1950
+
1951
+ > Check if a character is decimal
1952
+
1953
+ License: MIT
1954
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1955
+ Contributors:
1956
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
1957
+
1958
+ > (The MIT License)
1959
+ >
1960
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
1961
+ >
1962
+ > Permission is hereby granted, free of charge, to any person obtaining
1963
+ > a copy of this software and associated documentation files (the
1964
+ > 'Software'), to deal in the Software without restriction, including
1965
+ > without limitation the rights to use, copy, modify, merge, publish,
1966
+ > distribute, sublicense, and/or sell copies of the Software, and to
1967
+ > permit persons to whom the Software is furnished to do so, subject to
1968
+ > the following conditions:
1969
+ >
1970
+ > The above copyright notice and this permission notice shall be
1971
+ > included in all copies or substantial portions of the Software.
1972
+ >
1973
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
1974
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
1975
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
1976
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
1977
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
1978
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
1979
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1980
+
1981
+ ----------------------------------------
1982
+
1983
+ ## is-extglob@v2.1.1
1984
+
1985
+ > Returns true if a string has an extglob.
1986
+
1987
+ License: MIT
1988
+ Homepage: <https://github.com/jonschlinkert/is-extglob>
1989
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
1990
+
1991
+ > The MIT License (MIT)
1992
+ >
1993
+ > Copyright (c) 2014-2016, Jon Schlinkert
1994
+ >
1995
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
1996
+ > of this software and associated documentation files (the "Software"), to deal
1997
+ > in the Software without restriction, including without limitation the rights
1998
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
1999
+ > copies of the Software, and to permit persons to whom the Software is
2000
+ > furnished to do so, subject to the following conditions:
2001
+ >
2002
+ > The above copyright notice and this permission notice shall be included in
2003
+ > all copies or substantial portions of the Software.
2004
+ >
2005
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2006
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2007
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2008
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2009
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2010
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2011
+ > THE SOFTWARE.
2012
+
2013
+ ----------------------------------------
2014
+
2015
+ ## is-glob@v4.0.3
2016
+
2017
+ > Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.
2018
+
2019
+ License: MIT
2020
+ Homepage: <https://github.com/micromatch/is-glob>
2021
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2022
+ Contributors:
2023
+ - Brian Woodward (https://twitter.com/doowb)
2024
+ - Daniel Perez (https://tuvistavie.com)
2025
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
2026
+
2027
+ > The MIT License (MIT)
2028
+ >
2029
+ > Copyright (c) 2014-2017, Jon Schlinkert.
2030
+ >
2031
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2032
+ > of this software and associated documentation files (the "Software"), to deal
2033
+ > in the Software without restriction, including without limitation the rights
2034
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2035
+ > copies of the Software, and to permit persons to whom the Software is
2036
+ > furnished to do so, subject to the following conditions:
2037
+ >
2038
+ > The above copyright notice and this permission notice shall be included in
2039
+ > all copies or substantial portions of the Software.
2040
+ >
2041
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2042
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2043
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2044
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2045
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2046
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2047
+ > THE SOFTWARE.
2048
+
2049
+ ----------------------------------------
2050
+
2051
+ ## is-hexadecimal@v1.0.4
2052
+
2053
+ > Check if a character is hexadecimal
2054
+
2055
+ License: MIT
2056
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2057
+ Contributors:
2058
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2059
+
2060
+ > (The MIT License)
2061
+ >
2062
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2063
+ >
2064
+ > Permission is hereby granted, free of charge, to any person obtaining
2065
+ > a copy of this software and associated documentation files (the
2066
+ > 'Software'), to deal in the Software without restriction, including
2067
+ > without limitation the rights to use, copy, modify, merge, publish,
2068
+ > distribute, sublicense, and/or sell copies of the Software, and to
2069
+ > permit persons to whom the Software is furnished to do so, subject to
2070
+ > the following conditions:
2071
+ >
2072
+ > The above copyright notice and this permission notice shall be
2073
+ > included in all copies or substantial portions of the Software.
2074
+ >
2075
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2076
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2077
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2078
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2079
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2080
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2081
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2082
+
2083
+ ----------------------------------------
2084
+
2085
+ ## is-number@v7.0.0
2086
+
2087
+ > Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.
2088
+
2089
+ License: MIT
2090
+ Homepage: <https://github.com/jonschlinkert/is-number>
2091
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2092
+ Contributors:
2093
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
2094
+ - Olsten Larck (https://i.am.charlike.online)
2095
+ - Rouven Weßling (www.rouvenwessling.de)
2096
+
2097
+ > The MIT License (MIT)
2098
+ >
2099
+ > Copyright (c) 2014-present, Jon Schlinkert.
2100
+ >
2101
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2102
+ > of this software and associated documentation files (the "Software"), to deal
2103
+ > in the Software without restriction, including without limitation the rights
2104
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2105
+ > copies of the Software, and to permit persons to whom the Software is
2106
+ > furnished to do so, subject to the following conditions:
2107
+ >
2108
+ > The above copyright notice and this permission notice shall be included in
2109
+ > all copies or substantial portions of the Software.
2110
+ >
2111
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2112
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2113
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2114
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2115
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2116
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2117
+ > THE SOFTWARE.
2118
+
2119
+ ----------------------------------------
2120
+
2121
+ ## is-plain-obj@v2.1.0
2122
+
2123
+ > Check if a value is a plain object
2124
+
2125
+ License: MIT
2126
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2127
+
2128
+ > MIT License
2129
+ >
2130
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
2131
+ >
2132
+ > 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:
2133
+ >
2134
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2135
+ >
2136
+ > 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.
2137
+
2138
+ ----------------------------------------
2139
+
2140
+ ## is-whitespace-character@v1.0.4
2141
+
2142
+ > Check if a character is a whitespace character
2143
+
2144
+ License: MIT
2145
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2146
+ Contributors:
2147
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2148
+
2149
+ > (The MIT License)
2150
+ >
2151
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2152
+ >
2153
+ > Permission is hereby granted, free of charge, to any person obtaining
2154
+ > a copy of this software and associated documentation files (the
2155
+ > 'Software'), to deal in the Software without restriction, including
2156
+ > without limitation the rights to use, copy, modify, merge, publish,
2157
+ > distribute, sublicense, and/or sell copies of the Software, and to
2158
+ > permit persons to whom the Software is furnished to do so, subject to
2159
+ > the following conditions:
2160
+ >
2161
+ > The above copyright notice and this permission notice shall be
2162
+ > included in all copies or substantial portions of the Software.
2163
+ >
2164
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2165
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2166
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2167
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2168
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2169
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2170
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2171
+
2172
+ ----------------------------------------
2173
+
2174
+ ## is-word-character@v1.0.4
2175
+
2176
+ > Check if a character is a word character
2177
+
2178
+ License: MIT
2179
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2180
+ Contributors:
2181
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2182
+
2183
+ > (The MIT License)
2184
+ >
2185
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2186
+ >
2187
+ > Permission is hereby granted, free of charge, to any person obtaining
2188
+ > a copy of this software and associated documentation files (the
2189
+ > 'Software'), to deal in the Software without restriction, including
2190
+ > without limitation the rights to use, copy, modify, merge, publish,
2191
+ > distribute, sublicense, and/or sell copies of the Software, and to
2192
+ > permit persons to whom the Software is furnished to do so, subject to
2193
+ > the following conditions:
2194
+ >
2195
+ > The above copyright notice and this permission notice shall be
2196
+ > included in all copies or substantial portions of the Software.
2197
+ >
2198
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2199
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2200
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2201
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2202
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2203
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2204
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2205
+
2206
+ ----------------------------------------
2207
+
2208
+ ## iterate-directory-up@v1.1.1
2209
+
2210
+ > Iterate directory up.
2211
+
2212
+ License: MIT
2213
+ Homepage: <https://github.com/fisker/iterate-directory-up#readme>
2214
+ Author: fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
2215
+
2216
+ > MIT License
2217
+ >
2218
+ > Copyright (c) fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
2219
+ >
2220
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2221
+ > of this software and associated documentation files (the "Software"), to deal
2222
+ > in the Software without restriction, including without limitation the rights
2223
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2224
+ > copies of the Software, and to permit persons to whom the Software is
2225
+ > furnished to do so, subject to the following conditions:
2226
+ >
2227
+ > The above copyright notice and this permission notice shall be included in all
2228
+ > copies or substantial portions of the Software.
2229
+ >
2230
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2231
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2232
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2233
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2234
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2235
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2236
+ > SOFTWARE.
2237
+
2238
+ ----------------------------------------
2239
+
2240
+ ## jest-docblock@v30.0.0-alpha.7
2241
+
2242
+ License: MIT
2243
+ Repository: <https://github.com/jestjs/jest.git>
2244
+
2245
+ > MIT License
2246
+ >
2247
+ > Copyright (c) Meta Platforms, Inc. and affiliates.
2248
+ > Copyright Contributors to the Jest project.
2249
+ >
2250
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2251
+ > of this software and associated documentation files (the "Software"), to deal
2252
+ > in the Software without restriction, including without limitation the rights
2253
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2254
+ > copies of the Software, and to permit persons to whom the Software is
2255
+ > furnished to do so, subject to the following conditions:
2256
+ >
2257
+ > The above copyright notice and this permission notice shall be included in all
2258
+ > copies or substantial portions of the Software.
2259
+ >
2260
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2261
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2262
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2263
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2264
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2265
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2266
+ > SOFTWARE.
2267
+
2268
+ ----------------------------------------
2269
+
2270
+ ## js-tokens@v4.0.0
2271
+
2272
+ > A regex that tokenizes JavaScript.
2273
+
2274
+ License: MIT
2275
+ Author: Simon Lydell
2276
+
2277
+ > The MIT License (MIT)
2278
+ >
2279
+ > Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
2280
+ >
2281
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2282
+ > of this software and associated documentation files (the "Software"), to deal
2283
+ > in the Software without restriction, including without limitation the rights
2284
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2285
+ > copies of the Software, and to permit persons to whom the Software is
2286
+ > furnished to do so, subject to the following conditions:
2287
+ >
2288
+ > The above copyright notice and this permission notice shall be included in
2289
+ > all copies or substantial portions of the Software.
2290
+ >
2291
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2292
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2293
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2294
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2295
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2296
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2297
+ > THE SOFTWARE.
2298
+
2299
+ ----------------------------------------
2300
+
2301
+ ## js-yaml@v4.1.0
2302
+
2303
+ > YAML 1.2 parser and serializer
2304
+
2305
+ License: MIT
2306
+ Author: Vladimir Zapparov <dervus.grim@gmail.com>
2307
+ Contributors:
2308
+ - Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)
2309
+ - Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)
2310
+ - Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)
2311
+
2312
+ > (The MIT License)
2313
+ >
2314
+ > Copyright (C) 2011-2015 by Vitaly Puzrin
2315
+ >
2316
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2317
+ > of this software and associated documentation files (the "Software"), to deal
2318
+ > in the Software without restriction, including without limitation the rights
2319
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2320
+ > copies of the Software, and to permit persons to whom the Software is
2321
+ > furnished to do so, subject to the following conditions:
2322
+ >
2323
+ > The above copyright notice and this permission notice shall be included in
2324
+ > all copies or substantial portions of the Software.
2325
+ >
2326
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2327
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2328
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2329
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2330
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2331
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2332
+ > THE SOFTWARE.
2333
+
2334
+ ----------------------------------------
2335
+
2336
+ ## json5@v2.2.3
2337
+
2338
+ > JSON for Humans
2339
+
2340
+ License: MIT
2341
+ Homepage: <http://json5.org/>
2342
+ Repository: <git+https://github.com/json5/json5.git>
2343
+ Author: Aseem Kishore <aseem.kishore@gmail.com>
2344
+ Contributors:
2345
+ - Max Nanasy <max.nanasy@gmail.com>
2346
+ - Andrew Eisenberg <andrew@eisenberg.as>
2347
+ - Jordan Tucker <jordanbtucker@gmail.com>
2348
+
2349
+ > MIT License
2350
+ >
2351
+ > Copyright (c) 2012-2018 Aseem Kishore, and [others].
2352
+ >
2353
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2354
+ > of this software and associated documentation files (the "Software"), to deal
2355
+ > in the Software without restriction, including without limitation the rights
2356
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2357
+ > copies of the Software, and to permit persons to whom the Software is
2358
+ > furnished to do so, subject to the following conditions:
2359
+ >
2360
+ > The above copyright notice and this permission notice shall be included in all
2361
+ > copies or substantial portions of the Software.
2362
+ >
2363
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2364
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2365
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2366
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2367
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2368
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2369
+ > SOFTWARE.
2370
+ >
2371
+ > [others]: https://github.com/json5/json5/contributors
2372
+
2373
+ ----------------------------------------
2374
+
2375
+ ## keyv@v5.2.3
2376
+
2377
+ > Simple key-value storage with support for multiple backends
2378
+
2379
+ License: MIT
2380
+ Homepage: <https://github.com/jaredwray/keyv>
2381
+ Repository: <git+https://github.com/jaredwray/keyv.git>
2382
+ Author: Jared Wray <me@jaredwray.com> (http://jaredwray.com)
2383
+
2384
+ > MIT License
2385
+ >
2386
+ > Copyright (c) 2017-2021 Luke Childs
2387
+ > Copyright (c) 2021-2022 Jared Wray
2388
+ >
2389
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2390
+ > of this software and associated documentation files (the "Software"), to deal
2391
+ > in the Software without restriction, including without limitation the rights
2392
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2393
+ > copies of the Software, and to permit persons to whom the Software is
2394
+ > furnished to do so, subject to the following conditions:
2395
+ >
2396
+ > The above copyright notice and this permission notice shall be included in all
2397
+ > copies or substantial portions of the Software.
2398
+ >
2399
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2400
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2401
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2402
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2403
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2404
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2405
+ > SOFTWARE.
2406
+
2407
+ ----------------------------------------
2408
+
2409
+ ## leven@v4.0.0
2410
+
2411
+ > Measure the difference between two strings using the Levenshtein distance algorithm
2412
+
2413
+ License: MIT
2414
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2415
+
2416
+ > MIT License
2417
+ >
2418
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2419
+ >
2420
+ > 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:
2421
+ >
2422
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2423
+ >
2424
+ > 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.
2425
+
2426
+ ----------------------------------------
2427
+
2428
+ ## lines-and-columns@v2.0.4
2429
+
2430
+ > Maps lines and columns to character offsets and back.
2431
+
2432
+ License: MIT
2433
+ Homepage: <https://github.com/eventualbuddha/lines-and-columns#readme>
2434
+ Repository: <https://github.com/eventualbuddha/lines-and-columns.git>
2435
+ Author: Brian Donovan <brian@donovans.cc>
2436
+
2437
+ > The MIT License (MIT)
2438
+ >
2439
+ > Copyright (c) 2015 Brian Donovan
2440
+ >
2441
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2442
+ > of this software and associated documentation files (the "Software"), to deal
2443
+ > in the Software without restriction, including without limitation the rights
2444
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2445
+ > copies of the Software, and to permit persons to whom the Software is
2446
+ > furnished to do so, subject to the following conditions:
2447
+ >
2448
+ > The above copyright notice and this permission notice shall be included in
2449
+ > all copies or substantial portions of the Software.
2450
+ >
2451
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2452
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2453
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2454
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2455
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2456
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2457
+ > THE SOFTWARE.
2458
+
2459
+ ----------------------------------------
2460
+
2461
+ ## locate-path@v7.2.0
2462
+
2463
+ > Get the first path that exists on disk of multiple paths
2464
+
2465
+ License: MIT
2466
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2467
+
2468
+ > MIT License
2469
+ >
2470
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2471
+ >
2472
+ > 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:
2473
+ >
2474
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2475
+ >
2476
+ > 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.
2477
+
2478
+ ----------------------------------------
2479
+
2480
+ ## lru-cache@v4.1.5
2481
+
2482
+ > A cache object that deletes the least-recently-used items.
2483
+
2484
+ License: ISC
2485
+ Author: Isaac Z. Schlueter <i@izs.me>
2486
+
2487
+ > The ISC License
2488
+ >
2489
+ > Copyright (c) Isaac Z. Schlueter and Contributors
2490
+ >
2491
+ > Permission to use, copy, modify, and/or distribute this software for any
2492
+ > purpose with or without fee is hereby granted, provided that the above
2493
+ > copyright notice and this permission notice appear in all copies.
2494
+ >
2495
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2496
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2497
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2498
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2499
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2500
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
2501
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2502
+
2503
+ ----------------------------------------
2504
+
2505
+ ## markdown-escapes@v1.0.4
2506
+
2507
+ > List of escapable characters in markdown
2508
+
2509
+ License: MIT
2510
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2511
+ Contributors:
2512
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2513
+
2514
+ > (The MIT License)
2515
+ >
2516
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
2517
+ >
2518
+ > Permission is hereby granted, free of charge, to any person obtaining
2519
+ > a copy of this software and associated documentation files (the
2520
+ > 'Software'), to deal in the Software without restriction, including
2521
+ > without limitation the rights to use, copy, modify, merge, publish,
2522
+ > distribute, sublicense, and/or sell copies of the Software, and to
2523
+ > permit persons to whom the Software is furnished to do so, subject to
2524
+ > the following conditions:
2525
+ >
2526
+ > The above copyright notice and this permission notice shall be
2527
+ > included in all copies or substantial portions of the Software.
2528
+ >
2529
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2530
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2531
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2532
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2533
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2534
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2535
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2536
+
2537
+ ----------------------------------------
2538
+
2539
+ ## merge2@v1.4.1
2540
+
2541
+ > Merge multiple streams into one stream in sequence or parallel.
2542
+
2543
+ License: MIT
2544
+ Homepage: <https://github.com/teambition/merge2>
2545
+ Repository: <git@github.com:teambition/merge2.git>
2546
+
2547
+ > The MIT License (MIT)
2548
+ >
2549
+ > Copyright (c) 2014-2020 Teambition
2550
+ >
2551
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2552
+ > of this software and associated documentation files (the "Software"), to deal
2553
+ > in the Software without restriction, including without limitation the rights
2554
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2555
+ > copies of the Software, and to permit persons to whom the Software is
2556
+ > furnished to do so, subject to the following conditions:
2557
+ >
2558
+ > The above copyright notice and this permission notice shall be included in all
2559
+ > copies or substantial portions of the Software.
2560
+ >
2561
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2562
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2563
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2564
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2565
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2566
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2567
+ > SOFTWARE.
2568
+
2569
+ ----------------------------------------
2570
+
2571
+ ## meriyah@v6.0.5
2572
+
2573
+ > A 100% compliant, self-hosted javascript parser with high focus on both performance and stability
2574
+
2575
+ License: ISC
2576
+ Homepage: <https://github.com/meriyah/meriyah>
2577
+ Repository: <git+https://github.com/meriyah/meriyah.git>
2578
+ Author: Kenny F. (https://github.com/KFlash)
2579
+ Contributors:
2580
+ - Chunpeng Huo (https://github.com/3cp)
2581
+
2582
+ > ISC License
2583
+ >
2584
+ > Copyright (c) 2019 and later, KFlash and others.
2585
+ >
2586
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
2587
+ >
2588
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2589
+
2590
+ ----------------------------------------
2591
+
2592
+ ## micromatch@v4.0.8
2593
+
2594
+ > Glob matching for javascript/node.js. A replacement and faster alternative to minimatch and multimatch.
2595
+
2596
+ License: MIT
2597
+ Homepage: <https://github.com/micromatch/micromatch>
2598
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2599
+ Contributors:
2600
+ - null (https://github.com/DianeLooney)
2601
+ - Amila Welihinda (amilajack.com)
2602
+ - Bogdan Chadkin (https://github.com/TrySound)
2603
+ - Brian Woodward (https://twitter.com/doowb)
2604
+ - Devon Govett (http://badassjs.com)
2605
+ - Elan Shanker (https://github.com/es128)
2606
+ - Fabrício Matté (https://ultcombo.js.org)
2607
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
2608
+ - Martin Kolárik (https://kolarik.sk)
2609
+ - Olsten Larck (https://i.am.charlike.online)
2610
+ - Paul Miller (paulmillr.com)
2611
+ - Tom Byrer (https://github.com/tomByrer)
2612
+ - Tyler Akins (http://rumkin.com)
2613
+ - Peter Bright <drpizza@quiscalusmexicanus.org> (https://github.com/drpizza)
2614
+ - Kuba Juszczyk (https://github.com/ku8ar)
2615
+
2616
+ > The MIT License (MIT)
2617
+ >
2618
+ > Copyright (c) 2014-present, Jon Schlinkert.
2619
+ >
2620
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2621
+ > of this software and associated documentation files (the "Software"), to deal
2622
+ > in the Software without restriction, including without limitation the rights
2623
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2624
+ > copies of the Software, and to permit persons to whom the Software is
2625
+ > furnished to do so, subject to the following conditions:
2626
+ >
2627
+ > The above copyright notice and this permission notice shall be included in
2628
+ > all copies or substantial portions of the Software.
2629
+ >
2630
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2631
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2632
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2633
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2634
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2635
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2636
+ > THE SOFTWARE.
2637
+
2638
+ ----------------------------------------
2639
+
2640
+ ## minimist@v1.2.8
2641
+
2642
+ > parse argument options
2643
+
2644
+ License: MIT
2645
+ Homepage: <https://github.com/minimistjs/minimist>
2646
+ Repository: <git://github.com/minimistjs/minimist.git>
2647
+ Author: James Halliday <mail@substack.net> (http://substack.net)
2648
+
2649
+ > This software is released under the MIT license:
2650
+ >
2651
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2652
+ > this software and associated documentation files (the "Software"), to deal in
2653
+ > the Software without restriction, including without limitation the rights to
2654
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2655
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2656
+ > subject to the following conditions:
2657
+ >
2658
+ > The above copyright notice and this permission notice shall be included in all
2659
+ > copies or substantial portions of the Software.
2660
+ >
2661
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2662
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2663
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2664
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2665
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2666
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2667
+
2668
+ ----------------------------------------
2669
+
2670
+ ## n-readlines@v1.0.1
2671
+
2672
+ > Read file line by line without buffering the whole file in memory.
2673
+
2674
+ License: MIT
2675
+ Repository: <http://github.com/nacholibre/node-readlines.git>
2676
+ Author: Yoan Arnaudov <jonidev@gmail.com>
2677
+
2678
+ > The MIT License (MIT)
2679
+ >
2680
+ > Copyright (c) 2013 Liucw
2681
+ >
2682
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2683
+ > this software and associated documentation files (the "Software"), to deal in
2684
+ > the Software without restriction, including without limitation the rights to
2685
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2686
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2687
+ > subject to the following conditions:
2688
+ >
2689
+ > The above copyright notice and this permission notice shall be included in all
2690
+ > copies or substantial portions of the Software.
2691
+ >
2692
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2693
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2694
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2695
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2696
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2697
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2698
+
2699
+ ----------------------------------------
2700
+
2701
+ ## nanoid@v3.3.8
2702
+
2703
+ > A tiny (116 bytes), secure URL-friendly unique string ID generator
2704
+
2705
+ License: MIT
2706
+ Author: Andrey Sitnik <andrey@sitnik.ru>
2707
+
2708
+ > The MIT License (MIT)
2709
+ >
2710
+ > Copyright 2017 Andrey Sitnik <andrey@sitnik.ru>
2711
+ >
2712
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2713
+ > this software and associated documentation files (the "Software"), to deal in
2714
+ > the Software without restriction, including without limitation the rights to
2715
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2716
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2717
+ > subject to the following conditions:
2718
+ >
2719
+ > The above copyright notice and this permission notice shall be included in all
2720
+ > copies or substantial portions of the Software.
2721
+ >
2722
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2723
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2724
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2725
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2726
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2727
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2728
+
2729
+ ----------------------------------------
2730
+
2731
+ ## p-limit@v4.0.0
2732
+
2733
+ > Run multiple promise-returning & async functions with limited concurrency
2734
+
2735
+ License: MIT
2736
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2737
+
2738
+ > MIT License
2739
+ >
2740
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2741
+ >
2742
+ > 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:
2743
+ >
2744
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2745
+ >
2746
+ > 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.
2747
+
2748
+ ----------------------------------------
2749
+
2750
+ ## p-locate@v6.0.0
2751
+
2752
+ > Get the first fulfilled promise that satisfies the provided testing function
2753
+
2754
+ License: MIT
2755
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2756
+
2757
+ > MIT License
2758
+ >
2759
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2760
+ >
2761
+ > 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:
2762
+ >
2763
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2764
+ >
2765
+ > 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.
2766
+
2767
+ ----------------------------------------
2768
+
2769
+ ## parse-entities@v2.0.0
2770
+
2771
+ > Parse HTML character references: fast, spec-compliant, positional information
2772
+
2773
+ License: MIT
2774
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2775
+ Contributors:
2776
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
2777
+
2778
+ > (The MIT License)
2779
+ >
2780
+ > Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com>
2781
+ >
2782
+ > Permission is hereby granted, free of charge, to any person obtaining
2783
+ > a copy of this software and associated documentation files (the
2784
+ > 'Software'), to deal in the Software without restriction, including
2785
+ > without limitation the rights to use, copy, modify, merge, publish,
2786
+ > distribute, sublicense, and/or sell copies of the Software, and to
2787
+ > permit persons to whom the Software is furnished to do so, subject to
2788
+ > the following conditions:
2789
+ >
2790
+ > The above copyright notice and this permission notice shall be
2791
+ > included in all copies or substantial portions of the Software.
2792
+ >
2793
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
2794
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
2795
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
2796
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
2797
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
2798
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
2799
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2800
+
2801
+ ----------------------------------------
2802
+
2803
+ ## parse-json@v8.1.0
2804
+
2805
+ > Parse JSON with more helpful errors
2806
+
2807
+ License: MIT
2808
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2809
+
2810
+ > MIT License
2811
+ >
2812
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2813
+ >
2814
+ > 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:
2815
+ >
2816
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2817
+ >
2818
+ > 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.
2819
+
2820
+ ----------------------------------------
2821
+
2822
+ ## path-exists@v5.0.0
2823
+
2824
+ > Check if a path exists
2825
+
2826
+ License: MIT
2827
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2828
+
2829
+ > MIT License
2830
+ >
2831
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2832
+ >
2833
+ > 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:
2834
+ >
2835
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2836
+ >
2837
+ > 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.
2838
+
2839
+ ----------------------------------------
2840
+
2841
+ ## picocolors@v1.1.1
2842
+
2843
+ > The tiniest and the fastest library for terminal output formatting with ANSI colors
2844
+
2845
+ License: ISC
2846
+ Author: Alexey Raspopov
2847
+
2848
+ > ISC License
2849
+ >
2850
+ > Copyright (c) 2021-2024 Oleksii Raspopov, Kostiantyn Denysov, Anton Verinov
2851
+ >
2852
+ > Permission to use, copy, modify, and/or distribute this software for any
2853
+ > purpose with or without fee is hereby granted, provided that the above
2854
+ > copyright notice and this permission notice appear in all copies.
2855
+ >
2856
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
2857
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
2858
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
2859
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
2860
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
2861
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
2862
+ > OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2863
+
2864
+ ----------------------------------------
2865
+
2866
+ ## picomatch@v2.3.1
2867
+
2868
+ > Blazing fast and accurate glob matcher written in JavaScript, with no dependencies and full support for standard and extended Bash glob features, including braces, extglobs, POSIX brackets, and regular expressions.
2869
+
2870
+ License: MIT
2871
+ Homepage: <https://github.com/micromatch/picomatch>
2872
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
2873
+
2874
+ > The MIT License (MIT)
2875
+ >
2876
+ > Copyright (c) 2017-present, Jon Schlinkert.
2877
+ >
2878
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2879
+ > of this software and associated documentation files (the "Software"), to deal
2880
+ > in the Software without restriction, including without limitation the rights
2881
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2882
+ > copies of the Software, and to permit persons to whom the Software is
2883
+ > furnished to do so, subject to the following conditions:
2884
+ >
2885
+ > The above copyright notice and this permission notice shall be included in
2886
+ > all copies or substantial portions of the Software.
2887
+ >
2888
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2889
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2890
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2891
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2892
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2893
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
2894
+ > THE SOFTWARE.
2895
+
2896
+ ----------------------------------------
2897
+
2898
+ ## pkg-dir@v7.0.0
2899
+
2900
+ > Find the root directory of a Node.js project or npm package
2901
+
2902
+ License: MIT
2903
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2904
+
2905
+ > MIT License
2906
+ >
2907
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
2908
+ >
2909
+ > 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:
2910
+ >
2911
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
2912
+ >
2913
+ > 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.
2914
+
2915
+ ----------------------------------------
2916
+
2917
+ ## please-upgrade-node@v3.2.0
2918
+
2919
+ > Displays a beginner-friendly message telling your user to upgrade their version of Node
2920
+
2921
+ License: MIT
2922
+ Homepage: <https://github.com/typicode/please-upgrade-node#readme>
2923
+ Repository: <git+https://github.com/typicode/please-upgrade-node.git>
2924
+ Author: typicode
2925
+
2926
+ > MIT License
2927
+ >
2928
+ > Copyright (c) 2017
2929
+ >
2930
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2931
+ > of this software and associated documentation files (the "Software"), to deal
2932
+ > in the Software without restriction, including without limitation the rights
2933
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
2934
+ > copies of the Software, and to permit persons to whom the Software is
2935
+ > furnished to do so, subject to the following conditions:
2936
+ >
2937
+ > The above copyright notice and this permission notice shall be included in all
2938
+ > copies or substantial portions of the Software.
2939
+ >
2940
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2941
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
2942
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
2943
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
2944
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2945
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2946
+ > SOFTWARE.
2947
+
2948
+ ----------------------------------------
2949
+
2950
+ ## postcss@v8.5.3
2951
+
2952
+ > Tool for transforming styles with JS plugins
2953
+
2954
+ License: MIT
2955
+ Homepage: <https://postcss.org/>
2956
+ Author: Andrey Sitnik <andrey@sitnik.ru>
2957
+
2958
+ > The MIT License (MIT)
2959
+ >
2960
+ > Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
2961
+ >
2962
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
2963
+ > this software and associated documentation files (the "Software"), to deal in
2964
+ > the Software without restriction, including without limitation the rights to
2965
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
2966
+ > the Software, and to permit persons to whom the Software is furnished to do so,
2967
+ > subject to the following conditions:
2968
+ >
2969
+ > The above copyright notice and this permission notice shall be included in all
2970
+ > copies or substantial portions of the Software.
2971
+ >
2972
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
2973
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
2974
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
2975
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
2976
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
2977
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2978
+
2979
+ ----------------------------------------
2980
+
2981
+ ## postcss-less@v6.0.0
2982
+
2983
+ > LESS parser for PostCSS
2984
+
2985
+ License: MIT
2986
+ Homepage: <https://github.com/shellscape/postcss-less>
2987
+ Author: Denys Kniazevych <webschik@gmail.com>
2988
+
2989
+ > The MIT License (MIT)
2990
+ >
2991
+ > Copyright (c) 2013 Andrey Sitnik <andrey@sitnik.ru>
2992
+ > Copyright (c) 2016 Denys Kniazevych <webschik@gmail.com>
2993
+ > Copyright (c) 2016 Pat Sissons <patricksissons@gmail.com>
2994
+ > Copyright (c) 2017 Andrew Powell <andrew@shellscape.org>
2995
+ >
2996
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
2997
+ > of this software and associated documentation files (the "Software"), to deal
2998
+ > in the Software without restriction, including without limitation the rights
2999
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3000
+ > copies of the Software, and to permit persons to whom the Software is
3001
+ > furnished to do so, subject to the following conditions:
3002
+ >
3003
+ > The above copyright notice and this permission notice shall be included in all
3004
+ > copies or substantial portions of the Software.
3005
+ >
3006
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3007
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3008
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3009
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3010
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3011
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3012
+ > SOFTWARE.
3013
+
3014
+ ----------------------------------------
3015
+
3016
+ ## postcss-media-query-parser@v0.2.3
3017
+
3018
+ > A tool for parsing media query lists.
3019
+
3020
+ License: MIT
3021
+ Homepage: <https://github.com/dryoma/postcss-media-query-parser>
3022
+ Repository: <git+https://github.com/dryoma/postcss-media-query-parser.git>
3023
+ Author: dryoma
3024
+
3025
+ ----------------------------------------
3026
+
3027
+ ## postcss-scss@v4.0.9
3028
+
3029
+ > SCSS parser for PostCSS
3030
+
3031
+ License: MIT
3032
+ Author: Andrey Sitnik <andrey@sitnik.ru>
3033
+
3034
+ > The MIT License (MIT)
3035
+ >
3036
+ > Copyright 2013 Andrey Sitnik <andrey@sitnik.ru>
3037
+ >
3038
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3039
+ > this software and associated documentation files (the "Software"), to deal in
3040
+ > the Software without restriction, including without limitation the rights to
3041
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3042
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3043
+ > subject to the following conditions:
3044
+ >
3045
+ > The above copyright notice and this permission notice shall be included in all
3046
+ > copies or substantial portions of the Software.
3047
+ >
3048
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3049
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3050
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3051
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3052
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3053
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3054
+
3055
+ ----------------------------------------
3056
+
3057
+ ## postcss-selector-parser@v2.2.3
3058
+
3059
+ License: MIT
3060
+ Homepage: <https://github.com/postcss/postcss-selector-parser>
3061
+ Author: Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
3062
+
3063
+ > Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
3064
+ >
3065
+ > Permission is hereby granted, free of charge, to any person
3066
+ > obtaining a copy of this software and associated documentation
3067
+ > files (the "Software"), to deal in the Software without
3068
+ > restriction, including without limitation the rights to use,
3069
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
3070
+ > copies of the Software, and to permit persons to whom the
3071
+ > Software is furnished to do so, subject to the following
3072
+ > conditions:
3073
+ >
3074
+ > The above copyright notice and this permission notice shall be
3075
+ > included in all copies or substantial portions of the Software.
3076
+ >
3077
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3078
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
3079
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3080
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
3081
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
3082
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3083
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
3084
+ > OTHER DEALINGS IN THE SOFTWARE.
3085
+
3086
+ ----------------------------------------
3087
+
3088
+ ## postcss-values-parser@v2.0.1
3089
+
3090
+ > A CSS property value parser for use with PostCSS
3091
+
3092
+ License: MIT
3093
+ Author: Andrew Powell (shellscape) <andrew@shellscape.org> (http://shellscape.org)
3094
+
3095
+ > Copyright (c) Andrew Powell <andrew@shellscape.org>
3096
+ >
3097
+ > Permission is hereby granted, free of charge, to any person
3098
+ > obtaining a copy of this software and associated documentation
3099
+ > files (the "Software"), to deal in the Software without
3100
+ > restriction, including without limitation the rights to use,
3101
+ > copy, modify, merge, publish, distribute, sublicense, and/or sell
3102
+ > copies of the Software, and to permit persons to whom the
3103
+ > Software is furnished to do so, subject to the following
3104
+ > conditions:
3105
+ >
3106
+ > The above copyright notice and this permission notice shall be
3107
+ > included in all copies or substantial portions of the Software.
3108
+ >
3109
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
3110
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
3111
+ > OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
3112
+ > NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
3113
+ > HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
3114
+ > WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
3115
+ > FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
3116
+ > OTHER DEALINGS IN THE SOFTWARE.
3117
+
3118
+ ----------------------------------------
3119
+
3120
+ ## pseudomap@v1.0.2
3121
+
3122
+ > A thing that is a lot like ES6 `Map`, but without iterators, for use in environments where `for..of` syntax and `Map` are not available.
3123
+
3124
+ License: ISC
3125
+ Homepage: <https://github.com/isaacs/pseudomap#readme>
3126
+ Repository: <git+https://github.com/isaacs/pseudomap.git>
3127
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
3128
+
3129
+ > The ISC License
3130
+ >
3131
+ > Copyright (c) Isaac Z. Schlueter and Contributors
3132
+ >
3133
+ > Permission to use, copy, modify, and/or distribute this software for any
3134
+ > purpose with or without fee is hereby granted, provided that the above
3135
+ > copyright notice and this permission notice appear in all copies.
3136
+ >
3137
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3138
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3139
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3140
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3141
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3142
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3143
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3144
+
3145
+ ----------------------------------------
3146
+
3147
+ ## queue-microtask@v1.2.3
3148
+
3149
+ > fast, tiny `queueMicrotask` shim for modern engines
3150
+
3151
+ License: MIT
3152
+ Homepage: <https://github.com/feross/queue-microtask>
3153
+ Repository: <git://github.com/feross/queue-microtask.git>
3154
+ Author: Feross Aboukhadijeh <feross@feross.org> (https://feross.org)
3155
+
3156
+ > The MIT License (MIT)
3157
+ >
3158
+ > Copyright (c) Feross Aboukhadijeh
3159
+ >
3160
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3161
+ > this software and associated documentation files (the "Software"), to deal in
3162
+ > the Software without restriction, including without limitation the rights to
3163
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3164
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3165
+ > subject to the following conditions:
3166
+ >
3167
+ > The above copyright notice and this permission notice shall be included in all
3168
+ > copies or substantial portions of the Software.
3169
+ >
3170
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3171
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3172
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3173
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3174
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3175
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3176
+
3177
+ ----------------------------------------
3178
+
3179
+ ## remark-footnotes@v2.0.0
3180
+
3181
+ > remark plugin to add support for pandoc footnotes
3182
+
3183
+ License: MIT
3184
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3185
+ Contributors:
3186
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3187
+
3188
+ > (The MIT License)
3189
+ >
3190
+ > Copyright (c) 2020 Titus Wormer <tituswormer@gmail.com>
3191
+ >
3192
+ > Permission is hereby granted, free of charge, to any person obtaining
3193
+ > a copy of this software and associated documentation files (the
3194
+ > 'Software'), to deal in the Software without restriction, including
3195
+ > without limitation the rights to use, copy, modify, merge, publish,
3196
+ > distribute, sublicense, and/or sell copies of the Software, and to
3197
+ > permit persons to whom the Software is furnished to do so, subject to
3198
+ > the following conditions:
3199
+ >
3200
+ > The above copyright notice and this permission notice shall be
3201
+ > included in all copies or substantial portions of the Software.
3202
+ >
3203
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3204
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3205
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3206
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3207
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3208
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3209
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3210
+
3211
+ ----------------------------------------
3212
+
3213
+ ## remark-math@v3.0.1
3214
+
3215
+ > remark plugin to parse and stringify math
3216
+
3217
+ License: MIT
3218
+ Author: Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)
3219
+ Contributors:
3220
+ - Junyoung Choi <fluke8259@gmail.com> (https://rokt33r.github.io)
3221
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3222
+
3223
+ ----------------------------------------
3224
+
3225
+ ## remark-parse@v8.0.3
3226
+
3227
+ > remark plugin to parse Markdown
3228
+
3229
+ License: MIT
3230
+ Homepage: <https://remark.js.org>
3231
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3232
+ Contributors:
3233
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3234
+ - Eugene Sharygin <eush77@gmail.com>
3235
+ - Junyoung Choi <fluke8259@gmail.com>
3236
+ - Elijah Hamovitz <elijahhamovitz@gmail.com>
3237
+ - Ika <ikatyang@gmail.com>
3238
+
3239
+ ----------------------------------------
3240
+
3241
+ ## repeat-string@v1.6.1
3242
+
3243
+ > Repeat the given string n times. Fastest implementation for repeating a string.
3244
+
3245
+ License: MIT
3246
+ Homepage: <https://github.com/jonschlinkert/repeat-string>
3247
+ Author: Jon Schlinkert (http://github.com/jonschlinkert)
3248
+ Contributors:
3249
+ - Brian Woodward <brian.woodward@gmail.com> (https://github.com/doowb)
3250
+ - Jon Schlinkert <jon.schlinkert@sellside.com> (http://twitter.com/jonschlinkert)
3251
+ - Linus Unnebäck <linus@folkdatorn.se> (http://linus.unnebäck.se)
3252
+ - Thijs Busser <tbusser@gmail.com> (http://tbusser.net)
3253
+ - Titus <tituswormer@gmail.com> (wooorm.com)
3254
+
3255
+ > The MIT License (MIT)
3256
+ >
3257
+ > Copyright (c) 2014-2016, Jon Schlinkert.
3258
+ >
3259
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3260
+ > of this software and associated documentation files (the "Software"), to deal
3261
+ > in the Software without restriction, including without limitation the rights
3262
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3263
+ > copies of the Software, and to permit persons to whom the Software is
3264
+ > furnished to do so, subject to the following conditions:
3265
+ >
3266
+ > The above copyright notice and this permission notice shall be included in
3267
+ > all copies or substantial portions of the Software.
3268
+ >
3269
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3270
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3271
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3272
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3273
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3274
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3275
+ > THE SOFTWARE.
3276
+
3277
+ ----------------------------------------
3278
+
3279
+ ## reusify@v1.0.4
3280
+
3281
+ > Reuse objects and functions with style
3282
+
3283
+ License: MIT
3284
+ Homepage: <https://github.com/mcollina/reusify#readme>
3285
+ Repository: <git+https://github.com/mcollina/reusify.git>
3286
+ Author: Matteo Collina <hello@matteocollina.com>
3287
+
3288
+ > The MIT License (MIT)
3289
+ >
3290
+ > Copyright (c) 2015 Matteo Collina
3291
+ >
3292
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3293
+ > of this software and associated documentation files (the "Software"), to deal
3294
+ > in the Software without restriction, including without limitation the rights
3295
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3296
+ > copies of the Software, and to permit persons to whom the Software is
3297
+ > furnished to do so, subject to the following conditions:
3298
+ >
3299
+ > The above copyright notice and this permission notice shall be included in all
3300
+ > copies or substantial portions of the Software.
3301
+ >
3302
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3303
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3304
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3305
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3306
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3307
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3308
+ > SOFTWARE.
3309
+
3310
+ ----------------------------------------
3311
+
3312
+ ## run-parallel@v1.2.0
3313
+
3314
+ > Run an array of functions in parallel
3315
+
3316
+ License: MIT
3317
+ Homepage: <https://github.com/feross/run-parallel>
3318
+ Repository: <git://github.com/feross/run-parallel.git>
3319
+ Author: Feross Aboukhadijeh <feross@feross.org> (https://feross.org)
3320
+
3321
+ > The MIT License (MIT)
3322
+ >
3323
+ > Copyright (c) Feross Aboukhadijeh
3324
+ >
3325
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3326
+ > this software and associated documentation files (the "Software"), to deal in
3327
+ > the Software without restriction, including without limitation the rights to
3328
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3329
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3330
+ > subject to the following conditions:
3331
+ >
3332
+ > The above copyright notice and this permission notice shall be included in all
3333
+ > copies or substantial portions of the Software.
3334
+ >
3335
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3336
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3337
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3338
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3339
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3340
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3341
+
3342
+ ----------------------------------------
3343
+
3344
+ ## sdbm@v2.0.0
3345
+
3346
+ > SDBM non-cryptographic hash function
3347
+
3348
+ License: MIT
3349
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3350
+
3351
+ > MIT License
3352
+ >
3353
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3354
+ >
3355
+ > 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:
3356
+ >
3357
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3358
+ >
3359
+ > 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.
3360
+
3361
+ ----------------------------------------
3362
+
3363
+ ## semver@v7.7.1
3364
+
3365
+ > The semantic version parser used by npm.
3366
+
3367
+ License: ISC
3368
+ Repository: <git+https://github.com/npm/node-semver.git>
3369
+ Author: GitHub Inc.
3370
+
3371
+ > The ISC License
3372
+ >
3373
+ > Copyright (c) Isaac Z. Schlueter and Contributors
3374
+ >
3375
+ > Permission to use, copy, modify, and/or distribute this software for any
3376
+ > purpose with or without fee is hereby granted, provided that the above
3377
+ > copyright notice and this permission notice appear in all copies.
3378
+ >
3379
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3380
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3381
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3382
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3383
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3384
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3385
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3386
+
3387
+ ----------------------------------------
3388
+
3389
+ ## semver-compare@v1.0.0
3390
+
3391
+ > compare two semver version strings, returning -1, 0, or 1
3392
+
3393
+ License: MIT
3394
+ Homepage: <https://github.com/substack/semver-compare>
3395
+ Repository: <git://github.com/substack/semver-compare.git>
3396
+ Author: James Halliday <mail@substack.net> (http://substack.net)
3397
+
3398
+ > This software is released under the MIT license:
3399
+ >
3400
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3401
+ > this software and associated documentation files (the "Software"), to deal in
3402
+ > the Software without restriction, including without limitation the rights to
3403
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
3404
+ > the Software, and to permit persons to whom the Software is furnished to do so,
3405
+ > subject to the following conditions:
3406
+ >
3407
+ > The above copyright notice and this permission notice shall be included in all
3408
+ > copies or substantial portions of the Software.
3409
+ >
3410
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3411
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
3412
+ > FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
3413
+ > COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
3414
+ > IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
3415
+ > CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3416
+
3417
+ ----------------------------------------
3418
+
3419
+ ## sigmund@v1.0.1
3420
+
3421
+ > Quick and dirty signatures for Objects.
3422
+
3423
+ License: ISC
3424
+ Repository: <git://github.com/isaacs/sigmund>
3425
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
3426
+
3427
+ > The ISC License
3428
+ >
3429
+ > Copyright (c) Isaac Z. Schlueter and Contributors
3430
+ >
3431
+ > Permission to use, copy, modify, and/or distribute this software for any
3432
+ > purpose with or without fee is hereby granted, provided that the above
3433
+ > copyright notice and this permission notice appear in all copies.
3434
+ >
3435
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
3436
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
3437
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
3438
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
3439
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
3440
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
3441
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3442
+
3443
+ ----------------------------------------
3444
+
3445
+ ## simple-html-tokenizer@v0.5.11
3446
+
3447
+ > Simple HTML Tokenizer is a lightweight JavaScript library that can be used to tokenize the kind of HTML normally found in templates.
3448
+
3449
+ License: MIT
3450
+ Repository: <https://github.com/tildeio/simple-html-tokenizer.git>
3451
+
3452
+ > Copyright (c) 2014 Yehuda Katz and contributors
3453
+ >
3454
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
3455
+ > this software and associated documentation files (the "Software"), to deal in
3456
+ > the Software without restriction, including without limitation the rights to
3457
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
3458
+ > of the Software, and to permit persons to whom the Software is furnished to do
3459
+ > so, subject to the following conditions:
3460
+ >
3461
+ > The above copyright notice and this permission notice shall be included in all
3462
+ > copies or substantial portions of the Software.
3463
+ >
3464
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3465
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3466
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3467
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3468
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3469
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
3470
+ > SOFTWARE.
3471
+
3472
+ ----------------------------------------
3473
+
3474
+ ## smol-toml@v1.3.1
3475
+
3476
+ > A small, fast, and correct TOML parser/serializer
3477
+
3478
+ License: BSD-3-Clause
3479
+ Author: Cynthia <cyyynthia@borkenware.com>
3480
+
3481
+ > Copyright (c) Squirrel Chat et al., All rights reserved.
3482
+ >
3483
+ > Redistribution and use in source and binary forms, with or without
3484
+ > modification, are permitted provided that the following conditions are met:
3485
+ >
3486
+ > 1. Redistributions of source code must retain the above copyright notice, this
3487
+ > list of conditions and the following disclaimer.
3488
+ > 2. Redistributions in binary form must reproduce the above copyright notice,
3489
+ > this list of conditions and the following disclaimer in the
3490
+ > documentation and/or other materials provided with the distribution.
3491
+ > 3. Neither the name of the copyright holder nor the names of its contributors
3492
+ > may be used to endorse or promote products derived from this software without
3493
+ > specific prior written permission.
3494
+ >
3495
+ > THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
3496
+ > ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
3497
+ > WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
3498
+ > DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
3499
+ > FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
3500
+ > DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
3501
+ > SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
3502
+ > CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
3503
+ > OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3504
+ > OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3505
+
3506
+ ----------------------------------------
3507
+
3508
+ ## state-toggle@v1.0.3
3509
+
3510
+ > Enter/exit a state
3511
+
3512
+ License: MIT
3513
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3514
+ Contributors:
3515
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3516
+
3517
+ > (The MIT License)
3518
+ >
3519
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
3520
+ >
3521
+ > Permission is hereby granted, free of charge, to any person obtaining
3522
+ > a copy of this software and associated documentation files (the
3523
+ > 'Software'), to deal in the Software without restriction, including
3524
+ > without limitation the rights to use, copy, modify, merge, publish,
3525
+ > distribute, sublicense, and/or sell copies of the Software, and to
3526
+ > permit persons to whom the Software is furnished to do so, subject to
3527
+ > the following conditions:
3528
+ >
3529
+ > The above copyright notice and this permission notice shall be
3530
+ > included in all copies or substantial portions of the Software.
3531
+ >
3532
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3533
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3534
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3535
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3536
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3537
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3538
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3539
+
3540
+ ----------------------------------------
3541
+
3542
+ ## strip-ansi@v7.1.0
3543
+
3544
+ > Strip ANSI escape codes from a string
3545
+
3546
+ License: MIT
3547
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3548
+
3549
+ > MIT License
3550
+ >
3551
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
3552
+ >
3553
+ > 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:
3554
+ >
3555
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3556
+ >
3557
+ > 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.
3558
+
3559
+ ----------------------------------------
3560
+
3561
+ ## to-fast-properties@v4.0.0
3562
+
3563
+ > Force V8 to use fast properties for an object
3564
+
3565
+ License: MIT
3566
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https:/sindresorhus.com)
3567
+
3568
+ > MIT License
3569
+ >
3570
+ > Copyright (c) Petka Antonov
3571
+ > Benjamin Gruenbaum
3572
+ > John-David Dalton
3573
+ > Sindre Sorhus
3574
+ >
3575
+ > 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:
3576
+ >
3577
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3578
+ >
3579
+ > 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.
3580
+
3581
+ ----------------------------------------
3582
+
3583
+ ## to-regex-range@v5.0.1
3584
+
3585
+ > Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.
3586
+
3587
+ License: MIT
3588
+ Homepage: <https://github.com/micromatch/to-regex-range>
3589
+ Author: Jon Schlinkert (https://github.com/jonschlinkert)
3590
+ Contributors:
3591
+ - Jon Schlinkert (http://twitter.com/jonschlinkert)
3592
+ - Rouven Weßling (www.rouvenwessling.de)
3593
+
3594
+ > The MIT License (MIT)
3595
+ >
3596
+ > Copyright (c) 2015-present, Jon Schlinkert.
3597
+ >
3598
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3599
+ > of this software and associated documentation files (the "Software"), to deal
3600
+ > in the Software without restriction, including without limitation the rights
3601
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3602
+ > copies of the Software, and to permit persons to whom the Software is
3603
+ > furnished to do so, subject to the following conditions:
3604
+ >
3605
+ > The above copyright notice and this permission notice shall be included in
3606
+ > all copies or substantial portions of the Software.
3607
+ >
3608
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3609
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3610
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3611
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3612
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3613
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3614
+ > THE SOFTWARE.
3615
+
3616
+ ----------------------------------------
3617
+
3618
+ ## trim@v1.0.1
3619
+
3620
+ > Trim string whitespace
3621
+
3622
+ License: MIT
3623
+ Repository: <https://github.com/Trott/trim.git>
3624
+ Author: TJ Holowaychuk <tj@vision-media.ca>
3625
+
3626
+ ----------------------------------------
3627
+
3628
+ ## trim-trailing-lines@v1.1.4
3629
+
3630
+ > Remove final line feeds from a string
3631
+
3632
+ License: MIT
3633
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3634
+ Contributors:
3635
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3636
+
3637
+ > (The MIT License)
3638
+ >
3639
+ > Copyright (c) 2015 Titus Wormer <mailto:tituswormer@gmail.com>
3640
+ >
3641
+ > Permission is hereby granted, free of charge, to any person obtaining
3642
+ > a copy of this software and associated documentation files (the
3643
+ > 'Software'), to deal in the Software without restriction, including
3644
+ > without limitation the rights to use, copy, modify, merge, publish,
3645
+ > distribute, sublicense, and/or sell copies of the Software, and to
3646
+ > permit persons to whom the Software is furnished to do so, subject to
3647
+ > the following conditions:
3648
+ >
3649
+ > The above copyright notice and this permission notice shall be
3650
+ > included in all copies or substantial portions of the Software.
3651
+ >
3652
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3653
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3654
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3655
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3656
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3657
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3658
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3659
+
3660
+ ----------------------------------------
3661
+
3662
+ ## trough@v1.0.5
3663
+
3664
+ > Middleware: a channel used to convey a liquid
3665
+
3666
+ License: MIT
3667
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3668
+ Contributors:
3669
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3670
+
3671
+ > (The MIT License)
3672
+ >
3673
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
3674
+ >
3675
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3676
+ > of this software and associated documentation files (the "Software"), to deal
3677
+ > in the Software without restriction, including without limitation the rights
3678
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3679
+ > copies of the Software, and to permit persons to whom the Software is
3680
+ > furnished to do so, subject to the following conditions:
3681
+ >
3682
+ > The above copyright notice and this permission notice shall be included in
3683
+ > all copies or substantial portions of the Software.
3684
+ >
3685
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3686
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3687
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3688
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3689
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3690
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3691
+ > THE SOFTWARE.
3692
+
3693
+ ----------------------------------------
3694
+
3695
+ ## ts-api-utils@v2.0.1
3696
+
3697
+ > Utility functions for working with TypeScript's API. Successor to the wonderful tsutils. 🛠️️
3698
+
3699
+ License: MIT
3700
+ Repository: <https://github.com/JoshuaKGoldberg/ts-api-utils>
3701
+ Author: JoshuaKGoldberg <npm@joshuakgoldberg.com>
3702
+
3703
+ > # MIT License
3704
+ >
3705
+ > Permission is hereby granted, free of charge, to any person obtaining
3706
+ > a copy of this software and associated documentation files (the
3707
+ > 'Software'), to deal in the Software without restriction, including
3708
+ > without limitation the rights to use, copy, modify, merge, publish,
3709
+ > distribute, sublicense, and/or sell copies of the Software, and to
3710
+ > permit persons to whom the Software is furnished to do so, subject to
3711
+ > the following conditions:
3712
+ >
3713
+ > The above copyright notice and this permission notice shall be
3714
+ > included in all copies or substantial portions of the Software.
3715
+ >
3716
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3717
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3718
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3719
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3720
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3721
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3722
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3723
+
3724
+ ----------------------------------------
3725
+
3726
+ ## typescript@v5.7.3
3727
+
3728
+ > TypeScript is a language for application scale JavaScript development
3729
+
3730
+ License: Apache-2.0
3731
+ Homepage: <https://www.typescriptlang.org/>
3732
+ Repository: <https://github.com/microsoft/TypeScript.git>
3733
+ Author: Microsoft Corp.
3734
+
3735
+ > Apache License
3736
+ >
3737
+ > Version 2.0, January 2004
3738
+ >
3739
+ > http://www.apache.org/licenses/
3740
+ >
3741
+ > TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
3742
+ >
3743
+ > 1. Definitions.
3744
+ >
3745
+ > "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
3746
+ >
3747
+ > "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
3748
+ >
3749
+ > "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
3750
+ >
3751
+ > "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
3752
+ >
3753
+ > "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
3754
+ >
3755
+ > "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
3756
+ >
3757
+ > "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
3758
+ >
3759
+ > "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
3760
+ >
3761
+ > "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
3762
+ >
3763
+ > "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
3764
+ >
3765
+ > 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
3766
+ >
3767
+ > 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
3768
+ >
3769
+ > 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
3770
+ >
3771
+ > You must give any other recipients of the Work or Derivative Works a copy of this License; and
3772
+ >
3773
+ > You must cause any modified files to carry prominent notices stating that You changed the files; and
3774
+ >
3775
+ > You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
3776
+ >
3777
+ > If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
3778
+ >
3779
+ > 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
3780
+ >
3781
+ > 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
3782
+ >
3783
+ > 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
3784
+ >
3785
+ > 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
3786
+ >
3787
+ > 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
3788
+ >
3789
+ > END OF TERMS AND CONDITIONS
3790
+
3791
+ ----------------------------------------
3792
+
3793
+ ## unherit@v1.1.3
3794
+
3795
+ > Clone a constructor without affecting the super-class
3796
+
3797
+ License: MIT
3798
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3799
+ Contributors:
3800
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3801
+
3802
+ > (The MIT License)
3803
+ >
3804
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
3805
+ >
3806
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3807
+ > of this software and associated documentation files (the "Software"), to deal
3808
+ > in the Software without restriction, including without limitation the rights
3809
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3810
+ > copies of the Software, and to permit persons to whom the Software is
3811
+ > furnished to do so, subject to the following conditions:
3812
+ >
3813
+ > The above copyright notice and this permission notice shall be included in
3814
+ > all copies or substantial portions of the Software.
3815
+ >
3816
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3817
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3818
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3819
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3820
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3821
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3822
+ > THE SOFTWARE.
3823
+
3824
+ ----------------------------------------
3825
+
3826
+ ## unified@v9.2.2
3827
+
3828
+ > Interface for parsing, inspecting, transforming, and serializing content through syntax trees
3829
+
3830
+ License: MIT
3831
+ Homepage: <https://unifiedjs.com>
3832
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3833
+ Contributors:
3834
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3835
+ - Junyoung Choi <fluke8259@gmail.com>
3836
+ - Hernan Rajchert <hrajchert@gmail.com>
3837
+ - Christian Murphy <christian.murphy.42@gmail.com>
3838
+ - Vse Mozhet Byt <vsemozhetbyt@gmail.com>
3839
+ - Richard Littauer <richard.littauer@gmail.com>
3840
+
3841
+ > (The MIT License)
3842
+ >
3843
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
3844
+ >
3845
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3846
+ > of this software and associated documentation files (the "Software"), to deal
3847
+ > in the Software without restriction, including without limitation the rights
3848
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3849
+ > copies of the Software, and to permit persons to whom the Software is
3850
+ > furnished to do so, subject to the following conditions:
3851
+ >
3852
+ > The above copyright notice and this permission notice shall be included in
3853
+ > all copies or substantial portions of the Software.
3854
+ >
3855
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3856
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3857
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3858
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3859
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3860
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3861
+ > THE SOFTWARE.
3862
+
3863
+ ----------------------------------------
3864
+
3865
+ ## uniq@v1.0.1
3866
+
3867
+ > Removes duplicates from a sorted array in place
3868
+
3869
+ License: MIT
3870
+ Repository: <git://github.com/mikolalysenko/uniq.git>
3871
+ Author: Mikola Lysenko
3872
+
3873
+ > The MIT License (MIT)
3874
+ >
3875
+ > Copyright (c) 2013 Mikola Lysenko
3876
+ >
3877
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
3878
+ > of this software and associated documentation files (the "Software"), to deal
3879
+ > in the Software without restriction, including without limitation the rights
3880
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
3881
+ > copies of the Software, and to permit persons to whom the Software is
3882
+ > furnished to do so, subject to the following conditions:
3883
+ >
3884
+ > The above copyright notice and this permission notice shall be included in
3885
+ > all copies or substantial portions of the Software.
3886
+ >
3887
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
3888
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
3889
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
3890
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
3891
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
3892
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
3893
+ > THE SOFTWARE.
3894
+
3895
+ ----------------------------------------
3896
+
3897
+ ## unist-util-is@v4.1.0
3898
+
3899
+ > unist utility to check if a node passes a test
3900
+
3901
+ License: MIT
3902
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3903
+ Contributors:
3904
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3905
+ - Christian Murphy <christian.murphy.42@gmail.com>
3906
+ - Lucas Brandstaetter <lucas@brandstaetter.tech> (https://github.com/Roang-zero1)
3907
+
3908
+ > (The MIT license)
3909
+ >
3910
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
3911
+ >
3912
+ > Permission is hereby granted, free of charge, to any person obtaining
3913
+ > a copy of this software and associated documentation files (the
3914
+ > 'Software'), to deal in the Software without restriction, including
3915
+ > without limitation the rights to use, copy, modify, merge, publish,
3916
+ > distribute, sublicense, and/or sell copies of the Software, and to
3917
+ > permit persons to whom the Software is furnished to do so, subject to
3918
+ > the following conditions:
3919
+ >
3920
+ > The above copyright notice and this permission notice shall be
3921
+ > included in all copies or substantial portions of the Software.
3922
+ >
3923
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3924
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3925
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3926
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3927
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3928
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3929
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3930
+
3931
+ ----------------------------------------
3932
+
3933
+ ## unist-util-remove-position@v2.0.1
3934
+
3935
+ > unist utility to remove positions from a tree
3936
+
3937
+ License: MIT
3938
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3939
+ Contributors:
3940
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3941
+
3942
+ > (The MIT License)
3943
+ >
3944
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
3945
+ >
3946
+ > Permission is hereby granted, free of charge, to any person obtaining
3947
+ > a copy of this software and associated documentation files (the
3948
+ > 'Software'), to deal in the Software without restriction, including
3949
+ > without limitation the rights to use, copy, modify, merge, publish,
3950
+ > distribute, sublicense, and/or sell copies of the Software, and to
3951
+ > permit persons to whom the Software is furnished to do so, subject to
3952
+ > the following conditions:
3953
+ >
3954
+ > The above copyright notice and this permission notice shall be
3955
+ > included in all copies or substantial portions of the Software.
3956
+ >
3957
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3958
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3959
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3960
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3961
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3962
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3963
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3964
+
3965
+ ----------------------------------------
3966
+
3967
+ ## unist-util-stringify-position@v2.0.3
3968
+
3969
+ > unist utility to serialize a node, position, or point as a human readable location
3970
+
3971
+ License: MIT
3972
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3973
+ Contributors:
3974
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
3975
+
3976
+ > (The MIT License)
3977
+ >
3978
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
3979
+ >
3980
+ > Permission is hereby granted, free of charge, to any person obtaining
3981
+ > a copy of this software and associated documentation files (the
3982
+ > 'Software'), to deal in the Software without restriction, including
3983
+ > without limitation the rights to use, copy, modify, merge, publish,
3984
+ > distribute, sublicense, and/or sell copies of the Software, and to
3985
+ > permit persons to whom the Software is furnished to do so, subject to
3986
+ > the following conditions:
3987
+ >
3988
+ > The above copyright notice and this permission notice shall be
3989
+ > included in all copies or substantial portions of the Software.
3990
+ >
3991
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
3992
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
3993
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
3994
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
3995
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
3996
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3997
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3998
+
3999
+ ----------------------------------------
4000
+
4001
+ ## unist-util-visit@v2.0.3
4002
+
4003
+ > unist utility to visit nodes
4004
+
4005
+ License: MIT
4006
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4007
+ Contributors:
4008
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4009
+ - Eugene Sharygin <eush77@gmail.com>
4010
+ - Richard Gibson <richard.gibson@gmail.com>
4011
+
4012
+ > (The MIT License)
4013
+ >
4014
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
4015
+ >
4016
+ > Permission is hereby granted, free of charge, to any person obtaining
4017
+ > a copy of this software and associated documentation files (the
4018
+ > 'Software'), to deal in the Software without restriction, including
4019
+ > without limitation the rights to use, copy, modify, merge, publish,
4020
+ > distribute, sublicense, and/or sell copies of the Software, and to
4021
+ > permit persons to whom the Software is furnished to do so, subject to
4022
+ > the following conditions:
4023
+ >
4024
+ > The above copyright notice and this permission notice shall be
4025
+ > included in all copies or substantial portions of the Software.
4026
+ >
4027
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
4028
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4029
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
4030
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
4031
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
4032
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
4033
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4034
+
4035
+ ----------------------------------------
4036
+
4037
+ ## unist-util-visit-parents@v3.1.1
4038
+
4039
+ > unist utility to recursively walk over nodes, with ancestral information
4040
+
4041
+ License: MIT
4042
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4043
+ Contributors:
4044
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4045
+
4046
+ > (The MIT License)
4047
+ >
4048
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
4049
+ >
4050
+ > Permission is hereby granted, free of charge, to any person obtaining
4051
+ > a copy of this software and associated documentation files (the
4052
+ > 'Software'), to deal in the Software without restriction, including
4053
+ > without limitation the rights to use, copy, modify, merge, publish,
4054
+ > distribute, sublicense, and/or sell copies of the Software, and to
4055
+ > permit persons to whom the Software is furnished to do so, subject to
4056
+ > the following conditions:
4057
+ >
4058
+ > The above copyright notice and this permission notice shall be
4059
+ > included in all copies or substantial portions of the Software.
4060
+ >
4061
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
4062
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4063
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
4064
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
4065
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
4066
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
4067
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4068
+
4069
+ ----------------------------------------
4070
+
4071
+ ## url-or-path@v2.3.2
4072
+
4073
+ > Convert between file URL and path.
4074
+
4075
+ License: MIT
4076
+ Homepage: <https://github.com/fisker/url-or-path#readme>
4077
+ Author: fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
4078
+
4079
+ > MIT License
4080
+ >
4081
+ > Copyright (c) fisker Cheung <lionkay@gmail.com> (https://www.fiskercheung.com/)
4082
+ >
4083
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
4084
+ > of this software and associated documentation files (the "Software"), to deal
4085
+ > in the Software without restriction, including without limitation the rights
4086
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4087
+ > copies of the Software, and to permit persons to whom the Software is
4088
+ > furnished to do so, subject to the following conditions:
4089
+ >
4090
+ > The above copyright notice and this permission notice shall be included in all
4091
+ > copies or substantial portions of the Software.
4092
+ >
4093
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4094
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4095
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4096
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4097
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4098
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4099
+ > SOFTWARE.
4100
+
4101
+ ----------------------------------------
4102
+
4103
+ ## vfile@v4.2.1
4104
+
4105
+ > Virtual file format for text processing
4106
+
4107
+ License: MIT
4108
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4109
+ Contributors:
4110
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4111
+ - Brendan Abbott <brendan.abbott@temando.com>
4112
+ - Denys Dovhan <email@denysdovhan.com>
4113
+ - Kyle Mathews <mathews.kyle@gmail.com>
4114
+ - Shinnosuke Watanabe <snnskwtnb@gmail.com>
4115
+ - Sindre Sorhus <sindresorhus@gmail.com>
4116
+
4117
+ > (The MIT License)
4118
+ >
4119
+ > Copyright (c) 2015 Titus Wormer <tituswormer@gmail.com>
4120
+ >
4121
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
4122
+ > of this software and associated documentation files (the "Software"), to deal
4123
+ > in the Software without restriction, including without limitation the rights
4124
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4125
+ > copies of the Software, and to permit persons to whom the Software is
4126
+ > furnished to do so, subject to the following conditions:
4127
+ >
4128
+ > The above copyright notice and this permission notice shall be included in
4129
+ > all copies or substantial portions of the Software.
4130
+ >
4131
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4132
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4133
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4134
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4135
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4136
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
4137
+ > THE SOFTWARE.
4138
+
4139
+ ----------------------------------------
4140
+
4141
+ ## vfile-location@v3.2.0
4142
+
4143
+ > vfile utility to convert between positional (line and column-based) and offset (range-based) locations
4144
+
4145
+ License: MIT
4146
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4147
+ Contributors:
4148
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4149
+ - Christian Murphy <christian.murphy.42@gmail.com>
4150
+
4151
+ > (The MIT License)
4152
+ >
4153
+ > Copyright (c) 2016 Titus Wormer <tituswormer@gmail.com>
4154
+ >
4155
+ > Permission is hereby granted, free of charge, to any person obtaining
4156
+ > a copy of this software and associated documentation files (the
4157
+ > 'Software'), to deal in the Software without restriction, including
4158
+ > without limitation the rights to use, copy, modify, merge, publish,
4159
+ > distribute, sublicense, and/or sell copies of the Software, and to
4160
+ > permit persons to whom the Software is furnished to do so, subject to
4161
+ > the following conditions:
4162
+ >
4163
+ > The above copyright notice and this permission notice shall be
4164
+ > included in all copies or substantial portions of the Software.
4165
+ >
4166
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
4167
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4168
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
4169
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
4170
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
4171
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
4172
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4173
+
4174
+ ----------------------------------------
4175
+
4176
+ ## vfile-message@v2.0.4
4177
+
4178
+ > vfile utility to create a virtual message
4179
+
4180
+ License: MIT
4181
+ Author: Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4182
+ Contributors:
4183
+ - Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)
4184
+
4185
+ > (The MIT License)
4186
+ >
4187
+ > Copyright (c) 2017 Titus Wormer <tituswormer@gmail.com>
4188
+ >
4189
+ > Permission is hereby granted, free of charge, to any person obtaining
4190
+ > a copy of this software and associated documentation files (the
4191
+ > 'Software'), to deal in the Software without restriction, including
4192
+ > without limitation the rights to use, copy, modify, merge, publish,
4193
+ > distribute, sublicense, and/or sell copies of the Software, and to
4194
+ > permit persons to whom the Software is furnished to do so, subject to
4195
+ > the following conditions:
4196
+ >
4197
+ > The above copyright notice and this permission notice shall be
4198
+ > included in all copies or substantial portions of the Software.
4199
+ >
4200
+ > THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
4201
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
4202
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
4203
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
4204
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
4205
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
4206
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
4207
+
4208
+ ----------------------------------------
4209
+
4210
+ ## vnopts@v2.0.0
4211
+
4212
+ > validate and normalize options
4213
+
4214
+ License: MIT
4215
+ Homepage: <https://github.com/ikatyang/vnopts#readme>
4216
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
4217
+
4218
+ > MIT License
4219
+ >
4220
+ > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
4221
+ >
4222
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
4223
+ > of this software and associated documentation files (the "Software"), to deal
4224
+ > in the Software without restriction, including without limitation the rights
4225
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4226
+ > copies of the Software, and to permit persons to whom the Software is
4227
+ > furnished to do so, subject to the following conditions:
4228
+ >
4229
+ > The above copyright notice and this permission notice shall be included in all
4230
+ > copies or substantial portions of the Software.
4231
+ >
4232
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4233
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4234
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4235
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4236
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4237
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4238
+ > SOFTWARE.
4239
+
4240
+ ----------------------------------------
4241
+
4242
+ ## wcwidth.js@v2.0.0
4243
+
4244
+ > a javascript porting of C's wcwidth()
4245
+
4246
+ License: MIT
4247
+ Homepage: <http://code.woong.org/wcwidth.js>
4248
+ Repository: <https://github.com/mycoboco/wcwidth.js.git>
4249
+ Author: Woong Jun <woong.jun@gmail.com> (http://code.woong.org/)
4250
+ Contributors:
4251
+ - Tim Oxley <secoif@gmail.com> (http://campjs.com/)
4252
+
4253
+ > wcwidth.js: a javascript portng of C's wcwidth()
4254
+ > ================================================
4255
+ >
4256
+ > Copyright (C) 2012-2014 by Woong Jun and Tim Oxley.
4257
+ >
4258
+ > This package is a javascript porting of `wcwidth()` implementation
4259
+ > [by Markus Kuhn](http://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c).
4260
+ >
4261
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of
4262
+ > this software and associated documentation files (the "Software"), to deal in
4263
+ > the Software without restriction, including without limitation the rights to
4264
+ > use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
4265
+ > of the Software, and to permit persons to whom the Software is furnished to do
4266
+ > so, subject to the following conditions:
4267
+ >
4268
+ > The above copyright notice and this permission notice shall be included in all
4269
+ > copies or substantial portions of the Software.
4270
+ >
4271
+ >
4272
+ > THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
4273
+ > INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
4274
+ > FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR
4275
+ > OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
4276
+ > EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
4277
+ > OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
4278
+ > INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
4279
+ > CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
4280
+ > IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
4281
+ > OF SUCH DAMAGE.
4282
+
4283
+ ----------------------------------------
4284
+
4285
+ ## xtend@v4.0.2
4286
+
4287
+ > extend like a boss
4288
+
4289
+ License: MIT
4290
+ Homepage: <https://github.com/Raynos/xtend>
4291
+ Author: Raynos <raynos2@gmail.com>
4292
+ Contributors:
4293
+ - Jake Verbaten
4294
+ - Matt Esch
4295
+
4296
+ > The MIT License (MIT)
4297
+ > Copyright (c) 2012-2014 Raynos.
4298
+ >
4299
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
4300
+ > of this software and associated documentation files (the "Software"), to deal
4301
+ > in the Software without restriction, including without limitation the rights
4302
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4303
+ > copies of the Software, and to permit persons to whom the Software is
4304
+ > furnished to do so, subject to the following conditions:
4305
+ >
4306
+ > The above copyright notice and this permission notice shall be included in
4307
+ > all copies or substantial portions of the Software.
4308
+ >
4309
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4310
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4311
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4312
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4313
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4314
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
4315
+ > THE SOFTWARE.
4316
+
4317
+ ----------------------------------------
4318
+
4319
+ ## yallist@v2.1.2
4320
+
4321
+ > Yet Another Linked List
4322
+
4323
+ License: ISC
4324
+ Repository: <git+https://github.com/isaacs/yallist.git>
4325
+ Author: Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)
4326
+
4327
+ > The ISC License
4328
+ >
4329
+ > Copyright (c) Isaac Z. Schlueter and Contributors
4330
+ >
4331
+ > Permission to use, copy, modify, and/or distribute this software for any
4332
+ > purpose with or without fee is hereby granted, provided that the above
4333
+ > copyright notice and this permission notice appear in all copies.
4334
+ >
4335
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
4336
+ > WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
4337
+ > MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
4338
+ > ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
4339
+ > WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
4340
+ > ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
4341
+ > IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
4342
+
4343
+ ----------------------------------------
4344
+
4345
+ ## yaml@v1.10.2
4346
+
4347
+ > JavaScript parser and stringifier for YAML
4348
+
4349
+ License: ISC
4350
+ Homepage: <https://eemeli.org/yaml/v1/>
4351
+ Author: Eemeli Aro <eemeli@gmail.com>
4352
+
4353
+ > Copyright 2018 Eemeli Aro <eemeli@gmail.com>
4354
+ >
4355
+ > Permission to use, copy, modify, and/or distribute this software for any purpose
4356
+ > with or without fee is hereby granted, provided that the above copyright notice
4357
+ > and this permission notice appear in all copies.
4358
+ >
4359
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
4360
+ > REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
4361
+ > FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
4362
+ > INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
4363
+ > OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
4364
+ > TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
4365
+ > THIS SOFTWARE.
4366
+
4367
+ ----------------------------------------
4368
+
4369
+ ## yaml-unist-parser@v2.0.1
4370
+
4371
+ > A YAML parser that produces output compatible with unist
4372
+
4373
+ License: MIT
4374
+ Homepage: <https://github.com/prettier/yaml-unist-parser#readme>
4375
+ Author: Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
4376
+
4377
+ > MIT License
4378
+ >
4379
+ > Copyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)
4380
+ >
4381
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
4382
+ > of this software and associated documentation files (the "Software"), to deal
4383
+ > in the Software without restriction, including without limitation the rights
4384
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
4385
+ > copies of the Software, and to permit persons to whom the Software is
4386
+ > furnished to do so, subject to the following conditions:
4387
+ >
4388
+ > The above copyright notice and this permission notice shall be included in all
4389
+ > copies or substantial portions of the Software.
4390
+ >
4391
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
4392
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
4393
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
4394
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
4395
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
4396
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
4397
+ > SOFTWARE.
4398
+
4399
+ ----------------------------------------
4400
+
4401
+ ## yocto-queue@v1.1.1
4402
+
4403
+ > Tiny queue data structure
4404
+
4405
+ License: MIT
4406
+ Author: Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4407
+
4408
+ > MIT License
4409
+ >
4410
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4411
+ >
4412
+ > 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:
4413
+ >
4414
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
4415
+ >
4416
+ > 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.