warbeast2000 0.0.1-security → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of warbeast2000 might be problematic. Click here for more details.
- package/.github/workflows/node.js.yml +31 -0
- package/README.md +5 -5
- package/index.js +7 -0
- package/package.json +23 -3
- package/the_app/node_modules/.bin/mime +16 -0
- package/the_app/node_modules/.bin/mime.cmd +17 -0
- package/the_app/node_modules/.bin/mime.ps1 +28 -0
- package/the_app/node_modules/.bin/npm +16 -0
- package/the_app/node_modules/.bin/npm.cmd +17 -0
- package/the_app/node_modules/.bin/npm.ps1 +28 -0
- package/the_app/node_modules/.bin/npx +16 -0
- package/the_app/node_modules/.bin/npx.cmd +17 -0
- package/the_app/node_modules/.bin/npx.ps1 +28 -0
- package/the_app/node_modules/.package-lock.json +3405 -0
- package/the_app/node_modules/accepts/HISTORY.md +243 -0
- package/the_app/node_modules/accepts/LICENSE +23 -0
- package/the_app/node_modules/accepts/README.md +140 -0
- package/the_app/node_modules/accepts/index.js +238 -0
- package/the_app/node_modules/accepts/package.json +47 -0
- package/the_app/node_modules/array-flatten/LICENSE +21 -0
- package/the_app/node_modules/array-flatten/README.md +43 -0
- package/the_app/node_modules/array-flatten/array-flatten.js +64 -0
- package/the_app/node_modules/array-flatten/package.json +39 -0
- package/the_app/node_modules/async-es/CHANGELOG.md +348 -0
- package/the_app/node_modules/async-es/LICENSE +19 -0
- package/the_app/node_modules/async-es/README.md +58 -0
- package/the_app/node_modules/async-es/all.js +102 -0
- package/the_app/node_modules/async-es/allLimit.js +29 -0
- package/the_app/node_modules/async-es/allSeries.js +28 -0
- package/the_app/node_modules/async-es/any.js +105 -0
- package/the_app/node_modules/async-es/anyLimit.js +30 -0
- package/the_app/node_modules/async-es/anySeries.js +29 -0
- package/the_app/node_modules/async-es/apply.js +48 -0
- package/the_app/node_modules/async-es/applyEach.js +43 -0
- package/the_app/node_modules/async-es/applyEachSeries.js +23 -0
- package/the_app/node_modules/async-es/asyncify.js +100 -0
- package/the_app/node_modules/async-es/auto.js +321 -0
- package/the_app/node_modules/async-es/autoInject.js +173 -0
- package/the_app/node_modules/async-es/cargo.js +51 -0
- package/the_app/node_modules/async-es/cargoQueue.js +59 -0
- package/the_app/node_modules/async-es/compose.js +43 -0
- package/the_app/node_modules/async-es/concat.js +101 -0
- package/the_app/node_modules/async-es/concatLimit.js +43 -0
- package/the_app/node_modules/async-es/concatSeries.js +27 -0
- package/the_app/node_modules/async-es/constant.js +48 -0
- package/the_app/node_modules/async-es/detect.js +79 -0
- package/the_app/node_modules/async-es/detectLimit.js +31 -0
- package/the_app/node_modules/async-es/detectSeries.js +30 -0
- package/the_app/node_modules/async-es/dir.js +32 -0
- package/the_app/node_modules/async-es/doDuring.js +51 -0
- package/the_app/node_modules/async-es/doUntil.js +31 -0
- package/the_app/node_modules/async-es/doWhilst.js +51 -0
- package/the_app/node_modules/async-es/during.js +61 -0
- package/the_app/node_modules/async-es/each.js +109 -0
- package/the_app/node_modules/async-es/eachLimit.js +30 -0
- package/the_app/node_modules/async-es/eachOf.js +156 -0
- package/the_app/node_modules/async-es/eachOfLimit.js +30 -0
- package/the_app/node_modules/async-es/eachOfSeries.js +25 -0
- package/the_app/node_modules/async-es/eachSeries.js +30 -0
- package/the_app/node_modules/async-es/ensureAsync.js +54 -0
- package/the_app/node_modules/async-es/every.js +102 -0
- package/the_app/node_modules/async-es/everyLimit.js +29 -0
- package/the_app/node_modules/async-es/everySeries.js +28 -0
- package/the_app/node_modules/async-es/filter.js +76 -0
- package/the_app/node_modules/async-es/filterLimit.js +28 -0
- package/the_app/node_modules/async-es/filterSeries.js +26 -0
- package/the_app/node_modules/async-es/find.js +79 -0
- package/the_app/node_modules/async-es/findLimit.js +31 -0
- package/the_app/node_modules/async-es/findSeries.js +30 -0
- package/the_app/node_modules/async-es/flatMap.js +101 -0
- package/the_app/node_modules/async-es/flatMapLimit.js +43 -0
- package/the_app/node_modules/async-es/flatMapSeries.js +27 -0
- package/the_app/node_modules/async-es/foldl.js +133 -0
- package/the_app/node_modules/async-es/foldr.js +29 -0
- package/the_app/node_modules/async-es/forEach.js +109 -0
- package/the_app/node_modules/async-es/forEachLimit.js +30 -0
- package/the_app/node_modules/async-es/forEachOf.js +156 -0
- package/the_app/node_modules/async-es/forEachOfLimit.js +30 -0
- package/the_app/node_modules/async-es/forEachOfSeries.js +25 -0
- package/the_app/node_modules/async-es/forEachSeries.js +30 -0
- package/the_app/node_modules/async-es/forever.js +48 -0
- package/the_app/node_modules/async-es/groupBy.js +96 -0
- package/the_app/node_modules/async-es/groupByLimit.js +54 -0
- package/the_app/node_modules/async-es/groupBySeries.js +24 -0
- package/the_app/node_modules/async-es/index.js +358 -0
- package/the_app/node_modules/async-es/inject.js +133 -0
- package/the_app/node_modules/async-es/internal/DoublyLinkedList.js +92 -0
- package/the_app/node_modules/async-es/internal/Heap.js +115 -0
- package/the_app/node_modules/async-es/internal/applyEach.js +14 -0
- package/the_app/node_modules/async-es/internal/asyncEachOfLimit.js +63 -0
- package/the_app/node_modules/async-es/internal/awaitify.js +21 -0
- package/the_app/node_modules/async-es/internal/breakLoop.js +4 -0
- package/the_app/node_modules/async-es/internal/consoleFunc.js +18 -0
- package/the_app/node_modules/async-es/internal/createTester.js +25 -0
- package/the_app/node_modules/async-es/internal/eachOfLimit.js +68 -0
- package/the_app/node_modules/async-es/internal/filter.js +42 -0
- package/the_app/node_modules/async-es/internal/getIterator.js +3 -0
- package/the_app/node_modules/async-es/internal/initialParams.js +6 -0
- package/the_app/node_modules/async-es/internal/isArrayLike.js +6 -0
- package/the_app/node_modules/async-es/internal/iterator.js +43 -0
- package/the_app/node_modules/async-es/internal/map.js +18 -0
- package/the_app/node_modules/async-es/internal/once.js +10 -0
- package/the_app/node_modules/async-es/internal/onlyOnce.js +8 -0
- package/the_app/node_modules/async-es/internal/parallel.js +17 -0
- package/the_app/node_modules/async-es/internal/promiseCallback.js +19 -0
- package/the_app/node_modules/async-es/internal/queue.js +276 -0
- package/the_app/node_modules/async-es/internal/range.js +7 -0
- package/the_app/node_modules/async-es/internal/reject.js +11 -0
- package/the_app/node_modules/async-es/internal/setImmediate.js +27 -0
- package/the_app/node_modules/async-es/internal/withoutIndex.js +3 -0
- package/the_app/node_modules/async-es/internal/wrapAsync.js +22 -0
- package/the_app/node_modules/async-es/log.js +30 -0
- package/the_app/node_modules/async-es/map.js +125 -0
- package/the_app/node_modules/async-es/mapLimit.js +28 -0
- package/the_app/node_modules/async-es/mapSeries.js +27 -0
- package/the_app/node_modules/async-es/mapValues.js +140 -0
- package/the_app/node_modules/async-es/mapValuesLimit.js +41 -0
- package/the_app/node_modules/async-es/mapValuesSeries.js +25 -0
- package/the_app/node_modules/async-es/memoize.js +73 -0
- package/the_app/node_modules/async-es/nextTick.js +45 -0
- package/the_app/node_modules/async-es/package.json +76 -0
- package/the_app/node_modules/async-es/parallel.js +165 -0
- package/the_app/node_modules/async-es/parallelLimit.js +26 -0
- package/the_app/node_modules/async-es/priorityQueue.js +68 -0
- package/the_app/node_modules/async-es/queue.js +151 -0
- package/the_app/node_modules/async-es/race.js +50 -0
- package/the_app/node_modules/async-es/reduce.js +133 -0
- package/the_app/node_modules/async-es/reduceRight.js +29 -0
- package/the_app/node_modules/async-es/reflect.js +63 -0
- package/the_app/node_modules/async-es/reflectAll.js +81 -0
- package/the_app/node_modules/async-es/reject.js +70 -0
- package/the_app/node_modules/async-es/rejectLimit.js +27 -0
- package/the_app/node_modules/async-es/rejectSeries.js +26 -0
- package/the_app/node_modules/async-es/retry.js +150 -0
- package/the_app/node_modules/async-es/retryable.js +59 -0
- package/the_app/node_modules/async-es/select.js +76 -0
- package/the_app/node_modules/async-es/selectLimit.js +28 -0
- package/the_app/node_modules/async-es/selectSeries.js +26 -0
- package/the_app/node_modules/async-es/seq.js +64 -0
- package/the_app/node_modules/async-es/series.js +171 -0
- package/the_app/node_modules/async-es/setImmediate.js +34 -0
- package/the_app/node_modules/async-es/some.js +105 -0
- package/the_app/node_modules/async-es/someLimit.js +30 -0
- package/the_app/node_modules/async-es/someSeries.js +29 -0
- package/the_app/node_modules/async-es/sortBy.js +172 -0
- package/the_app/node_modules/async-es/timeout.js +74 -0
- package/the_app/node_modules/async-es/times.js +38 -0
- package/the_app/node_modules/async-es/timesLimit.js +25 -0
- package/the_app/node_modules/async-es/timesSeries.js +20 -0
- package/the_app/node_modules/async-es/transform.js +154 -0
- package/the_app/node_modules/async-es/tryEach.js +61 -0
- package/the_app/node_modules/async-es/unmemoize.js +18 -0
- package/the_app/node_modules/async-es/until.js +46 -0
- package/the_app/node_modules/async-es/waterfall.js +85 -0
- package/the_app/node_modules/async-es/whilst.js +61 -0
- package/the_app/node_modules/async-es/wrapSync.js +100 -0
- package/the_app/node_modules/body-parser/HISTORY.md +657 -0
- package/the_app/node_modules/body-parser/LICENSE +23 -0
- package/the_app/node_modules/body-parser/README.md +464 -0
- package/the_app/node_modules/body-parser/SECURITY.md +25 -0
- package/the_app/node_modules/body-parser/index.js +156 -0
- package/the_app/node_modules/body-parser/lib/read.js +205 -0
- package/the_app/node_modules/body-parser/lib/types/json.js +236 -0
- package/the_app/node_modules/body-parser/lib/types/raw.js +101 -0
- package/the_app/node_modules/body-parser/lib/types/text.js +121 -0
- package/the_app/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/the_app/node_modules/body-parser/package.json +56 -0
- package/the_app/node_modules/bytes/History.md +97 -0
- package/the_app/node_modules/bytes/LICENSE +23 -0
- package/the_app/node_modules/bytes/Readme.md +152 -0
- package/the_app/node_modules/bytes/index.js +170 -0
- package/the_app/node_modules/bytes/package.json +42 -0
- package/the_app/node_modules/call-bind/.eslintignore +1 -0
- package/the_app/node_modules/call-bind/.eslintrc +16 -0
- package/the_app/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/call-bind/.nycrc +9 -0
- package/the_app/node_modules/call-bind/CHANGELOG.md +77 -0
- package/the_app/node_modules/call-bind/LICENSE +21 -0
- package/the_app/node_modules/call-bind/README.md +64 -0
- package/the_app/node_modules/call-bind/callBound.js +15 -0
- package/the_app/node_modules/call-bind/index.js +44 -0
- package/the_app/node_modules/call-bind/package.json +90 -0
- package/the_app/node_modules/call-bind/test/callBound.js +54 -0
- package/the_app/node_modules/call-bind/test/index.js +80 -0
- package/the_app/node_modules/content-disposition/HISTORY.md +60 -0
- package/the_app/node_modules/content-disposition/LICENSE +22 -0
- package/the_app/node_modules/content-disposition/README.md +142 -0
- package/the_app/node_modules/content-disposition/index.js +458 -0
- package/the_app/node_modules/content-disposition/package.json +44 -0
- package/the_app/node_modules/content-type/HISTORY.md +29 -0
- package/the_app/node_modules/content-type/LICENSE +22 -0
- package/the_app/node_modules/content-type/README.md +94 -0
- package/the_app/node_modules/content-type/index.js +225 -0
- package/the_app/node_modules/content-type/package.json +42 -0
- package/the_app/node_modules/cookie/HISTORY.md +142 -0
- package/the_app/node_modules/cookie/LICENSE +24 -0
- package/the_app/node_modules/cookie/README.md +302 -0
- package/the_app/node_modules/cookie/SECURITY.md +25 -0
- package/the_app/node_modules/cookie/index.js +270 -0
- package/the_app/node_modules/cookie/package.json +44 -0
- package/the_app/node_modules/cookie-signature/History.md +38 -0
- package/the_app/node_modules/cookie-signature/Readme.md +42 -0
- package/the_app/node_modules/cookie-signature/index.js +51 -0
- package/the_app/node_modules/cookie-signature/package.json +18 -0
- package/the_app/node_modules/debug/.coveralls.yml +1 -0
- package/the_app/node_modules/debug/.eslintrc +11 -0
- package/the_app/node_modules/debug/.travis.yml +14 -0
- package/the_app/node_modules/debug/CHANGELOG.md +362 -0
- package/the_app/node_modules/debug/LICENSE +19 -0
- package/the_app/node_modules/debug/Makefile +50 -0
- package/the_app/node_modules/debug/README.md +312 -0
- package/the_app/node_modules/debug/component.json +19 -0
- package/the_app/node_modules/debug/karma.conf.js +70 -0
- package/the_app/node_modules/debug/node.js +1 -0
- package/the_app/node_modules/debug/package.json +49 -0
- package/the_app/node_modules/debug/src/browser.js +185 -0
- package/the_app/node_modules/debug/src/debug.js +202 -0
- package/the_app/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/debug/src/inspector-log.js +15 -0
- package/the_app/node_modules/debug/src/node.js +248 -0
- package/the_app/node_modules/define-data-property/.eslintrc +24 -0
- package/the_app/node_modules/define-data-property/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/define-data-property/.nycrc +13 -0
- package/the_app/node_modules/define-data-property/CHANGELOG.md +41 -0
- package/the_app/node_modules/define-data-property/LICENSE +21 -0
- package/the_app/node_modules/define-data-property/README.md +67 -0
- package/the_app/node_modules/define-data-property/index.d.ts +3 -0
- package/the_app/node_modules/define-data-property/index.d.ts.map +1 -0
- package/the_app/node_modules/define-data-property/index.js +68 -0
- package/the_app/node_modules/define-data-property/package.json +113 -0
- package/the_app/node_modules/define-data-property/test/index.js +392 -0
- package/the_app/node_modules/define-data-property/tsconfig.json +59 -0
- package/the_app/node_modules/depd/History.md +103 -0
- package/the_app/node_modules/depd/LICENSE +22 -0
- package/the_app/node_modules/depd/Readme.md +280 -0
- package/the_app/node_modules/depd/index.js +538 -0
- package/the_app/node_modules/depd/lib/browser/index.js +77 -0
- package/the_app/node_modules/depd/package.json +45 -0
- package/the_app/node_modules/destroy/LICENSE +23 -0
- package/the_app/node_modules/destroy/README.md +63 -0
- package/the_app/node_modules/destroy/index.js +209 -0
- package/the_app/node_modules/destroy/package.json +48 -0
- package/the_app/node_modules/ee-first/LICENSE +22 -0
- package/the_app/node_modules/ee-first/README.md +80 -0
- package/the_app/node_modules/ee-first/index.js +95 -0
- package/the_app/node_modules/ee-first/package.json +29 -0
- package/the_app/node_modules/encodeurl/HISTORY.md +14 -0
- package/the_app/node_modules/encodeurl/LICENSE +22 -0
- package/the_app/node_modules/encodeurl/README.md +128 -0
- package/the_app/node_modules/encodeurl/index.js +60 -0
- package/the_app/node_modules/encodeurl/package.json +40 -0
- package/the_app/node_modules/escape-html/LICENSE +24 -0
- package/the_app/node_modules/escape-html/Readme.md +43 -0
- package/the_app/node_modules/escape-html/index.js +78 -0
- package/the_app/node_modules/escape-html/package.json +24 -0
- package/the_app/node_modules/etag/HISTORY.md +83 -0
- package/the_app/node_modules/etag/LICENSE +22 -0
- package/the_app/node_modules/etag/README.md +159 -0
- package/the_app/node_modules/etag/index.js +131 -0
- package/the_app/node_modules/etag/package.json +47 -0
- package/the_app/node_modules/express/History.md +3588 -0
- package/the_app/node_modules/express/LICENSE +24 -0
- package/the_app/node_modules/express/Readme.md +166 -0
- package/the_app/node_modules/express/index.js +11 -0
- package/the_app/node_modules/express/lib/application.js +661 -0
- package/the_app/node_modules/express/lib/express.js +116 -0
- package/the_app/node_modules/express/lib/middleware/init.js +43 -0
- package/the_app/node_modules/express/lib/middleware/query.js +47 -0
- package/the_app/node_modules/express/lib/request.js +525 -0
- package/the_app/node_modules/express/lib/response.js +1169 -0
- package/the_app/node_modules/express/lib/router/index.js +673 -0
- package/the_app/node_modules/express/lib/router/layer.js +181 -0
- package/the_app/node_modules/express/lib/router/route.js +225 -0
- package/the_app/node_modules/express/lib/utils.js +304 -0
- package/the_app/node_modules/express/lib/view.js +182 -0
- package/the_app/node_modules/express/package.json +99 -0
- package/the_app/node_modules/finalhandler/HISTORY.md +195 -0
- package/the_app/node_modules/finalhandler/LICENSE +22 -0
- package/the_app/node_modules/finalhandler/README.md +147 -0
- package/the_app/node_modules/finalhandler/SECURITY.md +25 -0
- package/the_app/node_modules/finalhandler/index.js +336 -0
- package/the_app/node_modules/finalhandler/package.json +46 -0
- package/the_app/node_modules/forwarded/HISTORY.md +21 -0
- package/the_app/node_modules/forwarded/LICENSE +22 -0
- package/the_app/node_modules/forwarded/README.md +57 -0
- package/the_app/node_modules/forwarded/index.js +90 -0
- package/the_app/node_modules/forwarded/package.json +45 -0
- package/the_app/node_modules/fresh/HISTORY.md +70 -0
- package/the_app/node_modules/fresh/LICENSE +23 -0
- package/the_app/node_modules/fresh/README.md +119 -0
- package/the_app/node_modules/fresh/index.js +137 -0
- package/the_app/node_modules/fresh/package.json +46 -0
- package/the_app/node_modules/function-bind/.eslintrc +21 -0
- package/the_app/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/the_app/node_modules/function-bind/.nycrc +13 -0
- package/the_app/node_modules/function-bind/CHANGELOG.md +136 -0
- package/the_app/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/function-bind/README.md +46 -0
- package/the_app/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/function-bind/test/.eslintrc +9 -0
- package/the_app/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/get-intrinsic/.eslintrc +38 -0
- package/the_app/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/get-intrinsic/.nycrc +9 -0
- package/the_app/node_modules/get-intrinsic/CHANGELOG.md +125 -0
- package/the_app/node_modules/get-intrinsic/LICENSE +21 -0
- package/the_app/node_modules/get-intrinsic/README.md +71 -0
- package/the_app/node_modules/get-intrinsic/index.js +351 -0
- package/the_app/node_modules/get-intrinsic/package.json +93 -0
- package/the_app/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/the_app/node_modules/gopd/.eslintrc +16 -0
- package/the_app/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/gopd/CHANGELOG.md +25 -0
- package/the_app/node_modules/gopd/LICENSE +21 -0
- package/the_app/node_modules/gopd/README.md +40 -0
- package/the_app/node_modules/gopd/index.js +16 -0
- package/the_app/node_modules/gopd/package.json +71 -0
- package/the_app/node_modules/gopd/test/index.js +35 -0
- package/the_app/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/the_app/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/has-property-descriptors/.nycrc +9 -0
- package/the_app/node_modules/has-property-descriptors/CHANGELOG.md +27 -0
- package/the_app/node_modules/has-property-descriptors/LICENSE +21 -0
- package/the_app/node_modules/has-property-descriptors/README.md +43 -0
- package/the_app/node_modules/has-property-descriptors/index.js +33 -0
- package/the_app/node_modules/has-property-descriptors/package.json +77 -0
- package/the_app/node_modules/has-property-descriptors/test/index.js +57 -0
- package/the_app/node_modules/has-proto/.eslintrc +5 -0
- package/the_app/node_modules/has-proto/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/has-proto/CHANGELOG.md +23 -0
- package/the_app/node_modules/has-proto/LICENSE +21 -0
- package/the_app/node_modules/has-proto/README.md +38 -0
- package/the_app/node_modules/has-proto/index.js +11 -0
- package/the_app/node_modules/has-proto/package.json +74 -0
- package/the_app/node_modules/has-proto/test/index.js +19 -0
- package/the_app/node_modules/has-symbols/.eslintrc +11 -0
- package/the_app/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/has-symbols/.nycrc +9 -0
- package/the_app/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/the_app/node_modules/has-symbols/LICENSE +21 -0
- package/the_app/node_modules/has-symbols/README.md +46 -0
- package/the_app/node_modules/has-symbols/index.js +13 -0
- package/the_app/node_modules/has-symbols/package.json +101 -0
- package/the_app/node_modules/has-symbols/shams.js +42 -0
- package/the_app/node_modules/has-symbols/test/index.js +22 -0
- package/the_app/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/the_app/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/the_app/node_modules/has-symbols/test/tests.js +56 -0
- package/the_app/node_modules/hasown/.eslintrc +5 -0
- package/the_app/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/hasown/.nycrc +13 -0
- package/the_app/node_modules/hasown/CHANGELOG.md +20 -0
- package/the_app/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/hasown/README.md +40 -0
- package/the_app/node_modules/hasown/index.d.ts +3 -0
- package/the_app/node_modules/hasown/index.d.ts.map +1 -0
- package/the_app/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/http-errors/HISTORY.md +180 -0
- package/the_app/node_modules/http-errors/LICENSE +23 -0
- package/the_app/node_modules/http-errors/README.md +169 -0
- package/the_app/node_modules/http-errors/index.js +289 -0
- package/the_app/node_modules/http-errors/package.json +50 -0
- package/the_app/node_modules/iconv-lite/Changelog.md +162 -0
- package/the_app/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/iconv-lite/README.md +156 -0
- package/the_app/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/the_app/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/the_app/node_modules/iconv-lite/encodings/index.js +22 -0
- package/the_app/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/the_app/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/the_app/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/the_app/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/the_app/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/the_app/node_modules/iconv-lite/lib/index.js +153 -0
- package/the_app/node_modules/iconv-lite/lib/streams.js +121 -0
- package/the_app/node_modules/iconv-lite/package.json +46 -0
- package/the_app/node_modules/inherits/LICENSE +16 -0
- package/the_app/node_modules/inherits/README.md +42 -0
- package/the_app/node_modules/inherits/inherits.js +9 -0
- package/the_app/node_modules/inherits/inherits_browser.js +27 -0
- package/the_app/node_modules/inherits/package.json +29 -0
- package/the_app/node_modules/install/.travis.yml +12 -0
- package/the_app/node_modules/install/LICENSE +22 -0
- package/the_app/node_modules/install/README.md +123 -0
- package/the_app/node_modules/install/install.js +556 -0
- package/the_app/node_modules/install/install.min.js +1 -0
- package/the_app/node_modules/install/package.json +41 -0
- package/the_app/node_modules/install/scripts/docs.sh +7 -0
- package/the_app/node_modules/install/scripts/prepublish.sh +5 -0
- package/the_app/node_modules/ipaddr.js/LICENSE +19 -0
- package/the_app/node_modules/ipaddr.js/README.md +233 -0
- package/the_app/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/the_app/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/the_app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/the_app/node_modules/ipaddr.js/package.json +35 -0
- package/the_app/node_modules/media-typer/HISTORY.md +22 -0
- package/the_app/node_modules/media-typer/LICENSE +22 -0
- package/the_app/node_modules/media-typer/README.md +81 -0
- package/the_app/node_modules/media-typer/index.js +270 -0
- package/the_app/node_modules/media-typer/package.json +26 -0
- package/the_app/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/the_app/node_modules/merge-descriptors/LICENSE +23 -0
- package/the_app/node_modules/merge-descriptors/README.md +48 -0
- package/the_app/node_modules/merge-descriptors/index.js +60 -0
- package/the_app/node_modules/merge-descriptors/package.json +32 -0
- package/the_app/node_modules/methods/HISTORY.md +29 -0
- package/the_app/node_modules/methods/LICENSE +24 -0
- package/the_app/node_modules/methods/README.md +51 -0
- package/the_app/node_modules/methods/index.js +69 -0
- package/the_app/node_modules/methods/package.json +36 -0
- package/the_app/node_modules/mime/CHANGELOG.md +164 -0
- package/the_app/node_modules/mime/LICENSE +21 -0
- package/the_app/node_modules/mime/README.md +90 -0
- package/the_app/node_modules/mime/cli.js +8 -0
- package/the_app/node_modules/mime/mime.js +108 -0
- package/the_app/node_modules/mime/package.json +44 -0
- package/the_app/node_modules/mime/src/build.js +53 -0
- package/the_app/node_modules/mime/src/test.js +60 -0
- package/the_app/node_modules/mime/types.json +1 -0
- package/the_app/node_modules/mime-db/HISTORY.md +507 -0
- package/the_app/node_modules/mime-db/LICENSE +23 -0
- package/the_app/node_modules/mime-db/README.md +100 -0
- package/the_app/node_modules/mime-db/db.json +8519 -0
- package/the_app/node_modules/mime-db/index.js +12 -0
- package/the_app/node_modules/mime-db/package.json +60 -0
- package/the_app/node_modules/mime-types/HISTORY.md +397 -0
- package/the_app/node_modules/mime-types/LICENSE +23 -0
- package/the_app/node_modules/mime-types/README.md +113 -0
- package/the_app/node_modules/mime-types/index.js +188 -0
- package/the_app/node_modules/mime-types/package.json +44 -0
- package/the_app/node_modules/ms/index.js +152 -0
- package/the_app/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/ms/readme.md +51 -0
- package/the_app/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/negotiator/README.md +203 -0
- package/the_app/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/npm/LICENSE +235 -0
- package/the_app/node_modules/npm/README.md +63 -0
- package/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- package/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- package/the_app/node_modules/npm/bin/npm +64 -0
- package/the_app/node_modules/npm/bin/npm-cli.js +2 -0
- package/the_app/node_modules/npm/bin/npm.cmd +19 -0
- package/the_app/node_modules/npm/bin/npm.ps1 +35 -0
- package/the_app/node_modules/npm/bin/npx +65 -0
- package/the_app/node_modules/npm/bin/npx-cli.js +130 -0
- package/the_app/node_modules/npm/bin/npx.cmd +20 -0
- package/the_app/node_modules/npm/bin/npx.ps1 +35 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-access.md +123 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-audit.md +470 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-ci.md +317 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-config.md +181 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-help.md +46 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-init.md +349 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-install-ci-test.md +264 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-install-test.md +361 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-install.md +797 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-link.md +396 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-login.md +93 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-org.md +114 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-prune.md +196 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-query.md +241 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-rebuild.md +168 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-root.md +51 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-run-script.md +253 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-sbom.md +319 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-search.md +159 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-star.md +78 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-start.md +80 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-team.md +155 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-test.md +70 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-token.md +130 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-update.md +446 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-version.md +235 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-view.md +200 -0
- package/the_app/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
- package/the_app/node_modules/npm/docs/content/commands/npm.md +175 -0
- package/the_app/node_modules/npm/docs/content/commands/npx.md +167 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/package-json.md +1190 -0
- package/the_app/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
- package/the_app/node_modules/npm/docs/content/using-npm/config.md +1984 -0
- package/the_app/node_modules/npm/docs/content/using-npm/dependency-selectors.md +207 -0
- package/the_app/node_modules/npm/docs/content/using-npm/developers.md +245 -0
- package/the_app/node_modules/npm/docs/content/using-npm/logging.md +96 -0
- package/the_app/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
- package/the_app/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
- package/the_app/node_modules/npm/docs/content/using-npm/registry.md +86 -0
- package/the_app/node_modules/npm/docs/content/using-npm/removal.md +64 -0
- package/the_app/node_modules/npm/docs/content/using-npm/scope.md +143 -0
- package/the_app/node_modules/npm/docs/content/using-npm/scripts.md +368 -0
- package/the_app/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
- package/the_app/node_modules/npm/docs/lib/index.js +189 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-access.html +262 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-audit.html +502 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-ci.html +397 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-config.html +282 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-help.html +190 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-init.html +422 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-install-ci-test.html +355 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-install-test.html +425 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-install.html +787 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-link.html +450 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-login.html +222 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-org.html +231 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-prune.html +304 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-query.html +365 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-rebuild.html +288 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-root.html +195 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-run-script.html +345 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-search.html +272 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-star.html +209 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-start.html +214 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-team.html +272 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-test.html +207 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-token.html +266 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-update.html +486 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-version.html +341 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-view.html +297 -0
- package/the_app/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
- package/the_app/node_modules/npm/docs/output/commands/npm.html +296 -0
- package/the_app/node_modules/npm/docs/output/commands/npx.html +284 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/package-json.html +1070 -0
- package/the_app/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
- package/the_app/node_modules/npm/docs/output/using-npm/config.html +1584 -0
- package/the_app/node_modules/npm/docs/output/using-npm/dependency-selectors.html +336 -0
- package/the_app/node_modules/npm/docs/output/using-npm/developers.html +352 -0
- package/the_app/node_modules/npm/docs/output/using-npm/logging.html +228 -0
- package/the_app/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
- package/the_app/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
- package/the_app/node_modules/npm/docs/output/using-npm/registry.html +226 -0
- package/the_app/node_modules/npm/docs/output/using-npm/removal.html +199 -0
- package/the_app/node_modules/npm/docs/output/using-npm/scope.html +257 -0
- package/the_app/node_modules/npm/docs/output/using-npm/scripts.html +482 -0
- package/the_app/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
- package/the_app/node_modules/npm/index.js +5 -0
- package/the_app/node_modules/npm/lib/arborist-cmd.js +53 -0
- package/the_app/node_modules/npm/lib/base-command.js +165 -0
- package/the_app/node_modules/npm/lib/cli-entry.js +74 -0
- package/the_app/node_modules/npm/lib/cli.js +4 -0
- package/the_app/node_modules/npm/lib/commands/access.js +222 -0
- package/the_app/node_modules/npm/lib/commands/adduser.js +51 -0
- package/the_app/node_modules/npm/lib/commands/audit.js +511 -0
- package/the_app/node_modules/npm/lib/commands/bugs.js +34 -0
- package/the_app/node_modules/npm/lib/commands/cache.js +213 -0
- package/the_app/node_modules/npm/lib/commands/ci.js +117 -0
- package/the_app/node_modules/npm/lib/commands/completion.js +283 -0
- package/the_app/node_modules/npm/lib/commands/config.js +378 -0
- package/the_app/node_modules/npm/lib/commands/dedupe.js +52 -0
- package/the_app/node_modules/npm/lib/commands/deprecate.js +73 -0
- package/the_app/node_modules/npm/lib/commands/diff.js +291 -0
- package/the_app/node_modules/npm/lib/commands/dist-tag.js +205 -0
- package/the_app/node_modules/npm/lib/commands/docs.js +19 -0
- package/the_app/node_modules/npm/lib/commands/doctor.js +419 -0
- package/the_app/node_modules/npm/lib/commands/edit.js +76 -0
- package/the_app/node_modules/npm/lib/commands/exec.js +106 -0
- package/the_app/node_modules/npm/lib/commands/explain.js +128 -0
- package/the_app/node_modules/npm/lib/commands/explore.js +79 -0
- package/the_app/node_modules/npm/lib/commands/find-dupes.js +27 -0
- package/the_app/node_modules/npm/lib/commands/fund.js +225 -0
- package/the_app/node_modules/npm/lib/commands/get.js +22 -0
- package/the_app/node_modules/npm/lib/commands/help-search.js +194 -0
- package/the_app/node_modules/npm/lib/commands/help.js +113 -0
- package/the_app/node_modules/npm/lib/commands/hook.js +125 -0
- package/the_app/node_modules/npm/lib/commands/init.js +247 -0
- package/the_app/node_modules/npm/lib/commands/install-ci-test.js +15 -0
- package/the_app/node_modules/npm/lib/commands/install-test.js +15 -0
- package/the_app/node_modules/npm/lib/commands/install.js +178 -0
- package/the_app/node_modules/npm/lib/commands/link.js +192 -0
- package/the_app/node_modules/npm/lib/commands/ll.js +13 -0
- package/the_app/node_modules/npm/lib/commands/login.js +51 -0
- package/the_app/node_modules/npm/lib/commands/logout.js +49 -0
- package/the_app/node_modules/npm/lib/commands/ls.js +573 -0
- package/the_app/node_modules/npm/lib/commands/org.js +155 -0
- package/the_app/node_modules/npm/lib/commands/outdated.js +369 -0
- package/the_app/node_modules/npm/lib/commands/owner.js +232 -0
- package/the_app/node_modules/npm/lib/commands/pack.js +83 -0
- package/the_app/node_modules/npm/lib/commands/ping.js +29 -0
- package/the_app/node_modules/npm/lib/commands/pkg.js +148 -0
- package/the_app/node_modules/npm/lib/commands/prefix.js +13 -0
- package/the_app/node_modules/npm/lib/commands/profile.js +407 -0
- package/the_app/node_modules/npm/lib/commands/prune.js +33 -0
- package/the_app/node_modules/npm/lib/commands/publish.js +225 -0
- package/the_app/node_modules/npm/lib/commands/query.js +122 -0
- package/the_app/node_modules/npm/lib/commands/rebuild.js +82 -0
- package/the_app/node_modules/npm/lib/commands/repo.js +54 -0
- package/the_app/node_modules/npm/lib/commands/restart.js +13 -0
- package/the_app/node_modules/npm/lib/commands/root.js +11 -0
- package/the_app/node_modules/npm/lib/commands/run-script.js +249 -0
- package/the_app/node_modules/npm/lib/commands/sbom.js +155 -0
- package/the_app/node_modules/npm/lib/commands/search.js +114 -0
- package/the_app/node_modules/npm/lib/commands/set.js +25 -0
- package/the_app/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
- package/the_app/node_modules/npm/lib/commands/star.js +71 -0
- package/the_app/node_modules/npm/lib/commands/stars.js +38 -0
- package/the_app/node_modules/npm/lib/commands/start.js +13 -0
- package/the_app/node_modules/npm/lib/commands/stop.js +13 -0
- package/the_app/node_modules/npm/lib/commands/team.js +154 -0
- package/the_app/node_modules/npm/lib/commands/test.js +13 -0
- package/the_app/node_modules/npm/lib/commands/token.js +229 -0
- package/the_app/node_modules/npm/lib/commands/uninstall.js +56 -0
- package/the_app/node_modules/npm/lib/commands/unpublish.js +171 -0
- package/the_app/node_modules/npm/lib/commands/unstar.js +7 -0
- package/the_app/node_modules/npm/lib/commands/update.js +69 -0
- package/the_app/node_modules/npm/lib/commands/version.js +156 -0
- package/the_app/node_modules/npm/lib/commands/view.js +510 -0
- package/the_app/node_modules/npm/lib/commands/whoami.js +16 -0
- package/the_app/node_modules/npm/lib/es6/validate-engines.js +49 -0
- package/the_app/node_modules/npm/lib/lifecycle-cmd.js +19 -0
- package/the_app/node_modules/npm/lib/npm.js +485 -0
- package/the_app/node_modules/npm/lib/package-url-cmd.js +65 -0
- package/the_app/node_modules/npm/lib/utils/audit-error.js +40 -0
- package/the_app/node_modules/npm/lib/utils/auth.js +100 -0
- package/the_app/node_modules/npm/lib/utils/cmd-list.js +178 -0
- package/the_app/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
- package/the_app/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
- package/the_app/node_modules/npm/lib/utils/completion.fish +40 -0
- package/the_app/node_modules/npm/lib/utils/completion.sh +70 -0
- package/the_app/node_modules/npm/lib/utils/did-you-mean.js +40 -0
- package/the_app/node_modules/npm/lib/utils/display.js +126 -0
- package/the_app/node_modules/npm/lib/utils/error-message.js +435 -0
- package/the_app/node_modules/npm/lib/utils/exit-handler.js +227 -0
- package/the_app/node_modules/npm/lib/utils/explain-dep.js +135 -0
- package/the_app/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
- package/the_app/node_modules/npm/lib/utils/format-bytes.js +30 -0
- package/the_app/node_modules/npm/lib/utils/format-search-stream.js +135 -0
- package/the_app/node_modules/npm/lib/utils/get-identity.js +26 -0
- package/the_app/node_modules/npm/lib/utils/is-windows.js +6 -0
- package/the_app/node_modules/npm/lib/utils/log-file.js +236 -0
- package/the_app/node_modules/npm/lib/utils/log-shim.js +59 -0
- package/the_app/node_modules/npm/lib/utils/npm-usage.js +74 -0
- package/the_app/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
- package/the_app/node_modules/npm/lib/utils/open-url.js +50 -0
- package/the_app/node_modules/npm/lib/utils/otplease.js +48 -0
- package/the_app/node_modules/npm/lib/utils/ping.js +7 -0
- package/the_app/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
- package/the_app/node_modules/npm/lib/utils/queryable.js +308 -0
- package/the_app/node_modules/npm/lib/utils/read-user-info.js +68 -0
- package/the_app/node_modules/npm/lib/utils/reify-finish.js +33 -0
- package/the_app/node_modules/npm/lib/utils/reify-output.js +185 -0
- package/the_app/node_modules/npm/lib/utils/replace-info.js +31 -0
- package/the_app/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
- package/the_app/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
- package/the_app/node_modules/npm/lib/utils/tar.js +132 -0
- package/the_app/node_modules/npm/lib/utils/timers.js +116 -0
- package/the_app/node_modules/npm/lib/utils/update-notifier.js +126 -0
- package/the_app/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
- package/the_app/node_modules/npm/lib/utils/web-auth.js +20 -0
- package/the_app/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
- package/the_app/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
- package/the_app/node_modules/npm/man/man1/npm-access.1 +115 -0
- package/the_app/node_modules/npm/man/man1/npm-adduser.1 +91 -0
- package/the_app/node_modules/npm/man/man1/npm-audit.1 +446 -0
- package/the_app/node_modules/npm/man/man1/npm-bugs.1 +115 -0
- package/the_app/node_modules/npm/man/man1/npm-cache.1 +78 -0
- package/the_app/node_modules/npm/man/man1/npm-ci.1 +289 -0
- package/the_app/node_modules/npm/man/man1/npm-completion.1 +35 -0
- package/the_app/node_modules/npm/man/man1/npm-config.1 +187 -0
- package/the_app/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
- package/the_app/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
- package/the_app/node_modules/npm/man/man1/npm-diff.1 +307 -0
- package/the_app/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
- package/the_app/node_modules/npm/man/man1/npm-docs.1 +113 -0
- package/the_app/node_modules/npm/man/man1/npm-doctor.1 +82 -0
- package/the_app/node_modules/npm/man/man1/npm-edit.1 +43 -0
- package/the_app/node_modules/npm/man/man1/npm-exec.1 +350 -0
- package/the_app/node_modules/npm/man/man1/npm-explain.1 +118 -0
- package/the_app/node_modules/npm/man/man1/npm-explore.1 +49 -0
- package/the_app/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
- package/the_app/node_modules/npm/man/man1/npm-fund.1 +142 -0
- package/the_app/node_modules/npm/man/man1/npm-help-search.1 +37 -0
- package/the_app/node_modules/npm/man/man1/npm-help.1 +47 -0
- package/the_app/node_modules/npm/man/man1/npm-hook.1 +115 -0
- package/the_app/node_modules/npm/man/man1/npm-init.1 +366 -0
- package/the_app/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
- package/the_app/node_modules/npm/man/man1/npm-install-test.1 +336 -0
- package/the_app/node_modules/npm/man/man1/npm-install.1 +752 -0
- package/the_app/node_modules/npm/man/man1/npm-link.1 +355 -0
- package/the_app/node_modules/npm/man/man1/npm-login.1 +95 -0
- package/the_app/node_modules/npm/man/man1/npm-logout.1 +75 -0
- package/the_app/node_modules/npm/man/man1/npm-ls.1 +283 -0
- package/the_app/node_modules/npm/man/man1/npm-org.1 +125 -0
- package/the_app/node_modules/npm/man/man1/npm-outdated.1 +182 -0
- package/the_app/node_modules/npm/man/man1/npm-owner.1 +110 -0
- package/the_app/node_modules/npm/man/man1/npm-pack.1 +130 -0
- package/the_app/node_modules/npm/man/man1/npm-ping.1 +52 -0
- package/the_app/node_modules/npm/man/man1/npm-pkg.1 +286 -0
- package/the_app/node_modules/npm/man/man1/npm-prefix.1 +63 -0
- package/the_app/node_modules/npm/man/man1/npm-profile.1 +137 -0
- package/the_app/node_modules/npm/man/man1/npm-prune.1 +184 -0
- package/the_app/node_modules/npm/man/man1/npm-publish.1 +221 -0
- package/the_app/node_modules/npm/man/man1/npm-query.1 +243 -0
- package/the_app/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
- package/the_app/node_modules/npm/man/man1/npm-repo.1 +103 -0
- package/the_app/node_modules/npm/man/man1/npm-restart.1 +85 -0
- package/the_app/node_modules/npm/man/man1/npm-root.1 +56 -0
- package/the_app/node_modules/npm/man/man1/npm-run-script.1 +234 -0
- package/the_app/node_modules/npm/man/man1/npm-sbom.1 +314 -0
- package/the_app/node_modules/npm/man/man1/npm-search.1 +156 -0
- package/the_app/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
- package/the_app/node_modules/npm/man/man1/npm-star.1 +76 -0
- package/the_app/node_modules/npm/man/man1/npm-stars.1 +41 -0
- package/the_app/node_modules/npm/man/man1/npm-start.1 +79 -0
- package/the_app/node_modules/npm/man/man1/npm-stop.1 +75 -0
- package/the_app/node_modules/npm/man/man1/npm-team.1 +148 -0
- package/the_app/node_modules/npm/man/man1/npm-test.1 +73 -0
- package/the_app/node_modules/npm/man/man1/npm-token.1 +130 -0
- package/the_app/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
- package/the_app/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
- package/the_app/node_modules/npm/man/man1/npm-unstar.1 +70 -0
- package/the_app/node_modules/npm/man/man1/npm-update.1 +406 -0
- package/the_app/node_modules/npm/man/man1/npm-version.1 +229 -0
- package/the_app/node_modules/npm/man/man1/npm-view.1 +213 -0
- package/the_app/node_modules/npm/man/man1/npm-whoami.1 +39 -0
- package/the_app/node_modules/npm/man/man1/npm.1 +131 -0
- package/the_app/node_modules/npm/man/man1/npx.1 +156 -0
- package/the_app/node_modules/npm/man/man5/folders.5 +152 -0
- package/the_app/node_modules/npm/man/man5/install.5 +57 -0
- package/the_app/node_modules/npm/man/man5/npm-global.5 +152 -0
- package/the_app/node_modules/npm/man/man5/npm-json.5 +1093 -0
- package/the_app/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
- package/the_app/node_modules/npm/man/man5/npmrc.5 +129 -0
- package/the_app/node_modules/npm/man/man5/package-json.5 +1093 -0
- package/the_app/node_modules/npm/man/man5/package-lock-json.5 +156 -0
- package/the_app/node_modules/npm/man/man7/config.7 +2002 -0
- package/the_app/node_modules/npm/man/man7/dependency-selectors.7 +309 -0
- package/the_app/node_modules/npm/man/man7/developers.7 +234 -0
- package/the_app/node_modules/npm/man/man7/logging.7 +108 -0
- package/the_app/node_modules/npm/man/man7/orgs.7 +145 -0
- package/the_app/node_modules/npm/man/man7/package-spec.7 +126 -0
- package/the_app/node_modules/npm/man/man7/registry.7 +51 -0
- package/the_app/node_modules/npm/man/man7/removal.7 +60 -0
- package/the_app/node_modules/npm/man/man7/scope.7 +113 -0
- package/the_app/node_modules/npm/man/man7/scripts.7 +407 -0
- package/the_app/node_modules/npm/man/man7/workspaces.7 +214 -0
- package/the_app/node_modules/npm/node_modules/.bin/arborist +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/arborist.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/arborist.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/color-support +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/color-support.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/color-support.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/cssesc +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/cssesc.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/cssesc.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/glob +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/glob.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/glob.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/mkdirp +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/mkdirp.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/mkdirp.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-gyp +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-gyp.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-gyp.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/nopt +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/nopt.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/nopt.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/pacote +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/pacote.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/pacote.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/.bin/semver +16 -0
- package/the_app/node_modules/npm/node_modules/.bin/semver.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/.bin/semver.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +83 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +80 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
- package/the_app/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
- package/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +202 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/audit.js +51 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1511 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/deduper.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +167 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +440 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/pruner.js +30 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +433 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1593 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/set-workspaces.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/get-workspace-nodes.js +36 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +862 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +102 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +217 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/arborist/package.json +96 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2403 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/index.js +959 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +59 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +36 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is.js +6 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/git/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +211 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +558 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/package-json/package.json +66 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +195 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/query/lib/index.js +213 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +12 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-windows.js +2 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +26 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +112 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +14 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +49 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
- package/the_app/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +89 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +22 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +40 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +38 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +160 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +106 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +457 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +103 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +273 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +70 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +45 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +21 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/crypto.js +27 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/dsse.js +25 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/encoding.js +28 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +48 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/json.js +61 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +54 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/pem.js +27 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/sign/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +94 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
- package/the_app/node_modules/npm/node_modules/@sigstore/tuf/store/public-good-instance-root.json +1 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
- package/the_app/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- package/the_app/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
- package/the_app/node_modules/npm/node_modules/abbrev/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/browser.js +13 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/browser.mjs +11 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.js +127 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/package.json +97 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/polyfill.js +21 -0
- package/the_app/node_modules/npm/node_modules/abort-controller/polyfill.mjs +19 -0
- package/the_app/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
- package/the_app/node_modules/npm/node_modules/agent-base/dist/index.js +112 -0
- package/the_app/node_modules/npm/node_modules/agent-base/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/aggregate-error/license +9 -0
- package/the_app/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
- package/the_app/node_modules/npm/node_modules/ansi-regex/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/ansi-regex/package.json +58 -0
- package/the_app/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
- package/the_app/node_modules/npm/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/aproba/index.js +105 -0
- package/the_app/node_modules/npm/node_modules/aproba/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/archy/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- package/the_app/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- package/the_app/node_modules/npm/node_modules/archy/index.js +35 -0
- package/the_app/node_modules/npm/node_modules/archy/package.json +40 -0
- package/the_app/node_modules/npm/node_modules/archy/test/beep.js +40 -0
- package/the_app/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
- package/the_app/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +38 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
- package/the_app/node_modules/npm/node_modules/are-we-there-yet/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
- package/the_app/node_modules/npm/node_modules/balanced-match/index.js +62 -0
- package/the_app/node_modules/npm/node_modules/balanced-match/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/base64-js/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/base64-js/base64js.min.js +1 -0
- package/the_app/node_modules/npm/node_modules/base64-js/index.js +150 -0
- package/the_app/node_modules/npm/node_modules/base64-js/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
- package/the_app/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
- package/the_app/node_modules/npm/node_modules/bin-links/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/license +9 -0
- package/the_app/node_modules/npm/node_modules/binary-extensions/package.json +38 -0
- package/the_app/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
- package/the_app/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
- package/the_app/node_modules/npm/node_modules/buffer/AUTHORS.md +73 -0
- package/the_app/node_modules/npm/node_modules/buffer/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/buffer/index.js +2106 -0
- package/the_app/node_modules/npm/node_modules/buffer/package.json +93 -0
- package/the_app/node_modules/npm/node_modules/builtins/License +20 -0
- package/the_app/node_modules/npm/node_modules/builtins/index.js +80 -0
- package/the_app/node_modules/npm/node_modules/builtins/package.json +20 -0
- package/the_app/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/read.js +166 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
- package/the_app/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
- package/the_app/node_modules/npm/node_modules/cacache/package.json +82 -0
- package/the_app/node_modules/npm/node_modules/chalk/license +9 -0
- package/the_app/node_modules/npm/node_modules/chalk/package.json +83 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/index.js +225 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- package/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- package/the_app/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/chownr/chownr.js +167 -0
- package/the_app/node_modules/npm/node_modules/chownr/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/ci-info/index.js +90 -0
- package/the_app/node_modules/npm/node_modules/ci-info/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
- package/the_app/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
- package/the_app/node_modules/npm/node_modules/cidr-regex/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/clean-stack/index.js +40 -0
- package/the_app/node_modules/npm/node_modules/clean-stack/license +9 -0
- package/the_app/node_modules/npm/node_modules/clean-stack/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/color.js +16 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/index.js +82 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/license +20 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/cli-columns/test.js +101 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/index.js +1 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/package.json +100 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
- package/the_app/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
- package/the_app/node_modules/npm/node_modules/clone/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/clone/clone.iml +10 -0
- package/the_app/node_modules/npm/node_modules/clone/clone.js +166 -0
- package/the_app/node_modules/npm/node_modules/clone/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
- package/the_app/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
- package/the_app/node_modules/npm/node_modules/color-convert/index.js +81 -0
- package/the_app/node_modules/npm/node_modules/color-convert/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/color-convert/route.js +97 -0
- package/the_app/node_modules/npm/node_modules/color-name/LICENSE +8 -0
- package/the_app/node_modules/npm/node_modules/color-name/index.js +152 -0
- package/the_app/node_modules/npm/node_modules/color-name/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/color-support/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/color-support/README.md +129 -0
- package/the_app/node_modules/npm/node_modules/color-support/bin.js +3 -0
- package/the_app/node_modules/npm/node_modules/color-support/browser.js +14 -0
- package/the_app/node_modules/npm/node_modules/color-support/index.js +134 -0
- package/the_app/node_modules/npm/node_modules/color-support/package.json +36 -0
- package/the_app/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/columnify/Makefile +9 -0
- package/the_app/node_modules/npm/node_modules/columnify/columnify.js +306 -0
- package/the_app/node_modules/npm/node_modules/columnify/index.js +297 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/columnify/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/columnify/utils.js +193 -0
- package/the_app/node_modules/npm/node_modules/columnify/width.js +6 -0
- package/the_app/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
- package/the_app/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
- package/the_app/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
- package/the_app/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
- package/the_app/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/cssesc/README.md +201 -0
- package/the_app/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
- package/the_app/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
- package/the_app/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
- package/the_app/node_modules/npm/node_modules/cssesc/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/debug/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/debug/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/debug/src/browser.js +269 -0
- package/the_app/node_modules/npm/node_modules/debug/src/common.js +274 -0
- package/the_app/node_modules/npm/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/debug/src/node.js +263 -0
- package/the_app/node_modules/npm/node_modules/defaults/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/defaults/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/defaults/package.json +33 -0
- package/the_app/node_modules/npm/node_modules/defaults/test.js +34 -0
- package/the_app/node_modules/npm/node_modules/delegates/History.md +22 -0
- package/the_app/node_modules/npm/node_modules/delegates/License +20 -0
- package/the_app/node_modules/npm/node_modules/delegates/Makefile +8 -0
- package/the_app/node_modules/npm/node_modules/delegates/index.js +121 -0
- package/the_app/node_modules/npm/node_modules/delegates/package.json +13 -0
- package/the_app/node_modules/npm/node_modules/delegates/test/index.js +94 -0
- package/the_app/node_modules/npm/node_modules/diff/CONTRIBUTING.md +39 -0
- package/the_app/node_modules/npm/node_modules/diff/LICENSE +31 -0
- package/the_app/node_modules/npm/node_modules/diff/dist/diff.js +1627 -0
- package/the_app/node_modules/npm/node_modules/diff/dist/diff.min.js +38 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/base.js +307 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/line.js +89 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/index.es6.js +1561 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/index.js +216 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/index.mjs +1561 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/create.js +272 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
- package/the_app/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
- package/the_app/node_modules/npm/node_modules/diff/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/diff/release-notes.md +309 -0
- package/the_app/node_modules/npm/node_modules/diff/runtime.js +3 -0
- package/the_app/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/the_app/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
- package/the_app/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/encoding/LICENSE +16 -0
- package/the_app/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
- package/the_app/node_modules/npm/node_modules/encoding/package.json +18 -0
- package/the_app/node_modules/npm/node_modules/encoding/test/test.js +49 -0
- package/the_app/node_modules/npm/node_modules/env-paths/index.js +74 -0
- package/the_app/node_modules/npm/node_modules/env-paths/license +9 -0
- package/the_app/node_modules/npm/node_modules/env-paths/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/err-code/bower.json +30 -0
- package/the_app/node_modules/npm/node_modules/err-code/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
- package/the_app/node_modules/npm/node_modules/err-code/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/err-code/test/test.js +159 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
- package/the_app/node_modules/npm/node_modules/event-target-shim/package.json +82 -0
- package/the_app/node_modules/npm/node_modules/events/.airtap.yml +15 -0
- package/the_app/node_modules/npm/node_modules/events/History.md +118 -0
- package/the_app/node_modules/npm/node_modules/events/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/events/events.js +497 -0
- package/the_app/node_modules/npm/node_modules/events/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/events/security.md +10 -0
- package/the_app/node_modules/npm/node_modules/events/tests/add-listeners.js +111 -0
- package/the_app/node_modules/npm/node_modules/events/tests/check-listener-leaks.js +101 -0
- package/the_app/node_modules/npm/node_modules/events/tests/common.js +104 -0
- package/the_app/node_modules/npm/node_modules/events/tests/errors.js +13 -0
- package/the_app/node_modules/npm/node_modules/events/tests/events-list.js +28 -0
- package/the_app/node_modules/npm/node_modules/events/tests/events-once.js +234 -0
- package/the_app/node_modules/npm/node_modules/events/tests/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/events/tests/legacy-compat.js +16 -0
- package/the_app/node_modules/npm/node_modules/events/tests/listener-count.js +37 -0
- package/the_app/node_modules/npm/node_modules/events/tests/listeners-side-effects.js +56 -0
- package/the_app/node_modules/npm/node_modules/events/tests/listeners.js +168 -0
- package/the_app/node_modules/npm/node_modules/events/tests/max-listeners.js +47 -0
- package/the_app/node_modules/npm/node_modules/events/tests/method-names.js +35 -0
- package/the_app/node_modules/npm/node_modules/events/tests/modify-in-emit.js +90 -0
- package/the_app/node_modules/npm/node_modules/events/tests/num-args.js +60 -0
- package/the_app/node_modules/npm/node_modules/events/tests/once.js +83 -0
- package/the_app/node_modules/npm/node_modules/events/tests/prepend.js +31 -0
- package/the_app/node_modules/npm/node_modules/events/tests/remove-all-listeners.js +133 -0
- package/the_app/node_modules/npm/node_modules/events/tests/remove-listeners.js +212 -0
- package/the_app/node_modules/npm/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
- package/the_app/node_modules/npm/node_modules/events/tests/special-event-names.js +45 -0
- package/the_app/node_modules/npm/node_modules/events/tests/subclass.js +66 -0
- package/the_app/node_modules/npm/node_modules/events/tests/symbols.js +25 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
- package/the_app/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
- package/the_app/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- package/the_app/node_modules/npm/node_modules/foreground-child/package.json +83 -0
- package/the_app/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
- package/the_app/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/npm/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/npm/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
- package/the_app/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/gauge/package.json +68 -0
- package/the_app/node_modules/npm/node_modules/glob/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/glob/README.md +1214 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +108 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +358 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js +104 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js +352 -0
- package/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/the_app/node_modules/npm/node_modules/glob/package.json +97 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
- package/the_app/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- package/the_app/node_modules/npm/node_modules/has-unicode/package.json +30 -0
- package/the_app/node_modules/npm/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/npm/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
- package/the_app/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
- package/the_app/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
- package/the_app/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
- package/the_app/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
- package/the_app/node_modules/npm/node_modules/http-proxy-agent/LICENSE +25 -0
- package/the_app/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +147 -0
- package/the_app/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/the_app/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
- package/the_app/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/ieee754/LICENSE +11 -0
- package/the_app/node_modules/npm/node_modules/ieee754/index.js +85 -0
- package/the_app/node_modules/npm/node_modules/ieee754/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
- package/the_app/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/the_app/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
- package/the_app/node_modules/npm/node_modules/indent-string/index.js +35 -0
- package/the_app/node_modules/npm/node_modules/indent-string/license +9 -0
- package/the_app/node_modules/npm/node_modules/indent-string/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/ini/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
- package/the_app/node_modules/npm/node_modules/ini/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +145 -0
- package/the_app/node_modules/npm/node_modules/init-package-json/package.json +75 -0
- package/the_app/node_modules/npm/node_modules/ip/lib/ip.js +422 -0
- package/the_app/node_modules/npm/node_modules/ip/package.json +25 -0
- package/the_app/node_modules/npm/node_modules/ip-regex/index.js +36 -0
- package/the_app/node_modules/npm/node_modules/ip-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/ip-regex/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/is-cidr/index.js +9 -0
- package/the_app/node_modules/npm/node_modules/is-cidr/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/core.json +158 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/index.js +69 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/package.json +73 -0
- package/the_app/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
- package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
- package/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/is-lambda/test.js +16 -0
- package/the_app/node_modules/npm/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/isexe/index.js +57 -0
- package/the_app/node_modules/npm/node_modules/isexe/mode.js +41 -0
- package/the_app/node_modules/npm/node_modules/isexe/package.json +31 -0
- package/the_app/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
- package/the_app/node_modules/npm/node_modules/isexe/windows.js +42 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/the_app/node_modules/npm/node_modules/jackspeak/package.json +94 -0
- package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
- package/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
- package/the_app/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/package.json +22 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
- package/the_app/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
- package/the_app/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
- package/the_app/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
- package/the_app/node_modules/npm/node_modules/just-diff/package.json +33 -0
- package/the_app/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
- package/the_app/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/README.md +96 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
- package/the_app/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
- package/the_app/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
- package/the_app/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
- package/the_app/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
- package/the_app/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
- package/the_app/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
- package/the_app/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
- package/the_app/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
- package/the_app/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1437 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/lru-cache/package.json +118 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
- package/the_app/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
- package/the_app/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/ast.js +589 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/escape.js +22 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/index.js +1011 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/unescape.js +24 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/ast.js +585 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/escape.js +18 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/index.js +995 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/unescape.js +20 -0
- package/the_app/node_modules/npm/node_modules/minimatch/package.json +86 -0
- package/the_app/node_modules/npm/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
- package/the_app/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
- package/the_app/node_modules/npm/node_modules/minipass/package.json +82 -0
- package/the_app/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
- package/the_app/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
- package/the_app/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
- package/the_app/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
- package/the_app/node_modules/npm/node_modules/minizlib/constants.js +115 -0
- package/the_app/node_modules/npm/node_modules/minizlib/index.js +348 -0
- package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/minizlib/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/index.js +31 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
- package/the_app/node_modules/npm/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/npm/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/npm/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
- package/the_app/node_modules/npm/node_modules/mute-stream/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/npm/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +905 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/README.md +263 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/README.md +30 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +58 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3981 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3115 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1262 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/configure.js +282 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +443 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
- package/the_app/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/nopt/README.md +213 -0
- package/the_app/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
- package/the_app/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
- package/the_app/node_modules/npm/node_modules/nopt/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/the_app/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
- package/the_app/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
- package/the_app/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- package/the_app/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
- package/the_app/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
- package/the_app/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
- package/the_app/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/npm-packlist/lib/index.js +484 -0
- package/the_app/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
- package/the_app/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
- package/the_app/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
- package/the_app/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
- package/the_app/node_modules/npm/node_modules/npm-profile/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/clean-url.js +27 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +249 -0
- package/the_app/node_modules/npm/node_modules/npm-registry-fetch/package.json +67 -0
- package/the_app/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- package/the_app/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
- package/the_app/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
- package/the_app/node_modules/npm/node_modules/npmlog/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/p-map/index.js +81 -0
- package/the_app/node_modules/npm/node_modules/p-map/license +9 -0
- package/the_app/node_modules/npm/node_modules/p-map/package.json +53 -0
- package/the_app/node_modules/npm/node_modules/pacote/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/pacote/README.md +285 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/registry.js +368 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
- package/the_app/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
- package/the_app/node_modules/npm/node_modules/pacote/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
- package/the_app/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
- package/the_app/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
- package/the_app/node_modules/npm/node_modules/path-key/index.js +16 -0
- package/the_app/node_modules/npm/node_modules/path-key/license +9 -0
- package/the_app/node_modules/npm/node_modules/path-key/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/index.js +2018 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/index.js +1983 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/path-scurry/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- package/the_app/node_modules/npm/node_modules/postcss-selector-parser/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
- package/the_app/node_modules/npm/node_modules/proc-log/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/process/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/process/browser.js +184 -0
- package/the_app/node_modules/npm/node_modules/process/index.js +2 -0
- package/the_app/node_modules/npm/node_modules/process/package.json +27 -0
- package/the_app/node_modules/npm/node_modules/process/test.js +199 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
- package/the_app/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
- package/the_app/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/promise-call-limit/index.js +52 -0
- package/the_app/node_modules/npm/node_modules/promise-call-limit/package.json +29 -0
- package/the_app/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- package/the_app/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/index.js +52 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
- package/the_app/node_modules/npm/node_modules/promzard/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
- package/the_app/node_modules/npm/node_modules/promzard/package.json +48 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- package/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- package/the_app/node_modules/npm/node_modules/read/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/read/lib/read.js +82 -0
- package/the_app/node_modules/npm/node_modules/read/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
- package/the_app/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
- package/the_app/node_modules/npm/node_modules/read-package-json/package.json +65 -0
- package/the_app/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
- package/the_app/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +4 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +49 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplexify.js +379 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +281 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +465 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/readable.js +1247 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/utils.js +321 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/validators.js +510 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/browser.js +35 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/errors.js +341 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/index.js +65 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/primordials.js +101 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/util.js +128 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/stream/promises.js +43 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/lib/stream.js +136 -0
- package/the_app/node_modules/npm/node_modules/readable-stream/package.json +86 -0
- package/the_app/node_modules/npm/node_modules/retry/License +21 -0
- package/the_app/node_modules/npm/node_modules/retry/Makefile +18 -0
- package/the_app/node_modules/npm/node_modules/retry/equation.gif +0 -0
- package/the_app/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- package/the_app/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- package/the_app/node_modules/npm/node_modules/retry/index.js +1 -0
- package/the_app/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
- package/the_app/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
- package/the_app/node_modules/npm/node_modules/retry/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/retry/test/common.js +10 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/the_app/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/the_app/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/npm/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/npm/node_modules/semver/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/semver/README.md +637 -0
- package/the_app/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/index.js +5 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/range.js +539 -0
- package/the_app/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/coerce.js +52 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/major.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
- package/the_app/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
- package/the_app/node_modules/npm/node_modules/semver/index.js +89 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
- package/the_app/node_modules/npm/node_modules/semver/internal/re.js +212 -0
- package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
- package/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/semver/package.json +87 -0
- package/the_app/node_modules/npm/node_modules/semver/preload.js +2 -0
- package/the_app/node_modules/npm/node_modules/semver/range.bnf +16 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
- package/the_app/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
- package/the_app/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
- package/the_app/node_modules/npm/node_modules/set-blocking/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/set-blocking/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/shebang-command/index.js +19 -0
- package/the_app/node_modules/npm/node_modules/shebang-command/license +9 -0
- package/the_app/node_modules/npm/node_modules/shebang-command/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
- package/the_app/node_modules/npm/node_modules/shebang-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/the_app/node_modules/npm/node_modules/signal-exit/package.json +106 -0
- package/the_app/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js +63 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/index.js +22 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/sct.js +30 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/signer.js +146 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/config.js +165 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/error.js +35 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/sigstore.js +92 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/body.js +152 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/checkpoint.js +148 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/index.js +92 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/merkle.js +113 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/set.js +64 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/types/fetch.js +2 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/types/sigstore.js +27 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/types/utility.js +17 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/dump.js +97 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/error.js +24 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/index.js +20 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/length.js +63 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/obj.js +152 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/parse.js +125 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/tag.js +86 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/crypto.js +63 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/dsse.js +25 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/encoding.js +46 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/json.js +61 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/pem.js +44 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/util/stream.js +116 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/verify.js +160 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/cert.js +242 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/ext.js +145 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/sct.js +101 -0
- package/the_app/node_modules/npm/node_modules/sigstore/dist/x509/verify.js +177 -0
- package/the_app/node_modules/npm/node_modules/sigstore/package.json +45 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/the_app/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
- package/the_app/node_modules/npm/node_modules/socks/LICENSE +20 -0
- package/the_app/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/constants.js +114 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/helpers.js +128 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
- package/the_app/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
- package/the_app/node_modules/npm/node_modules/socks/build/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/index.md +5 -0
- package/the_app/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
- package/the_app/node_modules/npm/node_modules/socks/package.json +58 -0
- package/the_app/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +182 -0
- package/the_app/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
- package/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
- package/the_app/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
- package/the_app/node_modules/npm/node_modules/spdx-exceptions/index.json +40 -0
- package/the_app/node_modules/npm/node_modules/spdx-exceptions/package.json +17 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
- package/the_app/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
- package/the_app/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
- package/the_app/node_modules/npm/node_modules/spdx-license-ids/index.json +569 -0
- package/the_app/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- package/the_app/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
- package/the_app/node_modules/npm/node_modules/ssri/package.json +65 -0
- package/the_app/node_modules/npm/node_modules/string-width/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/string-width/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/string-width/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
- package/the_app/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/the_app/node_modules/npm/node_modules/string_decoder/package.json +34 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi/index.js +14 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/supports-color/browser.js +30 -0
- package/the_app/node_modules/npm/node_modules/supports-color/index.js +182 -0
- package/the_app/node_modules/npm/node_modules/supports-color/license +9 -0
- package/the_app/node_modules/npm/node_modules/supports-color/package.json +60 -0
- package/the_app/node_modules/npm/node_modules/tar/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/create.js +111 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/header.js +304 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/list.js +139 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/unpack.js +906 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/update.js +40 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- package/the_app/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +702 -0
- package/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
- package/the_app/node_modules/npm/node_modules/tar/package.json +70 -0
- package/the_app/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- package/the_app/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- package/the_app/node_modules/npm/node_modules/text-table/index.js +86 -0
- package/the_app/node_modules/npm/node_modules/text-table/package.json +44 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/align.js +18 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/center.js +18 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
- package/the_app/node_modules/npm/node_modules/text-table/test/table.js +14 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
- package/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
- package/the_app/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
- package/the_app/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/treeverse/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/updater.js +320 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
- package/the_app/node_modules/npm/node_modules/tuf-js/package.json +43 -0
- package/the_app/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
- package/the_app/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
- package/the_app/node_modules/npm/node_modules/unique-filename/package.json +51 -0
- package/the_app/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
- package/the_app/node_modules/npm/node_modules/unique-slug/package.json +47 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
- package/the_app/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
- package/the_app/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/index.js +99 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/package.json +42 -0
- package/the_app/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
- package/the_app/node_modules/npm/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/which/README.md +51 -0
- package/the_app/node_modules/npm/node_modules/which/bin/which.js +52 -0
- package/the_app/node_modules/npm/node_modules/which/lib/index.js +111 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
- package/the_app/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
- package/the_app/node_modules/npm/node_modules/which/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
- package/the_app/node_modules/npm/node_modules/wide-align/align.js +65 -0
- package/the_app/node_modules/npm/node_modules/wide-align/package.json +33 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/the_app/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +6 -0
- package/the_app/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
- package/the_app/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
- package/the_app/node_modules/npm/node_modules/yallist/LICENSE +15 -0
- package/the_app/node_modules/npm/node_modules/yallist/iterator.js +8 -0
- package/the_app/node_modules/npm/node_modules/yallist/package.json +29 -0
- package/the_app/node_modules/npm/node_modules/yallist/yallist.js +426 -0
- package/the_app/node_modules/npm/package.json +268 -0
- package/the_app/node_modules/object-inspect/.eslintrc +53 -0
- package/the_app/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/object-inspect/.nycrc +13 -0
- package/the_app/node_modules/object-inspect/CHANGELOG.md +389 -0
- package/the_app/node_modules/object-inspect/LICENSE +21 -0
- package/the_app/node_modules/object-inspect/example/all.js +23 -0
- package/the_app/node_modules/object-inspect/example/circular.js +6 -0
- package/the_app/node_modules/object-inspect/example/fn.js +5 -0
- package/the_app/node_modules/object-inspect/example/inspect.js +10 -0
- package/the_app/node_modules/object-inspect/index.js +524 -0
- package/the_app/node_modules/object-inspect/package-support.json +20 -0
- package/the_app/node_modules/object-inspect/package.json +99 -0
- package/the_app/node_modules/object-inspect/readme.markdown +86 -0
- package/the_app/node_modules/object-inspect/test/bigint.js +58 -0
- package/the_app/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/the_app/node_modules/object-inspect/test/circular.js +16 -0
- package/the_app/node_modules/object-inspect/test/deep.js +12 -0
- package/the_app/node_modules/object-inspect/test/element.js +53 -0
- package/the_app/node_modules/object-inspect/test/err.js +48 -0
- package/the_app/node_modules/object-inspect/test/fakes.js +29 -0
- package/the_app/node_modules/object-inspect/test/fn.js +76 -0
- package/the_app/node_modules/object-inspect/test/global.js +17 -0
- package/the_app/node_modules/object-inspect/test/has.js +15 -0
- package/the_app/node_modules/object-inspect/test/holes.js +15 -0
- package/the_app/node_modules/object-inspect/test/indent-option.js +271 -0
- package/the_app/node_modules/object-inspect/test/inspect.js +139 -0
- package/the_app/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/the_app/node_modules/object-inspect/test/number.js +58 -0
- package/the_app/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/the_app/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/the_app/node_modules/object-inspect/test/undef.js +12 -0
- package/the_app/node_modules/object-inspect/test/values.js +211 -0
- package/the_app/node_modules/object-inspect/test-core-js.js +26 -0
- package/the_app/node_modules/object-inspect/util.inspect.js +1 -0
- package/the_app/node_modules/on-finished/HISTORY.md +98 -0
- package/the_app/node_modules/on-finished/LICENSE +23 -0
- package/the_app/node_modules/on-finished/README.md +162 -0
- package/the_app/node_modules/on-finished/index.js +234 -0
- package/the_app/node_modules/on-finished/package.json +39 -0
- package/the_app/node_modules/parseurl/HISTORY.md +58 -0
- package/the_app/node_modules/parseurl/LICENSE +24 -0
- package/the_app/node_modules/parseurl/README.md +133 -0
- package/the_app/node_modules/parseurl/index.js +158 -0
- package/the_app/node_modules/parseurl/package.json +40 -0
- package/the_app/node_modules/path-to-regexp/History.md +36 -0
- package/the_app/node_modules/path-to-regexp/LICENSE +21 -0
- package/the_app/node_modules/path-to-regexp/Readme.md +35 -0
- package/the_app/node_modules/path-to-regexp/index.js +129 -0
- package/the_app/node_modules/path-to-regexp/package.json +30 -0
- package/the_app/node_modules/proxy-addr/HISTORY.md +161 -0
- package/the_app/node_modules/proxy-addr/LICENSE +22 -0
- package/the_app/node_modules/proxy-addr/README.md +139 -0
- package/the_app/node_modules/proxy-addr/index.js +327 -0
- package/the_app/node_modules/proxy-addr/package.json +47 -0
- package/the_app/node_modules/qs/.editorconfig +43 -0
- package/the_app/node_modules/qs/.eslintrc +38 -0
- package/the_app/node_modules/qs/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/qs/.nycrc +13 -0
- package/the_app/node_modules/qs/CHANGELOG.md +546 -0
- package/the_app/node_modules/qs/LICENSE.md +29 -0
- package/the_app/node_modules/qs/README.md +625 -0
- package/the_app/node_modules/qs/dist/qs.js +2054 -0
- package/the_app/node_modules/qs/lib/formats.js +23 -0
- package/the_app/node_modules/qs/lib/index.js +11 -0
- package/the_app/node_modules/qs/lib/parse.js +263 -0
- package/the_app/node_modules/qs/lib/stringify.js +326 -0
- package/the_app/node_modules/qs/lib/utils.js +252 -0
- package/the_app/node_modules/qs/package.json +77 -0
- package/the_app/node_modules/qs/test/parse.js +855 -0
- package/the_app/node_modules/qs/test/stringify.js +909 -0
- package/the_app/node_modules/qs/test/utils.js +136 -0
- package/the_app/node_modules/range-parser/HISTORY.md +56 -0
- package/the_app/node_modules/range-parser/LICENSE +23 -0
- package/the_app/node_modules/range-parser/README.md +84 -0
- package/the_app/node_modules/range-parser/index.js +162 -0
- package/the_app/node_modules/range-parser/package.json +44 -0
- package/the_app/node_modules/raw-body/HISTORY.md +303 -0
- package/the_app/node_modules/raw-body/LICENSE +22 -0
- package/the_app/node_modules/raw-body/README.md +223 -0
- package/the_app/node_modules/raw-body/SECURITY.md +24 -0
- package/the_app/node_modules/raw-body/index.d.ts +87 -0
- package/the_app/node_modules/raw-body/index.js +329 -0
- package/the_app/node_modules/raw-body/package.json +49 -0
- package/the_app/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/safe-buffer/README.md +584 -0
- package/the_app/node_modules/safe-buffer/index.d.ts +187 -0
- package/the_app/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/safer-buffer/Readme.md +156 -0
- package/the_app/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/send/HISTORY.md +521 -0
- package/the_app/node_modules/send/LICENSE +23 -0
- package/the_app/node_modules/send/README.md +327 -0
- package/the_app/node_modules/send/SECURITY.md +24 -0
- package/the_app/node_modules/send/index.js +1143 -0
- package/the_app/node_modules/send/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/send/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/send/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/send/node_modules/ms/readme.md +59 -0
- package/the_app/node_modules/send/package.json +62 -0
- package/the_app/node_modules/serve-static/HISTORY.md +471 -0
- package/the_app/node_modules/serve-static/LICENSE +25 -0
- package/the_app/node_modules/serve-static/README.md +257 -0
- package/the_app/node_modules/serve-static/index.js +210 -0
- package/the_app/node_modules/serve-static/package.json +42 -0
- package/the_app/node_modules/set-function-length/.eslintrc +27 -0
- package/the_app/node_modules/set-function-length/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/set-function-length/.nycrc +13 -0
- package/the_app/node_modules/set-function-length/CHANGELOG.md +41 -0
- package/the_app/node_modules/set-function-length/LICENSE +21 -0
- package/the_app/node_modules/set-function-length/README.md +56 -0
- package/the_app/node_modules/set-function-length/env.js +19 -0
- package/the_app/node_modules/set-function-length/index.js +41 -0
- package/the_app/node_modules/set-function-length/package.json +84 -0
- package/the_app/node_modules/setprototypeof/LICENSE +13 -0
- package/the_app/node_modules/setprototypeof/README.md +31 -0
- package/the_app/node_modules/setprototypeof/index.d.ts +2 -0
- package/the_app/node_modules/setprototypeof/index.js +17 -0
- package/the_app/node_modules/setprototypeof/package.json +38 -0
- package/the_app/node_modules/setprototypeof/test/index.js +24 -0
- package/the_app/node_modules/side-channel/.eslintignore +1 -0
- package/the_app/node_modules/side-channel/.eslintrc +11 -0
- package/the_app/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/side-channel/.nycrc +13 -0
- package/the_app/node_modules/side-channel/CHANGELOG.md +65 -0
- package/the_app/node_modules/side-channel/LICENSE +21 -0
- package/the_app/node_modules/side-channel/README.md +2 -0
- package/the_app/node_modules/side-channel/index.js +124 -0
- package/the_app/node_modules/side-channel/package.json +67 -0
- package/the_app/node_modules/side-channel/test/index.js +78 -0
- package/the_app/node_modules/statuses/HISTORY.md +82 -0
- package/the_app/node_modules/statuses/LICENSE +23 -0
- package/the_app/node_modules/statuses/README.md +136 -0
- package/the_app/node_modules/statuses/codes.json +65 -0
- package/the_app/node_modules/statuses/index.js +146 -0
- package/the_app/node_modules/statuses/package.json +49 -0
- package/the_app/node_modules/toidentifier/HISTORY.md +9 -0
- package/the_app/node_modules/toidentifier/LICENSE +21 -0
- package/the_app/node_modules/toidentifier/README.md +61 -0
- package/the_app/node_modules/toidentifier/index.js +32 -0
- package/the_app/node_modules/toidentifier/package.json +38 -0
- package/the_app/node_modules/type-is/HISTORY.md +259 -0
- package/the_app/node_modules/type-is/LICENSE +23 -0
- package/the_app/node_modules/type-is/README.md +170 -0
- package/the_app/node_modules/type-is/index.js +266 -0
- package/the_app/node_modules/type-is/package.json +45 -0
- package/the_app/node_modules/unpipe/HISTORY.md +4 -0
- package/the_app/node_modules/unpipe/LICENSE +22 -0
- package/the_app/node_modules/unpipe/README.md +43 -0
- package/the_app/node_modules/unpipe/index.js +69 -0
- package/the_app/node_modules/unpipe/package.json +27 -0
- package/the_app/node_modules/utils-merge/LICENSE +20 -0
- package/the_app/node_modules/utils-merge/README.md +34 -0
- package/the_app/node_modules/utils-merge/index.js +23 -0
- package/the_app/node_modules/utils-merge/package.json +40 -0
- package/the_app/node_modules/vary/HISTORY.md +39 -0
- package/the_app/node_modules/vary/LICENSE +22 -0
- package/the_app/node_modules/vary/README.md +101 -0
- package/the_app/node_modules/vary/index.js +149 -0
- package/the_app/node_modules/vary/package.json +43 -0
- package/the_app/node_modules/warbeast2000/.github/workflows/node.js.yml +31 -0
- package/the_app/node_modules/warbeast2000/README.md +5 -0
- package/the_app/node_modules/warbeast2000/index.js +7 -0
- package/the_app/node_modules/warbeast2000/package.json +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/mime.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npm.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.bin/npx.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/.package-lock.json +3405 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/HISTORY.md +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/README.md +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/index.js +238 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/accepts/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/README.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/array-flatten.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/array-flatten/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/CHANGELOG.md +348 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/README.md +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/all.js +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/allLimit.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/allSeries.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/any.js +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/anyLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/anySeries.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/apply.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/applyEach.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/applyEachSeries.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/asyncify.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/auto.js +321 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/autoInject.js +173 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/cargo.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/cargoQueue.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/compose.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concat.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concatLimit.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/concatSeries.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/constant.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detect.js +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detectLimit.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/detectSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/dir.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doDuring.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doUntil.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/doWhilst.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/during.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/each.js +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOf.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOfLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachOfSeries.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/eachSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/ensureAsync.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/every.js +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/everyLimit.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/everySeries.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filter.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filterLimit.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/filterSeries.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/find.js +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/findLimit.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/findSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMap.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMapLimit.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/flatMapSeries.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/foldl.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/foldr.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEach.js +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOf.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOfLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachOfSeries.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forEachSeries.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/forever.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupBy.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupByLimit.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/groupBySeries.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/index.js +358 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/inject.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/DoublyLinkedList.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/Heap.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/applyEach.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/asyncEachOfLimit.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/awaitify.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/breakLoop.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/consoleFunc.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/createTester.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/eachOfLimit.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/filter.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/getIterator.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/initialParams.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/isArrayLike.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/iterator.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/map.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/once.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/onlyOnce.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/parallel.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/promiseCallback.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/queue.js +276 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/range.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/reject.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/setImmediate.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/withoutIndex.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/internal/wrapAsync.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/log.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/map.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapLimit.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapSeries.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValues.js +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValuesLimit.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/mapValuesSeries.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/memoize.js +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/nextTick.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/package.json +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/parallel.js +165 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/parallelLimit.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/priorityQueue.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/queue.js +151 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/race.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reduce.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reduceRight.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reflect.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reflectAll.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/reject.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/rejectLimit.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/rejectSeries.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/retry.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/retryable.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/select.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/selectLimit.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/selectSeries.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/seq.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/series.js +171 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/setImmediate.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/some.js +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/someLimit.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/someSeries.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/sortBy.js +172 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timeout.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/times.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timesLimit.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/timesSeries.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/transform.js +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/tryEach.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/unmemoize.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/until.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/waterfall.js +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/whilst.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/async-es/wrapSync.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/HISTORY.md +657 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/README.md +464 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/SECURITY.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/index.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/read.js +205 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/json.js +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/raw.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/text.js +121 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/lib/types/urlencoded.js +284 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/body-parser/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/History.md +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/Readme.md +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/index.js +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/bytes/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.eslintignore +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.eslintrc +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/CHANGELOG.md +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/README.md +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/callBound.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/index.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/package.json +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/test/callBound.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/call-bind/test/index.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/HISTORY.md +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/README.md +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/index.js +458 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-disposition/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/HISTORY.md +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/README.md +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/index.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/content-type/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/HISTORY.md +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/README.md +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/SECURITY.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/index.js +270 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/History.md +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/Readme.md +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/index.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/cookie-signature/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.coveralls.yml +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.eslintrc +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/.travis.yml +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/CHANGELOG.md +362 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/Makefile +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/README.md +312 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/component.json +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/karma.conf.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/node.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/browser.js +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/debug.js +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/inspector-log.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/debug/src/node.js +248 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.eslintrc +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/CHANGELOG.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/README.md +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.d.ts +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/index.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/package.json +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/test/index.js +392 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/define-data-property/tsconfig.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/History.md +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/Readme.md +280 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/index.js +538 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/lib/browser/index.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/depd/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/README.md +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/index.js +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/destroy/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/README.md +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/index.js +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ee-first/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/HISTORY.md +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/README.md +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/index.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/encodeurl/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/Readme.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/index.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/escape-html/package.json +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/HISTORY.md +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/README.md +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/index.js +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/etag/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/History.md +3588 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/Readme.md +166 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/application.js +661 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/express.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/middleware/init.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/middleware/query.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/request.js +525 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/response.js +1169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/index.js +673 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/layer.js +181 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/router/route.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/utils.js +304 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/lib/view.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/express/package.json +99 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/HISTORY.md +195 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/README.md +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/SECURITY.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/index.js +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/finalhandler/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/HISTORY.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/README.md +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/index.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/forwarded/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/HISTORY.md +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/README.md +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/index.js +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/fresh/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.eslintrc +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/CHANGELOG.md +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/README.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/test/.eslintrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.eslintrc +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/CHANGELOG.md +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/README.md +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/index.js +351 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/package.json +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/.eslintrc +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/CHANGELOG.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/README.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/package.json +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/gopd/test/index.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.eslintrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/CHANGELOG.md +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/README.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/index.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/package.json +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-property-descriptors/test/index.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/.eslintrc +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/CHANGELOG.md +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/README.md +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/package.json +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-proto/test/index.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.eslintrc +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/.nycrc +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/CHANGELOG.md +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/README.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/package.json +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/shams.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/shams/core-js.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/has-symbols/test/tests.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.eslintrc +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/CHANGELOG.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/README.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.d.ts +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/HISTORY.md +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/README.md +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/index.js +289 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/http-errors/package.json +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/Changelog.md +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/README.md +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/index.js +153 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/lib/streams.js +121 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/iconv-lite/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/README.md +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/inherits.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/inherits_browser.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/inherits/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/.travis.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/README.md +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/install.js +556 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/install.min.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/package.json +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/scripts/docs.sh +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/install/scripts/prepublish.sh +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/README.md +233 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ipaddr.js/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/HISTORY.md +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/README.md +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/index.js +270 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/media-typer/package.json +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/README.md +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/index.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/merge-descriptors/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/HISTORY.md +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/README.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/methods/package.json +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/CHANGELOG.md +164 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/README.md +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/cli.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/mime.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/src/build.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/src/test.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime/types.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/HISTORY.md +507 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/README.md +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/db.json +8519 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/index.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-db/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/HISTORY.md +397 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/README.md +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/index.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/mime-types/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/index.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/ms/readme.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/README.md +203 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/LICENSE +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/README.md +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/node-gyp-bin/node-gyp.cmd +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm-cli.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm.cmd +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npm.ps1 +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx-cli.js +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx.cmd +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/bin/npx.ps1 +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-access.md +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-adduser.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-audit.md +470 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-bugs.md +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-cache.md +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ci.md +317 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-completion.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-config.md +181 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-dedupe.md +320 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-deprecate.md +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-diff.md +316 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-dist-tag.md +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-docs.md +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-doctor.md +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-edit.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-exec.md +366 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-explain.md +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-explore.md +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-find-dupes.md +246 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-fund.md +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-help-search.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-help.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-hook.md +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-init.md +349 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install-ci-test.md +264 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install-test.md +361 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-install.md +797 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-link.md +396 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-login.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-logout.md +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ls.md +294 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-org.md +114 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-outdated.md +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-owner.md +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-pack.md +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-ping.md +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-pkg.md +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-prefix.md +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-profile.md +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-prune.md +196 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-publish.md +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-query.md +241 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-rebuild.md +168 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-repo.md +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-restart.md +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-root.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-run-script.md +253 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-sbom.md +319 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-search.md +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-shrinkwrap.md +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-star.md +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-stars.md +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-start.md +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-stop.md +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-team.md +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-test.md +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-token.md +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-uninstall.md +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-unpublish.md +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-unstar.md +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-update.md +446 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-version.md +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-view.md +200 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm-whoami.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npm.md +175 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/commands/npx.md +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/folders.md +219 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/install.md +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/npm-shrinkwrap-json.md +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/npmrc.md +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/package-json.md +1190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/configuring-npm/package-lock-json.md +235 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/config.md +1984 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/dependency-selectors.md +207 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/developers.md +245 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/logging.md +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/orgs.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/package-spec.md +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/registry.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/removal.md +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/scope.md +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/scripts.md +368 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/workspaces.md +226 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/lib/index.js +189 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-access.html +262 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-adduser.html +218 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-audit.html +502 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-bugs.html +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-cache.html +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ci.html +397 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-completion.html +186 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-config.html +282 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-dedupe.html +395 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-deprecate.html +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-diff.html +398 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-dist-tag.html +281 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-docs.html +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-doctor.html +253 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-edit.html +190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-exec.html +435 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-explain.html +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-explore.html +190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-find-dupes.html +341 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-fund.html +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-help-search.html +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-help.html +190 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-hook.html +226 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-init.html +422 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install-ci-test.html +355 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install-test.html +425 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-install.html +787 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-link.html +450 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-login.html +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-logout.html +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ls.html +378 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-org.html +231 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-outdated.html +305 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-owner.html +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-pack.html +256 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-ping.html +189 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-pkg.html +364 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-prefix.html +200 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-profile.html +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-prune.html +304 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-publish.html +350 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-query.html +365 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-rebuild.html +288 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-repo.html +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-restart.html +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-root.html +195 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-run-script.html +345 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-sbom.html +439 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-search.html +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-shrinkwrap.html +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-star.html +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-stars.html +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-start.html +214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-stop.html +209 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-team.html +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-test.html +207 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-token.html +266 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-uninstall.html +278 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-unpublish.html +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-unstar.html +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-update.html +486 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-version.html +341 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-view.html +297 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm-whoami.html +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npm.html +296 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/commands/npx.html +284 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/folders.html +322 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/install.html +217 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/npm-shrinkwrap-json.html +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/npmrc.html +261 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/package-json.html +1070 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/configuring-npm/package-lock-json.html +390 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/config.html +1584 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/dependency-selectors.html +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/developers.html +352 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/logging.html +228 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/orgs.html +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/package-spec.html +255 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/registry.html +226 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/removal.html +199 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/scope.html +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/scripts.html +482 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/output/using-npm/workspaces.html +313 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/arborist-cmd.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/base-command.js +165 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/cli-entry.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/cli.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/access.js +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/adduser.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/audit.js +511 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/bugs.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/cache.js +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ci.js +117 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/completion.js +283 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/config.js +378 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/dedupe.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/deprecate.js +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/diff.js +291 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/dist-tag.js +205 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/docs.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/doctor.js +419 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/edit.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/exec.js +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/explain.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/explore.js +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/find-dupes.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/fund.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/get.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/help-search.js +194 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/help.js +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/hook.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/init.js +247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install-ci-test.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install-test.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/install.js +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/link.js +192 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ll.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/login.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/logout.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ls.js +573 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/org.js +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/outdated.js +369 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/owner.js +232 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/pack.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/ping.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/pkg.js +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/prefix.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/profile.js +407 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/prune.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/publish.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/query.js +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/rebuild.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/repo.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/restart.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/root.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/run-script.js +249 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/sbom.js +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/search.js +114 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/set.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/shrinkwrap.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/star.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/stars.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/start.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/stop.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/team.js +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/test.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/token.js +229 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/uninstall.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/unpublish.js +171 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/unstar.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/update.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/version.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/view.js +510 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/commands/whoami.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/es6/validate-engines.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/lifecycle-cmd.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/npm.js +485 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/package-url-cmd.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/audit-error.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/auth.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/cmd-list.js +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion/installed-deep.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion/installed-shallow.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion.fish +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/completion.sh +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/did-you-mean.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/display.js +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/error-message.js +435 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/exit-handler.js +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/explain-dep.js +135 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/explain-eresolve.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/format-bytes.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/format-search-stream.js +135 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/get-identity.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/is-windows.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/log-file.js +236 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/log-shim.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/npm-usage.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/open-url-prompt.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/open-url.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/otplease.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/ping.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/pulse-till-done.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/queryable.js +308 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/read-user-info.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/reify-finish.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/reify-output.js +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/replace-info.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/sbom-cyclonedx.js +201 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/sbom-spdx.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/tar.js +132 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/timers.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/update-notifier.js +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/validate-lockfile.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/utils/web-auth.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/workspaces/get-workspaces.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/lib/workspaces/update-workspaces.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-access.1 +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-adduser.1 +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-audit.1 +446 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-bugs.1 +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-cache.1 +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ci.1 +289 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-completion.1 +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-config.1 +187 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-dedupe.1 +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-deprecate.1 +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-diff.1 +307 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-dist-tag.1 +144 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-docs.1 +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-doctor.1 +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-edit.1 +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-exec.1 +350 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-explain.1 +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-explore.1 +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-find-dupes.1 +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-fund.1 +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-help-search.1 +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-help.1 +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-hook.1 +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-init.1 +366 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install-ci-test.1 +239 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install-test.1 +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-install.1 +752 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-link.1 +355 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-login.1 +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-logout.1 +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ls.1 +283 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-org.1 +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-outdated.1 +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-owner.1 +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-pack.1 +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-ping.1 +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-pkg.1 +286 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-prefix.1 +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-profile.1 +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-prune.1 +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-publish.1 +221 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-query.1 +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-rebuild.1 +178 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-repo.1 +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-restart.1 +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-root.1 +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-run-script.1 +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-sbom.1 +314 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-search.1 +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-shrinkwrap.1 +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-star.1 +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-stars.1 +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-start.1 +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-stop.1 +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-team.1 +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-test.1 +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-token.1 +130 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-uninstall.1 +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-unpublish.1 +137 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-unstar.1 +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-update.1 +406 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-version.1 +229 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-view.1 +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm-whoami.1 +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npm.1 +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man1/npx.1 +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/folders.5 +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/install.5 +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-global.5 +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-json.5 +1093 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npm-shrinkwrap-json.5 +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/npmrc.5 +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/package-json.5 +1093 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man5/package-lock-json.5 +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/config.7 +2002 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/dependency-selectors.7 +309 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/developers.7 +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/logging.7 +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/orgs.7 +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/package-spec.7 +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/registry.7 +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/removal.7 +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/scope.7 +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/scripts.7 +407 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/man/man7/workspaces.7 +214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/arborist.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/color-support.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/cssesc.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/glob.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/installed-package-contents.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/mkdirp.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-gyp.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/nopt.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/pacote.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/qrcode-terminal.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/.bin/semver.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/LICENSE +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/examples/normal-usage.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/examples/safe-string.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/colors.js +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/trap.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/custom/zalgo.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/extendStringPrototype.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/america.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/rainbow.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/random.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/maps/zebra.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/styles.js +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/has-flag.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/lib/system/supports-colors.js +151 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/safe.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@colors/colors/themes/generic-logging.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/LICENSE.txt +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.cjs +317 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/index.d.cts +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/build/lib/index.js +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/index.mjs +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/cliui/package.json +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/index.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@isaacs/string-locale-compare/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/agents.js +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/dns.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/errors.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/index.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/options.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/lib/proxy.js +88 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/agent/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/README.md +349 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/actual.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/audit.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/funding.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/ideal.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/index.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/logging.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/options.js +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/print-tree.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/lib/timers.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/license.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/prune.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/reify.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/shrinkwrap.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/bin/virtual.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/add-rm-pkg-deps.js +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/audit.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/build-ideal-tree.js +1511 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/deduper.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/index.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/isolated-reifier.js +453 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-actual.js +440 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/load-virtual.js +303 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/pruner.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/rebuild.js +433 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/reify.js +1593 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/arborist/set-workspaces.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/audit-report.js +414 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/calc-dep-flags.js +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/can-place-dep.js +436 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/case-insensitive-map.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/consistent-resolve.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/debug.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/deepest-nesting-target.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/dep-valid.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/diff.js +306 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/edge.js +301 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/from-path.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/gather-dep-set.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/get-workspace-nodes.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/inventory.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/link.js +126 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/node.js +1473 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/optional-set.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-resolves.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/override-set.js +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/peer-entry-sets.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/place-dep.js +569 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/printable.js +198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/query-selector-all.js +862 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/realpath.js +95 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/relpath.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/reset-dep-flags.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/retire-path.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/shrinkwrap.js +1176 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signal-handling.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/signals.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/spec-from-lock.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tracker.js +102 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/tree-check.js +155 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/version-from-tgz.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/vuln.js +217 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/lib/yarn-lock.js +377 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/arborist/package.json +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/README.md +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definition.js +253 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/definitions.js +2403 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/definitions/index.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/env-replace.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/errors.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/index.js +959 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/nerf-dart.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/parse-field.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/set-envs.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-defs.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/type-description.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/lib/umask.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/config/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/lib/index.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/disparity-colors/package.json +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/get-options.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/common/node.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/errors.js +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/cp/polyfill.js +428 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/move-file.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/readdir-scoped.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/lib/with-temp-dir.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/fs/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/clone.js +172 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/errors.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/find.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/index.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is-clean.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/is.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/lines-to-revs.js +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/make-error.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/opts.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/revs.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/spawn.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/utils.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/lib/which.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/git/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/README.md +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/lib/index.js +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/installed-package-contents/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/lib/index.js +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/map-workspaces/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/advisory.js +435 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/get-dep-spec.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/hash.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/lib/index.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/metavuln-calculator/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/lib/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/name-from-folder/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/lib/index.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/node-gyp/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/index.js +277 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/normalize.js +558 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-dependencies.js +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-scripts.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/lib/update-workspaces.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/package-json/package.json +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/escape.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/lib/index.js +195 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/promise-spawn/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/lib/index.js +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/query/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-server-package.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/is-windows.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/make-spawn-args.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/package-envs.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script-pkg.js +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/run-script.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/set-path.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/signal-manager.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/lib/validate-options.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@npmcli/run-script/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/LICENSE +201 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/is-default-value.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/limit-long-syntax.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/negate.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/no-repeated-options.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/ordered-options.mjs +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/examples/simple-hard-coded.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/index.js +396 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/errors.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/primordials.js +393 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/util.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/internal/validators.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/package.json +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@pkgjs/parseargs/utils.js +198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/build.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/bundle.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/error.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/index.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/serialized.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/utility.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/dist/validate.js +160 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/bundle/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/envelope.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/events.js +185 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/api/field_behavior.js +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/any.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/descriptor.js +1308 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/google/protobuf/timestamp.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_bundle.js +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_common.js +457 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_rekor.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_trustroot.js +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/__generated__/sigstore_verification.js +273 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/dist/index.js +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/protobuf-specs/package.json +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/base.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/bundle.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/dsse.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/bundler/message.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/error.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/error.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/fulcio.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/rekor.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/external/tsa.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/ci.js +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/index.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/identity/provider.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ca.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/ephemeral.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/fulcio/index.js +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/index.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/signer/signer.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/types/fetch.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/crypto.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/dsse.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/encoding.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/index.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/json.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/oidc.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/pem.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/util/ua.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/client.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/entry.js +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tlog/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/client.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/tsa/index.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/dist/witness/witness.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/sign/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/appdata.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/client.js +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/error.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/index.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/dist/target.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/package.json +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@sigstore/tuf/store/public-good-instance-root.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/lib/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/canonical-json/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/base.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/delegations.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/error.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/file.js +183 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/index.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/key.js +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/metadata.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/role.js +299 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/root.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/signature.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/snapshot.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/targets.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/timestamp.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/guard.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/index.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/key.js +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/oid.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/types.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/dist/utils/verify.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/@tufjs/models/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/LICENSE +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/lib/index.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abbrev/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/browser.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/browser.mjs +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.js +127 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.mjs +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/dist/abort-controller.umd.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/package.json +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/polyfill.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/abort-controller/polyfill.mjs +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/dist/helpers.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/dist/index.js +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/agent-base/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aggregate-error/package.json +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-regex/package.json +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/index.js +223 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ansi-styles/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/index.js +105 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/aproba/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/examples/beep.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/examples/multi_line.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/index.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/beep.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/multi_line.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/archy/test/non_unicode.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/LICENSE.md +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-base.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-group.js +112 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker-stream.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/lib/tracker.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/are-we-there-yet/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/LICENSE.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/index.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/balanced-match/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/base64js.min.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/index.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/base64-js/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/bin-target.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/check-bin.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/check-bins.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/fix-bin.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-node-modules.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-paths.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/get-prefix.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/index.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/is-windows.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-bin.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-bins.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-gently.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/link-mans.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/man-target.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/lib/shim-bin.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/bin-links/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/binary-extensions.json +260 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/index.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/binary-extensions/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/index.js +203 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/brace-expansion/package.json +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/AUTHORS.md +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/index.js +2106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/buffer/package.json +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/License +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/index.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/builtins/package.json +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/path.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/read.js +166 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/rm.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/content/write.js +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/entry-index.js +330 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/get.js +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/index.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/memoization.js +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/put.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/rm.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/glob.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/hash-to-segments.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/util/tmp.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/verify.js +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/package.json +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/package.json +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/index.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/utilities.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/ansi-styles/index.js +223 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/browser.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chalk/source/vendor/supports-color/index.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/chownr.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/chownr/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/index.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ci-info/vendors.json +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/index.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cidr-regex/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/index.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clean-stack/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/color.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/license +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-columns/test.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/index.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/package.json +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/cell.js +409 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/debug.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/layout-manager.js +254 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/table.js +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cli-table3/src/utils.js +336 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/clone.iml +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/clone.js +166 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/clone/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/lib/index.js +247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cmd-shim/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/conversions.js +839 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/index.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-convert/route.js +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/LICENSE +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/index.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-name/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/README.md +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/bin.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/browser.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/index.js +134 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/color-support/package.json +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/Makefile +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/columnify.js +306 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/index.js +297 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/utils.js +193 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/columnify/width.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/common-ancestor-path/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/index.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/console-control-strings/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/index.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/enoent.js +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/parse.js +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/escape.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/readShebang.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/lib/util/resolveCommand.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.cmd +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/.bin/node-which.ps1 +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/README.md +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/bin/node-which +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/node_modules/which/which.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cross-spawn/package.json +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/README.md +201 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/bin/cssesc +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/cssesc.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/man/cssesc.1 +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cssesc/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/node_modules/ms/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/browser.js +269 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/common.js +274 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/debug/src/node.js +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/package.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/defaults/test.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/History.md +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/License +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/Makefile +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/index.js +121 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/package.json +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/delegates/test/index.js +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/CONTRIBUTING.md +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/LICENSE +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/dist/diff.js +1627 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/dist/diff.min.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/convert/dmp.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/convert/xml.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/array.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/base.js +307 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/character.js +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/css.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/json.js +163 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/line.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/sentence.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/diff/word.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.es6.js +1561 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.js +216 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/index.mjs +1561 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/apply.js +238 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/create.js +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/merge.js +613 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/patch/parse.js +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/array.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/distance-iterator.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/lib/util/params.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/release-notes.md +309 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/diff/runtime.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/eastasianwidth/eastasianwidth.js +311 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/eastasianwidth/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/package.json +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/lib/encoding.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/encoding/test/test.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/index.js +74 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/env-paths/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/bower.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/index.umd.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/err-code/test/test.js +159 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.js +871 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.mjs +862 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/dist/event-target-shim.umd.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/event-target-shim/package.json +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/.airtap.yml +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/History.md +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/events.js +497 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/security.md +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/add-listeners.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/check-listener-leaks.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/common.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/errors.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/events-list.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/events-once.js +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/legacy-compat.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listener-count.js +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listeners-side-effects.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/listeners.js +168 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/max-listeners.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/method-names.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/modify-in-emit.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/num-args.js +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/once.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/prepend.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/remove-all-listeners.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/remove-listeners.js +212 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/set-max-listeners-side-effects.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/special-event-names.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/subclass.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/events/tests/symbols.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/backoff.js +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/always/always.delay.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.base.js +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.factory.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/delay.interface.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/delay/skip-first/skip-first.delay.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/full/full.jitter.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/jitter.factory.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/jitter/no/no.jitter.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/dist/options.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/exponential-backoff/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/LICENSE.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/bench.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/esm/mod.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/mod.js +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/package.json +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fastest-levenshtein/test.js +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/all-signals.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/index.js +154 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/cjs/watchdog.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/all-signals.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/index.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/dist/mjs/watchdog.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/foreground-child/package.json +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/lib/index.js +443 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/fs-minipass/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/implementation.js +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/function-bind/test/index.js +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/base-theme.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/error.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/has-color.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/index.js +289 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/plumbing.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/process.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/progress-bar.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/render-template.js +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/set-immediate.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/set-interval.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/spin.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/template-item.js +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/theme-set.js +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/themes.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/lib/wide-truncate.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/gauge/package.json +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/README.md +1214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts +344 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js +243 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/glob.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/has-magic.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/ignore.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/index.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js +219 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/pattern.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/processor.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js +358 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/commonjs/walker.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.d.mts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs +275 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/bin.mjs.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts +344 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js +239 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/glob.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/has-magic.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/ignore.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/index.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js +215 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/pattern.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js +295 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/processor.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.d.ts.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js +352 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/dist/esm/walker.js.map +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/glob/package.json +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/clone.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/graceful-fs.js +448 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/legacy-streams.js +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/graceful-fs/polyfills.js +355 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/has-unicode/package.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/package.json +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hasown/tsconfig.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/from-url.js +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/hosts.js +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/index.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/lib/parse-url.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/hosted-git-info/package.json +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/LICENSE +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/index.js +674 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-cache-semantics/package.json +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/LICENSE +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/dist/index.js +147 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/http-proxy-agent/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/index.js +174 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/dist/parse-proxy-response.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/https-proxy-agent/package.json +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-codec.js +597 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/dbcs-data.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/internal.js +198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/sbcs-data.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/gbk-added.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf16.js +197 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf32.js +319 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/index.js +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/lib/streams.js +109 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/iconv-lite/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/LICENSE +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/index.js +85 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ieee754/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/lib/index.js +310 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ignore-walk/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/imurmurhash.min.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/imurmurhash/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/index.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/indent-string/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/lib/ini.js +278 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ini/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/LICENSE.md +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/lib/default-input.js +262 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/lib/init-package-json.js +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/init-package-json/package.json +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip/lib/ip.js +422 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip/package.json +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/index.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ip-regex/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/index.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-cidr/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/core.json +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/package.json +73 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-core-module/test/index.js +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/index.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/is-lambda/test.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/index.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/mode.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/package.json +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/test/basic.js +221 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/isexe/windows.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/LICENSE.md +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/index.js +850 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/commonjs/parse-args.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/index.js +840 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/dist/esm/parse-args.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jackspeak/package.json +94 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/LICENSE.md +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/lib/index.js +135 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-parse-even-better-errors/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/index.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/json-stringify-nice/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/bench.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/examples/twitterfeed.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/jsonparse.js +413 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/package.json +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic.json +167 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/samplejson/basic2.json +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/big-token.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/boundary.js +110 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/offset.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/primitives.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/surrogate.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/unvalid.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/jsonparse/test/utf8.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/index.cjs +230 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/index.mjs +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/package.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff/rollup.config.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/index.cjs +161 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/index.mjs +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/just-diff-apply/rollup.config.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/README.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/lib/index.js +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmaccess/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/README.md +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/format-diff.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/index.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/should-print-patch.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/tarball.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/lib/untar.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmdiff/package.json +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/README.md +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/file-exists.js +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/get-bin-from-manifest.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/index.js +285 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/is-windows.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/no-tty.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/lib/run-script.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmexec/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/README.md +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/lib/index.js +210 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmfund/package.json +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/README.md +271 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/lib/index.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmhook/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/README.md +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/lib/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmorg/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/README.md +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/lib/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpack/package.json +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/README.md +120 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/provenance.js +245 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/publish.js +225 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/lib/unpublish.js +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmpublish/package.json +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/README.md +173 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/lib/index.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmsearch/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/README.md +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/lib/index.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmteam/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/README.md +164 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/commit.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/enforce-clean.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/index.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/read-json.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/retrieve-tag.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/tag.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/version.js +140 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/lib/write-json.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/libnpmversion/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/index.js +1441 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/commonjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/index.js +1437 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/dist/esm/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/lru-cache/package.json +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/entry.js +469 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/errors.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/index.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/key.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/cache/policy.js +161 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/fetch.js +118 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/index.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/options.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/pipeline.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/lib/remote.js +127 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/make-fetch-happen/package.json +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/assert-valid-pattern.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/ast.js +589 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/brace-expressions.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/escape.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/index.js +1011 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/cjs/unescape.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/assert-valid-pattern.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/ast.js +585 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/brace-expressions.js +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/escape.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/index.js +995 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/dist/mjs/unescape.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minimatch/package.json +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/index.js +1028 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/commonjs/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/esm/index.js +1018 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/dist/esm/package.json +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass/package.json +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/index.js +71 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-collect/package.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/LICENSE +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/abort-error.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/blob.js +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/body.js +350 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/fetch-error.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/headers.js +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/index.js +377 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/request.js +282 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/lib/response.js +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-fetch/package.json +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/index.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-flush/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/LICENSE +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/index.js +227 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-json-stream/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/index.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-pipeline/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/index.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minipass-sized/test/basic.js +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/LICENSE +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/constants.js +115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/index.js +348 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/minizlib/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/bin/cmd.js +68 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/index.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/find-made.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-manual.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/mkdirp-native.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/opts-arg.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/path-arg.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/lib/use-native.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mkdirp/readme.markdown +266 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/lib/index.js +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/mute-stream/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/HISTORY.md +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/index.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/charset.js +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/encoding.js +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/language.js +179 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/lib/mediaType.js +294 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/negotiator/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/CHANGELOG.md +905 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/README.md +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/SECURITY.md +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/addon.gypi +204 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/LICENSE +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/README.md +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/data/win/large-pdb-shim.cc +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp.bat +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSNew.py +365 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSProject.py +206 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings.py +1270 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSSettings_test.py +1547 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSToolFile.py +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUserFile.py +153 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.py +271 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.py +574 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.py +692 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.py +654 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common_test.py +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml.py +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/easy_xml_test.py +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/flock_tool.py +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/analyzer.py +804 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/android.py +1173 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/cmake.py +1318 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/compile_commands_json.py +123 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/dump_dependency_json.py +103 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/eclipse.py +461 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypd.py +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/gypsh.py +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.py +2711 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs.py +3981 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/msvs_test.py +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.py +2933 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja_test.py +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.py +1391 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode_test.py +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.py +3115 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input_test.py +98 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/mac_tool.py +771 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.py +1262 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.py +174 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.py +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/win_tool.py +373 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.py +1933 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.py +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.py +3198 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xml_fix.py +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.APACHE +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/LICENSE.BSD +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/__init__.py +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_elffile.py +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_manylinux.py +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_musllinux.py +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_parser.py +359 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_structures.py +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/_tokenizer.py +192 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/markers.py +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/metadata.py +825 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/py.typed +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/requirements.py +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/specifiers.py +1030 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/tags.py +553 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/utils.py +172 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pylib/packaging/version.py +563 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/pyproject.toml +119 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/gyp/test_gyp.py +261 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/Find-VisualStudio.cs +250 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/build.js +220 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/clean.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/configure.js +282 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/create-config-gypi.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/download.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-node-directory.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-python.js +310 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/find-visualstudio.js +443 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/install.js +415 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/list.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/log.js +169 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/node-gyp.js +188 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/process-release.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/rebuild.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/remove.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/lib/util.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/macOS_Catalina_acid_test.sh +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/node-gyp/src/win_delay_load_hook.cc +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/README.md +213 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/bin/nopt.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/debug.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/nopt-lib.js +479 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/nopt.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/lib/type-defs.js +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/nopt/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/extract_description.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/fixer.js +475 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/make_warning.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/normalize.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/safe_format.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/typos.json +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/lib/warning_messages.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/normalize-package-data/package.json +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/LICENSE +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/colors.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/exit-code.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/index.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/detail.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/install.js +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/json.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/lib/reporters/quiet.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-audit-report/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/lib/index.js +254 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-bundled/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/LICENSE +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/lib/index.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-install-checks/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/lib/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/lib/npa.js +411 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-package-arg/package.json +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/lib/index.js +484 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-packlist/package.json +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/lib/index.js +218 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-pick-manifest/package.json +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/lib/index.js +295 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-profile/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/auth.js +181 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/check-response.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/clean-url.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/default-opts.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/errors.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/lib/index.js +249 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-registry-fetch/package.json +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/LICENSE +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/lib/index.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npm-user-validate/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/lib/log.js +400 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/npmlog/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/index.js +81 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/p-map/package.json +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/README.md +285 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/bin.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/dir.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/fetcher.js +505 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/file.js +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/git.js +327 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/registry.js +368 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/remote.js +91 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/add-git-sha.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/cache-dir.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/is-package-bin.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/npm.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/tar-create-options.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/lib/util/trailing-slashes.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/pacote/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/LICENSE.md +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/lib/index.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/parse-conflict-json/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-key/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/LICENSE.md +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/index.js +2018 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/index.js +1983 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/path-scurry/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/API.md +872 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/LICENSE-MIT +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/parser.js +1012 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/processor.js +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/attribute.js +448 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/className.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/combinator.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/comment.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/constructors.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/container.js +308 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/guards.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/id.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/index.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/namespace.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/nesting.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/node.js +192 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/pseudo.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/root.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/selector.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/string.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/tag.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/types.js +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/selectors/universal.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/sortAscending.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenTypes.js +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/tokenize.js +239 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/ensureObject.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/getProp.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/index.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/stripComments.js +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/dist/util/unesc.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/postcss-selector-parser/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/lib/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/proc-log/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/browser.js +184 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/index.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/process/test.js +199 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/index.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/package.json +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-all-reject-late/test/index.js +88 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/index.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-call-limit/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/inflight.js +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-inflight/package.json +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/LICENSE +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/index.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promise-retry/test/test.js +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/lib/index.js +175 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/promzard/package.json +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/.travis.yml +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/LICENSE +222 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/README.md +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/bin/qrcode-terminal.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/basic.png +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/callback.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/example/small-qrcode.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/lib/main.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/package.json +37 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/test/main.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QR8bitByte.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRBitBuffer.js +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRErrorCorrectLevel.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMaskPattern.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMath.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRMode.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRPolynomial.js +66 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRRSBlock.js +298 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/QRUtil.js +272 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/qrcode-terminal/vendor/QRCode/index.js +462 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/lib/read.js +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/lib/index.js +75 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-cmd-shim/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/lib/read-json.js +589 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json/package.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/lib/index.js +141 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/read-package-json-fast/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/LICENSE +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_duplex.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_passthrough.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_readable.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_transform.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/_stream_writable.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/add-abort-signal.js +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/buffer_list.js +157 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/compose.js +194 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/destroy.js +290 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplex.js +143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/duplexify.js +379 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/end-of-stream.js +281 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/from.js +98 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/lazy_transform.js +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/legacy.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/operators.js +457 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/passthrough.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/pipeline.js +465 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/readable.js +1247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/state.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/transform.js +180 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/utils.js +321 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/streams/writable.js +817 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/internal/validators.js +510 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/browser.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/errors.js +341 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/index.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/primordials.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/ours/util.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/stream/promises.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/lib/stream.js +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/readable-stream/package.json +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/License +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/Makefile +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/equation.gif +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/example/dns.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/example/stop.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/index.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/lib/retry.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/lib/retry_operation.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/common.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-forever.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-operation.js +258 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-retry-wrap.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/retry/test/integration/test-timeouts.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/README.md +637 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/bin/semver.js +197 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/comparator.js +141 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/index.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/range.js +539 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/classes/semver.js +302 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/clean.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/cmp.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/coerce.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare-build.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare-loose.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/compare.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/diff.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/eq.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/gt.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/gte.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/inc.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/lt.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/lte.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/major.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/minor.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/neq.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/parse.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/patch.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/prerelease.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/rcompare.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/rsort.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/satisfies.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/sort.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/functions/valid.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/index.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/constants.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/debug.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/identifiers.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/parse-options.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/internal/re.js +212 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/index.js +334 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/node_modules/lru-cache/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/package.json +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/preload.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/range.bnf +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/gtr.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/intersects.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/ltr.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/max-satisfying.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/min-satisfying.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/min-version.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/outside.js +80 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/simplify.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/subset.js +247 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/to-comparators.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/semver/ranges/valid.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/LICENSE.txt +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/set-blocking/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/index.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-command/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/index.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/shebang-regex/package.json +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/LICENSE.txt +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/browser.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/index.js +279 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/cjs/signals.js +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/browser.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/index.js +275 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/dist/mjs/signals.js +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/signal-exit/package.json +106 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/chain.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/index.js +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/sct.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/ca/verify/signer.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/config.js +165 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/error.js +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/index.js +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/sigstore.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/body.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/checkpoint.js +148 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/index.js +92 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/merkle.js +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/tlog/verify/set.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/fetch.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/sigstore.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/types/utility.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/dump.js +97 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/error.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/index.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/length.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/obj.js +152 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/parse.js +125 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/asn1/tag.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/crypto.js +63 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/dsse.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/encoding.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/json.js +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/pem.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/util/stream.js +116 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/verify.js +160 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/cert.js +242 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/ext.js +145 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/sct.js +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/dist/x509/verify.js +177 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/sigstore/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/build/smartbuffer.js +1233 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/build/utils.js +108 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/docs/ROADMAP.md +0 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/smart-buffer/package.json +79 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/client/socksclient.js +793 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/constants.js +114 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/helpers.js +128 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/receivebuffer.js +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/common/util.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/build/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/index.md +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/associateExample.md +90 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/bindExample.md +83 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/javascript/connectExample.md +258 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/associateExample.md +93 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/bindExample.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/examples/typescript/connectExample.md +265 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/index.md +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/docs/migratingFromV1.md +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks/package.json +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks-proxy-agent/dist/index.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/socks-proxy-agent/package.json +142 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/index.js +386 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-correct/package.json +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-exceptions/index.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-exceptions/package.json +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/AUTHORS +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/index.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/parse.js +138 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-expression-parse/scan.js +131 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/deprecated.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/index.json +569 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/spdx-license-ids/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/LICENSE.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/lib/index.js +580 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/ssri/package.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/index.js +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string-width-cjs/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/LICENSE +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/lib/string_decoder.js +296 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/string_decoder/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/index.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/strip-ansi-cjs/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/browser.js +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/index.js +182 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/supports-color/package.json +60 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/create.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/extract.js +113 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/get-write-flag.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/header.js +304 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/high-level-opt.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/large-numbers.js +104 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/list.js +139 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/mkdir.js +229 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/mode-fix.js +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/normalize-unicode.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/normalize-windows-path.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/pack.js +432 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/parse.js +552 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/path-reservations.js +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/pax.js +150 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/read-entry.js +107 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/replace.js +246 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/strip-absolute-path.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/strip-trailing-slashes.js +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/types.js +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/unpack.js +906 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/update.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/warn-mixin.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/winchars.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/lib/write-entry.js +546 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/index.js +422 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/index.js +649 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/fs-minipass/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.js +702 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/index.mjs +702 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tar/package.json +70 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/LICENSE +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/align.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/center.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/dotalign.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/doubledot.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/example/table.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/index.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/align.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/ansi-colors.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/center.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/dotalign.js +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/doubledot.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/text-table/test/table.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/LICENSE.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/factory.js +100 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/lib/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/src/factory.js +89 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/src/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/da.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/de.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en-short.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/en.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tiny-relative-date/translations/es.js +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/breadth.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/depth-descent.js +88 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/depth.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/lib/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/treeverse/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/config.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/error.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/fetcher.js +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/index.js +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/store.js +208 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/updater.js +320 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/tmpfile.js +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/dist/utils/url.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/tuf-js/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/LICENSE +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/lib/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-filename/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/lib/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/unique-slug/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/History.md +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/browser.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/node.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/util-deprecate/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/LICENSE +202 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/index.js +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-license/package.json +28 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/LICENSE +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/lib/index.js +107 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/validate-npm-package-name/package.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/index.js +18 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/index.js +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/walk-up-path/package.json +72 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/LICENSE +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/combining.js +50 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/docs/index.md +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/index.js +99 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wcwidth/test/index.js +64 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/README.md +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/bin/which.js +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/lib/index.js +111 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/index.js +46 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/options.js +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/posix.js +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/cjs/win32.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/index.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/options.js +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/package.json +3 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/posix.js +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/dist/mjs/win32.js +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/node_modules/isexe/package.json +96 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/which/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/LICENSE +14 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/align.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wide-align/package.json +33 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/index.js +214 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/LICENSE-MIT.txt +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/RGI_Emoji.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/es2015/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/index.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/package.json +52 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex/text.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/index.js +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi/package.json +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/index.js +216 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/index.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-regex/package.json +55 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/index.js +163 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles/package.json +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/index.js +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/license +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/strip-ansi/package.json +54 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/wrap-ansi-cjs/package.json +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/LICENSE.md +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/lib/index.js +267 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/write-file-atomic/package.json +57 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/LICENSE +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/iterator.js +8 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/package.json +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/yallist/yallist.js +426 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/package.json +268 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.eslintrc +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/CHANGELOG.md +389 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/all.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/circular.js +6 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/fn.js +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/example/inspect.js +10 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/index.js +524 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/package-support.json +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/package.json +99 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/readme.markdown +86 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/bigint.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/circular.js +16 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/deep.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/element.js +53 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/err.js +48 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/fakes.js +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/fn.js +76 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/global.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/has.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/holes.js +15 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/indent-option.js +271 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/inspect.js +139 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/number.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/quoteStyle.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/undef.js +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test/values.js +211 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/test-core-js.js +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/object-inspect/util.inspect.js +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/HISTORY.md +98 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/README.md +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/index.js +234 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/on-finished/package.json +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/HISTORY.md +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/LICENSE +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/README.md +133 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/index.js +158 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/parseurl/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/History.md +36 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/Readme.md +35 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/index.js +129 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/path-to-regexp/package.json +30 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/HISTORY.md +161 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/README.md +139 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/index.js +327 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/proxy-addr/package.json +47 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.editorconfig +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.eslintrc +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/CHANGELOG.md +546 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/LICENSE.md +29 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/README.md +625 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/dist/qs.js +2054 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/formats.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/index.js +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/parse.js +263 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/stringify.js +326 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/lib/utils.js +252 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/package.json +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/parse.js +855 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/stringify.js +909 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/qs/test/utils.js +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/HISTORY.md +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/README.md +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/range-parser/package.json +44 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/HISTORY.md +303 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/README.md +223 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/SECURITY.md +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/index.d.ts +87 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/index.js +329 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/raw-body/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/README.md +584 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/index.d.ts +187 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/index.js +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safe-buffer/package.json +51 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/Readme.md +156 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/dangerous.js +58 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/package.json +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/safer.js +77 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/safer-buffer/tests.js +406 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/HISTORY.md +521 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/README.md +327 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/SECURITY.md +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/index.js +1143 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/index.js +162 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/license.md +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/node_modules/ms/readme.md +59 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/send/package.json +62 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/HISTORY.md +471 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/LICENSE +25 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/README.md +257 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/index.js +210 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/serve-static/package.json +42 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.eslintrc +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/CHANGELOG.md +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/README.md +56 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/env.js +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/index.js +41 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/set-function-length/package.json +84 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/LICENSE +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/README.md +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/index.d.ts +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/index.js +17 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/setprototypeof/test/index.js +24 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.eslintignore +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.eslintrc +11 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/.nycrc +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/CHANGELOG.md +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/README.md +2 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/index.js +124 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/package.json +67 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/side-channel/test/index.js +78 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/HISTORY.md +82 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/README.md +136 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/codes.json +65 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/index.js +146 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/statuses/package.json +49 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/HISTORY.md +9 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/LICENSE +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/README.md +61 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/index.js +32 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/toidentifier/package.json +38 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/HISTORY.md +259 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/LICENSE +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/README.md +170 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/index.js +266 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/type-is/package.json +45 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/HISTORY.md +4 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/README.md +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/index.js +69 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/unpipe/package.json +27 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/LICENSE +20 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/README.md +34 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/index.js +23 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/utils-merge/package.json +40 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/HISTORY.md +39 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/LICENSE +22 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/README.md +101 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/index.js +149 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/vary/package.json +43 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/.github/workflows/node.js.yml +31 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/README.md +5 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/index.js +7 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/package.json +26 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/.package-lock.json +13 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/README.md +1 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/package.json +19 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/package-lock.json +21 -0
- package/the_app/node_modules/warbeast2000/the_app/node_modules/warbeast2000/the_app/package.json +15 -0
- package/the_app/node_modules/warbeast2000/the_app/package-lock.json +3414 -0
- package/the_app/node_modules/warbeast2000/the_app/package.json +15 -0
- package/the_app/package-lock.json +3414 -0
- package/the_app/package.json +15 -0
@@ -0,0 +1,589 @@
|
|
1
|
+
"use strict";
|
2
|
+
// parse a single path portion
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
4
|
+
exports.AST = void 0;
|
5
|
+
const brace_expressions_js_1 = require("./brace-expressions.js");
|
6
|
+
const unescape_js_1 = require("./unescape.js");
|
7
|
+
const types = new Set(['!', '?', '+', '*', '@']);
|
8
|
+
const isExtglobType = (c) => types.has(c);
|
9
|
+
// Patterns that get prepended to bind to the start of either the
|
10
|
+
// entire string, or just a single path portion, to prevent dots
|
11
|
+
// and/or traversal patterns, when needed.
|
12
|
+
// Exts don't need the ^ or / bit, because the root binds that already.
|
13
|
+
const startNoTraversal = '(?!(?:^|/)\\.\\.?(?:$|/))';
|
14
|
+
const startNoDot = '(?!\\.)';
|
15
|
+
// characters that indicate a start of pattern needs the "no dots" bit,
|
16
|
+
// because a dot *might* be matched. ( is not in the list, because in
|
17
|
+
// the case of a child extglob, it will handle the prevention itself.
|
18
|
+
const addPatternStart = new Set(['[', '.']);
|
19
|
+
// cases where traversal is A-OK, no dot prevention needed
|
20
|
+
const justDots = new Set(['..', '.']);
|
21
|
+
const reSpecials = new Set('().*{}+?[]^$\\!');
|
22
|
+
const regExpEscape = (s) => s.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, '\\$&');
|
23
|
+
// any single thing other than /
|
24
|
+
const qmark = '[^/]';
|
25
|
+
// * => any number of characters
|
26
|
+
const star = qmark + '*?';
|
27
|
+
// use + when we need to ensure that *something* matches, because the * is
|
28
|
+
// the only thing in the path portion.
|
29
|
+
const starNoEmpty = qmark + '+?';
|
30
|
+
// remove the \ chars that we added if we end up doing a nonmagic compare
|
31
|
+
// const deslash = (s: string) => s.replace(/\\(.)/g, '$1')
|
32
|
+
class AST {
|
33
|
+
type;
|
34
|
+
#root;
|
35
|
+
#hasMagic;
|
36
|
+
#uflag = false;
|
37
|
+
#parts = [];
|
38
|
+
#parent;
|
39
|
+
#parentIndex;
|
40
|
+
#negs;
|
41
|
+
#filledNegs = false;
|
42
|
+
#options;
|
43
|
+
#toString;
|
44
|
+
// set to true if it's an extglob with no children
|
45
|
+
// (which really means one child of '')
|
46
|
+
#emptyExt = false;
|
47
|
+
constructor(type, parent, options = {}) {
|
48
|
+
this.type = type;
|
49
|
+
// extglobs are inherently magical
|
50
|
+
if (type)
|
51
|
+
this.#hasMagic = true;
|
52
|
+
this.#parent = parent;
|
53
|
+
this.#root = this.#parent ? this.#parent.#root : this;
|
54
|
+
this.#options = this.#root === this ? options : this.#root.#options;
|
55
|
+
this.#negs = this.#root === this ? [] : this.#root.#negs;
|
56
|
+
if (type === '!' && !this.#root.#filledNegs)
|
57
|
+
this.#negs.push(this);
|
58
|
+
this.#parentIndex = this.#parent ? this.#parent.#parts.length : 0;
|
59
|
+
}
|
60
|
+
get hasMagic() {
|
61
|
+
/* c8 ignore start */
|
62
|
+
if (this.#hasMagic !== undefined)
|
63
|
+
return this.#hasMagic;
|
64
|
+
/* c8 ignore stop */
|
65
|
+
for (const p of this.#parts) {
|
66
|
+
if (typeof p === 'string')
|
67
|
+
continue;
|
68
|
+
if (p.type || p.hasMagic)
|
69
|
+
return (this.#hasMagic = true);
|
70
|
+
}
|
71
|
+
// note: will be undefined until we generate the regexp src and find out
|
72
|
+
return this.#hasMagic;
|
73
|
+
}
|
74
|
+
// reconstructs the pattern
|
75
|
+
toString() {
|
76
|
+
if (this.#toString !== undefined)
|
77
|
+
return this.#toString;
|
78
|
+
if (!this.type) {
|
79
|
+
return (this.#toString = this.#parts.map(p => String(p)).join(''));
|
80
|
+
}
|
81
|
+
else {
|
82
|
+
return (this.#toString =
|
83
|
+
this.type + '(' + this.#parts.map(p => String(p)).join('|') + ')');
|
84
|
+
}
|
85
|
+
}
|
86
|
+
#fillNegs() {
|
87
|
+
/* c8 ignore start */
|
88
|
+
if (this !== this.#root)
|
89
|
+
throw new Error('should only call on root');
|
90
|
+
if (this.#filledNegs)
|
91
|
+
return this;
|
92
|
+
/* c8 ignore stop */
|
93
|
+
// call toString() once to fill this out
|
94
|
+
this.toString();
|
95
|
+
this.#filledNegs = true;
|
96
|
+
let n;
|
97
|
+
while ((n = this.#negs.pop())) {
|
98
|
+
if (n.type !== '!')
|
99
|
+
continue;
|
100
|
+
// walk up the tree, appending everthing that comes AFTER parentIndex
|
101
|
+
let p = n;
|
102
|
+
let pp = p.#parent;
|
103
|
+
while (pp) {
|
104
|
+
for (let i = p.#parentIndex + 1; !pp.type && i < pp.#parts.length; i++) {
|
105
|
+
for (const part of n.#parts) {
|
106
|
+
/* c8 ignore start */
|
107
|
+
if (typeof part === 'string') {
|
108
|
+
throw new Error('string part in extglob AST??');
|
109
|
+
}
|
110
|
+
/* c8 ignore stop */
|
111
|
+
part.copyIn(pp.#parts[i]);
|
112
|
+
}
|
113
|
+
}
|
114
|
+
p = pp;
|
115
|
+
pp = p.#parent;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
return this;
|
119
|
+
}
|
120
|
+
push(...parts) {
|
121
|
+
for (const p of parts) {
|
122
|
+
if (p === '')
|
123
|
+
continue;
|
124
|
+
/* c8 ignore start */
|
125
|
+
if (typeof p !== 'string' && !(p instanceof AST && p.#parent === this)) {
|
126
|
+
throw new Error('invalid part: ' + p);
|
127
|
+
}
|
128
|
+
/* c8 ignore stop */
|
129
|
+
this.#parts.push(p);
|
130
|
+
}
|
131
|
+
}
|
132
|
+
toJSON() {
|
133
|
+
const ret = this.type === null
|
134
|
+
? this.#parts.slice().map(p => (typeof p === 'string' ? p : p.toJSON()))
|
135
|
+
: [this.type, ...this.#parts.map(p => p.toJSON())];
|
136
|
+
if (this.isStart() && !this.type)
|
137
|
+
ret.unshift([]);
|
138
|
+
if (this.isEnd() &&
|
139
|
+
(this === this.#root ||
|
140
|
+
(this.#root.#filledNegs && this.#parent?.type === '!'))) {
|
141
|
+
ret.push({});
|
142
|
+
}
|
143
|
+
return ret;
|
144
|
+
}
|
145
|
+
isStart() {
|
146
|
+
if (this.#root === this)
|
147
|
+
return true;
|
148
|
+
// if (this.type) return !!this.#parent?.isStart()
|
149
|
+
if (!this.#parent?.isStart())
|
150
|
+
return false;
|
151
|
+
if (this.#parentIndex === 0)
|
152
|
+
return true;
|
153
|
+
// if everything AHEAD of this is a negation, then it's still the "start"
|
154
|
+
const p = this.#parent;
|
155
|
+
for (let i = 0; i < this.#parentIndex; i++) {
|
156
|
+
const pp = p.#parts[i];
|
157
|
+
if (!(pp instanceof AST && pp.type === '!')) {
|
158
|
+
return false;
|
159
|
+
}
|
160
|
+
}
|
161
|
+
return true;
|
162
|
+
}
|
163
|
+
isEnd() {
|
164
|
+
if (this.#root === this)
|
165
|
+
return true;
|
166
|
+
if (this.#parent?.type === '!')
|
167
|
+
return true;
|
168
|
+
if (!this.#parent?.isEnd())
|
169
|
+
return false;
|
170
|
+
if (!this.type)
|
171
|
+
return this.#parent?.isEnd();
|
172
|
+
// if not root, it'll always have a parent
|
173
|
+
/* c8 ignore start */
|
174
|
+
const pl = this.#parent ? this.#parent.#parts.length : 0;
|
175
|
+
/* c8 ignore stop */
|
176
|
+
return this.#parentIndex === pl - 1;
|
177
|
+
}
|
178
|
+
copyIn(part) {
|
179
|
+
if (typeof part === 'string')
|
180
|
+
this.push(part);
|
181
|
+
else
|
182
|
+
this.push(part.clone(this));
|
183
|
+
}
|
184
|
+
clone(parent) {
|
185
|
+
const c = new AST(this.type, parent);
|
186
|
+
for (const p of this.#parts) {
|
187
|
+
c.copyIn(p);
|
188
|
+
}
|
189
|
+
return c;
|
190
|
+
}
|
191
|
+
static #parseAST(str, ast, pos, opt) {
|
192
|
+
let escaping = false;
|
193
|
+
let inBrace = false;
|
194
|
+
let braceStart = -1;
|
195
|
+
let braceNeg = false;
|
196
|
+
if (ast.type === null) {
|
197
|
+
// outside of a extglob, append until we find a start
|
198
|
+
let i = pos;
|
199
|
+
let acc = '';
|
200
|
+
while (i < str.length) {
|
201
|
+
const c = str.charAt(i++);
|
202
|
+
// still accumulate escapes at this point, but we do ignore
|
203
|
+
// starts that are escaped
|
204
|
+
if (escaping || c === '\\') {
|
205
|
+
escaping = !escaping;
|
206
|
+
acc += c;
|
207
|
+
continue;
|
208
|
+
}
|
209
|
+
if (inBrace) {
|
210
|
+
if (i === braceStart + 1) {
|
211
|
+
if (c === '^' || c === '!') {
|
212
|
+
braceNeg = true;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {
|
216
|
+
inBrace = false;
|
217
|
+
}
|
218
|
+
acc += c;
|
219
|
+
continue;
|
220
|
+
}
|
221
|
+
else if (c === '[') {
|
222
|
+
inBrace = true;
|
223
|
+
braceStart = i;
|
224
|
+
braceNeg = false;
|
225
|
+
acc += c;
|
226
|
+
continue;
|
227
|
+
}
|
228
|
+
if (!opt.noext && isExtglobType(c) && str.charAt(i) === '(') {
|
229
|
+
ast.push(acc);
|
230
|
+
acc = '';
|
231
|
+
const ext = new AST(c, ast);
|
232
|
+
i = AST.#parseAST(str, ext, i, opt);
|
233
|
+
ast.push(ext);
|
234
|
+
continue;
|
235
|
+
}
|
236
|
+
acc += c;
|
237
|
+
}
|
238
|
+
ast.push(acc);
|
239
|
+
return i;
|
240
|
+
}
|
241
|
+
// some kind of extglob, pos is at the (
|
242
|
+
// find the next | or )
|
243
|
+
let i = pos + 1;
|
244
|
+
let part = new AST(null, ast);
|
245
|
+
const parts = [];
|
246
|
+
let acc = '';
|
247
|
+
while (i < str.length) {
|
248
|
+
const c = str.charAt(i++);
|
249
|
+
// still accumulate escapes at this point, but we do ignore
|
250
|
+
// starts that are escaped
|
251
|
+
if (escaping || c === '\\') {
|
252
|
+
escaping = !escaping;
|
253
|
+
acc += c;
|
254
|
+
continue;
|
255
|
+
}
|
256
|
+
if (inBrace) {
|
257
|
+
if (i === braceStart + 1) {
|
258
|
+
if (c === '^' || c === '!') {
|
259
|
+
braceNeg = true;
|
260
|
+
}
|
261
|
+
}
|
262
|
+
else if (c === ']' && !(i === braceStart + 2 && braceNeg)) {
|
263
|
+
inBrace = false;
|
264
|
+
}
|
265
|
+
acc += c;
|
266
|
+
continue;
|
267
|
+
}
|
268
|
+
else if (c === '[') {
|
269
|
+
inBrace = true;
|
270
|
+
braceStart = i;
|
271
|
+
braceNeg = false;
|
272
|
+
acc += c;
|
273
|
+
continue;
|
274
|
+
}
|
275
|
+
if (isExtglobType(c) && str.charAt(i) === '(') {
|
276
|
+
part.push(acc);
|
277
|
+
acc = '';
|
278
|
+
const ext = new AST(c, part);
|
279
|
+
part.push(ext);
|
280
|
+
i = AST.#parseAST(str, ext, i, opt);
|
281
|
+
continue;
|
282
|
+
}
|
283
|
+
if (c === '|') {
|
284
|
+
part.push(acc);
|
285
|
+
acc = '';
|
286
|
+
parts.push(part);
|
287
|
+
part = new AST(null, ast);
|
288
|
+
continue;
|
289
|
+
}
|
290
|
+
if (c === ')') {
|
291
|
+
if (acc === '' && ast.#parts.length === 0) {
|
292
|
+
ast.#emptyExt = true;
|
293
|
+
}
|
294
|
+
part.push(acc);
|
295
|
+
acc = '';
|
296
|
+
ast.push(...parts, part);
|
297
|
+
return i;
|
298
|
+
}
|
299
|
+
acc += c;
|
300
|
+
}
|
301
|
+
// unfinished extglob
|
302
|
+
// if we got here, it was a malformed extglob! not an extglob, but
|
303
|
+
// maybe something else in there.
|
304
|
+
ast.type = null;
|
305
|
+
ast.#hasMagic = undefined;
|
306
|
+
ast.#parts = [str.substring(pos - 1)];
|
307
|
+
return i;
|
308
|
+
}
|
309
|
+
static fromGlob(pattern, options = {}) {
|
310
|
+
const ast = new AST(null, undefined, options);
|
311
|
+
AST.#parseAST(pattern, ast, 0, options);
|
312
|
+
return ast;
|
313
|
+
}
|
314
|
+
// returns the regular expression if there's magic, or the unescaped
|
315
|
+
// string if not.
|
316
|
+
toMMPattern() {
|
317
|
+
// should only be called on root
|
318
|
+
/* c8 ignore start */
|
319
|
+
if (this !== this.#root)
|
320
|
+
return this.#root.toMMPattern();
|
321
|
+
/* c8 ignore stop */
|
322
|
+
const glob = this.toString();
|
323
|
+
const [re, body, hasMagic, uflag] = this.toRegExpSource();
|
324
|
+
// if we're in nocase mode, and not nocaseMagicOnly, then we do
|
325
|
+
// still need a regular expression if we have to case-insensitively
|
326
|
+
// match capital/lowercase characters.
|
327
|
+
const anyMagic = hasMagic ||
|
328
|
+
this.#hasMagic ||
|
329
|
+
(this.#options.nocase &&
|
330
|
+
!this.#options.nocaseMagicOnly &&
|
331
|
+
glob.toUpperCase() !== glob.toLowerCase());
|
332
|
+
if (!anyMagic) {
|
333
|
+
return body;
|
334
|
+
}
|
335
|
+
const flags = (this.#options.nocase ? 'i' : '') + (uflag ? 'u' : '');
|
336
|
+
return Object.assign(new RegExp(`^${re}$`, flags), {
|
337
|
+
_src: re,
|
338
|
+
_glob: glob,
|
339
|
+
});
|
340
|
+
}
|
341
|
+
// returns the string match, the regexp source, whether there's magic
|
342
|
+
// in the regexp (so a regular expression is required) and whether or
|
343
|
+
// not the uflag is needed for the regular expression (for posix classes)
|
344
|
+
// TODO: instead of injecting the start/end at this point, just return
|
345
|
+
// the BODY of the regexp, along with the start/end portions suitable
|
346
|
+
// for binding the start/end in either a joined full-path makeRe context
|
347
|
+
// (where we bind to (^|/), or a standalone matchPart context (where
|
348
|
+
// we bind to ^, and not /). Otherwise slashes get duped!
|
349
|
+
//
|
350
|
+
// In part-matching mode, the start is:
|
351
|
+
// - if not isStart: nothing
|
352
|
+
// - if traversal possible, but not allowed: ^(?!\.\.?$)
|
353
|
+
// - if dots allowed or not possible: ^
|
354
|
+
// - if dots possible and not allowed: ^(?!\.)
|
355
|
+
// end is:
|
356
|
+
// - if not isEnd(): nothing
|
357
|
+
// - else: $
|
358
|
+
//
|
359
|
+
// In full-path matching mode, we put the slash at the START of the
|
360
|
+
// pattern, so start is:
|
361
|
+
// - if first pattern: same as part-matching mode
|
362
|
+
// - if not isStart(): nothing
|
363
|
+
// - if traversal possible, but not allowed: /(?!\.\.?(?:$|/))
|
364
|
+
// - if dots allowed or not possible: /
|
365
|
+
// - if dots possible and not allowed: /(?!\.)
|
366
|
+
// end is:
|
367
|
+
// - if last pattern, same as part-matching mode
|
368
|
+
// - else nothing
|
369
|
+
//
|
370
|
+
// Always put the (?:$|/) on negated tails, though, because that has to be
|
371
|
+
// there to bind the end of the negated pattern portion, and it's easier to
|
372
|
+
// just stick it in now rather than try to inject it later in the middle of
|
373
|
+
// the pattern.
|
374
|
+
//
|
375
|
+
// We can just always return the same end, and leave it up to the caller
|
376
|
+
// to know whether it's going to be used joined or in parts.
|
377
|
+
// And, if the start is adjusted slightly, can do the same there:
|
378
|
+
// - if not isStart: nothing
|
379
|
+
// - if traversal possible, but not allowed: (?:/|^)(?!\.\.?$)
|
380
|
+
// - if dots allowed or not possible: (?:/|^)
|
381
|
+
// - if dots possible and not allowed: (?:/|^)(?!\.)
|
382
|
+
//
|
383
|
+
// But it's better to have a simpler binding without a conditional, for
|
384
|
+
// performance, so probably better to return both start options.
|
385
|
+
//
|
386
|
+
// Then the caller just ignores the end if it's not the first pattern,
|
387
|
+
// and the start always gets applied.
|
388
|
+
//
|
389
|
+
// But that's always going to be $ if it's the ending pattern, or nothing,
|
390
|
+
// so the caller can just attach $ at the end of the pattern when building.
|
391
|
+
//
|
392
|
+
// So the todo is:
|
393
|
+
// - better detect what kind of start is needed
|
394
|
+
// - return both flavors of starting pattern
|
395
|
+
// - attach $ at the end of the pattern when creating the actual RegExp
|
396
|
+
//
|
397
|
+
// Ah, but wait, no, that all only applies to the root when the first pattern
|
398
|
+
// is not an extglob. If the first pattern IS an extglob, then we need all
|
399
|
+
// that dot prevention biz to live in the extglob portions, because eg
|
400
|
+
// +(*|.x*) can match .xy but not .yx.
|
401
|
+
//
|
402
|
+
// So, return the two flavors if it's #root and the first child is not an
|
403
|
+
// AST, otherwise leave it to the child AST to handle it, and there,
|
404
|
+
// use the (?:^|/) style of start binding.
|
405
|
+
//
|
406
|
+
// Even simplified further:
|
407
|
+
// - Since the start for a join is eg /(?!\.) and the start for a part
|
408
|
+
// is ^(?!\.), we can just prepend (?!\.) to the pattern (either root
|
409
|
+
// or start or whatever) and prepend ^ or / at the Regexp construction.
|
410
|
+
toRegExpSource(allowDot) {
|
411
|
+
const dot = allowDot ?? !!this.#options.dot;
|
412
|
+
if (this.#root === this)
|
413
|
+
this.#fillNegs();
|
414
|
+
if (!this.type) {
|
415
|
+
const noEmpty = this.isStart() && this.isEnd();
|
416
|
+
const src = this.#parts
|
417
|
+
.map(p => {
|
418
|
+
const [re, _, hasMagic, uflag] = typeof p === 'string'
|
419
|
+
? AST.#parseGlob(p, this.#hasMagic, noEmpty)
|
420
|
+
: p.toRegExpSource(allowDot);
|
421
|
+
this.#hasMagic = this.#hasMagic || hasMagic;
|
422
|
+
this.#uflag = this.#uflag || uflag;
|
423
|
+
return re;
|
424
|
+
})
|
425
|
+
.join('');
|
426
|
+
let start = '';
|
427
|
+
if (this.isStart()) {
|
428
|
+
if (typeof this.#parts[0] === 'string') {
|
429
|
+
// this is the string that will match the start of the pattern,
|
430
|
+
// so we need to protect against dots and such.
|
431
|
+
// '.' and '..' cannot match unless the pattern is that exactly,
|
432
|
+
// even if it starts with . or dot:true is set.
|
433
|
+
const dotTravAllowed = this.#parts.length === 1 && justDots.has(this.#parts[0]);
|
434
|
+
if (!dotTravAllowed) {
|
435
|
+
const aps = addPatternStart;
|
436
|
+
// check if we have a possibility of matching . or ..,
|
437
|
+
// and prevent that.
|
438
|
+
const needNoTrav =
|
439
|
+
// dots are allowed, and the pattern starts with [ or .
|
440
|
+
(dot && aps.has(src.charAt(0))) ||
|
441
|
+
// the pattern starts with \., and then [ or .
|
442
|
+
(src.startsWith('\\.') && aps.has(src.charAt(2))) ||
|
443
|
+
// the pattern starts with \.\., and then [ or .
|
444
|
+
(src.startsWith('\\.\\.') && aps.has(src.charAt(4)));
|
445
|
+
// no need to prevent dots if it can't match a dot, or if a
|
446
|
+
// sub-pattern will be preventing it anyway.
|
447
|
+
const needNoDot = !dot && !allowDot && aps.has(src.charAt(0));
|
448
|
+
start = needNoTrav ? startNoTraversal : needNoDot ? startNoDot : '';
|
449
|
+
}
|
450
|
+
}
|
451
|
+
}
|
452
|
+
// append the "end of path portion" pattern to negation tails
|
453
|
+
let end = '';
|
454
|
+
if (this.isEnd() &&
|
455
|
+
this.#root.#filledNegs &&
|
456
|
+
this.#parent?.type === '!') {
|
457
|
+
end = '(?:$|\\/)';
|
458
|
+
}
|
459
|
+
const final = start + src + end;
|
460
|
+
return [
|
461
|
+
final,
|
462
|
+
(0, unescape_js_1.unescape)(src),
|
463
|
+
(this.#hasMagic = !!this.#hasMagic),
|
464
|
+
this.#uflag,
|
465
|
+
];
|
466
|
+
}
|
467
|
+
// We need to calculate the body *twice* if it's a repeat pattern
|
468
|
+
// at the start, once in nodot mode, then again in dot mode, so a
|
469
|
+
// pattern like *(?) can match 'x.y'
|
470
|
+
const repeated = this.type === '*' || this.type === '+';
|
471
|
+
// some kind of extglob
|
472
|
+
const start = this.type === '!' ? '(?:(?!(?:' : '(?:';
|
473
|
+
let body = this.#partsToRegExp(dot);
|
474
|
+
if (this.isStart() && this.isEnd() && !body && this.type !== '!') {
|
475
|
+
// invalid extglob, has to at least be *something* present, if it's
|
476
|
+
// the entire path portion.
|
477
|
+
const s = this.toString();
|
478
|
+
this.#parts = [s];
|
479
|
+
this.type = null;
|
480
|
+
this.#hasMagic = undefined;
|
481
|
+
return [s, (0, unescape_js_1.unescape)(this.toString()), false, false];
|
482
|
+
}
|
483
|
+
// XXX abstract out this map method
|
484
|
+
let bodyDotAllowed = !repeated || allowDot || dot || !startNoDot
|
485
|
+
? ''
|
486
|
+
: this.#partsToRegExp(true);
|
487
|
+
if (bodyDotAllowed === body) {
|
488
|
+
bodyDotAllowed = '';
|
489
|
+
}
|
490
|
+
if (bodyDotAllowed) {
|
491
|
+
body = `(?:${body})(?:${bodyDotAllowed})*?`;
|
492
|
+
}
|
493
|
+
// an empty !() is exactly equivalent to a starNoEmpty
|
494
|
+
let final = '';
|
495
|
+
if (this.type === '!' && this.#emptyExt) {
|
496
|
+
final = (this.isStart() && !dot ? startNoDot : '') + starNoEmpty;
|
497
|
+
}
|
498
|
+
else {
|
499
|
+
const close = this.type === '!'
|
500
|
+
? // !() must match something,but !(x) can match ''
|
501
|
+
'))' +
|
502
|
+
(this.isStart() && !dot && !allowDot ? startNoDot : '') +
|
503
|
+
star +
|
504
|
+
')'
|
505
|
+
: this.type === '@'
|
506
|
+
? ')'
|
507
|
+
: this.type === '?'
|
508
|
+
? ')?'
|
509
|
+
: this.type === '+' && bodyDotAllowed
|
510
|
+
? ')'
|
511
|
+
: this.type === '*' && bodyDotAllowed
|
512
|
+
? `)?`
|
513
|
+
: `)${this.type}`;
|
514
|
+
final = start + body + close;
|
515
|
+
}
|
516
|
+
return [
|
517
|
+
final,
|
518
|
+
(0, unescape_js_1.unescape)(body),
|
519
|
+
(this.#hasMagic = !!this.#hasMagic),
|
520
|
+
this.#uflag,
|
521
|
+
];
|
522
|
+
}
|
523
|
+
#partsToRegExp(dot) {
|
524
|
+
return this.#parts
|
525
|
+
.map(p => {
|
526
|
+
// extglob ASTs should only contain parent ASTs
|
527
|
+
/* c8 ignore start */
|
528
|
+
if (typeof p === 'string') {
|
529
|
+
throw new Error('string type in extglob ast??');
|
530
|
+
}
|
531
|
+
/* c8 ignore stop */
|
532
|
+
// can ignore hasMagic, because extglobs are already always magic
|
533
|
+
const [re, _, _hasMagic, uflag] = p.toRegExpSource(dot);
|
534
|
+
this.#uflag = this.#uflag || uflag;
|
535
|
+
return re;
|
536
|
+
})
|
537
|
+
.filter(p => !(this.isStart() && this.isEnd()) || !!p)
|
538
|
+
.join('|');
|
539
|
+
}
|
540
|
+
static #parseGlob(glob, hasMagic, noEmpty = false) {
|
541
|
+
let escaping = false;
|
542
|
+
let re = '';
|
543
|
+
let uflag = false;
|
544
|
+
for (let i = 0; i < glob.length; i++) {
|
545
|
+
const c = glob.charAt(i);
|
546
|
+
if (escaping) {
|
547
|
+
escaping = false;
|
548
|
+
re += (reSpecials.has(c) ? '\\' : '') + c;
|
549
|
+
continue;
|
550
|
+
}
|
551
|
+
if (c === '\\') {
|
552
|
+
if (i === glob.length - 1) {
|
553
|
+
re += '\\\\';
|
554
|
+
}
|
555
|
+
else {
|
556
|
+
escaping = true;
|
557
|
+
}
|
558
|
+
continue;
|
559
|
+
}
|
560
|
+
if (c === '[') {
|
561
|
+
const [src, needUflag, consumed, magic] = (0, brace_expressions_js_1.parseClass)(glob, i);
|
562
|
+
if (consumed) {
|
563
|
+
re += src;
|
564
|
+
uflag = uflag || needUflag;
|
565
|
+
i += consumed - 1;
|
566
|
+
hasMagic = hasMagic || magic;
|
567
|
+
continue;
|
568
|
+
}
|
569
|
+
}
|
570
|
+
if (c === '*') {
|
571
|
+
if (noEmpty && glob === '*')
|
572
|
+
re += starNoEmpty;
|
573
|
+
else
|
574
|
+
re += star;
|
575
|
+
hasMagic = true;
|
576
|
+
continue;
|
577
|
+
}
|
578
|
+
if (c === '?') {
|
579
|
+
re += qmark;
|
580
|
+
hasMagic = true;
|
581
|
+
continue;
|
582
|
+
}
|
583
|
+
re += regExpEscape(c);
|
584
|
+
}
|
585
|
+
return [re, (0, unescape_js_1.unescape)(glob), !!hasMagic, uflag];
|
586
|
+
}
|
587
|
+
}
|
588
|
+
exports.AST = AST;
|
589
|
+
//# sourceMappingURL=ast.js.map
|