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,330 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
const crypto = require('crypto')
|
4
|
+
const {
|
5
|
+
appendFile,
|
6
|
+
mkdir,
|
7
|
+
readFile,
|
8
|
+
readdir,
|
9
|
+
rm,
|
10
|
+
writeFile,
|
11
|
+
} = require('fs/promises')
|
12
|
+
const { Minipass } = require('minipass')
|
13
|
+
const path = require('path')
|
14
|
+
const ssri = require('ssri')
|
15
|
+
const uniqueFilename = require('unique-filename')
|
16
|
+
|
17
|
+
const contentPath = require('./content/path')
|
18
|
+
const hashToSegments = require('./util/hash-to-segments')
|
19
|
+
const indexV = require('../package.json')['cache-version'].index
|
20
|
+
const { moveFile } = require('@npmcli/fs')
|
21
|
+
|
22
|
+
module.exports.NotFoundError = class NotFoundError extends Error {
|
23
|
+
constructor (cache, key) {
|
24
|
+
super(`No cache entry for ${key} found in ${cache}`)
|
25
|
+
this.code = 'ENOENT'
|
26
|
+
this.cache = cache
|
27
|
+
this.key = key
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
module.exports.compact = compact
|
32
|
+
|
33
|
+
async function compact (cache, key, matchFn, opts = {}) {
|
34
|
+
const bucket = bucketPath(cache, key)
|
35
|
+
const entries = await bucketEntries(bucket)
|
36
|
+
const newEntries = []
|
37
|
+
// we loop backwards because the bottom-most result is the newest
|
38
|
+
// since we add new entries with appendFile
|
39
|
+
for (let i = entries.length - 1; i >= 0; --i) {
|
40
|
+
const entry = entries[i]
|
41
|
+
// a null integrity could mean either a delete was appended
|
42
|
+
// or the user has simply stored an index that does not map
|
43
|
+
// to any content. we determine if the user wants to keep the
|
44
|
+
// null integrity based on the validateEntry function passed in options.
|
45
|
+
// if the integrity is null and no validateEntry is provided, we break
|
46
|
+
// as we consider the null integrity to be a deletion of everything
|
47
|
+
// that came before it.
|
48
|
+
if (entry.integrity === null && !opts.validateEntry) {
|
49
|
+
break
|
50
|
+
}
|
51
|
+
|
52
|
+
// if this entry is valid, and it is either the first entry or
|
53
|
+
// the newEntries array doesn't already include an entry that
|
54
|
+
// matches this one based on the provided matchFn, then we add
|
55
|
+
// it to the beginning of our list
|
56
|
+
if ((!opts.validateEntry || opts.validateEntry(entry) === true) &&
|
57
|
+
(newEntries.length === 0 ||
|
58
|
+
!newEntries.find((oldEntry) => matchFn(oldEntry, entry)))) {
|
59
|
+
newEntries.unshift(entry)
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
const newIndex = '\n' + newEntries.map((entry) => {
|
64
|
+
const stringified = JSON.stringify(entry)
|
65
|
+
const hash = hashEntry(stringified)
|
66
|
+
return `${hash}\t${stringified}`
|
67
|
+
}).join('\n')
|
68
|
+
|
69
|
+
const setup = async () => {
|
70
|
+
const target = uniqueFilename(path.join(cache, 'tmp'), opts.tmpPrefix)
|
71
|
+
await mkdir(path.dirname(target), { recursive: true })
|
72
|
+
return {
|
73
|
+
target,
|
74
|
+
moved: false,
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
const teardown = async (tmp) => {
|
79
|
+
if (!tmp.moved) {
|
80
|
+
return rm(tmp.target, { recursive: true, force: true })
|
81
|
+
}
|
82
|
+
}
|
83
|
+
|
84
|
+
const write = async (tmp) => {
|
85
|
+
await writeFile(tmp.target, newIndex, { flag: 'wx' })
|
86
|
+
await mkdir(path.dirname(bucket), { recursive: true })
|
87
|
+
// we use @npmcli/move-file directly here because we
|
88
|
+
// want to overwrite the existing file
|
89
|
+
await moveFile(tmp.target, bucket)
|
90
|
+
tmp.moved = true
|
91
|
+
}
|
92
|
+
|
93
|
+
// write the file atomically
|
94
|
+
const tmp = await setup()
|
95
|
+
try {
|
96
|
+
await write(tmp)
|
97
|
+
} finally {
|
98
|
+
await teardown(tmp)
|
99
|
+
}
|
100
|
+
|
101
|
+
// we reverse the list we generated such that the newest
|
102
|
+
// entries come first in order to make looping through them easier
|
103
|
+
// the true passed to formatEntry tells it to keep null
|
104
|
+
// integrity values, if they made it this far it's because
|
105
|
+
// validateEntry returned true, and as such we should return it
|
106
|
+
return newEntries.reverse().map((entry) => formatEntry(cache, entry, true))
|
107
|
+
}
|
108
|
+
|
109
|
+
module.exports.insert = insert
|
110
|
+
|
111
|
+
async function insert (cache, key, integrity, opts = {}) {
|
112
|
+
const { metadata, size, time } = opts
|
113
|
+
const bucket = bucketPath(cache, key)
|
114
|
+
const entry = {
|
115
|
+
key,
|
116
|
+
integrity: integrity && ssri.stringify(integrity),
|
117
|
+
time: time || Date.now(),
|
118
|
+
size,
|
119
|
+
metadata,
|
120
|
+
}
|
121
|
+
try {
|
122
|
+
await mkdir(path.dirname(bucket), { recursive: true })
|
123
|
+
const stringified = JSON.stringify(entry)
|
124
|
+
// NOTE - Cleverness ahoy!
|
125
|
+
//
|
126
|
+
// This works because it's tremendously unlikely for an entry to corrupt
|
127
|
+
// another while still preserving the string length of the JSON in
|
128
|
+
// question. So, we just slap the length in there and verify it on read.
|
129
|
+
//
|
130
|
+
// Thanks to @isaacs for the whiteboarding session that ended up with
|
131
|
+
// this.
|
132
|
+
await appendFile(bucket, `\n${hashEntry(stringified)}\t${stringified}`)
|
133
|
+
} catch (err) {
|
134
|
+
if (err.code === 'ENOENT') {
|
135
|
+
return undefined
|
136
|
+
}
|
137
|
+
|
138
|
+
throw err
|
139
|
+
}
|
140
|
+
return formatEntry(cache, entry)
|
141
|
+
}
|
142
|
+
|
143
|
+
module.exports.find = find
|
144
|
+
|
145
|
+
async function find (cache, key) {
|
146
|
+
const bucket = bucketPath(cache, key)
|
147
|
+
try {
|
148
|
+
const entries = await bucketEntries(bucket)
|
149
|
+
return entries.reduce((latest, next) => {
|
150
|
+
if (next && next.key === key) {
|
151
|
+
return formatEntry(cache, next)
|
152
|
+
} else {
|
153
|
+
return latest
|
154
|
+
}
|
155
|
+
}, null)
|
156
|
+
} catch (err) {
|
157
|
+
if (err.code === 'ENOENT') {
|
158
|
+
return null
|
159
|
+
} else {
|
160
|
+
throw err
|
161
|
+
}
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
module.exports.delete = del
|
166
|
+
|
167
|
+
function del (cache, key, opts = {}) {
|
168
|
+
if (!opts.removeFully) {
|
169
|
+
return insert(cache, key, null, opts)
|
170
|
+
}
|
171
|
+
|
172
|
+
const bucket = bucketPath(cache, key)
|
173
|
+
return rm(bucket, { recursive: true, force: true })
|
174
|
+
}
|
175
|
+
|
176
|
+
module.exports.lsStream = lsStream
|
177
|
+
|
178
|
+
function lsStream (cache) {
|
179
|
+
const indexDir = bucketDir(cache)
|
180
|
+
const stream = new Minipass({ objectMode: true })
|
181
|
+
|
182
|
+
// Set all this up to run on the stream and then just return the stream
|
183
|
+
Promise.resolve().then(async () => {
|
184
|
+
const buckets = await readdirOrEmpty(indexDir)
|
185
|
+
await Promise.all(buckets.map(async (bucket) => {
|
186
|
+
const bucketPath = path.join(indexDir, bucket)
|
187
|
+
const subbuckets = await readdirOrEmpty(bucketPath)
|
188
|
+
await Promise.all(subbuckets.map(async (subbucket) => {
|
189
|
+
const subbucketPath = path.join(bucketPath, subbucket)
|
190
|
+
|
191
|
+
// "/cachename/<bucket 0xFF>/<bucket 0xFF>./*"
|
192
|
+
const subbucketEntries = await readdirOrEmpty(subbucketPath)
|
193
|
+
await Promise.all(subbucketEntries.map(async (entry) => {
|
194
|
+
const entryPath = path.join(subbucketPath, entry)
|
195
|
+
try {
|
196
|
+
const entries = await bucketEntries(entryPath)
|
197
|
+
// using a Map here prevents duplicate keys from showing up
|
198
|
+
// twice, I guess?
|
199
|
+
const reduced = entries.reduce((acc, entry) => {
|
200
|
+
acc.set(entry.key, entry)
|
201
|
+
return acc
|
202
|
+
}, new Map())
|
203
|
+
// reduced is a map of key => entry
|
204
|
+
for (const entry of reduced.values()) {
|
205
|
+
const formatted = formatEntry(cache, entry)
|
206
|
+
if (formatted) {
|
207
|
+
stream.write(formatted)
|
208
|
+
}
|
209
|
+
}
|
210
|
+
} catch (err) {
|
211
|
+
if (err.code === 'ENOENT') {
|
212
|
+
return undefined
|
213
|
+
}
|
214
|
+
throw err
|
215
|
+
}
|
216
|
+
}))
|
217
|
+
}))
|
218
|
+
}))
|
219
|
+
stream.end()
|
220
|
+
return stream
|
221
|
+
}).catch(err => stream.emit('error', err))
|
222
|
+
|
223
|
+
return stream
|
224
|
+
}
|
225
|
+
|
226
|
+
module.exports.ls = ls
|
227
|
+
|
228
|
+
async function ls (cache) {
|
229
|
+
const entries = await lsStream(cache).collect()
|
230
|
+
return entries.reduce((acc, xs) => {
|
231
|
+
acc[xs.key] = xs
|
232
|
+
return acc
|
233
|
+
}, {})
|
234
|
+
}
|
235
|
+
|
236
|
+
module.exports.bucketEntries = bucketEntries
|
237
|
+
|
238
|
+
async function bucketEntries (bucket, filter) {
|
239
|
+
const data = await readFile(bucket, 'utf8')
|
240
|
+
return _bucketEntries(data, filter)
|
241
|
+
}
|
242
|
+
|
243
|
+
function _bucketEntries (data, filter) {
|
244
|
+
const entries = []
|
245
|
+
data.split('\n').forEach((entry) => {
|
246
|
+
if (!entry) {
|
247
|
+
return
|
248
|
+
}
|
249
|
+
|
250
|
+
const pieces = entry.split('\t')
|
251
|
+
if (!pieces[1] || hashEntry(pieces[1]) !== pieces[0]) {
|
252
|
+
// Hash is no good! Corruption or malice? Doesn't matter!
|
253
|
+
// EJECT EJECT
|
254
|
+
return
|
255
|
+
}
|
256
|
+
let obj
|
257
|
+
try {
|
258
|
+
obj = JSON.parse(pieces[1])
|
259
|
+
} catch (_) {
|
260
|
+
// eslint-ignore-next-line no-empty-block
|
261
|
+
}
|
262
|
+
// coverage disabled here, no need to test with an entry that parses to something falsey
|
263
|
+
// istanbul ignore else
|
264
|
+
if (obj) {
|
265
|
+
entries.push(obj)
|
266
|
+
}
|
267
|
+
})
|
268
|
+
return entries
|
269
|
+
}
|
270
|
+
|
271
|
+
module.exports.bucketDir = bucketDir
|
272
|
+
|
273
|
+
function bucketDir (cache) {
|
274
|
+
return path.join(cache, `index-v${indexV}`)
|
275
|
+
}
|
276
|
+
|
277
|
+
module.exports.bucketPath = bucketPath
|
278
|
+
|
279
|
+
function bucketPath (cache, key) {
|
280
|
+
const hashed = hashKey(key)
|
281
|
+
return path.join.apply(
|
282
|
+
path,
|
283
|
+
[bucketDir(cache)].concat(hashToSegments(hashed))
|
284
|
+
)
|
285
|
+
}
|
286
|
+
|
287
|
+
module.exports.hashKey = hashKey
|
288
|
+
|
289
|
+
function hashKey (key) {
|
290
|
+
return hash(key, 'sha256')
|
291
|
+
}
|
292
|
+
|
293
|
+
module.exports.hashEntry = hashEntry
|
294
|
+
|
295
|
+
function hashEntry (str) {
|
296
|
+
return hash(str, 'sha1')
|
297
|
+
}
|
298
|
+
|
299
|
+
function hash (str, digest) {
|
300
|
+
return crypto
|
301
|
+
.createHash(digest)
|
302
|
+
.update(str)
|
303
|
+
.digest('hex')
|
304
|
+
}
|
305
|
+
|
306
|
+
function formatEntry (cache, entry, keepAll) {
|
307
|
+
// Treat null digests as deletions. They'll shadow any previous entries.
|
308
|
+
if (!entry.integrity && !keepAll) {
|
309
|
+
return null
|
310
|
+
}
|
311
|
+
|
312
|
+
return {
|
313
|
+
key: entry.key,
|
314
|
+
integrity: entry.integrity,
|
315
|
+
path: entry.integrity ? contentPath(cache, entry.integrity) : undefined,
|
316
|
+
size: entry.size,
|
317
|
+
time: entry.time,
|
318
|
+
metadata: entry.metadata,
|
319
|
+
}
|
320
|
+
}
|
321
|
+
|
322
|
+
function readdirOrEmpty (dir) {
|
323
|
+
return readdir(dir).catch((err) => {
|
324
|
+
if (err.code === 'ENOENT' || err.code === 'ENOTDIR') {
|
325
|
+
return []
|
326
|
+
}
|
327
|
+
|
328
|
+
throw err
|
329
|
+
})
|
330
|
+
}
|
package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/get.js
ADDED
@@ -0,0 +1,170 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
const Collect = require('minipass-collect')
|
4
|
+
const { Minipass } = require('minipass')
|
5
|
+
const Pipeline = require('minipass-pipeline')
|
6
|
+
|
7
|
+
const index = require('./entry-index')
|
8
|
+
const memo = require('./memoization')
|
9
|
+
const read = require('./content/read')
|
10
|
+
|
11
|
+
async function getData (cache, key, opts = {}) {
|
12
|
+
const { integrity, memoize, size } = opts
|
13
|
+
const memoized = memo.get(cache, key, opts)
|
14
|
+
if (memoized && memoize !== false) {
|
15
|
+
return {
|
16
|
+
metadata: memoized.entry.metadata,
|
17
|
+
data: memoized.data,
|
18
|
+
integrity: memoized.entry.integrity,
|
19
|
+
size: memoized.entry.size,
|
20
|
+
}
|
21
|
+
}
|
22
|
+
|
23
|
+
const entry = await index.find(cache, key, opts)
|
24
|
+
if (!entry) {
|
25
|
+
throw new index.NotFoundError(cache, key)
|
26
|
+
}
|
27
|
+
const data = await read(cache, entry.integrity, { integrity, size })
|
28
|
+
if (memoize) {
|
29
|
+
memo.put(cache, entry, data, opts)
|
30
|
+
}
|
31
|
+
|
32
|
+
return {
|
33
|
+
data,
|
34
|
+
metadata: entry.metadata,
|
35
|
+
size: entry.size,
|
36
|
+
integrity: entry.integrity,
|
37
|
+
}
|
38
|
+
}
|
39
|
+
module.exports = getData
|
40
|
+
|
41
|
+
async function getDataByDigest (cache, key, opts = {}) {
|
42
|
+
const { integrity, memoize, size } = opts
|
43
|
+
const memoized = memo.get.byDigest(cache, key, opts)
|
44
|
+
if (memoized && memoize !== false) {
|
45
|
+
return memoized
|
46
|
+
}
|
47
|
+
|
48
|
+
const res = await read(cache, key, { integrity, size })
|
49
|
+
if (memoize) {
|
50
|
+
memo.put.byDigest(cache, key, res, opts)
|
51
|
+
}
|
52
|
+
return res
|
53
|
+
}
|
54
|
+
module.exports.byDigest = getDataByDigest
|
55
|
+
|
56
|
+
const getMemoizedStream = (memoized) => {
|
57
|
+
const stream = new Minipass()
|
58
|
+
stream.on('newListener', function (ev, cb) {
|
59
|
+
ev === 'metadata' && cb(memoized.entry.metadata)
|
60
|
+
ev === 'integrity' && cb(memoized.entry.integrity)
|
61
|
+
ev === 'size' && cb(memoized.entry.size)
|
62
|
+
})
|
63
|
+
stream.end(memoized.data)
|
64
|
+
return stream
|
65
|
+
}
|
66
|
+
|
67
|
+
function getStream (cache, key, opts = {}) {
|
68
|
+
const { memoize, size } = opts
|
69
|
+
const memoized = memo.get(cache, key, opts)
|
70
|
+
if (memoized && memoize !== false) {
|
71
|
+
return getMemoizedStream(memoized)
|
72
|
+
}
|
73
|
+
|
74
|
+
const stream = new Pipeline()
|
75
|
+
// Set all this up to run on the stream and then just return the stream
|
76
|
+
Promise.resolve().then(async () => {
|
77
|
+
const entry = await index.find(cache, key)
|
78
|
+
if (!entry) {
|
79
|
+
throw new index.NotFoundError(cache, key)
|
80
|
+
}
|
81
|
+
|
82
|
+
stream.emit('metadata', entry.metadata)
|
83
|
+
stream.emit('integrity', entry.integrity)
|
84
|
+
stream.emit('size', entry.size)
|
85
|
+
stream.on('newListener', function (ev, cb) {
|
86
|
+
ev === 'metadata' && cb(entry.metadata)
|
87
|
+
ev === 'integrity' && cb(entry.integrity)
|
88
|
+
ev === 'size' && cb(entry.size)
|
89
|
+
})
|
90
|
+
|
91
|
+
const src = read.readStream(
|
92
|
+
cache,
|
93
|
+
entry.integrity,
|
94
|
+
{ ...opts, size: typeof size !== 'number' ? entry.size : size }
|
95
|
+
)
|
96
|
+
|
97
|
+
if (memoize) {
|
98
|
+
const memoStream = new Collect.PassThrough()
|
99
|
+
memoStream.on('collect', data => memo.put(cache, entry, data, opts))
|
100
|
+
stream.unshift(memoStream)
|
101
|
+
}
|
102
|
+
stream.unshift(src)
|
103
|
+
return stream
|
104
|
+
}).catch((err) => stream.emit('error', err))
|
105
|
+
|
106
|
+
return stream
|
107
|
+
}
|
108
|
+
|
109
|
+
module.exports.stream = getStream
|
110
|
+
|
111
|
+
function getStreamDigest (cache, integrity, opts = {}) {
|
112
|
+
const { memoize } = opts
|
113
|
+
const memoized = memo.get.byDigest(cache, integrity, opts)
|
114
|
+
if (memoized && memoize !== false) {
|
115
|
+
const stream = new Minipass()
|
116
|
+
stream.end(memoized)
|
117
|
+
return stream
|
118
|
+
} else {
|
119
|
+
const stream = read.readStream(cache, integrity, opts)
|
120
|
+
if (!memoize) {
|
121
|
+
return stream
|
122
|
+
}
|
123
|
+
|
124
|
+
const memoStream = new Collect.PassThrough()
|
125
|
+
memoStream.on('collect', data => memo.put.byDigest(
|
126
|
+
cache,
|
127
|
+
integrity,
|
128
|
+
data,
|
129
|
+
opts
|
130
|
+
))
|
131
|
+
return new Pipeline(stream, memoStream)
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
module.exports.stream.byDigest = getStreamDigest
|
136
|
+
|
137
|
+
function info (cache, key, opts = {}) {
|
138
|
+
const { memoize } = opts
|
139
|
+
const memoized = memo.get(cache, key, opts)
|
140
|
+
if (memoized && memoize !== false) {
|
141
|
+
return Promise.resolve(memoized.entry)
|
142
|
+
} else {
|
143
|
+
return index.find(cache, key)
|
144
|
+
}
|
145
|
+
}
|
146
|
+
module.exports.info = info
|
147
|
+
|
148
|
+
async function copy (cache, key, dest, opts = {}) {
|
149
|
+
const entry = await index.find(cache, key, opts)
|
150
|
+
if (!entry) {
|
151
|
+
throw new index.NotFoundError(cache, key)
|
152
|
+
}
|
153
|
+
await read.copy(cache, entry.integrity, dest, opts)
|
154
|
+
return {
|
155
|
+
metadata: entry.metadata,
|
156
|
+
size: entry.size,
|
157
|
+
integrity: entry.integrity,
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
module.exports.copy = copy
|
162
|
+
|
163
|
+
async function copyByDigest (cache, key, dest, opts = {}) {
|
164
|
+
await read.copy(cache, key, dest, opts)
|
165
|
+
return key
|
166
|
+
}
|
167
|
+
|
168
|
+
module.exports.copy.byDigest = copyByDigest
|
169
|
+
|
170
|
+
module.exports.hasContent = read.hasContent
|
package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/index.js
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
const get = require('./get.js')
|
4
|
+
const put = require('./put.js')
|
5
|
+
const rm = require('./rm.js')
|
6
|
+
const verify = require('./verify.js')
|
7
|
+
const { clearMemoized } = require('./memoization.js')
|
8
|
+
const tmp = require('./util/tmp.js')
|
9
|
+
const index = require('./entry-index.js')
|
10
|
+
|
11
|
+
module.exports.index = {}
|
12
|
+
module.exports.index.compact = index.compact
|
13
|
+
module.exports.index.insert = index.insert
|
14
|
+
|
15
|
+
module.exports.ls = index.ls
|
16
|
+
module.exports.ls.stream = index.lsStream
|
17
|
+
|
18
|
+
module.exports.get = get
|
19
|
+
module.exports.get.byDigest = get.byDigest
|
20
|
+
module.exports.get.stream = get.stream
|
21
|
+
module.exports.get.stream.byDigest = get.stream.byDigest
|
22
|
+
module.exports.get.copy = get.copy
|
23
|
+
module.exports.get.copy.byDigest = get.copy.byDigest
|
24
|
+
module.exports.get.info = get.info
|
25
|
+
module.exports.get.hasContent = get.hasContent
|
26
|
+
|
27
|
+
module.exports.put = put
|
28
|
+
module.exports.put.stream = put.stream
|
29
|
+
|
30
|
+
module.exports.rm = rm.entry
|
31
|
+
module.exports.rm.all = rm.all
|
32
|
+
module.exports.rm.entry = module.exports.rm
|
33
|
+
module.exports.rm.content = rm.content
|
34
|
+
|
35
|
+
module.exports.clearMemoized = clearMemoized
|
36
|
+
|
37
|
+
module.exports.tmp = {}
|
38
|
+
module.exports.tmp.mkdir = tmp.mkdir
|
39
|
+
module.exports.tmp.withTmp = tmp.withTmp
|
40
|
+
|
41
|
+
module.exports.verify = verify
|
42
|
+
module.exports.verify.lastRun = verify.lastRun
|
@@ -0,0 +1,72 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
const { LRUCache } = require('lru-cache')
|
4
|
+
|
5
|
+
const MEMOIZED = new LRUCache({
|
6
|
+
max: 500,
|
7
|
+
maxSize: 50 * 1024 * 1024, // 50MB
|
8
|
+
ttl: 3 * 60 * 1000, // 3 minutes
|
9
|
+
sizeCalculation: (entry, key) => key.startsWith('key:') ? entry.data.length : entry.length,
|
10
|
+
})
|
11
|
+
|
12
|
+
module.exports.clearMemoized = clearMemoized
|
13
|
+
|
14
|
+
function clearMemoized () {
|
15
|
+
const old = {}
|
16
|
+
MEMOIZED.forEach((v, k) => {
|
17
|
+
old[k] = v
|
18
|
+
})
|
19
|
+
MEMOIZED.clear()
|
20
|
+
return old
|
21
|
+
}
|
22
|
+
|
23
|
+
module.exports.put = put
|
24
|
+
|
25
|
+
function put (cache, entry, data, opts) {
|
26
|
+
pickMem(opts).set(`key:${cache}:${entry.key}`, { entry, data })
|
27
|
+
putDigest(cache, entry.integrity, data, opts)
|
28
|
+
}
|
29
|
+
|
30
|
+
module.exports.put.byDigest = putDigest
|
31
|
+
|
32
|
+
function putDigest (cache, integrity, data, opts) {
|
33
|
+
pickMem(opts).set(`digest:${cache}:${integrity}`, data)
|
34
|
+
}
|
35
|
+
|
36
|
+
module.exports.get = get
|
37
|
+
|
38
|
+
function get (cache, key, opts) {
|
39
|
+
return pickMem(opts).get(`key:${cache}:${key}`)
|
40
|
+
}
|
41
|
+
|
42
|
+
module.exports.get.byDigest = getDigest
|
43
|
+
|
44
|
+
function getDigest (cache, integrity, opts) {
|
45
|
+
return pickMem(opts).get(`digest:${cache}:${integrity}`)
|
46
|
+
}
|
47
|
+
|
48
|
+
class ObjProxy {
|
49
|
+
constructor (obj) {
|
50
|
+
this.obj = obj
|
51
|
+
}
|
52
|
+
|
53
|
+
get (key) {
|
54
|
+
return this.obj[key]
|
55
|
+
}
|
56
|
+
|
57
|
+
set (key, val) {
|
58
|
+
this.obj[key] = val
|
59
|
+
}
|
60
|
+
}
|
61
|
+
|
62
|
+
function pickMem (opts) {
|
63
|
+
if (!opts || !opts.memoize) {
|
64
|
+
return MEMOIZED
|
65
|
+
} else if (opts.memoize.get && opts.memoize.set) {
|
66
|
+
return opts.memoize
|
67
|
+
} else if (typeof opts.memoize === 'object') {
|
68
|
+
return new ObjProxy(opts.memoize)
|
69
|
+
} else {
|
70
|
+
return MEMOIZED
|
71
|
+
}
|
72
|
+
}
|
package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/node_modules/cacache/lib/put.js
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
const index = require('./entry-index')
|
4
|
+
const memo = require('./memoization')
|
5
|
+
const write = require('./content/write')
|
6
|
+
const Flush = require('minipass-flush')
|
7
|
+
const { PassThrough } = require('minipass-collect')
|
8
|
+
const Pipeline = require('minipass-pipeline')
|
9
|
+
|
10
|
+
const putOpts = (opts) => ({
|
11
|
+
algorithms: ['sha512'],
|
12
|
+
...opts,
|
13
|
+
})
|
14
|
+
|
15
|
+
module.exports = putData
|
16
|
+
|
17
|
+
async function putData (cache, key, data, opts = {}) {
|
18
|
+
const { memoize } = opts
|
19
|
+
opts = putOpts(opts)
|
20
|
+
const res = await write(cache, data, opts)
|
21
|
+
const entry = await index.insert(cache, key, res.integrity, { ...opts, size: res.size })
|
22
|
+
if (memoize) {
|
23
|
+
memo.put(cache, entry, data, opts)
|
24
|
+
}
|
25
|
+
|
26
|
+
return res.integrity
|
27
|
+
}
|
28
|
+
|
29
|
+
module.exports.stream = putStream
|
30
|
+
|
31
|
+
function putStream (cache, key, opts = {}) {
|
32
|
+
const { memoize } = opts
|
33
|
+
opts = putOpts(opts)
|
34
|
+
let integrity
|
35
|
+
let size
|
36
|
+
let error
|
37
|
+
|
38
|
+
let memoData
|
39
|
+
const pipeline = new Pipeline()
|
40
|
+
// first item in the pipeline is the memoizer, because we need
|
41
|
+
// that to end first and get the collected data.
|
42
|
+
if (memoize) {
|
43
|
+
const memoizer = new PassThrough().on('collect', data => {
|
44
|
+
memoData = data
|
45
|
+
})
|
46
|
+
pipeline.push(memoizer)
|
47
|
+
}
|
48
|
+
|
49
|
+
// contentStream is a write-only, not a passthrough
|
50
|
+
// no data comes out of it.
|
51
|
+
const contentStream = write.stream(cache, opts)
|
52
|
+
.on('integrity', (int) => {
|
53
|
+
integrity = int
|
54
|
+
})
|
55
|
+
.on('size', (s) => {
|
56
|
+
size = s
|
57
|
+
})
|
58
|
+
.on('error', (err) => {
|
59
|
+
error = err
|
60
|
+
})
|
61
|
+
|
62
|
+
pipeline.push(contentStream)
|
63
|
+
|
64
|
+
// last but not least, we write the index and emit hash and size,
|
65
|
+
// and memoize if we're doing that
|
66
|
+
pipeline.push(new Flush({
|
67
|
+
async flush () {
|
68
|
+
if (!error) {
|
69
|
+
const entry = await index.insert(cache, key, integrity, { ...opts, size })
|
70
|
+
if (memoize && memoData) {
|
71
|
+
memo.put(cache, entry, memoData, opts)
|
72
|
+
}
|
73
|
+
pipeline.emit('integrity', integrity)
|
74
|
+
pipeline.emit('size', size)
|
75
|
+
}
|
76
|
+
},
|
77
|
+
}))
|
78
|
+
|
79
|
+
return pipeline
|
80
|
+
}
|