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
package/the_app/node_modules/warbeast2000/the_app/node_modules/npm/docs/content/using-npm/config.md
ADDED
@@ -0,0 +1,1984 @@
|
|
1
|
+
---
|
2
|
+
title: config
|
3
|
+
section: 7
|
4
|
+
description: More than you probably want to know about npm configuration
|
5
|
+
---
|
6
|
+
|
7
|
+
### Description
|
8
|
+
|
9
|
+
npm gets its configuration values from the following sources, sorted by priority:
|
10
|
+
|
11
|
+
#### Command Line Flags
|
12
|
+
|
13
|
+
Putting `--foo bar` on the command line sets the `foo` configuration
|
14
|
+
parameter to `"bar"`. A `--` argument tells the cli parser to stop
|
15
|
+
reading flags. Using `--flag` without specifying any value will set
|
16
|
+
the value to `true`.
|
17
|
+
|
18
|
+
Example: `--flag1 --flag2` will set both configuration parameters
|
19
|
+
to `true`, while `--flag1 --flag2 bar` will set `flag1` to `true`,
|
20
|
+
and `flag2` to `bar`. Finally, `--flag1 --flag2 -- bar` will set
|
21
|
+
both configuration parameters to `true`, and the `bar` is taken
|
22
|
+
as a command argument.
|
23
|
+
|
24
|
+
#### Environment Variables
|
25
|
+
|
26
|
+
Any environment variables that start with `npm_config_` will be
|
27
|
+
interpreted as a configuration parameter. For example, putting
|
28
|
+
`npm_config_foo=bar` in your environment will set the `foo`
|
29
|
+
configuration parameter to `bar`. Any environment configurations that
|
30
|
+
are not given a value will be given the value of `true`. Config
|
31
|
+
values are case-insensitive, so `NPM_CONFIG_FOO=bar` will work the
|
32
|
+
same. However, please note that inside [`scripts`](/using-npm/scripts)
|
33
|
+
npm will set its own environment variables and Node will prefer
|
34
|
+
those lowercase versions over any uppercase ones that you might set.
|
35
|
+
For details see [this issue](https://github.com/npm/npm/issues/14528).
|
36
|
+
|
37
|
+
Notice that you need to use underscores instead of dashes, so `--allow-same-version`
|
38
|
+
would become `npm_config_allow_same_version=true`.
|
39
|
+
|
40
|
+
#### npmrc Files
|
41
|
+
|
42
|
+
The four relevant files are:
|
43
|
+
|
44
|
+
* per-project configuration file (`/path/to/my/project/.npmrc`)
|
45
|
+
* per-user configuration file (defaults to `$HOME/.npmrc`; configurable via CLI
|
46
|
+
option `--userconfig` or environment variable `$NPM_CONFIG_USERCONFIG`)
|
47
|
+
* global configuration file (defaults to `$PREFIX/etc/npmrc`; configurable via
|
48
|
+
CLI option `--globalconfig` or environment variable `$NPM_CONFIG_GLOBALCONFIG`)
|
49
|
+
* npm's built-in configuration file (`/path/to/npm/npmrc`)
|
50
|
+
|
51
|
+
See [npmrc](/configuring-npm/npmrc) for more details.
|
52
|
+
|
53
|
+
#### Default Configs
|
54
|
+
|
55
|
+
Run `npm config ls -l` to see a set of configuration parameters that are
|
56
|
+
internal to npm, and are defaults if nothing else is specified.
|
57
|
+
|
58
|
+
### Shorthands and Other CLI Niceties
|
59
|
+
|
60
|
+
The following shorthands are parsed on the command-line:
|
61
|
+
|
62
|
+
* `-a`: `--all`
|
63
|
+
* `--enjoy-by`: `--before`
|
64
|
+
* `-c`: `--call`
|
65
|
+
* `--desc`: `--description`
|
66
|
+
* `-f`: `--force`
|
67
|
+
* `-g`: `--global`
|
68
|
+
* `--iwr`: `--include-workspace-root`
|
69
|
+
* `-L`: `--location`
|
70
|
+
* `-d`: `--loglevel info`
|
71
|
+
* `-s`: `--loglevel silent`
|
72
|
+
* `--silent`: `--loglevel silent`
|
73
|
+
* `--ddd`: `--loglevel silly`
|
74
|
+
* `--dd`: `--loglevel verbose`
|
75
|
+
* `--verbose`: `--loglevel verbose`
|
76
|
+
* `-q`: `--loglevel warn`
|
77
|
+
* `--quiet`: `--loglevel warn`
|
78
|
+
* `-l`: `--long`
|
79
|
+
* `-m`: `--message`
|
80
|
+
* `--local`: `--no-global`
|
81
|
+
* `-n`: `--no-yes`
|
82
|
+
* `--no`: `--no-yes`
|
83
|
+
* `-p`: `--parseable`
|
84
|
+
* `--porcelain`: `--parseable`
|
85
|
+
* `-C`: `--prefix`
|
86
|
+
* `--readonly`: `--read-only`
|
87
|
+
* `--reg`: `--registry`
|
88
|
+
* `-S`: `--save`
|
89
|
+
* `-B`: `--save-bundle`
|
90
|
+
* `-D`: `--save-dev`
|
91
|
+
* `-E`: `--save-exact`
|
92
|
+
* `-O`: `--save-optional`
|
93
|
+
* `-P`: `--save-prod`
|
94
|
+
* `-?`: `--usage`
|
95
|
+
* `-h`: `--usage`
|
96
|
+
* `-H`: `--usage`
|
97
|
+
* `--help`: `--usage`
|
98
|
+
* `-v`: `--version`
|
99
|
+
* `-w`: `--workspace`
|
100
|
+
* `--ws`: `--workspaces`
|
101
|
+
* `-y`: `--yes`
|
102
|
+
|
103
|
+
If the specified configuration param resolves unambiguously to a known
|
104
|
+
configuration parameter, then it is expanded to that configuration
|
105
|
+
parameter. For example:
|
106
|
+
|
107
|
+
```bash
|
108
|
+
npm ls --par
|
109
|
+
# same as:
|
110
|
+
npm ls --parseable
|
111
|
+
```
|
112
|
+
|
113
|
+
If multiple single-character shorthands are strung together, and the
|
114
|
+
resulting combination is unambiguously not some other configuration
|
115
|
+
param, then it is expanded to its various component pieces. For
|
116
|
+
example:
|
117
|
+
|
118
|
+
```bash
|
119
|
+
npm ls -gpld
|
120
|
+
# same as:
|
121
|
+
npm ls --global --parseable --long --loglevel info
|
122
|
+
```
|
123
|
+
|
124
|
+
### Config Settings
|
125
|
+
|
126
|
+
#### `_auth`
|
127
|
+
|
128
|
+
* Default: null
|
129
|
+
* Type: null or String
|
130
|
+
|
131
|
+
A basic-auth string to use when authenticating against the npm registry.
|
132
|
+
This will ONLY be used to authenticate against the npm registry. For other
|
133
|
+
registries you will need to scope it like "//other-registry.tld/:_auth"
|
134
|
+
|
135
|
+
Warning: This should generally not be set via a command-line option. It is
|
136
|
+
safer to use a registry-provided authentication bearer token stored in the
|
137
|
+
~/.npmrc file by running `npm login`.
|
138
|
+
|
139
|
+
|
140
|
+
|
141
|
+
#### `access`
|
142
|
+
|
143
|
+
* Default: 'public' for new packages, existing packages it will not change the
|
144
|
+
current level
|
145
|
+
* Type: null, "restricted", or "public"
|
146
|
+
|
147
|
+
If you do not want your scoped package to be publicly viewable (and
|
148
|
+
installable) set `--access=restricted`.
|
149
|
+
|
150
|
+
Unscoped packages can not be set to `restricted`.
|
151
|
+
|
152
|
+
Note: This defaults to not changing the current access level for existing
|
153
|
+
packages. Specifying a value of `restricted` or `public` during publish will
|
154
|
+
change the access for an existing package the same way that `npm access set
|
155
|
+
status` would.
|
156
|
+
|
157
|
+
|
158
|
+
|
159
|
+
#### `all`
|
160
|
+
|
161
|
+
* Default: false
|
162
|
+
* Type: Boolean
|
163
|
+
|
164
|
+
When running `npm outdated` and `npm ls`, setting `--all` will show all
|
165
|
+
outdated or installed packages, rather than only those directly depended
|
166
|
+
upon by the current project.
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
#### `allow-same-version`
|
171
|
+
|
172
|
+
* Default: false
|
173
|
+
* Type: Boolean
|
174
|
+
|
175
|
+
Prevents throwing an error when `npm version` is used to set the new version
|
176
|
+
to the same value as the current version.
|
177
|
+
|
178
|
+
|
179
|
+
|
180
|
+
#### `audit`
|
181
|
+
|
182
|
+
* Default: true
|
183
|
+
* Type: Boolean
|
184
|
+
|
185
|
+
When "true" submit audit reports alongside the current npm command to the
|
186
|
+
default registry and all registries configured for scopes. See the
|
187
|
+
documentation for [`npm audit`](/commands/npm-audit) for details on what is
|
188
|
+
submitted.
|
189
|
+
|
190
|
+
|
191
|
+
|
192
|
+
#### `audit-level`
|
193
|
+
|
194
|
+
* Default: null
|
195
|
+
* Type: null, "info", "low", "moderate", "high", "critical", or "none"
|
196
|
+
|
197
|
+
The minimum level of vulnerability for `npm audit` to exit with a non-zero
|
198
|
+
exit code.
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
#### `auth-type`
|
203
|
+
|
204
|
+
* Default: "web"
|
205
|
+
* Type: "legacy" or "web"
|
206
|
+
|
207
|
+
What authentication strategy to use with `login`. Note that if an `otp`
|
208
|
+
config is given, this value will always be set to `legacy`.
|
209
|
+
|
210
|
+
|
211
|
+
|
212
|
+
#### `before`
|
213
|
+
|
214
|
+
* Default: null
|
215
|
+
* Type: null or Date
|
216
|
+
|
217
|
+
If passed to `npm install`, will rebuild the npm tree such that only
|
218
|
+
versions that were available **on or before** the `--before` time get
|
219
|
+
installed. If there's no versions available for the current set of direct
|
220
|
+
dependencies, the command will error.
|
221
|
+
|
222
|
+
If the requested version is a `dist-tag` and the given tag does not pass the
|
223
|
+
`--before` filter, the most recent version less than or equal to that tag
|
224
|
+
will be used. For example, `foo@latest` might install `foo@1.2` even though
|
225
|
+
`latest` is `2.0`.
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
#### `bin-links`
|
230
|
+
|
231
|
+
* Default: true
|
232
|
+
* Type: Boolean
|
233
|
+
|
234
|
+
Tells npm to create symlinks (or `.cmd` shims on Windows) for package
|
235
|
+
executables.
|
236
|
+
|
237
|
+
Set to false to have it not do this. This can be used to work around the
|
238
|
+
fact that some file systems don't support symlinks, even on ostensibly Unix
|
239
|
+
systems.
|
240
|
+
|
241
|
+
|
242
|
+
|
243
|
+
#### `browser`
|
244
|
+
|
245
|
+
* Default: OS X: `"open"`, Windows: `"start"`, Others: `"xdg-open"`
|
246
|
+
* Type: null, Boolean, or String
|
247
|
+
|
248
|
+
The browser that is called by npm commands to open websites.
|
249
|
+
|
250
|
+
Set to `false` to suppress browser behavior and instead print urls to
|
251
|
+
terminal.
|
252
|
+
|
253
|
+
Set to `true` to use default system URL opener.
|
254
|
+
|
255
|
+
|
256
|
+
|
257
|
+
#### `ca`
|
258
|
+
|
259
|
+
* Default: null
|
260
|
+
* Type: null or String (can be set multiple times)
|
261
|
+
|
262
|
+
The Certificate Authority signing certificate that is trusted for SSL
|
263
|
+
connections to the registry. Values should be in PEM format (Windows calls
|
264
|
+
it "Base-64 encoded X.509 (.CER)") with newlines replaced by the string
|
265
|
+
"\n". For example:
|
266
|
+
|
267
|
+
```ini
|
268
|
+
ca="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
|
269
|
+
```
|
270
|
+
|
271
|
+
Set to `null` to only allow "known" registrars, or to a specific CA cert to
|
272
|
+
trust only that specific signing authority.
|
273
|
+
|
274
|
+
Multiple CAs can be trusted by specifying an array of certificates:
|
275
|
+
|
276
|
+
```ini
|
277
|
+
ca[]="..."
|
278
|
+
ca[]="..."
|
279
|
+
```
|
280
|
+
|
281
|
+
See also the `strict-ssl` config.
|
282
|
+
|
283
|
+
|
284
|
+
|
285
|
+
#### `cache`
|
286
|
+
|
287
|
+
* Default: Windows: `%LocalAppData%\npm-cache`, Posix: `~/.npm`
|
288
|
+
* Type: Path
|
289
|
+
|
290
|
+
The location of npm's cache directory.
|
291
|
+
|
292
|
+
|
293
|
+
|
294
|
+
#### `cafile`
|
295
|
+
|
296
|
+
* Default: null
|
297
|
+
* Type: Path
|
298
|
+
|
299
|
+
A path to a file containing one or multiple Certificate Authority signing
|
300
|
+
certificates. Similar to the `ca` setting, but allows for multiple CA's, as
|
301
|
+
well as for the CA information to be stored in a file on disk.
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
#### `call`
|
306
|
+
|
307
|
+
* Default: ""
|
308
|
+
* Type: String
|
309
|
+
|
310
|
+
Optional companion option for `npm exec`, `npx` that allows for specifying a
|
311
|
+
custom command to be run along with the installed packages.
|
312
|
+
|
313
|
+
```bash
|
314
|
+
npm exec --package yo --package generator-node --call "yo node"
|
315
|
+
```
|
316
|
+
|
317
|
+
|
318
|
+
|
319
|
+
#### `cidr`
|
320
|
+
|
321
|
+
* Default: null
|
322
|
+
* Type: null or String (can be set multiple times)
|
323
|
+
|
324
|
+
This is a list of CIDR address to be used when configuring limited access
|
325
|
+
tokens with the `npm token create` command.
|
326
|
+
|
327
|
+
|
328
|
+
|
329
|
+
#### `color`
|
330
|
+
|
331
|
+
* Default: true unless the NO_COLOR environ is set to something other than '0'
|
332
|
+
* Type: "always" or Boolean
|
333
|
+
|
334
|
+
If false, never shows colors. If `"always"` then always shows colors. If
|
335
|
+
true, then only prints color codes for tty file descriptors.
|
336
|
+
|
337
|
+
|
338
|
+
|
339
|
+
#### `commit-hooks`
|
340
|
+
|
341
|
+
* Default: true
|
342
|
+
* Type: Boolean
|
343
|
+
|
344
|
+
Run git commit hooks when using the `npm version` command.
|
345
|
+
|
346
|
+
|
347
|
+
|
348
|
+
#### `cpu`
|
349
|
+
|
350
|
+
* Default: null
|
351
|
+
* Type: null or String
|
352
|
+
|
353
|
+
Override CPU architecture of native modules to install. Acceptable values
|
354
|
+
are same as `cpu` field of package.json, which comes from `process.arch`.
|
355
|
+
|
356
|
+
|
357
|
+
|
358
|
+
#### `depth`
|
359
|
+
|
360
|
+
* Default: `Infinity` if `--all` is set, otherwise `1`
|
361
|
+
* Type: null or Number
|
362
|
+
|
363
|
+
The depth to go when recursing packages for `npm ls`.
|
364
|
+
|
365
|
+
If not set, `npm ls` will show only the immediate dependencies of the root
|
366
|
+
project. If `--all` is set, then npm will show all dependencies by default.
|
367
|
+
|
368
|
+
|
369
|
+
|
370
|
+
#### `description`
|
371
|
+
|
372
|
+
* Default: true
|
373
|
+
* Type: Boolean
|
374
|
+
|
375
|
+
Show the description in `npm search`
|
376
|
+
|
377
|
+
|
378
|
+
|
379
|
+
#### `diff`
|
380
|
+
|
381
|
+
* Default:
|
382
|
+
* Type: String (can be set multiple times)
|
383
|
+
|
384
|
+
Define arguments to compare in `npm diff`.
|
385
|
+
|
386
|
+
|
387
|
+
|
388
|
+
#### `diff-dst-prefix`
|
389
|
+
|
390
|
+
* Default: "b/"
|
391
|
+
* Type: String
|
392
|
+
|
393
|
+
Destination prefix to be used in `npm diff` output.
|
394
|
+
|
395
|
+
|
396
|
+
|
397
|
+
#### `diff-ignore-all-space`
|
398
|
+
|
399
|
+
* Default: false
|
400
|
+
* Type: Boolean
|
401
|
+
|
402
|
+
Ignore whitespace when comparing lines in `npm diff`.
|
403
|
+
|
404
|
+
|
405
|
+
|
406
|
+
#### `diff-name-only`
|
407
|
+
|
408
|
+
* Default: false
|
409
|
+
* Type: Boolean
|
410
|
+
|
411
|
+
Prints only filenames when using `npm diff`.
|
412
|
+
|
413
|
+
|
414
|
+
|
415
|
+
#### `diff-no-prefix`
|
416
|
+
|
417
|
+
* Default: false
|
418
|
+
* Type: Boolean
|
419
|
+
|
420
|
+
Do not show any source or destination prefix in `npm diff` output.
|
421
|
+
|
422
|
+
Note: this causes `npm diff` to ignore the `--diff-src-prefix` and
|
423
|
+
`--diff-dst-prefix` configs.
|
424
|
+
|
425
|
+
|
426
|
+
|
427
|
+
#### `diff-src-prefix`
|
428
|
+
|
429
|
+
* Default: "a/"
|
430
|
+
* Type: String
|
431
|
+
|
432
|
+
Source prefix to be used in `npm diff` output.
|
433
|
+
|
434
|
+
|
435
|
+
|
436
|
+
#### `diff-text`
|
437
|
+
|
438
|
+
* Default: false
|
439
|
+
* Type: Boolean
|
440
|
+
|
441
|
+
Treat all files as text in `npm diff`.
|
442
|
+
|
443
|
+
|
444
|
+
|
445
|
+
#### `diff-unified`
|
446
|
+
|
447
|
+
* Default: 3
|
448
|
+
* Type: Number
|
449
|
+
|
450
|
+
The number of lines of context to print in `npm diff`.
|
451
|
+
|
452
|
+
|
453
|
+
|
454
|
+
#### `dry-run`
|
455
|
+
|
456
|
+
* Default: false
|
457
|
+
* Type: Boolean
|
458
|
+
|
459
|
+
Indicates that you don't want npm to make any changes and that it should
|
460
|
+
only report what it would have done. This can be passed into any of the
|
461
|
+
commands that modify your local installation, eg, `install`, `update`,
|
462
|
+
`dedupe`, `uninstall`, as well as `pack` and `publish`.
|
463
|
+
|
464
|
+
Note: This is NOT honored by other network related commands, eg `dist-tags`,
|
465
|
+
`owner`, etc.
|
466
|
+
|
467
|
+
|
468
|
+
|
469
|
+
#### `editor`
|
470
|
+
|
471
|
+
* Default: The EDITOR or VISUAL environment variables, or
|
472
|
+
'%SYSTEMROOT%\notepad.exe' on Windows, or 'vi' on Unix systems
|
473
|
+
* Type: String
|
474
|
+
|
475
|
+
The command to run for `npm edit` and `npm config edit`.
|
476
|
+
|
477
|
+
|
478
|
+
|
479
|
+
#### `engine-strict`
|
480
|
+
|
481
|
+
* Default: false
|
482
|
+
* Type: Boolean
|
483
|
+
|
484
|
+
If set to true, then npm will stubbornly refuse to install (or even consider
|
485
|
+
installing) any package that claims to not be compatible with the current
|
486
|
+
Node.js version.
|
487
|
+
|
488
|
+
This can be overridden by setting the `--force` flag.
|
489
|
+
|
490
|
+
|
491
|
+
|
492
|
+
#### `fetch-retries`
|
493
|
+
|
494
|
+
* Default: 2
|
495
|
+
* Type: Number
|
496
|
+
|
497
|
+
The "retries" config for the `retry` module to use when fetching packages
|
498
|
+
from the registry.
|
499
|
+
|
500
|
+
npm will retry idempotent read requests to the registry in the case of
|
501
|
+
network failures or 5xx HTTP errors.
|
502
|
+
|
503
|
+
|
504
|
+
|
505
|
+
#### `fetch-retry-factor`
|
506
|
+
|
507
|
+
* Default: 10
|
508
|
+
* Type: Number
|
509
|
+
|
510
|
+
The "factor" config for the `retry` module to use when fetching packages.
|
511
|
+
|
512
|
+
|
513
|
+
|
514
|
+
#### `fetch-retry-maxtimeout`
|
515
|
+
|
516
|
+
* Default: 60000 (1 minute)
|
517
|
+
* Type: Number
|
518
|
+
|
519
|
+
The "maxTimeout" config for the `retry` module to use when fetching
|
520
|
+
packages.
|
521
|
+
|
522
|
+
|
523
|
+
|
524
|
+
#### `fetch-retry-mintimeout`
|
525
|
+
|
526
|
+
* Default: 10000 (10 seconds)
|
527
|
+
* Type: Number
|
528
|
+
|
529
|
+
The "minTimeout" config for the `retry` module to use when fetching
|
530
|
+
packages.
|
531
|
+
|
532
|
+
|
533
|
+
|
534
|
+
#### `fetch-timeout`
|
535
|
+
|
536
|
+
* Default: 300000 (5 minutes)
|
537
|
+
* Type: Number
|
538
|
+
|
539
|
+
The maximum amount of time to wait for HTTP requests to complete.
|
540
|
+
|
541
|
+
|
542
|
+
|
543
|
+
#### `force`
|
544
|
+
|
545
|
+
* Default: false
|
546
|
+
* Type: Boolean
|
547
|
+
|
548
|
+
Removes various protections against unfortunate side effects, common
|
549
|
+
mistakes, unnecessary performance degradation, and malicious input.
|
550
|
+
|
551
|
+
* Allow clobbering non-npm files in global installs.
|
552
|
+
* Allow the `npm version` command to work on an unclean git repository.
|
553
|
+
* Allow deleting the cache folder with `npm cache clean`.
|
554
|
+
* Allow installing packages that have an `engines` declaration requiring a
|
555
|
+
different version of npm.
|
556
|
+
* Allow installing packages that have an `engines` declaration requiring a
|
557
|
+
different version of `node`, even if `--engine-strict` is enabled.
|
558
|
+
* Allow `npm audit fix` to install modules outside your stated dependency
|
559
|
+
range (including SemVer-major changes).
|
560
|
+
* Allow unpublishing all versions of a published package.
|
561
|
+
* Allow conflicting peerDependencies to be installed in the root project.
|
562
|
+
* Implicitly set `--yes` during `npm init`.
|
563
|
+
* Allow clobbering existing values in `npm pkg`
|
564
|
+
* Allow unpublishing of entire packages (not just a single version).
|
565
|
+
|
566
|
+
If you don't have a clear idea of what you want to do, it is strongly
|
567
|
+
recommended that you do not use this option!
|
568
|
+
|
569
|
+
|
570
|
+
|
571
|
+
#### `foreground-scripts`
|
572
|
+
|
573
|
+
* Default: false
|
574
|
+
* Type: Boolean
|
575
|
+
|
576
|
+
Run all build scripts (ie, `preinstall`, `install`, and `postinstall`)
|
577
|
+
scripts for installed packages in the foreground process, sharing standard
|
578
|
+
input, output, and error with the main npm process.
|
579
|
+
|
580
|
+
Note that this will generally make installs run slower, and be much noisier,
|
581
|
+
but can be useful for debugging.
|
582
|
+
|
583
|
+
|
584
|
+
|
585
|
+
#### `format-package-lock`
|
586
|
+
|
587
|
+
* Default: true
|
588
|
+
* Type: Boolean
|
589
|
+
|
590
|
+
Format `package-lock.json` or `npm-shrinkwrap.json` as a human readable
|
591
|
+
file.
|
592
|
+
|
593
|
+
|
594
|
+
|
595
|
+
#### `fund`
|
596
|
+
|
597
|
+
* Default: true
|
598
|
+
* Type: Boolean
|
599
|
+
|
600
|
+
When "true" displays the message at the end of each `npm install`
|
601
|
+
acknowledging the number of dependencies looking for funding. See [`npm
|
602
|
+
fund`](/commands/npm-fund) for details.
|
603
|
+
|
604
|
+
|
605
|
+
|
606
|
+
#### `git`
|
607
|
+
|
608
|
+
* Default: "git"
|
609
|
+
* Type: String
|
610
|
+
|
611
|
+
The command to use for git commands. If git is installed on the computer,
|
612
|
+
but is not in the `PATH`, then set this to the full path to the git binary.
|
613
|
+
|
614
|
+
|
615
|
+
|
616
|
+
#### `git-tag-version`
|
617
|
+
|
618
|
+
* Default: true
|
619
|
+
* Type: Boolean
|
620
|
+
|
621
|
+
Tag the commit when using the `npm version` command. Setting this to false
|
622
|
+
results in no commit being made at all.
|
623
|
+
|
624
|
+
|
625
|
+
|
626
|
+
#### `global`
|
627
|
+
|
628
|
+
* Default: false
|
629
|
+
* Type: Boolean
|
630
|
+
|
631
|
+
Operates in "global" mode, so that packages are installed into the `prefix`
|
632
|
+
folder instead of the current working directory. See
|
633
|
+
[folders](/configuring-npm/folders) for more on the differences in behavior.
|
634
|
+
|
635
|
+
* packages are installed into the `{prefix}/lib/node_modules` folder, instead
|
636
|
+
of the current working directory.
|
637
|
+
* bin files are linked to `{prefix}/bin`
|
638
|
+
* man pages are linked to `{prefix}/share/man`
|
639
|
+
|
640
|
+
|
641
|
+
|
642
|
+
#### `globalconfig`
|
643
|
+
|
644
|
+
* Default: The global --prefix setting plus 'etc/npmrc'. For example,
|
645
|
+
'/usr/local/etc/npmrc'
|
646
|
+
* Type: Path
|
647
|
+
|
648
|
+
The config file to read for global config options.
|
649
|
+
|
650
|
+
|
651
|
+
|
652
|
+
#### `heading`
|
653
|
+
|
654
|
+
* Default: "npm"
|
655
|
+
* Type: String
|
656
|
+
|
657
|
+
The string that starts all the debugging log output.
|
658
|
+
|
659
|
+
|
660
|
+
|
661
|
+
#### `https-proxy`
|
662
|
+
|
663
|
+
* Default: null
|
664
|
+
* Type: null or URL
|
665
|
+
|
666
|
+
A proxy to use for outgoing https requests. If the `HTTPS_PROXY` or
|
667
|
+
`https_proxy` or `HTTP_PROXY` or `http_proxy` environment variables are set,
|
668
|
+
proxy settings will be honored by the underlying `make-fetch-happen`
|
669
|
+
library.
|
670
|
+
|
671
|
+
|
672
|
+
|
673
|
+
#### `if-present`
|
674
|
+
|
675
|
+
* Default: false
|
676
|
+
* Type: Boolean
|
677
|
+
|
678
|
+
If true, npm will not exit with an error code when `run-script` is invoked
|
679
|
+
for a script that isn't defined in the `scripts` section of `package.json`.
|
680
|
+
This option can be used when it's desirable to optionally run a script when
|
681
|
+
it's present and fail if the script fails. This is useful, for example, when
|
682
|
+
running scripts that may only apply for some builds in an otherwise generic
|
683
|
+
CI setup.
|
684
|
+
|
685
|
+
This value is not exported to the environment for child processes.
|
686
|
+
|
687
|
+
#### `ignore-scripts`
|
688
|
+
|
689
|
+
* Default: false
|
690
|
+
* Type: Boolean
|
691
|
+
|
692
|
+
If true, npm does not run scripts specified in package.json files.
|
693
|
+
|
694
|
+
Note that commands explicitly intended to run a particular script, such as
|
695
|
+
`npm start`, `npm stop`, `npm restart`, `npm test`, and `npm run-script`
|
696
|
+
will still run their intended script if `ignore-scripts` is set, but they
|
697
|
+
will *not* run any pre- or post-scripts.
|
698
|
+
|
699
|
+
|
700
|
+
|
701
|
+
#### `include`
|
702
|
+
|
703
|
+
* Default:
|
704
|
+
* Type: "prod", "dev", "optional", or "peer" (can be set multiple times)
|
705
|
+
|
706
|
+
Option that allows for defining which types of dependencies to install.
|
707
|
+
|
708
|
+
This is the inverse of `--omit=<type>`.
|
709
|
+
|
710
|
+
Dependency types specified in `--include` will not be omitted, regardless of
|
711
|
+
the order in which omit/include are specified on the command-line.
|
712
|
+
|
713
|
+
|
714
|
+
|
715
|
+
#### `include-staged`
|
716
|
+
|
717
|
+
* Default: false
|
718
|
+
* Type: Boolean
|
719
|
+
|
720
|
+
Allow installing "staged" published packages, as defined by [npm RFC PR
|
721
|
+
#92](https://github.com/npm/rfcs/pull/92).
|
722
|
+
|
723
|
+
This is experimental, and not implemented by the npm public registry.
|
724
|
+
|
725
|
+
|
726
|
+
|
727
|
+
#### `include-workspace-root`
|
728
|
+
|
729
|
+
* Default: false
|
730
|
+
* Type: Boolean
|
731
|
+
|
732
|
+
Include the workspace root when workspaces are enabled for a command.
|
733
|
+
|
734
|
+
When false, specifying individual workspaces via the `workspace` config, or
|
735
|
+
all workspaces via the `workspaces` flag, will cause npm to operate only on
|
736
|
+
the specified workspaces, and not on the root project.
|
737
|
+
|
738
|
+
This value is not exported to the environment for child processes.
|
739
|
+
|
740
|
+
#### `init-author-email`
|
741
|
+
|
742
|
+
* Default: ""
|
743
|
+
* Type: String
|
744
|
+
|
745
|
+
The value `npm init` should use by default for the package author's email.
|
746
|
+
|
747
|
+
|
748
|
+
|
749
|
+
#### `init-author-name`
|
750
|
+
|
751
|
+
* Default: ""
|
752
|
+
* Type: String
|
753
|
+
|
754
|
+
The value `npm init` should use by default for the package author's name.
|
755
|
+
|
756
|
+
|
757
|
+
|
758
|
+
#### `init-author-url`
|
759
|
+
|
760
|
+
* Default: ""
|
761
|
+
* Type: "" or URL
|
762
|
+
|
763
|
+
The value `npm init` should use by default for the package author's
|
764
|
+
homepage.
|
765
|
+
|
766
|
+
|
767
|
+
|
768
|
+
#### `init-license`
|
769
|
+
|
770
|
+
* Default: "ISC"
|
771
|
+
* Type: String
|
772
|
+
|
773
|
+
The value `npm init` should use by default for the package license.
|
774
|
+
|
775
|
+
|
776
|
+
|
777
|
+
#### `init-module`
|
778
|
+
|
779
|
+
* Default: "~/.npm-init.js"
|
780
|
+
* Type: Path
|
781
|
+
|
782
|
+
A module that will be loaded by the `npm init` command. See the
|
783
|
+
documentation for the
|
784
|
+
[init-package-json](https://github.com/npm/init-package-json) module for
|
785
|
+
more information, or [npm init](/commands/npm-init).
|
786
|
+
|
787
|
+
|
788
|
+
|
789
|
+
#### `init-version`
|
790
|
+
|
791
|
+
* Default: "1.0.0"
|
792
|
+
* Type: SemVer string
|
793
|
+
|
794
|
+
The value that `npm init` should use by default for the package version
|
795
|
+
number, if not already set in package.json.
|
796
|
+
|
797
|
+
|
798
|
+
|
799
|
+
#### `install-links`
|
800
|
+
|
801
|
+
* Default: false
|
802
|
+
* Type: Boolean
|
803
|
+
|
804
|
+
When set file: protocol dependencies will be packed and installed as regular
|
805
|
+
dependencies instead of creating a symlink. This option has no effect on
|
806
|
+
workspaces.
|
807
|
+
|
808
|
+
|
809
|
+
|
810
|
+
#### `install-strategy`
|
811
|
+
|
812
|
+
* Default: "hoisted"
|
813
|
+
* Type: "hoisted", "nested", "shallow", or "linked"
|
814
|
+
|
815
|
+
Sets the strategy for installing packages in node_modules. hoisted
|
816
|
+
(default): Install non-duplicated in top-level, and duplicated as necessary
|
817
|
+
within directory structure. nested: (formerly --legacy-bundling) install in
|
818
|
+
place, no hoisting. shallow (formerly --global-style) only install direct
|
819
|
+
deps at top-level. linked: (experimental) install in node_modules/.store,
|
820
|
+
link in place, unhoisted.
|
821
|
+
|
822
|
+
|
823
|
+
|
824
|
+
#### `json`
|
825
|
+
|
826
|
+
* Default: false
|
827
|
+
* Type: Boolean
|
828
|
+
|
829
|
+
Whether or not to output JSON data, rather than the normal output.
|
830
|
+
|
831
|
+
* In `npm pkg set` it enables parsing set values with JSON.parse() before
|
832
|
+
saving them to your `package.json`.
|
833
|
+
|
834
|
+
Not supported by all npm commands.
|
835
|
+
|
836
|
+
|
837
|
+
|
838
|
+
#### `legacy-peer-deps`
|
839
|
+
|
840
|
+
* Default: false
|
841
|
+
* Type: Boolean
|
842
|
+
|
843
|
+
Causes npm to completely ignore `peerDependencies` when building a package
|
844
|
+
tree, as in npm versions 3 through 6.
|
845
|
+
|
846
|
+
If a package cannot be installed because of overly strict `peerDependencies`
|
847
|
+
that collide, it provides a way to move forward resolving the situation.
|
848
|
+
|
849
|
+
This differs from `--omit=peer`, in that `--omit=peer` will avoid unpacking
|
850
|
+
`peerDependencies` on disk, but will still design a tree such that
|
851
|
+
`peerDependencies` _could_ be unpacked in a correct place.
|
852
|
+
|
853
|
+
Use of `legacy-peer-deps` is not recommended, as it will not enforce the
|
854
|
+
`peerDependencies` contract that meta-dependencies may rely on.
|
855
|
+
|
856
|
+
|
857
|
+
|
858
|
+
#### `link`
|
859
|
+
|
860
|
+
* Default: false
|
861
|
+
* Type: Boolean
|
862
|
+
|
863
|
+
Used with `npm ls`, limiting output to only those packages that are linked.
|
864
|
+
|
865
|
+
|
866
|
+
|
867
|
+
#### `local-address`
|
868
|
+
|
869
|
+
* Default: null
|
870
|
+
* Type: IP Address
|
871
|
+
|
872
|
+
The IP address of the local interface to use when making connections to the
|
873
|
+
npm registry. Must be IPv4 in versions of Node prior to 0.12.
|
874
|
+
|
875
|
+
|
876
|
+
|
877
|
+
#### `location`
|
878
|
+
|
879
|
+
* Default: "user" unless `--global` is passed, which will also set this value
|
880
|
+
to "global"
|
881
|
+
* Type: "global", "user", or "project"
|
882
|
+
|
883
|
+
When passed to `npm config` this refers to which config file to use.
|
884
|
+
|
885
|
+
When set to "global" mode, packages are installed into the `prefix` folder
|
886
|
+
instead of the current working directory. See
|
887
|
+
[folders](/configuring-npm/folders) for more on the differences in behavior.
|
888
|
+
|
889
|
+
* packages are installed into the `{prefix}/lib/node_modules` folder, instead
|
890
|
+
of the current working directory.
|
891
|
+
* bin files are linked to `{prefix}/bin`
|
892
|
+
* man pages are linked to `{prefix}/share/man`
|
893
|
+
|
894
|
+
|
895
|
+
|
896
|
+
#### `lockfile-version`
|
897
|
+
|
898
|
+
* Default: Version 3 if no lockfile, auto-converting v1 lockfiles to v3,
|
899
|
+
otherwise maintain current lockfile version.
|
900
|
+
* Type: null, 1, 2, 3, "1", "2", or "3"
|
901
|
+
|
902
|
+
Set the lockfile format version to be used in package-lock.json and
|
903
|
+
npm-shrinkwrap-json files. Possible options are:
|
904
|
+
|
905
|
+
1: The lockfile version used by npm versions 5 and 6. Lacks some data that
|
906
|
+
is used during the install, resulting in slower and possibly less
|
907
|
+
deterministic installs. Prevents lockfile churn when interoperating with
|
908
|
+
older npm versions.
|
909
|
+
|
910
|
+
2: The default lockfile version used by npm version 7 and 8. Includes both
|
911
|
+
the version 1 lockfile data and version 3 lockfile data, for maximum
|
912
|
+
determinism and interoperability, at the expense of more bytes on disk.
|
913
|
+
|
914
|
+
3: Only the new lockfile information introduced in npm version 7. Smaller on
|
915
|
+
disk than lockfile version 2, but not interoperable with older npm versions.
|
916
|
+
Ideal if all users are on npm version 7 and higher.
|
917
|
+
|
918
|
+
|
919
|
+
|
920
|
+
#### `loglevel`
|
921
|
+
|
922
|
+
* Default: "notice"
|
923
|
+
* Type: "silent", "error", "warn", "notice", "http", "info", "verbose", or
|
924
|
+
"silly"
|
925
|
+
|
926
|
+
What level of logs to report. All logs are written to a debug log, with the
|
927
|
+
path to that file printed if the execution of a command fails.
|
928
|
+
|
929
|
+
Any logs of a higher level than the setting are shown. The default is
|
930
|
+
"notice".
|
931
|
+
|
932
|
+
See also the `foreground-scripts` config.
|
933
|
+
|
934
|
+
|
935
|
+
|
936
|
+
#### `logs-dir`
|
937
|
+
|
938
|
+
* Default: A directory named `_logs` inside the cache
|
939
|
+
* Type: null or Path
|
940
|
+
|
941
|
+
The location of npm's log directory. See [`npm logging`](/using-npm/logging)
|
942
|
+
for more information.
|
943
|
+
|
944
|
+
|
945
|
+
|
946
|
+
#### `logs-max`
|
947
|
+
|
948
|
+
* Default: 10
|
949
|
+
* Type: Number
|
950
|
+
|
951
|
+
The maximum number of log files to store.
|
952
|
+
|
953
|
+
If set to 0, no log files will be written for the current run.
|
954
|
+
|
955
|
+
|
956
|
+
|
957
|
+
#### `long`
|
958
|
+
|
959
|
+
* Default: false
|
960
|
+
* Type: Boolean
|
961
|
+
|
962
|
+
Show extended information in `ls`, `search`, and `help-search`.
|
963
|
+
|
964
|
+
|
965
|
+
|
966
|
+
#### `maxsockets`
|
967
|
+
|
968
|
+
* Default: 15
|
969
|
+
* Type: Number
|
970
|
+
|
971
|
+
The maximum number of connections to use per origin (protocol/host/port
|
972
|
+
combination).
|
973
|
+
|
974
|
+
|
975
|
+
|
976
|
+
#### `message`
|
977
|
+
|
978
|
+
* Default: "%s"
|
979
|
+
* Type: String
|
980
|
+
|
981
|
+
Commit message which is used by `npm version` when creating version commit.
|
982
|
+
|
983
|
+
Any "%s" in the message will be replaced with the version number.
|
984
|
+
|
985
|
+
|
986
|
+
|
987
|
+
#### `node-options`
|
988
|
+
|
989
|
+
* Default: null
|
990
|
+
* Type: null or String
|
991
|
+
|
992
|
+
Options to pass through to Node.js via the `NODE_OPTIONS` environment
|
993
|
+
variable. This does not impact how npm itself is executed but it does impact
|
994
|
+
how lifecycle scripts are called.
|
995
|
+
|
996
|
+
|
997
|
+
|
998
|
+
#### `noproxy`
|
999
|
+
|
1000
|
+
* Default: The value of the NO_PROXY environment variable
|
1001
|
+
* Type: String (can be set multiple times)
|
1002
|
+
|
1003
|
+
Domain extensions that should bypass any proxies.
|
1004
|
+
|
1005
|
+
Also accepts a comma-delimited string.
|
1006
|
+
|
1007
|
+
|
1008
|
+
|
1009
|
+
#### `offline`
|
1010
|
+
|
1011
|
+
* Default: false
|
1012
|
+
* Type: Boolean
|
1013
|
+
|
1014
|
+
Force offline mode: no network requests will be done during install. To
|
1015
|
+
allow the CLI to fill in missing cache data, see `--prefer-offline`.
|
1016
|
+
|
1017
|
+
|
1018
|
+
|
1019
|
+
#### `omit`
|
1020
|
+
|
1021
|
+
* Default: 'dev' if the `NODE_ENV` environment variable is set to
|
1022
|
+
'production', otherwise empty.
|
1023
|
+
* Type: "dev", "optional", or "peer" (can be set multiple times)
|
1024
|
+
|
1025
|
+
Dependency types to omit from the installation tree on disk.
|
1026
|
+
|
1027
|
+
Note that these dependencies _are_ still resolved and added to the
|
1028
|
+
`package-lock.json` or `npm-shrinkwrap.json` file. They are just not
|
1029
|
+
physically installed on disk.
|
1030
|
+
|
1031
|
+
If a package type appears in both the `--include` and `--omit` lists, then
|
1032
|
+
it will be included.
|
1033
|
+
|
1034
|
+
If the resulting omit list includes `'dev'`, then the `NODE_ENV` environment
|
1035
|
+
variable will be set to `'production'` for all lifecycle scripts.
|
1036
|
+
|
1037
|
+
|
1038
|
+
|
1039
|
+
#### `omit-lockfile-registry-resolved`
|
1040
|
+
|
1041
|
+
* Default: false
|
1042
|
+
* Type: Boolean
|
1043
|
+
|
1044
|
+
This option causes npm to create lock files without a `resolved` key for
|
1045
|
+
registry dependencies. Subsequent installs will need to resolve tarball
|
1046
|
+
endpoints with the configured registry, likely resulting in a longer install
|
1047
|
+
time.
|
1048
|
+
|
1049
|
+
|
1050
|
+
|
1051
|
+
#### `os`
|
1052
|
+
|
1053
|
+
* Default: null
|
1054
|
+
* Type: null or String
|
1055
|
+
|
1056
|
+
Override OS of native modules to install. Acceptable values are same as `os`
|
1057
|
+
field of package.json, which comes from `process.platform`.
|
1058
|
+
|
1059
|
+
|
1060
|
+
|
1061
|
+
#### `otp`
|
1062
|
+
|
1063
|
+
* Default: null
|
1064
|
+
* Type: null or String
|
1065
|
+
|
1066
|
+
This is a one-time password from a two-factor authenticator. It's needed
|
1067
|
+
when publishing or changing package permissions with `npm access`.
|
1068
|
+
|
1069
|
+
If not set, and a registry response fails with a challenge for a one-time
|
1070
|
+
password, npm will prompt on the command line for one.
|
1071
|
+
|
1072
|
+
|
1073
|
+
|
1074
|
+
#### `pack-destination`
|
1075
|
+
|
1076
|
+
* Default: "."
|
1077
|
+
* Type: String
|
1078
|
+
|
1079
|
+
Directory in which `npm pack` will save tarballs.
|
1080
|
+
|
1081
|
+
|
1082
|
+
|
1083
|
+
#### `package`
|
1084
|
+
|
1085
|
+
* Default:
|
1086
|
+
* Type: String (can be set multiple times)
|
1087
|
+
|
1088
|
+
The package or packages to install for [`npm exec`](/commands/npm-exec)
|
1089
|
+
|
1090
|
+
|
1091
|
+
|
1092
|
+
#### `package-lock`
|
1093
|
+
|
1094
|
+
* Default: true
|
1095
|
+
* Type: Boolean
|
1096
|
+
|
1097
|
+
If set to false, then ignore `package-lock.json` files when installing. This
|
1098
|
+
will also prevent _writing_ `package-lock.json` if `save` is true.
|
1099
|
+
|
1100
|
+
|
1101
|
+
|
1102
|
+
#### `package-lock-only`
|
1103
|
+
|
1104
|
+
* Default: false
|
1105
|
+
* Type: Boolean
|
1106
|
+
|
1107
|
+
If set to true, the current operation will only use the `package-lock.json`,
|
1108
|
+
ignoring `node_modules`.
|
1109
|
+
|
1110
|
+
For `update` this means only the `package-lock.json` will be updated,
|
1111
|
+
instead of checking `node_modules` and downloading dependencies.
|
1112
|
+
|
1113
|
+
For `list` this means the output will be based on the tree described by the
|
1114
|
+
`package-lock.json`, rather than the contents of `node_modules`.
|
1115
|
+
|
1116
|
+
|
1117
|
+
|
1118
|
+
#### `parseable`
|
1119
|
+
|
1120
|
+
* Default: false
|
1121
|
+
* Type: Boolean
|
1122
|
+
|
1123
|
+
Output parseable results from commands that write to standard output. For
|
1124
|
+
`npm search`, this will be tab-separated table format.
|
1125
|
+
|
1126
|
+
|
1127
|
+
|
1128
|
+
#### `prefer-dedupe`
|
1129
|
+
|
1130
|
+
* Default: false
|
1131
|
+
* Type: Boolean
|
1132
|
+
|
1133
|
+
Prefer to deduplicate packages if possible, rather than choosing a newer
|
1134
|
+
version of a dependency.
|
1135
|
+
|
1136
|
+
|
1137
|
+
|
1138
|
+
#### `prefer-offline`
|
1139
|
+
|
1140
|
+
* Default: false
|
1141
|
+
* Type: Boolean
|
1142
|
+
|
1143
|
+
If true, staleness checks for cached data will be bypassed, but missing data
|
1144
|
+
will be requested from the server. To force full offline mode, use
|
1145
|
+
`--offline`.
|
1146
|
+
|
1147
|
+
|
1148
|
+
|
1149
|
+
#### `prefer-online`
|
1150
|
+
|
1151
|
+
* Default: false
|
1152
|
+
* Type: Boolean
|
1153
|
+
|
1154
|
+
If true, staleness checks for cached data will be forced, making the CLI
|
1155
|
+
look for updates immediately even for fresh package data.
|
1156
|
+
|
1157
|
+
|
1158
|
+
|
1159
|
+
#### `prefix`
|
1160
|
+
|
1161
|
+
* Default: In global mode, the folder where the node executable is installed.
|
1162
|
+
Otherwise, the nearest parent folder containing either a package.json file
|
1163
|
+
or a node_modules folder.
|
1164
|
+
* Type: Path
|
1165
|
+
|
1166
|
+
The location to install global items. If set on the command line, then it
|
1167
|
+
forces non-global commands to run in the specified folder.
|
1168
|
+
|
1169
|
+
|
1170
|
+
|
1171
|
+
#### `preid`
|
1172
|
+
|
1173
|
+
* Default: ""
|
1174
|
+
* Type: String
|
1175
|
+
|
1176
|
+
The "prerelease identifier" to use as a prefix for the "prerelease" part of
|
1177
|
+
a semver. Like the `rc` in `1.2.0-rc.8`.
|
1178
|
+
|
1179
|
+
|
1180
|
+
|
1181
|
+
#### `progress`
|
1182
|
+
|
1183
|
+
* Default: `true` unless running in a known CI system
|
1184
|
+
* Type: Boolean
|
1185
|
+
|
1186
|
+
When set to `true`, npm will display a progress bar during time intensive
|
1187
|
+
operations, if `process.stderr` is a TTY.
|
1188
|
+
|
1189
|
+
Set to `false` to suppress the progress bar.
|
1190
|
+
|
1191
|
+
|
1192
|
+
|
1193
|
+
#### `provenance`
|
1194
|
+
|
1195
|
+
* Default: false
|
1196
|
+
* Type: Boolean
|
1197
|
+
|
1198
|
+
When publishing from a supported cloud CI/CD system, the package will be
|
1199
|
+
publicly linked to where it was built and published from.
|
1200
|
+
|
1201
|
+
This config can not be used with: `provenance-file`
|
1202
|
+
|
1203
|
+
#### `provenance-file`
|
1204
|
+
|
1205
|
+
* Default: null
|
1206
|
+
* Type: Path
|
1207
|
+
|
1208
|
+
When publishing, the provenance bundle at the given path will be used.
|
1209
|
+
|
1210
|
+
This config can not be used with: `provenance`
|
1211
|
+
|
1212
|
+
#### `proxy`
|
1213
|
+
|
1214
|
+
* Default: null
|
1215
|
+
* Type: null, false, or URL
|
1216
|
+
|
1217
|
+
A proxy to use for outgoing http requests. If the `HTTP_PROXY` or
|
1218
|
+
`http_proxy` environment variables are set, proxy settings will be honored
|
1219
|
+
by the underlying `request` library.
|
1220
|
+
|
1221
|
+
|
1222
|
+
|
1223
|
+
#### `read-only`
|
1224
|
+
|
1225
|
+
* Default: false
|
1226
|
+
* Type: Boolean
|
1227
|
+
|
1228
|
+
This is used to mark a token as unable to publish when configuring limited
|
1229
|
+
access tokens with the `npm token create` command.
|
1230
|
+
|
1231
|
+
|
1232
|
+
|
1233
|
+
#### `rebuild-bundle`
|
1234
|
+
|
1235
|
+
* Default: true
|
1236
|
+
* Type: Boolean
|
1237
|
+
|
1238
|
+
Rebuild bundled dependencies after installation.
|
1239
|
+
|
1240
|
+
|
1241
|
+
|
1242
|
+
#### `registry`
|
1243
|
+
|
1244
|
+
* Default: "https://registry.npmjs.org/"
|
1245
|
+
* Type: URL
|
1246
|
+
|
1247
|
+
The base URL of the npm registry.
|
1248
|
+
|
1249
|
+
|
1250
|
+
|
1251
|
+
#### `replace-registry-host`
|
1252
|
+
|
1253
|
+
* Default: "npmjs"
|
1254
|
+
* Type: "npmjs", "never", "always", or String
|
1255
|
+
|
1256
|
+
Defines behavior for replacing the registry host in a lockfile with the
|
1257
|
+
configured registry.
|
1258
|
+
|
1259
|
+
The default behavior is to replace package dist URLs from the default
|
1260
|
+
registry (https://registry.npmjs.org) to the configured registry. If set to
|
1261
|
+
"never", then use the registry value. If set to "always", then replace the
|
1262
|
+
registry host with the configured host every time.
|
1263
|
+
|
1264
|
+
You may also specify a bare hostname (e.g., "registry.npmjs.org").
|
1265
|
+
|
1266
|
+
|
1267
|
+
|
1268
|
+
#### `save`
|
1269
|
+
|
1270
|
+
* Default: `true` unless when using `npm update` where it defaults to `false`
|
1271
|
+
* Type: Boolean
|
1272
|
+
|
1273
|
+
Save installed packages to a `package.json` file as dependencies.
|
1274
|
+
|
1275
|
+
When used with the `npm rm` command, removes the dependency from
|
1276
|
+
`package.json`.
|
1277
|
+
|
1278
|
+
Will also prevent writing to `package-lock.json` if set to `false`.
|
1279
|
+
|
1280
|
+
|
1281
|
+
|
1282
|
+
#### `save-bundle`
|
1283
|
+
|
1284
|
+
* Default: false
|
1285
|
+
* Type: Boolean
|
1286
|
+
|
1287
|
+
If a package would be saved at install time by the use of `--save`,
|
1288
|
+
`--save-dev`, or `--save-optional`, then also put it in the
|
1289
|
+
`bundleDependencies` list.
|
1290
|
+
|
1291
|
+
Ignored if `--save-peer` is set, since peerDependencies cannot be bundled.
|
1292
|
+
|
1293
|
+
|
1294
|
+
|
1295
|
+
#### `save-dev`
|
1296
|
+
|
1297
|
+
* Default: false
|
1298
|
+
* Type: Boolean
|
1299
|
+
|
1300
|
+
Save installed packages to a package.json file as `devDependencies`.
|
1301
|
+
|
1302
|
+
|
1303
|
+
|
1304
|
+
#### `save-exact`
|
1305
|
+
|
1306
|
+
* Default: false
|
1307
|
+
* Type: Boolean
|
1308
|
+
|
1309
|
+
Dependencies saved to package.json will be configured with an exact version
|
1310
|
+
rather than using npm's default semver range operator.
|
1311
|
+
|
1312
|
+
|
1313
|
+
|
1314
|
+
#### `save-optional`
|
1315
|
+
|
1316
|
+
* Default: false
|
1317
|
+
* Type: Boolean
|
1318
|
+
|
1319
|
+
Save installed packages to a package.json file as `optionalDependencies`.
|
1320
|
+
|
1321
|
+
|
1322
|
+
|
1323
|
+
#### `save-peer`
|
1324
|
+
|
1325
|
+
* Default: false
|
1326
|
+
* Type: Boolean
|
1327
|
+
|
1328
|
+
Save installed packages to a package.json file as `peerDependencies`
|
1329
|
+
|
1330
|
+
|
1331
|
+
|
1332
|
+
#### `save-prefix`
|
1333
|
+
|
1334
|
+
* Default: "^"
|
1335
|
+
* Type: String
|
1336
|
+
|
1337
|
+
Configure how versions of packages installed to a package.json file via
|
1338
|
+
`--save` or `--save-dev` get prefixed.
|
1339
|
+
|
1340
|
+
For example if a package has version `1.2.3`, by default its version is set
|
1341
|
+
to `^1.2.3` which allows minor upgrades for that package, but after `npm
|
1342
|
+
config set save-prefix='~'` it would be set to `~1.2.3` which only allows
|
1343
|
+
patch upgrades.
|
1344
|
+
|
1345
|
+
|
1346
|
+
|
1347
|
+
#### `save-prod`
|
1348
|
+
|
1349
|
+
* Default: false
|
1350
|
+
* Type: Boolean
|
1351
|
+
|
1352
|
+
Save installed packages into `dependencies` specifically. This is useful if
|
1353
|
+
a package already exists in `devDependencies` or `optionalDependencies`, but
|
1354
|
+
you want to move it to be a non-optional production dependency.
|
1355
|
+
|
1356
|
+
This is the default behavior if `--save` is true, and neither `--save-dev`
|
1357
|
+
or `--save-optional` are true.
|
1358
|
+
|
1359
|
+
|
1360
|
+
|
1361
|
+
#### `sbom-format`
|
1362
|
+
|
1363
|
+
* Default: null
|
1364
|
+
* Type: "cyclonedx" or "spdx"
|
1365
|
+
|
1366
|
+
SBOM format to use when generating SBOMs.
|
1367
|
+
|
1368
|
+
|
1369
|
+
|
1370
|
+
#### `sbom-type`
|
1371
|
+
|
1372
|
+
* Default: "library"
|
1373
|
+
* Type: "library", "application", or "framework"
|
1374
|
+
|
1375
|
+
The type of package described by the generated SBOM. For SPDX, this is the
|
1376
|
+
value for the `primaryPackagePurpose` field. For CycloneDX, this is the
|
1377
|
+
value for the `type` field.
|
1378
|
+
|
1379
|
+
|
1380
|
+
|
1381
|
+
#### `scope`
|
1382
|
+
|
1383
|
+
* Default: the scope of the current project, if any, or ""
|
1384
|
+
* Type: String
|
1385
|
+
|
1386
|
+
Associate an operation with a scope for a scoped registry.
|
1387
|
+
|
1388
|
+
Useful when logging in to or out of a private registry:
|
1389
|
+
|
1390
|
+
```
|
1391
|
+
# log in, linking the scope to the custom registry
|
1392
|
+
npm login --scope=@mycorp --registry=https://registry.mycorp.com
|
1393
|
+
|
1394
|
+
# log out, removing the link and the auth token
|
1395
|
+
npm logout --scope=@mycorp
|
1396
|
+
```
|
1397
|
+
|
1398
|
+
This will cause `@mycorp` to be mapped to the registry for future
|
1399
|
+
installation of packages specified according to the pattern
|
1400
|
+
`@mycorp/package`.
|
1401
|
+
|
1402
|
+
This will also cause `npm init` to create a scoped package.
|
1403
|
+
|
1404
|
+
```
|
1405
|
+
# accept all defaults, and create a package named "@foo/whatever",
|
1406
|
+
# instead of just named "whatever"
|
1407
|
+
npm init --scope=@foo --yes
|
1408
|
+
```
|
1409
|
+
|
1410
|
+
|
1411
|
+
|
1412
|
+
#### `script-shell`
|
1413
|
+
|
1414
|
+
* Default: '/bin/sh' on POSIX systems, 'cmd.exe' on Windows
|
1415
|
+
* Type: null or String
|
1416
|
+
|
1417
|
+
The shell to use for scripts run with the `npm exec`, `npm run` and `npm
|
1418
|
+
init <package-spec>` commands.
|
1419
|
+
|
1420
|
+
|
1421
|
+
|
1422
|
+
#### `searchexclude`
|
1423
|
+
|
1424
|
+
* Default: ""
|
1425
|
+
* Type: String
|
1426
|
+
|
1427
|
+
Space-separated options that limit the results from search.
|
1428
|
+
|
1429
|
+
|
1430
|
+
|
1431
|
+
#### `searchlimit`
|
1432
|
+
|
1433
|
+
* Default: 20
|
1434
|
+
* Type: Number
|
1435
|
+
|
1436
|
+
Number of items to limit search results to. Will not apply at all to legacy
|
1437
|
+
searches.
|
1438
|
+
|
1439
|
+
|
1440
|
+
|
1441
|
+
#### `searchopts`
|
1442
|
+
|
1443
|
+
* Default: ""
|
1444
|
+
* Type: String
|
1445
|
+
|
1446
|
+
Space-separated options that are always passed to search.
|
1447
|
+
|
1448
|
+
|
1449
|
+
|
1450
|
+
#### `searchstaleness`
|
1451
|
+
|
1452
|
+
* Default: 900
|
1453
|
+
* Type: Number
|
1454
|
+
|
1455
|
+
The age of the cache, in seconds, before another registry request is made if
|
1456
|
+
using legacy search endpoint.
|
1457
|
+
|
1458
|
+
|
1459
|
+
|
1460
|
+
#### `shell`
|
1461
|
+
|
1462
|
+
* Default: SHELL environment variable, or "bash" on Posix, or "cmd.exe" on
|
1463
|
+
Windows
|
1464
|
+
* Type: String
|
1465
|
+
|
1466
|
+
The shell to run for the `npm explore` command.
|
1467
|
+
|
1468
|
+
|
1469
|
+
|
1470
|
+
#### `sign-git-commit`
|
1471
|
+
|
1472
|
+
* Default: false
|
1473
|
+
* Type: Boolean
|
1474
|
+
|
1475
|
+
If set to true, then the `npm version` command will commit the new package
|
1476
|
+
version using `-S` to add a signature.
|
1477
|
+
|
1478
|
+
Note that git requires you to have set up GPG keys in your git configs for
|
1479
|
+
this to work properly.
|
1480
|
+
|
1481
|
+
|
1482
|
+
|
1483
|
+
#### `sign-git-tag`
|
1484
|
+
|
1485
|
+
* Default: false
|
1486
|
+
* Type: Boolean
|
1487
|
+
|
1488
|
+
If set to true, then the `npm version` command will tag the version using
|
1489
|
+
`-s` to add a signature.
|
1490
|
+
|
1491
|
+
Note that git requires you to have set up GPG keys in your git configs for
|
1492
|
+
this to work properly.
|
1493
|
+
|
1494
|
+
|
1495
|
+
|
1496
|
+
#### `strict-peer-deps`
|
1497
|
+
|
1498
|
+
* Default: false
|
1499
|
+
* Type: Boolean
|
1500
|
+
|
1501
|
+
If set to `true`, and `--legacy-peer-deps` is not set, then _any_
|
1502
|
+
conflicting `peerDependencies` will be treated as an install failure, even
|
1503
|
+
if npm could reasonably guess the appropriate resolution based on non-peer
|
1504
|
+
dependency relationships.
|
1505
|
+
|
1506
|
+
By default, conflicting `peerDependencies` deep in the dependency graph will
|
1507
|
+
be resolved using the nearest non-peer dependency specification, even if
|
1508
|
+
doing so will result in some packages receiving a peer dependency outside
|
1509
|
+
the range set in their package's `peerDependencies` object.
|
1510
|
+
|
1511
|
+
When such an override is performed, a warning is printed, explaining the
|
1512
|
+
conflict and the packages involved. If `--strict-peer-deps` is set, then
|
1513
|
+
this warning is treated as a failure.
|
1514
|
+
|
1515
|
+
|
1516
|
+
|
1517
|
+
#### `strict-ssl`
|
1518
|
+
|
1519
|
+
* Default: true
|
1520
|
+
* Type: Boolean
|
1521
|
+
|
1522
|
+
Whether or not to do SSL key validation when making requests to the registry
|
1523
|
+
via https.
|
1524
|
+
|
1525
|
+
See also the `ca` config.
|
1526
|
+
|
1527
|
+
|
1528
|
+
|
1529
|
+
#### `tag`
|
1530
|
+
|
1531
|
+
* Default: "latest"
|
1532
|
+
* Type: String
|
1533
|
+
|
1534
|
+
If you ask npm to install a package and don't tell it a specific version,
|
1535
|
+
then it will install the specified tag.
|
1536
|
+
|
1537
|
+
Also the tag that is added to the package@version specified by the `npm tag`
|
1538
|
+
command, if no explicit tag is given.
|
1539
|
+
|
1540
|
+
When used by the `npm diff` command, this is the tag used to fetch the
|
1541
|
+
tarball that will be compared with the local files by default.
|
1542
|
+
|
1543
|
+
|
1544
|
+
|
1545
|
+
#### `tag-version-prefix`
|
1546
|
+
|
1547
|
+
* Default: "v"
|
1548
|
+
* Type: String
|
1549
|
+
|
1550
|
+
If set, alters the prefix used when tagging a new version when performing a
|
1551
|
+
version increment using `npm version`. To remove the prefix altogether, set
|
1552
|
+
it to the empty string: `""`.
|
1553
|
+
|
1554
|
+
Because other tools may rely on the convention that npm version tags look
|
1555
|
+
like `v1.0.0`, _only use this property if it is absolutely necessary_. In
|
1556
|
+
particular, use care when overriding this setting for public packages.
|
1557
|
+
|
1558
|
+
|
1559
|
+
|
1560
|
+
#### `timing`
|
1561
|
+
|
1562
|
+
* Default: false
|
1563
|
+
* Type: Boolean
|
1564
|
+
|
1565
|
+
If true, writes timing information to a process specific json file in the
|
1566
|
+
cache or `logs-dir`. The file name ends with `-timing.json`.
|
1567
|
+
|
1568
|
+
You can quickly view it with this [json](https://npm.im/json) command line:
|
1569
|
+
`cat ~/.npm/_logs/*-timing.json | npm exec -- json -g`.
|
1570
|
+
|
1571
|
+
Timing information will also be reported in the terminal. To suppress this
|
1572
|
+
while still writing the timing file, use `--silent`.
|
1573
|
+
|
1574
|
+
|
1575
|
+
|
1576
|
+
#### `umask`
|
1577
|
+
|
1578
|
+
* Default: 0
|
1579
|
+
* Type: Octal numeric string in range 0000..0777 (0..511)
|
1580
|
+
|
1581
|
+
The "umask" value to use when setting the file creation mode on files and
|
1582
|
+
folders.
|
1583
|
+
|
1584
|
+
Folders and executables are given a mode which is `0o777` masked against
|
1585
|
+
this value. Other files are given a mode which is `0o666` masked against
|
1586
|
+
this value.
|
1587
|
+
|
1588
|
+
Note that the underlying system will _also_ apply its own umask value to
|
1589
|
+
files and folders that are created, and npm does not circumvent this, but
|
1590
|
+
rather adds the `--umask` config to it.
|
1591
|
+
|
1592
|
+
Thus, the effective default umask value on most POSIX systems is 0o22,
|
1593
|
+
meaning that folders and executables are created with a mode of 0o755 and
|
1594
|
+
other files are created with a mode of 0o644.
|
1595
|
+
|
1596
|
+
|
1597
|
+
|
1598
|
+
#### `unicode`
|
1599
|
+
|
1600
|
+
* Default: false on windows, true on mac/unix systems with a unicode locale,
|
1601
|
+
as defined by the `LC_ALL`, `LC_CTYPE`, or `LANG` environment variables.
|
1602
|
+
* Type: Boolean
|
1603
|
+
|
1604
|
+
When set to true, npm uses unicode characters in the tree output. When
|
1605
|
+
false, it uses ascii characters instead of unicode glyphs.
|
1606
|
+
|
1607
|
+
|
1608
|
+
|
1609
|
+
#### `update-notifier`
|
1610
|
+
|
1611
|
+
* Default: true
|
1612
|
+
* Type: Boolean
|
1613
|
+
|
1614
|
+
Set to false to suppress the update notification when using an older version
|
1615
|
+
of npm than the latest.
|
1616
|
+
|
1617
|
+
|
1618
|
+
|
1619
|
+
#### `usage`
|
1620
|
+
|
1621
|
+
* Default: false
|
1622
|
+
* Type: Boolean
|
1623
|
+
|
1624
|
+
Show short usage output about the command specified.
|
1625
|
+
|
1626
|
+
|
1627
|
+
|
1628
|
+
#### `user-agent`
|
1629
|
+
|
1630
|
+
* Default: "npm/{npm-version} node/{node-version} {platform} {arch}
|
1631
|
+
workspaces/{workspaces} {ci}"
|
1632
|
+
* Type: String
|
1633
|
+
|
1634
|
+
Sets the User-Agent request header. The following fields are replaced with
|
1635
|
+
their actual counterparts:
|
1636
|
+
|
1637
|
+
* `{npm-version}` - The npm version in use
|
1638
|
+
* `{node-version}` - The Node.js version in use
|
1639
|
+
* `{platform}` - The value of `process.platform`
|
1640
|
+
* `{arch}` - The value of `process.arch`
|
1641
|
+
* `{workspaces}` - Set to `true` if the `workspaces` or `workspace` options
|
1642
|
+
are set.
|
1643
|
+
* `{ci}` - The value of the `ci-name` config, if set, prefixed with `ci/`, or
|
1644
|
+
an empty string if `ci-name` is empty.
|
1645
|
+
|
1646
|
+
|
1647
|
+
|
1648
|
+
#### `userconfig`
|
1649
|
+
|
1650
|
+
* Default: "~/.npmrc"
|
1651
|
+
* Type: Path
|
1652
|
+
|
1653
|
+
The location of user-level configuration settings.
|
1654
|
+
|
1655
|
+
This may be overridden by the `npm_config_userconfig` environment variable
|
1656
|
+
or the `--userconfig` command line option, but may _not_ be overridden by
|
1657
|
+
settings in the `globalconfig` file.
|
1658
|
+
|
1659
|
+
|
1660
|
+
|
1661
|
+
#### `version`
|
1662
|
+
|
1663
|
+
* Default: false
|
1664
|
+
* Type: Boolean
|
1665
|
+
|
1666
|
+
If true, output the npm version and exit successfully.
|
1667
|
+
|
1668
|
+
Only relevant when specified explicitly on the command line.
|
1669
|
+
|
1670
|
+
|
1671
|
+
|
1672
|
+
#### `versions`
|
1673
|
+
|
1674
|
+
* Default: false
|
1675
|
+
* Type: Boolean
|
1676
|
+
|
1677
|
+
If true, output the npm version as well as node's `process.versions` map and
|
1678
|
+
the version in the current working directory's `package.json` file if one
|
1679
|
+
exists, and exit successfully.
|
1680
|
+
|
1681
|
+
Only relevant when specified explicitly on the command line.
|
1682
|
+
|
1683
|
+
|
1684
|
+
|
1685
|
+
#### `viewer`
|
1686
|
+
|
1687
|
+
* Default: "man" on Posix, "browser" on Windows
|
1688
|
+
* Type: String
|
1689
|
+
|
1690
|
+
The program to use to view help content.
|
1691
|
+
|
1692
|
+
Set to `"browser"` to view html help content in the default web browser.
|
1693
|
+
|
1694
|
+
|
1695
|
+
|
1696
|
+
#### `which`
|
1697
|
+
|
1698
|
+
* Default: null
|
1699
|
+
* Type: null or Number
|
1700
|
+
|
1701
|
+
If there are multiple funding sources, which 1-indexed source URL to open.
|
1702
|
+
|
1703
|
+
|
1704
|
+
|
1705
|
+
#### `workspace`
|
1706
|
+
|
1707
|
+
* Default:
|
1708
|
+
* Type: String (can be set multiple times)
|
1709
|
+
|
1710
|
+
Enable running a command in the context of the configured workspaces of the
|
1711
|
+
current project while filtering by running only the workspaces defined by
|
1712
|
+
this configuration option.
|
1713
|
+
|
1714
|
+
Valid values for the `workspace` config are either:
|
1715
|
+
|
1716
|
+
* Workspace names
|
1717
|
+
* Path to a workspace directory
|
1718
|
+
* Path to a parent workspace directory (will result in selecting all
|
1719
|
+
workspaces within that folder)
|
1720
|
+
|
1721
|
+
When set for the `npm init` command, this may be set to the folder of a
|
1722
|
+
workspace which does not yet exist, to create the folder and set it up as a
|
1723
|
+
brand new workspace within the project.
|
1724
|
+
|
1725
|
+
This value is not exported to the environment for child processes.
|
1726
|
+
|
1727
|
+
#### `workspaces`
|
1728
|
+
|
1729
|
+
* Default: null
|
1730
|
+
* Type: null or Boolean
|
1731
|
+
|
1732
|
+
Set to true to run the command in the context of **all** configured
|
1733
|
+
workspaces.
|
1734
|
+
|
1735
|
+
Explicitly setting this to false will cause commands like `install` to
|
1736
|
+
ignore workspaces altogether. When not set explicitly:
|
1737
|
+
|
1738
|
+
- Commands that operate on the `node_modules` tree (install, update, etc.)
|
1739
|
+
will link workspaces into the `node_modules` folder. - Commands that do
|
1740
|
+
other things (test, exec, publish, etc.) will operate on the root project,
|
1741
|
+
_unless_ one or more workspaces are specified in the `workspace` config.
|
1742
|
+
|
1743
|
+
This value is not exported to the environment for child processes.
|
1744
|
+
|
1745
|
+
#### `workspaces-update`
|
1746
|
+
|
1747
|
+
* Default: true
|
1748
|
+
* Type: Boolean
|
1749
|
+
|
1750
|
+
If set to true, the npm cli will run an update after operations that may
|
1751
|
+
possibly change the workspaces installed to the `node_modules` folder.
|
1752
|
+
|
1753
|
+
|
1754
|
+
|
1755
|
+
#### `yes`
|
1756
|
+
|
1757
|
+
* Default: null
|
1758
|
+
* Type: null or Boolean
|
1759
|
+
|
1760
|
+
Automatically answer "yes" to any prompts that npm might print on the
|
1761
|
+
command line.
|
1762
|
+
|
1763
|
+
|
1764
|
+
|
1765
|
+
#### `also`
|
1766
|
+
|
1767
|
+
* Default: null
|
1768
|
+
* Type: null, "dev", or "development"
|
1769
|
+
* DEPRECATED: Please use --include=dev instead.
|
1770
|
+
|
1771
|
+
When set to `dev` or `development`, this is an alias for `--include=dev`.
|
1772
|
+
|
1773
|
+
|
1774
|
+
|
1775
|
+
#### `cache-max`
|
1776
|
+
|
1777
|
+
* Default: Infinity
|
1778
|
+
* Type: Number
|
1779
|
+
* DEPRECATED: This option has been deprecated in favor of `--prefer-online`
|
1780
|
+
|
1781
|
+
`--cache-max=0` is an alias for `--prefer-online`
|
1782
|
+
|
1783
|
+
|
1784
|
+
|
1785
|
+
#### `cache-min`
|
1786
|
+
|
1787
|
+
* Default: 0
|
1788
|
+
* Type: Number
|
1789
|
+
* DEPRECATED: This option has been deprecated in favor of `--prefer-offline`.
|
1790
|
+
|
1791
|
+
`--cache-min=9999 (or bigger)` is an alias for `--prefer-offline`.
|
1792
|
+
|
1793
|
+
|
1794
|
+
|
1795
|
+
#### `cert`
|
1796
|
+
|
1797
|
+
* Default: null
|
1798
|
+
* Type: null or String
|
1799
|
+
* DEPRECATED: `key` and `cert` are no longer used for most registry
|
1800
|
+
operations. Use registry scoped `keyfile` and `certfile` instead. Example:
|
1801
|
+
//other-registry.tld/:keyfile=/path/to/key.pem
|
1802
|
+
//other-registry.tld/:certfile=/path/to/cert.crt
|
1803
|
+
|
1804
|
+
A client certificate to pass when accessing the registry. Values should be
|
1805
|
+
in PEM format (Windows calls it "Base-64 encoded X.509 (.CER)") with
|
1806
|
+
newlines replaced by the string "\n". For example:
|
1807
|
+
|
1808
|
+
```ini
|
1809
|
+
cert="-----BEGIN CERTIFICATE-----\nXXXX\nXXXX\n-----END CERTIFICATE-----"
|
1810
|
+
```
|
1811
|
+
|
1812
|
+
It is _not_ the path to a certificate file, though you can set a
|
1813
|
+
registry-scoped "certfile" path like
|
1814
|
+
"//other-registry.tld/:certfile=/path/to/cert.pem".
|
1815
|
+
|
1816
|
+
|
1817
|
+
|
1818
|
+
#### `dev`
|
1819
|
+
|
1820
|
+
* Default: false
|
1821
|
+
* Type: Boolean
|
1822
|
+
* DEPRECATED: Please use --include=dev instead.
|
1823
|
+
|
1824
|
+
Alias for `--include=dev`.
|
1825
|
+
|
1826
|
+
|
1827
|
+
|
1828
|
+
#### `global-style`
|
1829
|
+
|
1830
|
+
* Default: false
|
1831
|
+
* Type: Boolean
|
1832
|
+
* DEPRECATED: This option has been deprecated in favor of
|
1833
|
+
`--install-strategy=shallow`
|
1834
|
+
|
1835
|
+
Only install direct dependencies in the top level `node_modules`, but hoist
|
1836
|
+
on deeper dependencies. Sets `--install-strategy=shallow`.
|
1837
|
+
|
1838
|
+
|
1839
|
+
|
1840
|
+
#### `init.author.email`
|
1841
|
+
|
1842
|
+
* Default: ""
|
1843
|
+
* Type: String
|
1844
|
+
* DEPRECATED: Use `--init-author-email` instead.
|
1845
|
+
|
1846
|
+
Alias for `--init-author-email`
|
1847
|
+
|
1848
|
+
|
1849
|
+
|
1850
|
+
#### `init.author.name`
|
1851
|
+
|
1852
|
+
* Default: ""
|
1853
|
+
* Type: String
|
1854
|
+
* DEPRECATED: Use `--init-author-name` instead.
|
1855
|
+
|
1856
|
+
Alias for `--init-author-name`
|
1857
|
+
|
1858
|
+
|
1859
|
+
|
1860
|
+
#### `init.author.url`
|
1861
|
+
|
1862
|
+
* Default: ""
|
1863
|
+
* Type: "" or URL
|
1864
|
+
* DEPRECATED: Use `--init-author-url` instead.
|
1865
|
+
|
1866
|
+
Alias for `--init-author-url`
|
1867
|
+
|
1868
|
+
|
1869
|
+
|
1870
|
+
#### `init.license`
|
1871
|
+
|
1872
|
+
* Default: "ISC"
|
1873
|
+
* Type: String
|
1874
|
+
* DEPRECATED: Use `--init-license` instead.
|
1875
|
+
|
1876
|
+
Alias for `--init-license`
|
1877
|
+
|
1878
|
+
|
1879
|
+
|
1880
|
+
#### `init.module`
|
1881
|
+
|
1882
|
+
* Default: "~/.npm-init.js"
|
1883
|
+
* Type: Path
|
1884
|
+
* DEPRECATED: Use `--init-module` instead.
|
1885
|
+
|
1886
|
+
Alias for `--init-module`
|
1887
|
+
|
1888
|
+
|
1889
|
+
|
1890
|
+
#### `init.version`
|
1891
|
+
|
1892
|
+
* Default: "1.0.0"
|
1893
|
+
* Type: SemVer string
|
1894
|
+
* DEPRECATED: Use `--init-version` instead.
|
1895
|
+
|
1896
|
+
Alias for `--init-version`
|
1897
|
+
|
1898
|
+
|
1899
|
+
|
1900
|
+
#### `key`
|
1901
|
+
|
1902
|
+
* Default: null
|
1903
|
+
* Type: null or String
|
1904
|
+
* DEPRECATED: `key` and `cert` are no longer used for most registry
|
1905
|
+
operations. Use registry scoped `keyfile` and `certfile` instead. Example:
|
1906
|
+
//other-registry.tld/:keyfile=/path/to/key.pem
|
1907
|
+
//other-registry.tld/:certfile=/path/to/cert.crt
|
1908
|
+
|
1909
|
+
A client key to pass when accessing the registry. Values should be in PEM
|
1910
|
+
format with newlines replaced by the string "\n". For example:
|
1911
|
+
|
1912
|
+
```ini
|
1913
|
+
key="-----BEGIN PRIVATE KEY-----\nXXXX\nXXXX\n-----END PRIVATE KEY-----"
|
1914
|
+
```
|
1915
|
+
|
1916
|
+
It is _not_ the path to a key file, though you can set a registry-scoped
|
1917
|
+
"keyfile" path like "//other-registry.tld/:keyfile=/path/to/key.pem".
|
1918
|
+
|
1919
|
+
|
1920
|
+
|
1921
|
+
#### `legacy-bundling`
|
1922
|
+
|
1923
|
+
* Default: false
|
1924
|
+
* Type: Boolean
|
1925
|
+
* DEPRECATED: This option has been deprecated in favor of
|
1926
|
+
`--install-strategy=nested`
|
1927
|
+
|
1928
|
+
Instead of hoisting package installs in `node_modules`, install packages in
|
1929
|
+
the same manner that they are depended on. This may cause very deep
|
1930
|
+
directory structures and duplicate package installs as there is no
|
1931
|
+
de-duplicating. Sets `--install-strategy=nested`.
|
1932
|
+
|
1933
|
+
|
1934
|
+
|
1935
|
+
#### `only`
|
1936
|
+
|
1937
|
+
* Default: null
|
1938
|
+
* Type: null, "prod", or "production"
|
1939
|
+
* DEPRECATED: Use `--omit=dev` to omit dev dependencies from the install.
|
1940
|
+
|
1941
|
+
When set to `prod` or `production`, this is an alias for `--omit=dev`.
|
1942
|
+
|
1943
|
+
|
1944
|
+
|
1945
|
+
#### `optional`
|
1946
|
+
|
1947
|
+
* Default: null
|
1948
|
+
* Type: null or Boolean
|
1949
|
+
* DEPRECATED: Use `--omit=optional` to exclude optional dependencies, or
|
1950
|
+
`--include=optional` to include them.
|
1951
|
+
|
1952
|
+
Default value does install optional deps unless otherwise omitted.
|
1953
|
+
|
1954
|
+
Alias for --include=optional or --omit=optional
|
1955
|
+
|
1956
|
+
|
1957
|
+
|
1958
|
+
#### `production`
|
1959
|
+
|
1960
|
+
* Default: null
|
1961
|
+
* Type: null or Boolean
|
1962
|
+
* DEPRECATED: Use `--omit=dev` instead.
|
1963
|
+
|
1964
|
+
Alias for `--omit=dev`
|
1965
|
+
|
1966
|
+
|
1967
|
+
|
1968
|
+
#### `shrinkwrap`
|
1969
|
+
|
1970
|
+
* Default: true
|
1971
|
+
* Type: Boolean
|
1972
|
+
* DEPRECATED: Use the --package-lock setting instead.
|
1973
|
+
|
1974
|
+
Alias for --package-lock
|
1975
|
+
|
1976
|
+
|
1977
|
+
|
1978
|
+
### See also
|
1979
|
+
|
1980
|
+
* [npm config](/commands/npm-config)
|
1981
|
+
* [npmrc](/configuring-npm/npmrc)
|
1982
|
+
* [npm scripts](/using-npm/scripts)
|
1983
|
+
* [npm folders](/configuring-npm/folders)
|
1984
|
+
* [npm](/commands/npm)
|