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,649 @@
|
|
1
|
+
'use strict'
|
2
|
+
const proc = typeof process === 'object' && process ? process : {
|
3
|
+
stdout: null,
|
4
|
+
stderr: null,
|
5
|
+
}
|
6
|
+
const EE = require('events')
|
7
|
+
const Stream = require('stream')
|
8
|
+
const SD = require('string_decoder').StringDecoder
|
9
|
+
|
10
|
+
const EOF = Symbol('EOF')
|
11
|
+
const MAYBE_EMIT_END = Symbol('maybeEmitEnd')
|
12
|
+
const EMITTED_END = Symbol('emittedEnd')
|
13
|
+
const EMITTING_END = Symbol('emittingEnd')
|
14
|
+
const EMITTED_ERROR = Symbol('emittedError')
|
15
|
+
const CLOSED = Symbol('closed')
|
16
|
+
const READ = Symbol('read')
|
17
|
+
const FLUSH = Symbol('flush')
|
18
|
+
const FLUSHCHUNK = Symbol('flushChunk')
|
19
|
+
const ENCODING = Symbol('encoding')
|
20
|
+
const DECODER = Symbol('decoder')
|
21
|
+
const FLOWING = Symbol('flowing')
|
22
|
+
const PAUSED = Symbol('paused')
|
23
|
+
const RESUME = Symbol('resume')
|
24
|
+
const BUFFERLENGTH = Symbol('bufferLength')
|
25
|
+
const BUFFERPUSH = Symbol('bufferPush')
|
26
|
+
const BUFFERSHIFT = Symbol('bufferShift')
|
27
|
+
const OBJECTMODE = Symbol('objectMode')
|
28
|
+
const DESTROYED = Symbol('destroyed')
|
29
|
+
const EMITDATA = Symbol('emitData')
|
30
|
+
const EMITEND = Symbol('emitEnd')
|
31
|
+
const EMITEND2 = Symbol('emitEnd2')
|
32
|
+
const ASYNC = Symbol('async')
|
33
|
+
|
34
|
+
const defer = fn => Promise.resolve().then(fn)
|
35
|
+
|
36
|
+
// TODO remove when Node v8 support drops
|
37
|
+
const doIter = global._MP_NO_ITERATOR_SYMBOLS_ !== '1'
|
38
|
+
const ASYNCITERATOR = doIter && Symbol.asyncIterator
|
39
|
+
|| Symbol('asyncIterator not implemented')
|
40
|
+
const ITERATOR = doIter && Symbol.iterator
|
41
|
+
|| Symbol('iterator not implemented')
|
42
|
+
|
43
|
+
// events that mean 'the stream is over'
|
44
|
+
// these are treated specially, and re-emitted
|
45
|
+
// if they are listened for after emitting.
|
46
|
+
const isEndish = ev =>
|
47
|
+
ev === 'end' ||
|
48
|
+
ev === 'finish' ||
|
49
|
+
ev === 'prefinish'
|
50
|
+
|
51
|
+
const isArrayBuffer = b => b instanceof ArrayBuffer ||
|
52
|
+
typeof b === 'object' &&
|
53
|
+
b.constructor &&
|
54
|
+
b.constructor.name === 'ArrayBuffer' &&
|
55
|
+
b.byteLength >= 0
|
56
|
+
|
57
|
+
const isArrayBufferView = b => !Buffer.isBuffer(b) && ArrayBuffer.isView(b)
|
58
|
+
|
59
|
+
class Pipe {
|
60
|
+
constructor (src, dest, opts) {
|
61
|
+
this.src = src
|
62
|
+
this.dest = dest
|
63
|
+
this.opts = opts
|
64
|
+
this.ondrain = () => src[RESUME]()
|
65
|
+
dest.on('drain', this.ondrain)
|
66
|
+
}
|
67
|
+
unpipe () {
|
68
|
+
this.dest.removeListener('drain', this.ondrain)
|
69
|
+
}
|
70
|
+
// istanbul ignore next - only here for the prototype
|
71
|
+
proxyErrors () {}
|
72
|
+
end () {
|
73
|
+
this.unpipe()
|
74
|
+
if (this.opts.end)
|
75
|
+
this.dest.end()
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
class PipeProxyErrors extends Pipe {
|
80
|
+
unpipe () {
|
81
|
+
this.src.removeListener('error', this.proxyErrors)
|
82
|
+
super.unpipe()
|
83
|
+
}
|
84
|
+
constructor (src, dest, opts) {
|
85
|
+
super(src, dest, opts)
|
86
|
+
this.proxyErrors = er => dest.emit('error', er)
|
87
|
+
src.on('error', this.proxyErrors)
|
88
|
+
}
|
89
|
+
}
|
90
|
+
|
91
|
+
module.exports = class Minipass extends Stream {
|
92
|
+
constructor (options) {
|
93
|
+
super()
|
94
|
+
this[FLOWING] = false
|
95
|
+
// whether we're explicitly paused
|
96
|
+
this[PAUSED] = false
|
97
|
+
this.pipes = []
|
98
|
+
this.buffer = []
|
99
|
+
this[OBJECTMODE] = options && options.objectMode || false
|
100
|
+
if (this[OBJECTMODE])
|
101
|
+
this[ENCODING] = null
|
102
|
+
else
|
103
|
+
this[ENCODING] = options && options.encoding || null
|
104
|
+
if (this[ENCODING] === 'buffer')
|
105
|
+
this[ENCODING] = null
|
106
|
+
this[ASYNC] = options && !!options.async || false
|
107
|
+
this[DECODER] = this[ENCODING] ? new SD(this[ENCODING]) : null
|
108
|
+
this[EOF] = false
|
109
|
+
this[EMITTED_END] = false
|
110
|
+
this[EMITTING_END] = false
|
111
|
+
this[CLOSED] = false
|
112
|
+
this[EMITTED_ERROR] = null
|
113
|
+
this.writable = true
|
114
|
+
this.readable = true
|
115
|
+
this[BUFFERLENGTH] = 0
|
116
|
+
this[DESTROYED] = false
|
117
|
+
}
|
118
|
+
|
119
|
+
get bufferLength () { return this[BUFFERLENGTH] }
|
120
|
+
|
121
|
+
get encoding () { return this[ENCODING] }
|
122
|
+
set encoding (enc) {
|
123
|
+
if (this[OBJECTMODE])
|
124
|
+
throw new Error('cannot set encoding in objectMode')
|
125
|
+
|
126
|
+
if (this[ENCODING] && enc !== this[ENCODING] &&
|
127
|
+
(this[DECODER] && this[DECODER].lastNeed || this[BUFFERLENGTH]))
|
128
|
+
throw new Error('cannot change encoding')
|
129
|
+
|
130
|
+
if (this[ENCODING] !== enc) {
|
131
|
+
this[DECODER] = enc ? new SD(enc) : null
|
132
|
+
if (this.buffer.length)
|
133
|
+
this.buffer = this.buffer.map(chunk => this[DECODER].write(chunk))
|
134
|
+
}
|
135
|
+
|
136
|
+
this[ENCODING] = enc
|
137
|
+
}
|
138
|
+
|
139
|
+
setEncoding (enc) {
|
140
|
+
this.encoding = enc
|
141
|
+
}
|
142
|
+
|
143
|
+
get objectMode () { return this[OBJECTMODE] }
|
144
|
+
set objectMode (om) { this[OBJECTMODE] = this[OBJECTMODE] || !!om }
|
145
|
+
|
146
|
+
get ['async'] () { return this[ASYNC] }
|
147
|
+
set ['async'] (a) { this[ASYNC] = this[ASYNC] || !!a }
|
148
|
+
|
149
|
+
write (chunk, encoding, cb) {
|
150
|
+
if (this[EOF])
|
151
|
+
throw new Error('write after end')
|
152
|
+
|
153
|
+
if (this[DESTROYED]) {
|
154
|
+
this.emit('error', Object.assign(
|
155
|
+
new Error('Cannot call write after a stream was destroyed'),
|
156
|
+
{ code: 'ERR_STREAM_DESTROYED' }
|
157
|
+
))
|
158
|
+
return true
|
159
|
+
}
|
160
|
+
|
161
|
+
if (typeof encoding === 'function')
|
162
|
+
cb = encoding, encoding = 'utf8'
|
163
|
+
|
164
|
+
if (!encoding)
|
165
|
+
encoding = 'utf8'
|
166
|
+
|
167
|
+
const fn = this[ASYNC] ? defer : f => f()
|
168
|
+
|
169
|
+
// convert array buffers and typed array views into buffers
|
170
|
+
// at some point in the future, we may want to do the opposite!
|
171
|
+
// leave strings and buffers as-is
|
172
|
+
// anything else switches us into object mode
|
173
|
+
if (!this[OBJECTMODE] && !Buffer.isBuffer(chunk)) {
|
174
|
+
if (isArrayBufferView(chunk))
|
175
|
+
chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength)
|
176
|
+
else if (isArrayBuffer(chunk))
|
177
|
+
chunk = Buffer.from(chunk)
|
178
|
+
else if (typeof chunk !== 'string')
|
179
|
+
// use the setter so we throw if we have encoding set
|
180
|
+
this.objectMode = true
|
181
|
+
}
|
182
|
+
|
183
|
+
// handle object mode up front, since it's simpler
|
184
|
+
// this yields better performance, fewer checks later.
|
185
|
+
if (this[OBJECTMODE]) {
|
186
|
+
/* istanbul ignore if - maybe impossible? */
|
187
|
+
if (this.flowing && this[BUFFERLENGTH] !== 0)
|
188
|
+
this[FLUSH](true)
|
189
|
+
|
190
|
+
if (this.flowing)
|
191
|
+
this.emit('data', chunk)
|
192
|
+
else
|
193
|
+
this[BUFFERPUSH](chunk)
|
194
|
+
|
195
|
+
if (this[BUFFERLENGTH] !== 0)
|
196
|
+
this.emit('readable')
|
197
|
+
|
198
|
+
if (cb)
|
199
|
+
fn(cb)
|
200
|
+
|
201
|
+
return this.flowing
|
202
|
+
}
|
203
|
+
|
204
|
+
// at this point the chunk is a buffer or string
|
205
|
+
// don't buffer it up or send it to the decoder
|
206
|
+
if (!chunk.length) {
|
207
|
+
if (this[BUFFERLENGTH] !== 0)
|
208
|
+
this.emit('readable')
|
209
|
+
if (cb)
|
210
|
+
fn(cb)
|
211
|
+
return this.flowing
|
212
|
+
}
|
213
|
+
|
214
|
+
// fast-path writing strings of same encoding to a stream with
|
215
|
+
// an empty buffer, skipping the buffer/decoder dance
|
216
|
+
if (typeof chunk === 'string' &&
|
217
|
+
// unless it is a string already ready for us to use
|
218
|
+
!(encoding === this[ENCODING] && !this[DECODER].lastNeed)) {
|
219
|
+
chunk = Buffer.from(chunk, encoding)
|
220
|
+
}
|
221
|
+
|
222
|
+
if (Buffer.isBuffer(chunk) && this[ENCODING])
|
223
|
+
chunk = this[DECODER].write(chunk)
|
224
|
+
|
225
|
+
// Note: flushing CAN potentially switch us into not-flowing mode
|
226
|
+
if (this.flowing && this[BUFFERLENGTH] !== 0)
|
227
|
+
this[FLUSH](true)
|
228
|
+
|
229
|
+
if (this.flowing)
|
230
|
+
this.emit('data', chunk)
|
231
|
+
else
|
232
|
+
this[BUFFERPUSH](chunk)
|
233
|
+
|
234
|
+
if (this[BUFFERLENGTH] !== 0)
|
235
|
+
this.emit('readable')
|
236
|
+
|
237
|
+
if (cb)
|
238
|
+
fn(cb)
|
239
|
+
|
240
|
+
return this.flowing
|
241
|
+
}
|
242
|
+
|
243
|
+
read (n) {
|
244
|
+
if (this[DESTROYED])
|
245
|
+
return null
|
246
|
+
|
247
|
+
if (this[BUFFERLENGTH] === 0 || n === 0 || n > this[BUFFERLENGTH]) {
|
248
|
+
this[MAYBE_EMIT_END]()
|
249
|
+
return null
|
250
|
+
}
|
251
|
+
|
252
|
+
if (this[OBJECTMODE])
|
253
|
+
n = null
|
254
|
+
|
255
|
+
if (this.buffer.length > 1 && !this[OBJECTMODE]) {
|
256
|
+
if (this.encoding)
|
257
|
+
this.buffer = [this.buffer.join('')]
|
258
|
+
else
|
259
|
+
this.buffer = [Buffer.concat(this.buffer, this[BUFFERLENGTH])]
|
260
|
+
}
|
261
|
+
|
262
|
+
const ret = this[READ](n || null, this.buffer[0])
|
263
|
+
this[MAYBE_EMIT_END]()
|
264
|
+
return ret
|
265
|
+
}
|
266
|
+
|
267
|
+
[READ] (n, chunk) {
|
268
|
+
if (n === chunk.length || n === null)
|
269
|
+
this[BUFFERSHIFT]()
|
270
|
+
else {
|
271
|
+
this.buffer[0] = chunk.slice(n)
|
272
|
+
chunk = chunk.slice(0, n)
|
273
|
+
this[BUFFERLENGTH] -= n
|
274
|
+
}
|
275
|
+
|
276
|
+
this.emit('data', chunk)
|
277
|
+
|
278
|
+
if (!this.buffer.length && !this[EOF])
|
279
|
+
this.emit('drain')
|
280
|
+
|
281
|
+
return chunk
|
282
|
+
}
|
283
|
+
|
284
|
+
end (chunk, encoding, cb) {
|
285
|
+
if (typeof chunk === 'function')
|
286
|
+
cb = chunk, chunk = null
|
287
|
+
if (typeof encoding === 'function')
|
288
|
+
cb = encoding, encoding = 'utf8'
|
289
|
+
if (chunk)
|
290
|
+
this.write(chunk, encoding)
|
291
|
+
if (cb)
|
292
|
+
this.once('end', cb)
|
293
|
+
this[EOF] = true
|
294
|
+
this.writable = false
|
295
|
+
|
296
|
+
// if we haven't written anything, then go ahead and emit,
|
297
|
+
// even if we're not reading.
|
298
|
+
// we'll re-emit if a new 'end' listener is added anyway.
|
299
|
+
// This makes MP more suitable to write-only use cases.
|
300
|
+
if (this.flowing || !this[PAUSED])
|
301
|
+
this[MAYBE_EMIT_END]()
|
302
|
+
return this
|
303
|
+
}
|
304
|
+
|
305
|
+
// don't let the internal resume be overwritten
|
306
|
+
[RESUME] () {
|
307
|
+
if (this[DESTROYED])
|
308
|
+
return
|
309
|
+
|
310
|
+
this[PAUSED] = false
|
311
|
+
this[FLOWING] = true
|
312
|
+
this.emit('resume')
|
313
|
+
if (this.buffer.length)
|
314
|
+
this[FLUSH]()
|
315
|
+
else if (this[EOF])
|
316
|
+
this[MAYBE_EMIT_END]()
|
317
|
+
else
|
318
|
+
this.emit('drain')
|
319
|
+
}
|
320
|
+
|
321
|
+
resume () {
|
322
|
+
return this[RESUME]()
|
323
|
+
}
|
324
|
+
|
325
|
+
pause () {
|
326
|
+
this[FLOWING] = false
|
327
|
+
this[PAUSED] = true
|
328
|
+
}
|
329
|
+
|
330
|
+
get destroyed () {
|
331
|
+
return this[DESTROYED]
|
332
|
+
}
|
333
|
+
|
334
|
+
get flowing () {
|
335
|
+
return this[FLOWING]
|
336
|
+
}
|
337
|
+
|
338
|
+
get paused () {
|
339
|
+
return this[PAUSED]
|
340
|
+
}
|
341
|
+
|
342
|
+
[BUFFERPUSH] (chunk) {
|
343
|
+
if (this[OBJECTMODE])
|
344
|
+
this[BUFFERLENGTH] += 1
|
345
|
+
else
|
346
|
+
this[BUFFERLENGTH] += chunk.length
|
347
|
+
this.buffer.push(chunk)
|
348
|
+
}
|
349
|
+
|
350
|
+
[BUFFERSHIFT] () {
|
351
|
+
if (this.buffer.length) {
|
352
|
+
if (this[OBJECTMODE])
|
353
|
+
this[BUFFERLENGTH] -= 1
|
354
|
+
else
|
355
|
+
this[BUFFERLENGTH] -= this.buffer[0].length
|
356
|
+
}
|
357
|
+
return this.buffer.shift()
|
358
|
+
}
|
359
|
+
|
360
|
+
[FLUSH] (noDrain) {
|
361
|
+
do {} while (this[FLUSHCHUNK](this[BUFFERSHIFT]()))
|
362
|
+
|
363
|
+
if (!noDrain && !this.buffer.length && !this[EOF])
|
364
|
+
this.emit('drain')
|
365
|
+
}
|
366
|
+
|
367
|
+
[FLUSHCHUNK] (chunk) {
|
368
|
+
return chunk ? (this.emit('data', chunk), this.flowing) : false
|
369
|
+
}
|
370
|
+
|
371
|
+
pipe (dest, opts) {
|
372
|
+
if (this[DESTROYED])
|
373
|
+
return
|
374
|
+
|
375
|
+
const ended = this[EMITTED_END]
|
376
|
+
opts = opts || {}
|
377
|
+
if (dest === proc.stdout || dest === proc.stderr)
|
378
|
+
opts.end = false
|
379
|
+
else
|
380
|
+
opts.end = opts.end !== false
|
381
|
+
opts.proxyErrors = !!opts.proxyErrors
|
382
|
+
|
383
|
+
// piping an ended stream ends immediately
|
384
|
+
if (ended) {
|
385
|
+
if (opts.end)
|
386
|
+
dest.end()
|
387
|
+
} else {
|
388
|
+
this.pipes.push(!opts.proxyErrors ? new Pipe(this, dest, opts)
|
389
|
+
: new PipeProxyErrors(this, dest, opts))
|
390
|
+
if (this[ASYNC])
|
391
|
+
defer(() => this[RESUME]())
|
392
|
+
else
|
393
|
+
this[RESUME]()
|
394
|
+
}
|
395
|
+
|
396
|
+
return dest
|
397
|
+
}
|
398
|
+
|
399
|
+
unpipe (dest) {
|
400
|
+
const p = this.pipes.find(p => p.dest === dest)
|
401
|
+
if (p) {
|
402
|
+
this.pipes.splice(this.pipes.indexOf(p), 1)
|
403
|
+
p.unpipe()
|
404
|
+
}
|
405
|
+
}
|
406
|
+
|
407
|
+
addListener (ev, fn) {
|
408
|
+
return this.on(ev, fn)
|
409
|
+
}
|
410
|
+
|
411
|
+
on (ev, fn) {
|
412
|
+
const ret = super.on(ev, fn)
|
413
|
+
if (ev === 'data' && !this.pipes.length && !this.flowing)
|
414
|
+
this[RESUME]()
|
415
|
+
else if (ev === 'readable' && this[BUFFERLENGTH] !== 0)
|
416
|
+
super.emit('readable')
|
417
|
+
else if (isEndish(ev) && this[EMITTED_END]) {
|
418
|
+
super.emit(ev)
|
419
|
+
this.removeAllListeners(ev)
|
420
|
+
} else if (ev === 'error' && this[EMITTED_ERROR]) {
|
421
|
+
if (this[ASYNC])
|
422
|
+
defer(() => fn.call(this, this[EMITTED_ERROR]))
|
423
|
+
else
|
424
|
+
fn.call(this, this[EMITTED_ERROR])
|
425
|
+
}
|
426
|
+
return ret
|
427
|
+
}
|
428
|
+
|
429
|
+
get emittedEnd () {
|
430
|
+
return this[EMITTED_END]
|
431
|
+
}
|
432
|
+
|
433
|
+
[MAYBE_EMIT_END] () {
|
434
|
+
if (!this[EMITTING_END] &&
|
435
|
+
!this[EMITTED_END] &&
|
436
|
+
!this[DESTROYED] &&
|
437
|
+
this.buffer.length === 0 &&
|
438
|
+
this[EOF]) {
|
439
|
+
this[EMITTING_END] = true
|
440
|
+
this.emit('end')
|
441
|
+
this.emit('prefinish')
|
442
|
+
this.emit('finish')
|
443
|
+
if (this[CLOSED])
|
444
|
+
this.emit('close')
|
445
|
+
this[EMITTING_END] = false
|
446
|
+
}
|
447
|
+
}
|
448
|
+
|
449
|
+
emit (ev, data, ...extra) {
|
450
|
+
// error and close are only events allowed after calling destroy()
|
451
|
+
if (ev !== 'error' && ev !== 'close' && ev !== DESTROYED && this[DESTROYED])
|
452
|
+
return
|
453
|
+
else if (ev === 'data') {
|
454
|
+
return !data ? false
|
455
|
+
: this[ASYNC] ? defer(() => this[EMITDATA](data))
|
456
|
+
: this[EMITDATA](data)
|
457
|
+
} else if (ev === 'end') {
|
458
|
+
return this[EMITEND]()
|
459
|
+
} else if (ev === 'close') {
|
460
|
+
this[CLOSED] = true
|
461
|
+
// don't emit close before 'end' and 'finish'
|
462
|
+
if (!this[EMITTED_END] && !this[DESTROYED])
|
463
|
+
return
|
464
|
+
const ret = super.emit('close')
|
465
|
+
this.removeAllListeners('close')
|
466
|
+
return ret
|
467
|
+
} else if (ev === 'error') {
|
468
|
+
this[EMITTED_ERROR] = data
|
469
|
+
const ret = super.emit('error', data)
|
470
|
+
this[MAYBE_EMIT_END]()
|
471
|
+
return ret
|
472
|
+
} else if (ev === 'resume') {
|
473
|
+
const ret = super.emit('resume')
|
474
|
+
this[MAYBE_EMIT_END]()
|
475
|
+
return ret
|
476
|
+
} else if (ev === 'finish' || ev === 'prefinish') {
|
477
|
+
const ret = super.emit(ev)
|
478
|
+
this.removeAllListeners(ev)
|
479
|
+
return ret
|
480
|
+
}
|
481
|
+
|
482
|
+
// Some other unknown event
|
483
|
+
const ret = super.emit(ev, data, ...extra)
|
484
|
+
this[MAYBE_EMIT_END]()
|
485
|
+
return ret
|
486
|
+
}
|
487
|
+
|
488
|
+
[EMITDATA] (data) {
|
489
|
+
for (const p of this.pipes) {
|
490
|
+
if (p.dest.write(data) === false)
|
491
|
+
this.pause()
|
492
|
+
}
|
493
|
+
const ret = super.emit('data', data)
|
494
|
+
this[MAYBE_EMIT_END]()
|
495
|
+
return ret
|
496
|
+
}
|
497
|
+
|
498
|
+
[EMITEND] () {
|
499
|
+
if (this[EMITTED_END])
|
500
|
+
return
|
501
|
+
|
502
|
+
this[EMITTED_END] = true
|
503
|
+
this.readable = false
|
504
|
+
if (this[ASYNC])
|
505
|
+
defer(() => this[EMITEND2]())
|
506
|
+
else
|
507
|
+
this[EMITEND2]()
|
508
|
+
}
|
509
|
+
|
510
|
+
[EMITEND2] () {
|
511
|
+
if (this[DECODER]) {
|
512
|
+
const data = this[DECODER].end()
|
513
|
+
if (data) {
|
514
|
+
for (const p of this.pipes) {
|
515
|
+
p.dest.write(data)
|
516
|
+
}
|
517
|
+
super.emit('data', data)
|
518
|
+
}
|
519
|
+
}
|
520
|
+
|
521
|
+
for (const p of this.pipes) {
|
522
|
+
p.end()
|
523
|
+
}
|
524
|
+
const ret = super.emit('end')
|
525
|
+
this.removeAllListeners('end')
|
526
|
+
return ret
|
527
|
+
}
|
528
|
+
|
529
|
+
// const all = await stream.collect()
|
530
|
+
collect () {
|
531
|
+
const buf = []
|
532
|
+
if (!this[OBJECTMODE])
|
533
|
+
buf.dataLength = 0
|
534
|
+
// set the promise first, in case an error is raised
|
535
|
+
// by triggering the flow here.
|
536
|
+
const p = this.promise()
|
537
|
+
this.on('data', c => {
|
538
|
+
buf.push(c)
|
539
|
+
if (!this[OBJECTMODE])
|
540
|
+
buf.dataLength += c.length
|
541
|
+
})
|
542
|
+
return p.then(() => buf)
|
543
|
+
}
|
544
|
+
|
545
|
+
// const data = await stream.concat()
|
546
|
+
concat () {
|
547
|
+
return this[OBJECTMODE]
|
548
|
+
? Promise.reject(new Error('cannot concat in objectMode'))
|
549
|
+
: this.collect().then(buf =>
|
550
|
+
this[OBJECTMODE]
|
551
|
+
? Promise.reject(new Error('cannot concat in objectMode'))
|
552
|
+
: this[ENCODING] ? buf.join('') : Buffer.concat(buf, buf.dataLength))
|
553
|
+
}
|
554
|
+
|
555
|
+
// stream.promise().then(() => done, er => emitted error)
|
556
|
+
promise () {
|
557
|
+
return new Promise((resolve, reject) => {
|
558
|
+
this.on(DESTROYED, () => reject(new Error('stream destroyed')))
|
559
|
+
this.on('error', er => reject(er))
|
560
|
+
this.on('end', () => resolve())
|
561
|
+
})
|
562
|
+
}
|
563
|
+
|
564
|
+
// for await (let chunk of stream)
|
565
|
+
[ASYNCITERATOR] () {
|
566
|
+
const next = () => {
|
567
|
+
const res = this.read()
|
568
|
+
if (res !== null)
|
569
|
+
return Promise.resolve({ done: false, value: res })
|
570
|
+
|
571
|
+
if (this[EOF])
|
572
|
+
return Promise.resolve({ done: true })
|
573
|
+
|
574
|
+
let resolve = null
|
575
|
+
let reject = null
|
576
|
+
const onerr = er => {
|
577
|
+
this.removeListener('data', ondata)
|
578
|
+
this.removeListener('end', onend)
|
579
|
+
reject(er)
|
580
|
+
}
|
581
|
+
const ondata = value => {
|
582
|
+
this.removeListener('error', onerr)
|
583
|
+
this.removeListener('end', onend)
|
584
|
+
this.pause()
|
585
|
+
resolve({ value: value, done: !!this[EOF] })
|
586
|
+
}
|
587
|
+
const onend = () => {
|
588
|
+
this.removeListener('error', onerr)
|
589
|
+
this.removeListener('data', ondata)
|
590
|
+
resolve({ done: true })
|
591
|
+
}
|
592
|
+
const ondestroy = () => onerr(new Error('stream destroyed'))
|
593
|
+
return new Promise((res, rej) => {
|
594
|
+
reject = rej
|
595
|
+
resolve = res
|
596
|
+
this.once(DESTROYED, ondestroy)
|
597
|
+
this.once('error', onerr)
|
598
|
+
this.once('end', onend)
|
599
|
+
this.once('data', ondata)
|
600
|
+
})
|
601
|
+
}
|
602
|
+
|
603
|
+
return { next }
|
604
|
+
}
|
605
|
+
|
606
|
+
// for (let chunk of stream)
|
607
|
+
[ITERATOR] () {
|
608
|
+
const next = () => {
|
609
|
+
const value = this.read()
|
610
|
+
const done = value === null
|
611
|
+
return { value, done }
|
612
|
+
}
|
613
|
+
return { next }
|
614
|
+
}
|
615
|
+
|
616
|
+
destroy (er) {
|
617
|
+
if (this[DESTROYED]) {
|
618
|
+
if (er)
|
619
|
+
this.emit('error', er)
|
620
|
+
else
|
621
|
+
this.emit(DESTROYED)
|
622
|
+
return this
|
623
|
+
}
|
624
|
+
|
625
|
+
this[DESTROYED] = true
|
626
|
+
|
627
|
+
// throw away all buffered data, it's never coming out
|
628
|
+
this.buffer.length = 0
|
629
|
+
this[BUFFERLENGTH] = 0
|
630
|
+
|
631
|
+
if (typeof this.close === 'function' && !this[CLOSED])
|
632
|
+
this.close()
|
633
|
+
|
634
|
+
if (er)
|
635
|
+
this.emit('error', er)
|
636
|
+
else // if no error to emit, still reject pending promises
|
637
|
+
this.emit(DESTROYED)
|
638
|
+
|
639
|
+
return this
|
640
|
+
}
|
641
|
+
|
642
|
+
static isStream (s) {
|
643
|
+
return !!s && (s instanceof Minipass || s instanceof Stream ||
|
644
|
+
s instanceof EE && (
|
645
|
+
typeof s.pipe === 'function' || // readable
|
646
|
+
(typeof s.write === 'function' && typeof s.end === 'function') // writable
|
647
|
+
))
|
648
|
+
}
|
649
|
+
}
|
@@ -0,0 +1,56 @@
|
|
1
|
+
{
|
2
|
+
"name": "minipass",
|
3
|
+
"version": "3.3.6",
|
4
|
+
"description": "minimal implementation of a PassThrough stream",
|
5
|
+
"main": "index.js",
|
6
|
+
"types": "index.d.ts",
|
7
|
+
"dependencies": {
|
8
|
+
"yallist": "^4.0.0"
|
9
|
+
},
|
10
|
+
"devDependencies": {
|
11
|
+
"@types/node": "^17.0.41",
|
12
|
+
"end-of-stream": "^1.4.0",
|
13
|
+
"prettier": "^2.6.2",
|
14
|
+
"tap": "^16.2.0",
|
15
|
+
"through2": "^2.0.3",
|
16
|
+
"ts-node": "^10.8.1",
|
17
|
+
"typescript": "^4.7.3"
|
18
|
+
},
|
19
|
+
"scripts": {
|
20
|
+
"test": "tap",
|
21
|
+
"preversion": "npm test",
|
22
|
+
"postversion": "npm publish",
|
23
|
+
"postpublish": "git push origin --follow-tags"
|
24
|
+
},
|
25
|
+
"repository": {
|
26
|
+
"type": "git",
|
27
|
+
"url": "git+https://github.com/isaacs/minipass.git"
|
28
|
+
},
|
29
|
+
"keywords": [
|
30
|
+
"passthrough",
|
31
|
+
"stream"
|
32
|
+
],
|
33
|
+
"author": "Isaac Z. Schlueter <i@izs.me> (http://blog.izs.me/)",
|
34
|
+
"license": "ISC",
|
35
|
+
"files": [
|
36
|
+
"index.d.ts",
|
37
|
+
"index.js"
|
38
|
+
],
|
39
|
+
"tap": {
|
40
|
+
"check-coverage": true
|
41
|
+
},
|
42
|
+
"engines": {
|
43
|
+
"node": ">=8"
|
44
|
+
},
|
45
|
+
"prettier": {
|
46
|
+
"semi": false,
|
47
|
+
"printWidth": 80,
|
48
|
+
"tabWidth": 2,
|
49
|
+
"useTabs": false,
|
50
|
+
"singleQuote": true,
|
51
|
+
"jsxSingleQuote": false,
|
52
|
+
"bracketSameLine": true,
|
53
|
+
"arrowParens": "avoid",
|
54
|
+
"endOfLine": "lf"
|
55
|
+
}
|
56
|
+
}
|