├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitpod.yml ├── Back-end ├── .env ├── .gitignore ├── coverage │ ├── clover.xml │ ├── coverage-final.json │ ├── lcov-report │ │ ├── base.css │ │ ├── block-navigation.js │ │ ├── favicon.png │ │ ├── index.html │ │ ├── prettify.css │ │ ├── prettify.js │ │ ├── sort-arrow-sprite.png │ │ └── sorter.js │ └── lcov.info ├── jest.config.ts ├── node_modules │ ├── .bin │ │ ├── acorn │ │ ├── acorn.cmd │ │ ├── acorn.ps1 │ │ ├── browserslist │ │ ├── browserslist-lint │ │ ├── browserslist-lint.cmd │ │ ├── browserslist-lint.ps1 │ │ ├── browserslist.cmd │ │ ├── browserslist.ps1 │ │ ├── color-support │ │ ├── color-support.cmd │ │ ├── color-support.ps1 │ │ ├── esparse │ │ ├── esparse.cmd │ │ ├── esparse.ps1 │ │ ├── esvalidate │ │ ├── esvalidate.cmd │ │ ├── esvalidate.ps1 │ │ ├── import-local-fixture │ │ ├── import-local-fixture.cmd │ │ ├── import-local-fixture.ps1 │ │ ├── jest │ │ ├── jest.cmd │ │ ├── jest.ps1 │ │ ├── js-yaml │ │ ├── js-yaml.cmd │ │ ├── js-yaml.ps1 │ │ ├── jsesc │ │ ├── jsesc.cmd │ │ ├── jsesc.ps1 │ │ ├── json5 │ │ ├── json5.cmd │ │ ├── json5.ps1 │ │ ├── mime │ │ ├── mime.cmd │ │ ├── mime.ps1 │ │ ├── mkdirp │ │ ├── mkdirp.cmd │ │ ├── mkdirp.ps1 │ │ ├── node-pre-gyp │ │ ├── node-pre-gyp.cmd │ │ ├── node-pre-gyp.ps1 │ │ ├── node-which │ │ ├── node-which.cmd │ │ ├── node-which.ps1 │ │ ├── nopt │ │ ├── nopt.cmd │ │ ├── nopt.ps1 │ │ ├── parser │ │ ├── parser.cmd │ │ ├── parser.ps1 │ │ ├── resolve │ │ ├── resolve.cmd │ │ ├── resolve.ps1 │ │ ├── rimraf │ │ ├── rimraf.cmd │ │ ├── rimraf.ps1 │ │ ├── semver │ │ ├── semver.cmd │ │ ├── semver.ps1 │ │ ├── tree-kill │ │ ├── tree-kill.cmd │ │ ├── tree-kill.ps1 │ │ ├── ts-jest │ │ ├── ts-jest.cmd │ │ ├── ts-jest.ps1 │ │ ├── ts-node │ │ ├── ts-node-cwd │ │ ├── ts-node-cwd.cmd │ │ ├── ts-node-cwd.ps1 │ │ ├── ts-node-dev │ │ ├── ts-node-dev.cmd │ │ ├── ts-node-dev.ps1 │ │ ├── ts-node-esm │ │ ├── ts-node-esm.cmd │ │ ├── ts-node-esm.ps1 │ │ ├── ts-node-script │ │ ├── ts-node-script.cmd │ │ ├── ts-node-script.ps1 │ │ ├── ts-node-transpile-only │ │ ├── ts-node-transpile-only.cmd │ │ ├── ts-node-transpile-only.ps1 │ │ ├── ts-node.cmd │ │ ├── ts-node.ps1 │ │ ├── ts-script │ │ ├── ts-script.cmd │ │ ├── ts-script.ps1 │ │ ├── tsc │ │ ├── tsc.cmd │ │ ├── tsc.ps1 │ │ ├── tsnd │ │ ├── tsnd.cmd │ │ ├── tsnd.ps1 │ │ ├── tsserver │ │ ├── tsserver.cmd │ │ ├── tsserver.ps1 │ │ ├── uuid │ │ ├── uuid.cmd │ │ └── uuid.ps1 │ ├── .package-lock.json │ ├── @alloc │ │ └── quick-lru │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── @ampproject │ │ └── remapping │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── remapping.mjs │ │ │ ├── remapping.mjs.map │ │ │ ├── remapping.umd.js │ │ │ ├── remapping.umd.js.map │ │ │ └── types │ │ │ │ ├── build-source-map-tree.d.ts │ │ │ │ ├── remapping.d.ts │ │ │ │ ├── source-map-tree.d.ts │ │ │ │ ├── source-map.d.ts │ │ │ │ └── types.d.ts │ │ │ └── package.json │ ├── @babel │ │ ├── code-frame │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── compat-data │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── corejs2-built-ins.js │ │ │ ├── corejs3-shipped-proposals.js │ │ │ ├── data │ │ │ │ ├── corejs2-built-ins.json │ │ │ │ ├── corejs3-shipped-proposals.json │ │ │ │ ├── native-modules.json │ │ │ │ ├── overlapping-plugins.json │ │ │ │ ├── plugin-bugfixes.json │ │ │ │ └── plugins.json │ │ │ ├── native-modules.js │ │ │ ├── overlapping-plugins.js │ │ │ ├── package.json │ │ │ ├── plugin-bugfixes.js │ │ │ └── plugins.js │ │ ├── core │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── cjs-proxy.cjs │ │ │ ├── lib │ │ │ │ ├── config │ │ │ │ │ ├── cache-contexts.js │ │ │ │ │ ├── cache-contexts.js.map │ │ │ │ │ ├── caching.js │ │ │ │ │ ├── caching.js.map │ │ │ │ │ ├── config-chain.js │ │ │ │ │ ├── config-chain.js.map │ │ │ │ │ ├── config-descriptors.js │ │ │ │ │ ├── config-descriptors.js.map │ │ │ │ │ ├── files │ │ │ │ │ │ ├── configuration.js │ │ │ │ │ │ ├── configuration.js.map │ │ │ │ │ │ ├── import-meta-resolve.js │ │ │ │ │ │ ├── import-meta-resolve.js.map │ │ │ │ │ │ ├── import.cjs │ │ │ │ │ │ ├── import.cjs.map │ │ │ │ │ │ ├── index-browser.js │ │ │ │ │ │ ├── index-browser.js.map │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── module-types.js │ │ │ │ │ │ ├── module-types.js.map │ │ │ │ │ │ ├── package.js │ │ │ │ │ │ ├── package.js.map │ │ │ │ │ │ ├── plugins.js │ │ │ │ │ │ ├── plugins.js.map │ │ │ │ │ │ ├── types.js │ │ │ │ │ │ ├── types.js.map │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── utils.js.map │ │ │ │ │ ├── full.js │ │ │ │ │ ├── full.js.map │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── config-api.js │ │ │ │ │ │ ├── config-api.js.map │ │ │ │ │ │ ├── deep-array.js │ │ │ │ │ │ ├── deep-array.js.map │ │ │ │ │ │ ├── environment.js │ │ │ │ │ │ └── environment.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── item.js │ │ │ │ │ ├── item.js.map │ │ │ │ │ ├── partial.js │ │ │ │ │ ├── partial.js.map │ │ │ │ │ ├── pattern-to-regex.js │ │ │ │ │ ├── pattern-to-regex.js.map │ │ │ │ │ ├── plugin.js │ │ │ │ │ ├── plugin.js.map │ │ │ │ │ ├── printer.js │ │ │ │ │ ├── printer.js.map │ │ │ │ │ ├── resolve-targets-browser.js │ │ │ │ │ ├── resolve-targets-browser.js.map │ │ │ │ │ ├── resolve-targets.js │ │ │ │ │ ├── resolve-targets.js.map │ │ │ │ │ ├── util.js │ │ │ │ │ ├── util.js.map │ │ │ │ │ └── validation │ │ │ │ │ │ ├── option-assertions.js │ │ │ │ │ │ ├── option-assertions.js.map │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ ├── options.js.map │ │ │ │ │ │ ├── plugins.js │ │ │ │ │ │ ├── plugins.js.map │ │ │ │ │ │ ├── removed.js │ │ │ │ │ │ └── removed.js.map │ │ │ │ ├── errors │ │ │ │ │ ├── config-error.js │ │ │ │ │ ├── config-error.js.map │ │ │ │ │ ├── rewrite-stack-trace.js │ │ │ │ │ └── rewrite-stack-trace.js.map │ │ │ │ ├── gensync-utils │ │ │ │ │ ├── async.js │ │ │ │ │ ├── async.js.map │ │ │ │ │ ├── fs.js │ │ │ │ │ ├── fs.js.map │ │ │ │ │ ├── functional.js │ │ │ │ │ └── functional.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── parse.js │ │ │ │ ├── parse.js.map │ │ │ │ ├── parser │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── util │ │ │ │ │ │ ├── missing-plugin-helper.js │ │ │ │ │ │ └── missing-plugin-helper.js.map │ │ │ │ ├── tools │ │ │ │ │ ├── build-external-helpers.js │ │ │ │ │ └── build-external-helpers.js.map │ │ │ │ ├── transform-ast.js │ │ │ │ ├── transform-ast.js.map │ │ │ │ ├── transform-file-browser.js │ │ │ │ ├── transform-file-browser.js.map │ │ │ │ ├── transform-file.js │ │ │ │ ├── transform-file.js.map │ │ │ │ ├── transform.js │ │ │ │ ├── transform.js.map │ │ │ │ ├── transformation │ │ │ │ │ ├── block-hoist-plugin.js │ │ │ │ │ ├── block-hoist-plugin.js.map │ │ │ │ │ ├── file │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ ├── file.js.map │ │ │ │ │ │ ├── generate.js │ │ │ │ │ │ ├── generate.js.map │ │ │ │ │ │ ├── merge-map.js │ │ │ │ │ │ └── merge-map.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── normalize-file.js │ │ │ │ │ ├── normalize-file.js.map │ │ │ │ │ ├── normalize-opts.js │ │ │ │ │ ├── normalize-opts.js.map │ │ │ │ │ ├── plugin-pass.js │ │ │ │ │ ├── plugin-pass.js.map │ │ │ │ │ └── util │ │ │ │ │ │ ├── clone-deep.js │ │ │ │ │ │ └── clone-deep.js.map │ │ │ │ └── vendor │ │ │ │ │ ├── import-meta-resolve.js │ │ │ │ │ └── import-meta-resolve.js.map │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ ├── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── config │ │ │ │ ├── files │ │ │ │ │ ├── index-browser.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── resolve-targets-browser.ts │ │ │ │ └── resolve-targets.ts │ │ │ │ ├── transform-file-browser.ts │ │ │ │ └── transform-file.ts │ │ ├── generator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── buffer.js │ │ │ │ ├── buffer.js.map │ │ │ │ ├── generators │ │ │ │ │ ├── base.js │ │ │ │ │ ├── base.js.map │ │ │ │ │ ├── classes.js │ │ │ │ │ ├── classes.js.map │ │ │ │ │ ├── expressions.js │ │ │ │ │ ├── expressions.js.map │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── flow.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── jsx.js │ │ │ │ │ ├── jsx.js.map │ │ │ │ │ ├── methods.js │ │ │ │ │ ├── methods.js.map │ │ │ │ │ ├── modules.js │ │ │ │ │ ├── modules.js.map │ │ │ │ │ ├── statements.js │ │ │ │ │ ├── statements.js.map │ │ │ │ │ ├── template-literals.js │ │ │ │ │ ├── template-literals.js.map │ │ │ │ │ ├── types.js │ │ │ │ │ ├── types.js.map │ │ │ │ │ ├── typescript.js │ │ │ │ │ └── typescript.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── node │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── parentheses.js │ │ │ │ │ ├── parentheses.js.map │ │ │ │ │ ├── whitespace.js │ │ │ │ │ └── whitespace.js.map │ │ │ │ ├── printer.js │ │ │ │ ├── printer.js.map │ │ │ │ ├── source-map.js │ │ │ │ └── source-map.js.map │ │ │ ├── node_modules │ │ │ │ └── @jridgewell │ │ │ │ │ └── gen-mapping │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ ├── gen-mapping.mjs │ │ │ │ │ ├── gen-mapping.mjs.map │ │ │ │ │ ├── gen-mapping.umd.js │ │ │ │ │ ├── gen-mapping.umd.js.map │ │ │ │ │ └── types │ │ │ │ │ │ ├── gen-mapping.d.ts │ │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── gen-mapping.ts │ │ │ │ │ ├── sourcemap-segment.ts │ │ │ │ │ └── types.ts │ │ │ └── package.json │ │ ├── helper-compilation-targets │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── debug.js │ │ │ │ ├── debug.js.map │ │ │ │ ├── filter-items.js │ │ │ │ ├── filter-items.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── options.js │ │ │ │ ├── options.js.map │ │ │ │ ├── pretty.js │ │ │ │ ├── pretty.js.map │ │ │ │ ├── targets.js │ │ │ │ ├── targets.js.map │ │ │ │ ├── types.js │ │ │ │ ├── types.js.map │ │ │ │ ├── utils.js │ │ │ │ └── utils.js.map │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── semver │ │ │ │ │ ├── semver.cmd │ │ │ │ │ └── semver.ps1 │ │ │ │ └── semver │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── semver.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── range.bnf │ │ │ │ │ └── semver.js │ │ │ └── package.json │ │ ├── helper-environment-visitor │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── helper-function-name │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ └── package.json │ │ ├── helper-hoist-variables │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── helper-module-imports │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── import-builder.js │ │ │ │ ├── import-injector.js │ │ │ │ ├── index.js │ │ │ │ └── is-module.js │ │ │ └── package.json │ │ ├── helper-module-transforms │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── get-module-name.js │ │ │ │ ├── get-module-name.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── normalize-and-load-metadata.js │ │ │ │ ├── normalize-and-load-metadata.js.map │ │ │ │ ├── rewrite-live-references.js │ │ │ │ ├── rewrite-live-references.js.map │ │ │ │ ├── rewrite-this.js │ │ │ │ └── rewrite-this.js.map │ │ │ └── package.json │ │ ├── helper-plugin-utils │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ └── package.json │ │ ├── helper-simple-access │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── helper-split-export-declaration │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── helper-string-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── helper-validator-identifier │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── identifier.js │ │ │ │ ├── index.js │ │ │ │ └── keyword.js │ │ │ ├── package.json │ │ │ └── scripts │ │ │ │ └── generate-identifier-regex.js │ │ ├── helper-validator-option │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── find-suggestion.js │ │ │ │ ├── index.js │ │ │ │ └── validator.js │ │ │ └── package.json │ │ ├── helpers │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── helpers-generated.js │ │ │ │ ├── helpers-generated.js.map │ │ │ │ ├── helpers.js │ │ │ │ ├── helpers.js.map │ │ │ │ ├── helpers │ │ │ │ │ ├── AsyncGenerator.js │ │ │ │ │ ├── AsyncGenerator.js.map │ │ │ │ │ ├── OverloadYield.js │ │ │ │ │ ├── OverloadYield.js.map │ │ │ │ │ ├── applyDecs.js │ │ │ │ │ ├── applyDecs.js.map │ │ │ │ │ ├── applyDecs2203.js │ │ │ │ │ ├── applyDecs2203.js.map │ │ │ │ │ ├── asyncGeneratorDelegate.js │ │ │ │ │ ├── asyncGeneratorDelegate.js.map │ │ │ │ │ ├── asyncIterator.js │ │ │ │ │ ├── asyncIterator.js.map │ │ │ │ │ ├── awaitAsyncGenerator.js │ │ │ │ │ ├── awaitAsyncGenerator.js.map │ │ │ │ │ ├── jsx.js │ │ │ │ │ ├── jsx.js.map │ │ │ │ │ ├── objectSpread2.js │ │ │ │ │ ├── objectSpread2.js.map │ │ │ │ │ ├── regeneratorRuntime.js │ │ │ │ │ ├── regeneratorRuntime.js.map │ │ │ │ │ ├── typeof.js │ │ │ │ │ ├── typeof.js.map │ │ │ │ │ ├── wrapRegExp.js │ │ │ │ │ └── wrapRegExp.js.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── package.json │ │ │ └── scripts │ │ │ │ ├── generate-helpers.js │ │ │ │ ├── generate-regenerator-runtime.js │ │ │ │ └── package.json │ │ ├── highlight │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ ├── node_modules │ │ │ │ ├── ansi-styles │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ ├── chalk │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.flow │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ ├── readme.md │ │ │ │ │ ├── templates.js │ │ │ │ │ └── types │ │ │ │ │ │ └── index.d.ts │ │ │ │ ├── color-convert │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── conversions.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── route.js │ │ │ │ ├── color-name │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── escape-string-regexp │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ ├── has-flag │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ │ └── supports-color │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ └── package.json │ │ ├── parser │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ │ └── babel-parser.js │ │ │ ├── index.cjs │ │ │ ├── lib │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── package.json │ │ │ └── typings │ │ │ │ └── babel-parser.d.ts │ │ ├── plugin-syntax-async-generators │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-bigint │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-class-properties │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-import-meta │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-json-strings │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-jsx │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-logical-assignment-operators │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-nullish-coalescing-operator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-numeric-separator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-object-rest-spread │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-optional-catch-binding │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-optional-chaining │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-top-level-await │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── plugin-syntax-typescript │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── fixtures │ │ │ │ └── disallow-jsx-ambiguity │ │ │ │ │ ├── options.json │ │ │ │ │ ├── type-assertion │ │ │ │ │ ├── input.ts │ │ │ │ │ └── options.json │ │ │ │ │ ├── type-parameter-unambiguous │ │ │ │ │ ├── input.ts │ │ │ │ │ └── output.js │ │ │ │ │ └── type-parameter │ │ │ │ │ ├── input.ts │ │ │ │ │ └── options.json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ ├── template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── builder.js │ │ │ │ ├── formatters.js │ │ │ │ ├── index.js │ │ │ │ ├── literal.js │ │ │ │ ├── options.js │ │ │ │ ├── parse.js │ │ │ │ ├── populate.js │ │ │ │ └── string.js │ │ │ └── package.json │ │ ├── traverse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── cache.js │ │ │ │ ├── cache.js.map │ │ │ │ ├── context.js │ │ │ │ ├── context.js.map │ │ │ │ ├── hub.js │ │ │ │ ├── hub.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── path │ │ │ │ │ ├── ancestry.js │ │ │ │ │ ├── ancestry.js.map │ │ │ │ │ ├── comments.js │ │ │ │ │ ├── comments.js.map │ │ │ │ │ ├── context.js │ │ │ │ │ ├── context.js.map │ │ │ │ │ ├── conversion.js │ │ │ │ │ ├── conversion.js.map │ │ │ │ │ ├── evaluation.js │ │ │ │ │ ├── evaluation.js.map │ │ │ │ │ ├── family.js │ │ │ │ │ ├── family.js.map │ │ │ │ │ ├── generated │ │ │ │ │ │ ├── asserts.js │ │ │ │ │ │ ├── asserts.js.map │ │ │ │ │ │ ├── validators.js │ │ │ │ │ │ └── validators.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── inference │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── inferer-reference.js │ │ │ │ │ │ ├── inferer-reference.js.map │ │ │ │ │ │ ├── inferers.js │ │ │ │ │ │ ├── inferers.js.map │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ └── util.js.map │ │ │ │ │ ├── introspection.js │ │ │ │ │ ├── introspection.js.map │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── hoister.js │ │ │ │ │ │ ├── hoister.js.map │ │ │ │ │ │ ├── removal-hooks.js │ │ │ │ │ │ ├── removal-hooks.js.map │ │ │ │ │ │ ├── virtual-types-validator.js │ │ │ │ │ │ ├── virtual-types-validator.js.map │ │ │ │ │ │ ├── virtual-types.js │ │ │ │ │ │ └── virtual-types.js.map │ │ │ │ │ ├── modification.js │ │ │ │ │ ├── modification.js.map │ │ │ │ │ ├── removal.js │ │ │ │ │ ├── removal.js.map │ │ │ │ │ ├── replacement.js │ │ │ │ │ └── replacement.js.map │ │ │ │ ├── scope │ │ │ │ │ ├── binding.js │ │ │ │ │ ├── binding.js.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── lib │ │ │ │ │ │ ├── renamer.js │ │ │ │ │ │ └── renamer.js.map │ │ │ │ ├── traverse-node.js │ │ │ │ ├── traverse-node.js.map │ │ │ │ ├── types.js │ │ │ │ ├── types.js.map │ │ │ │ ├── visitors.js │ │ │ │ └── visitors.js.map │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── node.js │ │ │ │ └── ms │ │ │ │ │ ├── index.js │ │ │ │ │ ├── license.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── readme.md │ │ │ ├── package.json │ │ │ └── scripts │ │ │ │ ├── generators │ │ │ │ ├── asserts.js │ │ │ │ └── validators.js │ │ │ │ └── package.json │ │ └── types │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ ├── asserts │ │ │ │ ├── assertNode.js │ │ │ │ ├── assertNode.js.map │ │ │ │ └── generated │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── ast-types │ │ │ │ └── generated │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ ├── builders │ │ │ │ ├── flow │ │ │ │ │ ├── createFlowUnionType.js │ │ │ │ │ ├── createFlowUnionType.js.map │ │ │ │ │ ├── createTypeAnnotationBasedOnTypeof.js │ │ │ │ │ └── createTypeAnnotationBasedOnTypeof.js.map │ │ │ │ ├── generated │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── uppercase.js │ │ │ │ │ └── uppercase.js.map │ │ │ │ ├── react │ │ │ │ │ ├── buildChildren.js │ │ │ │ │ └── buildChildren.js.map │ │ │ │ ├── typescript │ │ │ │ │ ├── createTSUnionType.js │ │ │ │ │ └── createTSUnionType.js.map │ │ │ │ ├── validateNode.js │ │ │ │ └── validateNode.js.map │ │ │ ├── clone │ │ │ │ ├── clone.js │ │ │ │ ├── clone.js.map │ │ │ │ ├── cloneDeep.js │ │ │ │ ├── cloneDeep.js.map │ │ │ │ ├── cloneDeepWithoutLoc.js │ │ │ │ ├── cloneDeepWithoutLoc.js.map │ │ │ │ ├── cloneNode.js │ │ │ │ ├── cloneNode.js.map │ │ │ │ ├── cloneWithoutLoc.js │ │ │ │ └── cloneWithoutLoc.js.map │ │ │ ├── comments │ │ │ │ ├── addComment.js │ │ │ │ ├── addComment.js.map │ │ │ │ ├── addComments.js │ │ │ │ ├── addComments.js.map │ │ │ │ ├── inheritInnerComments.js │ │ │ │ ├── inheritInnerComments.js.map │ │ │ │ ├── inheritLeadingComments.js │ │ │ │ ├── inheritLeadingComments.js.map │ │ │ │ ├── inheritTrailingComments.js │ │ │ │ ├── inheritTrailingComments.js.map │ │ │ │ ├── inheritsComments.js │ │ │ │ ├── inheritsComments.js.map │ │ │ │ ├── removeComments.js │ │ │ │ └── removeComments.js.map │ │ │ ├── constants │ │ │ │ ├── generated │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ ├── converters │ │ │ │ ├── ensureBlock.js │ │ │ │ ├── ensureBlock.js.map │ │ │ │ ├── gatherSequenceExpressions.js │ │ │ │ ├── gatherSequenceExpressions.js.map │ │ │ │ ├── toBindingIdentifierName.js │ │ │ │ ├── toBindingIdentifierName.js.map │ │ │ │ ├── toBlock.js │ │ │ │ ├── toBlock.js.map │ │ │ │ ├── toComputedKey.js │ │ │ │ ├── toComputedKey.js.map │ │ │ │ ├── toExpression.js │ │ │ │ ├── toExpression.js.map │ │ │ │ ├── toIdentifier.js │ │ │ │ ├── toIdentifier.js.map │ │ │ │ ├── toKeyAlias.js │ │ │ │ ├── toKeyAlias.js.map │ │ │ │ ├── toSequenceExpression.js │ │ │ │ ├── toSequenceExpression.js.map │ │ │ │ ├── toStatement.js │ │ │ │ ├── toStatement.js.map │ │ │ │ ├── valueToNode.js │ │ │ │ └── valueToNode.js.map │ │ │ ├── definitions │ │ │ │ ├── core.js │ │ │ │ ├── core.js.map │ │ │ │ ├── experimental.js │ │ │ │ ├── experimental.js.map │ │ │ │ ├── flow.js │ │ │ │ ├── flow.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── jsx.js │ │ │ │ ├── jsx.js.map │ │ │ │ ├── misc.js │ │ │ │ ├── misc.js.map │ │ │ │ ├── placeholders.js │ │ │ │ ├── placeholders.js.map │ │ │ │ ├── typescript.js │ │ │ │ ├── typescript.js.map │ │ │ │ ├── utils.js │ │ │ │ └── utils.js.map │ │ │ ├── index-legacy.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── index.js │ │ │ ├── index.js.flow │ │ │ ├── index.js.map │ │ │ ├── modifications │ │ │ │ ├── appendToMemberExpression.js │ │ │ │ ├── appendToMemberExpression.js.map │ │ │ │ ├── flow │ │ │ │ │ ├── removeTypeDuplicates.js │ │ │ │ │ └── removeTypeDuplicates.js.map │ │ │ │ ├── inherits.js │ │ │ │ ├── inherits.js.map │ │ │ │ ├── prependToMemberExpression.js │ │ │ │ ├── prependToMemberExpression.js.map │ │ │ │ ├── removeProperties.js │ │ │ │ ├── removeProperties.js.map │ │ │ │ ├── removePropertiesDeep.js │ │ │ │ ├── removePropertiesDeep.js.map │ │ │ │ └── typescript │ │ │ │ │ ├── removeTypeDuplicates.js │ │ │ │ │ └── removeTypeDuplicates.js.map │ │ │ ├── retrievers │ │ │ │ ├── getBindingIdentifiers.js │ │ │ │ ├── getBindingIdentifiers.js.map │ │ │ │ ├── getOuterBindingIdentifiers.js │ │ │ │ └── getOuterBindingIdentifiers.js.map │ │ │ ├── traverse │ │ │ │ ├── traverse.js │ │ │ │ ├── traverse.js.map │ │ │ │ ├── traverseFast.js │ │ │ │ └── traverseFast.js.map │ │ │ ├── utils │ │ │ │ ├── inherit.js │ │ │ │ ├── inherit.js.map │ │ │ │ ├── react │ │ │ │ │ ├── cleanJSXElementLiteralChild.js │ │ │ │ │ └── cleanJSXElementLiteralChild.js.map │ │ │ │ ├── shallowEqual.js │ │ │ │ └── shallowEqual.js.map │ │ │ └── validators │ │ │ │ ├── buildMatchMemberExpression.js │ │ │ │ ├── buildMatchMemberExpression.js.map │ │ │ │ ├── generated │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ │ │ ├── is.js │ │ │ │ ├── is.js.map │ │ │ │ ├── isBinding.js │ │ │ │ ├── isBinding.js.map │ │ │ │ ├── isBlockScoped.js │ │ │ │ ├── isBlockScoped.js.map │ │ │ │ ├── isImmutable.js │ │ │ │ ├── isImmutable.js.map │ │ │ │ ├── isLet.js │ │ │ │ ├── isLet.js.map │ │ │ │ ├── isNode.js │ │ │ │ ├── isNode.js.map │ │ │ │ ├── isNodesEquivalent.js │ │ │ │ ├── isNodesEquivalent.js.map │ │ │ │ ├── isPlaceholderType.js │ │ │ │ ├── isPlaceholderType.js.map │ │ │ │ ├── isReferenced.js │ │ │ │ ├── isReferenced.js.map │ │ │ │ ├── isScope.js │ │ │ │ ├── isScope.js.map │ │ │ │ ├── isSpecifierDefault.js │ │ │ │ ├── isSpecifierDefault.js.map │ │ │ │ ├── isType.js │ │ │ │ ├── isType.js.map │ │ │ │ ├── isValidES3Identifier.js │ │ │ │ ├── isValidES3Identifier.js.map │ │ │ │ ├── isValidIdentifier.js │ │ │ │ ├── isValidIdentifier.js.map │ │ │ │ ├── isVar.js │ │ │ │ ├── isVar.js.map │ │ │ │ ├── matchesPattern.js │ │ │ │ ├── matchesPattern.js.map │ │ │ │ ├── react │ │ │ │ ├── isCompatTag.js │ │ │ │ ├── isCompatTag.js.map │ │ │ │ ├── isReactComponent.js │ │ │ │ └── isReactComponent.js.map │ │ │ │ ├── validate.js │ │ │ │ └── validate.js.map │ │ │ ├── package.json │ │ │ └── scripts │ │ │ ├── generators │ │ │ ├── asserts.js │ │ │ ├── ast-types.js │ │ │ ├── builders.js │ │ │ ├── constants.js │ │ │ ├── docs.js │ │ │ ├── flow.js │ │ │ ├── typescript-legacy.js │ │ │ └── validators.js │ │ │ ├── package.json │ │ │ └── utils │ │ │ ├── formatBuilderName.js │ │ │ ├── lowerFirst.js │ │ │ ├── stringifyValidator.js │ │ │ └── toFunctionName.js │ ├── @bcoe │ │ └── v8-coverage │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── dist │ │ │ └── lib │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── _src │ │ │ │ ├── ascii.ts │ │ │ │ ├── clone.ts │ │ │ │ ├── compare.ts │ │ │ │ ├── index.ts │ │ │ │ ├── merge.ts │ │ │ │ ├── normalize.ts │ │ │ │ ├── range-tree.ts │ │ │ │ └── types.ts │ │ │ │ ├── ascii.d.ts │ │ │ │ ├── ascii.js │ │ │ │ ├── ascii.mjs │ │ │ │ ├── clone.d.ts │ │ │ │ ├── clone.js │ │ │ │ ├── clone.mjs │ │ │ │ ├── compare.d.ts │ │ │ │ ├── compare.js │ │ │ │ ├── compare.mjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.mjs │ │ │ │ ├── merge.d.ts │ │ │ │ ├── merge.js │ │ │ │ ├── merge.mjs │ │ │ │ ├── normalize.d.ts │ │ │ │ ├── normalize.js │ │ │ │ ├── normalize.mjs │ │ │ │ ├── package.json │ │ │ │ ├── range-tree.d.ts │ │ │ │ ├── range-tree.js │ │ │ │ ├── range-tree.mjs │ │ │ │ ├── tsconfig.json │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ └── types.mjs │ │ │ ├── gulpfile.ts │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── ascii.ts │ │ │ │ ├── clone.ts │ │ │ │ ├── compare.ts │ │ │ │ ├── index.ts │ │ │ │ ├── merge.ts │ │ │ │ ├── normalize.ts │ │ │ │ ├── range-tree.ts │ │ │ │ └── types.ts │ │ │ └── test │ │ │ │ └── merge.spec.ts │ │ │ └── tsconfig.json │ ├── @cspotcode │ │ └── source-map-support │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── browser-source-map-support.js │ │ │ ├── package.json │ │ │ ├── register-hook-require.d.ts │ │ │ ├── register-hook-require.js │ │ │ ├── register.d.ts │ │ │ ├── register.js │ │ │ ├── source-map-support.d.ts │ │ │ └── source-map-support.js │ ├── @istanbuljs │ │ ├── load-nyc-config │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ ├── load-esm.js │ │ │ └── package.json │ │ └── schema │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── default-exclude.js │ │ │ ├── default-extension.js │ │ │ ├── index.js │ │ │ └── package.json │ ├── @jest │ │ ├── console │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── BufferedConsole.js │ │ │ │ ├── CustomConsole.js │ │ │ │ ├── NullConsole.js │ │ │ │ ├── getConsoleOutput.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── types.js │ │ │ └── package.json │ │ ├── core │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── FailedTestsCache.js │ │ │ │ ├── FailedTestsInteractiveMode.js │ │ │ │ ├── ReporterDispatcher.js │ │ │ │ ├── SearchSource.js │ │ │ │ ├── SnapshotInteractiveMode.js │ │ │ │ ├── TestNamePatternPrompt.js │ │ │ │ ├── TestPathPatternPrompt.js │ │ │ │ ├── TestScheduler.js │ │ │ │ ├── cli │ │ │ │ │ └── index.js │ │ │ │ ├── collectHandles.js │ │ │ │ ├── getChangedFilesPromise.js │ │ │ │ ├── getConfigsOfProjectsToRun.js │ │ │ │ ├── getNoTestFound.js │ │ │ │ ├── getNoTestFoundFailed.js │ │ │ │ ├── getNoTestFoundPassWithNoTests.js │ │ │ │ ├── getNoTestFoundRelatedToChangedFiles.js │ │ │ │ ├── getNoTestFoundVerbose.js │ │ │ │ ├── getNoTestsFoundMessage.js │ │ │ │ ├── getProjectDisplayName.js │ │ │ │ ├── getProjectNamesMissingWarning.js │ │ │ │ ├── getSelectProjectsMessage.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── activeFiltersMessage.js │ │ │ │ │ ├── createContext.js │ │ │ │ │ ├── handleDeprecationWarnings.js │ │ │ │ │ ├── isValidPath.js │ │ │ │ │ ├── logDebugMessages.js │ │ │ │ │ ├── updateGlobalConfig.js │ │ │ │ │ └── watchPluginsHelpers.js │ │ │ │ ├── plugins │ │ │ │ │ ├── FailedTestsInteractive.js │ │ │ │ │ ├── Quit.js │ │ │ │ │ ├── TestNamePattern.js │ │ │ │ │ ├── TestPathPattern.js │ │ │ │ │ ├── UpdateSnapshots.js │ │ │ │ │ └── UpdateSnapshotsInteractive.js │ │ │ │ ├── pluralize.js │ │ │ │ ├── runGlobalHook.js │ │ │ │ ├── runJest.js │ │ │ │ ├── testSchedulerHelper.js │ │ │ │ ├── types.js │ │ │ │ ├── version.js │ │ │ │ └── watch.js │ │ │ └── package.json │ │ ├── environment │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── expect-utils │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── jasmineUtils.js │ │ │ │ ├── types.js │ │ │ │ └── utils.js │ │ │ └── package.json │ │ ├── expect │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── types.js │ │ │ └── package.json │ │ ├── fake-timers │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── legacyFakeTimers.js │ │ │ │ └── modernFakeTimers.js │ │ │ └── package.json │ │ ├── globals │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── reporters │ │ │ ├── LICENSE │ │ │ ├── assets │ │ │ │ └── jest_logo.png │ │ │ ├── build │ │ │ │ ├── BaseReporter.js │ │ │ │ ├── CoverageReporter.js │ │ │ │ ├── CoverageWorker.js │ │ │ │ ├── DefaultReporter.js │ │ │ │ ├── GitHubActionsReporter.js │ │ │ │ ├── NotifyReporter.js │ │ │ │ ├── Status.js │ │ │ │ ├── SummaryReporter.js │ │ │ │ ├── VerboseReporter.js │ │ │ │ ├── formatTestPath.js │ │ │ │ ├── generateEmptyCoverage.js │ │ │ │ ├── getResultHeader.js │ │ │ │ ├── getSnapshotStatus.js │ │ │ │ ├── getSnapshotSummary.js │ │ │ │ ├── getSummary.js │ │ │ │ ├── getWatermarks.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── printDisplayName.js │ │ │ │ ├── relativePath.js │ │ │ │ ├── trimAndFormatPath.js │ │ │ │ ├── types.js │ │ │ │ └── wrapAnsiString.js │ │ │ ├── node_modules │ │ │ │ └── @jridgewell │ │ │ │ │ └── trace-mapping │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ ├── trace-mapping.mjs │ │ │ │ │ ├── trace-mapping.mjs.map │ │ │ │ │ ├── trace-mapping.umd.js │ │ │ │ │ ├── trace-mapping.umd.js.map │ │ │ │ │ └── types │ │ │ │ │ │ ├── any-map.d.ts │ │ │ │ │ │ ├── binary-search.d.ts │ │ │ │ │ │ ├── by-source.d.ts │ │ │ │ │ │ ├── resolve.d.ts │ │ │ │ │ │ ├── sort.d.ts │ │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ │ ├── strip-filename.d.ts │ │ │ │ │ │ ├── trace-mapping.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── schemas │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── source-map │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── getCallsite.d.ts │ │ │ │ ├── getCallsite.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── types.d.ts │ │ │ │ └── types.js │ │ │ ├── node_modules │ │ │ │ └── @jridgewell │ │ │ │ │ └── trace-mapping │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ ├── trace-mapping.mjs │ │ │ │ │ ├── trace-mapping.mjs.map │ │ │ │ │ ├── trace-mapping.umd.js │ │ │ │ │ ├── trace-mapping.umd.js.map │ │ │ │ │ └── types │ │ │ │ │ │ ├── any-map.d.ts │ │ │ │ │ │ ├── binary-search.d.ts │ │ │ │ │ │ ├── by-source.d.ts │ │ │ │ │ │ ├── resolve.d.ts │ │ │ │ │ │ ├── sort.d.ts │ │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ │ ├── strip-filename.d.ts │ │ │ │ │ │ ├── trace-mapping.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ ├── test-result │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── formatTestResults.js │ │ │ │ ├── helpers.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── types.js │ │ │ └── package.json │ │ ├── test-sequencer │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── transform │ │ │ ├── LICENSE │ │ │ ├── build │ │ │ │ ├── ScriptTransformer.js │ │ │ │ ├── enhanceUnexpectedTokenMessage.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── runtimeErrorsAndWarnings.js │ │ │ │ ├── shouldInstrument.js │ │ │ │ └── types.js │ │ │ ├── node_modules │ │ │ │ └── @jridgewell │ │ │ │ │ └── trace-mapping │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ ├── trace-mapping.mjs │ │ │ │ │ ├── trace-mapping.mjs.map │ │ │ │ │ ├── trace-mapping.umd.js │ │ │ │ │ ├── trace-mapping.umd.js.map │ │ │ │ │ └── types │ │ │ │ │ │ ├── any-map.d.ts │ │ │ │ │ │ ├── binary-search.d.ts │ │ │ │ │ │ ├── by-source.d.ts │ │ │ │ │ │ ├── resolve.d.ts │ │ │ │ │ │ ├── sort.d.ts │ │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ │ ├── strip-filename.d.ts │ │ │ │ │ │ ├── trace-mapping.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ └── package.json │ │ │ └── package.json │ │ └── types │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── build │ │ │ ├── Circus.js │ │ │ ├── Config.js │ │ │ ├── Global.js │ │ │ ├── TestResult.js │ │ │ ├── Transform.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ │ └── package.json │ ├── @jridgewell │ │ ├── gen-mapping │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── gen-mapping.mjs │ │ │ │ ├── gen-mapping.mjs.map │ │ │ │ ├── gen-mapping.umd.js │ │ │ │ ├── gen-mapping.umd.js.map │ │ │ │ └── types │ │ │ │ │ ├── gen-mapping.d.ts │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ └── types.d.ts │ │ │ └── package.json │ │ ├── resolve-uri │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── resolve-uri.mjs │ │ │ │ ├── resolve-uri.mjs.map │ │ │ │ ├── resolve-uri.umd.js │ │ │ │ ├── resolve-uri.umd.js.map │ │ │ │ └── types │ │ │ │ │ └── resolve-uri.d.ts │ │ │ └── package.json │ │ ├── set-array │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── set-array.mjs │ │ │ │ ├── set-array.mjs.map │ │ │ │ ├── set-array.umd.js │ │ │ │ ├── set-array.umd.js.map │ │ │ │ └── types │ │ │ │ │ └── set-array.d.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── set-array.ts │ │ ├── sourcemap-codec │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── sourcemap-codec.mjs │ │ │ │ ├── sourcemap-codec.mjs.map │ │ │ │ ├── sourcemap-codec.umd.js │ │ │ │ ├── sourcemap-codec.umd.js.map │ │ │ │ └── types │ │ │ │ │ └── sourcemap-codec.d.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── sourcemap-codec.ts │ │ └── trace-mapping │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── trace-mapping.mjs │ │ │ ├── trace-mapping.mjs.map │ │ │ ├── trace-mapping.umd.js │ │ │ ├── trace-mapping.umd.js.map │ │ │ └── types │ │ │ │ ├── any-map.d.ts │ │ │ │ ├── binary-search.d.ts │ │ │ │ ├── by-source.d.ts │ │ │ │ ├── resolve.d.ts │ │ │ │ ├── sort.d.ts │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ ├── strip-filename.d.ts │ │ │ │ ├── trace-mapping.d.ts │ │ │ │ └── types.d.ts │ │ │ └── package.json │ ├── @mapbox │ │ └── node-pre-gyp │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ ├── node-pre-gyp │ │ │ └── node-pre-gyp.cmd │ │ │ ├── contributing.md │ │ │ ├── lib │ │ │ ├── build.js │ │ │ ├── clean.js │ │ │ ├── configure.js │ │ │ ├── info.js │ │ │ ├── install.js │ │ │ ├── main.js │ │ │ ├── node-pre-gyp.js │ │ │ ├── package.js │ │ │ ├── pre-binding.js │ │ │ ├── publish.js │ │ │ ├── rebuild.js │ │ │ ├── reinstall.js │ │ │ ├── reveal.js │ │ │ ├── testbinary.js │ │ │ ├── testpackage.js │ │ │ ├── unpublish.js │ │ │ └── util │ │ │ │ ├── abi_crosswalk.json │ │ │ │ ├── compile.js │ │ │ │ ├── handle_gyp_opts.js │ │ │ │ ├── napi.js │ │ │ │ ├── nw-pre-gyp │ │ │ │ ├── index.html │ │ │ │ └── package.json │ │ │ │ ├── s3_setup.js │ │ │ │ └── versioning.js │ │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── rimraf │ │ │ │ ├── rimraf.cmd │ │ │ │ └── rimraf.ps1 │ │ │ └── rimraf │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin.js │ │ │ │ ├── package.json │ │ │ │ └── rimraf.js │ │ │ └── package.json │ ├── @phc │ │ └── format │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── @sendgrid │ │ ├── client │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── USAGE.md │ │ │ ├── USE_CASES.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── classes │ │ │ │ └── client.js │ │ │ │ ├── client.d.ts │ │ │ │ ├── client.js │ │ │ │ ├── client.spec.js │ │ │ │ ├── request.d.ts │ │ │ │ └── response.d.ts │ │ ├── helpers │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── attachment.txt │ │ │ ├── classes │ │ │ │ ├── attachment.d.ts │ │ │ │ ├── attachment.js │ │ │ │ ├── attachment.spec.js │ │ │ │ ├── email-address.d.ts │ │ │ │ ├── email-address.js │ │ │ │ ├── email-address.spec.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── mail.d.ts │ │ │ │ ├── mail.js │ │ │ │ ├── mail.spec.js │ │ │ │ ├── personalization.d.ts │ │ │ │ ├── personalization.js │ │ │ │ ├── personalization_specs │ │ │ │ │ ├── 527-camel-case-headers.spec.js │ │ │ │ │ ├── PERSONALIZATION-SPECS-README.md │ │ │ │ │ ├── add-bcc.spec.js │ │ │ │ │ ├── add-cc.spec.js │ │ │ │ │ ├── add-custom-args.spec.js │ │ │ │ │ ├── add-headers.spec.js │ │ │ │ │ ├── add-substitutions.spec.js │ │ │ │ │ ├── from-data.spec.js │ │ │ │ │ ├── reverse-merge-dynamic_teplate_data.spec.js │ │ │ │ │ ├── reverse-merge-substitutions.spec.js │ │ │ │ │ ├── set-add-to.spec.js │ │ │ │ │ ├── set-bcc.spec.js │ │ │ │ │ ├── set-cc.spec.js │ │ │ │ │ ├── set-custom-args.spec.js │ │ │ │ │ ├── set-from.spec.js │ │ │ │ │ ├── set-headers.spec.js │ │ │ │ │ ├── set-send-at.spec.js │ │ │ │ │ ├── set-subject.spec.js │ │ │ │ │ ├── set-substitutions.spec.js │ │ │ │ │ ├── set-to.spec.js │ │ │ │ │ ├── set_dynamic_template_data.spec.js │ │ │ │ │ ├── substitutions-wrappers.spec.js │ │ │ │ │ └── to-json.spec.js │ │ │ │ ├── request.d.ts │ │ │ │ ├── response-error.d.ts │ │ │ │ ├── response-error.js │ │ │ │ ├── response.d.ts │ │ │ │ ├── response.js │ │ │ │ ├── statistics.d.ts │ │ │ │ ├── statistics.js │ │ │ │ └── statistics.spec.js │ │ │ ├── constants │ │ │ │ └── index.js │ │ │ ├── helpers │ │ │ │ ├── array-to-json.d.ts │ │ │ │ ├── array-to-json.js │ │ │ │ ├── array-to-json.spec.js │ │ │ │ ├── convert-keys.d.ts │ │ │ │ ├── convert-keys.js │ │ │ │ ├── convert-keys.spec.js │ │ │ │ ├── deep-clone.d.ts │ │ │ │ ├── deep-clone.js │ │ │ │ ├── deep-clone.spec.js │ │ │ │ ├── html-to-plain-text.js │ │ │ │ ├── html-to-plain-text.spec.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── merge-data-deep.d.ts │ │ │ │ ├── merge-data-deep.js │ │ │ │ ├── merge-data-deep.spec.js │ │ │ │ ├── merge-data.d.ts │ │ │ │ ├── merge-data.js │ │ │ │ ├── merge-data.spec.js │ │ │ │ ├── split-name-email.d.ts │ │ │ │ ├── split-name-email.js │ │ │ │ ├── split-name-email.spec.js │ │ │ │ ├── str-to-camel-case.js │ │ │ │ ├── str-to-camel-case.spec.js │ │ │ │ ├── str-to-snake-case.js │ │ │ │ ├── str-to-snake-case.spec.js │ │ │ │ ├── to-camel-case.d.ts │ │ │ │ ├── to-camel-case.js │ │ │ │ ├── to-snake-case.d.ts │ │ │ │ ├── to-snake-case.js │ │ │ │ ├── validate-settings.js │ │ │ │ ├── wrap-substitutions.d.ts │ │ │ │ ├── wrap-substitutions.js │ │ │ │ └── wrap-substitutions.spec.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── package.json │ │ └── mail │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── USE_CASES.md │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── src │ │ │ ├── classes │ │ │ └── mail-service.js │ │ │ ├── mail.d.ts │ │ │ ├── mail.js │ │ │ └── mail.spec.js │ ├── @sinclair │ │ └── typebox │ │ │ ├── compiler │ │ │ ├── compiler.d.ts │ │ │ ├── compiler.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ │ ├── conditional │ │ │ ├── conditional.d.ts │ │ │ ├── conditional.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── structural.d.ts │ │ │ └── structural.js │ │ │ ├── errors │ │ │ ├── errors.d.ts │ │ │ ├── errors.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ │ ├── format │ │ │ ├── format.d.ts │ │ │ ├── format.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ │ ├── guard │ │ │ ├── guard.d.ts │ │ │ ├── guard.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ ├── readme.md │ │ │ ├── typebox.d.ts │ │ │ ├── typebox.js │ │ │ └── value │ │ │ ├── cast.d.ts │ │ │ ├── cast.js │ │ │ ├── check.d.ts │ │ │ ├── check.js │ │ │ ├── clone.d.ts │ │ │ ├── clone.js │ │ │ ├── create.d.ts │ │ │ ├── create.js │ │ │ ├── delta.d.ts │ │ │ ├── delta.js │ │ │ ├── equal.d.ts │ │ │ ├── equal.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── is.d.ts │ │ │ ├── is.js │ │ │ ├── pointer.d.ts │ │ │ ├── pointer.js │ │ │ ├── value.d.ts │ │ │ └── value.js │ ├── @sinonjs │ │ ├── commons │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ ├── called-in-order.js │ │ │ │ ├── called-in-order.test.js │ │ │ │ ├── class-name.js │ │ │ │ ├── class-name.test.js │ │ │ │ ├── deprecated.js │ │ │ │ ├── deprecated.test.js │ │ │ │ ├── every.js │ │ │ │ ├── every.test.js │ │ │ │ ├── function-name.js │ │ │ │ ├── function-name.test.js │ │ │ │ ├── global.js │ │ │ │ ├── global.test.js │ │ │ │ ├── index.js │ │ │ │ ├── index.test.js │ │ │ │ ├── order-by-first-call.js │ │ │ │ ├── order-by-first-call.test.js │ │ │ │ ├── prototypes │ │ │ │ │ ├── README.md │ │ │ │ │ ├── array.js │ │ │ │ │ ├── copy-prototype.js │ │ │ │ │ ├── function.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.test.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── object.js │ │ │ │ │ ├── set.js │ │ │ │ │ └── string.js │ │ │ │ ├── type-of.js │ │ │ │ ├── type-of.test.js │ │ │ │ ├── value-to-string.js │ │ │ │ └── value-to-string.test.js │ │ │ ├── package.json │ │ │ └── types │ │ │ │ ├── called-in-order.d.ts │ │ │ │ ├── class-name.d.ts │ │ │ │ ├── deprecated.d.ts │ │ │ │ ├── every.d.ts │ │ │ │ ├── function-name.d.ts │ │ │ │ ├── global.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── order-by-first-call.d.ts │ │ │ │ ├── prototypes │ │ │ │ ├── array.d.ts │ │ │ │ ├── copy-prototype.d.ts │ │ │ │ ├── function.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── map.d.ts │ │ │ │ ├── object.d.ts │ │ │ │ ├── set.d.ts │ │ │ │ └── string.d.ts │ │ │ │ ├── type-of.d.ts │ │ │ │ └── value-to-string.d.ts │ │ └── fake-timers │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── src │ │ │ └── fake-timers-src.js │ ├── @tsconfig │ │ ├── node10 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── node12 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ ├── node14 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── tsconfig.json │ │ └── node16 │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── tsconfig.json │ ├── @types │ │ ├── babel__core │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── babel__generator │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── babel__template │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── babel__traverse │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── ts4.1 │ │ │ │ └── index.d.ts │ │ ├── bcrypt │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── body-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── connect │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── cookie-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── cors │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── express-serve-static-core │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── ts4.0 │ │ │ │ └── index.d.ts │ │ ├── express-unless │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── express │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── ts4.0 │ │ │ │ └── index.d.ts │ │ ├── geojson │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── graceful-fs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── istanbul-lib-coverage │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── istanbul-lib-report │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── istanbul-reports │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── jsonwebtoken │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── mime │ │ │ ├── LICENSE │ │ │ ├── Mime.d.ts │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── lite.d.ts │ │ │ └── package.json │ │ ├── node │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── assert.d.ts │ │ │ ├── assert │ │ │ │ └── strict.d.ts │ │ │ ├── async_hooks.d.ts │ │ │ ├── buffer.d.ts │ │ │ ├── child_process.d.ts │ │ │ ├── cluster.d.ts │ │ │ ├── console.d.ts │ │ │ ├── constants.d.ts │ │ │ ├── crypto.d.ts │ │ │ ├── dgram.d.ts │ │ │ ├── diagnostics_channel.d.ts │ │ │ ├── dns.d.ts │ │ │ ├── dns │ │ │ │ └── promises.d.ts │ │ │ ├── domain.d.ts │ │ │ ├── events.d.ts │ │ │ ├── fs.d.ts │ │ │ ├── fs │ │ │ │ └── promises.d.ts │ │ │ ├── globals.d.ts │ │ │ ├── globals.global.d.ts │ │ │ ├── http.d.ts │ │ │ ├── http2.d.ts │ │ │ ├── https.d.ts │ │ │ ├── index.d.ts │ │ │ ├── inspector.d.ts │ │ │ ├── module.d.ts │ │ │ ├── net.d.ts │ │ │ ├── os.d.ts │ │ │ ├── package.json │ │ │ ├── path.d.ts │ │ │ ├── perf_hooks.d.ts │ │ │ ├── process.d.ts │ │ │ ├── punycode.d.ts │ │ │ ├── querystring.d.ts │ │ │ ├── readline.d.ts │ │ │ ├── readline │ │ │ │ └── promises.d.ts │ │ │ ├── repl.d.ts │ │ │ ├── stream.d.ts │ │ │ ├── stream │ │ │ │ ├── consumers.d.ts │ │ │ │ ├── promises.d.ts │ │ │ │ └── web.d.ts │ │ │ ├── string_decoder.d.ts │ │ │ ├── test.d.ts │ │ │ ├── timers.d.ts │ │ │ ├── timers │ │ │ │ └── promises.d.ts │ │ │ ├── tls.d.ts │ │ │ ├── trace_events.d.ts │ │ │ ├── tty.d.ts │ │ │ ├── url.d.ts │ │ │ ├── util.d.ts │ │ │ ├── v8.d.ts │ │ │ ├── vm.d.ts │ │ │ ├── wasi.d.ts │ │ │ ├── worker_threads.d.ts │ │ │ └── zlib.d.ts │ │ ├── nodemailer │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── lib │ │ │ │ ├── addressparser │ │ │ │ │ └── index.d.ts │ │ │ │ ├── base64 │ │ │ │ │ └── index.d.ts │ │ │ │ ├── dkim │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── message-parser.d.ts │ │ │ │ │ ├── relaxed-body.d.ts │ │ │ │ │ └── sign.d.ts │ │ │ │ ├── fetch │ │ │ │ │ ├── cookies.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── json-transport │ │ │ │ │ └── index.d.ts │ │ │ │ ├── mail-composer │ │ │ │ │ └── index.d.ts │ │ │ │ ├── mailer │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── mail-message.d.ts │ │ │ │ ├── mime-funcs │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── mime-types.d.ts │ │ │ │ ├── mime-node │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── last-newline.d.ts │ │ │ │ ├── qp │ │ │ │ │ └── index.d.ts │ │ │ │ ├── sendmail-transport │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── le-unix.d.ts │ │ │ │ │ └── le-windows.d.ts │ │ │ │ ├── ses-transport │ │ │ │ │ └── index.d.ts │ │ │ │ ├── shared │ │ │ │ │ └── index.d.ts │ │ │ │ ├── smtp-connection │ │ │ │ │ ├── data-stream.d.ts │ │ │ │ │ ├── http-proxy-client.d.ts │ │ │ │ │ └── index.d.ts │ │ │ │ ├── smtp-pool │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── pool-resource.d.ts │ │ │ │ ├── smtp-transport │ │ │ │ │ └── index.d.ts │ │ │ │ ├── stream-transport │ │ │ │ │ └── index.d.ts │ │ │ │ ├── well-known │ │ │ │ │ └── index.d.ts │ │ │ │ └── xoauth2 │ │ │ │ │ └── index.d.ts │ │ │ └── package.json │ │ ├── pg │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── lib │ │ │ │ └── type-overrides.d.ts │ │ │ └── package.json │ │ ├── prettier │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── doc.d.ts │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ ├── parser-angular.d.ts │ │ │ ├── parser-babel.d.ts │ │ │ ├── parser-espree.d.ts │ │ │ ├── parser-flow.d.ts │ │ │ ├── parser-glimmer.d.ts │ │ │ ├── parser-graphql.d.ts │ │ │ ├── parser-html.d.ts │ │ │ ├── parser-markdown.d.ts │ │ │ ├── parser-meriyah.d.ts │ │ │ ├── parser-postcss.d.ts │ │ │ ├── parser-typescript.d.ts │ │ │ ├── parser-yaml.d.ts │ │ │ └── standalone.d.ts │ │ ├── qs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── range-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── serve-static │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── stack-utils │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── strip-bom │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── types-metadata.json │ │ ├── strip-json-comments │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── webidl-conversions │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ ├── whatwg-url │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── URL-impl.d.ts │ │ │ │ ├── URL.d.ts │ │ │ │ ├── URLSearchParams-impl.d.ts │ │ │ │ └── URLSearchParams.d.ts │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ └── webidl2js-wrapper.d.ts │ │ ├── yargs-parser │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.d.ts │ │ │ └── package.json │ │ └── yargs │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── helpers.d.mts │ │ │ ├── helpers.d.ts │ │ │ ├── index.d.mts │ │ │ ├── index.d.ts │ │ │ ├── package.json │ │ │ ├── ts4.1 │ │ │ └── index.d.ts │ │ │ └── yargs.d.ts │ ├── abbrev │ │ ├── LICENSE │ │ ├── README.md │ │ ├── abbrev.js │ │ └── package.json │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── acorn-walk │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── walk.d.ts │ │ │ ├── walk.js │ │ │ └── walk.mjs │ │ └── package.json │ ├── acorn │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── acorn │ │ ├── dist │ │ │ ├── acorn.d.ts │ │ │ ├── acorn.js │ │ │ ├── acorn.mjs │ │ │ ├── acorn.mjs.d.ts │ │ │ └── bin.js │ │ └── package.json │ ├── agent-base │ │ ├── README.md │ │ ├── dist │ │ │ └── src │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── promisify.d.ts │ │ │ │ ├── promisify.js │ │ │ │ └── promisify.js.map │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── src │ │ │ ├── index.ts │ │ │ └── promisify.ts │ ├── ansi-escapes │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── ansi-regex │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── ansi-styles │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── anymatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── aproba │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── are-we-there-yet │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── tracker-base.js │ │ │ ├── tracker-group.js │ │ │ ├── tracker-stream.js │ │ │ └── tracker.js │ │ └── package.json │ ├── arg │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── argon2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── argon2.d.ts │ │ ├── argon2.js │ │ ├── argon2 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ │ └── argon2.h │ │ │ └── src │ │ │ │ ├── argon2.c │ │ │ │ ├── blake2 │ │ │ │ ├── blake2-impl.h │ │ │ │ ├── blake2.h │ │ │ │ ├── blake2b.c │ │ │ │ ├── blamka-round-opt.h │ │ │ │ └── blamka-round-ref.h │ │ │ │ ├── core.c │ │ │ │ ├── core.h │ │ │ │ ├── encoding.c │ │ │ │ ├── encoding.h │ │ │ │ ├── opt.c │ │ │ │ ├── ref.c │ │ │ │ ├── thread.c │ │ │ │ └── thread.h │ │ ├── binding.gyp │ │ ├── lib │ │ │ └── binding │ │ │ │ └── napi-v3 │ │ │ │ └── argon2.node │ │ ├── package.json │ │ └── src │ │ │ └── argon2_node.cpp │ ├── argparse │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── action.js │ │ │ ├── action │ │ │ │ ├── append.js │ │ │ │ ├── append │ │ │ │ │ └── constant.js │ │ │ │ ├── count.js │ │ │ │ ├── help.js │ │ │ │ ├── store.js │ │ │ │ ├── store │ │ │ │ │ ├── constant.js │ │ │ │ │ ├── false.js │ │ │ │ │ └── true.js │ │ │ │ ├── subparsers.js │ │ │ │ └── version.js │ │ │ ├── action_container.js │ │ │ ├── argparse.js │ │ │ ├── argument │ │ │ │ ├── error.js │ │ │ │ ├── exclusive.js │ │ │ │ └── group.js │ │ │ ├── argument_parser.js │ │ │ ├── const.js │ │ │ ├── help │ │ │ │ ├── added_formatters.js │ │ │ │ └── formatter.js │ │ │ ├── namespace.js │ │ │ └── utils.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── axios │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── UPGRADE_GUIDE.md │ │ ├── dist │ │ │ ├── axios.js │ │ │ ├── axios.map │ │ │ ├── axios.min.js │ │ │ └── axios.min.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── adapters │ │ │ │ ├── README.md │ │ │ │ ├── http.js │ │ │ │ └── xhr.js │ │ │ ├── axios.js │ │ │ ├── cancel │ │ │ │ ├── Cancel.js │ │ │ │ ├── CancelToken.js │ │ │ │ └── isCancel.js │ │ │ ├── core │ │ │ │ ├── Axios.js │ │ │ │ ├── InterceptorManager.js │ │ │ │ ├── README.md │ │ │ │ ├── buildFullPath.js │ │ │ │ ├── createError.js │ │ │ │ ├── dispatchRequest.js │ │ │ │ ├── enhanceError.js │ │ │ │ ├── mergeConfig.js │ │ │ │ ├── settle.js │ │ │ │ └── transformData.js │ │ │ ├── defaults │ │ │ │ ├── index.js │ │ │ │ └── transitional.js │ │ │ ├── env │ │ │ │ ├── README.md │ │ │ │ └── data.js │ │ │ ├── helpers │ │ │ │ ├── README.md │ │ │ │ ├── bind.js │ │ │ │ ├── buildURL.js │ │ │ │ ├── combineURLs.js │ │ │ │ ├── cookies.js │ │ │ │ ├── deprecatedMethod.js │ │ │ │ ├── isAbsoluteURL.js │ │ │ │ ├── isAxiosError.js │ │ │ │ ├── isURLSameOrigin.js │ │ │ │ ├── normalizeHeaderName.js │ │ │ │ ├── parseHeaders.js │ │ │ │ ├── spread.js │ │ │ │ ├── toFormData.js │ │ │ │ └── validator.js │ │ │ └── utils.js │ │ ├── package.json │ │ ├── tsconfig.json │ │ └── tslint.json │ ├── babel-jest │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── loadBabelConfig.js │ │ └── package.json │ ├── babel-plugin-istanbul │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ └── load-nyc-config-sync.js │ │ └── package.json │ ├── babel-plugin-jest-hoist │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── babel-preset-current-node-syntax │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── scripts │ │ │ └── check-yarn-bug.sh │ │ └── src │ │ │ └── index.js │ ├── babel-preset-jest │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── balanced-match │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── base64-js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base64js.min.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── bcrypt │ │ ├── .editorconfig │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── appveyor.yml │ │ ├── bcrypt.js │ │ ├── binding.gyp │ │ ├── examples │ │ │ ├── async_compare.js │ │ │ └── forever_gen_salt.js │ │ ├── lib │ │ │ └── binding │ │ │ │ └── napi-v3 │ │ │ │ └── bcrypt_lib.node │ │ ├── node_modules │ │ │ └── node-addon-api │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── common.gypi │ │ │ │ ├── except.gypi │ │ │ │ ├── index.js │ │ │ │ ├── napi-inl.deprecated.h │ │ │ │ ├── napi-inl.h │ │ │ │ ├── napi.h │ │ │ │ ├── node_api.gyp │ │ │ │ ├── noexcept.gypi │ │ │ │ ├── nothing.c │ │ │ │ ├── package-support.json │ │ │ │ ├── package.json │ │ │ │ └── tools │ │ │ │ ├── README.md │ │ │ │ ├── check-napi.js │ │ │ │ ├── clang-format.js │ │ │ │ └── conversion.js │ │ ├── package.json │ │ ├── promises.js │ │ ├── src │ │ │ ├── bcrypt.cc │ │ │ ├── bcrypt_node.cc │ │ │ ├── blowfish.cc │ │ │ └── node_blf.h │ │ ├── test │ │ │ ├── async.js │ │ │ ├── implementation.js │ │ │ ├── promise.js │ │ │ ├── repetitions.js │ │ │ └── sync.js │ │ └── test_alpine.sh │ ├── binary-extensions │ │ ├── binary-extensions.json │ │ ├── binary-extensions.json.d.ts │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── brace-expansion │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── braces │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── compile.js │ │ │ ├── constants.js │ │ │ ├── expand.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ └── package.json │ ├── browserslist │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── cli.js │ │ ├── error.d.ts │ │ ├── error.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── node.js │ │ ├── package.json │ │ └── parse.js │ ├── bs-logger │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── logger │ │ │ │ ├── context.d.ts │ │ │ │ ├── context.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── level.d.ts │ │ │ │ ├── level.js │ │ │ │ ├── message.d.ts │ │ │ │ ├── message.js │ │ │ │ ├── root.d.ts │ │ │ │ ├── root.js │ │ │ │ ├── target.d.ts │ │ │ │ └── target.js │ │ │ ├── testing │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── target-mock.d.ts │ │ │ │ └── target-mock.js │ │ │ └── utils │ │ │ │ ├── cache-getters.d.ts │ │ │ │ └── cache-getters.js │ │ └── package.json │ ├── bser │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── bson │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── bson.d.ts │ │ ├── dist │ │ │ ├── bson.browser.esm.js │ │ │ ├── bson.browser.esm.js.map │ │ │ ├── bson.browser.umd.js │ │ │ ├── bson.browser.umd.js.map │ │ │ ├── bson.bundle.js │ │ │ ├── bson.bundle.js.map │ │ │ ├── bson.esm.js │ │ │ └── bson.esm.js.map │ │ ├── etc │ │ │ └── prepare.js │ │ ├── lib │ │ │ ├── binary.js │ │ │ ├── binary.js.map │ │ │ ├── bson.js │ │ │ ├── bson.js.map │ │ │ ├── code.js │ │ │ ├── code.js.map │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── db_ref.js │ │ │ ├── db_ref.js.map │ │ │ ├── decimal128.js │ │ │ ├── decimal128.js.map │ │ │ ├── double.js │ │ │ ├── double.js.map │ │ │ ├── ensure_buffer.js │ │ │ ├── ensure_buffer.js.map │ │ │ ├── error.js │ │ │ ├── error.js.map │ │ │ ├── extended_json.js │ │ │ ├── extended_json.js.map │ │ │ ├── int_32.js │ │ │ ├── int_32.js.map │ │ │ ├── long.js │ │ │ ├── long.js.map │ │ │ ├── map.js │ │ │ ├── map.js.map │ │ │ ├── max_key.js │ │ │ ├── max_key.js.map │ │ │ ├── min_key.js │ │ │ ├── min_key.js.map │ │ │ ├── objectid.js │ │ │ ├── objectid.js.map │ │ │ ├── parser │ │ │ │ ├── calculate_size.js │ │ │ │ ├── calculate_size.js.map │ │ │ │ ├── deserializer.js │ │ │ │ ├── deserializer.js.map │ │ │ │ ├── serializer.js │ │ │ │ ├── serializer.js.map │ │ │ │ ├── utils.js │ │ │ │ └── utils.js.map │ │ │ ├── regexp.js │ │ │ ├── regexp.js.map │ │ │ ├── symbol.js │ │ │ ├── symbol.js.map │ │ │ ├── timestamp.js │ │ │ ├── timestamp.js.map │ │ │ ├── utils │ │ │ │ ├── global.js │ │ │ │ └── global.js.map │ │ │ ├── uuid_utils.js │ │ │ ├── uuid_utils.js.map │ │ │ ├── validate_utf8.js │ │ │ └── validate_utf8.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── binary.ts │ │ │ ├── bson.ts │ │ │ ├── code.ts │ │ │ ├── constants.ts │ │ │ ├── db_ref.ts │ │ │ ├── decimal128.ts │ │ │ ├── double.ts │ │ │ ├── ensure_buffer.ts │ │ │ ├── error.ts │ │ │ ├── extended_json.ts │ │ │ ├── int_32.ts │ │ │ ├── long.ts │ │ │ ├── map.ts │ │ │ ├── max_key.ts │ │ │ ├── min_key.ts │ │ │ ├── objectid.ts │ │ │ ├── parser │ │ │ ├── calculate_size.ts │ │ │ ├── deserializer.ts │ │ │ ├── serializer.ts │ │ │ └── utils.ts │ │ │ ├── regexp.ts │ │ │ ├── symbol.ts │ │ │ ├── timestamp.ts │ │ │ ├── utils │ │ │ └── global.ts │ │ │ ├── uuid_utils.ts │ │ │ └── validate_utf8.ts │ ├── buffer-equal-constant-time │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── buffer-from │ │ ├── LICENSE │ │ ├── index.js │ │ ├── package.json │ │ └── readme.md │ ├── buffer-writer │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── mocha.opts │ │ │ └── writer-tests.js │ ├── buffer │ │ ├── AUTHORS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── call-bind │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── callBound.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── callBound.js │ │ │ └── index.js │ ├── callsites │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── camelcase │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── caniuse-lite │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data │ │ │ ├── agents.js │ │ │ ├── browserVersions.js │ │ │ ├── browsers.js │ │ │ ├── features.js │ │ │ ├── features │ │ │ │ ├── aac.js │ │ │ │ ├── abortcontroller.js │ │ │ │ ├── ac3-ec3.js │ │ │ │ ├── accelerometer.js │ │ │ │ ├── addeventlistener.js │ │ │ │ ├── alternate-stylesheet.js │ │ │ │ ├── ambient-light.js │ │ │ │ ├── apng.js │ │ │ │ ├── array-find-index.js │ │ │ │ ├── array-find.js │ │ │ │ ├── array-flat.js │ │ │ │ ├── array-includes.js │ │ │ │ ├── arrow-functions.js │ │ │ │ ├── asmjs.js │ │ │ │ ├── async-clipboard.js │ │ │ │ ├── async-functions.js │ │ │ │ ├── atob-btoa.js │ │ │ │ ├── audio-api.js │ │ │ │ ├── audio.js │ │ │ │ ├── audiotracks.js │ │ │ │ ├── autofocus.js │ │ │ │ ├── auxclick.js │ │ │ │ ├── av1.js │ │ │ │ ├── avif.js │ │ │ │ ├── background-attachment.js │ │ │ │ ├── background-clip-text.js │ │ │ │ ├── background-img-opts.js │ │ │ │ ├── background-position-x-y.js │ │ │ │ ├── background-repeat-round-space.js │ │ │ │ ├── background-sync.js │ │ │ │ ├── battery-status.js │ │ │ │ ├── beacon.js │ │ │ │ ├── beforeafterprint.js │ │ │ │ ├── bigint.js │ │ │ │ ├── blobbuilder.js │ │ │ │ ├── bloburls.js │ │ │ │ ├── border-image.js │ │ │ │ ├── border-radius.js │ │ │ │ ├── broadcastchannel.js │ │ │ │ ├── brotli.js │ │ │ │ ├── calc.js │ │ │ │ ├── canvas-blending.js │ │ │ │ ├── canvas-text.js │ │ │ │ ├── canvas.js │ │ │ │ ├── ch-unit.js │ │ │ │ ├── chacha20-poly1305.js │ │ │ │ ├── channel-messaging.js │ │ │ │ ├── childnode-remove.js │ │ │ │ ├── classlist.js │ │ │ │ ├── client-hints-dpr-width-viewport.js │ │ │ │ ├── clipboard.js │ │ │ │ ├── colr-v1.js │ │ │ │ ├── colr.js │ │ │ │ ├── comparedocumentposition.js │ │ │ │ ├── console-basic.js │ │ │ │ ├── console-time.js │ │ │ │ ├── const.js │ │ │ │ ├── constraint-validation.js │ │ │ │ ├── contenteditable.js │ │ │ │ ├── contentsecuritypolicy.js │ │ │ │ ├── contentsecuritypolicy2.js │ │ │ │ ├── cookie-store-api.js │ │ │ │ ├── cors.js │ │ │ │ ├── createimagebitmap.js │ │ │ │ ├── credential-management.js │ │ │ │ ├── cryptography.js │ │ │ │ ├── css-all.js │ │ │ │ ├── css-animation.js │ │ │ │ ├── css-any-link.js │ │ │ │ ├── css-appearance.js │ │ │ │ ├── css-at-counter-style.js │ │ │ │ ├── css-autofill.js │ │ │ │ ├── css-backdrop-filter.js │ │ │ │ ├── css-background-offsets.js │ │ │ │ ├── css-backgroundblendmode.js │ │ │ │ ├── css-boxdecorationbreak.js │ │ │ │ ├── css-boxshadow.js │ │ │ │ ├── css-canvas.js │ │ │ │ ├── css-caret-color.js │ │ │ │ ├── css-cascade-layers.js │ │ │ │ ├── css-case-insensitive.js │ │ │ │ ├── css-clip-path.js │ │ │ │ ├── css-color-adjust.js │ │ │ │ ├── css-color-function.js │ │ │ │ ├── css-conic-gradients.js │ │ │ │ ├── css-container-queries.js │ │ │ │ ├── css-container-query-units.js │ │ │ │ ├── css-containment.js │ │ │ │ ├── css-content-visibility.js │ │ │ │ ├── css-counters.js │ │ │ │ ├── css-crisp-edges.js │ │ │ │ ├── css-cross-fade.js │ │ │ │ ├── css-default-pseudo.js │ │ │ │ ├── css-descendant-gtgt.js │ │ │ │ ├── css-deviceadaptation.js │ │ │ │ ├── css-dir-pseudo.js │ │ │ │ ├── css-display-contents.js │ │ │ │ ├── css-element-function.js │ │ │ │ ├── css-env-function.js │ │ │ │ ├── css-exclusions.js │ │ │ │ ├── css-featurequeries.js │ │ │ │ ├── css-file-selector-button.js │ │ │ │ ├── css-filter-function.js │ │ │ │ ├── css-filters.js │ │ │ │ ├── css-first-letter.js │ │ │ │ ├── css-first-line.js │ │ │ │ ├── css-fixed.js │ │ │ │ ├── css-focus-visible.js │ │ │ │ ├── css-focus-within.js │ │ │ │ ├── css-font-palette.js │ │ │ │ ├── css-font-rendering-controls.js │ │ │ │ ├── css-font-stretch.js │ │ │ │ ├── css-gencontent.js │ │ │ │ ├── css-gradients.js │ │ │ │ ├── css-grid-animation.js │ │ │ │ ├── css-grid.js │ │ │ │ ├── css-hanging-punctuation.js │ │ │ │ ├── css-has.js │ │ │ │ ├── css-hyphenate.js │ │ │ │ ├── css-hyphens.js │ │ │ │ ├── css-image-orientation.js │ │ │ │ ├── css-image-set.js │ │ │ │ ├── css-in-out-of-range.js │ │ │ │ ├── css-indeterminate-pseudo.js │ │ │ │ ├── css-initial-letter.js │ │ │ │ ├── css-initial-value.js │ │ │ │ ├── css-lch-lab.js │ │ │ │ ├── css-letter-spacing.js │ │ │ │ ├── css-line-clamp.js │ │ │ │ ├── css-logical-props.js │ │ │ │ ├── css-marker-pseudo.js │ │ │ │ ├── css-masks.js │ │ │ │ ├── css-matches-pseudo.js │ │ │ │ ├── css-math-functions.js │ │ │ │ ├── css-media-interaction.js │ │ │ │ ├── css-media-range-syntax.js │ │ │ │ ├── css-media-resolution.js │ │ │ │ ├── css-media-scripting.js │ │ │ │ ├── css-mediaqueries.js │ │ │ │ ├── css-mixblendmode.js │ │ │ │ ├── css-motion-paths.js │ │ │ │ ├── css-namespaces.js │ │ │ │ ├── css-nesting.js │ │ │ │ ├── css-not-sel-list.js │ │ │ │ ├── css-nth-child-of.js │ │ │ │ ├── css-opacity.js │ │ │ │ ├── css-optional-pseudo.js │ │ │ │ ├── css-overflow-anchor.js │ │ │ │ ├── css-overflow-overlay.js │ │ │ │ ├── css-overflow.js │ │ │ │ ├── css-overscroll-behavior.js │ │ │ │ ├── css-page-break.js │ │ │ │ ├── css-paged-media.js │ │ │ │ ├── css-paint-api.js │ │ │ │ ├── css-placeholder-shown.js │ │ │ │ ├── css-placeholder.js │ │ │ │ ├── css-print-color-adjust.js │ │ │ │ ├── css-read-only-write.js │ │ │ │ ├── css-rebeccapurple.js │ │ │ │ ├── css-reflections.js │ │ │ │ ├── css-regions.js │ │ │ │ ├── css-repeating-gradients.js │ │ │ │ ├── css-resize.js │ │ │ │ ├── css-revert-value.js │ │ │ │ ├── css-rrggbbaa.js │ │ │ │ ├── css-scroll-behavior.js │ │ │ │ ├── css-scroll-timeline.js │ │ │ │ ├── css-scrollbar.js │ │ │ │ ├── css-sel2.js │ │ │ │ ├── css-sel3.js │ │ │ │ ├── css-selection.js │ │ │ │ ├── css-shapes.js │ │ │ │ ├── css-snappoints.js │ │ │ │ ├── css-sticky.js │ │ │ │ ├── css-subgrid.js │ │ │ │ ├── css-supports-api.js │ │ │ │ ├── css-table.js │ │ │ │ ├── css-text-align-last.js │ │ │ │ ├── css-text-indent.js │ │ │ │ ├── css-text-justify.js │ │ │ │ ├── css-text-orientation.js │ │ │ │ ├── css-text-spacing.js │ │ │ │ ├── css-textshadow.js │ │ │ │ ├── css-touch-action-2.js │ │ │ │ ├── css-touch-action.js │ │ │ │ ├── css-transitions.js │ │ │ │ ├── css-unicode-bidi.js │ │ │ │ ├── css-unset-value.js │ │ │ │ ├── css-variables.js │ │ │ │ ├── css-when-else.js │ │ │ │ ├── css-widows-orphans.js │ │ │ │ ├── css-width-stretch.js │ │ │ │ ├── css-writing-mode.js │ │ │ │ ├── css-zoom.js │ │ │ │ ├── css3-attr.js │ │ │ │ ├── css3-boxsizing.js │ │ │ │ ├── css3-colors.js │ │ │ │ ├── css3-cursors-grab.js │ │ │ │ ├── css3-cursors-newer.js │ │ │ │ ├── css3-cursors.js │ │ │ │ ├── css3-tabsize.js │ │ │ │ ├── currentcolor.js │ │ │ │ ├── custom-elements.js │ │ │ │ ├── custom-elementsv1.js │ │ │ │ ├── customevent.js │ │ │ │ ├── datalist.js │ │ │ │ ├── dataset.js │ │ │ │ ├── datauri.js │ │ │ │ ├── date-tolocaledatestring.js │ │ │ │ ├── declarative-shadow-dom.js │ │ │ │ ├── decorators.js │ │ │ │ ├── details.js │ │ │ │ ├── deviceorientation.js │ │ │ │ ├── devicepixelratio.js │ │ │ │ ├── dialog.js │ │ │ │ ├── dispatchevent.js │ │ │ │ ├── dnssec.js │ │ │ │ ├── do-not-track.js │ │ │ │ ├── document-currentscript.js │ │ │ │ ├── document-evaluate-xpath.js │ │ │ │ ├── document-execcommand.js │ │ │ │ ├── document-policy.js │ │ │ │ ├── document-scrollingelement.js │ │ │ │ ├── documenthead.js │ │ │ │ ├── dom-manip-convenience.js │ │ │ │ ├── dom-range.js │ │ │ │ ├── domcontentloaded.js │ │ │ │ ├── domfocusin-domfocusout-events.js │ │ │ │ ├── dommatrix.js │ │ │ │ ├── download.js │ │ │ │ ├── dragndrop.js │ │ │ │ ├── element-closest.js │ │ │ │ ├── element-from-point.js │ │ │ │ ├── element-scroll-methods.js │ │ │ │ ├── eme.js │ │ │ │ ├── eot.js │ │ │ │ ├── es5.js │ │ │ │ ├── es6-class.js │ │ │ │ ├── es6-generators.js │ │ │ │ ├── es6-module-dynamic-import.js │ │ │ │ ├── es6-module.js │ │ │ │ ├── es6-number.js │ │ │ │ ├── es6-string-includes.js │ │ │ │ ├── es6.js │ │ │ │ ├── eventsource.js │ │ │ │ ├── extended-system-fonts.js │ │ │ │ ├── feature-policy.js │ │ │ │ ├── fetch.js │ │ │ │ ├── fieldset-disabled.js │ │ │ │ ├── fileapi.js │ │ │ │ ├── filereader.js │ │ │ │ ├── filereadersync.js │ │ │ │ ├── filesystem.js │ │ │ │ ├── flac.js │ │ │ │ ├── flexbox-gap.js │ │ │ │ ├── flexbox.js │ │ │ │ ├── flow-root.js │ │ │ │ ├── focusin-focusout-events.js │ │ │ │ ├── focusoptions-preventscroll.js │ │ │ │ ├── font-family-system-ui.js │ │ │ │ ├── font-feature.js │ │ │ │ ├── font-kerning.js │ │ │ │ ├── font-loading.js │ │ │ │ ├── font-metrics-overrides.js │ │ │ │ ├── font-size-adjust.js │ │ │ │ ├── font-smooth.js │ │ │ │ ├── font-unicode-range.js │ │ │ │ ├── font-variant-alternates.js │ │ │ │ ├── font-variant-numeric.js │ │ │ │ ├── fontface.js │ │ │ │ ├── form-attribute.js │ │ │ │ ├── form-submit-attributes.js │ │ │ │ ├── form-validation.js │ │ │ │ ├── forms.js │ │ │ │ ├── fullscreen.js │ │ │ │ ├── gamepad.js │ │ │ │ ├── geolocation.js │ │ │ │ ├── getboundingclientrect.js │ │ │ │ ├── getcomputedstyle.js │ │ │ │ ├── getelementsbyclassname.js │ │ │ │ ├── getrandomvalues.js │ │ │ │ ├── gyroscope.js │ │ │ │ ├── hardwareconcurrency.js │ │ │ │ ├── hashchange.js │ │ │ │ ├── heif.js │ │ │ │ ├── hevc.js │ │ │ │ ├── hidden.js │ │ │ │ ├── high-resolution-time.js │ │ │ │ ├── history.js │ │ │ │ ├── html-media-capture.js │ │ │ │ ├── html5semantic.js │ │ │ │ ├── http-live-streaming.js │ │ │ │ ├── http2.js │ │ │ │ ├── http3.js │ │ │ │ ├── iframe-sandbox.js │ │ │ │ ├── iframe-seamless.js │ │ │ │ ├── iframe-srcdoc.js │ │ │ │ ├── imagecapture.js │ │ │ │ ├── ime.js │ │ │ │ ├── img-naturalwidth-naturalheight.js │ │ │ │ ├── import-maps.js │ │ │ │ ├── imports.js │ │ │ │ ├── indeterminate-checkbox.js │ │ │ │ ├── indexeddb.js │ │ │ │ ├── indexeddb2.js │ │ │ │ ├── inline-block.js │ │ │ │ ├── innertext.js │ │ │ │ ├── input-autocomplete-onoff.js │ │ │ │ ├── input-color.js │ │ │ │ ├── input-datetime.js │ │ │ │ ├── input-email-tel-url.js │ │ │ │ ├── input-event.js │ │ │ │ ├── input-file-accept.js │ │ │ │ ├── input-file-directory.js │ │ │ │ ├── input-file-multiple.js │ │ │ │ ├── input-inputmode.js │ │ │ │ ├── input-minlength.js │ │ │ │ ├── input-number.js │ │ │ │ ├── input-pattern.js │ │ │ │ ├── input-placeholder.js │ │ │ │ ├── input-range.js │ │ │ │ ├── input-search.js │ │ │ │ ├── input-selection.js │ │ │ │ ├── insert-adjacent.js │ │ │ │ ├── insertadjacenthtml.js │ │ │ │ ├── internationalization.js │ │ │ │ ├── intersectionobserver-v2.js │ │ │ │ ├── intersectionobserver.js │ │ │ │ ├── intl-pluralrules.js │ │ │ │ ├── intrinsic-width.js │ │ │ │ ├── jpeg2000.js │ │ │ │ ├── jpegxl.js │ │ │ │ ├── jpegxr.js │ │ │ │ ├── js-regexp-lookbehind.js │ │ │ │ ├── json.js │ │ │ │ ├── justify-content-space-evenly.js │ │ │ │ ├── kerning-pairs-ligatures.js │ │ │ │ ├── keyboardevent-charcode.js │ │ │ │ ├── keyboardevent-code.js │ │ │ │ ├── keyboardevent-getmodifierstate.js │ │ │ │ ├── keyboardevent-key.js │ │ │ │ ├── keyboardevent-location.js │ │ │ │ ├── keyboardevent-which.js │ │ │ │ ├── lazyload.js │ │ │ │ ├── let.js │ │ │ │ ├── link-icon-png.js │ │ │ │ ├── link-icon-svg.js │ │ │ │ ├── link-rel-dns-prefetch.js │ │ │ │ ├── link-rel-modulepreload.js │ │ │ │ ├── link-rel-preconnect.js │ │ │ │ ├── link-rel-prefetch.js │ │ │ │ ├── link-rel-preload.js │ │ │ │ ├── link-rel-prerender.js │ │ │ │ ├── loading-lazy-attr.js │ │ │ │ ├── localecompare.js │ │ │ │ ├── magnetometer.js │ │ │ │ ├── matchesselector.js │ │ │ │ ├── matchmedia.js │ │ │ │ ├── mathml.js │ │ │ │ ├── maxlength.js │ │ │ │ ├── media-attribute.js │ │ │ │ ├── media-fragments.js │ │ │ │ ├── media-session-api.js │ │ │ │ ├── mediacapture-fromelement.js │ │ │ │ ├── mediarecorder.js │ │ │ │ ├── mediasource.js │ │ │ │ ├── menu.js │ │ │ │ ├── meta-theme-color.js │ │ │ │ ├── meter.js │ │ │ │ ├── midi.js │ │ │ │ ├── minmaxwh.js │ │ │ │ ├── mp3.js │ │ │ │ ├── mpeg-dash.js │ │ │ │ ├── mpeg4.js │ │ │ │ ├── multibackgrounds.js │ │ │ │ ├── multicolumn.js │ │ │ │ ├── mutation-events.js │ │ │ │ ├── mutationobserver.js │ │ │ │ ├── namevalue-storage.js │ │ │ │ ├── native-filesystem-api.js │ │ │ │ ├── nav-timing.js │ │ │ │ ├── navigator-language.js │ │ │ │ ├── netinfo.js │ │ │ │ ├── notifications.js │ │ │ │ ├── object-entries.js │ │ │ │ ├── object-fit.js │ │ │ │ ├── object-observe.js │ │ │ │ ├── object-values.js │ │ │ │ ├── objectrtc.js │ │ │ │ ├── offline-apps.js │ │ │ │ ├── offscreencanvas.js │ │ │ │ ├── ogg-vorbis.js │ │ │ │ ├── ogv.js │ │ │ │ ├── ol-reversed.js │ │ │ │ ├── once-event-listener.js │ │ │ │ ├── online-status.js │ │ │ │ ├── opus.js │ │ │ │ ├── orientation-sensor.js │ │ │ │ ├── outline.js │ │ │ │ ├── pad-start-end.js │ │ │ │ ├── page-transition-events.js │ │ │ │ ├── pagevisibility.js │ │ │ │ ├── passive-event-listener.js │ │ │ │ ├── passwordrules.js │ │ │ │ ├── path2d.js │ │ │ │ ├── payment-request.js │ │ │ │ ├── pdf-viewer.js │ │ │ │ ├── permissions-api.js │ │ │ │ ├── permissions-policy.js │ │ │ │ ├── picture-in-picture.js │ │ │ │ ├── picture.js │ │ │ │ ├── ping.js │ │ │ │ ├── png-alpha.js │ │ │ │ ├── pointer-events.js │ │ │ │ ├── pointer.js │ │ │ │ ├── pointerlock.js │ │ │ │ ├── portals.js │ │ │ │ ├── prefers-color-scheme.js │ │ │ │ ├── prefers-reduced-motion.js │ │ │ │ ├── private-class-fields.js │ │ │ │ ├── private-methods-and-accessors.js │ │ │ │ ├── progress.js │ │ │ │ ├── promise-finally.js │ │ │ │ ├── promises.js │ │ │ │ ├── proximity.js │ │ │ │ ├── proxy.js │ │ │ │ ├── public-class-fields.js │ │ │ │ ├── publickeypinning.js │ │ │ │ ├── push-api.js │ │ │ │ ├── queryselector.js │ │ │ │ ├── readonly-attr.js │ │ │ │ ├── referrer-policy.js │ │ │ │ ├── registerprotocolhandler.js │ │ │ │ ├── rel-noopener.js │ │ │ │ ├── rel-noreferrer.js │ │ │ │ ├── rellist.js │ │ │ │ ├── rem.js │ │ │ │ ├── requestanimationframe.js │ │ │ │ ├── requestidlecallback.js │ │ │ │ ├── resizeobserver.js │ │ │ │ ├── resource-timing.js │ │ │ │ ├── rest-parameters.js │ │ │ │ ├── rtcpeerconnection.js │ │ │ │ ├── ruby.js │ │ │ │ ├── run-in.js │ │ │ │ ├── same-site-cookie-attribute.js │ │ │ │ ├── screen-orientation.js │ │ │ │ ├── script-async.js │ │ │ │ ├── script-defer.js │ │ │ │ ├── scrollintoview.js │ │ │ │ ├── scrollintoviewifneeded.js │ │ │ │ ├── sdch.js │ │ │ │ ├── selection-api.js │ │ │ │ ├── server-timing.js │ │ │ │ ├── serviceworkers.js │ │ │ │ ├── setimmediate.js │ │ │ │ ├── sha-2.js │ │ │ │ ├── shadowdom.js │ │ │ │ ├── shadowdomv1.js │ │ │ │ ├── sharedarraybuffer.js │ │ │ │ ├── sharedworkers.js │ │ │ │ ├── sni.js │ │ │ │ ├── spdy.js │ │ │ │ ├── speech-recognition.js │ │ │ │ ├── speech-synthesis.js │ │ │ │ ├── spellcheck-attribute.js │ │ │ │ ├── sql-storage.js │ │ │ │ ├── srcset.js │ │ │ │ ├── stream.js │ │ │ │ ├── streams.js │ │ │ │ ├── stricttransportsecurity.js │ │ │ │ ├── style-scoped.js │ │ │ │ ├── subresource-integrity.js │ │ │ │ ├── svg-css.js │ │ │ │ ├── svg-filters.js │ │ │ │ ├── svg-fonts.js │ │ │ │ ├── svg-fragment.js │ │ │ │ ├── svg-html.js │ │ │ │ ├── svg-html5.js │ │ │ │ ├── svg-img.js │ │ │ │ ├── svg-smil.js │ │ │ │ ├── svg.js │ │ │ │ ├── sxg.js │ │ │ │ ├── tabindex-attr.js │ │ │ │ ├── template-literals.js │ │ │ │ ├── template.js │ │ │ │ ├── temporal.js │ │ │ │ ├── testfeat.js │ │ │ │ ├── text-decoration.js │ │ │ │ ├── text-emphasis.js │ │ │ │ ├── text-overflow.js │ │ │ │ ├── text-size-adjust.js │ │ │ │ ├── text-stroke.js │ │ │ │ ├── text-underline-offset.js │ │ │ │ ├── textcontent.js │ │ │ │ ├── textencoder.js │ │ │ │ ├── tls1-1.js │ │ │ │ ├── tls1-2.js │ │ │ │ ├── tls1-3.js │ │ │ │ ├── token-binding.js │ │ │ │ ├── touch.js │ │ │ │ ├── transforms2d.js │ │ │ │ ├── transforms3d.js │ │ │ │ ├── trusted-types.js │ │ │ │ ├── ttf.js │ │ │ │ ├── typedarrays.js │ │ │ │ ├── u2f.js │ │ │ │ ├── unhandledrejection.js │ │ │ │ ├── upgradeinsecurerequests.js │ │ │ │ ├── url-scroll-to-text-fragment.js │ │ │ │ ├── url.js │ │ │ │ ├── urlsearchparams.js │ │ │ │ ├── use-strict.js │ │ │ │ ├── user-select-none.js │ │ │ │ ├── user-timing.js │ │ │ │ ├── variable-fonts.js │ │ │ │ ├── vector-effect.js │ │ │ │ ├── vibration.js │ │ │ │ ├── video.js │ │ │ │ ├── videotracks.js │ │ │ │ ├── viewport-unit-variants.js │ │ │ │ ├── viewport-units.js │ │ │ │ ├── wai-aria.js │ │ │ │ ├── wake-lock.js │ │ │ │ ├── wasm.js │ │ │ │ ├── wav.js │ │ │ │ ├── wbr-element.js │ │ │ │ ├── web-animation.js │ │ │ │ ├── web-app-manifest.js │ │ │ │ ├── web-bluetooth.js │ │ │ │ ├── web-serial.js │ │ │ │ ├── web-share.js │ │ │ │ ├── webauthn.js │ │ │ │ ├── webcodecs.js │ │ │ │ ├── webgl.js │ │ │ │ ├── webgl2.js │ │ │ │ ├── webgpu.js │ │ │ │ ├── webhid.js │ │ │ │ ├── webkit-user-drag.js │ │ │ │ ├── webm.js │ │ │ │ ├── webnfc.js │ │ │ │ ├── webp.js │ │ │ │ ├── websockets.js │ │ │ │ ├── webtransport.js │ │ │ │ ├── webusb.js │ │ │ │ ├── webvr.js │ │ │ │ ├── webvtt.js │ │ │ │ ├── webworkers.js │ │ │ │ ├── webxr.js │ │ │ │ ├── will-change.js │ │ │ │ ├── woff.js │ │ │ │ ├── woff2.js │ │ │ │ ├── word-break.js │ │ │ │ ├── wordwrap.js │ │ │ │ ├── x-doc-messaging.js │ │ │ │ ├── x-frame-options.js │ │ │ │ ├── xhr2.js │ │ │ │ ├── xhtml.js │ │ │ │ ├── xhtmlsmil.js │ │ │ │ └── xml-serializer.js │ │ │ └── regions │ │ │ │ ├── AD.js │ │ │ │ ├── AE.js │ │ │ │ ├── AF.js │ │ │ │ ├── AG.js │ │ │ │ ├── AI.js │ │ │ │ ├── AL.js │ │ │ │ ├── AM.js │ │ │ │ ├── AO.js │ │ │ │ ├── AR.js │ │ │ │ ├── AS.js │ │ │ │ ├── AT.js │ │ │ │ ├── AU.js │ │ │ │ ├── AW.js │ │ │ │ ├── AX.js │ │ │ │ ├── AZ.js │ │ │ │ ├── BA.js │ │ │ │ ├── BB.js │ │ │ │ ├── BD.js │ │ │ │ ├── BE.js │ │ │ │ ├── BF.js │ │ │ │ ├── BG.js │ │ │ │ ├── BH.js │ │ │ │ ├── BI.js │ │ │ │ ├── BJ.js │ │ │ │ ├── BM.js │ │ │ │ ├── BN.js │ │ │ │ ├── BO.js │ │ │ │ ├── BR.js │ │ │ │ ├── BS.js │ │ │ │ ├── BT.js │ │ │ │ ├── BW.js │ │ │ │ ├── BY.js │ │ │ │ ├── BZ.js │ │ │ │ ├── CA.js │ │ │ │ ├── CD.js │ │ │ │ ├── CF.js │ │ │ │ ├── CG.js │ │ │ │ ├── CH.js │ │ │ │ ├── CI.js │ │ │ │ ├── CK.js │ │ │ │ ├── CL.js │ │ │ │ ├── CM.js │ │ │ │ ├── CN.js │ │ │ │ ├── CO.js │ │ │ │ ├── CR.js │ │ │ │ ├── CU.js │ │ │ │ ├── CV.js │ │ │ │ ├── CX.js │ │ │ │ ├── CY.js │ │ │ │ ├── CZ.js │ │ │ │ ├── DE.js │ │ │ │ ├── DJ.js │ │ │ │ ├── DK.js │ │ │ │ ├── DM.js │ │ │ │ ├── DO.js │ │ │ │ ├── DZ.js │ │ │ │ ├── EC.js │ │ │ │ ├── EE.js │ │ │ │ ├── EG.js │ │ │ │ ├── ER.js │ │ │ │ ├── ES.js │ │ │ │ ├── ET.js │ │ │ │ ├── FI.js │ │ │ │ ├── FJ.js │ │ │ │ ├── FK.js │ │ │ │ ├── FM.js │ │ │ │ ├── FO.js │ │ │ │ ├── FR.js │ │ │ │ ├── GA.js │ │ │ │ ├── GB.js │ │ │ │ ├── GD.js │ │ │ │ ├── GE.js │ │ │ │ ├── GF.js │ │ │ │ ├── GG.js │ │ │ │ ├── GH.js │ │ │ │ ├── GI.js │ │ │ │ ├── GL.js │ │ │ │ ├── GM.js │ │ │ │ ├── GN.js │ │ │ │ ├── GP.js │ │ │ │ ├── GQ.js │ │ │ │ ├── GR.js │ │ │ │ ├── GT.js │ │ │ │ ├── GU.js │ │ │ │ ├── GW.js │ │ │ │ ├── GY.js │ │ │ │ ├── HK.js │ │ │ │ ├── HN.js │ │ │ │ ├── HR.js │ │ │ │ ├── HT.js │ │ │ │ ├── HU.js │ │ │ │ ├── ID.js │ │ │ │ ├── IE.js │ │ │ │ ├── IL.js │ │ │ │ ├── IM.js │ │ │ │ ├── IN.js │ │ │ │ ├── IQ.js │ │ │ │ ├── IR.js │ │ │ │ ├── IS.js │ │ │ │ ├── IT.js │ │ │ │ ├── JE.js │ │ │ │ ├── JM.js │ │ │ │ ├── JO.js │ │ │ │ ├── JP.js │ │ │ │ ├── KE.js │ │ │ │ ├── KG.js │ │ │ │ ├── KH.js │ │ │ │ ├── KI.js │ │ │ │ ├── KM.js │ │ │ │ ├── KN.js │ │ │ │ ├── KP.js │ │ │ │ ├── KR.js │ │ │ │ ├── KW.js │ │ │ │ ├── KY.js │ │ │ │ ├── KZ.js │ │ │ │ ├── LA.js │ │ │ │ ├── LB.js │ │ │ │ ├── LC.js │ │ │ │ ├── LI.js │ │ │ │ ├── LK.js │ │ │ │ ├── LR.js │ │ │ │ ├── LS.js │ │ │ │ ├── LT.js │ │ │ │ ├── LU.js │ │ │ │ ├── LV.js │ │ │ │ ├── LY.js │ │ │ │ ├── MA.js │ │ │ │ ├── MC.js │ │ │ │ ├── MD.js │ │ │ │ ├── ME.js │ │ │ │ ├── MG.js │ │ │ │ ├── MH.js │ │ │ │ ├── MK.js │ │ │ │ ├── ML.js │ │ │ │ ├── MM.js │ │ │ │ ├── MN.js │ │ │ │ ├── MO.js │ │ │ │ ├── MP.js │ │ │ │ ├── MQ.js │ │ │ │ ├── MR.js │ │ │ │ ├── MS.js │ │ │ │ ├── MT.js │ │ │ │ ├── MU.js │ │ │ │ ├── MV.js │ │ │ │ ├── MW.js │ │ │ │ ├── MX.js │ │ │ │ ├── MY.js │ │ │ │ ├── MZ.js │ │ │ │ ├── NA.js │ │ │ │ ├── NC.js │ │ │ │ ├── NE.js │ │ │ │ ├── NF.js │ │ │ │ ├── NG.js │ │ │ │ ├── NI.js │ │ │ │ ├── NL.js │ │ │ │ ├── NO.js │ │ │ │ ├── NP.js │ │ │ │ ├── NR.js │ │ │ │ ├── NU.js │ │ │ │ ├── NZ.js │ │ │ │ ├── OM.js │ │ │ │ ├── PA.js │ │ │ │ ├── PE.js │ │ │ │ ├── PF.js │ │ │ │ ├── PG.js │ │ │ │ ├── PH.js │ │ │ │ ├── PK.js │ │ │ │ ├── PL.js │ │ │ │ ├── PM.js │ │ │ │ ├── PN.js │ │ │ │ ├── PR.js │ │ │ │ ├── PS.js │ │ │ │ ├── PT.js │ │ │ │ ├── PW.js │ │ │ │ ├── PY.js │ │ │ │ ├── QA.js │ │ │ │ ├── RE.js │ │ │ │ ├── RO.js │ │ │ │ ├── RS.js │ │ │ │ ├── RU.js │ │ │ │ ├── RW.js │ │ │ │ ├── SA.js │ │ │ │ ├── SB.js │ │ │ │ ├── SC.js │ │ │ │ ├── SD.js │ │ │ │ ├── SE.js │ │ │ │ ├── SG.js │ │ │ │ ├── SH.js │ │ │ │ ├── SI.js │ │ │ │ ├── SK.js │ │ │ │ ├── SL.js │ │ │ │ ├── SM.js │ │ │ │ ├── SN.js │ │ │ │ ├── SO.js │ │ │ │ ├── SR.js │ │ │ │ ├── ST.js │ │ │ │ ├── SV.js │ │ │ │ ├── SY.js │ │ │ │ ├── SZ.js │ │ │ │ ├── TC.js │ │ │ │ ├── TD.js │ │ │ │ ├── TG.js │ │ │ │ ├── TH.js │ │ │ │ ├── TJ.js │ │ │ │ ├── TK.js │ │ │ │ ├── TL.js │ │ │ │ ├── TM.js │ │ │ │ ├── TN.js │ │ │ │ ├── TO.js │ │ │ │ ├── TR.js │ │ │ │ ├── TT.js │ │ │ │ ├── TV.js │ │ │ │ ├── TW.js │ │ │ │ ├── TZ.js │ │ │ │ ├── UA.js │ │ │ │ ├── UG.js │ │ │ │ ├── US.js │ │ │ │ ├── UY.js │ │ │ │ ├── UZ.js │ │ │ │ ├── VA.js │ │ │ │ ├── VC.js │ │ │ │ ├── VE.js │ │ │ │ ├── VG.js │ │ │ │ ├── VI.js │ │ │ │ ├── VN.js │ │ │ │ ├── VU.js │ │ │ │ ├── WF.js │ │ │ │ ├── WS.js │ │ │ │ ├── YE.js │ │ │ │ ├── YT.js │ │ │ │ ├── ZA.js │ │ │ │ ├── ZM.js │ │ │ │ ├── ZW.js │ │ │ │ ├── alt-af.js │ │ │ │ ├── alt-an.js │ │ │ │ ├── alt-as.js │ │ │ │ ├── alt-eu.js │ │ │ │ ├── alt-na.js │ │ │ │ ├── alt-oc.js │ │ │ │ ├── alt-sa.js │ │ │ │ └── alt-ww.js │ │ ├── dist │ │ │ ├── lib │ │ │ │ ├── statuses.js │ │ │ │ └── supported.js │ │ │ └── unpacker │ │ │ │ ├── agents.js │ │ │ │ ├── browserVersions.js │ │ │ │ ├── browsers.js │ │ │ │ ├── feature.js │ │ │ │ ├── features.js │ │ │ │ ├── index.js │ │ │ │ └── region.js │ │ └── package.json │ ├── chalk │ │ ├── index.d.ts │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── source │ │ │ ├── index.js │ │ │ ├── templates.js │ │ │ └── util.js │ ├── char-regex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── chokidar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── fsevents-handler.js │ │ │ └── nodefs-handler.js │ │ ├── package.json │ │ └── types │ │ │ └── index.d.ts │ ├── chownr │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chownr.js │ │ └── package.json │ ├── ci-info │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── vendors.json │ ├── cjs-module-lexer │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── lexer.js │ │ │ └── lexer.mjs │ │ ├── lexer.d.ts │ │ ├── lexer.js │ │ └── package.json │ ├── cliui │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── build │ │ │ ├── index.cjs │ │ │ └── lib │ │ │ │ ├── index.js │ │ │ │ └── string-utils.js │ │ ├── index.mjs │ │ └── package.json │ ├── co │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── collect-v8-coverage │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── color-convert │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── conversions.js │ │ ├── index.js │ │ ├── package.json │ │ └── route.js │ ├── color-name │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── color-support │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin.js │ │ ├── browser.js │ │ ├── index.js │ │ └── package.json │ ├── concat-map │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── example │ │ │ └── map.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── map.js │ ├── console-control-strings │ │ ├── LICENSE │ │ ├── README.md │ │ ├── README.md~ │ │ ├── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── convert-source-map │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── safe-buffer │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── cookie-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── cookie │ │ │ │ ├── HISTORY.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── index.js │ │ └── package.json │ ├── cors │ │ ├── CONTRIBUTING.md │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── create-require │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── create-require.d.ts │ │ ├── create-require.js │ │ └── package.json │ ├── cross-spawn │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── enoent.js │ │ │ ├── parse.js │ │ │ └── util │ │ │ │ ├── escape.js │ │ │ │ ├── readShebang.js │ │ │ │ └── resolveCommand.js │ │ └── package.json │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── dedent │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── dedent.js │ │ └── package.json │ ├── deepmerge │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── cjs.js │ │ │ └── umd.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license.txt │ │ ├── package.json │ │ ├── readme.md │ │ └── rollup.config.js │ ├── delegates │ │ ├── .npmignore │ │ ├── History.md │ │ ├── License │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── denque │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ └── browser │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── detect-libc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── lib │ │ │ ├── detect-libc.js │ │ │ └── process.js │ │ └── package.json │ ├── detect-newline │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── diff-sequences │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── diff │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── diff.js │ │ │ └── diff.min.js │ │ ├── lib │ │ │ ├── convert │ │ │ │ ├── dmp.js │ │ │ │ └── xml.js │ │ │ ├── diff │ │ │ │ ├── array.js │ │ │ │ ├── base.js │ │ │ │ ├── character.js │ │ │ │ ├── css.js │ │ │ │ ├── json.js │ │ │ │ ├── line.js │ │ │ │ ├── sentence.js │ │ │ │ └── word.js │ │ │ ├── index.es6.js │ │ │ ├── index.js │ │ │ ├── patch │ │ │ │ ├── apply.js │ │ │ │ ├── create.js │ │ │ │ ├── merge.js │ │ │ │ └── parse.js │ │ │ └── util │ │ │ │ ├── array.js │ │ │ │ ├── distance-iterator.js │ │ │ │ └── params.js │ │ ├── package.json │ │ ├── release-notes.md │ │ └── runtime.js │ ├── dotenv │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.d.ts │ │ ├── config.js │ │ ├── lib │ │ │ ├── cli-options.js │ │ │ ├── env-options.js │ │ │ ├── main.d.ts │ │ │ └── main.js │ │ └── package.json │ ├── dynamic-dedupe │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example │ │ │ ├── deduped.js │ │ │ ├── not-deduped.js │ │ │ ├── pack1 │ │ │ │ └── common │ │ │ │ │ └── dep-uno │ │ │ │ │ └── foo.js │ │ │ └── pack2 │ │ │ │ └── common │ │ │ │ └── dep-uno │ │ │ │ └── foo.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── dedupe.js │ │ │ └── fixtures │ │ │ ├── count.js │ │ │ ├── pack1 │ │ │ └── common │ │ │ │ ├── dep-dos │ │ │ │ └── foo.js │ │ │ │ └── dep-uno │ │ │ │ ├── bar.js │ │ │ │ └── foo.js │ │ │ └── pack2 │ │ │ └── common │ │ │ └── dep-uno │ │ │ ├── bar.js │ │ │ └── foo.js │ ├── ecdsa-sig-formatter │ │ ├── CODEOWNERS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── ecdsa-sig-formatter.d.ts │ │ │ ├── ecdsa-sig-formatter.js │ │ │ └── param-bytes-for-alg.js │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── electron-to-chromium │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── chromium-versions.js │ │ ├── chromium-versions.json │ │ ├── full-chromium-versions.js │ │ ├── full-chromium-versions.json │ │ ├── full-versions.js │ │ ├── full-versions.json │ │ ├── index.js │ │ ├── package.json │ │ ├── versions.js │ │ └── versions.json │ ├── emittery │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── emoji-regex │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── es2015 │ │ │ ├── index.js │ │ │ └── text.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── text.js │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── error-ex │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escalade │ │ ├── dist │ │ │ ├── index.js │ │ │ └── index.mjs │ │ ├── index.d.ts │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── sync │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.mjs │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── escape-string-regexp │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── esprima │ │ ├── ChangeLog │ │ ├── LICENSE.BSD │ │ ├── README.md │ │ ├── bin │ │ │ ├── esparse.js │ │ │ └── esvalidate.js │ │ ├── dist │ │ │ └── esprima.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── execa │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── command.js │ │ │ ├── error.js │ │ │ ├── kill.js │ │ │ ├── promise.js │ │ │ ├── stdio.js │ │ │ └── stream.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── exit │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── lib │ │ │ └── exit.js │ │ ├── package.json │ │ └── test │ │ │ ├── exit_test.js │ │ │ └── fixtures │ │ │ ├── 10-stderr.txt │ │ │ ├── 10-stdout-stderr.txt │ │ │ ├── 10-stdout.txt │ │ │ ├── 100-stderr.txt │ │ │ ├── 100-stdout-stderr.txt │ │ │ ├── 100-stdout.txt │ │ │ ├── 1000-stderr.txt │ │ │ ├── 1000-stdout-stderr.txt │ │ │ ├── 1000-stdout.txt │ │ │ ├── create-files.sh │ │ │ ├── log-broken.js │ │ │ └── log.js │ ├── expect │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── asymmetricMatchers.js │ │ │ ├── extractExpectedAssertionsErrors.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── jestMatchersObject.js │ │ │ ├── matchers.js │ │ │ ├── print.js │ │ │ ├── spyMatchers.js │ │ │ ├── toThrowMatchers.js │ │ │ └── types.js │ │ └── package.json │ ├── express-jwt │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── errors │ │ │ │ ├── UnauthorizedError.d.ts │ │ │ │ └── UnauthorizedError.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── express-unless │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── fast-json-stable-stringify │ │ ├── .eslintrc.yml │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmark │ │ │ ├── index.js │ │ │ └── test.json │ │ ├── example │ │ │ ├── key_cmp.js │ │ │ ├── nested.js │ │ │ ├── str.js │ │ │ └── value_cmp.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── cmp.js │ │ │ ├── nested.js │ │ │ ├── str.js │ │ │ └── to-json.js │ ├── fb-watchman │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fill-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── index.js │ │ └── package.json │ ├── find-up │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── follow-redirects │ │ ├── LICENSE │ │ ├── README.md │ │ ├── debug.js │ │ ├── http.js │ │ ├── https.js │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fs-minipass │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fs.realpath │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── old.js │ │ └── package.json │ ├── function-bind │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .jscs.json │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── implementation.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ └── index.js │ ├── gauge │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── base-theme.js │ │ ├── error.js │ │ ├── has-color.js │ │ ├── index.js │ │ ├── package.json │ │ ├── plumbing.js │ │ ├── process.js │ │ ├── progress-bar.js │ │ ├── render-template.js │ │ ├── set-immediate.js │ │ ├── set-interval.js │ │ ├── spin.js │ │ ├── template-item.js │ │ ├── theme-set.js │ │ ├── themes.js │ │ └── wide-truncate.js │ ├── gensync │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── index.js.flow │ │ ├── package.json │ │ └── test │ │ │ ├── .babelrc │ │ │ └── index.test.js │ ├── get-caller-file │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ └── package.json │ ├── get-intrinsic │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── GetIntrinsic.js │ ├── get-package-type │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── async.cjs │ │ ├── cache.cjs │ │ ├── index.cjs │ │ ├── is-node-modules.cjs │ │ ├── package.json │ │ └── sync.cjs │ ├── get-stream │ │ ├── buffer-stream.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── glob-parent │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── common.js │ │ ├── glob.js │ │ ├── package.json │ │ └── sync.js │ ├── globals │ │ ├── globals.json │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── graceful-fs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── clone.js │ │ ├── graceful-fs.js │ │ ├── legacy-streams.js │ │ ├── package.json │ │ └── polyfills.js │ ├── has-flag │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── has-symbols │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ ├── shams.js │ │ └── test │ │ │ ├── index.js │ │ │ ├── shams │ │ │ ├── core-js.js │ │ │ └── get-own-property-symbols.js │ │ │ └── tests.js │ ├── has-unicode │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── has │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ └── index.js │ │ └── test │ │ │ └── index.js │ ├── html-escaper │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── cjs │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── esm │ │ │ └── index.js │ │ ├── index.js │ │ ├── min.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.js │ │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── https-proxy-agent │ │ ├── README.md │ │ ├── dist │ │ │ ├── agent.d.ts │ │ │ ├── agent.js │ │ │ ├── agent.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── parse-proxy-response.d.ts │ │ │ ├── parse-proxy-response.js │ │ │ └── parse-proxy-response.js.map │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── human-signals │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ └── src │ │ │ │ ├── core.js │ │ │ │ ├── core.js.map │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── realtime.js │ │ │ │ ├── realtime.js.map │ │ │ │ ├── signals.js │ │ │ │ └── signals.js.map │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── ieee754 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── import-local │ │ ├── fixtures │ │ │ └── cli.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── imurmurhash │ │ ├── README.md │ │ ├── imurmurhash.js │ │ ├── imurmurhash.min.js │ │ └── package.json │ ├── inflight │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inflight.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ip │ │ ├── README.md │ │ ├── lib │ │ │ └── ip.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── is-arrayish │ │ ├── .editorconfig │ │ ├── .istanbul.yml │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-binary-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-core-module │ │ ├── .eslintrc │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── core.json │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── is-extglob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-fullwidth-code-point │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-generator-fn │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-number │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-stream │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── isexe │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── mode.js │ │ ├── package.json │ │ ├── test │ │ │ └── basic.js │ │ └── windows.js │ ├── istanbul-lib-coverage │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── coverage-map.js │ │ │ ├── coverage-summary.js │ │ │ ├── data-properties.js │ │ │ ├── file-coverage.js │ │ │ └── percent.js │ │ └── package.json │ ├── istanbul-lib-instrument │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── src │ │ │ ├── constants.js │ │ │ ├── index.js │ │ │ ├── instrumenter.js │ │ │ ├── read-coverage.js │ │ │ ├── source-coverage.js │ │ │ └── visitor.js │ ├── istanbul-lib-report │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── context.js │ │ │ ├── file-writer.js │ │ │ ├── path.js │ │ │ ├── report-base.js │ │ │ ├── summarizer-factory.js │ │ │ ├── tree.js │ │ │ ├── watermarks.js │ │ │ └── xml-writer.js │ │ └── package.json │ ├── istanbul-lib-source-maps │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── get-mapping.js │ │ │ ├── map-store.js │ │ │ ├── mapped.js │ │ │ ├── pathutils.js │ │ │ ├── transform-utils.js │ │ │ └── transformer.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── istanbul-reports │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── clover │ │ │ │ └── index.js │ │ │ ├── cobertura │ │ │ │ └── index.js │ │ │ ├── html-spa │ │ │ │ ├── .babelrc │ │ │ │ ├── assets │ │ │ │ │ ├── bundle.js │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ └── spa.css │ │ │ │ ├── index.js │ │ │ │ ├── src │ │ │ │ │ ├── fileBreadcrumbs.js │ │ │ │ │ ├── filterToggle.js │ │ │ │ │ ├── flattenToggle.js │ │ │ │ │ ├── getChildData.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── routing.js │ │ │ │ │ ├── summaryHeader.js │ │ │ │ │ ├── summaryTableHeader.js │ │ │ │ │ └── summaryTableLine.js │ │ │ │ └── webpack.config.js │ │ │ ├── html │ │ │ │ ├── annotator.js │ │ │ │ ├── assets │ │ │ │ │ ├── base.css │ │ │ │ │ ├── block-navigation.js │ │ │ │ │ ├── favicon.png │ │ │ │ │ ├── sort-arrow-sprite.png │ │ │ │ │ ├── sorter.js │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ └── prettify.js │ │ │ │ ├── index.js │ │ │ │ └── insertion-text.js │ │ │ ├── json-summary │ │ │ │ └── index.js │ │ │ ├── json │ │ │ │ └── index.js │ │ │ ├── lcov │ │ │ │ └── index.js │ │ │ ├── lcovonly │ │ │ │ └── index.js │ │ │ ├── none │ │ │ │ └── index.js │ │ │ ├── teamcity │ │ │ │ └── index.js │ │ │ ├── text-lcov │ │ │ │ └── index.js │ │ │ ├── text-summary │ │ │ │ └── index.js │ │ │ └── text │ │ │ │ └── index.js │ │ └── package.json │ ├── jest-changed-files │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── git.d.ts │ │ │ ├── git.js │ │ │ ├── hg.d.ts │ │ │ ├── hg.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ └── types.js │ │ └── package.json │ ├── jest-circus │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── eventHandler.js │ │ │ ├── formatNodeAssertErrors.js │ │ │ ├── globalErrorHandlers.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── legacy-code-todo-rewrite │ │ │ │ ├── jestAdapter.js │ │ │ │ └── jestAdapterInit.js │ │ │ ├── run.js │ │ │ ├── state.js │ │ │ ├── testCaseReportHandler.js │ │ │ ├── types.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── runner.js │ ├── jest-cli │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── jest.js │ │ ├── build │ │ │ ├── cli │ │ │ │ ├── args.js │ │ │ │ └── index.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── init │ │ │ │ ├── errors.js │ │ │ │ ├── generateConfigFile.js │ │ │ │ ├── index.js │ │ │ │ ├── modifyPackageJson.js │ │ │ │ ├── questions.js │ │ │ │ └── types.js │ │ └── package.json │ ├── jest-config │ │ ├── LICENSE │ │ ├── build │ │ │ ├── Defaults.js │ │ │ ├── Deprecated.js │ │ │ ├── Descriptions.js │ │ │ ├── ReporterValidationErrors.js │ │ │ ├── ValidConfig.js │ │ │ ├── color.js │ │ │ ├── constants.js │ │ │ ├── getCacheDirectory.js │ │ │ ├── getMaxWorkers.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── normalize.js │ │ │ ├── parseShardPair.js │ │ │ ├── readConfigFileAndSetRootDir.js │ │ │ ├── resolveConfigPath.js │ │ │ ├── setFromArgv.js │ │ │ ├── stringToBytes.js │ │ │ ├── utils.js │ │ │ └── validatePattern.js │ │ ├── node_modules │ │ │ └── strip-json-comments │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── jest-diff │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── cleanupSemantic.js │ │ │ ├── constants.js │ │ │ ├── diffLines.js │ │ │ ├── diffStrings.js │ │ │ ├── getAlignedDiffs.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── joinAlignedDiffs.js │ │ │ ├── normalizeDiffOptions.js │ │ │ ├── printDiffs.js │ │ │ └── types.js │ │ └── package.json │ ├── jest-docblock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-each │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── bind.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── table │ │ │ │ ├── array.js │ │ │ │ ├── interpolation.js │ │ │ │ └── template.js │ │ │ └── validation.js │ │ └── package.json │ ├── jest-environment-node │ │ ├── LICENSE │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-get-type │ │ ├── LICENSE │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-haste-map │ │ ├── LICENSE │ │ ├── build │ │ │ ├── HasteFS.js │ │ │ ├── ModuleMap.js │ │ │ ├── blacklist.js │ │ │ ├── constants.js │ │ │ ├── crawlers │ │ │ │ ├── node.js │ │ │ │ └── watchman.js │ │ │ ├── getMockName.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── dependencyExtractor.js │ │ │ │ ├── fast_path.js │ │ │ │ ├── getPlatformExtension.js │ │ │ │ ├── isWatchmanInstalled.js │ │ │ │ └── normalizePathSep.js │ │ │ ├── types.js │ │ │ ├── watchers │ │ │ │ ├── FSEventsWatcher.js │ │ │ │ ├── NodeWatcher.js │ │ │ │ ├── RecrawlWarning.js │ │ │ │ ├── WatchmanWatcher.js │ │ │ │ └── common.js │ │ │ └── worker.js │ │ └── package.json │ ├── jest-leak-detector │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-matcher-utils │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── Replaceable.js │ │ │ ├── deepCyclicCopyReplaceable.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-message-util │ │ ├── LICENSE │ │ ├── build │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── types.js │ │ └── package.json │ ├── jest-mock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-pnp-resolver │ │ ├── README.md │ │ ├── createRequire.js │ │ ├── getDefaultResolver.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── jest-regex-util │ │ ├── LICENSE │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-resolve-dependencies │ │ ├── LICENSE │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── jest-resolve │ │ ├── LICENSE │ │ ├── build │ │ │ ├── ModuleNotFoundError.js │ │ │ ├── defaultResolver.js │ │ │ ├── fileWalkers.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── isBuiltinModule.js │ │ │ ├── nodeModulesPaths.js │ │ │ ├── resolver.js │ │ │ ├── shouldLoadAsEsm.js │ │ │ ├── types.js │ │ │ └── utils.js │ │ └── package.json │ ├── jest-runner │ │ ├── LICENSE │ │ ├── build │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── runTest.js │ │ │ ├── testWorker.js │ │ │ └── types.js │ │ ├── node_modules │ │ │ └── source-map-support │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── browser-source-map-support.js │ │ │ │ ├── package.json │ │ │ │ ├── register.js │ │ │ │ └── source-map-support.js │ │ └── package.json │ ├── jest-runtime │ │ ├── LICENSE │ │ ├── build │ │ │ ├── helpers.js │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ ├── node_modules │ │ │ └── strip-bom │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── jest-snapshot │ │ ├── LICENSE │ │ ├── build │ │ │ ├── InlineSnapshots.js │ │ │ ├── SnapshotResolver.js │ │ │ ├── State.js │ │ │ ├── colors.js │ │ │ ├── dedentLines.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── mockSerializer.js │ │ │ ├── plugins.js │ │ │ ├── printSnapshot.js │ │ │ ├── types.js │ │ │ └── utils.js │ │ └── package.json │ ├── jest-util │ │ ├── LICENSE │ │ ├── build │ │ │ ├── ErrorWithStack.js │ │ │ ├── clearLine.js │ │ │ ├── convertDescriptorToString.js │ │ │ ├── createDirectory.js │ │ │ ├── createProcessObject.js │ │ │ ├── deepCyclicCopy.js │ │ │ ├── formatTime.js │ │ │ ├── globsToMatcher.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── installCommonGlobals.js │ │ │ ├── interopRequireDefault.js │ │ │ ├── isInteractive.js │ │ │ ├── isPromise.js │ │ │ ├── pluralize.js │ │ │ ├── preRunMessage.js │ │ │ ├── replacePathSepForGlob.js │ │ │ ├── requireOrImportModule.js │ │ │ ├── setGlobal.js │ │ │ ├── specialChars.js │ │ │ ├── testPathPatternToRegExp.js │ │ │ └── tryRealpath.js │ │ └── package.json │ ├── jest-validate │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── condition.js │ │ │ ├── defaultConfig.js │ │ │ ├── deprecated.js │ │ │ ├── errors.js │ │ │ ├── exampleConfig.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.js │ │ │ ├── utils.js │ │ │ ├── validate.js │ │ │ ├── validateCLIOptions.js │ │ │ └── warnings.js │ │ ├── node_modules │ │ │ └── camelcase │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── jest-watcher │ │ ├── LICENSE │ │ ├── build │ │ │ ├── BaseWatchPlugin.js │ │ │ ├── JestHooks.js │ │ │ ├── PatternPrompt.js │ │ │ ├── TestWatcher.js │ │ │ ├── constants.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── Prompt.js │ │ │ │ ├── colorize.js │ │ │ │ ├── formatTestNameByPattern.js │ │ │ │ ├── patternModeHelpers.js │ │ │ │ └── scroll.js │ │ │ └── types.js │ │ └── package.json │ ├── jest-worker │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── Farm.js │ │ │ ├── FifoQueue.js │ │ │ ├── PriorityQueue.js │ │ │ ├── WorkerPool.js │ │ │ ├── base │ │ │ │ └── BaseWorkerPool.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.js │ │ │ └── workers │ │ │ │ ├── ChildProcessWorker.js │ │ │ │ ├── NodeThreadsWorker.js │ │ │ │ ├── WorkerAbstract.js │ │ │ │ ├── messageParent.js │ │ │ │ ├── processChild.js │ │ │ │ └── threadChild.js │ │ ├── node_modules │ │ │ └── supports-color │ │ │ │ ├── browser.js │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── jest │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── jest.js │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── js-tokens │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── js-yaml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── js-yaml.js │ │ ├── dist │ │ │ ├── js-yaml.js │ │ │ └── js-yaml.min.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── js-yaml.js │ │ │ └── js-yaml │ │ │ │ ├── common.js │ │ │ │ ├── dumper.js │ │ │ │ ├── exception.js │ │ │ │ ├── loader.js │ │ │ │ ├── mark.js │ │ │ │ ├── schema.js │ │ │ │ ├── schema │ │ │ │ ├── core.js │ │ │ │ ├── default_full.js │ │ │ │ ├── default_safe.js │ │ │ │ ├── failsafe.js │ │ │ │ └── json.js │ │ │ │ ├── type.js │ │ │ │ └── type │ │ │ │ ├── binary.js │ │ │ │ ├── bool.js │ │ │ │ ├── float.js │ │ │ │ ├── int.js │ │ │ │ ├── js │ │ │ │ ├── function.js │ │ │ │ ├── regexp.js │ │ │ │ └── undefined.js │ │ │ │ ├── map.js │ │ │ │ ├── merge.js │ │ │ │ ├── null.js │ │ │ │ ├── omap.js │ │ │ │ ├── pairs.js │ │ │ │ ├── seq.js │ │ │ │ ├── set.js │ │ │ │ ├── str.js │ │ │ │ └── timestamp.js │ │ └── package.json │ ├── jsesc │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── bin │ │ │ └── jsesc │ │ ├── jsesc.js │ │ ├── man │ │ │ └── jsesc.1 │ │ └── package.json │ ├── json-parse-even-better-errors │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── json5 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.js │ │ │ ├── index.min.js │ │ │ ├── index.min.mjs │ │ │ └── index.mjs │ │ ├── lib │ │ │ ├── cli.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── parse.d.ts │ │ │ ├── parse.js │ │ │ ├── register.js │ │ │ ├── require.js │ │ │ ├── stringify.d.ts │ │ │ ├── stringify.js │ │ │ ├── unicode.d.ts │ │ │ ├── unicode.js │ │ │ ├── util.d.ts │ │ │ └── util.js │ │ └── package.json │ ├── jsonwebtoken │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── decode.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── JsonWebTokenError.js │ │ │ ├── NotBeforeError.js │ │ │ ├── TokenExpiredError.js │ │ │ ├── psSupported.js │ │ │ └── timespan.js │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ ├── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ ├── sign.js │ │ └── verify.js │ ├── jwa │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── jws │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── index.js │ │ ├── lib │ │ │ ├── data-stream.js │ │ │ ├── sign-stream.js │ │ │ ├── tostring.js │ │ │ └── verify-stream.js │ │ ├── package.json │ │ └── readme.md │ ├── kareem │ │ ├── .eslintrc.json │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── test.yml │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── docs.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── examples.test.js │ │ │ ├── misc.test.js │ │ │ ├── post.test.js │ │ │ ├── pre.test.js │ │ │ └── wrap.test.js │ ├── kleur │ │ ├── index.js │ │ ├── kleur.d.ts │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── leven │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── lines-and-columns │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── locate-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── lodash.includes │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.isboolean │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.isinteger │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.isnumber │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.isplainobject │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.isstring │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.memoize │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lodash.once │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lru-cache │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── make-dir │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── semver │ │ │ │ ├── semver.cmd │ │ │ │ └── semver.ps1 │ │ │ └── semver │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── semver.js │ │ │ │ ├── package.json │ │ │ │ ├── range.bnf │ │ │ │ └── semver.js │ │ ├── package.json │ │ └── readme.md │ ├── make-error │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── make-error.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── makeerror │ │ ├── .travis.yml │ │ ├── lib │ │ │ └── makeerror.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── mariadb │ │ ├── LICENSE │ │ ├── README.md │ │ ├── callback.js │ │ ├── lib │ │ │ ├── cluster-callback.js │ │ │ ├── cluster.js │ │ │ ├── cmd │ │ │ │ ├── batch-bulk.js │ │ │ │ ├── change-user.js │ │ │ │ ├── class │ │ │ │ │ ├── cached-prepare-result-packet.js │ │ │ │ │ ├── ok-packet.js │ │ │ │ │ └── prepare-result-packet.js │ │ │ │ ├── close-prepare.js │ │ │ │ ├── column-definition.js │ │ │ │ ├── command.js │ │ │ │ ├── decoder │ │ │ │ │ ├── binary-decoder.js │ │ │ │ │ └── text-decoder.js │ │ │ │ ├── encoder │ │ │ │ │ ├── binary-encoder.js │ │ │ │ │ └── text-encoder.js │ │ │ │ ├── execute.js │ │ │ │ ├── handshake │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── caching-sha2-password-auth.js │ │ │ │ │ │ ├── clear-password-auth.js │ │ │ │ │ │ ├── ed25519-password-auth.js │ │ │ │ │ │ ├── native-password-auth.js │ │ │ │ │ │ ├── pam-password-auth.js │ │ │ │ │ │ ├── plugin-auth.js │ │ │ │ │ │ └── sha256-password-auth.js │ │ │ │ │ ├── client-capabilities.js │ │ │ │ │ ├── client-handshake-response.js │ │ │ │ │ ├── handshake.js │ │ │ │ │ ├── initial-handshake.js │ │ │ │ │ └── ssl-request.js │ │ │ │ ├── parser.js │ │ │ │ ├── ping.js │ │ │ │ ├── prepare.js │ │ │ │ ├── query.js │ │ │ │ ├── quit.js │ │ │ │ ├── reset.js │ │ │ │ └── stream.js │ │ │ ├── command-parameter.js │ │ │ ├── config │ │ │ │ ├── cluster-options.js │ │ │ │ ├── connection-options.js │ │ │ │ └── pool-options.js │ │ │ ├── connection-callback.js │ │ │ ├── connection-promise.js │ │ │ ├── connection.js │ │ │ ├── const │ │ │ │ ├── capabilities.js │ │ │ │ ├── collations.js │ │ │ │ ├── connection_status.js │ │ │ │ ├── error-code.js │ │ │ │ ├── field-detail.js │ │ │ │ ├── field-type.js │ │ │ │ ├── server-status.js │ │ │ │ └── state-change.js │ │ │ ├── filtered-cluster.js │ │ │ ├── io │ │ │ │ ├── compression-input-stream.js │ │ │ │ ├── compression-output-stream.js │ │ │ │ ├── packet-input-stream.js │ │ │ │ ├── packet-node-encoded.js │ │ │ │ ├── packet-node-iconv.js │ │ │ │ ├── packet-output-stream.js │ │ │ │ └── packet.js │ │ │ ├── misc │ │ │ │ ├── connection-information.js │ │ │ │ ├── errors.js │ │ │ │ ├── parse.js │ │ │ │ └── utils.js │ │ │ ├── pool-callback.js │ │ │ ├── pool-promise.js │ │ │ └── pool.js │ │ ├── node_modules │ │ │ ├── @types │ │ │ │ └── node │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assert.d.ts │ │ │ │ │ ├── assert │ │ │ │ │ └── strict.d.ts │ │ │ │ │ ├── async_hooks.d.ts │ │ │ │ │ ├── buffer.d.ts │ │ │ │ │ ├── child_process.d.ts │ │ │ │ │ ├── cluster.d.ts │ │ │ │ │ ├── console.d.ts │ │ │ │ │ ├── constants.d.ts │ │ │ │ │ ├── crypto.d.ts │ │ │ │ │ ├── dgram.d.ts │ │ │ │ │ ├── diagnostics_channel.d.ts │ │ │ │ │ ├── dns.d.ts │ │ │ │ │ ├── dns │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── domain.d.ts │ │ │ │ │ ├── events.d.ts │ │ │ │ │ ├── fs.d.ts │ │ │ │ │ ├── fs │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── globals.d.ts │ │ │ │ │ ├── globals.global.d.ts │ │ │ │ │ ├── http.d.ts │ │ │ │ │ ├── http2.d.ts │ │ │ │ │ ├── https.d.ts │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── inspector.d.ts │ │ │ │ │ ├── module.d.ts │ │ │ │ │ ├── net.d.ts │ │ │ │ │ ├── os.d.ts │ │ │ │ │ ├── package.json │ │ │ │ │ ├── path.d.ts │ │ │ │ │ ├── perf_hooks.d.ts │ │ │ │ │ ├── process.d.ts │ │ │ │ │ ├── punycode.d.ts │ │ │ │ │ ├── querystring.d.ts │ │ │ │ │ ├── readline.d.ts │ │ │ │ │ ├── repl.d.ts │ │ │ │ │ ├── stream.d.ts │ │ │ │ │ ├── stream │ │ │ │ │ ├── consumers.d.ts │ │ │ │ │ ├── promises.d.ts │ │ │ │ │ └── web.d.ts │ │ │ │ │ ├── string_decoder.d.ts │ │ │ │ │ ├── timers.d.ts │ │ │ │ │ ├── timers │ │ │ │ │ └── promises.d.ts │ │ │ │ │ ├── tls.d.ts │ │ │ │ │ ├── trace_events.d.ts │ │ │ │ │ ├── tty.d.ts │ │ │ │ │ ├── url.d.ts │ │ │ │ │ ├── util.d.ts │ │ │ │ │ ├── v8.d.ts │ │ │ │ │ ├── vm.d.ts │ │ │ │ │ ├── wasi.d.ts │ │ │ │ │ ├── worker_threads.d.ts │ │ │ │ │ └── zlib.d.ts │ │ │ └── iconv-lite │ │ │ │ ├── .github │ │ │ │ └── dependabot.yml │ │ │ │ ├── .idea │ │ │ │ ├── codeStyles │ │ │ │ │ ├── Project.xml │ │ │ │ │ └── codeStyleConfig.xml │ │ │ │ ├── iconv-lite.iml │ │ │ │ ├── inspectionProfiles │ │ │ │ │ └── Project_Default.xml │ │ │ │ ├── modules.xml │ │ │ │ └── vcs.xml │ │ │ │ ├── Changelog.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── encodings │ │ │ │ ├── dbcs-codec.js │ │ │ │ ├── dbcs-data.js │ │ │ │ ├── index.js │ │ │ │ ├── internal.js │ │ │ │ ├── sbcs-codec.js │ │ │ │ ├── sbcs-data-generated.js │ │ │ │ ├── sbcs-data.js │ │ │ │ ├── tables │ │ │ │ │ ├── big5-added.json │ │ │ │ │ ├── cp936.json │ │ │ │ │ ├── cp949.json │ │ │ │ │ ├── cp950.json │ │ │ │ │ ├── eucjp.json │ │ │ │ │ ├── gb18030-ranges.json │ │ │ │ │ ├── gbk-added.json │ │ │ │ │ └── shiftjis.json │ │ │ │ ├── utf16.js │ │ │ │ ├── utf32.js │ │ │ │ └── utf7.js │ │ │ │ ├── lib │ │ │ │ ├── bom-handling.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── streams.js │ │ │ │ └── package.json │ │ ├── package.json │ │ ├── promise.js │ │ └── types │ │ │ └── index.d.ts │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── memory-pager │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-stream │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── micromatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── mimic-fn │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── minimatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── minimatch.js │ │ └── package.json │ ├── minimist │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── example │ │ │ └── parse.js │ │ ├── index.js │ │ ├── package.json │ │ ├── readme.markdown │ │ └── test │ │ │ ├── all_bool.js │ │ │ ├── bool.js │ │ │ ├── dash.js │ │ │ ├── default_bool.js │ │ │ ├── dotted.js │ │ │ ├── kv_short.js │ │ │ ├── long.js │ │ │ ├── num.js │ │ │ ├── parse.js │ │ │ ├── parse_modified.js │ │ │ ├── proto.js │ │ │ ├── short.js │ │ │ ├── stop_early.js │ │ │ ├── unknown.js │ │ │ └── whitespace.js │ ├── minipass │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── minizlib │ │ ├── LICENSE │ │ ├── README.md │ │ ├── constants.js │ │ ├── index.js │ │ └── package.json │ ├── mkdirp │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── bin │ │ │ └── cmd.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── find-made.js │ │ │ ├── mkdirp-manual.js │ │ │ ├── mkdirp-native.js │ │ │ ├── opts-arg.js │ │ │ ├── path-arg.js │ │ │ └── use-native.js │ │ ├── package.json │ │ └── readme.markdown │ ├── moment-timezone │ │ ├── .github │ │ │ └── issue_template.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── blah.tar.gz │ │ ├── builds │ │ │ ├── moment-timezone-with-data-10-year-range.js │ │ │ ├── moment-timezone-with-data-10-year-range.min.js │ │ │ ├── moment-timezone-with-data-1970-2030.js │ │ │ ├── moment-timezone-with-data-1970-2030.min.js │ │ │ ├── moment-timezone-with-data-2012-2022.js │ │ │ ├── moment-timezone-with-data-2012-2022.min.js │ │ │ ├── moment-timezone-with-data.js │ │ │ ├── moment-timezone-with-data.min.js │ │ │ └── moment-timezone.min.js │ │ ├── changelog.md │ │ ├── composer.json │ │ ├── curlxx.tar.gz │ │ ├── data │ │ │ ├── meta │ │ │ │ └── latest.json │ │ │ └── packed │ │ │ │ └── latest.json │ │ ├── fix-pipeline.patch │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── moment-timezone-utils.d.ts │ │ ├── moment-timezone-utils.js │ │ ├── moment-timezone.js │ │ ├── package.json │ │ └── tzdata-latest.tar.gz │ ├── moment │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.js │ │ ├── ender.js │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn-bd.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-in.js │ │ │ ├── en-nz.js │ │ │ ├── en-sg.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-mx.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fil.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-deva.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── oc-lnc.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ ├── zh-mo.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── locales.min.js.map │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ ├── moment-with-locales.min.js.map │ │ │ ├── moment.min.js │ │ │ └── moment.min.js.map │ │ ├── moment.d.ts │ │ ├── moment.js │ │ ├── package.js │ │ ├── package.json │ │ ├── src │ │ │ ├── lib │ │ │ │ ├── create │ │ │ │ │ ├── check-overflow.js │ │ │ │ │ ├── date-from-array.js │ │ │ │ │ ├── from-anything.js │ │ │ │ │ ├── from-array.js │ │ │ │ │ ├── from-object.js │ │ │ │ │ ├── from-string-and-array.js │ │ │ │ │ ├── from-string-and-format.js │ │ │ │ │ ├── from-string.js │ │ │ │ │ ├── local.js │ │ │ │ │ ├── parsing-flags.js │ │ │ │ │ ├── utc.js │ │ │ │ │ └── valid.js │ │ │ │ ├── duration │ │ │ │ │ ├── abs.js │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── as.js │ │ │ │ │ ├── bubble.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── create.js │ │ │ │ │ ├── duration.js │ │ │ │ │ ├── get.js │ │ │ │ │ ├── humanize.js │ │ │ │ │ ├── iso-string.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ └── valid.js │ │ │ │ ├── format │ │ │ │ │ └── format.js │ │ │ │ ├── locale │ │ │ │ │ ├── base-config.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── formats.js │ │ │ │ │ ├── invalid.js │ │ │ │ │ ├── lists.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── locales.js │ │ │ │ │ ├── ordinal.js │ │ │ │ │ ├── pre-post-format.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── relative.js │ │ │ │ │ └── set.js │ │ │ │ ├── moment │ │ │ │ │ ├── add-subtract.js │ │ │ │ │ ├── calendar.js │ │ │ │ │ ├── clone.js │ │ │ │ │ ├── compare.js │ │ │ │ │ ├── constructor.js │ │ │ │ │ ├── creation-data.js │ │ │ │ │ ├── diff.js │ │ │ │ │ ├── format.js │ │ │ │ │ ├── from.js │ │ │ │ │ ├── get-set.js │ │ │ │ │ ├── locale.js │ │ │ │ │ ├── min-max.js │ │ │ │ │ ├── moment.js │ │ │ │ │ ├── now.js │ │ │ │ │ ├── prototype.js │ │ │ │ │ ├── start-end-of.js │ │ │ │ │ ├── to-type.js │ │ │ │ │ ├── to.js │ │ │ │ │ └── valid.js │ │ │ │ ├── parse │ │ │ │ │ ├── regex.js │ │ │ │ │ └── token.js │ │ │ │ ├── units │ │ │ │ │ ├── aliases.js │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── day-of-month.js │ │ │ │ │ ├── day-of-week.js │ │ │ │ │ ├── day-of-year.js │ │ │ │ │ ├── era.js │ │ │ │ │ ├── hour.js │ │ │ │ │ ├── millisecond.js │ │ │ │ │ ├── minute.js │ │ │ │ │ ├── month.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── priorities.js │ │ │ │ │ ├── quarter.js │ │ │ │ │ ├── second.js │ │ │ │ │ ├── timestamp.js │ │ │ │ │ ├── timezone.js │ │ │ │ │ ├── units.js │ │ │ │ │ ├── week-calendar-utils.js │ │ │ │ │ ├── week-year.js │ │ │ │ │ ├── week.js │ │ │ │ │ └── year.js │ │ │ │ └── utils │ │ │ │ │ ├── abs-ceil.js │ │ │ │ │ ├── abs-floor.js │ │ │ │ │ ├── abs-round.js │ │ │ │ │ ├── compare-arrays.js │ │ │ │ │ ├── defaults.js │ │ │ │ │ ├── deprecate.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── has-own-prop.js │ │ │ │ │ ├── hooks.js │ │ │ │ │ ├── index-of.js │ │ │ │ │ ├── is-array.js │ │ │ │ │ ├── is-calendar-spec.js │ │ │ │ │ ├── is-date.js │ │ │ │ │ ├── is-function.js │ │ │ │ │ ├── is-leap-year.js │ │ │ │ │ ├── is-moment-input.js │ │ │ │ │ ├── is-number.js │ │ │ │ │ ├── is-object-empty.js │ │ │ │ │ ├── is-object.js │ │ │ │ │ ├── is-string.js │ │ │ │ │ ├── is-undefined.js │ │ │ │ │ ├── keys.js │ │ │ │ │ ├── map.js │ │ │ │ │ ├── mod.js │ │ │ │ │ ├── some.js │ │ │ │ │ ├── to-int.js │ │ │ │ │ └── zero-fill.js │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.js │ │ └── ts3.1-typings │ │ │ └── moment.d.ts │ ├── mongodb-connection-string-url │ │ ├── .esm-wrapper.mjs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── redact.d.ts │ │ │ ├── redact.js │ │ │ └── redact.js.map │ │ ├── node_modules │ │ │ ├── tr46 │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── mappingTable.json │ │ │ │ │ ├── regexes.js │ │ │ │ │ └── statusMapping.js │ │ │ │ └── package.json │ │ │ ├── webidl-conversions │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── index.js │ │ │ │ └── package.json │ │ │ └── whatwg-url │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ ├── Function.js │ │ │ │ ├── URL-impl.js │ │ │ │ ├── URL.js │ │ │ │ ├── URLSearchParams-impl.js │ │ │ │ ├── URLSearchParams.js │ │ │ │ ├── VoidFunction.js │ │ │ │ ├── encoding.js │ │ │ │ ├── infra.js │ │ │ │ ├── percent-encoding.js │ │ │ │ ├── url-state-machine.js │ │ │ │ ├── urlencoded.js │ │ │ │ └── utils.js │ │ │ │ ├── package.json │ │ │ │ └── webidl2js-wrapper.js │ │ └── package.json │ ├── mongodb │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── etc │ │ │ └── prepare.js │ │ ├── lib │ │ │ ├── admin.js │ │ │ ├── admin.js.map │ │ │ ├── bson.js │ │ │ ├── bson.js.map │ │ │ ├── bulk │ │ │ │ ├── common.js │ │ │ │ ├── common.js.map │ │ │ │ ├── ordered.js │ │ │ │ ├── ordered.js.map │ │ │ │ ├── unordered.js │ │ │ │ └── unordered.js.map │ │ │ ├── change_stream.js │ │ │ ├── change_stream.js.map │ │ │ ├── cmap │ │ │ │ ├── auth │ │ │ │ │ ├── auth_provider.js │ │ │ │ │ ├── auth_provider.js.map │ │ │ │ │ ├── gssapi.js │ │ │ │ │ ├── gssapi.js.map │ │ │ │ │ ├── mongo_credentials.js │ │ │ │ │ ├── mongo_credentials.js.map │ │ │ │ │ ├── mongocr.js │ │ │ │ │ ├── mongocr.js.map │ │ │ │ │ ├── mongodb_aws.js │ │ │ │ │ ├── mongodb_aws.js.map │ │ │ │ │ ├── plain.js │ │ │ │ │ ├── plain.js.map │ │ │ │ │ ├── providers.js │ │ │ │ │ ├── providers.js.map │ │ │ │ │ ├── scram.js │ │ │ │ │ ├── scram.js.map │ │ │ │ │ ├── x509.js │ │ │ │ │ └── x509.js.map │ │ │ │ ├── command_monitoring_events.js │ │ │ │ ├── command_monitoring_events.js.map │ │ │ │ ├── commands.js │ │ │ │ ├── commands.js.map │ │ │ │ ├── connect.js │ │ │ │ ├── connect.js.map │ │ │ │ ├── connection.js │ │ │ │ ├── connection.js.map │ │ │ │ ├── connection_pool.js │ │ │ │ ├── connection_pool.js.map │ │ │ │ ├── connection_pool_events.js │ │ │ │ ├── connection_pool_events.js.map │ │ │ │ ├── errors.js │ │ │ │ ├── errors.js.map │ │ │ │ ├── message_stream.js │ │ │ │ ├── message_stream.js.map │ │ │ │ ├── metrics.js │ │ │ │ ├── metrics.js.map │ │ │ │ ├── stream_description.js │ │ │ │ ├── stream_description.js.map │ │ │ │ └── wire_protocol │ │ │ │ │ ├── compression.js │ │ │ │ │ ├── compression.js.map │ │ │ │ │ ├── constants.js │ │ │ │ │ ├── constants.js.map │ │ │ │ │ ├── shared.js │ │ │ │ │ └── shared.js.map │ │ │ ├── collection.js │ │ │ ├── collection.js.map │ │ │ ├── connection_string.js │ │ │ ├── connection_string.js.map │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── cursor │ │ │ │ ├── abstract_cursor.js │ │ │ │ ├── abstract_cursor.js.map │ │ │ │ ├── aggregation_cursor.js │ │ │ │ ├── aggregation_cursor.js.map │ │ │ │ ├── change_stream_cursor.js │ │ │ │ ├── change_stream_cursor.js.map │ │ │ │ ├── find_cursor.js │ │ │ │ ├── find_cursor.js.map │ │ │ │ ├── list_collections_cursor.js │ │ │ │ ├── list_collections_cursor.js.map │ │ │ │ ├── list_indexes_cursor.js │ │ │ │ └── list_indexes_cursor.js.map │ │ │ ├── db.js │ │ │ ├── db.js.map │ │ │ ├── deps.js │ │ │ ├── deps.js.map │ │ │ ├── encrypter.js │ │ │ ├── encrypter.js.map │ │ │ ├── error.js │ │ │ ├── error.js.map │ │ │ ├── explain.js │ │ │ ├── explain.js.map │ │ │ ├── gridfs │ │ │ │ ├── download.js │ │ │ │ ├── download.js.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── upload.js │ │ │ │ └── upload.js.map │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── logger.js │ │ │ ├── logger.js.map │ │ │ ├── mongo_client.js │ │ │ ├── mongo_client.js.map │ │ │ ├── mongo_types.js │ │ │ ├── mongo_types.js.map │ │ │ ├── operations │ │ │ │ ├── add_user.js │ │ │ │ ├── add_user.js.map │ │ │ │ ├── aggregate.js │ │ │ │ ├── aggregate.js.map │ │ │ │ ├── bulk_write.js │ │ │ │ ├── bulk_write.js.map │ │ │ │ ├── collections.js │ │ │ │ ├── collections.js.map │ │ │ │ ├── command.js │ │ │ │ ├── command.js.map │ │ │ │ ├── common_functions.js │ │ │ │ ├── common_functions.js.map │ │ │ │ ├── connect.js │ │ │ │ ├── connect.js.map │ │ │ │ ├── count.js │ │ │ │ ├── count.js.map │ │ │ │ ├── count_documents.js │ │ │ │ ├── count_documents.js.map │ │ │ │ ├── create_collection.js │ │ │ │ ├── create_collection.js.map │ │ │ │ ├── delete.js │ │ │ │ ├── delete.js.map │ │ │ │ ├── distinct.js │ │ │ │ ├── distinct.js.map │ │ │ │ ├── drop.js │ │ │ │ ├── drop.js.map │ │ │ │ ├── estimated_document_count.js │ │ │ │ ├── estimated_document_count.js.map │ │ │ │ ├── eval.js │ │ │ │ ├── eval.js.map │ │ │ │ ├── execute_operation.js │ │ │ │ ├── execute_operation.js.map │ │ │ │ ├── find.js │ │ │ │ ├── find.js.map │ │ │ │ ├── find_and_modify.js │ │ │ │ ├── find_and_modify.js.map │ │ │ │ ├── get_more.js │ │ │ │ ├── get_more.js.map │ │ │ │ ├── indexes.js │ │ │ │ ├── indexes.js.map │ │ │ │ ├── insert.js │ │ │ │ ├── insert.js.map │ │ │ │ ├── is_capped.js │ │ │ │ ├── is_capped.js.map │ │ │ │ ├── kill_cursors.js │ │ │ │ ├── kill_cursors.js.map │ │ │ │ ├── list_collections.js │ │ │ │ ├── list_collections.js.map │ │ │ │ ├── list_databases.js │ │ │ │ ├── list_databases.js.map │ │ │ │ ├── map_reduce.js │ │ │ │ ├── map_reduce.js.map │ │ │ │ ├── operation.js │ │ │ │ ├── operation.js.map │ │ │ │ ├── options_operation.js │ │ │ │ ├── options_operation.js.map │ │ │ │ ├── profiling_level.js │ │ │ │ ├── profiling_level.js.map │ │ │ │ ├── remove_user.js │ │ │ │ ├── remove_user.js.map │ │ │ │ ├── rename.js │ │ │ │ ├── rename.js.map │ │ │ │ ├── run_command.js │ │ │ │ ├── run_command.js.map │ │ │ │ ├── set_profiling_level.js │ │ │ │ ├── set_profiling_level.js.map │ │ │ │ ├── stats.js │ │ │ │ ├── stats.js.map │ │ │ │ ├── update.js │ │ │ │ ├── update.js.map │ │ │ │ ├── validate_collection.js │ │ │ │ └── validate_collection.js.map │ │ │ ├── promise_provider.js │ │ │ ├── promise_provider.js.map │ │ │ ├── read_concern.js │ │ │ ├── read_concern.js.map │ │ │ ├── read_preference.js │ │ │ ├── read_preference.js.map │ │ │ ├── sdam │ │ │ │ ├── common.js │ │ │ │ ├── common.js.map │ │ │ │ ├── events.js │ │ │ │ ├── events.js.map │ │ │ │ ├── monitor.js │ │ │ │ ├── monitor.js.map │ │ │ │ ├── server.js │ │ │ │ ├── server.js.map │ │ │ │ ├── server_description.js │ │ │ │ ├── server_description.js.map │ │ │ │ ├── server_selection.js │ │ │ │ ├── server_selection.js.map │ │ │ │ ├── srv_polling.js │ │ │ │ ├── srv_polling.js.map │ │ │ │ ├── topology.js │ │ │ │ ├── topology.js.map │ │ │ │ ├── topology_description.js │ │ │ │ └── topology_description.js.map │ │ │ ├── sessions.js │ │ │ ├── sessions.js.map │ │ │ ├── sort.js │ │ │ ├── sort.js.map │ │ │ ├── transactions.js │ │ │ ├── transactions.js.map │ │ │ ├── utils.js │ │ │ ├── utils.js.map │ │ │ ├── write_concern.js │ │ │ └── write_concern.js.map │ │ ├── mongodb.d.ts │ │ ├── package.json │ │ ├── src │ │ │ ├── admin.ts │ │ │ ├── bson.ts │ │ │ ├── bulk │ │ │ │ ├── common.ts │ │ │ │ ├── ordered.ts │ │ │ │ └── unordered.ts │ │ │ ├── change_stream.ts │ │ │ ├── cmap │ │ │ │ ├── auth │ │ │ │ │ ├── auth_provider.ts │ │ │ │ │ ├── gssapi.ts │ │ │ │ │ ├── mongo_credentials.ts │ │ │ │ │ ├── mongocr.ts │ │ │ │ │ ├── mongodb_aws.ts │ │ │ │ │ ├── plain.ts │ │ │ │ │ ├── providers.ts │ │ │ │ │ ├── scram.ts │ │ │ │ │ └── x509.ts │ │ │ │ ├── command_monitoring_events.ts │ │ │ │ ├── commands.ts │ │ │ │ ├── connect.ts │ │ │ │ ├── connection.ts │ │ │ │ ├── connection_pool.ts │ │ │ │ ├── connection_pool_events.ts │ │ │ │ ├── errors.ts │ │ │ │ ├── message_stream.ts │ │ │ │ ├── metrics.ts │ │ │ │ ├── stream_description.ts │ │ │ │ └── wire_protocol │ │ │ │ │ ├── compression.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── shared.ts │ │ │ ├── collection.ts │ │ │ ├── connection_string.ts │ │ │ ├── constants.ts │ │ │ ├── cursor │ │ │ │ ├── abstract_cursor.ts │ │ │ │ ├── aggregation_cursor.ts │ │ │ │ ├── change_stream_cursor.ts │ │ │ │ ├── find_cursor.ts │ │ │ │ ├── list_collections_cursor.ts │ │ │ │ └── list_indexes_cursor.ts │ │ │ ├── db.ts │ │ │ ├── deps.ts │ │ │ ├── encrypter.ts │ │ │ ├── error.ts │ │ │ ├── explain.ts │ │ │ ├── gridfs │ │ │ │ ├── download.ts │ │ │ │ ├── index.ts │ │ │ │ └── upload.ts │ │ │ ├── index.ts │ │ │ ├── logger.ts │ │ │ ├── mongo_client.ts │ │ │ ├── mongo_types.ts │ │ │ ├── operations │ │ │ │ ├── add_user.ts │ │ │ │ ├── aggregate.ts │ │ │ │ ├── bulk_write.ts │ │ │ │ ├── collections.ts │ │ │ │ ├── command.ts │ │ │ │ ├── common_functions.ts │ │ │ │ ├── connect.ts │ │ │ │ ├── count.ts │ │ │ │ ├── count_documents.ts │ │ │ │ ├── create_collection.ts │ │ │ │ ├── delete.ts │ │ │ │ ├── distinct.ts │ │ │ │ ├── drop.ts │ │ │ │ ├── estimated_document_count.ts │ │ │ │ ├── eval.ts │ │ │ │ ├── execute_operation.ts │ │ │ │ ├── find.ts │ │ │ │ ├── find_and_modify.ts │ │ │ │ ├── get_more.ts │ │ │ │ ├── indexes.ts │ │ │ │ ├── insert.ts │ │ │ │ ├── is_capped.ts │ │ │ │ ├── kill_cursors.ts │ │ │ │ ├── list_collections.ts │ │ │ │ ├── list_databases.ts │ │ │ │ ├── map_reduce.ts │ │ │ │ ├── operation.ts │ │ │ │ ├── options_operation.ts │ │ │ │ ├── profiling_level.ts │ │ │ │ ├── remove_user.ts │ │ │ │ ├── rename.ts │ │ │ │ ├── run_command.ts │ │ │ │ ├── set_profiling_level.ts │ │ │ │ ├── stats.ts │ │ │ │ ├── update.ts │ │ │ │ └── validate_collection.ts │ │ │ ├── promise_provider.ts │ │ │ ├── read_concern.ts │ │ │ ├── read_preference.ts │ │ │ ├── sdam │ │ │ │ ├── common.ts │ │ │ │ ├── events.ts │ │ │ │ ├── monitor.ts │ │ │ │ ├── server.ts │ │ │ │ ├── server_description.ts │ │ │ │ ├── server_selection.ts │ │ │ │ ├── srv_polling.ts │ │ │ │ ├── topology.ts │ │ │ │ └── topology_description.ts │ │ │ ├── sessions.ts │ │ │ ├── sort.ts │ │ │ ├── transactions.ts │ │ │ ├── utils.ts │ │ │ └── write_concern.ts │ │ └── tsconfig.json │ ├── mongoose │ │ ├── .eslintrc.json │ │ ├── .mocharc.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── browser.js │ │ ├── dist │ │ │ └── browser.umd.js │ │ ├── index.js │ │ ├── lgtm.yml │ │ ├── lib │ │ │ ├── aggregate.js │ │ │ ├── browser.js │ │ │ ├── browserDocument.js │ │ │ ├── cast.js │ │ │ ├── cast │ │ │ │ ├── boolean.js │ │ │ │ ├── date.js │ │ │ │ ├── decimal128.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ └── string.js │ │ │ ├── collection.js │ │ │ ├── connection.js │ │ │ ├── connectionstate.js │ │ │ ├── cursor │ │ │ │ ├── AggregationCursor.js │ │ │ │ ├── ChangeStream.js │ │ │ │ └── QueryCursor.js │ │ │ ├── document.js │ │ │ ├── document_provider.js │ │ │ ├── driver.js │ │ │ ├── drivers │ │ │ │ ├── SPEC.md │ │ │ │ ├── browser │ │ │ │ │ ├── ReadPreference.js │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── objectid.js │ │ │ │ └── node-mongodb-native │ │ │ │ │ ├── ReadPreference.js │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── collection.js │ │ │ │ │ ├── connection.js │ │ │ │ │ ├── decimal128.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── objectid.js │ │ │ ├── error │ │ │ │ ├── browserMissingSchema.js │ │ │ │ ├── cast.js │ │ │ │ ├── disconnected.js │ │ │ │ ├── divergentArray.js │ │ │ │ ├── eachAsyncMultiError.js │ │ │ │ ├── index.js │ │ │ │ ├── messages.js │ │ │ │ ├── missingSchema.js │ │ │ │ ├── mongooseError.js │ │ │ │ ├── notFound.js │ │ │ │ ├── objectExpected.js │ │ │ │ ├── objectParameter.js │ │ │ │ ├── overwriteModel.js │ │ │ │ ├── parallelSave.js │ │ │ │ ├── parallelValidate.js │ │ │ │ ├── serverSelection.js │ │ │ │ ├── strict.js │ │ │ │ ├── strictPopulate.js │ │ │ │ ├── syncIndexes.js │ │ │ │ ├── validation.js │ │ │ │ ├── validator.js │ │ │ │ └── version.js │ │ │ ├── helpers │ │ │ │ ├── aggregate │ │ │ │ │ ├── prepareDiscriminatorPipeline.js │ │ │ │ │ └── stringifyFunctionOperators.js │ │ │ │ ├── arrayDepth.js │ │ │ │ ├── clone.js │ │ │ │ ├── common.js │ │ │ │ ├── cursor │ │ │ │ │ └── eachAsync.js │ │ │ │ ├── discriminator │ │ │ │ │ ├── areDiscriminatorValuesEqual.js │ │ │ │ │ ├── checkEmbeddedDiscriminatorKeyProjection.js │ │ │ │ │ ├── getConstructor.js │ │ │ │ │ ├── getDiscriminatorByValue.js │ │ │ │ │ └── getSchemaDiscriminatorByValue.js │ │ │ │ ├── document │ │ │ │ │ ├── applyDefaults.js │ │ │ │ │ ├── cleanModifiedSubpaths.js │ │ │ │ │ ├── compile.js │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ └── handleSpreadDoc.js │ │ │ │ ├── each.js │ │ │ │ ├── firstKey.js │ │ │ │ ├── get.js │ │ │ │ ├── getConstructorName.js │ │ │ │ ├── getDefaultBulkwriteResult.js │ │ │ │ ├── getFunctionName.js │ │ │ │ ├── immediate.js │ │ │ │ ├── indexes │ │ │ │ │ ├── applySchemaCollation.js │ │ │ │ │ ├── decorateDiscriminatorIndexOptions.js │ │ │ │ │ ├── getRelatedIndexes.js │ │ │ │ │ ├── isDefaultIdIndex.js │ │ │ │ │ ├── isIndexEqual.js │ │ │ │ │ └── isTextIndex.js │ │ │ │ ├── isAsyncFunction.js │ │ │ │ ├── isBsonType.js │ │ │ │ ├── isMongooseObject.js │ │ │ │ ├── isObject.js │ │ │ │ ├── isPromise.js │ │ │ │ ├── isSimpleValidator.js │ │ │ │ ├── model │ │ │ │ │ ├── applyDefaultsToPOJO.js │ │ │ │ │ ├── applyHooks.js │ │ │ │ │ ├── applyMethods.js │ │ │ │ │ ├── applyStaticHooks.js │ │ │ │ │ ├── applyStatics.js │ │ │ │ │ ├── castBulkWrite.js │ │ │ │ │ ├── discriminator.js │ │ │ │ │ └── pushNestedArrayPaths.js │ │ │ │ ├── once.js │ │ │ │ ├── parallelLimit.js │ │ │ │ ├── path │ │ │ │ │ ├── flattenObjectWithDottedPaths.js │ │ │ │ │ ├── parentPaths.js │ │ │ │ │ └── setDottedPath.js │ │ │ │ ├── pluralize.js │ │ │ │ ├── populate │ │ │ │ │ ├── SkipPopulateValue.js │ │ │ │ │ ├── assignRawDocsToIdStructure.js │ │ │ │ │ ├── assignVals.js │ │ │ │ │ ├── createPopulateQueryFilter.js │ │ │ │ │ ├── getModelsMapForPopulate.js │ │ │ │ │ ├── getSchemaTypes.js │ │ │ │ │ ├── getVirtual.js │ │ │ │ │ ├── leanPopulateMap.js │ │ │ │ │ ├── lookupLocalFields.js │ │ │ │ │ ├── markArraySubdocsPopulated.js │ │ │ │ │ ├── modelNamesFromRefPath.js │ │ │ │ │ ├── removeDeselectedForeignField.js │ │ │ │ │ └── validateRef.js │ │ │ │ ├── printJestWarning.js │ │ │ │ ├── processConnectionOptions.js │ │ │ │ ├── projection │ │ │ │ │ ├── applyProjection.js │ │ │ │ │ ├── hasIncludedChildren.js │ │ │ │ │ ├── isDefiningProjection.js │ │ │ │ │ ├── isExclusive.js │ │ │ │ │ ├── isInclusive.js │ │ │ │ │ ├── isPathExcluded.js │ │ │ │ │ ├── isPathSelectedInclusive.js │ │ │ │ │ ├── isSubpath.js │ │ │ │ │ └── parseProjection.js │ │ │ │ ├── promiseOrCallback.js │ │ │ │ ├── query │ │ │ │ │ ├── applyGlobalOption.js │ │ │ │ │ ├── applyQueryMiddleware.js │ │ │ │ │ ├── cast$expr.js │ │ │ │ │ ├── castFilterPath.js │ │ │ │ │ ├── castUpdate.js │ │ │ │ │ ├── completeMany.js │ │ │ │ │ ├── getEmbeddedDiscriminatorPath.js │ │ │ │ │ ├── handleImmutable.js │ │ │ │ │ ├── hasDollarKeys.js │ │ │ │ │ ├── isOperator.js │ │ │ │ │ ├── sanitizeFilter.js │ │ │ │ │ ├── sanitizeProjection.js │ │ │ │ │ ├── selectPopulatedFields.js │ │ │ │ │ ├── trusted.js │ │ │ │ │ ├── validOps.js │ │ │ │ │ └── wrapThunk.js │ │ │ │ ├── schema │ │ │ │ │ ├── addAutoId.js │ │ │ │ │ ├── applyPlugins.js │ │ │ │ │ ├── applyWriteConcern.js │ │ │ │ │ ├── cleanPositionalOperators.js │ │ │ │ │ ├── getIndexes.js │ │ │ │ │ ├── getKeysInSchemaOrder.js │ │ │ │ │ ├── getPath.js │ │ │ │ │ ├── handleIdOption.js │ │ │ │ │ ├── handleTimestampOption.js │ │ │ │ │ ├── idGetter.js │ │ │ │ │ └── merge.js │ │ │ │ ├── schematype │ │ │ │ │ └── handleImmutable.js │ │ │ │ ├── setDefaultsOnInsert.js │ │ │ │ ├── specialProperties.js │ │ │ │ ├── symbols.js │ │ │ │ ├── timers.js │ │ │ │ ├── timestamps │ │ │ │ │ ├── setDocumentTimestamps.js │ │ │ │ │ └── setupTimestamps.js │ │ │ │ ├── topology │ │ │ │ │ ├── allServersUnknown.js │ │ │ │ │ ├── isAtlas.js │ │ │ │ │ └── isSSLError.js │ │ │ │ ├── update │ │ │ │ │ ├── applyTimestampsToChildren.js │ │ │ │ │ ├── applyTimestampsToUpdate.js │ │ │ │ │ ├── castArrayFilters.js │ │ │ │ │ ├── modifiedPaths.js │ │ │ │ │ ├── moveImmutableProperties.js │ │ │ │ │ ├── removeUnusedArrayFilters.js │ │ │ │ │ └── updatedPathsByArrayFilter.js │ │ │ │ └── updateValidators.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── model.js │ │ │ ├── options.js │ │ │ ├── options │ │ │ │ ├── PopulateOptions.js │ │ │ │ ├── SchemaArrayOptions.js │ │ │ │ ├── SchemaBufferOptions.js │ │ │ │ ├── SchemaDateOptions.js │ │ │ │ ├── SchemaDocumentArrayOptions.js │ │ │ │ ├── SchemaMapOptions.js │ │ │ │ ├── SchemaNumberOptions.js │ │ │ │ ├── SchemaObjectIdOptions.js │ │ │ │ ├── SchemaStringOptions.js │ │ │ │ ├── SchemaSubdocumentOptions.js │ │ │ │ ├── SchemaTypeOptions.js │ │ │ │ ├── VirtualOptions.js │ │ │ │ ├── propertyOptions.js │ │ │ │ ├── removeOptions.js │ │ │ │ └── saveOptions.js │ │ │ ├── plugins │ │ │ │ ├── clearValidating.js │ │ │ │ ├── removeSubdocs.js │ │ │ │ ├── saveSubdocs.js │ │ │ │ ├── sharding.js │ │ │ │ ├── trackTransaction.js │ │ │ │ └── validateBeforeSave.js │ │ │ ├── promise_provider.js │ │ │ ├── query.js │ │ │ ├── queryhelpers.js │ │ │ ├── schema.js │ │ │ ├── schema │ │ │ │ ├── SubdocumentPath.js │ │ │ │ ├── array.js │ │ │ │ ├── boolean.js │ │ │ │ ├── buffer.js │ │ │ │ ├── date.js │ │ │ │ ├── decimal128.js │ │ │ │ ├── documentarray.js │ │ │ │ ├── index.js │ │ │ │ ├── map.js │ │ │ │ ├── mixed.js │ │ │ │ ├── number.js │ │ │ │ ├── objectid.js │ │ │ │ ├── operators │ │ │ │ │ ├── bitwise.js │ │ │ │ │ ├── exists.js │ │ │ │ │ ├── geospatial.js │ │ │ │ │ ├── helpers.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── type.js │ │ │ │ ├── string.js │ │ │ │ └── symbols.js │ │ │ ├── schematype.js │ │ │ ├── statemachine.js │ │ │ ├── types │ │ │ │ ├── ArraySubdocument.js │ │ │ │ ├── DocumentArray │ │ │ │ │ ├── index.js │ │ │ │ │ ├── isMongooseDocumentArray.js │ │ │ │ │ └── methods │ │ │ │ │ │ └── index.js │ │ │ │ ├── array │ │ │ │ │ ├── index.js │ │ │ │ │ ├── isMongooseArray.js │ │ │ │ │ └── methods │ │ │ │ │ │ └── index.js │ │ │ │ ├── buffer.js │ │ │ │ ├── decimal128.js │ │ │ │ ├── index.js │ │ │ │ ├── map.js │ │ │ │ ├── objectid.js │ │ │ │ └── subdocument.js │ │ │ ├── utils.js │ │ │ ├── validoptions.js │ │ │ └── virtualtype.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ ├── scripts │ │ │ ├── build-browser.js │ │ │ └── create-tarball.js │ │ ├── tools │ │ │ ├── auth.js │ │ │ ├── repl.js │ │ │ └── sharded.js │ │ ├── tsconfig.json │ │ └── types │ │ │ ├── aggregate.d.ts │ │ │ ├── callback.d.ts │ │ │ ├── collection.d.ts │ │ │ ├── connection.d.ts │ │ │ ├── cursor.d.ts │ │ │ ├── document.d.ts │ │ │ ├── error.d.ts │ │ │ ├── expressions.d.ts │ │ │ ├── helpers.d.ts │ │ │ ├── index.d.ts │ │ │ ├── indexes.d.ts │ │ │ ├── inferschematype.d.ts │ │ │ ├── middlewares.d.ts │ │ │ ├── models.d.ts │ │ │ ├── mongooseoptions.d.ts │ │ │ ├── pipelinestage.d.ts │ │ │ ├── populate.d.ts │ │ │ ├── query.d.ts │ │ │ ├── schemaoptions.d.ts │ │ │ ├── schematypes.d.ts │ │ │ ├── session.d.ts │ │ │ ├── types.d.ts │ │ │ ├── utility.d.ts │ │ │ ├── validation.d.ts │ │ │ └── virtuals.d.ts │ ├── mpath │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── index.js │ │ │ └── stringToParts.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc.yml │ │ │ ├── index.js │ │ │ └── stringToParts.js │ ├── mquery │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── lib │ │ │ ├── collection │ │ │ │ ├── collection.js │ │ │ │ ├── index.js │ │ │ │ └── node.js │ │ │ ├── env.js │ │ │ ├── mquery.js │ │ │ ├── permissions.js │ │ │ └── utils.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── common.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── node.js │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc.yml │ │ │ ├── collection │ │ │ ├── browser.js │ │ │ ├── mongo.js │ │ │ └── node.js │ │ │ ├── env.js │ │ │ ├── index.js │ │ │ └── utils.test.js │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── natural-compare │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── node-addon-api │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── common.gypi │ │ ├── except.gypi │ │ ├── index.js │ │ ├── napi-inl.deprecated.h │ │ ├── napi-inl.h │ │ ├── napi.h │ │ ├── node_api.gyp │ │ ├── noexcept.gypi │ │ ├── nothing.c │ │ ├── package-support.json │ │ ├── package.json │ │ └── tools │ │ │ ├── README.md │ │ │ ├── check-napi.js │ │ │ ├── clang-format.js │ │ │ ├── conversion.js │ │ │ └── eslint-format.js │ ├── node-cron │ │ ├── .circleci │ │ │ └── config.yml │ │ ├── .covignore │ │ ├── .eslintrc.yml │ │ ├── .github │ │ │ └── stale.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── package.json │ │ ├── src │ │ │ ├── background-scheduled-task │ │ │ │ ├── daemon.js │ │ │ │ └── index.js │ │ │ ├── convert-expression │ │ │ │ ├── asterisk-to-range-conversion.js │ │ │ │ ├── index.js │ │ │ │ ├── month-names-conversion.js │ │ │ │ ├── range-conversion.js │ │ │ │ ├── step-values-conversion.js │ │ │ │ └── week-day-names-conversion.js │ │ │ ├── node-cron.js │ │ │ ├── pattern-validation.js │ │ │ ├── scheduled-task.js │ │ │ ├── scheduler.js │ │ │ ├── storage.js │ │ │ ├── task.js │ │ │ └── time-matcher.js │ │ └── test │ │ │ ├── assets │ │ │ └── dummy-task.js │ │ │ ├── background-scheduled-task-test.js │ │ │ ├── convert-expression │ │ │ ├── asterisk-to-range-conversion-test.js │ │ │ ├── convert-expression-test.js │ │ │ ├── month-names-conversion-test.js │ │ │ ├── range-conversion-test.js │ │ │ ├── step-values-conversion-test.js │ │ │ └── week-day-names-conversion-test.js │ │ │ ├── node-cron-test.js │ │ │ ├── pattern-validation │ │ │ ├── validate-day-test.js │ │ │ ├── validate-hours-test.js │ │ │ ├── validate-minute-test.js │ │ │ ├── validate-month-test.js │ │ │ ├── validate-pattern-type.js │ │ │ ├── validate-second-test.js │ │ │ ├── validate-test.js │ │ │ └── validate-week-day-test.js │ │ │ ├── scheduled-task-test.js │ │ │ ├── scheduler-test.js │ │ │ ├── storage-test.js │ │ │ ├── task-test.js │ │ │ └── time-matcher-test.js │ ├── node-fetch │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── browser.js │ │ ├── lib │ │ │ ├── index.es.js │ │ │ ├── index.js │ │ │ └── index.mjs │ │ └── package.json │ ├── node-int64 │ │ ├── .npmignore │ │ ├── Int64.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── test.js │ ├── node-releases │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data │ │ │ ├── processed │ │ │ │ └── envs.json │ │ │ └── release-schedule │ │ │ │ └── release-schedule.json │ │ └── package.json │ ├── nodemailer │ │ ├── .gitattributes │ │ ├── .prettierrc.js │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.txt │ │ ├── lib │ │ │ ├── addressparser │ │ │ │ └── index.js │ │ │ ├── base64 │ │ │ │ └── index.js │ │ │ ├── dkim │ │ │ │ ├── index.js │ │ │ │ ├── message-parser.js │ │ │ │ ├── relaxed-body.js │ │ │ │ └── sign.js │ │ │ ├── fetch │ │ │ │ ├── cookies.js │ │ │ │ └── index.js │ │ │ ├── json-transport │ │ │ │ └── index.js │ │ │ ├── mail-composer │ │ │ │ └── index.js │ │ │ ├── mailer │ │ │ │ ├── index.js │ │ │ │ └── mail-message.js │ │ │ ├── mime-funcs │ │ │ │ ├── index.js │ │ │ │ └── mime-types.js │ │ │ ├── mime-node │ │ │ │ ├── index.js │ │ │ │ ├── last-newline.js │ │ │ │ ├── le-unix.js │ │ │ │ └── le-windows.js │ │ │ ├── nodemailer.js │ │ │ ├── qp │ │ │ │ └── index.js │ │ │ ├── sendmail-transport │ │ │ │ └── index.js │ │ │ ├── ses-transport │ │ │ │ └── index.js │ │ │ ├── shared │ │ │ │ └── index.js │ │ │ ├── smtp-connection │ │ │ │ ├── data-stream.js │ │ │ │ ├── http-proxy-client.js │ │ │ │ └── index.js │ │ │ ├── smtp-pool │ │ │ │ ├── index.js │ │ │ │ └── pool-resource.js │ │ │ ├── smtp-transport │ │ │ │ └── index.js │ │ │ ├── stream-transport │ │ │ │ └── index.js │ │ │ ├── well-known │ │ │ │ ├── index.js │ │ │ │ └── services.json │ │ │ └── xoauth2 │ │ │ │ └── index.js │ │ ├── package.json │ │ └── postinstall.js │ ├── nopt │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── nopt.js │ │ ├── lib │ │ │ └── nopt.js │ │ └── package.json │ ├── normalize-path │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── npm-run-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── npmlog │ │ ├── LICENSE │ │ ├── README.md │ │ ├── log.js │ │ └── package.json │ ├── object-assign │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── object-inspect │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── example │ │ │ ├── all.js │ │ │ ├── circular.js │ │ │ ├── fn.js │ │ │ └── inspect.js │ │ ├── index.js │ │ ├── package-support.json │ │ ├── package.json │ │ ├── readme.markdown │ │ ├── test-core-js.js │ │ ├── test │ │ │ ├── bigint.js │ │ │ ├── browser │ │ │ │ └── dom.js │ │ │ ├── circular.js │ │ │ ├── deep.js │ │ │ ├── element.js │ │ │ ├── err.js │ │ │ ├── fakes.js │ │ │ ├── fn.js │ │ │ ├── has.js │ │ │ ├── holes.js │ │ │ ├── indent-option.js │ │ │ ├── inspect.js │ │ │ ├── lowbyte.js │ │ │ ├── number.js │ │ │ ├── quoteStyle.js │ │ │ ├── toStringTag.js │ │ │ ├── undef.js │ │ │ └── values.js │ │ └── util.inspect.js │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── once │ │ ├── LICENSE │ │ ├── README.md │ │ ├── once.js │ │ └── package.json │ ├── onetime │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── p-limit │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── p-locate │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ └── p-limit │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── readme.md │ ├── p-try │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── packet-reader │ │ ├── .travis.yml │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── parse-json │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-exists │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-is-absolute │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-key │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-parse │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── pg-connection-string │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── pg-int8 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── pg-pool │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ ├── bring-your-own-promise.js │ │ │ ├── connection-strings.js │ │ │ ├── connection-timeout.js │ │ │ ├── ending.js │ │ │ ├── error-handling.js │ │ │ ├── events.js │ │ │ ├── idle-timeout-exit.js │ │ │ ├── idle-timeout.js │ │ │ ├── index.js │ │ │ ├── lifetime-timeout.js │ │ │ ├── logging.js │ │ │ ├── max-uses.js │ │ │ ├── releasing-clients.js │ │ │ ├── setup.js │ │ │ ├── sizing.js │ │ │ ├── submittable.js │ │ │ ├── timeout.js │ │ │ └── verify.js │ ├── pg-protocol │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── b.d.ts │ │ │ ├── b.js │ │ │ ├── b.js.map │ │ │ ├── buffer-reader.d.ts │ │ │ ├── buffer-reader.js │ │ │ ├── buffer-reader.js.map │ │ │ ├── buffer-writer.d.ts │ │ │ ├── buffer-writer.js │ │ │ ├── buffer-writer.js.map │ │ │ ├── inbound-parser.test.d.ts │ │ │ ├── inbound-parser.test.js │ │ │ ├── inbound-parser.test.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── messages.d.ts │ │ │ ├── messages.js │ │ │ ├── messages.js.map │ │ │ ├── outbound-serializer.test.d.ts │ │ │ ├── outbound-serializer.test.js │ │ │ ├── outbound-serializer.test.js.map │ │ │ ├── parser.d.ts │ │ │ ├── parser.js │ │ │ ├── parser.js.map │ │ │ ├── serializer.d.ts │ │ │ ├── serializer.js │ │ │ └── serializer.js.map │ │ ├── package.json │ │ └── src │ │ │ ├── b.ts │ │ │ ├── buffer-reader.ts │ │ │ ├── buffer-writer.ts │ │ │ ├── inbound-parser.test.ts │ │ │ ├── index.ts │ │ │ ├── messages.ts │ │ │ ├── outbound-serializer.test.ts │ │ │ ├── parser.ts │ │ │ ├── serializer.ts │ │ │ ├── testing │ │ │ ├── buffer-list.ts │ │ │ └── test-buffers.ts │ │ │ └── types │ │ │ └── chunky.d.ts │ ├── pg-types │ │ ├── .travis.yml │ │ ├── Makefile │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.test-d.ts │ │ ├── lib │ │ │ ├── arrayParser.js │ │ │ ├── binaryParsers.js │ │ │ ├── builtins.js │ │ │ └── textParsers.js │ │ ├── package.json │ │ └── test │ │ │ ├── index.js │ │ │ └── types.js │ ├── pg │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── client.js │ │ │ ├── connection-parameters.js │ │ │ ├── connection.js │ │ │ ├── defaults.js │ │ │ ├── index.js │ │ │ ├── native │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ └── query.js │ │ │ ├── query.js │ │ │ ├── result.js │ │ │ ├── sasl.js │ │ │ ├── type-overrides.js │ │ │ └── utils.js │ │ └── package.json │ ├── pgpass │ │ ├── README.md │ │ ├── lib │ │ │ ├── helper.js │ │ │ └── index.js │ │ └── package.json │ ├── picocolors │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── picocolors.browser.js │ │ ├── picocolors.d.ts │ │ ├── picocolors.js │ │ └── types.ts │ ├── picomatch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── parse.js │ │ │ ├── picomatch.js │ │ │ ├── scan.js │ │ │ └── utils.js │ │ └── package.json │ ├── pirates │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── pkg-dir │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── please-upgrade-node │ │ ├── .eslintrc.js │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── postgres-array │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── postgres-bytea │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── postgres-date │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── postgres-interval │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── pretty-format │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── collections.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── plugins │ │ │ │ ├── AsymmetricMatcher.js │ │ │ │ ├── DOMCollection.js │ │ │ │ ├── DOMElement.js │ │ │ │ ├── Immutable.js │ │ │ │ ├── ReactElement.js │ │ │ │ ├── ReactTestComponent.js │ │ │ │ └── lib │ │ │ │ │ ├── escapeHTML.js │ │ │ │ │ └── markup.js │ │ │ └── types.js │ │ ├── node_modules │ │ │ └── ansi-styles │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── prompts │ │ ├── dist │ │ │ ├── dateparts │ │ │ │ ├── datepart.js │ │ │ │ ├── day.js │ │ │ │ ├── hours.js │ │ │ │ ├── index.js │ │ │ │ ├── meridiem.js │ │ │ │ ├── milliseconds.js │ │ │ │ ├── minutes.js │ │ │ │ ├── month.js │ │ │ │ ├── seconds.js │ │ │ │ └── year.js │ │ │ ├── elements │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocompleteMultiselect.js │ │ │ │ ├── confirm.js │ │ │ │ ├── date.js │ │ │ │ ├── index.js │ │ │ │ ├── multiselect.js │ │ │ │ ├── number.js │ │ │ │ ├── prompt.js │ │ │ │ ├── select.js │ │ │ │ ├── text.js │ │ │ │ └── toggle.js │ │ │ ├── index.js │ │ │ ├── prompts.js │ │ │ └── util │ │ │ │ ├── action.js │ │ │ │ ├── clear.js │ │ │ │ ├── entriesToDisplay.js │ │ │ │ ├── figures.js │ │ │ │ ├── index.js │ │ │ │ ├── lines.js │ │ │ │ ├── strip.js │ │ │ │ ├── style.js │ │ │ │ └── wrap.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── dateparts │ │ │ │ ├── datepart.js │ │ │ │ ├── day.js │ │ │ │ ├── hours.js │ │ │ │ ├── index.js │ │ │ │ ├── meridiem.js │ │ │ │ ├── milliseconds.js │ │ │ │ ├── minutes.js │ │ │ │ ├── month.js │ │ │ │ ├── seconds.js │ │ │ │ └── year.js │ │ │ ├── elements │ │ │ │ ├── autocomplete.js │ │ │ │ ├── autocompleteMultiselect.js │ │ │ │ ├── confirm.js │ │ │ │ ├── date.js │ │ │ │ ├── index.js │ │ │ │ ├── multiselect.js │ │ │ │ ├── number.js │ │ │ │ ├── prompt.js │ │ │ │ ├── select.js │ │ │ │ ├── text.js │ │ │ │ └── toggle.js │ │ │ ├── index.js │ │ │ ├── prompts.js │ │ │ └── util │ │ │ │ ├── action.js │ │ │ │ ├── clear.js │ │ │ │ ├── entriesToDisplay.js │ │ │ │ ├── figures.js │ │ │ │ ├── index.js │ │ │ │ ├── lines.js │ │ │ │ ├── strip.js │ │ │ │ ├── style.js │ │ │ │ └── wrap.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── punycode │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── package.json │ │ ├── punycode.es6.js │ │ └── punycode.js │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── react-is │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cjs │ │ │ ├── react-is.development.js │ │ │ └── react-is.production.min.js │ │ ├── index.js │ │ ├── package.json │ │ └── umd │ │ │ ├── react-is.development.js │ │ │ └── react-is.production.min.js │ ├── readable-stream │ │ ├── CONTRIBUTING.md │ │ ├── GOVERNANCE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── errors-browser.js │ │ ├── errors.js │ │ ├── experimentalWarning.js │ │ ├── lib │ │ │ ├── _stream_duplex.js │ │ │ ├── _stream_passthrough.js │ │ │ ├── _stream_readable.js │ │ │ ├── _stream_transform.js │ │ │ ├── _stream_writable.js │ │ │ └── internal │ │ │ │ └── streams │ │ │ │ ├── async_iterator.js │ │ │ │ ├── buffer_list.js │ │ │ │ ├── destroy.js │ │ │ │ ├── end-of-stream.js │ │ │ │ ├── from-browser.js │ │ │ │ ├── from.js │ │ │ │ ├── pipeline.js │ │ │ │ ├── state.js │ │ │ │ ├── stream-browser.js │ │ │ │ └── stream.js │ │ ├── package.json │ │ ├── readable-browser.js │ │ └── readable.js │ ├── readdirp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── require-directory │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.markdown │ │ ├── index.js │ │ └── package.json │ ├── resolve-cwd │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── resolve-from │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── resolve.exports │ │ ├── dist │ │ │ ├── index.js │ │ │ └── index.mjs │ │ ├── index.d.ts │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── resolve │ │ ├── .editorconfig │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE │ │ ├── SECURITY.md │ │ ├── async.js │ │ ├── bin │ │ │ └── resolve │ │ ├── example │ │ │ ├── async.js │ │ │ └── sync.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── async.js │ │ │ ├── caller.js │ │ │ ├── core.js │ │ │ ├── core.json │ │ │ ├── homedir.js │ │ │ ├── is-core.js │ │ │ ├── node-modules-paths.js │ │ │ ├── normalize-options.js │ │ │ └── sync.js │ │ ├── package.json │ │ ├── readme.markdown │ │ ├── sync.js │ │ └── test │ │ │ ├── core.js │ │ │ ├── dotdot.js │ │ │ ├── dotdot │ │ │ ├── abc │ │ │ │ └── index.js │ │ │ └── index.js │ │ │ ├── faulty_basedir.js │ │ │ ├── filter.js │ │ │ ├── filter_sync.js │ │ │ ├── home_paths.js │ │ │ ├── home_paths_sync.js │ │ │ ├── mock.js │ │ │ ├── mock_sync.js │ │ │ ├── module_dir.js │ │ │ ├── module_dir │ │ │ ├── xmodules │ │ │ │ └── aaa │ │ │ │ │ └── index.js │ │ │ ├── ymodules │ │ │ │ └── aaa │ │ │ │ │ └── index.js │ │ │ └── zmodules │ │ │ │ └── bbb │ │ │ │ ├── main.js │ │ │ │ └── package.json │ │ │ ├── node-modules-paths.js │ │ │ ├── node_path.js │ │ │ ├── node_path │ │ │ ├── x │ │ │ │ ├── aaa │ │ │ │ │ └── index.js │ │ │ │ └── ccc │ │ │ │ │ └── index.js │ │ │ └── y │ │ │ │ ├── bbb │ │ │ │ └── index.js │ │ │ │ └── ccc │ │ │ │ └── index.js │ │ │ ├── nonstring.js │ │ │ ├── pathfilter.js │ │ │ ├── pathfilter │ │ │ └── deep_ref │ │ │ │ └── main.js │ │ │ ├── precedence.js │ │ │ ├── precedence │ │ │ ├── aaa.js │ │ │ ├── aaa │ │ │ │ ├── index.js │ │ │ │ └── main.js │ │ │ ├── bbb.js │ │ │ └── bbb │ │ │ │ └── main.js │ │ │ ├── resolver.js │ │ │ ├── resolver │ │ │ ├── baz │ │ │ │ ├── doom.js │ │ │ │ ├── package.json │ │ │ │ └── quux.js │ │ │ ├── browser_field │ │ │ │ ├── a.js │ │ │ │ ├── b.js │ │ │ │ └── package.json │ │ │ ├── cup.coffee │ │ │ ├── dot_main │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── dot_slash_main │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── false_main │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── foo.js │ │ │ ├── incorrect_main │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── invalid_main │ │ │ │ └── package.json │ │ │ ├── malformed_package_json │ │ │ │ ├── index.js │ │ │ │ └── package.json │ │ │ ├── mug.coffee │ │ │ ├── mug.js │ │ │ ├── multirepo │ │ │ │ ├── lerna.json │ │ │ │ ├── package.json │ │ │ │ └── packages │ │ │ │ │ ├── package-a │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ │ └── package-b │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ ├── nested_symlinks │ │ │ │ └── mylib │ │ │ │ │ ├── async.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── sync.js │ │ │ ├── other_path │ │ │ │ ├── lib │ │ │ │ │ └── other-lib.js │ │ │ │ └── root.js │ │ │ ├── quux │ │ │ │ └── foo │ │ │ │ │ └── index.js │ │ │ ├── same_names │ │ │ │ ├── foo.js │ │ │ │ └── foo │ │ │ │ │ └── index.js │ │ │ ├── symlinked │ │ │ │ ├── _ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── foo.js │ │ │ │ │ └── symlink_target │ │ │ │ │ │ └── .gitkeep │ │ │ │ └── package │ │ │ │ │ ├── bar.js │ │ │ │ │ └── package.json │ │ │ └── without_basedir │ │ │ │ └── main.js │ │ │ ├── resolver_sync.js │ │ │ ├── shadowed_core.js │ │ │ ├── shadowed_core │ │ │ └── node_modules │ │ │ │ └── util │ │ │ │ └── index.js │ │ │ ├── subdirs.js │ │ │ └── symlinks.js │ ├── rimraf │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin.js │ │ ├── package.json │ │ └── rimraf.js │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── saslprep │ │ ├── .editorconfig │ │ ├── .gitattributes │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── code-points.mem │ │ ├── generate-code-points.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── code-points.js │ │ │ ├── memory-code-points.js │ │ │ └── util.js │ │ ├── package.json │ │ ├── readme.md │ │ └── test │ │ │ ├── index.js │ │ │ └── util.js │ ├── semver-compare │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── example │ │ │ ├── cmp.js │ │ │ └── lex.js │ │ ├── index.js │ │ ├── package.json │ │ ├── readme.markdown │ │ └── test │ │ │ └── cmp.js │ ├── semver │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── semver.js │ │ ├── classes │ │ │ ├── comparator.js │ │ │ ├── index.js │ │ │ ├── range.js │ │ │ └── semver.js │ │ ├── functions │ │ │ ├── clean.js │ │ │ ├── cmp.js │ │ │ ├── coerce.js │ │ │ ├── compare-build.js │ │ │ ├── compare-loose.js │ │ │ ├── compare.js │ │ │ ├── diff.js │ │ │ ├── eq.js │ │ │ ├── gt.js │ │ │ ├── gte.js │ │ │ ├── inc.js │ │ │ ├── lt.js │ │ │ ├── lte.js │ │ │ ├── major.js │ │ │ ├── minor.js │ │ │ ├── neq.js │ │ │ ├── parse.js │ │ │ ├── patch.js │ │ │ ├── prerelease.js │ │ │ ├── rcompare.js │ │ │ ├── rsort.js │ │ │ ├── satisfies.js │ │ │ ├── sort.js │ │ │ └── valid.js │ │ ├── index.js │ │ ├── internal │ │ │ ├── constants.js │ │ │ ├── debug.js │ │ │ ├── identifiers.js │ │ │ ├── parse-options.js │ │ │ └── re.js │ │ ├── package.json │ │ ├── preload.js │ │ ├── range.bnf │ │ └── ranges │ │ │ ├── gtr.js │ │ │ ├── intersects.js │ │ │ ├── ltr.js │ │ │ ├── max-satisfying.js │ │ │ ├── min-satisfying.js │ │ │ ├── min-version.js │ │ │ ├── outside.js │ │ │ ├── simplify.js │ │ │ ├── subset.js │ │ │ ├── to-comparators.js │ │ │ └── valid.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── set-blocking │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── shebang-command │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── shebang-regex │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── side-channel │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── sift │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── es │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── es5m │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── core.d.ts │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── operations.d.ts │ │ │ └── utils.d.ts │ │ ├── package.json │ │ ├── sift.csp.min.js │ │ ├── sift.csp.min.js.map │ │ ├── sift.min.js │ │ ├── sift.min.js.map │ │ └── src │ │ │ ├── core.d.ts │ │ │ ├── core.js │ │ │ ├── core.js.map │ │ │ ├── core.ts │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── index.ts │ │ │ ├── operations.d.ts │ │ │ ├── operations.js │ │ │ ├── operations.js.map │ │ │ ├── operations.ts │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ ├── utils.js.map │ │ │ └── utils.ts │ ├── signal-exit │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── signals.js │ ├── sisteransi │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── src │ │ │ ├── index.js │ │ │ └── sisteransi.d.ts │ ├── slash │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── smart-buffer │ │ ├── .prettierrc.yaml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── smartbuffer.js │ │ │ ├── smartbuffer.js.map │ │ │ ├── utils.js │ │ │ └── utils.js.map │ │ ├── docs │ │ │ ├── CHANGELOG.md │ │ │ ├── README_v3.md │ │ │ └── ROADMAP.md │ │ ├── package.json │ │ └── typings │ │ │ ├── smartbuffer.d.ts │ │ │ └── utils.d.ts │ ├── socks │ │ ├── .eslintrc.cjs │ │ ├── .prettierrc.yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── client │ │ │ │ ├── socksclient.js │ │ │ │ └── socksclient.js.map │ │ │ ├── common │ │ │ │ ├── constants.js │ │ │ │ ├── constants.js.map │ │ │ │ ├── helpers.js │ │ │ │ ├── helpers.js.map │ │ │ │ ├── receivebuffer.js │ │ │ │ ├── receivebuffer.js.map │ │ │ │ ├── util.js │ │ │ │ └── util.js.map │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── docs │ │ │ ├── examples │ │ │ │ ├── index.md │ │ │ │ ├── javascript │ │ │ │ │ ├── associateExample.md │ │ │ │ │ ├── bindExample.md │ │ │ │ │ └── connectExample.md │ │ │ │ └── typescript │ │ │ │ │ ├── associateExample.md │ │ │ │ │ ├── bindExample.md │ │ │ │ │ └── connectExample.md │ │ │ ├── index.md │ │ │ └── migratingFromV1.md │ │ ├── package.json │ │ └── typings │ │ │ ├── client │ │ │ └── socksclient.d.ts │ │ │ ├── common │ │ │ ├── constants.d.ts │ │ │ ├── helpers.d.ts │ │ │ ├── receivebuffer.d.ts │ │ │ └── util.d.ts │ │ │ └── index.d.ts │ ├── source-map-support │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── browser-source-map-support.js │ │ ├── package.json │ │ ├── register-hook-require.js │ │ ├── register.js │ │ └── source-map-support.js │ ├── source-map │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── source-map.debug.js │ │ │ ├── source-map.js │ │ │ ├── source-map.min.js │ │ │ └── source-map.min.js.map │ │ ├── lib │ │ │ ├── array-set.js │ │ │ ├── base64-vlq.js │ │ │ ├── base64.js │ │ │ ├── binary-search.js │ │ │ ├── mapping-list.js │ │ │ ├── quick-sort.js │ │ │ ├── source-map-consumer.js │ │ │ ├── source-map-generator.js │ │ │ ├── source-node.js │ │ │ └── util.js │ │ ├── package.json │ │ ├── source-map.d.ts │ │ └── source-map.js │ ├── sparse-bitfield │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── split2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.js │ │ ├── index.js │ │ ├── package.json │ │ └── test.js │ ├── sprintf-js │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo │ │ │ └── angular.html │ │ ├── dist │ │ │ ├── angular-sprintf.min.js │ │ │ ├── angular-sprintf.min.js.map │ │ │ ├── angular-sprintf.min.map │ │ │ ├── sprintf.min.js │ │ │ ├── sprintf.min.js.map │ │ │ └── sprintf.min.map │ │ ├── gruntfile.js │ │ ├── package.json │ │ ├── src │ │ │ ├── angular-sprintf.js │ │ │ └── sprintf.js │ │ └── test │ │ │ └── test.js │ ├── stack-utils │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── string-length │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── string-width │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── string_decoder │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── string_decoder.js │ │ └── package.json │ ├── strip-ansi │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-bom │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-final-newline │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-json-comments │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── supports-color │ │ ├── browser.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── supports-hyperlinks │ │ ├── browser.js │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── supports-preserve-symlinks-flag │ │ ├── .eslintrc │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .nycrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── tar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── create.js │ │ │ ├── extract.js │ │ │ ├── get-write-flag.js │ │ │ ├── header.js │ │ │ ├── high-level-opt.js │ │ │ ├── large-numbers.js │ │ │ ├── list.js │ │ │ ├── mkdir.js │ │ │ ├── mode-fix.js │ │ │ ├── normalize-unicode.js │ │ │ ├── normalize-windows-path.js │ │ │ ├── pack.js │ │ │ ├── parse.js │ │ │ ├── path-reservations.js │ │ │ ├── pax.js │ │ │ ├── read-entry.js │ │ │ ├── replace.js │ │ │ ├── strip-absolute-path.js │ │ │ ├── strip-trailing-slashes.js │ │ │ ├── types.js │ │ │ ├── unpack.js │ │ │ ├── update.js │ │ │ ├── warn-mixin.js │ │ │ ├── winchars.js │ │ │ └── write-entry.js │ │ └── package.json │ ├── terminal-link │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── test-exclude │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ ├── is-outside-dir-posix.js │ │ ├── is-outside-dir-win32.js │ │ ├── is-outside-dir.js │ │ └── package.json │ ├── tmpl │ │ ├── lib │ │ │ └── tmpl.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── to-fast-properties │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── to-regex-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── toidentifier │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── tr46 │ │ ├── .npmignore │ │ ├── index.js │ │ ├── lib │ │ │ ├── .gitkeep │ │ │ └── mappingTable.json │ │ └── package.json │ ├── tree-kill │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── ts-jest │ │ ├── .ts-jest-digest │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── TROUBLESHOOTING.md │ │ ├── cli.js │ │ ├── dist │ │ │ ├── cli │ │ │ │ ├── config │ │ │ │ │ ├── init.d.ts │ │ │ │ │ ├── init.js │ │ │ │ │ ├── migrate.d.ts │ │ │ │ │ └── migrate.js │ │ │ │ ├── help.d.ts │ │ │ │ ├── help.js │ │ │ │ ├── helpers │ │ │ │ │ ├── presets.d.ts │ │ │ │ │ └── presets.js │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ ├── config │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── paths-to-module-name-mapper.d.ts │ │ │ │ └── paths-to-module-name-mapper.js │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── legacy │ │ │ │ ├── compiler │ │ │ │ │ ├── compiler-utils.d.ts │ │ │ │ │ ├── compiler-utils.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── ts-compiler.d.ts │ │ │ │ │ ├── ts-compiler.js │ │ │ │ │ ├── ts-jest-compiler.d.ts │ │ │ │ │ └── ts-jest-compiler.js │ │ │ │ ├── config │ │ │ │ │ ├── config-set.d.ts │ │ │ │ │ └── config-set.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── ts-jest-transformer.d.ts │ │ │ │ └── ts-jest-transformer.js │ │ │ ├── presets │ │ │ │ ├── create-jest-preset.d.ts │ │ │ │ └── create-jest-preset.js │ │ │ ├── raw-compiler-options.d.ts │ │ │ ├── raw-compiler-options.js │ │ │ ├── transformers │ │ │ │ ├── hoist-jest.d.ts │ │ │ │ └── hoist-jest.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ └── utils │ │ │ │ ├── backports.d.ts │ │ │ │ ├── backports.js │ │ │ │ ├── get-package-version.d.ts │ │ │ │ ├── get-package-version.js │ │ │ │ ├── importer.d.ts │ │ │ │ ├── importer.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── json.d.ts │ │ │ │ ├── json.js │ │ │ │ ├── jsonable-value.d.ts │ │ │ │ ├── jsonable-value.js │ │ │ │ ├── logger.d.ts │ │ │ │ ├── logger.js │ │ │ │ ├── memoize.d.ts │ │ │ │ ├── memoize.js │ │ │ │ ├── messages.d.ts │ │ │ │ ├── messages.js │ │ │ │ ├── normalize-slashes.d.ts │ │ │ │ ├── normalize-slashes.js │ │ │ │ ├── sha1.d.ts │ │ │ │ ├── sha1.js │ │ │ │ ├── ts-error.d.ts │ │ │ │ ├── ts-error.js │ │ │ │ ├── version-checkers.d.ts │ │ │ │ └── version-checkers.js │ │ ├── globals.d.ts │ │ ├── jest-preset.js │ │ ├── legacy.js │ │ ├── package.json │ │ ├── preprocessor.js │ │ └── presets │ │ │ ├── default-esm-legacy │ │ │ └── jest-preset.js │ │ │ ├── default-esm │ │ │ └── jest-preset.js │ │ │ ├── default-legacy │ │ │ └── jest-preset.js │ │ │ ├── default │ │ │ └── jest-preset.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── js-with-babel-esm-legacy │ │ │ └── jest-preset.js │ │ │ ├── js-with-babel-esm │ │ │ └── jest-preset.js │ │ │ ├── js-with-babel-legacy │ │ │ └── jest-preset.js │ │ │ ├── js-with-babel │ │ │ └── jest-preset.js │ │ │ ├── js-with-ts-esm-legacy │ │ │ └── jest-preset.js │ │ │ ├── js-with-ts-esm │ │ │ └── jest-preset.js │ │ │ ├── js-with-ts-legacy │ │ │ └── jest-preset.js │ │ │ └── js-with-ts │ │ │ └── jest-preset.js │ ├── ts-node-dev │ │ ├── LICENSE │ │ ├── README.md │ │ ├── icons │ │ │ ├── node_error.png │ │ │ └── node_info.png │ │ ├── lib │ │ │ ├── bin.js │ │ │ ├── cfg.js │ │ │ ├── check-file-exists.js │ │ │ ├── child-require-hook.js │ │ │ ├── compiler.js │ │ │ ├── dedupe.js │ │ │ ├── get-compiled-path.js │ │ │ ├── get-cwd.js │ │ │ ├── hook.js │ │ │ ├── index.js │ │ │ ├── ipc.js │ │ │ ├── log.js │ │ │ ├── notify.js │ │ │ ├── resolveMain.js │ │ │ └── wrap.js │ │ └── package.json │ ├── ts-node │ │ ├── LICENSE │ │ ├── README.md │ │ ├── child-loader.mjs │ │ ├── dist-raw │ │ │ ├── NODE-LICENSE.md │ │ │ ├── README.md │ │ │ ├── node-internal-constants.js │ │ │ ├── node-internal-errors.js │ │ │ ├── node-internal-modules-cjs-helpers.js │ │ │ ├── node-internal-modules-cjs-loader.js │ │ │ ├── node-internal-modules-esm-get_format.js │ │ │ ├── node-internal-modules-esm-resolve.js │ │ │ ├── node-internal-modules-package_json_reader.js │ │ │ ├── node-internal-repl-await.js │ │ │ ├── node-internalBinding-fs.js │ │ │ ├── node-nativemodule.js │ │ │ ├── node-options.js │ │ │ ├── node-primordials.js │ │ │ └── runmain-hack.js │ │ ├── dist │ │ │ ├── bin-cwd.d.ts │ │ │ ├── bin-cwd.js │ │ │ ├── bin-cwd.js.map │ │ │ ├── bin-esm.d.ts │ │ │ ├── bin-esm.js │ │ │ ├── bin-esm.js.map │ │ │ ├── bin-script-deprecated.d.ts │ │ │ ├── bin-script-deprecated.js │ │ │ ├── bin-script-deprecated.js.map │ │ │ ├── bin-script.d.ts │ │ │ ├── bin-script.js │ │ │ ├── bin-script.js.map │ │ │ ├── bin-transpile.d.ts │ │ │ ├── bin-transpile.js │ │ │ ├── bin-transpile.js.map │ │ │ ├── bin.d.ts │ │ │ ├── bin.js │ │ │ ├── bin.js.map │ │ │ ├── child │ │ │ │ ├── argv-payload.d.ts │ │ │ │ ├── argv-payload.js │ │ │ │ ├── argv-payload.js.map │ │ │ │ ├── child-entrypoint.d.ts │ │ │ │ ├── child-entrypoint.js │ │ │ │ ├── child-entrypoint.js.map │ │ │ │ ├── child-loader.d.ts │ │ │ │ ├── child-loader.js │ │ │ │ ├── child-loader.js.map │ │ │ │ ├── child-require.d.ts │ │ │ │ ├── child-require.js │ │ │ │ ├── child-require.js.map │ │ │ │ ├── spawn-child.d.ts │ │ │ │ ├── spawn-child.js │ │ │ │ └── spawn-child.js.map │ │ │ ├── cjs-resolve-hooks.d.ts │ │ │ ├── cjs-resolve-hooks.js │ │ │ ├── cjs-resolve-hooks.js.map │ │ │ ├── configuration.d.ts │ │ │ ├── configuration.js │ │ │ ├── configuration.js.map │ │ │ ├── esm.d.ts │ │ │ ├── esm.js │ │ │ ├── esm.js.map │ │ │ ├── file-extensions.d.ts │ │ │ ├── file-extensions.js │ │ │ ├── file-extensions.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── module-type-classifier.d.ts │ │ │ ├── module-type-classifier.js │ │ │ ├── module-type-classifier.js.map │ │ │ ├── node-module-type-classifier.d.ts │ │ │ ├── node-module-type-classifier.js │ │ │ ├── node-module-type-classifier.js.map │ │ │ ├── repl.d.ts │ │ │ ├── repl.js │ │ │ ├── repl.js.map │ │ │ ├── resolver-functions.d.ts │ │ │ ├── resolver-functions.js │ │ │ ├── resolver-functions.js.map │ │ │ ├── transpilers │ │ │ │ ├── swc.d.ts │ │ │ │ ├── swc.js │ │ │ │ ├── swc.js.map │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ └── types.js.map │ │ │ ├── ts-compiler-types.d.ts │ │ │ ├── ts-compiler-types.js │ │ │ ├── ts-compiler-types.js.map │ │ │ ├── ts-internals.d.ts │ │ │ ├── ts-internals.js │ │ │ ├── ts-internals.js.map │ │ │ ├── ts-transpile-module.d.ts │ │ │ ├── ts-transpile-module.js │ │ │ ├── ts-transpile-module.js.map │ │ │ ├── tsconfig-schema.d.ts │ │ │ ├── tsconfig-schema.js │ │ │ ├── tsconfig-schema.js.map │ │ │ ├── tsconfigs.d.ts │ │ │ ├── tsconfigs.js │ │ │ ├── tsconfigs.js.map │ │ │ ├── util.d.ts │ │ │ ├── util.js │ │ │ └── util.js.map │ │ ├── esm.mjs │ │ ├── esm │ │ │ └── transpile-only.mjs │ │ ├── node10 │ │ │ └── tsconfig.json │ │ ├── node12 │ │ │ └── tsconfig.json │ │ ├── node14 │ │ │ └── tsconfig.json │ │ ├── node16 │ │ │ └── tsconfig.json │ │ ├── package.json │ │ ├── register │ │ │ ├── files.js │ │ │ ├── index.js │ │ │ ├── transpile-only.js │ │ │ └── type-check.js │ │ ├── transpilers │ │ │ ├── swc-experimental.js │ │ │ └── swc.js │ │ ├── tsconfig.schema.json │ │ └── tsconfig.schemastore-schema.json │ ├── tsconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── tsconfig.d.ts │ │ │ ├── tsconfig.js │ │ │ ├── tsconfig.js.map │ │ │ ├── tsconfig.spec.d.ts │ │ │ ├── tsconfig.spec.js │ │ │ └── tsconfig.spec.js.map │ │ └── package.json │ ├── type-detect │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── type-detect.js │ ├── type-fest │ │ ├── base.d.ts │ │ ├── index.d.ts │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ ├── source │ │ │ ├── async-return-type.d.ts │ │ │ ├── asyncify.d.ts │ │ │ ├── basic.d.ts │ │ │ ├── conditional-except.d.ts │ │ │ ├── conditional-keys.d.ts │ │ │ ├── conditional-pick.d.ts │ │ │ ├── entries.d.ts │ │ │ ├── entry.d.ts │ │ │ ├── except.d.ts │ │ │ ├── fixed-length-array.d.ts │ │ │ ├── iterable-element.d.ts │ │ │ ├── literal-union.d.ts │ │ │ ├── merge-exclusive.d.ts │ │ │ ├── merge.d.ts │ │ │ ├── mutable.d.ts │ │ │ ├── opaque.d.ts │ │ │ ├── package-json.d.ts │ │ │ ├── partial-deep.d.ts │ │ │ ├── promisable.d.ts │ │ │ ├── promise-value.d.ts │ │ │ ├── readonly-deep.d.ts │ │ │ ├── require-at-least-one.d.ts │ │ │ ├── require-exactly-one.d.ts │ │ │ ├── set-optional.d.ts │ │ │ ├── set-required.d.ts │ │ │ ├── set-return-type.d.ts │ │ │ ├── simplify.d.ts │ │ │ ├── stringified.d.ts │ │ │ ├── tsconfig-json.d.ts │ │ │ ├── typed-array.d.ts │ │ │ ├── union-to-intersection.d.ts │ │ │ ├── utilities.d.ts │ │ │ └── value-of.d.ts │ │ └── ts41 │ │ │ ├── camel-case.d.ts │ │ │ ├── delimiter-case.d.ts │ │ │ ├── get.d.ts │ │ │ ├── index.d.ts │ │ │ ├── kebab-case.d.ts │ │ │ ├── pascal-case.d.ts │ │ │ ├── snake-case.d.ts │ │ │ └── utilities.d.ts │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── typescript │ │ ├── AUTHORS.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CopyrightNotice.txt │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ThirdPartyNoticeText.txt │ │ ├── bin │ │ │ ├── tsc │ │ │ └── tsserver │ │ ├── lib │ │ │ ├── README.md │ │ │ ├── cancellationToken.js │ │ │ ├── cs │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── de │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── dynamicImportCompat.js │ │ │ ├── es │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── fr │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── it │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── ja │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── ko │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── lib.d.ts │ │ │ ├── lib.dom.d.ts │ │ │ ├── lib.dom.iterable.d.ts │ │ │ ├── lib.es2015.collection.d.ts │ │ │ ├── lib.es2015.core.d.ts │ │ │ ├── lib.es2015.d.ts │ │ │ ├── lib.es2015.generator.d.ts │ │ │ ├── lib.es2015.iterable.d.ts │ │ │ ├── lib.es2015.promise.d.ts │ │ │ ├── lib.es2015.proxy.d.ts │ │ │ ├── lib.es2015.reflect.d.ts │ │ │ ├── lib.es2015.symbol.d.ts │ │ │ ├── lib.es2015.symbol.wellknown.d.ts │ │ │ ├── lib.es2016.array.include.d.ts │ │ │ ├── lib.es2016.d.ts │ │ │ ├── lib.es2016.full.d.ts │ │ │ ├── lib.es2017.d.ts │ │ │ ├── lib.es2017.full.d.ts │ │ │ ├── lib.es2017.intl.d.ts │ │ │ ├── lib.es2017.object.d.ts │ │ │ ├── lib.es2017.sharedmemory.d.ts │ │ │ ├── lib.es2017.string.d.ts │ │ │ ├── lib.es2017.typedarrays.d.ts │ │ │ ├── lib.es2018.asyncgenerator.d.ts │ │ │ ├── lib.es2018.asynciterable.d.ts │ │ │ ├── lib.es2018.d.ts │ │ │ ├── lib.es2018.full.d.ts │ │ │ ├── lib.es2018.intl.d.ts │ │ │ ├── lib.es2018.promise.d.ts │ │ │ ├── lib.es2018.regexp.d.ts │ │ │ ├── lib.es2019.array.d.ts │ │ │ ├── lib.es2019.d.ts │ │ │ ├── lib.es2019.full.d.ts │ │ │ ├── lib.es2019.object.d.ts │ │ │ ├── lib.es2019.string.d.ts │ │ │ ├── lib.es2019.symbol.d.ts │ │ │ ├── lib.es2020.bigint.d.ts │ │ │ ├── lib.es2020.d.ts │ │ │ ├── lib.es2020.date.d.ts │ │ │ ├── lib.es2020.full.d.ts │ │ │ ├── lib.es2020.intl.d.ts │ │ │ ├── lib.es2020.number.d.ts │ │ │ ├── lib.es2020.promise.d.ts │ │ │ ├── lib.es2020.sharedmemory.d.ts │ │ │ ├── lib.es2020.string.d.ts │ │ │ ├── lib.es2020.symbol.wellknown.d.ts │ │ │ ├── lib.es2021.d.ts │ │ │ ├── lib.es2021.full.d.ts │ │ │ ├── lib.es2021.intl.d.ts │ │ │ ├── lib.es2021.promise.d.ts │ │ │ ├── lib.es2021.string.d.ts │ │ │ ├── lib.es2021.weakref.d.ts │ │ │ ├── lib.es2022.array.d.ts │ │ │ ├── lib.es2022.d.ts │ │ │ ├── lib.es2022.error.d.ts │ │ │ ├── lib.es2022.full.d.ts │ │ │ ├── lib.es2022.intl.d.ts │ │ │ ├── lib.es2022.object.d.ts │ │ │ ├── lib.es2022.sharedmemory.d.ts │ │ │ ├── lib.es2022.string.d.ts │ │ │ ├── lib.es5.d.ts │ │ │ ├── lib.es6.d.ts │ │ │ ├── lib.esnext.d.ts │ │ │ ├── lib.esnext.full.d.ts │ │ │ ├── lib.esnext.intl.d.ts │ │ │ ├── lib.esnext.promise.d.ts │ │ │ ├── lib.esnext.string.d.ts │ │ │ ├── lib.esnext.weakref.d.ts │ │ │ ├── lib.scripthost.d.ts │ │ │ ├── lib.webworker.d.ts │ │ │ ├── lib.webworker.importscripts.d.ts │ │ │ ├── lib.webworker.iterable.d.ts │ │ │ ├── pl │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── protocol.d.ts │ │ │ ├── pt-br │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── ru │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── tr │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── tsc.js │ │ │ ├── tsserver.js │ │ │ ├── tsserverlibrary.d.ts │ │ │ ├── tsserverlibrary.js │ │ │ ├── typesMap.json │ │ │ ├── typescript.d.ts │ │ │ ├── typescript.js │ │ │ ├── typescriptServices.d.ts │ │ │ ├── typescriptServices.js │ │ │ ├── typingsInstaller.js │ │ │ ├── watchGuard.js │ │ │ ├── zh-cn │ │ │ │ └── diagnosticMessages.generated.json │ │ │ └── zh-tw │ │ │ │ └── diagnosticMessages.generated.json │ │ ├── loc │ │ │ └── lcl │ │ │ │ ├── CHS │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── CHT │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── CSY │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── DEU │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── ESN │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── FRA │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── ITA │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── JPN │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── KOR │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── PLK │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── PTB │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ ├── RUS │ │ │ │ ├── Targets │ │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ │ │ └── TRK │ │ │ │ ├── Targets │ │ │ │ ├── ProjectItemsSchema.xaml.lcl │ │ │ │ ├── TypeScriptCompile.xaml.lcl │ │ │ │ └── TypeScriptProjectProperties.xaml.lcl │ │ │ │ ├── TypeScriptDebugEngine │ │ │ │ └── TypeScriptDebugEngine.dll.lcl │ │ │ │ ├── TypeScriptLanguageService │ │ │ │ └── Microsoft.CodeAnalysis.TypeScript.EditorFeatures.dll.lcl │ │ │ │ └── TypeScriptTasks │ │ │ │ └── TypeScript.Tasks.dll.lcl │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── update-browserslist-db │ │ ├── LICENSE │ │ ├── README.md │ │ ├── check-npm-version.js │ │ ├── cli.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── util-deprecate │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.js │ │ ├── node.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── uuid │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ ├── bin │ │ │ │ └── uuid │ │ │ ├── esm-browser │ │ │ │ ├── index.js │ │ │ │ ├── md5.js │ │ │ │ ├── nil.js │ │ │ │ ├── parse.js │ │ │ │ ├── regex.js │ │ │ │ ├── rng.js │ │ │ │ ├── sha1.js │ │ │ │ ├── stringify.js │ │ │ │ ├── v1.js │ │ │ │ ├── v3.js │ │ │ │ ├── v35.js │ │ │ │ ├── v4.js │ │ │ │ ├── v5.js │ │ │ │ ├── validate.js │ │ │ │ └── version.js │ │ │ ├── esm-node │ │ │ │ ├── index.js │ │ │ │ ├── md5.js │ │ │ │ ├── nil.js │ │ │ │ ├── parse.js │ │ │ │ ├── regex.js │ │ │ │ ├── rng.js │ │ │ │ ├── sha1.js │ │ │ │ ├── stringify.js │ │ │ │ ├── v1.js │ │ │ │ ├── v3.js │ │ │ │ ├── v35.js │ │ │ │ ├── v4.js │ │ │ │ ├── v5.js │ │ │ │ ├── validate.js │ │ │ │ └── version.js │ │ │ ├── index.js │ │ │ ├── md5-browser.js │ │ │ ├── md5.js │ │ │ ├── nil.js │ │ │ ├── parse.js │ │ │ ├── regex.js │ │ │ ├── rng-browser.js │ │ │ ├── rng.js │ │ │ ├── sha1-browser.js │ │ │ ├── sha1.js │ │ │ ├── stringify.js │ │ │ ├── umd │ │ │ │ ├── uuid.min.js │ │ │ │ ├── uuidNIL.min.js │ │ │ │ ├── uuidParse.min.js │ │ │ │ ├── uuidStringify.min.js │ │ │ │ ├── uuidValidate.min.js │ │ │ │ ├── uuidVersion.min.js │ │ │ │ ├── uuidv1.min.js │ │ │ │ ├── uuidv3.min.js │ │ │ │ ├── uuidv4.min.js │ │ │ │ └── uuidv5.min.js │ │ │ ├── uuid-bin.js │ │ │ ├── v1.js │ │ │ ├── v3.js │ │ │ ├── v35.js │ │ │ ├── v4.js │ │ │ ├── v5.js │ │ │ ├── validate.js │ │ │ └── version.js │ │ ├── package.json │ │ └── wrapper.mjs │ ├── v8-compile-cache-lib │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── v8-compile-cache.d.ts │ │ └── v8-compile-cache.js │ ├── v8-to-istanbul │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── branch.js │ │ │ ├── function.js │ │ │ ├── line.js │ │ │ ├── range.js │ │ │ ├── source.js │ │ │ └── v8-to-istanbul.js │ │ ├── node_modules │ │ │ └── @jridgewell │ │ │ │ └── trace-mapping │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── trace-mapping.mjs │ │ │ │ ├── trace-mapping.mjs.map │ │ │ │ ├── trace-mapping.umd.js │ │ │ │ ├── trace-mapping.umd.js.map │ │ │ │ └── types │ │ │ │ │ ├── any-map.d.ts │ │ │ │ │ ├── binary-search.d.ts │ │ │ │ │ ├── by-source.d.ts │ │ │ │ │ ├── resolve.d.ts │ │ │ │ │ ├── sort.d.ts │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ ├── strip-filename.d.ts │ │ │ │ │ ├── trace-mapping.d.ts │ │ │ │ │ └── types.d.ts │ │ │ │ └── package.json │ │ └── package.json │ ├── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── walker │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── lib │ │ │ └── walker.js │ │ ├── package.json │ │ └── readme.md │ ├── webidl-conversions │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── whatwg-url │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── lib │ │ │ ├── URL-impl.js │ │ │ ├── URL.js │ │ │ ├── public-api.js │ │ │ ├── url-state-machine.js │ │ │ └── utils.js │ │ └── package.json │ ├── which │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── node-which │ │ ├── package.json │ │ └── which.js │ ├── wide-align │ │ ├── LICENSE │ │ ├── README.md │ │ ├── align.js │ │ └── package.json │ ├── wrap-ansi │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── wrappy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── wrappy.js │ ├── write-file-atomic │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── xtend │ │ ├── .jshintrc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── immutable.js │ │ ├── mutable.js │ │ ├── package.json │ │ └── test.js │ ├── y18n │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.cjs │ │ │ └── lib │ │ │ │ ├── cjs.js │ │ │ │ ├── index.js │ │ │ │ └── platform-shims │ │ │ │ └── node.js │ │ ├── index.mjs │ │ └── package.json │ ├── yallist │ │ ├── LICENSE │ │ ├── README.md │ │ ├── iterator.js │ │ ├── package.json │ │ └── yallist.js │ ├── yargs-parser │ │ ├── CHANGELOG.md │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── browser.js │ │ ├── build │ │ │ ├── index.cjs │ │ │ └── lib │ │ │ │ ├── index.js │ │ │ │ ├── string-utils.js │ │ │ │ ├── tokenize-arg-string.js │ │ │ │ ├── yargs-parser-types.js │ │ │ │ └── yargs-parser.js │ │ └── package.json │ ├── yargs │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser.mjs │ │ ├── build │ │ │ ├── index.cjs │ │ │ └── lib │ │ │ │ ├── argsert.js │ │ │ │ ├── command.js │ │ │ │ ├── completion-templates.js │ │ │ │ ├── completion.js │ │ │ │ ├── middleware.js │ │ │ │ ├── parse-command.js │ │ │ │ ├── typings │ │ │ │ ├── common-types.js │ │ │ │ └── yargs-parser-types.js │ │ │ │ ├── usage.js │ │ │ │ ├── utils │ │ │ │ ├── apply-extends.js │ │ │ │ ├── is-promise.js │ │ │ │ ├── levenshtein.js │ │ │ │ ├── maybe-async-result.js │ │ │ │ ├── obj-filter.js │ │ │ │ ├── process-argv.js │ │ │ │ ├── set-blocking.js │ │ │ │ └── which-module.js │ │ │ │ ├── validation.js │ │ │ │ ├── yargs-factory.js │ │ │ │ └── yerror.js │ │ ├── helpers │ │ │ ├── helpers.mjs │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── index.cjs │ │ ├── index.mjs │ │ ├── lib │ │ │ └── platform-shims │ │ │ │ ├── browser.mjs │ │ │ │ └── esm.mjs │ │ ├── locales │ │ │ ├── be.json │ │ │ ├── de.json │ │ │ ├── en.json │ │ │ ├── es.json │ │ │ ├── fi.json │ │ │ ├── fr.json │ │ │ ├── hi.json │ │ │ ├── hu.json │ │ │ ├── id.json │ │ │ ├── it.json │ │ │ ├── ja.json │ │ │ ├── ko.json │ │ │ ├── nb.json │ │ │ ├── nl.json │ │ │ ├── nn.json │ │ │ ├── pirate.json │ │ │ ├── pl.json │ │ │ ├── pt.json │ │ │ ├── pt_BR.json │ │ │ ├── ru.json │ │ │ ├── th.json │ │ │ ├── tr.json │ │ │ ├── uk_UA.json │ │ │ ├── uz.json │ │ │ ├── zh_CN.json │ │ │ └── zh_TW.json │ │ ├── package.json │ │ ├── yargs │ │ └── yargs.mjs │ ├── yn │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lenient.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ └── yocto-queue │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md ├── package-lock.json ├── package.json ├── src │ ├── admin-interactions │ │ └── admin-panel-interacion.ts │ ├── email-interactions │ │ └── email-use-case.ts │ ├── index.ts │ ├── purchase-interactions │ │ └── purchase-use-case.ts │ ├── routes.ts │ └── user-interactions │ │ ├── hash-interaction.ts │ │ └── user-use-case.ts └── tsconfig.json ├── README.md ├── api ├── index.php ├── interactions │ ├── create-feedback-interaction.php │ ├── delete-feedback-interaction.php │ ├── select-feedback-interaction.php │ └── update-feedback-interaction.php └── utils │ └── connection.php ├── package.json ├── postcss.config.js ├── public ├── cardsList.json ├── img │ ├── Goldies.png │ ├── logo2.png │ ├── vigvam00.jpg │ ├── vigvam1.jpeg │ ├── vigvam1.jpg │ ├── vigvam10.jpg │ ├── vigvam10.png │ ├── vigvam11.jfif │ ├── vigvam11.jpg │ ├── vigvam12.jfif │ ├── vigvam12.jpg │ ├── vigvam13.jpg │ ├── vigvam14.jpg │ ├── vigvam15.jpeg │ ├── vigvam16.jfif │ ├── vigvam16.jpeg │ ├── vigvam3.jfif │ ├── vigvam3.jpg │ ├── vigvam4.jpg │ ├── vigvam5.jpg │ ├── vigvam6.jfif │ ├── vigvam6.jpg │ ├── vigvam7.jpeg │ ├── vigvam7.jpg │ ├── vigvam8.jpg │ └── vigvam9.jpg ├── index.html └── promocodesList.json ├── src ├── App │ ├── App.jsx │ └── App.module.scss ├── api │ ├── getCardsList.js │ └── getPromocodesList.js ├── components │ ├── Button │ │ ├── Button.jsx │ │ ├── Button.module.scss │ │ └── Button.test.js │ ├── Card │ │ ├── Card.jsx │ │ ├── Card.module.scss │ │ └── FavouriteIcon.jsx │ ├── CardInCart │ │ ├── CardInCart.jsx │ │ ├── CardInCart.module.scss │ │ └── TrashIcon.jsx │ ├── CardsList │ │ ├── CardsList.jsx │ │ └── CardsList.module.scss │ ├── CartForm │ │ ├── BasicFormSchema.js │ │ ├── CartForm.jsx │ │ ├── CartForm.module.scss │ │ ├── cardFormDataFields.js │ │ ├── formDataFields.js │ │ └── formFields │ │ │ ├── FormikInputBlock.jsx │ │ │ └── NumberFormatInputBlock.jsx │ ├── CartList │ │ ├── CartList.jsx │ │ └── CartList.module.scss │ ├── CheckoutList │ │ ├── CheckoutList.jsx │ │ └── CheckoutList.module.scss │ ├── Error │ │ ├── Error.jsx │ │ ├── Error.module.scss │ │ ├── error.jpeg │ │ ├── korgi-rbg.png │ │ └── korgi.jpeg │ ├── Feedback.jsx │ ├── Footer │ │ └── Footer.jsx │ ├── Header │ │ ├── Header.jsx │ │ └── Header.module.scss │ ├── HeroHome.jsx │ ├── Loader │ │ └── Loader.jsx │ ├── Modal │ │ ├── ModalRoot.jsx │ │ ├── addToCartModal │ │ │ └── AddToCartModal.jsx │ │ ├── basicModal │ │ │ ├── Modal.jsx │ │ │ ├── Modal.module.scss │ │ │ ├── Modal.test.js │ │ │ ├── closeBtn.svg │ │ │ └── createModalButtons.jsx │ │ ├── deleteFromCartModal │ │ │ └── DeleteFromCartModal.jsx │ │ └── orderModal │ │ │ ├── CheckoutIcon.jsx │ │ │ ├── OrderModal.jsx │ │ │ └── OrderModal.module.scss │ └── OrderTotals │ │ ├── OrderTotals.jsx │ │ └── OrderTotals.module.scss ├── css │ ├── additional-styles │ │ ├── range-slider.css │ │ ├── theme.css │ │ ├── toggle-switch.css │ │ └── utility-patterns.css │ ├── style.css │ └── tailwind.config.js ├── fonts │ └── Alumatica-Regular.woff2 ├── helpers │ ├── countSubtotal.js │ └── countTotalWithDiscount.js ├── i18n │ ├── index.js │ └── translations │ │ ├── en-US.json │ │ └── pt-BR.json ├── images │ ├── Goldies.png │ ├── encontro-com-radio.jpg │ └── hero-image.png ├── index.css ├── index.jsx ├── localAssets │ ├── brazil.png │ └── eua.png ├── pages │ ├── AdminPage.jsx │ ├── Cart │ │ ├── Cart.jsx │ │ ├── Cart.module.scss │ │ ├── DogIcon.jsx │ │ └── DogIcon.scss │ ├── Catalog.jsx │ ├── Favourites │ │ ├── Favourites.jsx │ │ └── Favourites.module.scss │ ├── Home.jsx │ ├── ListaDeDesejos.jsx │ ├── Menu.jsx │ ├── Payment.jsx │ ├── Promocoes.jsx │ ├── ResetPassword.jsx │ ├── SignIn.jsx │ ├── SignInAdmin.jsx │ ├── SignUp.jsx │ └── WishList │ │ ├── WishList.jsx │ │ └── WishList.module.scss ├── store │ ├── cards │ │ ├── actions.js │ │ ├── reducer.js │ │ └── types.js │ ├── cart │ │ ├── actions.js │ │ ├── reducer.js │ │ └── types.js │ ├── currentCardArticul │ │ ├── actions.js │ │ ├── reducer.js │ │ └── types.js │ ├── favourites │ │ ├── actions.js │ │ ├── reducer.js │ │ └── types.js │ ├── modal │ │ ├── actions.js │ │ ├── reducer.js │ │ └── types.js │ ├── store.js │ └── wishlist │ │ ├── actions.js │ │ ├── reducer.js │ │ └── types.js └── utils │ ├── Dropdown.jsx │ ├── Flag.jsx │ ├── Hamburguer.jsx │ ├── I18n.jsx │ ├── Modal.jsx │ ├── Popover.jsx │ ├── Sidebar.jsx │ ├── ToggleButton.jsx │ ├── Transition.jsx │ ├── UseDarkMode.jsx │ └── apiConn.js └── tailwind.config.js /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /Back-end/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/.env -------------------------------------------------------------------------------- /Back-end/.gitignore: -------------------------------------------------------------------------------- 1 | ".env" 2 | -------------------------------------------------------------------------------- /Back-end/coverage/clover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/coverage/clover.xml -------------------------------------------------------------------------------- /Back-end/coverage/coverage-final.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /Back-end/coverage/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/coverage/lcov-report/base.css -------------------------------------------------------------------------------- /Back-end/coverage/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/coverage/lcov-report/index.html -------------------------------------------------------------------------------- /Back-end/coverage/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/coverage/lcov-report/sorter.js -------------------------------------------------------------------------------- /Back-end/coverage/lcov.info: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/jest.config.ts -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/acorn.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/acorn.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/acorn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/acorn.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/browserslist -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/color-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/color-support -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/esparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/esparse -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/esparse.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/esparse.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/esparse.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/esparse.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/esvalidate -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/jest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/jest -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/jest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/jest.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/jest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/jest.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/js-yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/js-yaml -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/js-yaml.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/js-yaml.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/js-yaml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/js-yaml.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/jsesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/jsesc -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/jsesc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/jsesc.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/jsesc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/jsesc.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/json5 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/json5.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/json5.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/json5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/json5.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/mime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/mime.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/mkdirp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/mkdirp.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/mkdirp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/mkdirp.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/node-pre-gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/node-pre-gyp -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/node-which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/node-which -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/nopt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/nopt -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/nopt.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/nopt.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/nopt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/nopt.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/parser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/parser -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/parser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/parser.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/parser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/parser.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/resolve.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/resolve.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/resolve.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/resolve.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/rimraf.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/rimraf.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/rimraf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/rimraf.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/semver -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/semver.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/semver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/semver.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tree-kill.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tree-kill.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tree-kill.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tree-kill.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-jest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-jest -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-jest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-jest.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-jest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-jest.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-node.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-node.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-node.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-node.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-script.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-script.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/ts-script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/ts-script.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tsc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tsc.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tsc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tsc.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tsnd.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tsnd.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tsnd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tsnd.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tsserver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tsserver.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/tsserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/tsserver.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/uuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/uuid -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/uuid.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/uuid.cmd -------------------------------------------------------------------------------- /Back-end/node_modules/.bin/uuid.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.bin/uuid.ps1 -------------------------------------------------------------------------------- /Back-end/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/.package-lock.json -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/compat-data/corejs2-built-ins.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./data/corejs2-built-ins.json"); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/compat-data/overlapping-plugins.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./data/overlapping-plugins.json"); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/compat-data/plugin-bugfixes.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./data/plugin-bugfixes.json"); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/compat-data/plugins.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./data/plugins.json"); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/core/lib/config/cache-contexts.js: -------------------------------------------------------------------------------- 1 | 0 && 0; 2 | 3 | //# sourceMappingURL=cache-contexts.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/core/lib/config/files/types.js: -------------------------------------------------------------------------------- 1 | 0 && 0; 2 | 3 | //# sourceMappingURL=types.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/helper-compilation-targets/lib/types.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | //# sourceMappingURL=types.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/helpers/scripts/package.json: -------------------------------------------------------------------------------- 1 | { "type": "module" } 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/plugin-syntax-typescript/test/fixtures/disallow-jsx-ambiguity/type-assertion/input.ts: -------------------------------------------------------------------------------- 1 | x; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/plugin-syntax-typescript/test/package.json: -------------------------------------------------------------------------------- 1 | { "type": "module" } 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/traverse/lib/path/generated/asserts.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | //# sourceMappingURL=asserts.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/traverse/lib/path/generated/validators.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | //# sourceMappingURL=validators.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/traverse/lib/types.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | //# sourceMappingURL=types.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/traverse/scripts/package.json: -------------------------------------------------------------------------------- 1 | { "type": "module" } 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/types/lib/ast-types/generated/index.js: -------------------------------------------------------------------------------- 1 | 2 | 3 | //# sourceMappingURL=index.js.map 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/@babel/types/scripts/package.json: -------------------------------------------------------------------------------- 1 | { "type": "module" } 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@cspotcode/source-map-support/register.js: -------------------------------------------------------------------------------- 1 | require('./').install(); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/console/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/core/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/@jest/core/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/core/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/environment/build/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/expect-utils/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/expect/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/reporters/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/source-map/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/test-result/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/transform/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/types/build/Circus.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/types/build/Config.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/types/build/Global.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/types/build/TestResult.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/types/build/Transform.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@jest/types/build/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@mapbox/node-pre-gyp/bin/node-pre-gyp: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | 4 | require('../lib/main'); 5 | -------------------------------------------------------------------------------- /Back-end/node_modules/@sinclair/typebox/errors/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './errors'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@sinclair/typebox/format/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './format'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@sinclair/typebox/guard/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './guard'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/@types/pg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/@types/pg/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/@types/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/@types/qs/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/@types/yargs/helpers.d.mts: -------------------------------------------------------------------------------- 1 | export * from "./helpers.js"; -------------------------------------------------------------------------------- /Back-end/node_modules/abbrev/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/abbrev/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/abbrev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/abbrev/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/abbrev/abbrev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/abbrev/abbrev.js -------------------------------------------------------------------------------- /Back-end/node_modules/accepts/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/accepts/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/accepts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/accepts/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/accepts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/accepts/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/accepts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/accepts/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/acorn-walk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn-walk/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/acorn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn/CHANGELOG.md -------------------------------------------------------------------------------- /Back-end/node_modules/acorn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/acorn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/acorn/bin/acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn/bin/acorn -------------------------------------------------------------------------------- /Back-end/node_modules/acorn/dist/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn/dist/bin.js -------------------------------------------------------------------------------- /Back-end/node_modules/acorn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/acorn/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/ansi-regex/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ansi-regex/license -------------------------------------------------------------------------------- /Back-end/node_modules/anymatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/anymatch/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/anymatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/anymatch/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/anymatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/anymatch/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/aproba/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/aproba/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/aproba/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/aproba/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/aproba/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/aproba/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/arg/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/arg/LICENSE.md -------------------------------------------------------------------------------- /Back-end/node_modules/arg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/arg/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/arg/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/arg/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/arg/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/arg/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/arg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/arg/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/argon2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argon2/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/argon2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argon2/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/argon2/argon2.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argon2/argon2.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/argon2/argon2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argon2/argon2.js -------------------------------------------------------------------------------- /Back-end/node_modules/argon2/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argon2/binding.gyp -------------------------------------------------------------------------------- /Back-end/node_modules/argparse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argparse/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/argparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/argparse/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/argparse/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/argparse'); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/axios/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/CHANGELOG.md -------------------------------------------------------------------------------- /Back-end/node_modules/axios/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/axios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/axios/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/SECURITY.md -------------------------------------------------------------------------------- /Back-end/node_modules/axios/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/axios/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/axios'); -------------------------------------------------------------------------------- /Back-end/node_modules/axios/lib/axios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/lib/axios.js -------------------------------------------------------------------------------- /Back-end/node_modules/axios/lib/env/data.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | "version": "0.26.1" 3 | }; -------------------------------------------------------------------------------- /Back-end/node_modules/axios/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/lib/utils.js -------------------------------------------------------------------------------- /Back-end/node_modules/axios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/axios/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/axios/tslint.json -------------------------------------------------------------------------------- /Back-end/node_modules/babel-jest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/babel-jest/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/base64-js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/base64-js/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/base64-js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/base64-js/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/.travis.yml -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/Makefile -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/SECURITY.md -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/bcrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/bcrypt.js -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/binding.gyp -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/node_modules/node-addon-api/nothing.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/bcrypt/promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bcrypt/promises.js -------------------------------------------------------------------------------- /Back-end/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/braces/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/braces/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/braces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/braces/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/braces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/braces/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/bs-logger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bs-logger/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/bser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bser/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/bser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bser/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/bser/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bser/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/bson/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/LICENSE.md -------------------------------------------------------------------------------- /Back-end/node_modules/bson/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/bson/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/bower.json -------------------------------------------------------------------------------- /Back-end/node_modules/bson/bson.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/bson.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/binary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/binary.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/bson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/bson.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/code.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/db_ref.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/db_ref.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/double.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/double.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/error.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/int_32.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/int_32.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/long.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/map.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/regexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/regexp.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/lib/symbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/lib/symbol.js -------------------------------------------------------------------------------- /Back-end/node_modules/bson/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/binary.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/bson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/bson.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/code.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/db_ref.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/db_ref.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/double.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/double.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/error.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/int_32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/int_32.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/long.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/long.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/map.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/regexp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/regexp.ts -------------------------------------------------------------------------------- /Back-end/node_modules/bson/src/symbol.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bson/src/symbol.ts -------------------------------------------------------------------------------- /Back-end/node_modules/buffer-equal-constant-time/.npmignore: -------------------------------------------------------------------------------- 1 | .*.sw[mnop] 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/buffer-writer/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui tdd 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/buffer/AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/buffer/AUTHORS.md -------------------------------------------------------------------------------- /Back-end/node_modules/buffer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/buffer/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/buffer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/buffer/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/buffer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/buffer/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/buffer/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/buffer/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/bytes/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bytes/History.md -------------------------------------------------------------------------------- /Back-end/node_modules/bytes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bytes/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/bytes/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bytes/Readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/bytes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bytes/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/bytes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/bytes/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/call-bind/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/call-bind/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/call-bind/.nycrc -------------------------------------------------------------------------------- /Back-end/node_modules/call-bind/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/call-bind/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/call-bind/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/call-bind/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/callsites/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/callsites/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/callsites/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/callsites/license -------------------------------------------------------------------------------- /Back-end/node_modules/camelcase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/camelcase/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/camelcase/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/camelcase/license -------------------------------------------------------------------------------- /Back-end/node_modules/chalk/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chalk/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/chalk/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chalk/license -------------------------------------------------------------------------------- /Back-end/node_modules/chalk/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chalk/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/chalk/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chalk/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/char-regex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/char-regex/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/chokidar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chokidar/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/chokidar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chokidar/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/chokidar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chokidar/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/chownr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chownr/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/chownr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chownr/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/chownr/chownr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/chownr/chownr.js -------------------------------------------------------------------------------- /Back-end/node_modules/ci-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ci-info/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/ci-info/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ci-info/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/ci-info/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ci-info/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/ci-info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ci-info/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/cliui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cliui/CHANGELOG.md -------------------------------------------------------------------------------- /Back-end/node_modules/cliui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cliui/LICENSE.txt -------------------------------------------------------------------------------- /Back-end/node_modules/cliui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cliui/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/cliui/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cliui/index.mjs -------------------------------------------------------------------------------- /Back-end/node_modules/cliui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cliui/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/co/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/co/History.md -------------------------------------------------------------------------------- /Back-end/node_modules/co/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/co/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/co/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/co/Readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/co/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/co/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/co/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/co/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/color-name/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/color-name/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/concat-map/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/concat-map/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Back-end/node_modules/cookie/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cookie/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/cookie/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cookie/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/cookie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cookie/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/cookie/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cookie/SECURITY.md -------------------------------------------------------------------------------- /Back-end/node_modules/cookie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cookie/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/cors/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cors/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/cors/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cors/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/cors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cors/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/cors/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cors/lib/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/cors/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/cors/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/.eslintrc -------------------------------------------------------------------------------- /Back-end/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/.npmignore -------------------------------------------------------------------------------- /Back-end/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/.travis.yml -------------------------------------------------------------------------------- /Back-end/node_modules/debug/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/CHANGELOG.md -------------------------------------------------------------------------------- /Back-end/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/debug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/Makefile -------------------------------------------------------------------------------- /Back-end/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/debug/src/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/src/debug.js -------------------------------------------------------------------------------- /Back-end/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /Back-end/node_modules/dedent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/dedent/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/dedent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/dedent/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/deepmerge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/deepmerge/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/delegates/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/delegates/License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/delegates/License -------------------------------------------------------------------------------- /Back-end/node_modules/delegates/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/delegates/Makefile -------------------------------------------------------------------------------- /Back-end/node_modules/delegates/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/delegates/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/denque/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/denque/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/denque/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/denque/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/denque/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/denque/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/denque/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/denque/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/depd/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/depd/History.md -------------------------------------------------------------------------------- /Back-end/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/depd/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/depd/Readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/depd/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/depd/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/depd/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/depd/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/destroy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/destroy/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/destroy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/destroy/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/destroy/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/destroy/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/diff/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/diff/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/diff/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/diff/dist/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/diff/dist/diff.js -------------------------------------------------------------------------------- /Back-end/node_modules/diff/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/diff/lib/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/diff/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/diff/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/diff/runtime.js: -------------------------------------------------------------------------------- 1 | require('@babel/register')({ 2 | ignore: ['lib', 'node_modules'] 3 | }); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/dotenv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/dotenv/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/dotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/dotenv/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/dotenv/config.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/dotenv/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/dotenv/config.js -------------------------------------------------------------------------------- /Back-end/node_modules/dotenv/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/dotenv/lib/main.js -------------------------------------------------------------------------------- /Back-end/node_modules/dynamic-dedupe/test/fixtures/count.js: -------------------------------------------------------------------------------- 1 | module.exports = { count: 0 }; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ecdsa-sig-formatter/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @omsmith 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ee-first/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ee-first/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/ee-first/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ee-first/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/ee-first/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ee-first/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/emittery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/emittery/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/emittery/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/emittery/license -------------------------------------------------------------------------------- /Back-end/node_modules/emittery/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/emittery/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/encodeurl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/encodeurl/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/encodeurl/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/encodeurl/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/error-ex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/error-ex/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/error-ex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/error-ex/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/error-ex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/error-ex/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/escalade/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/escalade/license -------------------------------------------------------------------------------- /Back-end/node_modules/escalade/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/escalade/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/esprima/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/esprima/ChangeLog -------------------------------------------------------------------------------- /Back-end/node_modules/esprima/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/esprima/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/etag/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/etag/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/etag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/etag/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/etag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/etag/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/etag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/etag/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/execa/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/execa/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/execa/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/lib/error.js -------------------------------------------------------------------------------- /Back-end/node_modules/execa/lib/kill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/lib/kill.js -------------------------------------------------------------------------------- /Back-end/node_modules/execa/lib/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/lib/stdio.js -------------------------------------------------------------------------------- /Back-end/node_modules/execa/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/license -------------------------------------------------------------------------------- /Back-end/node_modules/execa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/execa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/execa/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/exit/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/.jshintrc -------------------------------------------------------------------------------- /Back-end/node_modules/exit/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/exit/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/.travis.yml -------------------------------------------------------------------------------- /Back-end/node_modules/exit/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/Gruntfile.js -------------------------------------------------------------------------------- /Back-end/node_modules/exit/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/LICENSE-MIT -------------------------------------------------------------------------------- /Back-end/node_modules/exit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/exit/lib/exit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/lib/exit.js -------------------------------------------------------------------------------- /Back-end/node_modules/exit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/exit/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/expect/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/expect/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/expect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/expect/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/express/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/express/History.md -------------------------------------------------------------------------------- /Back-end/node_modules/express/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/express/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/express/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/express/Readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/express/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/express/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/fast-json-stable-stringify/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/fast-json-stable-stringify" 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/fill-range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fill-range/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/find-up/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/find-up/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/find-up/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/find-up/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/find-up/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/find-up/license -------------------------------------------------------------------------------- /Back-end/node_modules/find-up/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/find-up/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/follow-redirects/http.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./").http; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/follow-redirects/https.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./").https; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/forwarded/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/forwarded/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/forwarded/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/forwarded/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/fresh/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fresh/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/fresh/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fresh/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/fresh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fresh/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/fresh/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fresh/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/fresh/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fresh/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/fs.realpath/old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/fs.realpath/old.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/CHANGELOG.md -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/error.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/has-color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/has-color.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/plumbing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/plumbing.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/process.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/spin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/spin.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/theme-set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/theme-set.js -------------------------------------------------------------------------------- /Back-end/node_modules/gauge/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gauge/themes.js -------------------------------------------------------------------------------- /Back-end/node_modules/gensync/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gensync/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/gensync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gensync/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/gensync/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/gensync/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/get-package-type/cache.cjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = new Map(); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/get-stream/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/get-stream/license -------------------------------------------------------------------------------- /Back-end/node_modules/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/glob/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/glob/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/glob/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/glob/common.js -------------------------------------------------------------------------------- /Back-end/node_modules/glob/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/glob/glob.js -------------------------------------------------------------------------------- /Back-end/node_modules/glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/glob/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/glob/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/glob/sync.js -------------------------------------------------------------------------------- /Back-end/node_modules/globals/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = require('./globals.json'); 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/globals/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/globals/license -------------------------------------------------------------------------------- /Back-end/node_modules/globals/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/globals/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/has-flag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has-flag/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/has-flag/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has-flag/license -------------------------------------------------------------------------------- /Back-end/node_modules/has-flag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has-flag/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/has-symbols/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has-symbols/.nycrc -------------------------------------------------------------------------------- /Back-end/node_modules/has/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has/LICENSE-MIT -------------------------------------------------------------------------------- /Back-end/node_modules/has/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/has/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/has/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has/src/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/has/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/has/test/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/html-escaper/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /Back-end/node_modules/html-escaper/test/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /Back-end/node_modules/iconv-lite/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/iconv-lite/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/ieee754/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ieee754/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/ieee754/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ieee754/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/ieee754/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ieee754/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/ieee754/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ieee754/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/inflight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/inflight/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/inflight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/inflight/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/inherits/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/inherits/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/inherits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/inherits/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/ip/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ip/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/ip/lib/ip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ip/lib/ip.js -------------------------------------------------------------------------------- /Back-end/node_modules/ip/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ip/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/ipaddr.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ipaddr.js/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/is-extglob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-extglob/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/is-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-glob/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/is-glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-glob/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/is-glob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-glob/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/is-number/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-number/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/is-number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-number/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/is-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-stream/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/is-stream/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/is-stream/license -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/isexe/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/isexe/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/isexe/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/isexe/mode.js -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/isexe/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/isexe/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/isexe/windows.js -------------------------------------------------------------------------------- /Back-end/node_modules/jest-changed-files/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest-cli/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jest-cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest-cli/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/jest-cli/build/init/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-diff/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest-diff/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jest-diff/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-each/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest-each/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jest-haste-map/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-message-util/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-mock/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest-mock/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jest-resolve/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-runner/node_modules/source-map-support/register.js: -------------------------------------------------------------------------------- 1 | require('./').install(); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-snapshot/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest-util/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jest-validate/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest-watcher/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/jest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/jest/bin/jest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest/bin/jest.js -------------------------------------------------------------------------------- /Back-end/node_modules/jest/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jest/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/js-tokens/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/js-tokens/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/js-tokens/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/js-tokens/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/js-yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/js-yaml/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jsesc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jsesc/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/jsesc/bin/jsesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jsesc/bin/jsesc -------------------------------------------------------------------------------- /Back-end/node_modules/jsesc/jsesc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jsesc/jsesc.js -------------------------------------------------------------------------------- /Back-end/node_modules/json5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/json5/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/jwa/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jwa/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jwa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jwa/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/jwa/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jwa/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/jws/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jws/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/jws/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jws/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/jws/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/jws/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/kareem/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kareem/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/kareem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kareem/Makefile -------------------------------------------------------------------------------- /Back-end/node_modules/kareem/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kareem/docs.js -------------------------------------------------------------------------------- /Back-end/node_modules/kareem/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kareem/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/kleur/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kleur/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/kleur/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kleur/license -------------------------------------------------------------------------------- /Back-end/node_modules/kleur/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/kleur/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/leven/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/leven/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/leven/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/leven/license -------------------------------------------------------------------------------- /Back-end/node_modules/leven/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/leven/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/mariadb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mariadb/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/methods/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/methods/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/mime-db/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime-db/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/mime-db/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime-db/db.json -------------------------------------------------------------------------------- /Back-end/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/mime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Back-end/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Back-end/node_modules/mime/types.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mime/types.json -------------------------------------------------------------------------------- /Back-end/node_modules/mkdirp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mkdirp/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/mkdirp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mkdirp/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/moment-timezone/blah.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/moment-timezone/curlxx.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/moment/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/moment/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/moment/ender.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/moment/ender.js -------------------------------------------------------------------------------- /Back-end/node_modules/mongoose/lib/drivers/SPEC.md: -------------------------------------------------------------------------------- 1 | 2 | # Driver Spec 3 | 4 | TODO 5 | -------------------------------------------------------------------------------- /Back-end/node_modules/mpath/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mpath/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/mpath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mpath/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/mpath/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mpath/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/mpath/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true 3 | rules: 4 | no-unused-vars: off -------------------------------------------------------------------------------- /Back-end/node_modules/mquery/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ -------------------------------------------------------------------------------- /Back-end/node_modules/mquery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mquery/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/mquery/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/mquery/Makefile -------------------------------------------------------------------------------- /Back-end/node_modules/mquery/test/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | env: 2 | mocha: true -------------------------------------------------------------------------------- /Back-end/node_modules/mquery/test/collection/browser.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/mquery/test/collection/mongo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ms/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ms/license.md -------------------------------------------------------------------------------- /Back-end/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ms/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/node-addon-api/nothing.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/node-cron/.covignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/node-int64/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/nopt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/nopt/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/nopt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/nopt/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/npmlog/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/npmlog/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/npmlog/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/npmlog/log.js -------------------------------------------------------------------------------- /Back-end/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/once/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/once/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/once/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/once/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/once/once.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/once/once.js -------------------------------------------------------------------------------- /Back-end/node_modules/onetime/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/onetime/license -------------------------------------------------------------------------------- /Back-end/node_modules/p-limit/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/p-limit/license -------------------------------------------------------------------------------- /Back-end/node_modules/p-try/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/p-try/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/p-try/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/p-try/license -------------------------------------------------------------------------------- /Back-end/node_modules/p-try/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/p-try/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/pg-int8/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg-int8/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/pg-pool/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg-pool/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/pg-pool/test/timeout.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/pg-protocol/dist/b.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/pg-protocol/dist/inbound-parser.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/pg-protocol/dist/outbound-serializer.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/pg-protocol/src/types/chunky.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'chunky' 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/pg/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/pg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/pg/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/lib/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/pg/lib/native/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = require('./client') 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/pg/lib/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/lib/query.js -------------------------------------------------------------------------------- /Back-end/node_modules/pg/lib/sasl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/lib/sasl.js -------------------------------------------------------------------------------- /Back-end/node_modules/pg/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/lib/utils.js -------------------------------------------------------------------------------- /Back-end/node_modules/pg/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pg/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/pirates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pirates/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/pkg-dir/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/pkg-dir/license -------------------------------------------------------------------------------- /Back-end/node_modules/please-upgrade-node/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: typicode 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/pretty-format/build/types.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/prompts/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/prompts/license -------------------------------------------------------------------------------- /Back-end/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Back-end/node_modules/qs/.nycrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/.nycrc -------------------------------------------------------------------------------- /Back-end/node_modules/qs/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/CHANGELOG.md -------------------------------------------------------------------------------- /Back-end/node_modules/qs/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/LICENSE.md -------------------------------------------------------------------------------- /Back-end/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/qs/dist/qs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/dist/qs.js -------------------------------------------------------------------------------- /Back-end/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/lib/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/qs/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/lib/parse.js -------------------------------------------------------------------------------- /Back-end/node_modules/qs/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/lib/utils.js -------------------------------------------------------------------------------- /Back-end/node_modules/qs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/qs/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/require-directory/.npmignore: -------------------------------------------------------------------------------- 1 | test/** 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/resolve/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/async.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/async'); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/sync.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/sync'); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/dotdot/abc/index.js: -------------------------------------------------------------------------------- 1 | var x = require('..'); 2 | console.log(x); 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/dotdot/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'whatever'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/module_dir/xmodules/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x * 100; }; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/module_dir/ymodules/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (x) { return x + 100; }; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/module_dir/zmodules/bbb/main.js: -------------------------------------------------------------------------------- 1 | module.exports = function (n) { return n * 111; }; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/node_path/x/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'A'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/node_path/x/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'C'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/node_path/y/bbb/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'B'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/node_path/y/ccc/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'CY'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/pathfilter/deep_ref/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/precedence/aaa.js: -------------------------------------------------------------------------------- 1 | module.exports = 'wtf'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/precedence/aaa/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 'okok'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/precedence/aaa/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./')); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/precedence/bbb.js: -------------------------------------------------------------------------------- 1 | module.exports = '>_<'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/precedence/bbb/main.js: -------------------------------------------------------------------------------- 1 | console.log(require('./')); // should throw 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/baz/doom.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/baz/quux.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/browser_field/a.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/browser_field/b.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/cup.coffee: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/dot_main/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/dot_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "." 3 | } 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/dot_slash_main/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/dot_slash_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "./" 3 | } 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/false_main/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/incorrect_main/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "wrong.js" 3 | } 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/malformed_package_json/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/malformed_package_json/package.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/mug.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/mug.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/other_path/lib/other-lib.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/other_path/root.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/quux/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/same_names/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 42; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/same_names/foo/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/symlinked/package/bar.js: -------------------------------------------------------------------------------- 1 | module.exports = 'bar'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/resolver/symlinked/package/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "main": "bar.js" 3 | } -------------------------------------------------------------------------------- /Back-end/node_modules/resolve/test/shadowed_core/node_modules/util/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/rimraf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/rimraf/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/rimraf/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/rimraf/bin.js -------------------------------------------------------------------------------- /Back-end/node_modules/saslprep/.gitattributes: -------------------------------------------------------------------------------- 1 | *.mem binary 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/semver/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/semver/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/semver/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/semver/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/semver/preload.js: -------------------------------------------------------------------------------- 1 | // XXX remove in v8 or beyond 2 | module.exports = require('./index.js') 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/send/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/send/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/send/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/send/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/send/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/send/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/shebang-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /^#!(.*)/; 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/side-channel/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/sift/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/sift/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/sift/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/sift/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/sift/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/sift/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/slash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/slash/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/slash/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/slash/license -------------------------------------------------------------------------------- /Back-end/node_modules/slash/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/slash/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/smart-buffer/docs/ROADMAP.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/socks/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/socks/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/socks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/socks/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/source-map-support/register.js: -------------------------------------------------------------------------------- 1 | require('./').install(); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/sparse-bitfield/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/split2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/split2/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/split2/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/split2/bench.js -------------------------------------------------------------------------------- /Back-end/node_modules/split2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/split2/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/split2/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/split2/test.js -------------------------------------------------------------------------------- /Back-end/node_modules/sprintf-js/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ -------------------------------------------------------------------------------- /Back-end/node_modules/supports-preserve-symlinks-flag/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = null; 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/tar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tar/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/tar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tar/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/tar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tar/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/tar/lib/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tar/lib/list.js -------------------------------------------------------------------------------- /Back-end/node_modules/tar/lib/pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tar/lib/pack.js -------------------------------------------------------------------------------- /Back-end/node_modules/tar/lib/pax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tar/lib/pax.js -------------------------------------------------------------------------------- /Back-end/node_modules/tmpl/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tmpl/license -------------------------------------------------------------------------------- /Back-end/node_modules/tmpl/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tmpl/readme.md -------------------------------------------------------------------------------- /Back-end/node_modules/tr46/.npmignore: -------------------------------------------------------------------------------- 1 | scripts/ 2 | test/ 3 | 4 | !lib/mapping_table.json 5 | -------------------------------------------------------------------------------- /Back-end/node_modules/tr46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/tr46/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/tr46/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('./dist/cli').processArgv() 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/cli/config/init.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/cli/config/migrate.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/cli/help.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/cli/helpers/presets.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/cli/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/config/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './paths-to-module-name-mapper'; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/backports.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/get-package-version.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/importer.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/memoize.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/messages.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/normalize-slashes.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/sha1.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/ts-error.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/dist/utils/version-checkers.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./presets').defaults 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/legacy.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/legacy') 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/default-esm-legacy/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').defaultsESMLegacy 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/default-esm/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').defaultsESM 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/default-legacy/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').defaultsLegacy 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/default/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').defaults 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-babel-esm-legacy/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithBabelESMLegacy 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-babel-esm/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithBabelESM 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-babel-legacy/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithBabelLegacy 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-babel/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithBabel 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-ts-esm-legacy/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithTsESMLegacy 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-ts-esm/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithTsESM 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-ts-legacy/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithTsLegacy 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-jest/presets/js-with-ts/jest-preset.js: -------------------------------------------------------------------------------- 1 | module.exports = require('..').jsWithTs 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node-dev/lib/dedupe.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | require('dynamic-dedupe').activate(); 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ts-node/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/bin-cwd.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/bin-esm.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/bin-script-deprecated.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/bin-script.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/bin-transpile.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/child/argv-payload.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/child/child-entrypoint.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/child/child-loader.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/child/spawn-child.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/cjs-resolve-hooks.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/configuration.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/file-extensions.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/module-type-classifier.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/node-module-type-classifier.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/resolver-functions.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/ts-internals.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/ts-transpile-module.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/dist/tsconfigs.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/esm.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/ts-node/esm.mjs -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/register/files.js: -------------------------------------------------------------------------------- 1 | require('../dist').register({ 2 | files: true, 3 | }); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/register/index.js: -------------------------------------------------------------------------------- 1 | require('../').register(); 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/register/transpile-only.js: -------------------------------------------------------------------------------- 1 | require('../').register({ 2 | transpileOnly: true, 3 | }); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/register/type-check.js: -------------------------------------------------------------------------------- 1 | require('../').register({ 2 | typeCheck: true, 3 | }); 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/transpilers/swc-experimental.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../dist/transpilers/swc') 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/ts-node/transpilers/swc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../dist/transpilers/swc') 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/tsconfig/dist/tsconfig.spec.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Back-end/node_modules/type-is/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/type-is/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/typescript/bin/tsc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/tsc.js') 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/typescript/bin/tsserver: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/tsserver.js') 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/unpipe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/unpipe/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/unpipe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/unpipe/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/uuid/LICENSE.md -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/uuid/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/dist/bin/uuid: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../uuid-bin'); 3 | -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/dist/v1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/uuid/dist/v1.js -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/dist/v3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/uuid/dist/v3.js -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/dist/v4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/uuid/dist/v4.js -------------------------------------------------------------------------------- /Back-end/node_modules/uuid/dist/v5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/uuid/dist/v5.js -------------------------------------------------------------------------------- /Back-end/node_modules/vary/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/vary/HISTORY.md -------------------------------------------------------------------------------- /Back-end/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/vary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/vary/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/vary/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/vary/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/walker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/walker/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/which/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/which/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/which/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/which/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/which/which.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/which/which.js -------------------------------------------------------------------------------- /Back-end/node_modules/wrappy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/wrappy/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/xtend/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/xtend/.jshintrc -------------------------------------------------------------------------------- /Back-end/node_modules/xtend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/xtend/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/xtend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/xtend/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/xtend/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/xtend/test.js -------------------------------------------------------------------------------- /Back-end/node_modules/y18n/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/y18n/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/y18n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/y18n/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/y18n/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/y18n/index.mjs -------------------------------------------------------------------------------- /Back-end/node_modules/yallist/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yallist/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yargs/LICENSE -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yargs/README.md -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/build/lib/typings/yargs-parser-types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/helpers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yargs/index.cjs -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yargs/index.mjs -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/yargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yargs/yargs -------------------------------------------------------------------------------- /Back-end/node_modules/yargs/yargs.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yargs/yargs.mjs -------------------------------------------------------------------------------- /Back-end/node_modules/yn/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yn/index.d.ts -------------------------------------------------------------------------------- /Back-end/node_modules/yn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yn/index.js -------------------------------------------------------------------------------- /Back-end/node_modules/yn/lenient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yn/lenient.js -------------------------------------------------------------------------------- /Back-end/node_modules/yn/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yn/license -------------------------------------------------------------------------------- /Back-end/node_modules/yn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yn/package.json -------------------------------------------------------------------------------- /Back-end/node_modules/yn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/node_modules/yn/readme.md -------------------------------------------------------------------------------- /Back-end/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/package-lock.json -------------------------------------------------------------------------------- /Back-end/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/package.json -------------------------------------------------------------------------------- /Back-end/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/src/index.ts -------------------------------------------------------------------------------- /Back-end/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/src/routes.ts -------------------------------------------------------------------------------- /Back-end/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/Back-end/tsconfig.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/README.md -------------------------------------------------------------------------------- /api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/api/index.php -------------------------------------------------------------------------------- /api/utils/connection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/api/utils/connection.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/cardsList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/cardsList.json -------------------------------------------------------------------------------- /public/img/Goldies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/Goldies.png -------------------------------------------------------------------------------- /public/img/logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/logo2.png -------------------------------------------------------------------------------- /public/img/vigvam00.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam00.jpg -------------------------------------------------------------------------------- /public/img/vigvam1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam1.jpeg -------------------------------------------------------------------------------- /public/img/vigvam1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam1.jpg -------------------------------------------------------------------------------- /public/img/vigvam10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam10.jpg -------------------------------------------------------------------------------- /public/img/vigvam10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam10.png -------------------------------------------------------------------------------- /public/img/vigvam11.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam11.jfif -------------------------------------------------------------------------------- /public/img/vigvam11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam11.jpg -------------------------------------------------------------------------------- /public/img/vigvam12.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam12.jfif -------------------------------------------------------------------------------- /public/img/vigvam12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam12.jpg -------------------------------------------------------------------------------- /public/img/vigvam13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam13.jpg -------------------------------------------------------------------------------- /public/img/vigvam14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam14.jpg -------------------------------------------------------------------------------- /public/img/vigvam15.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam15.jpeg -------------------------------------------------------------------------------- /public/img/vigvam16.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam16.jfif -------------------------------------------------------------------------------- /public/img/vigvam16.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam16.jpeg -------------------------------------------------------------------------------- /public/img/vigvam3.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam3.jfif -------------------------------------------------------------------------------- /public/img/vigvam3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam3.jpg -------------------------------------------------------------------------------- /public/img/vigvam4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam4.jpg -------------------------------------------------------------------------------- /public/img/vigvam5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam5.jpg -------------------------------------------------------------------------------- /public/img/vigvam6.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam6.jfif -------------------------------------------------------------------------------- /public/img/vigvam6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam6.jpg -------------------------------------------------------------------------------- /public/img/vigvam7.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam7.jpeg -------------------------------------------------------------------------------- /public/img/vigvam7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam7.jpg -------------------------------------------------------------------------------- /public/img/vigvam8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam8.jpg -------------------------------------------------------------------------------- /public/img/vigvam9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/img/vigvam9.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/index.html -------------------------------------------------------------------------------- /public/promocodesList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/public/promocodesList.json -------------------------------------------------------------------------------- /src/App/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/App/App.jsx -------------------------------------------------------------------------------- /src/App/App.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/App/App.module.scss -------------------------------------------------------------------------------- /src/api/getCardsList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/api/getCardsList.js -------------------------------------------------------------------------------- /src/api/getPromocodesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/api/getPromocodesList.js -------------------------------------------------------------------------------- /src/components/Button/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Button/Button.jsx -------------------------------------------------------------------------------- /src/components/Button/Button.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Button/Button.test.js -------------------------------------------------------------------------------- /src/components/Card/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Card/Card.jsx -------------------------------------------------------------------------------- /src/components/Card/Card.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Card/Card.module.scss -------------------------------------------------------------------------------- /src/components/Card/FavouriteIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Card/FavouriteIcon.jsx -------------------------------------------------------------------------------- /src/components/CartForm/CartForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/CartForm/CartForm.jsx -------------------------------------------------------------------------------- /src/components/CartList/CartList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/CartList/CartList.jsx -------------------------------------------------------------------------------- /src/components/Error/Error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Error/Error.jsx -------------------------------------------------------------------------------- /src/components/Error/error.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Error/error.jpeg -------------------------------------------------------------------------------- /src/components/Error/korgi-rbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Error/korgi-rbg.png -------------------------------------------------------------------------------- /src/components/Error/korgi.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Error/korgi.jpeg -------------------------------------------------------------------------------- /src/components/Feedback.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Feedback.jsx -------------------------------------------------------------------------------- /src/components/Footer/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Footer/Footer.jsx -------------------------------------------------------------------------------- /src/components/Header/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Header/Header.jsx -------------------------------------------------------------------------------- /src/components/HeroHome.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/HeroHome.jsx -------------------------------------------------------------------------------- /src/components/Loader/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Loader/Loader.jsx -------------------------------------------------------------------------------- /src/components/Modal/ModalRoot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/components/Modal/ModalRoot.jsx -------------------------------------------------------------------------------- /src/css/additional-styles/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/css/additional-styles/theme.css -------------------------------------------------------------------------------- /src/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/css/style.css -------------------------------------------------------------------------------- /src/css/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/css/tailwind.config.js -------------------------------------------------------------------------------- /src/fonts/Alumatica-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/fonts/Alumatica-Regular.woff2 -------------------------------------------------------------------------------- /src/helpers/countSubtotal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/helpers/countSubtotal.js -------------------------------------------------------------------------------- /src/helpers/countTotalWithDiscount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/helpers/countTotalWithDiscount.js -------------------------------------------------------------------------------- /src/i18n/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/i18n/index.js -------------------------------------------------------------------------------- /src/i18n/translations/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/i18n/translations/en-US.json -------------------------------------------------------------------------------- /src/i18n/translations/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/i18n/translations/pt-BR.json -------------------------------------------------------------------------------- /src/images/Goldies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/images/Goldies.png -------------------------------------------------------------------------------- /src/images/encontro-com-radio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/images/encontro-com-radio.jpg -------------------------------------------------------------------------------- /src/images/hero-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/images/hero-image.png -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/localAssets/brazil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/localAssets/brazil.png -------------------------------------------------------------------------------- /src/localAssets/eua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/localAssets/eua.png -------------------------------------------------------------------------------- /src/pages/AdminPage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/AdminPage.jsx -------------------------------------------------------------------------------- /src/pages/Cart/Cart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Cart/Cart.jsx -------------------------------------------------------------------------------- /src/pages/Cart/Cart.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Cart/Cart.module.scss -------------------------------------------------------------------------------- /src/pages/Cart/DogIcon.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Cart/DogIcon.jsx -------------------------------------------------------------------------------- /src/pages/Cart/DogIcon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Cart/DogIcon.scss -------------------------------------------------------------------------------- /src/pages/Catalog.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Catalog.jsx -------------------------------------------------------------------------------- /src/pages/Favourites/Favourites.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Favourites/Favourites.jsx -------------------------------------------------------------------------------- /src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Home.jsx -------------------------------------------------------------------------------- /src/pages/ListaDeDesejos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/ListaDeDesejos.jsx -------------------------------------------------------------------------------- /src/pages/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Menu.jsx -------------------------------------------------------------------------------- /src/pages/Payment.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Payment.jsx -------------------------------------------------------------------------------- /src/pages/Promocoes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/Promocoes.jsx -------------------------------------------------------------------------------- /src/pages/ResetPassword.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/ResetPassword.jsx -------------------------------------------------------------------------------- /src/pages/SignIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/SignIn.jsx -------------------------------------------------------------------------------- /src/pages/SignInAdmin.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/SignInAdmin.jsx -------------------------------------------------------------------------------- /src/pages/SignUp.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/SignUp.jsx -------------------------------------------------------------------------------- /src/pages/WishList/WishList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/pages/WishList/WishList.jsx -------------------------------------------------------------------------------- /src/store/cards/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/cards/actions.js -------------------------------------------------------------------------------- /src/store/cards/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/cards/reducer.js -------------------------------------------------------------------------------- /src/store/cards/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/cards/types.js -------------------------------------------------------------------------------- /src/store/cart/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/cart/actions.js -------------------------------------------------------------------------------- /src/store/cart/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/cart/reducer.js -------------------------------------------------------------------------------- /src/store/cart/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/cart/types.js -------------------------------------------------------------------------------- /src/store/currentCardArticul/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/currentCardArticul/types.js -------------------------------------------------------------------------------- /src/store/favourites/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/favourites/actions.js -------------------------------------------------------------------------------- /src/store/favourites/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/favourites/reducer.js -------------------------------------------------------------------------------- /src/store/favourites/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/favourites/types.js -------------------------------------------------------------------------------- /src/store/modal/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/modal/actions.js -------------------------------------------------------------------------------- /src/store/modal/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/modal/reducer.js -------------------------------------------------------------------------------- /src/store/modal/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/modal/types.js -------------------------------------------------------------------------------- /src/store/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/store.js -------------------------------------------------------------------------------- /src/store/wishlist/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/wishlist/actions.js -------------------------------------------------------------------------------- /src/store/wishlist/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/wishlist/reducer.js -------------------------------------------------------------------------------- /src/store/wishlist/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/store/wishlist/types.js -------------------------------------------------------------------------------- /src/utils/Dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Dropdown.jsx -------------------------------------------------------------------------------- /src/utils/Flag.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Flag.jsx -------------------------------------------------------------------------------- /src/utils/Hamburguer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Hamburguer.jsx -------------------------------------------------------------------------------- /src/utils/I18n.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/I18n.jsx -------------------------------------------------------------------------------- /src/utils/Modal.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Modal.jsx -------------------------------------------------------------------------------- /src/utils/Popover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Popover.jsx -------------------------------------------------------------------------------- /src/utils/Sidebar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Sidebar.jsx -------------------------------------------------------------------------------- /src/utils/ToggleButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/ToggleButton.jsx -------------------------------------------------------------------------------- /src/utils/Transition.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/Transition.jsx -------------------------------------------------------------------------------- /src/utils/UseDarkMode.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/UseDarkMode.jsx -------------------------------------------------------------------------------- /src/utils/apiConn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/src/utils/apiConn.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Amad3eu/sa-senai-vinil/HEAD/tailwind.config.js --------------------------------------------------------------------------------