├── .all-contributorsrc ├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ ├── node.js.yml │ └── scorecard.yml ├── .npmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── action.yml ├── index.js ├── node_modules ├── .bin │ ├── arborist │ ├── color-support │ ├── cssesc │ ├── installed-package-contents │ ├── is-base64 │ ├── is_base64 │ ├── mkdirp │ ├── node-gyp │ ├── node-which │ ├── nopt │ ├── npm-packlist │ ├── nsci │ ├── pacote │ ├── regexp-tree │ ├── rimraf │ ├── semver │ ├── uuid │ └── xml2js ├── .package-lock.json ├── @actions │ ├── core │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ ├── command.d.ts │ │ │ ├── command.js │ │ │ ├── command.js.map │ │ │ ├── core.d.ts │ │ │ ├── core.js │ │ │ ├── core.js.map │ │ │ ├── file-command.d.ts │ │ │ ├── file-command.js │ │ │ ├── file-command.js.map │ │ │ ├── oidc-utils.d.ts │ │ │ ├── oidc-utils.js │ │ │ ├── oidc-utils.js.map │ │ │ ├── path-utils.d.ts │ │ │ ├── path-utils.js │ │ │ ├── path-utils.js.map │ │ │ ├── summary.d.ts │ │ │ ├── summary.js │ │ │ ├── summary.js.map │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ └── utils.js.map │ │ └── package.json │ └── http-client │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── auth.d.ts │ │ ├── auth.js │ │ ├── auth.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── interfaces.d.ts │ │ ├── interfaces.js │ │ ├── interfaces.js.map │ │ ├── proxy.d.ts │ │ ├── proxy.js │ │ └── proxy.js.map │ │ └── package.json ├── @babel │ └── runtime │ │ ├── LICENSE │ │ ├── README.md │ │ ├── helpers │ │ ├── AsyncGenerator.js │ │ ├── AwaitValue.js │ │ ├── applyDecoratedDescriptor.js │ │ ├── applyDecs.js │ │ ├── arrayLikeToArray.js │ │ ├── arrayWithHoles.js │ │ ├── arrayWithoutHoles.js │ │ ├── assertThisInitialized.js │ │ ├── asyncGeneratorDelegate.js │ │ ├── asyncIterator.js │ │ ├── asyncToGenerator.js │ │ ├── awaitAsyncGenerator.js │ │ ├── checkPrivateRedeclaration.js │ │ ├── classApplyDescriptorDestructureSet.js │ │ ├── classApplyDescriptorGet.js │ │ ├── classApplyDescriptorSet.js │ │ ├── classCallCheck.js │ │ ├── classCheckPrivateStaticAccess.js │ │ ├── classCheckPrivateStaticFieldDescriptor.js │ │ ├── classExtractFieldDescriptor.js │ │ ├── classNameTDZError.js │ │ ├── classPrivateFieldDestructureSet.js │ │ ├── classPrivateFieldGet.js │ │ ├── classPrivateFieldInitSpec.js │ │ ├── classPrivateFieldLooseBase.js │ │ ├── classPrivateFieldLooseKey.js │ │ ├── classPrivateFieldSet.js │ │ ├── classPrivateMethodGet.js │ │ ├── classPrivateMethodInitSpec.js │ │ ├── classPrivateMethodSet.js │ │ ├── classStaticPrivateFieldDestructureSet.js │ │ ├── classStaticPrivateFieldSpecGet.js │ │ ├── classStaticPrivateFieldSpecSet.js │ │ ├── classStaticPrivateMethodGet.js │ │ ├── classStaticPrivateMethodSet.js │ │ ├── construct.js │ │ ├── createClass.js │ │ ├── createForOfIteratorHelper.js │ │ ├── createForOfIteratorHelperLoose.js │ │ ├── createSuper.js │ │ ├── decorate.js │ │ ├── defaults.js │ │ ├── defineEnumerableProperties.js │ │ ├── defineProperty.js │ │ ├── esm │ │ │ ├── AsyncGenerator.js │ │ │ ├── AwaitValue.js │ │ │ ├── applyDecoratedDescriptor.js │ │ │ ├── applyDecs.js │ │ │ ├── arrayLikeToArray.js │ │ │ ├── arrayWithHoles.js │ │ │ ├── arrayWithoutHoles.js │ │ │ ├── assertThisInitialized.js │ │ │ ├── asyncGeneratorDelegate.js │ │ │ ├── asyncIterator.js │ │ │ ├── asyncToGenerator.js │ │ │ ├── awaitAsyncGenerator.js │ │ │ ├── checkPrivateRedeclaration.js │ │ │ ├── classApplyDescriptorDestructureSet.js │ │ │ ├── classApplyDescriptorGet.js │ │ │ ├── classApplyDescriptorSet.js │ │ │ ├── classCallCheck.js │ │ │ ├── classCheckPrivateStaticAccess.js │ │ │ ├── classCheckPrivateStaticFieldDescriptor.js │ │ │ ├── classExtractFieldDescriptor.js │ │ │ ├── classNameTDZError.js │ │ │ ├── classPrivateFieldDestructureSet.js │ │ │ ├── classPrivateFieldGet.js │ │ │ ├── classPrivateFieldInitSpec.js │ │ │ ├── classPrivateFieldLooseBase.js │ │ │ ├── classPrivateFieldLooseKey.js │ │ │ ├── classPrivateFieldSet.js │ │ │ ├── classPrivateMethodGet.js │ │ │ ├── classPrivateMethodInitSpec.js │ │ │ ├── classPrivateMethodSet.js │ │ │ ├── classStaticPrivateFieldDestructureSet.js │ │ │ ├── classStaticPrivateFieldSpecGet.js │ │ │ ├── classStaticPrivateFieldSpecSet.js │ │ │ ├── classStaticPrivateMethodGet.js │ │ │ ├── classStaticPrivateMethodSet.js │ │ │ ├── construct.js │ │ │ ├── createClass.js │ │ │ ├── createForOfIteratorHelper.js │ │ │ ├── createForOfIteratorHelperLoose.js │ │ │ ├── createSuper.js │ │ │ ├── decorate.js │ │ │ ├── defaults.js │ │ │ ├── defineEnumerableProperties.js │ │ │ ├── defineProperty.js │ │ │ ├── extends.js │ │ │ ├── get.js │ │ │ ├── getPrototypeOf.js │ │ │ ├── identity.js │ │ │ ├── inherits.js │ │ │ ├── inheritsLoose.js │ │ │ ├── initializerDefineProperty.js │ │ │ ├── initializerWarningHelper.js │ │ │ ├── instanceof.js │ │ │ ├── interopRequireDefault.js │ │ │ ├── interopRequireWildcard.js │ │ │ ├── isNativeFunction.js │ │ │ ├── isNativeReflectConstruct.js │ │ │ ├── iterableToArray.js │ │ │ ├── iterableToArrayLimit.js │ │ │ ├── iterableToArrayLimitLoose.js │ │ │ ├── jsx.js │ │ │ ├── maybeArrayLike.js │ │ │ ├── newArrowCheck.js │ │ │ ├── nonIterableRest.js │ │ │ ├── nonIterableSpread.js │ │ │ ├── objectDestructuringEmpty.js │ │ │ ├── objectSpread.js │ │ │ ├── objectSpread2.js │ │ │ ├── objectWithoutProperties.js │ │ │ ├── objectWithoutPropertiesLoose.js │ │ │ ├── package.json │ │ │ ├── possibleConstructorReturn.js │ │ │ ├── readOnlyError.js │ │ │ ├── regeneratorRuntime.js │ │ │ ├── set.js │ │ │ ├── setPrototypeOf.js │ │ │ ├── skipFirstGeneratorNext.js │ │ │ ├── slicedToArray.js │ │ │ ├── slicedToArrayLoose.js │ │ │ ├── superPropBase.js │ │ │ ├── taggedTemplateLiteral.js │ │ │ ├── taggedTemplateLiteralLoose.js │ │ │ ├── tdz.js │ │ │ ├── temporalRef.js │ │ │ ├── temporalUndefined.js │ │ │ ├── toArray.js │ │ │ ├── toConsumableArray.js │ │ │ ├── toPrimitive.js │ │ │ ├── toPropertyKey.js │ │ │ ├── typeof.js │ │ │ ├── unsupportedIterableToArray.js │ │ │ ├── wrapAsyncGenerator.js │ │ │ ├── wrapNativeSuper.js │ │ │ ├── wrapRegExp.js │ │ │ └── writeOnlyError.js │ │ ├── extends.js │ │ ├── get.js │ │ ├── getPrototypeOf.js │ │ ├── identity.js │ │ ├── inherits.js │ │ ├── inheritsLoose.js │ │ ├── initializerDefineProperty.js │ │ ├── initializerWarningHelper.js │ │ ├── instanceof.js │ │ ├── interopRequireDefault.js │ │ ├── interopRequireWildcard.js │ │ ├── isNativeFunction.js │ │ ├── isNativeReflectConstruct.js │ │ ├── iterableToArray.js │ │ ├── iterableToArrayLimit.js │ │ ├── iterableToArrayLimitLoose.js │ │ ├── jsx.js │ │ ├── maybeArrayLike.js │ │ ├── newArrowCheck.js │ │ ├── nonIterableRest.js │ │ ├── nonIterableSpread.js │ │ ├── objectDestructuringEmpty.js │ │ ├── objectSpread.js │ │ ├── objectSpread2.js │ │ ├── objectWithoutProperties.js │ │ ├── objectWithoutPropertiesLoose.js │ │ ├── possibleConstructorReturn.js │ │ ├── readOnlyError.js │ │ ├── regeneratorRuntime.js │ │ ├── set.js │ │ ├── setPrototypeOf.js │ │ ├── skipFirstGeneratorNext.js │ │ ├── slicedToArray.js │ │ ├── slicedToArrayLoose.js │ │ ├── superPropBase.js │ │ ├── taggedTemplateLiteral.js │ │ ├── taggedTemplateLiteralLoose.js │ │ ├── tdz.js │ │ ├── temporalRef.js │ │ ├── temporalUndefined.js │ │ ├── toArray.js │ │ ├── toConsumableArray.js │ │ ├── toPrimitive.js │ │ ├── toPropertyKey.js │ │ ├── typeof.js │ │ ├── unsupportedIterableToArray.js │ │ ├── wrapAsyncGenerator.js │ │ ├── wrapNativeSuper.js │ │ ├── wrapRegExp.js │ │ └── writeOnlyError.js │ │ ├── package.json │ │ └── regenerator │ │ └── index.js ├── @gar │ └── promisify │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json ├── @iarna │ └── toml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── lib │ │ ├── create-date.js │ │ ├── create-datetime-float.js │ │ ├── create-datetime.js │ │ ├── create-time.js │ │ ├── format-num.js │ │ ├── parser-debug.js │ │ ├── parser.js │ │ └── toml-parser.js │ │ ├── package.json │ │ ├── parse-async.js │ │ ├── parse-pretty-error.js │ │ ├── parse-stream.js │ │ ├── parse-string.js │ │ ├── parse.js │ │ ├── stringify.js │ │ └── toml.js ├── @isaacs │ └── string-locale-compare │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json ├── @myunisoft │ └── httpie │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ ├── agents.d.ts │ │ ├── agents.js │ │ ├── agents.js.map │ │ ├── class │ │ │ ├── Operation.class.d.ts │ │ │ ├── Operation.class.js │ │ │ └── Operation.class.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── policies │ │ │ ├── httpcode.d.ts │ │ │ ├── httpcode.js │ │ │ ├── httpcode.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── none.d.ts │ │ │ ├── none.js │ │ │ └── none.js.map │ │ ├── request.d.ts │ │ ├── request.js │ │ ├── request.js.map │ │ ├── retry.d.ts │ │ ├── retry.js │ │ ├── retry.js.map │ │ ├── stream.d.ts │ │ ├── stream.js │ │ ├── stream.js.map │ │ ├── utils.d.ts │ │ ├── utils.js │ │ └── utils.js.map │ │ └── package.json ├── @nodesecure │ ├── ci │ │ ├── README.md │ │ ├── dist │ │ │ ├── bin │ │ │ │ ├── cli.d.ts │ │ │ │ ├── cli.js │ │ │ │ └── cli.js.map │ │ │ ├── lib │ │ │ │ └── console-printer │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ └── src │ │ │ │ ├── analysis │ │ │ │ ├── extraction │ │ │ │ │ ├── extract.d.ts │ │ │ │ │ ├── extract.js │ │ │ │ │ ├── extract.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── interpretation │ │ │ │ │ ├── checkable.d.ts │ │ │ │ │ ├── checkable.js │ │ │ │ │ ├── checkable.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── interpret.d.ts │ │ │ │ │ ├── interpret.js │ │ │ │ │ ├── interpret.js.map │ │ │ │ │ ├── vulnerabilities.d.ts │ │ │ │ │ ├── vulnerabilities.js │ │ │ │ │ ├── vulnerabilities.js.map │ │ │ │ │ ├── warnings.d.ts │ │ │ │ │ ├── warnings.js │ │ │ │ │ └── warnings.js.map │ │ │ │ ├── configuration │ │ │ │ ├── environment │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── external │ │ │ │ │ ├── adapt.d.ts │ │ │ │ │ ├── adapt.js │ │ │ │ │ ├── adapt.js.map │ │ │ │ │ ├── api │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── common.js │ │ │ │ │ ├── common.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── nodesecure │ │ │ │ │ │ ├── ignore-file.d.ts │ │ │ │ │ │ ├── ignore-file.js │ │ │ │ │ │ ├── ignore-file.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── standardize.d.ts │ │ │ │ │ ├── standardize.js │ │ │ │ │ └── standardize.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── manage.d.ts │ │ │ │ ├── manage.js │ │ │ │ ├── manage.js.map │ │ │ │ └── standard │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── nsci.d.ts │ │ │ │ │ ├── nsci.js │ │ │ │ │ └── nsci.js.map │ │ │ │ ├── reporting │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── reporters │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── configuration.d.ts │ │ │ │ │ │ ├── configuration.js │ │ │ │ │ │ ├── configuration.js.map │ │ │ │ │ │ ├── environment.d.ts │ │ │ │ │ │ ├── environment.js │ │ │ │ │ │ ├── environment.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ ├── scanner.d.ts │ │ │ │ │ │ ├── scanner.js │ │ │ │ │ │ ├── scanner.js.map │ │ │ │ │ │ ├── util.d.ts │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ └── util.js.map │ │ │ │ │ ├── post-pipeline │ │ │ │ │ │ ├── console │ │ │ │ │ │ │ ├── dependency-warnings.d.ts │ │ │ │ │ │ │ ├── dependency-warnings.js │ │ │ │ │ │ │ ├── dependency-warnings.js.map │ │ │ │ │ │ │ ├── global-warnings.d.ts │ │ │ │ │ │ │ ├── global-warnings.js │ │ │ │ │ │ │ ├── global-warnings.js.map │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ ├── outcome.d.ts │ │ │ │ │ │ │ ├── outcome.js │ │ │ │ │ │ │ ├── outcome.js.map │ │ │ │ │ │ │ ├── util.d.ts │ │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ │ ├── util.js.map │ │ │ │ │ │ │ ├── vulnerabilities.d.ts │ │ │ │ │ │ │ ├── vulnerabilities.js │ │ │ │ │ │ │ └── vulnerabilities.js.map │ │ │ │ │ │ ├── html │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── index.js.map │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── index.js.map │ │ │ │ │ ├── reporter.d.ts │ │ │ │ │ ├── reporter.js │ │ │ │ │ ├── reporter.js.map │ │ │ │ │ ├── runner.d.ts │ │ │ │ │ ├── runner.js │ │ │ │ │ └── runner.js.map │ │ │ │ ├── run.d.ts │ │ │ │ ├── run.js │ │ │ │ ├── run.js.map │ │ │ │ ├── status.d.ts │ │ │ │ ├── status.js │ │ │ │ └── status.js.map │ │ │ │ └── types │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.js.map │ │ └── package.json │ ├── flags │ │ ├── FLAGS.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── src │ │ │ ├── flags │ │ │ │ ├── hasBannedFile.html │ │ │ │ ├── hasCustomResolver.html │ │ │ │ ├── hasExternalCapacity.html │ │ │ │ ├── hasIndirectDependencies.html │ │ │ │ ├── hasManyPublishers.html │ │ │ │ ├── hasMinifiedCode.html │ │ │ │ ├── hasMissingOrUnusedDependency.html │ │ │ │ ├── hasMultipleLicenses.html │ │ │ │ ├── hasNativeCode.html │ │ │ │ ├── hasNoLicense.html │ │ │ │ ├── hasScript.html │ │ │ │ ├── hasVulnerabilities.html │ │ │ │ ├── hasWarnings.html │ │ │ │ ├── isDead.html │ │ │ │ ├── isDeprecated.html │ │ │ │ ├── isDuplicated.html │ │ │ │ ├── isGit.html │ │ │ │ └── isOutdated.html │ │ │ ├── manifest.js │ │ │ ├── node.d.ts │ │ │ ├── node.js │ │ │ └── web.js │ │ └── web.d.ts │ ├── fs-walk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── type │ │ │ └── walk.d.ts │ ├── i18n │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── languages │ │ │ ├── english.js │ │ │ ├── french.js │ │ │ └── index.js │ │ ├── package.json │ │ └── src │ │ │ ├── constants.js │ │ │ └── utils.js │ ├── js-x-ray │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── src │ │ │ ├── ASTDeps.js │ │ │ ├── Analysis.js │ │ │ ├── constants.js │ │ │ ├── obfuscators │ │ │ │ ├── freejsobfuscator.js │ │ │ │ ├── index.js │ │ │ │ ├── jjencode.js │ │ │ │ ├── jsfuck.js │ │ │ │ ├── obfuscator-io.js │ │ │ │ └── trojan-source.js │ │ │ ├── probes │ │ │ │ ├── index.js │ │ │ │ ├── isArrayExpression.js │ │ │ │ ├── isAssignmentExprOrMemberExpr.js │ │ │ │ ├── isAssignmentExpression.js │ │ │ │ ├── isBinaryExpression.js │ │ │ │ ├── isFunctionDeclaration.js │ │ │ │ ├── isImportDeclaration.js │ │ │ │ ├── isLiteral.js │ │ │ │ ├── isLiteralRegex.js │ │ │ │ ├── isMemberExpression.js │ │ │ │ ├── isObjectExpression.js │ │ │ │ ├── isRegexObject.js │ │ │ │ ├── isRequire.js │ │ │ │ ├── isUnaryExpression.js │ │ │ │ ├── isUnsafeCallee.js │ │ │ │ ├── isVariableDeclaration.js │ │ │ │ └── isWeakCrypto.js │ │ │ ├── utils.js │ │ │ └── warnings.js │ │ └── types │ │ │ ├── api.d.ts │ │ │ ├── astdeps.d.ts │ │ │ └── warnings.d.ts │ ├── licenses-conformance │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── src │ │ │ ├── licenses.js │ │ │ └── utils.js │ ├── npm-registry-sdk │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── api.d.ts │ │ │ ├── api.js │ │ │ ├── api.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── registry.d.ts │ │ │ ├── registry.js │ │ │ ├── registry.js.map │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ └── utils.js.map │ │ └── package.json │ ├── ntlp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── src │ │ │ └── utils.js │ ├── rc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── functions │ │ │ │ ├── read.d.ts │ │ │ │ ├── read.js │ │ │ │ ├── read.js.map │ │ │ │ ├── write.d.ts │ │ │ │ ├── write.js │ │ │ │ └── write.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── projects │ │ │ │ ├── ci.d.ts │ │ │ │ ├── ci.js │ │ │ │ ├── ci.js.map │ │ │ │ ├── report.d.ts │ │ │ │ ├── report.js │ │ │ │ └── report.js.map │ │ │ ├── rc.d.ts │ │ │ ├── rc.js │ │ │ ├── rc.js.map │ │ │ ├── schema │ │ │ │ ├── defs │ │ │ │ │ ├── ci.json │ │ │ │ │ ├── ciWarnings.json │ │ │ │ │ ├── report.json │ │ │ │ │ └── reportChart.json │ │ │ │ ├── loader.d.ts │ │ │ │ ├── loader.js │ │ │ │ ├── loader.js.map │ │ │ │ └── nodesecurerc.json │ │ │ └── utils │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── readJSON.d.ts │ │ │ │ ├── readJSON.js │ │ │ │ └── readJSON.js.map │ │ └── package.json │ ├── scanner │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── node_modules │ │ │ └── @nodesecure │ │ │ │ └── i18n │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── languages │ │ │ │ ├── english.js │ │ │ │ ├── french.js │ │ │ │ └── index.js │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ ├── constants.js │ │ │ │ └── utils.js │ │ ├── package.json │ │ ├── src │ │ │ ├── class │ │ │ │ ├── dependency.class.js │ │ │ │ └── logger.class.js │ │ │ ├── constants.js │ │ │ ├── depWalker.js │ │ │ ├── manifest.js │ │ │ ├── npmRegistry.js │ │ │ ├── tarball.js │ │ │ └── utils │ │ │ │ ├── addMissingVersionFlags.js │ │ │ │ ├── analyzeDependencies.js │ │ │ │ ├── booleanToFlags.js │ │ │ │ ├── dirname.js │ │ │ │ ├── filterDependencyKind.js │ │ │ │ ├── getPackageName.js │ │ │ │ ├── getTarballComposition.js │ │ │ │ ├── index.js │ │ │ │ ├── isGitDependency.js │ │ │ │ ├── isSensitiveFile.js │ │ │ │ ├── mergeDependencies.js │ │ │ │ ├── semver.js │ │ │ │ └── warnings.js │ │ └── types │ │ │ ├── api.d.ts │ │ │ ├── logger.d.ts │ │ │ ├── scanner.d.ts │ │ │ ├── tarball.d.ts │ │ │ └── walker.d.ts │ ├── sec-literal │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── hex.js │ │ │ ├── index.js │ │ │ ├── literal.js │ │ │ ├── patterns.js │ │ │ └── utils.js │ ├── utils │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── src │ │ │ ├── formatBytes.js │ │ │ ├── locationToString.js │ │ │ ├── parseManifestAuthor.js │ │ │ └── taggedString.js │ └── vuln │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── src │ │ ├── cache.js │ │ ├── constants.js │ │ ├── strategies │ │ │ ├── index.js │ │ │ ├── none.js │ │ │ ├── npm-audit.js │ │ │ ├── security-wg.js │ │ │ ├── snyk.js │ │ │ ├── sonatype.js │ │ │ └── vuln-payload │ │ │ │ ├── mappers.js │ │ │ │ └── standardize.js │ │ └── utils.js │ │ └── types │ │ ├── api.d.ts │ │ ├── cache.d.ts │ │ ├── node-strategy.d.ts │ │ ├── npm-strategy.d.ts │ │ ├── snyk-strategy.d.ts │ │ ├── sonatype-strategy.d.ts │ │ └── strategy.d.ts ├── @npm │ └── types │ │ ├── .clang-format │ │ ├── .eslintignore │ │ ├── .eslintrc.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── img │ │ └── tool-tip.png │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── test │ │ └── test.ts │ │ ├── tsconfig.json │ │ └── tslint.json ├── @npmcli │ ├── arborist │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ ├── actual.js │ │ │ ├── audit.js │ │ │ ├── funding.js │ │ │ ├── ideal.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── logging.js │ │ │ │ ├── options.js │ │ │ │ ├── print-tree.js │ │ │ │ └── timers.js │ │ │ ├── license.js │ │ │ ├── prune.js │ │ │ ├── reify.js │ │ │ ├── shrinkwrap.js │ │ │ └── virtual.js │ │ ├── lib │ │ │ ├── add-rm-pkg-deps.js │ │ │ ├── arborist │ │ │ │ ├── audit.js │ │ │ │ ├── build-ideal-tree.js │ │ │ │ ├── deduper.js │ │ │ │ ├── index.js │ │ │ │ ├── load-actual.js │ │ │ │ ├── load-virtual.js │ │ │ │ ├── load-workspaces.js │ │ │ │ ├── pruner.js │ │ │ │ ├── rebuild.js │ │ │ │ └── reify.js │ │ │ ├── audit-report.js │ │ │ ├── calc-dep-flags.js │ │ │ ├── can-place-dep.js │ │ │ ├── case-insensitive-map.js │ │ │ ├── consistent-resolve.js │ │ │ ├── debug.js │ │ │ ├── deepest-nesting-target.js │ │ │ ├── dep-valid.js │ │ │ ├── diff.js │ │ │ ├── edge.js │ │ │ ├── from-path.js │ │ │ ├── gather-dep-set.js │ │ │ ├── get-workspace-nodes.js │ │ │ ├── index.js │ │ │ ├── inventory.js │ │ │ ├── link.js │ │ │ ├── node.js │ │ │ ├── optional-set.js │ │ │ ├── override-resolves.js │ │ │ ├── override-set.js │ │ │ ├── peer-entry-sets.js │ │ │ ├── place-dep.js │ │ │ ├── printable.js │ │ │ ├── query-selector-all.js │ │ │ ├── realpath.js │ │ │ ├── relpath.js │ │ │ ├── reset-dep-flags.js │ │ │ ├── retire-path.js │ │ │ ├── shrinkwrap.js │ │ │ ├── signal-handling.js │ │ │ ├── signals.js │ │ │ ├── spec-from-lock.js │ │ │ ├── tracker.js │ │ │ ├── tree-check.js │ │ │ ├── version-from-tgz.js │ │ │ ├── vuln.js │ │ │ └── yarn-lock.js │ │ └── package.json │ ├── fs │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ ├── common │ │ │ │ ├── get-options.js │ │ │ │ ├── node.js │ │ │ │ ├── owner-sync.js │ │ │ │ └── owner.js │ │ │ ├── copy-file.js │ │ │ ├── cp │ │ │ │ ├── LICENSE │ │ │ │ ├── index.js │ │ │ │ └── polyfill.js │ │ │ ├── errors.js │ │ │ ├── fs.js │ │ │ ├── index.js │ │ │ ├── mkdir.js │ │ │ ├── mkdtemp.js │ │ │ ├── rm │ │ │ │ ├── index.js │ │ │ │ └── polyfill.js │ │ │ ├── with-owner-sync.js │ │ │ ├── with-owner.js │ │ │ ├── with-temp-dir.js │ │ │ └── write-file.js │ │ └── package.json │ ├── git │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── clone.js │ │ │ ├── errors.js │ │ │ ├── find.js │ │ │ ├── index.js │ │ │ ├── is-clean.js │ │ │ ├── is.js │ │ │ ├── lines-to-revs.js │ │ │ ├── make-error.js │ │ │ ├── opts.js │ │ │ ├── revs.js │ │ │ ├── spawn.js │ │ │ ├── utils.js │ │ │ └── which.js │ │ └── package.json │ ├── installed-package-contents │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── map-workspaces │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── metavuln-calculator │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── advisory.js │ │ │ ├── get-dep-spec.js │ │ │ ├── hash.js │ │ │ └── index.js │ │ └── package.json │ ├── move-file │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── name-from-folder │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── node-gyp │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── package-json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── index.js │ │ │ ├── update-dependencies.js │ │ │ ├── update-scripts.js │ │ │ └── update-workspaces.js │ │ └── package.json │ ├── promise-spawn │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── query │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ └── run-script │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ ├── escape.js │ │ ├── is-server-package.js │ │ ├── is-windows.js │ │ ├── make-spawn-args.js │ │ ├── node-gyp-bin │ │ │ ├── node-gyp │ │ │ └── node-gyp.cmd │ │ ├── package-envs.js │ │ ├── run-script-pkg.js │ │ ├── run-script.js │ │ ├── set-path.js │ │ ├── signal-manager.js │ │ └── validate-options.js │ │ └── package.json ├── @slimio │ ├── async-cli-spinner │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── node_modules │ │ │ └── kleur │ │ │ │ ├── index.js │ │ │ │ ├── kleur.d.ts │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── src │ │ │ └── logSymbols.js │ ├── config │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── src │ │ │ ├── config.class.js │ │ │ └── utils.js │ ├── github │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── is │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── slimio.toml │ │ └── src │ │ │ └── utils.js │ ├── lock │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ └── wcwidth │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── src │ │ └── combining.js ├── @tootallnate │ └── once │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── overloaded-parameters.d.ts │ │ ├── overloaded-parameters.js │ │ ├── overloaded-parameters.js.map │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.js.map │ │ └── package.json ├── abbrev │ ├── LICENSE │ ├── README.md │ ├── abbrev.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 │ ├── package.json │ └── src │ │ ├── index.ts │ │ └── promisify.ts ├── agentkeepalive │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── index.d.ts │ ├── index.js │ ├── lib │ │ ├── agent.js │ │ ├── constants.js │ │ └── https_agent.js │ └── package.json ├── aggregate-error │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── ajv │ ├── .runkit_example.js │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── 2019.d.ts │ │ ├── 2019.js │ │ ├── 2019.js.map │ │ ├── 2020.d.ts │ │ ├── 2020.js │ │ ├── 2020.js.map │ │ ├── ajv.d.ts │ │ ├── ajv.js │ │ ├── ajv.js.map │ │ ├── compile │ │ │ ├── codegen │ │ │ │ ├── code.d.ts │ │ │ │ ├── code.js │ │ │ │ ├── code.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── scope.d.ts │ │ │ │ ├── scope.js │ │ │ │ └── scope.js.map │ │ │ ├── errors.d.ts │ │ │ ├── errors.js │ │ │ ├── errors.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── jtd │ │ │ │ ├── parse.d.ts │ │ │ │ ├── parse.js │ │ │ │ ├── parse.js.map │ │ │ │ ├── serialize.d.ts │ │ │ │ ├── serialize.js │ │ │ │ ├── serialize.js.map │ │ │ │ ├── types.d.ts │ │ │ │ ├── types.js │ │ │ │ └── types.js.map │ │ │ ├── names.d.ts │ │ │ ├── names.js │ │ │ ├── names.js.map │ │ │ ├── ref_error.d.ts │ │ │ ├── ref_error.js │ │ │ ├── ref_error.js.map │ │ │ ├── resolve.d.ts │ │ │ ├── resolve.js │ │ │ ├── resolve.js.map │ │ │ ├── rules.d.ts │ │ │ ├── rules.js │ │ │ ├── rules.js.map │ │ │ ├── util.d.ts │ │ │ ├── util.js │ │ │ ├── util.js.map │ │ │ └── validate │ │ │ │ ├── applicability.d.ts │ │ │ │ ├── applicability.js │ │ │ │ ├── applicability.js.map │ │ │ │ ├── boolSchema.d.ts │ │ │ │ ├── boolSchema.js │ │ │ │ ├── boolSchema.js.map │ │ │ │ ├── dataType.d.ts │ │ │ │ ├── dataType.js │ │ │ │ ├── dataType.js.map │ │ │ │ ├── defaults.d.ts │ │ │ │ ├── defaults.js │ │ │ │ ├── defaults.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── keyword.d.ts │ │ │ │ ├── keyword.js │ │ │ │ ├── keyword.js.map │ │ │ │ ├── subschema.d.ts │ │ │ │ ├── subschema.js │ │ │ │ └── subschema.js.map │ │ ├── core.d.ts │ │ ├── core.js │ │ ├── core.js.map │ │ ├── jtd.d.ts │ │ ├── jtd.js │ │ ├── jtd.js.map │ │ ├── refs │ │ │ ├── data.json │ │ │ ├── json-schema-2019-09 │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── meta │ │ │ │ │ ├── applicator.json │ │ │ │ │ ├── content.json │ │ │ │ │ ├── core.json │ │ │ │ │ ├── format.json │ │ │ │ │ ├── meta-data.json │ │ │ │ │ └── validation.json │ │ │ │ └── schema.json │ │ │ ├── json-schema-2020-12 │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── meta │ │ │ │ │ ├── applicator.json │ │ │ │ │ ├── content.json │ │ │ │ │ ├── core.json │ │ │ │ │ ├── format-annotation.json │ │ │ │ │ ├── meta-data.json │ │ │ │ │ ├── unevaluated.json │ │ │ │ │ └── validation.json │ │ │ │ └── schema.json │ │ │ ├── json-schema-draft-06.json │ │ │ ├── json-schema-draft-07.json │ │ │ ├── json-schema-secure.json │ │ │ ├── jtd-schema.d.ts │ │ │ ├── jtd-schema.js │ │ │ └── jtd-schema.js.map │ │ ├── runtime │ │ │ ├── equal.d.ts │ │ │ ├── equal.js │ │ │ ├── equal.js.map │ │ │ ├── parseJson.d.ts │ │ │ ├── parseJson.js │ │ │ ├── parseJson.js.map │ │ │ ├── quote.d.ts │ │ │ ├── quote.js │ │ │ ├── quote.js.map │ │ │ ├── re2.d.ts │ │ │ ├── re2.js │ │ │ ├── re2.js.map │ │ │ ├── timestamp.d.ts │ │ │ ├── timestamp.js │ │ │ ├── timestamp.js.map │ │ │ ├── ucs2length.d.ts │ │ │ ├── ucs2length.js │ │ │ ├── ucs2length.js.map │ │ │ ├── uri.d.ts │ │ │ ├── uri.js │ │ │ ├── uri.js.map │ │ │ ├── validation_error.d.ts │ │ │ ├── validation_error.js │ │ │ └── validation_error.js.map │ │ ├── standalone │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── instance.d.ts │ │ │ ├── instance.js │ │ │ └── instance.js.map │ │ ├── types │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── json-schema.d.ts │ │ │ ├── json-schema.js │ │ │ ├── json-schema.js.map │ │ │ ├── jtd-schema.d.ts │ │ │ ├── jtd-schema.js │ │ │ └── jtd-schema.js.map │ │ └── vocabularies │ │ │ ├── applicator │ │ │ ├── additionalItems.d.ts │ │ │ ├── additionalItems.js │ │ │ ├── additionalItems.js.map │ │ │ ├── additionalProperties.d.ts │ │ │ ├── additionalProperties.js │ │ │ ├── additionalProperties.js.map │ │ │ ├── allOf.d.ts │ │ │ ├── allOf.js │ │ │ ├── allOf.js.map │ │ │ ├── anyOf.d.ts │ │ │ ├── anyOf.js │ │ │ ├── anyOf.js.map │ │ │ ├── contains.d.ts │ │ │ ├── contains.js │ │ │ ├── contains.js.map │ │ │ ├── dependencies.d.ts │ │ │ ├── dependencies.js │ │ │ ├── dependencies.js.map │ │ │ ├── dependentSchemas.d.ts │ │ │ ├── dependentSchemas.js │ │ │ ├── dependentSchemas.js.map │ │ │ ├── if.d.ts │ │ │ ├── if.js │ │ │ ├── if.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── items.d.ts │ │ │ ├── items.js │ │ │ ├── items.js.map │ │ │ ├── items2020.d.ts │ │ │ ├── items2020.js │ │ │ ├── items2020.js.map │ │ │ ├── not.d.ts │ │ │ ├── not.js │ │ │ ├── not.js.map │ │ │ ├── oneOf.d.ts │ │ │ ├── oneOf.js │ │ │ ├── oneOf.js.map │ │ │ ├── patternProperties.d.ts │ │ │ ├── patternProperties.js │ │ │ ├── patternProperties.js.map │ │ │ ├── prefixItems.d.ts │ │ │ ├── prefixItems.js │ │ │ ├── prefixItems.js.map │ │ │ ├── properties.d.ts │ │ │ ├── properties.js │ │ │ ├── properties.js.map │ │ │ ├── propertyNames.d.ts │ │ │ ├── propertyNames.js │ │ │ ├── propertyNames.js.map │ │ │ ├── thenElse.d.ts │ │ │ ├── thenElse.js │ │ │ └── thenElse.js.map │ │ │ ├── code.d.ts │ │ │ ├── code.js │ │ │ ├── code.js.map │ │ │ ├── core │ │ │ ├── id.d.ts │ │ │ ├── id.js │ │ │ ├── id.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ └── ref.js.map │ │ │ ├── discriminator │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ └── types.js.map │ │ │ ├── draft2020.d.ts │ │ │ ├── draft2020.js │ │ │ ├── draft2020.js.map │ │ │ ├── draft7.d.ts │ │ │ ├── draft7.js │ │ │ ├── draft7.js.map │ │ │ ├── dynamic │ │ │ ├── dynamicAnchor.d.ts │ │ │ ├── dynamicAnchor.js │ │ │ ├── dynamicAnchor.js.map │ │ │ ├── dynamicRef.d.ts │ │ │ ├── dynamicRef.js │ │ │ ├── dynamicRef.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── recursiveAnchor.d.ts │ │ │ ├── recursiveAnchor.js │ │ │ ├── recursiveAnchor.js.map │ │ │ ├── recursiveRef.d.ts │ │ │ ├── recursiveRef.js │ │ │ └── recursiveRef.js.map │ │ │ ├── errors.d.ts │ │ │ ├── errors.js │ │ │ ├── errors.js.map │ │ │ ├── format │ │ │ ├── format.d.ts │ │ │ ├── format.js │ │ │ ├── format.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.js.map │ │ │ ├── jtd │ │ │ ├── discriminator.d.ts │ │ │ ├── discriminator.js │ │ │ ├── discriminator.js.map │ │ │ ├── elements.d.ts │ │ │ ├── elements.js │ │ │ ├── elements.js.map │ │ │ ├── enum.d.ts │ │ │ ├── enum.js │ │ │ ├── enum.js.map │ │ │ ├── error.d.ts │ │ │ ├── error.js │ │ │ ├── error.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── metadata.d.ts │ │ │ ├── metadata.js │ │ │ ├── metadata.js.map │ │ │ ├── nullable.d.ts │ │ │ ├── nullable.js │ │ │ ├── nullable.js.map │ │ │ ├── optionalProperties.d.ts │ │ │ ├── optionalProperties.js │ │ │ ├── optionalProperties.js.map │ │ │ ├── properties.d.ts │ │ │ ├── properties.js │ │ │ ├── properties.js.map │ │ │ ├── ref.d.ts │ │ │ ├── ref.js │ │ │ ├── ref.js.map │ │ │ ├── type.d.ts │ │ │ ├── type.js │ │ │ ├── type.js.map │ │ │ ├── union.d.ts │ │ │ ├── union.js │ │ │ ├── union.js.map │ │ │ ├── values.d.ts │ │ │ ├── values.js │ │ │ └── values.js.map │ │ │ ├── metadata.d.ts │ │ │ ├── metadata.js │ │ │ ├── metadata.js.map │ │ │ ├── next.d.ts │ │ │ ├── next.js │ │ │ ├── next.js.map │ │ │ ├── unevaluated │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── unevaluatedItems.d.ts │ │ │ ├── unevaluatedItems.js │ │ │ ├── unevaluatedItems.js.map │ │ │ ├── unevaluatedProperties.d.ts │ │ │ ├── unevaluatedProperties.js │ │ │ └── unevaluatedProperties.js.map │ │ │ └── validation │ │ │ ├── const.d.ts │ │ │ ├── const.js │ │ │ ├── const.js.map │ │ │ ├── dependentRequired.d.ts │ │ │ ├── dependentRequired.js │ │ │ ├── dependentRequired.js.map │ │ │ ├── enum.d.ts │ │ │ ├── enum.js │ │ │ ├── enum.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── limitContains.d.ts │ │ │ ├── limitContains.js │ │ │ ├── limitContains.js.map │ │ │ ├── limitItems.d.ts │ │ │ ├── limitItems.js │ │ │ ├── limitItems.js.map │ │ │ ├── limitLength.d.ts │ │ │ ├── limitLength.js │ │ │ ├── limitLength.js.map │ │ │ ├── limitNumber.d.ts │ │ │ ├── limitNumber.js │ │ │ ├── limitNumber.js.map │ │ │ ├── limitProperties.d.ts │ │ │ ├── limitProperties.js │ │ │ ├── limitProperties.js.map │ │ │ ├── multipleOf.d.ts │ │ │ ├── multipleOf.js │ │ │ ├── multipleOf.js.map │ │ │ ├── pattern.d.ts │ │ │ ├── pattern.js │ │ │ ├── pattern.js.map │ │ │ ├── required.d.ts │ │ │ ├── required.js │ │ │ ├── required.js.map │ │ │ ├── uniqueItems.d.ts │ │ │ ├── uniqueItems.js │ │ │ └── uniqueItems.js.map │ ├── lib │ │ ├── 2019.ts │ │ ├── 2020.ts │ │ ├── ajv.ts │ │ ├── compile │ │ │ ├── codegen │ │ │ │ ├── code.ts │ │ │ │ ├── index.ts │ │ │ │ └── scope.ts │ │ │ ├── errors.ts │ │ │ ├── index.ts │ │ │ ├── jtd │ │ │ │ ├── parse.ts │ │ │ │ ├── serialize.ts │ │ │ │ └── types.ts │ │ │ ├── names.ts │ │ │ ├── ref_error.ts │ │ │ ├── resolve.ts │ │ │ ├── rules.ts │ │ │ ├── util.ts │ │ │ └── validate │ │ │ │ ├── applicability.ts │ │ │ │ ├── boolSchema.ts │ │ │ │ ├── dataType.ts │ │ │ │ ├── defaults.ts │ │ │ │ ├── index.ts │ │ │ │ ├── keyword.ts │ │ │ │ └── subschema.ts │ │ ├── core.ts │ │ ├── jtd.ts │ │ ├── refs │ │ │ ├── data.json │ │ │ ├── json-schema-2019-09 │ │ │ │ ├── index.ts │ │ │ │ ├── meta │ │ │ │ │ ├── applicator.json │ │ │ │ │ ├── content.json │ │ │ │ │ ├── core.json │ │ │ │ │ ├── format.json │ │ │ │ │ ├── meta-data.json │ │ │ │ │ └── validation.json │ │ │ │ └── schema.json │ │ │ ├── json-schema-2020-12 │ │ │ │ ├── index.ts │ │ │ │ ├── meta │ │ │ │ │ ├── applicator.json │ │ │ │ │ ├── content.json │ │ │ │ │ ├── core.json │ │ │ │ │ ├── format-annotation.json │ │ │ │ │ ├── meta-data.json │ │ │ │ │ ├── unevaluated.json │ │ │ │ │ └── validation.json │ │ │ │ └── schema.json │ │ │ ├── json-schema-draft-06.json │ │ │ ├── json-schema-draft-07.json │ │ │ ├── json-schema-secure.json │ │ │ └── jtd-schema.ts │ │ ├── runtime │ │ │ ├── equal.ts │ │ │ ├── parseJson.ts │ │ │ ├── quote.ts │ │ │ ├── re2.ts │ │ │ ├── timestamp.ts │ │ │ ├── ucs2length.ts │ │ │ ├── uri.ts │ │ │ └── validation_error.ts │ │ ├── standalone │ │ │ ├── index.ts │ │ │ └── instance.ts │ │ ├── types │ │ │ ├── index.ts │ │ │ ├── json-schema.ts │ │ │ └── jtd-schema.ts │ │ └── vocabularies │ │ │ ├── applicator │ │ │ ├── additionalItems.ts │ │ │ ├── additionalProperties.ts │ │ │ ├── allOf.ts │ │ │ ├── anyOf.ts │ │ │ ├── contains.ts │ │ │ ├── dependencies.ts │ │ │ ├── dependentSchemas.ts │ │ │ ├── if.ts │ │ │ ├── index.ts │ │ │ ├── items.ts │ │ │ ├── items2020.ts │ │ │ ├── not.ts │ │ │ ├── oneOf.ts │ │ │ ├── patternProperties.ts │ │ │ ├── prefixItems.ts │ │ │ ├── properties.ts │ │ │ ├── propertyNames.ts │ │ │ └── thenElse.ts │ │ │ ├── code.ts │ │ │ ├── core │ │ │ ├── id.ts │ │ │ ├── index.ts │ │ │ └── ref.ts │ │ │ ├── discriminator │ │ │ ├── index.ts │ │ │ └── types.ts │ │ │ ├── draft2020.ts │ │ │ ├── draft7.ts │ │ │ ├── dynamic │ │ │ ├── dynamicAnchor.ts │ │ │ ├── dynamicRef.ts │ │ │ ├── index.ts │ │ │ ├── recursiveAnchor.ts │ │ │ └── recursiveRef.ts │ │ │ ├── errors.ts │ │ │ ├── format │ │ │ ├── format.ts │ │ │ └── index.ts │ │ │ ├── jtd │ │ │ ├── discriminator.ts │ │ │ ├── elements.ts │ │ │ ├── enum.ts │ │ │ ├── error.ts │ │ │ ├── index.ts │ │ │ ├── metadata.ts │ │ │ ├── nullable.ts │ │ │ ├── optionalProperties.ts │ │ │ ├── properties.ts │ │ │ ├── ref.ts │ │ │ ├── type.ts │ │ │ ├── union.ts │ │ │ └── values.ts │ │ │ ├── metadata.ts │ │ │ ├── next.ts │ │ │ ├── unevaluated │ │ │ ├── index.ts │ │ │ ├── unevaluatedItems.ts │ │ │ └── unevaluatedProperties.ts │ │ │ └── validation │ │ │ ├── const.ts │ │ │ ├── dependentRequired.ts │ │ │ ├── enum.ts │ │ │ ├── index.ts │ │ │ ├── limitContains.ts │ │ │ ├── limitItems.ts │ │ │ ├── limitLength.ts │ │ │ ├── limitNumber.ts │ │ │ ├── limitProperties.ts │ │ │ ├── multipleOf.ts │ │ │ ├── pattern.ts │ │ │ ├── required.ts │ │ │ └── uniqueItems.ts │ └── package.json ├── ansi-regex │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── ansi-styles │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── 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 ├── asap │ ├── CHANGES.md │ ├── LICENSE.md │ ├── README.md │ ├── asap.js │ ├── browser-asap.js │ ├── browser-raw.js │ ├── package.json │ └── raw.js ├── astral-regex │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── 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 ├── bin-links │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── bin-target.js │ │ ├── check-bin.js │ │ ├── check-bins.js │ │ ├── fix-bin.js │ │ ├── get-node-modules.js │ │ ├── get-paths.js │ │ ├── get-prefix.js │ │ ├── index.js │ │ ├── is-windows.js │ │ ├── link-bin.js │ │ ├── link-bins.js │ │ ├── link-gently.js │ │ ├── link-mans.js │ │ ├── man-target.js │ │ └── shim-bin.js │ ├── node_modules │ │ └── npm-normalize-package-bin │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── index.js │ │ │ └── package.json │ └── package.json ├── bl │ ├── .travis.yml │ ├── BufferList.js │ ├── LICENSE.md │ ├── README.md │ ├── bl.js │ ├── package.json │ └── test │ │ ├── convert.js │ │ ├── indexOf.js │ │ ├── isBufferList.js │ │ └── test.js ├── brace-expansion │ ├── .github │ │ └── FUNDING.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── buffer │ ├── AUTHORS.md │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── builtins │ ├── License │ ├── Readme.md │ ├── index.js │ └── package.json ├── cacache │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── content │ │ │ ├── path.js │ │ │ ├── read.js │ │ │ ├── rm.js │ │ │ └── write.js │ │ ├── entry-index.js │ │ ├── get.js │ │ ├── index.js │ │ ├── memoization.js │ │ ├── put.js │ │ ├── rm.js │ │ ├── util │ │ │ ├── fix-owner.js │ │ │ ├── hash-to-segments.js │ │ │ ├── move-file.js │ │ │ └── tmp.js │ │ └── verify.js │ └── package.json ├── chownr │ ├── LICENSE │ ├── README.md │ ├── chownr.js │ └── package.json ├── clean-stack │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── cli-cursor │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── cli-spinners │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ ├── readme.md │ └── spinners.json ├── cmd-shim │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── index.js │ │ └── to-batch-syntax.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 ├── combine-async-iterators │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── common-ancestor-path │ ├── LICENSE │ ├── README.md │ ├── 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-type │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── cssesc │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── bin │ │ └── cssesc │ ├── cssesc.js │ ├── man │ │ └── cssesc.1 │ └── package.json ├── debug │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── src │ │ ├── browser.js │ │ ├── common.js │ │ ├── index.js │ │ └── node.js ├── debuglog │ ├── LICENSE │ ├── README.md │ ├── debuglog.js │ └── package.json ├── delegates │ ├── .npmignore │ ├── History.md │ ├── License │ ├── Makefile │ ├── Readme.md │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── depd │ ├── History.md │ ├── LICENSE │ ├── Readme.md │ ├── index.js │ ├── lib │ │ ├── browser │ │ │ └── index.js │ │ └── compat │ │ │ ├── callsite-tostring.js │ │ │ ├── event-listener-count.js │ │ │ └── index.js │ └── package.json ├── dezalgo │ ├── LICENSE │ ├── README.md │ ├── dezalgo.js │ └── package.json ├── eastasianwidth │ ├── README.md │ ├── eastasianwidth.js │ └── package.json ├── emoji-regex │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── RGI_Emoji.d.ts │ ├── RGI_Emoji.js │ ├── es2015 │ │ ├── RGI_Emoji.d.ts │ │ ├── RGI_Emoji.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── text.d.ts │ │ └── text.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── text.d.ts │ └── text.js ├── encoding │ ├── .prettierrc.js │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── encoding.js │ ├── package.json │ └── test │ │ └── test.js ├── end-of-stream │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── env-paths │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── err-code │ ├── .editorconfig │ ├── .eslintrc.json │ ├── .travis.yml │ ├── README.md │ ├── bower.json │ ├── index.js │ ├── index.umd.js │ ├── package.json │ └── test │ │ ├── .eslintrc.json │ │ └── test.js ├── estree-walker │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── src │ │ ├── async.js │ │ ├── index.js │ │ ├── sync.js │ │ └── walker.js │ └── types │ │ ├── async.d.ts │ │ ├── index.d.ts │ │ ├── sync.d.ts │ │ └── walker.d.ts ├── fast-deep-equal │ ├── LICENSE │ ├── README.md │ ├── es6 │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── react.d.ts │ │ └── react.js │ ├── index.d.ts │ ├── index.js │ ├── package.json │ ├── react.d.ts │ └── react.js ├── fast-xml-parser │ ├── LICENSE │ ├── README.md │ ├── cli.js │ ├── package.json │ └── src │ │ ├── json2xml.js │ │ ├── nimndata.js │ │ ├── node2json.js │ │ ├── node2json_str.js │ │ ├── parser.d.ts │ │ ├── parser.js │ │ ├── read.js │ │ ├── util.js │ │ ├── validator.js │ │ ├── xmlNode.js │ │ └── xmlstr2xmlnode.js ├── frequency-set │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── package.json │ └── src │ │ └── utils.js ├── fs-constants │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── 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 │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── base-theme.js │ │ ├── error.js │ │ ├── has-color.js │ │ ├── index.js │ │ ├── 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 │ ├── node_modules │ │ ├── emoji-regex │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── es2015 │ │ │ │ ├── index.js │ │ │ │ └── text.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── text.js │ │ └── string-width │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ └── package.json ├── glob │ ├── LICENSE │ ├── README.md │ ├── common.js │ ├── glob.js │ ├── package.json │ └── sync.js ├── graceful-fs │ ├── LICENSE │ ├── README.md │ ├── clone.js │ ├── graceful-fs.js │ ├── legacy-streams.js │ ├── package.json │ └── polyfills.js ├── has-unicode │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── has │ ├── LICENSE-MIT │ ├── README.md │ ├── package.json │ ├── src │ │ └── index.js │ └── test │ │ └── index.js ├── hosted-git-info │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── git-host-info.js │ │ ├── git-host.js │ │ └── index.js │ └── package.json ├── http-cache-semantics │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── http-proxy-agent │ ├── README.md │ ├── dist │ │ ├── agent.d.ts │ │ ├── agent.js │ │ ├── agent.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ └── 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 │ └── package.json ├── humanize-ms │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── 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 ├── ieee754 │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── ignore-walk │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── imurmurhash │ ├── README.md │ ├── imurmurhash.js │ ├── imurmurhash.min.js │ └── package.json ├── indent-string │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── infer-owner │ ├── LICENSE │ ├── README.md │ ├── index.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 ├── is-base64 │ ├── .editorconfig │ ├── .gitattributes │ ├── .jscsrc │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── bin │ │ └── is-base64 │ ├── example │ │ └── example.js │ ├── is-base64.js │ ├── package.json │ └── test │ │ └── is-base64.js ├── is-core-module │ ├── .eslintrc │ ├── .nycrc │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── core.json │ ├── index.js │ ├── package.json │ └── test │ │ └── index.js ├── is-fullwidth-code-point │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── is-lambda │ ├── .npmignore │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test.js ├── is-minified-code │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── fetch-test-files.js │ ├── dist │ │ └── index.js │ ├── package.json │ ├── src │ │ └── index.js │ └── test │ │ ├── data │ │ └── packages.json │ │ └── tests.js ├── is-svg │ ├── 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 ├── itertools │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── builtins.d.ts │ ├── builtins.js │ ├── builtins.js.flow │ ├── custom.d.ts │ ├── custom.js │ ├── custom.js.flow │ ├── index.d.ts │ ├── index.js │ ├── index.js.flow │ ├── itertools.d.ts │ ├── itertools.js │ ├── itertools.js.flow │ ├── more-itertools.d.ts │ ├── more-itertools.js │ ├── more-itertools.js.flow │ ├── package.json │ ├── types.d.ts │ ├── types.js │ ├── types.js.flow │ ├── utils.d.ts │ ├── utils.js │ └── utils.js.flow ├── json-parse-even-better-errors │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── index.js │ └── package.json ├── json-schema-traverse │ ├── .eslintrc.yml │ ├── .github │ │ ├── FUNDING.yml │ │ └── workflows │ │ │ ├── build.yml │ │ │ └── publish.yml │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── package.json │ └── spec │ │ ├── .eslintrc.yml │ │ ├── fixtures │ │ └── schema.js │ │ └── index.spec.js ├── json-stringify-nice │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── jsonparse │ ├── .npmignore │ ├── LICENSE │ ├── README.markdown │ ├── bench.js │ ├── examples │ │ └── twitterfeed.js │ ├── jsonparse.js │ ├── package.json │ ├── samplejson │ │ ├── basic.json │ │ └── basic2.json │ └── test │ │ ├── big-token.js │ │ ├── boundary.js │ │ ├── offset.js │ │ ├── primitives.js │ │ ├── surrogate.js │ │ ├── unvalid.js │ │ └── utf8.js ├── just-diff-apply │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── index.mjs │ ├── index.tests.ts │ ├── package.json │ └── rollup.config.js ├── just-diff │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ ├── index.mjs │ ├── index.tests.ts │ ├── package.json │ └── rollup.config.js ├── kleur │ ├── colors.d.ts │ ├── colors.js │ ├── colors.mjs │ ├── index.d.ts │ ├── index.js │ ├── index.mjs │ ├── license │ ├── package.json │ └── readme.md ├── lodash.clonedeep │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── lodash.difference │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── lodash.get │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── lodash.set │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── lodash.truncate │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── lru-cache │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── make-fetch-happen │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── agent.js │ │ ├── cache │ │ │ ├── entry.js │ │ │ ├── errors.js │ │ │ ├── index.js │ │ │ ├── key.js │ │ │ └── policy.js │ │ ├── dns.js │ │ ├── fetch.js │ │ ├── index.js │ │ ├── options.js │ │ ├── pipeline.js │ │ └── remote.js │ └── package.json ├── meriyah │ ├── CHANGELOG.md │ ├── LICENSE.md │ ├── README.md │ ├── dist │ │ ├── meriyah.amd.js │ │ ├── meriyah.amd.min.js │ │ ├── meriyah.cjs │ │ ├── meriyah.cjs.js │ │ ├── meriyah.cjs.min.js │ │ ├── meriyah.esm.js │ │ ├── meriyah.esm.min.js │ │ ├── meriyah.esm.min.mjs │ │ ├── meriyah.esm.mjs │ │ ├── meriyah.iife.js │ │ ├── meriyah.iife.min.js │ │ ├── meriyah.min.cjs │ │ ├── meriyah.system.js │ │ ├── meriyah.system.min.js │ │ ├── meriyah.umd.cjs │ │ ├── meriyah.umd.es5.js │ │ ├── meriyah.umd.es5.min.js │ │ ├── meriyah.umd.js │ │ ├── meriyah.umd.min.cjs │ │ ├── meriyah.umd.min.js │ │ └── src │ │ │ ├── chars.d.ts │ │ │ ├── chars.d.ts.map │ │ │ ├── common.d.ts │ │ │ ├── common.d.ts.map │ │ │ ├── errors.d.ts │ │ │ ├── errors.d.ts.map │ │ │ ├── estree.d.ts │ │ │ ├── estree.d.ts.map │ │ │ ├── lexer │ │ │ ├── charClassifier.d.ts │ │ │ ├── charClassifier.d.ts.map │ │ │ ├── comments.d.ts │ │ │ ├── comments.d.ts.map │ │ │ ├── common.d.ts │ │ │ ├── common.d.ts.map │ │ │ ├── decodeHTML.d.ts │ │ │ ├── decodeHTML.d.ts.map │ │ │ ├── identifier.d.ts │ │ │ ├── identifier.d.ts.map │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ ├── jsx.d.ts │ │ │ ├── jsx.d.ts.map │ │ │ ├── numeric.d.ts │ │ │ ├── numeric.d.ts.map │ │ │ ├── regexp.d.ts │ │ │ ├── regexp.d.ts.map │ │ │ ├── scan.d.ts │ │ │ ├── scan.d.ts.map │ │ │ ├── string.d.ts │ │ │ ├── string.d.ts.map │ │ │ ├── template.d.ts │ │ │ └── template.d.ts.map │ │ │ ├── meriyah.d.ts │ │ │ ├── meriyah.d.ts.map │ │ │ ├── parser.d.ts │ │ │ ├── parser.d.ts.map │ │ │ ├── token.d.ts │ │ │ ├── token.d.ts.map │ │ │ ├── unicode.d.ts │ │ │ └── unicode.d.ts.map │ ├── package.json │ └── src │ │ ├── chars.ts │ │ ├── common.ts │ │ ├── errors.ts │ │ ├── estree.ts │ │ ├── lexer │ │ ├── charClassifier.ts │ │ ├── comments.ts │ │ ├── common.ts │ │ ├── decodeHTML.ts │ │ ├── identifier.ts │ │ ├── index.ts │ │ ├── jsx.ts │ │ ├── numeric.ts │ │ ├── regexp.ts │ │ ├── scan.ts │ │ ├── string.ts │ │ └── template.ts │ │ ├── meriyah.ts │ │ ├── parser.ts │ │ ├── token.ts │ │ └── unicode.ts ├── mimic-fn │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── minimatch │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── path.js │ ├── minimatch.js │ └── package.json ├── minipass-collect │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── minipass-fetch │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── abort-error.js │ │ ├── blob.js │ │ ├── body.js │ │ ├── fetch-error.js │ │ ├── headers.js │ │ ├── index.js │ │ ├── request.js │ │ └── response.js │ └── package.json ├── minipass-flush │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── minipass-json-stream │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── minipass-pipeline │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── minipass-sized │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── test │ │ └── basic.js ├── minipass │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── minizlib │ ├── LICENSE │ ├── README.md │ ├── constants.js │ ├── index.js │ └── package.json ├── mkdirp-classic │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── mkdirp-infer-owner │ ├── LICENSE │ ├── README.md │ ├── 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 ├── mri │ ├── index.d.ts │ ├── lib │ │ ├── index.js │ │ └── index.mjs │ ├── license.md │ ├── package.json │ └── readme.md ├── ms │ ├── index.js │ ├── license.md │ ├── package.json │ └── readme.md ├── negotiator │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ ├── charset.js │ │ ├── encoding.js │ │ ├── language.js │ │ └── mediaType.js │ └── package.json ├── node-gyp │ ├── .github │ │ ├── ISSUE_TEMPLATE.md │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ └── workflows │ │ │ ├── release-please.yml │ │ │ ├── tests.yml │ │ │ └── visual-studio.yml │ ├── CHANGELOG.md │ ├── CONTRIBUTING.md │ ├── LICENSE │ ├── README.md │ ├── SECURITY.md │ ├── addon.gypi │ ├── bin │ │ └── node-gyp.js │ ├── docs │ │ ├── Error-pre-versions-of-node-cannot-be-installed.md │ │ ├── Force-npm-to-use-global-node-gyp.md │ │ ├── Home.md │ │ ├── Linking-to-OpenSSL.md │ │ ├── README.md │ │ ├── Updating-npm-bundled-node-gyp.md │ │ └── binding.gyp-files-in-the-wild.md │ ├── gyp │ │ ├── .flake8 │ │ ├── .github │ │ │ └── workflows │ │ │ │ ├── Python_tests.yml │ │ │ │ ├── node-gyp.yml │ │ │ │ ├── nodejs-windows.yml │ │ │ │ └── release-please.yml │ │ ├── AUTHORS │ │ ├── CHANGELOG.md │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── data │ │ │ └── win │ │ │ │ └── large-pdb-shim.cc │ │ ├── gyp │ │ ├── gyp.bat │ │ ├── gyp_main.py │ │ ├── pylib │ │ │ └── gyp │ │ │ │ ├── MSVSNew.py │ │ │ │ ├── MSVSProject.py │ │ │ │ ├── MSVSSettings.py │ │ │ │ ├── MSVSSettings_test.py │ │ │ │ ├── MSVSToolFile.py │ │ │ │ ├── MSVSUserFile.py │ │ │ │ ├── MSVSUtil.py │ │ │ │ ├── MSVSVersion.py │ │ │ │ ├── __init__.py │ │ │ │ ├── common.py │ │ │ │ ├── common_test.py │ │ │ │ ├── easy_xml.py │ │ │ │ ├── easy_xml_test.py │ │ │ │ ├── flock_tool.py │ │ │ │ ├── generator │ │ │ │ ├── __init__.py │ │ │ │ ├── analyzer.py │ │ │ │ ├── android.py │ │ │ │ ├── cmake.py │ │ │ │ ├── compile_commands_json.py │ │ │ │ ├── dump_dependency_json.py │ │ │ │ ├── eclipse.py │ │ │ │ ├── gypd.py │ │ │ │ ├── gypsh.py │ │ │ │ ├── make.py │ │ │ │ ├── msvs.py │ │ │ │ ├── msvs_test.py │ │ │ │ ├── ninja.py │ │ │ │ ├── ninja_test.py │ │ │ │ ├── xcode.py │ │ │ │ └── xcode_test.py │ │ │ │ ├── input.py │ │ │ │ ├── input_test.py │ │ │ │ ├── mac_tool.py │ │ │ │ ├── msvs_emulation.py │ │ │ │ ├── ninja_syntax.py │ │ │ │ ├── simple_copy.py │ │ │ │ ├── win_tool.py │ │ │ │ ├── xcode_emulation.py │ │ │ │ ├── xcode_ninja.py │ │ │ │ ├── xcodeproj_file.py │ │ │ │ └── xml_fix.py │ │ ├── requirements_dev.txt │ │ ├── setup.py │ │ ├── test_gyp.py │ │ └── tools │ │ │ ├── README │ │ │ ├── Xcode │ │ │ ├── README │ │ │ └── Specifications │ │ │ │ ├── gyp.pbfilespec │ │ │ │ └── gyp.xclangspec │ │ │ ├── emacs │ │ │ ├── README │ │ │ ├── gyp-tests.el │ │ │ ├── gyp.el │ │ │ ├── run-unit-tests.sh │ │ │ └── testdata │ │ │ │ ├── media.gyp │ │ │ │ └── media.gyp.fontified │ │ │ ├── graphviz.py │ │ │ ├── pretty_gyp.py │ │ │ ├── pretty_sln.py │ │ │ └── pretty_vcproj.py │ ├── lib │ │ ├── Find-VisualStudio.cs │ │ ├── build.js │ │ ├── clean.js │ │ ├── configure.js │ │ ├── create-config-gypi.js │ │ ├── find-node-directory.js │ │ ├── find-python.js │ │ ├── find-visualstudio.js │ │ ├── install.js │ │ ├── list.js │ │ ├── node-gyp.js │ │ ├── process-release.js │ │ ├── rebuild.js │ │ ├── remove.js │ │ └── util.js │ ├── macOS_Catalina.md │ ├── macOS_Catalina_acid_test.sh │ ├── node_modules │ │ ├── .bin │ │ │ └── nopt │ │ ├── brace-expansion │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── common.js │ │ │ ├── glob.js │ │ │ ├── package.json │ │ │ └── sync.js │ │ ├── minimatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── minimatch.js │ │ │ └── package.json │ │ └── nopt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bin │ │ │ └── nopt.js │ │ │ ├── lib │ │ │ └── nopt.js │ │ │ └── package.json │ ├── package.json │ ├── src │ │ └── win_delay_load_hook.cc │ ├── test │ │ ├── common.js │ │ ├── fixtures │ │ │ ├── VS_2017_BuildTools_minimal.txt │ │ │ ├── VS_2017_Community_workload.txt │ │ │ ├── VS_2017_Express.txt │ │ │ ├── VS_2017_Unusable.txt │ │ │ ├── VS_2019_BuildTools_minimal.txt │ │ │ ├── VS_2019_Community_workload.txt │ │ │ ├── VS_2019_Preview.txt │ │ │ ├── certs.js │ │ │ ├── nodedir │ │ │ │ └── include │ │ │ │ │ └── node │ │ │ │ │ └── config.gypi │ │ │ └── test-charmap.py │ │ ├── process-exec-sync.js │ │ ├── simple-proxy.js │ │ ├── test-addon.js │ │ ├── test-configure-python.js │ │ ├── test-create-config-gypi.js │ │ ├── test-download.js │ │ ├── test-find-accessible-sync.js │ │ ├── test-find-node-directory.js │ │ ├── test-find-python.js │ │ ├── test-find-visualstudio.js │ │ ├── test-install.js │ │ ├── test-options.js │ │ └── test-process-release.js │ └── update-gyp.py ├── node-watch │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── has-native-recursive.js │ │ ├── is.js │ │ ├── watch.d.ts │ │ └── watch.js │ └── package.json ├── nopt │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── nopt.js │ ├── lib │ │ └── nopt.js │ └── package.json ├── normalize-package-data │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── extract_description.js │ │ ├── fixer.js │ │ ├── make_warning.js │ │ ├── normalize.js │ │ ├── safe_format.js │ │ ├── typos.json │ │ └── warning_messages.json │ └── package.json ├── npm-bundled │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── npm-install-checks │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── npm-normalize-package-bin │ ├── .github │ │ └── settings.yml │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── test │ │ ├── array.js │ │ ├── nobin.js │ │ ├── object.js │ │ └── string.js ├── npm-package-arg │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── npa.js │ └── package.json ├── npm-packlist │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── index.js │ ├── lib │ │ └── index.js │ ├── node_modules │ │ ├── npm-bundled │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ └── package.json │ │ └── npm-normalize-package-bin │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── index.js │ │ │ └── package.json │ └── package.json ├── npm-pick-manifest │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ └── index.js │ ├── node_modules │ │ └── npm-normalize-package-bin │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── index.js │ │ │ └── package.json │ └── package.json ├── npm-registry-fetch │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ ├── auth.js │ │ ├── check-response.js │ │ ├── clean-url.js │ │ ├── default-opts.js │ │ ├── errors.js │ │ └── index.js │ └── package.json ├── npmlog │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ └── log.js │ └── package.json ├── once │ ├── LICENSE │ ├── README.md │ ├── once.js │ └── package.json ├── onetime │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── p-map │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── pacote │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── bin.js │ │ ├── dir.js │ │ ├── fetcher.js │ │ ├── file.js │ │ ├── git.js │ │ ├── index.js │ │ ├── registry.js │ │ ├── remote.js │ │ └── util │ │ │ ├── add-git-sha.js │ │ │ ├── cache-dir.js │ │ │ ├── is-package-bin.js │ │ │ ├── npm.js │ │ │ ├── tar-create-options.js │ │ │ └── trailing-slashes.js │ └── package.json ├── parse-conflict-json │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── parse-ms │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── path-is-absolute │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── pluralize │ ├── LICENSE │ ├── Readme.md │ ├── package.json │ └── pluralize.js ├── postcss-selector-parser │ ├── API.md │ ├── CHANGELOG.md │ ├── LICENSE-MIT │ ├── README.md │ ├── dist │ │ ├── index.js │ │ ├── parser.js │ │ ├── processor.js │ │ ├── selectors │ │ │ ├── attribute.js │ │ │ ├── className.js │ │ │ ├── combinator.js │ │ │ ├── comment.js │ │ │ ├── constructors.js │ │ │ ├── container.js │ │ │ ├── guards.js │ │ │ ├── id.js │ │ │ ├── index.js │ │ │ ├── namespace.js │ │ │ ├── nesting.js │ │ │ ├── node.js │ │ │ ├── pseudo.js │ │ │ ├── root.js │ │ │ ├── selector.js │ │ │ ├── string.js │ │ │ ├── tag.js │ │ │ ├── types.js │ │ │ └── universal.js │ │ ├── sortAscending.js │ │ ├── tokenTypes.js │ │ ├── tokenize.js │ │ └── util │ │ │ ├── ensureObject.js │ │ │ ├── getProp.js │ │ │ ├── index.js │ │ │ ├── stripComments.js │ │ │ └── unesc.js │ ├── package.json │ └── postcss-selector-parser.d.ts ├── pretty-ms │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── proc-log │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── promise-all-reject-late │ ├── .github │ │ └── FUNDING.yml │ ├── .npmignore │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ └── test │ │ └── index.js ├── promise-call-limit │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── promise-inflight │ ├── LICENSE │ ├── README.md │ ├── inflight.js │ └── package.json ├── promise-retry │ ├── .editorconfig │ ├── .jshintrc │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ └── test │ │ └── test.js ├── pump │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ ├── test-browser.js │ └── test-node.js ├── punycode │ ├── LICENSE-MIT.txt │ ├── README.md │ ├── package.json │ ├── punycode.es6.js │ └── punycode.js ├── read-cmd-shim │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── read-package-json-fast │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── read-package-json │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── read-json.js │ ├── node_modules │ │ └── npm-normalize-package-bin │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── index.js │ │ │ └── package.json │ └── package.json ├── 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 ├── readdir-scoped-modules │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── readdir.js ├── regenerator-runtime │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── path.js │ └── runtime.js ├── regexp-tree │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── regexp-tree │ ├── dist │ │ ├── bin │ │ │ └── regexp-tree.js │ │ ├── compat-transpiler │ │ │ ├── index.js │ │ │ ├── runtime │ │ │ │ └── index.js │ │ │ └── transforms │ │ │ │ ├── compat-dotall-s-transform.js │ │ │ │ ├── compat-named-capturing-groups-transform.js │ │ │ │ ├── compat-x-flag-transform.js │ │ │ │ └── index.js │ │ ├── generator │ │ │ └── index.js │ │ ├── interpreter │ │ │ └── finite-automaton │ │ │ │ ├── dfa │ │ │ │ ├── dfa-minimizer.js │ │ │ │ └── dfa.js │ │ │ │ ├── index.js │ │ │ │ ├── nfa │ │ │ │ ├── builders.js │ │ │ │ ├── nfa-from-regexp.js │ │ │ │ ├── nfa-state.js │ │ │ │ └── nfa.js │ │ │ │ ├── special-symbols.js │ │ │ │ └── state.js │ │ ├── optimizer │ │ │ ├── index.js │ │ │ └── transforms │ │ │ │ ├── char-case-insensitive-lowercase-transform.js │ │ │ │ ├── char-class-classranges-merge-transform.js │ │ │ │ ├── char-class-classranges-to-chars-transform.js │ │ │ │ ├── char-class-remove-duplicates-transform.js │ │ │ │ ├── char-class-to-meta-transform.js │ │ │ │ ├── char-class-to-single-char-transform.js │ │ │ │ ├── char-code-to-simple-char-transform.js │ │ │ │ ├── char-escape-unescape-transform.js │ │ │ │ ├── char-surrogate-pair-to-single-unicode-transform.js │ │ │ │ ├── combine-repeating-patterns-transform.js │ │ │ │ ├── disjunction-remove-duplicates-transform.js │ │ │ │ ├── group-single-chars-to-char-class.js │ │ │ │ ├── index.js │ │ │ │ ├── quantifier-range-to-symbol-transform.js │ │ │ │ ├── quantifiers-merge-transform.js │ │ │ │ ├── remove-empty-group-transform.js │ │ │ │ └── ungroup-transform.js │ │ ├── parser │ │ │ ├── generated │ │ │ │ └── regexp-tree.js │ │ │ ├── index.js │ │ │ └── unicode │ │ │ │ └── parser-unicode-properties.js │ │ ├── regexp-tree.js │ │ ├── transform │ │ │ ├── index.js │ │ │ └── utils.js │ │ ├── traverse │ │ │ ├── index.js │ │ │ └── node-path.js │ │ └── utils │ │ │ └── clone.js │ ├── index.d.ts │ ├── index.js │ └── package.json ├── require-from-string │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── restore-cursor │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── package.json │ └── readme.md ├── retry │ ├── .npmignore │ ├── .travis.yml │ ├── License │ ├── Makefile │ ├── README.md │ ├── equation.gif │ ├── example │ │ ├── dns.js │ │ └── stop.js │ ├── index.js │ ├── lib │ │ ├── retry.js │ │ └── retry_operation.js │ ├── package.json │ └── test │ │ ├── common.js │ │ └── integration │ │ ├── test-forever.js │ │ ├── test-retry-operation.js │ │ ├── test-retry-wrap.js │ │ └── test-timeouts.js ├── rimraf │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin.js │ ├── node_modules │ │ ├── brace-expansion │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ │ ├── glob │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── common.js │ │ │ ├── glob.js │ │ │ ├── package.json │ │ │ └── sync.js │ │ └── minimatch │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── minimatch.js │ │ │ └── package.json │ ├── package.json │ └── rimraf.js ├── sade │ ├── index.d.ts │ ├── lib │ │ ├── index.js │ │ └── index.mjs │ ├── license │ ├── package.json │ └── readme.md ├── safe-buffer │ ├── LICENSE │ ├── README.md │ ├── index.d.ts │ ├── index.js │ └── package.json ├── safe-regex │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── cli.js │ ├── example │ │ └── safe.js │ ├── index.js │ ├── lib │ │ ├── analyzer-family.js │ │ ├── analyzer.js │ │ └── heuristic-analyzer.js │ ├── package.json │ └── test │ │ └── regex.spec.js ├── safer-buffer │ ├── LICENSE │ ├── Porting-Buffer.md │ ├── Readme.md │ ├── dangerous.js │ ├── package.json │ ├── safer.js │ └── tests.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 │ ├── node_modules │ │ └── lru-cache │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── index.js │ │ │ └── package.json │ ├── 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 ├── set-blocking │ ├── CHANGELOG.md │ ├── LICENSE.txt │ ├── README.md │ ├── index.js │ └── package.json ├── signal-exit │ ├── LICENSE.txt │ ├── README.md │ ├── index.js │ ├── package.json │ └── signals.js ├── slice-ansi │ ├── 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-proxy-agent │ ├── README.md │ ├── dist │ │ ├── index.d.ts │ │ ├── index.js │ │ └── index.js.map │ └── package.json ├── 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 ├── spdx-correct │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── spdx-exceptions │ ├── README.md │ ├── index.json │ └── package.json ├── spdx-expression-parse │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── package.json │ ├── parse.js │ └── scan.js ├── spdx-license-ids │ ├── README.md │ ├── deprecated.json │ ├── index.json │ └── package.json ├── ssri │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── statuses │ ├── HISTORY.md │ ├── LICENSE │ ├── README.md │ ├── codes.json │ ├── index.js │ └── package.json ├── string-width │ ├── index.d.ts │ ├── index.js │ ├── license │ ├── node_modules │ │ ├── ansi-regex │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ │ └── strip-ansi │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ ├── 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 ├── strnum │ ├── .vscode │ │ └── launch.json │ ├── LICENSE │ ├── README.md │ ├── package.json │ ├── strnum.js │ └── strnum.test.js ├── table │ ├── LICENSE │ ├── README.md │ ├── dist │ │ └── src │ │ │ ├── alignSpanningCell.d.ts │ │ │ ├── alignSpanningCell.js │ │ │ ├── alignSpanningCell.js.map │ │ │ ├── alignString.d.ts │ │ │ ├── alignString.js │ │ │ ├── alignString.js.map │ │ │ ├── alignTableData.d.ts │ │ │ ├── alignTableData.js │ │ │ ├── alignTableData.js.map │ │ │ ├── calculateCellHeight.d.ts │ │ │ ├── calculateCellHeight.js │ │ │ ├── calculateCellHeight.js.map │ │ │ ├── calculateMaximumColumnWidths.d.ts │ │ │ ├── calculateMaximumColumnWidths.js │ │ │ ├── calculateMaximumColumnWidths.js.map │ │ │ ├── calculateOutputColumnWidths.d.ts │ │ │ ├── calculateOutputColumnWidths.js │ │ │ ├── calculateOutputColumnWidths.js.map │ │ │ ├── calculateRowHeights.d.ts │ │ │ ├── calculateRowHeights.js │ │ │ ├── calculateRowHeights.js.map │ │ │ ├── calculateSpanningCellWidth.d.ts │ │ │ ├── calculateSpanningCellWidth.js │ │ │ ├── calculateSpanningCellWidth.js.map │ │ │ ├── createStream.d.ts │ │ │ ├── createStream.js │ │ │ ├── createStream.js.map │ │ │ ├── drawBorder.d.ts │ │ │ ├── drawBorder.js │ │ │ ├── drawBorder.js.map │ │ │ ├── drawContent.d.ts │ │ │ ├── drawContent.js │ │ │ ├── drawContent.js.map │ │ │ ├── drawRow.d.ts │ │ │ ├── drawRow.js │ │ │ ├── drawRow.js.map │ │ │ ├── drawTable.d.ts │ │ │ ├── drawTable.js │ │ │ ├── drawTable.js.map │ │ │ ├── generated │ │ │ ├── validators.d.ts │ │ │ ├── validators.js │ │ │ └── validators.js.map │ │ │ ├── getBorderCharacters.d.ts │ │ │ ├── getBorderCharacters.js │ │ │ ├── getBorderCharacters.js.map │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── injectHeaderConfig.d.ts │ │ │ ├── injectHeaderConfig.js │ │ │ ├── injectHeaderConfig.js.map │ │ │ ├── makeRangeConfig.d.ts │ │ │ ├── makeRangeConfig.js │ │ │ ├── makeRangeConfig.js.map │ │ │ ├── makeStreamConfig.d.ts │ │ │ ├── makeStreamConfig.js │ │ │ ├── makeStreamConfig.js.map │ │ │ ├── makeTableConfig.d.ts │ │ │ ├── makeTableConfig.js │ │ │ ├── makeTableConfig.js.map │ │ │ ├── mapDataUsingRowHeights.d.ts │ │ │ ├── mapDataUsingRowHeights.js │ │ │ ├── mapDataUsingRowHeights.js.map │ │ │ ├── padTableData.d.ts │ │ │ ├── padTableData.js │ │ │ ├── padTableData.js.map │ │ │ ├── schemas │ │ │ ├── config.json │ │ │ ├── shared.json │ │ │ └── streamConfig.json │ │ │ ├── spanningCellManager.d.ts │ │ │ ├── spanningCellManager.js │ │ │ ├── spanningCellManager.js.map │ │ │ ├── stringifyTableData.d.ts │ │ │ ├── stringifyTableData.js │ │ │ ├── stringifyTableData.js.map │ │ │ ├── table.d.ts │ │ │ ├── table.js │ │ │ ├── table.js.map │ │ │ ├── truncateTableData.d.ts │ │ │ ├── truncateTableData.js │ │ │ ├── truncateTableData.js.map │ │ │ ├── types │ │ │ ├── api.d.ts │ │ │ ├── api.js │ │ │ ├── api.js.map │ │ │ ├── internal.d.ts │ │ │ ├── internal.js │ │ │ └── internal.js.map │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ ├── utils.js.map │ │ │ ├── validateConfig.d.ts │ │ │ ├── validateConfig.js │ │ │ ├── validateConfig.js.map │ │ │ ├── validateSpanningCellConfig.d.ts │ │ │ ├── validateSpanningCellConfig.js │ │ │ ├── validateSpanningCellConfig.js.map │ │ │ ├── validateTableData.d.ts │ │ │ ├── validateTableData.js │ │ │ ├── validateTableData.js.map │ │ │ ├── wrapCell.d.ts │ │ │ ├── wrapCell.js │ │ │ ├── wrapCell.js.map │ │ │ ├── wrapString.d.ts │ │ │ ├── wrapString.js │ │ │ ├── wrapString.js.map │ │ │ ├── wrapWord.d.ts │ │ │ ├── wrapWord.js │ │ │ └── wrapWord.js.map │ ├── node_modules │ │ ├── emoji-regex │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── es2015 │ │ │ │ ├── index.js │ │ │ │ └── text.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── text.js │ │ └── string-width │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ └── package.json ├── tar-fs │ ├── .travis.yml │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── node_modules │ │ └── chownr │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── chownr.js │ │ │ └── package.json │ ├── package.json │ └── test │ │ ├── fixtures │ │ ├── a │ │ │ └── hello.txt │ │ ├── b │ │ │ └── a │ │ │ │ └── test.txt │ │ ├── d │ │ │ ├── file1 │ │ │ ├── file2 │ │ │ ├── sub-dir │ │ │ │ └── file5 │ │ │ └── sub-files │ │ │ │ ├── file3 │ │ │ │ └── file4 │ │ ├── e │ │ │ ├── directory │ │ │ │ └── .ignore │ │ │ └── file │ │ └── invalid.tar │ │ └── index.js ├── tar-stream │ ├── LICENSE │ ├── README.md │ ├── extract.js │ ├── headers.js │ ├── index.js │ ├── pack.js │ ├── package.json │ └── sandbox.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 ├── treeverse │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── breadth.js │ │ ├── depth-descent.js │ │ ├── depth.js │ │ └── index.js │ └── package.json ├── ts-pattern │ ├── LICENSE │ ├── README.md │ ├── lib │ │ ├── guards.d.ts │ │ ├── guards.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── symbols.d.ts │ │ ├── symbols.js │ │ ├── types │ │ │ ├── BuildMany.d.ts │ │ │ ├── BuildMany.js │ │ │ ├── DeepExclude.d.ts │ │ │ ├── DeepExclude.js │ │ │ ├── DistributeUnions.d.ts │ │ │ ├── DistributeUnions.js │ │ │ ├── ExtractPreciseValue.d.ts │ │ │ ├── ExtractPreciseValue.js │ │ │ ├── FindSelected.d.ts │ │ │ ├── FindSelected.js │ │ │ ├── InvertPattern.d.ts │ │ │ ├── InvertPattern.js │ │ │ ├── IsMatching.d.ts │ │ │ ├── IsMatching.js │ │ │ ├── Match.d.ts │ │ │ ├── Match.js │ │ │ ├── Pattern.d.ts │ │ │ ├── Pattern.js │ │ │ ├── helpers.d.ts │ │ │ └── helpers.js │ │ ├── wildcards.d.ts │ │ └── wildcards.js │ └── package.json ├── ts-results │ ├── LICENSE │ ├── README.md │ ├── esm │ │ ├── index.js │ │ ├── index.js.map │ │ ├── option.js │ │ ├── option.js.map │ │ ├── result.js │ │ ├── result.js.map │ │ ├── rxjs-operators │ │ │ ├── index.js │ │ │ └── index.js.map │ │ ├── utils.js │ │ └── utils.js.map │ ├── index.d.ts │ ├── index.d.ts.map │ ├── index.js │ ├── index.js.map │ ├── option.d.ts │ ├── option.d.ts.map │ ├── option.js │ ├── option.js.map │ ├── package.json │ ├── result.d.ts │ ├── result.d.ts.map │ ├── result.js │ ├── result.js.map │ ├── rxjs-operators │ │ ├── index.d.ts │ │ ├── index.d.ts.map │ │ ├── index.js │ │ ├── index.js.map │ │ └── package.json │ ├── utils.d.ts │ ├── utils.d.ts.map │ ├── utils.js │ └── utils.js.map ├── tslib │ ├── CopyrightNotice.txt │ ├── LICENSE.txt │ ├── README.md │ ├── modules │ │ ├── index.js │ │ └── package.json │ ├── package.json │ ├── tslib.d.ts │ ├── tslib.es6.html │ ├── tslib.es6.js │ ├── tslib.html │ └── tslib.js ├── tunnel │ ├── .idea │ │ ├── encodings.xml │ │ ├── modules.xml │ │ ├── node-tunnel.iml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── .travis.yml │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── index.js │ ├── lib │ │ └── tunnel.js │ └── package.json ├── type-fest │ ├── index.d.ts │ ├── package.json │ ├── readme.md │ └── source │ │ ├── async-return-type.d.ts │ │ ├── asyncify.d.ts │ │ ├── basic.d.ts │ │ ├── camel-case.d.ts │ │ ├── camel-cased-properties-deep.d.ts │ │ ├── camel-cased-properties.d.ts │ │ ├── conditional-except.d.ts │ │ ├── conditional-keys.d.ts │ │ ├── conditional-pick.d.ts │ │ ├── delimiter-case.d.ts │ │ ├── delimiter-cased-properties-deep.d.ts │ │ ├── delimiter-cased-properties.d.ts │ │ ├── entries.d.ts │ │ ├── entry.d.ts │ │ ├── exact.d.ts │ │ ├── except.d.ts │ │ ├── fixed-length-array.d.ts │ │ ├── get.d.ts │ │ ├── has-optional-keys.d.ts │ │ ├── has-required-keys.d.ts │ │ ├── includes.d.ts │ │ ├── internal.d.ts │ │ ├── invariant-of.d.ts │ │ ├── iterable-element.d.ts │ │ ├── join.d.ts │ │ ├── jsonify.d.ts │ │ ├── kebab-case.d.ts │ │ ├── kebab-cased-properties-deep.d.ts │ │ ├── kebab-cased-properties.d.ts │ │ ├── last-array-element.d.ts │ │ ├── literal-to-primitive.d.ts │ │ ├── literal-union.d.ts │ │ ├── merge-exclusive.d.ts │ │ ├── merge.d.ts │ │ ├── multidimensional-array.d.ts │ │ ├── multidimensional-readonly-array.d.ts │ │ ├── mutable.d.ts │ │ ├── numeric.d.ts │ │ ├── observable-like.d.ts │ │ ├── opaque.d.ts │ │ ├── optional-keys-of.d.ts │ │ ├── package-json.d.ts │ │ ├── partial-deep.d.ts │ │ ├── partial-on-undefined-deep.d.ts │ │ ├── pascal-case.d.ts │ │ ├── pascal-cased-properties-deep.d.ts │ │ ├── pascal-cased-properties.d.ts │ │ ├── primitive.d.ts │ │ ├── promisable.d.ts │ │ ├── promise-value.d.ts │ │ ├── readonly-deep.d.ts │ │ ├── readonly-tuple.d.ts │ │ ├── remove-index-signature.d.ts │ │ ├── replace.d.ts │ │ ├── require-all-or-none.d.ts │ │ ├── require-at-least-one.d.ts │ │ ├── require-exactly-one.d.ts │ │ ├── required-keys-of.d.ts │ │ ├── schema.d.ts │ │ ├── screaming-snake-case.d.ts │ │ ├── set-non-nullable.d.ts │ │ ├── set-optional.d.ts │ │ ├── set-required.d.ts │ │ ├── set-return-type.d.ts │ │ ├── simplify.d.ts │ │ ├── snake-case.d.ts │ │ ├── snake-cased-properties-deep.d.ts │ │ ├── snake-cased-properties.d.ts │ │ ├── split.d.ts │ │ ├── spread.d.ts │ │ ├── string-key-of.d.ts │ │ ├── stringified.d.ts │ │ ├── trim.d.ts │ │ ├── tsconfig-json.d.ts │ │ ├── typed-array.d.ts │ │ ├── union-to-intersection.d.ts │ │ ├── value-of.d.ts │ │ └── writable.d.ts ├── undici │ ├── LICENSE │ ├── README.md │ ├── docs │ │ ├── api │ │ │ ├── Agent.md │ │ │ ├── BalancedPool.md │ │ │ ├── Client.md │ │ │ ├── Connector.md │ │ │ ├── DiagnosticsChannel.md │ │ │ ├── Dispatcher.md │ │ │ ├── Errors.md │ │ │ ├── MockAgent.md │ │ │ ├── MockClient.md │ │ │ ├── MockErrors.md │ │ │ ├── MockPool.md │ │ │ ├── Pool.md │ │ │ ├── PoolStats.md │ │ │ ├── ProxyAgent.md │ │ │ └── api-lifecycle.md │ │ ├── assets │ │ │ └── lifecycle-diagram.png │ │ └── best-practices │ │ │ ├── client-certificate.md │ │ │ ├── mocking-request.md │ │ │ ├── proxy.md │ │ │ └── writing-tests.md │ ├── index-fetch.js │ ├── index.d.ts │ ├── index.js │ ├── lib │ │ ├── agent.js │ │ ├── api │ │ │ ├── abort-signal.js │ │ │ ├── api-connect.js │ │ │ ├── api-pipeline.js │ │ │ ├── api-request.js │ │ │ ├── api-stream.js │ │ │ ├── api-upgrade.js │ │ │ ├── index.js │ │ │ └── readable.js │ │ ├── balanced-pool.js │ │ ├── client.js │ │ ├── compat │ │ │ └── dispatcher-weakref.js │ │ ├── core │ │ │ ├── connect.js │ │ │ ├── errors.js │ │ │ ├── request.js │ │ │ ├── symbols.js │ │ │ └── util.js │ │ ├── dispatcher-base.js │ │ ├── dispatcher.js │ │ ├── fetch │ │ │ ├── LICENSE │ │ │ ├── body.js │ │ │ ├── constants.js │ │ │ ├── dataURL.js │ │ │ ├── file.js │ │ │ ├── formdata.js │ │ │ ├── headers.js │ │ │ ├── index.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── symbols.js │ │ │ ├── util.js │ │ │ └── webidl.js │ │ ├── global.js │ │ ├── handler │ │ │ └── redirect.js │ │ ├── llhttp │ │ │ ├── constants.d.ts │ │ │ ├── constants.js │ │ │ ├── constants.js.map │ │ │ ├── llhttp.wasm │ │ │ ├── llhttp.wasm.js │ │ │ ├── llhttp_simd.wasm │ │ │ ├── llhttp_simd.wasm.js │ │ │ ├── utils.d.ts │ │ │ ├── utils.js │ │ │ └── utils.js.map │ │ ├── mock │ │ │ ├── mock-agent.js │ │ │ ├── mock-client.js │ │ │ ├── mock-errors.js │ │ │ ├── mock-interceptor.js │ │ │ ├── mock-pool.js │ │ │ ├── mock-symbols.js │ │ │ ├── mock-utils.js │ │ │ ├── pending-interceptors-formatter.js │ │ │ └── pluralizer.js │ │ ├── node │ │ │ └── fixed-queue.js │ │ ├── pool-base.js │ │ ├── pool-stats.js │ │ ├── pool.js │ │ └── proxy-agent.js │ ├── package.json │ └── types │ │ ├── agent.d.ts │ │ ├── api.d.ts │ │ ├── balanced-pool.d.ts │ │ ├── client.d.ts │ │ ├── connector.d.ts │ │ ├── diagnostics-channel.d.ts │ │ ├── dispatcher.d.ts │ │ ├── errors.d.ts │ │ ├── fetch.d.ts │ │ ├── file.d.ts │ │ ├── formdata.d.ts │ │ ├── global-dispatcher.d.ts │ │ ├── mock-agent.d.ts │ │ ├── mock-client.d.ts │ │ ├── mock-errors.d.ts │ │ ├── mock-interceptor.d.ts │ │ ├── mock-pool.d.ts │ │ ├── pool-stats.d.ts │ │ ├── pool.d.ts │ │ ├── proxy-agent.d.ts │ │ └── readable.d.ts ├── unique-filename │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── unique-slug │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── uri-js │ ├── LICENSE │ ├── README.md │ ├── dist │ │ ├── es5 │ │ │ ├── uri.all.d.ts │ │ │ ├── uri.all.js │ │ │ ├── uri.all.js.map │ │ │ ├── uri.all.min.d.ts │ │ │ ├── uri.all.min.js │ │ │ └── uri.all.min.js.map │ │ └── esnext │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── index.js.map │ │ │ ├── regexps-iri.d.ts │ │ │ ├── regexps-iri.js │ │ │ ├── regexps-iri.js.map │ │ │ ├── regexps-uri.d.ts │ │ │ ├── regexps-uri.js │ │ │ ├── regexps-uri.js.map │ │ │ ├── schemes │ │ │ ├── http.d.ts │ │ │ ├── http.js │ │ │ ├── http.js.map │ │ │ ├── https.d.ts │ │ │ ├── https.js │ │ │ ├── https.js.map │ │ │ ├── mailto.d.ts │ │ │ ├── mailto.js │ │ │ ├── mailto.js.map │ │ │ ├── urn-uuid.d.ts │ │ │ ├── urn-uuid.js │ │ │ ├── urn-uuid.js.map │ │ │ ├── urn.d.ts │ │ │ ├── urn.js │ │ │ ├── urn.js.map │ │ │ ├── ws.d.ts │ │ │ ├── ws.js │ │ │ ├── ws.js.map │ │ │ ├── wss.d.ts │ │ │ ├── wss.js │ │ │ └── wss.js.map │ │ │ ├── uri.d.ts │ │ │ ├── uri.js │ │ │ ├── uri.js.map │ │ │ ├── util.d.ts │ │ │ ├── util.js │ │ │ └── util.js.map │ ├── package.json │ └── yarn.lock ├── util-deprecate │ ├── History.md │ ├── LICENSE │ ├── README.md │ ├── browser.js │ ├── node.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 ├── validate-npm-package-license │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── validate-npm-package-name │ ├── LICENSE │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── walk-up-path │ ├── LICENSE │ ├── README.md │ ├── index.js │ └── package.json ├── which │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── bin │ │ └── node-which │ ├── package.json │ └── which.js ├── wide-align │ ├── LICENSE │ ├── README.md │ ├── align.js │ ├── node_modules │ │ ├── emoji-regex │ │ │ ├── LICENSE-MIT.txt │ │ │ ├── README.md │ │ │ ├── es2015 │ │ │ │ ├── index.js │ │ │ │ └── text.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── package.json │ │ │ └── text.js │ │ └── string-width │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── license │ │ │ ├── package.json │ │ │ └── readme.md │ └── package.json ├── wrappy │ ├── LICENSE │ ├── README.md │ ├── package.json │ └── wrappy.js ├── write-file-atomic │ ├── LICENSE.md │ ├── README.md │ ├── lib │ │ └── index.js │ └── package.json ├── yallist │ ├── LICENSE │ ├── README.md │ ├── iterator.js │ ├── package.json │ └── yallist.js └── zen-observable │ ├── .editorconfig │ ├── .eslintrc.js │ ├── LICENSE │ ├── README.md │ ├── esm.js │ ├── extras.js │ ├── index.js │ ├── lib │ ├── Observable.js │ └── extras.js │ ├── package.json │ ├── scripts │ ├── babel-plugins.js │ ├── build.js │ └── mocha-require.js │ ├── src │ ├── Observable.js │ └── extras.js │ └── test │ ├── concat.js │ ├── constructor.js │ ├── extras │ ├── combine-latest.js │ ├── merge.js │ ├── parse.js │ └── zip.js │ ├── filter.js │ ├── flat-map.js │ ├── for-each.js │ ├── from.js │ ├── map.js │ ├── observer-closed.js │ ├── observer-complete.js │ ├── observer-error.js │ ├── observer-next.js │ ├── of.js │ ├── properties.js │ ├── reduce.js │ ├── setup.js │ ├── species.js │ ├── subscribe.js │ └── subscription.js ├── package.json └── src └── summary.js /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /node_modules/.bin/arborist: -------------------------------------------------------------------------------- 1 | ../@npmcli/arborist/bin/index.js -------------------------------------------------------------------------------- /node_modules/.bin/color-support: -------------------------------------------------------------------------------- 1 | ../color-support/bin.js -------------------------------------------------------------------------------- /node_modules/.bin/cssesc: -------------------------------------------------------------------------------- 1 | ../cssesc/bin/cssesc -------------------------------------------------------------------------------- /node_modules/.bin/installed-package-contents: -------------------------------------------------------------------------------- 1 | ../@npmcli/installed-package-contents/index.js -------------------------------------------------------------------------------- /node_modules/.bin/is-base64: -------------------------------------------------------------------------------- 1 | ../is-base64/bin/is-base64 -------------------------------------------------------------------------------- /node_modules/.bin/is_base64: -------------------------------------------------------------------------------- 1 | ../is-base64/bin/is-base64 -------------------------------------------------------------------------------- /node_modules/.bin/mkdirp: -------------------------------------------------------------------------------- 1 | ../mkdirp/bin/cmd.js -------------------------------------------------------------------------------- /node_modules/.bin/node-gyp: -------------------------------------------------------------------------------- 1 | ../node-gyp/bin/node-gyp.js -------------------------------------------------------------------------------- /node_modules/.bin/node-which: -------------------------------------------------------------------------------- 1 | ../which/bin/node-which -------------------------------------------------------------------------------- /node_modules/.bin/nopt: -------------------------------------------------------------------------------- 1 | ../nopt/bin/nopt.js -------------------------------------------------------------------------------- /node_modules/.bin/npm-packlist: -------------------------------------------------------------------------------- 1 | ../npm-packlist/bin/index.js -------------------------------------------------------------------------------- /node_modules/.bin/nsci: -------------------------------------------------------------------------------- 1 | ../@nodesecure/ci/dist/bin/cli.js -------------------------------------------------------------------------------- /node_modules/.bin/pacote: -------------------------------------------------------------------------------- 1 | ../pacote/lib/bin.js -------------------------------------------------------------------------------- /node_modules/.bin/regexp-tree: -------------------------------------------------------------------------------- 1 | ../regexp-tree/bin/regexp-tree -------------------------------------------------------------------------------- /node_modules/.bin/rimraf: -------------------------------------------------------------------------------- 1 | ../rimraf/bin.js -------------------------------------------------------------------------------- /node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/dist/bin/uuid -------------------------------------------------------------------------------- /node_modules/.bin/xml2js: -------------------------------------------------------------------------------- 1 | ../fast-xml-parser/cli.js -------------------------------------------------------------------------------- /node_modules/@actions/core/lib/file-command.d.ts: -------------------------------------------------------------------------------- 1 | export declare function issueCommand(command: string, message: any): void; 2 | -------------------------------------------------------------------------------- /node_modules/@actions/core/lib/oidc-utils.d.ts: -------------------------------------------------------------------------------- 1 | export declare class OidcClient { 2 | private static createHttpClient; 3 | private static getRequestToken; 4 | private static getIDTokenUrl; 5 | private static getCall; 6 | static getIDToken(audience?: string): Promise; 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/@actions/http-client/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /node_modules/@actions/http-client/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/@actions/http-client/lib/proxy.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getProxyUrl(reqUrl: URL): URL | undefined; 2 | export declare function checkBypass(reqUrl: URL): boolean; 3 | -------------------------------------------------------------------------------- /node_modules/@babel/runtime/README.md: -------------------------------------------------------------------------------- 1 | # @babel/runtime 2 | 3 | > babel's modular runtime helpers 4 | 5 | See our website [@babel/runtime](https://babeljs.io/docs/en/babel-runtime) for more information. 6 | 7 | ## Install 8 | 9 | Using npm: 10 | 11 | ```sh 12 | npm install --save @babel/runtime 13 | ``` 14 | 15 | or using yarn: 16 | 17 | ```sh 18 | yarn add @babel/runtime 19 | ``` 20 | -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/AwaitValue.js: -------------------------------------------------------------------------------- 1 | function _AwaitValue(value) { 2 | this.wrapped = value; 3 | } 4 | 5 | module.exports = _AwaitValue, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/arrayWithHoles.js: -------------------------------------------------------------------------------- 1 | function _arrayWithHoles(arr) { 2 | if (Array.isArray(arr)) return arr; 3 | } 4 | 5 | module.exports = _arrayWithHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/arrayWithoutHoles.js: -------------------------------------------------------------------------------- 1 | var arrayLikeToArray = require("./arrayLikeToArray.js"); 2 | 3 | function _arrayWithoutHoles(arr) { 4 | if (Array.isArray(arr)) return arrayLikeToArray(arr); 5 | } 6 | 7 | module.exports = _arrayWithoutHoles, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/assertThisInitialized.js: -------------------------------------------------------------------------------- 1 | function _assertThisInitialized(self) { 2 | if (self === void 0) { 3 | throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); 4 | } 5 | 6 | return self; 7 | } 8 | 9 | module.exports = _assertThisInitialized, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/awaitAsyncGenerator.js: -------------------------------------------------------------------------------- 1 | var AwaitValue = require("./AwaitValue.js"); 2 | 3 | function _awaitAsyncGenerator(value) { 4 | return new AwaitValue(value); 5 | } 6 | 7 | module.exports = _awaitAsyncGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classApplyDescriptorGet.js: -------------------------------------------------------------------------------- 1 | function _classApplyDescriptorGet(receiver, descriptor) { 2 | if (descriptor.get) { 3 | return descriptor.get.call(receiver); 4 | } 5 | 6 | return descriptor.value; 7 | } 8 | 9 | module.exports = _classApplyDescriptorGet, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classCallCheck.js: -------------------------------------------------------------------------------- 1 | function _classCallCheck(instance, Constructor) { 2 | if (!(instance instanceof Constructor)) { 3 | throw new TypeError("Cannot call a class as a function"); 4 | } 5 | } 6 | 7 | module.exports = _classCallCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classNameTDZError.js: -------------------------------------------------------------------------------- 1 | function _classNameTDZError(name) { 2 | throw new Error("Class \"" + name + "\" cannot be referenced in computed property keys."); 3 | } 4 | 5 | module.exports = _classNameTDZError, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classPrivateFieldLooseKey.js: -------------------------------------------------------------------------------- 1 | var id = 0; 2 | 3 | function _classPrivateFieldKey(name) { 4 | return "__private_" + id++ + "_" + name; 5 | } 6 | 7 | module.exports = _classPrivateFieldKey, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classPrivateMethodGet.js: -------------------------------------------------------------------------------- 1 | function _classPrivateMethodGet(receiver, privateSet, fn) { 2 | if (!privateSet.has(receiver)) { 3 | throw new TypeError("attempted to get private field on non-instance"); 4 | } 5 | 6 | return fn; 7 | } 8 | 9 | module.exports = _classPrivateMethodGet, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classPrivateMethodSet.js: -------------------------------------------------------------------------------- 1 | function _classPrivateMethodSet() { 2 | throw new TypeError("attempted to reassign private method"); 3 | } 4 | 5 | module.exports = _classPrivateMethodSet, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/classStaticPrivateMethodSet.js: -------------------------------------------------------------------------------- 1 | function _classStaticPrivateMethodSet() { 2 | throw new TypeError("attempted to set read only static private field"); 3 | } 4 | 5 | module.exports = _classStaticPrivateMethodSet, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/AwaitValue.js: -------------------------------------------------------------------------------- 1 | export default function _AwaitValue(value) { 2 | this.wrapped = value; 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.js: -------------------------------------------------------------------------------- 1 | export default function _arrayLikeToArray(arr, len) { 2 | if (len == null || len > arr.length) len = arr.length; 3 | 4 | for (var i = 0, arr2 = new Array(len); i < len; i++) { 5 | arr2[i] = arr[i]; 6 | } 7 | 8 | return arr2; 9 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/arrayWithHoles.js: -------------------------------------------------------------------------------- 1 | export default function _arrayWithHoles(arr) { 2 | if (Array.isArray(arr)) return arr; 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.js: -------------------------------------------------------------------------------- 1 | import arrayLikeToArray from "./arrayLikeToArray.js"; 2 | export default function _arrayWithoutHoles(arr) { 3 | if (Array.isArray(arr)) return arrayLikeToArray(arr); 4 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/assertThisInitialized.js: -------------------------------------------------------------------------------- 1 | export default function _assertThisInitialized(self) { 2 | if (self === void 0) { 3 | throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); 4 | } 5 | 6 | return self; 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/awaitAsyncGenerator.js: -------------------------------------------------------------------------------- 1 | import AwaitValue from "./AwaitValue.js"; 2 | export default function _awaitAsyncGenerator(value) { 3 | return new AwaitValue(value); 4 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/checkPrivateRedeclaration.js: -------------------------------------------------------------------------------- 1 | export default function _checkPrivateRedeclaration(obj, privateCollection) { 2 | if (privateCollection.has(obj)) { 3 | throw new TypeError("Cannot initialize the same private elements twice on an object"); 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classApplyDescriptorGet.js: -------------------------------------------------------------------------------- 1 | export default function _classApplyDescriptorGet(receiver, descriptor) { 2 | if (descriptor.get) { 3 | return descriptor.get.call(receiver); 4 | } 5 | 6 | return descriptor.value; 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classCallCheck.js: -------------------------------------------------------------------------------- 1 | export default function _classCallCheck(instance, Constructor) { 2 | if (!(instance instanceof Constructor)) { 3 | throw new TypeError("Cannot call a class as a function"); 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticAccess.js: -------------------------------------------------------------------------------- 1 | export default function _classCheckPrivateStaticAccess(receiver, classConstructor) { 2 | if (receiver !== classConstructor) { 3 | throw new TypeError("Private static access of wrong provenance"); 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classCheckPrivateStaticFieldDescriptor.js: -------------------------------------------------------------------------------- 1 | export default function _classCheckPrivateStaticFieldDescriptor(descriptor, action) { 2 | if (descriptor === undefined) { 3 | throw new TypeError("attempted to " + action + " private static field before its declaration"); 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classExtractFieldDescriptor.js: -------------------------------------------------------------------------------- 1 | export default function _classExtractFieldDescriptor(receiver, privateMap, action) { 2 | if (!privateMap.has(receiver)) { 3 | throw new TypeError("attempted to " + action + " private field on non-instance"); 4 | } 5 | 6 | return privateMap.get(receiver); 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classNameTDZError.js: -------------------------------------------------------------------------------- 1 | export default function _classNameTDZError(name) { 2 | throw new Error("Class \"" + name + "\" cannot be referenced in computed property keys."); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classPrivateFieldInitSpec.js: -------------------------------------------------------------------------------- 1 | import checkPrivateRedeclaration from "./checkPrivateRedeclaration.js"; 2 | export default function _classPrivateFieldInitSpec(obj, privateMap, value) { 3 | checkPrivateRedeclaration(obj, privateMap); 4 | privateMap.set(obj, value); 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseBase.js: -------------------------------------------------------------------------------- 1 | export default function _classPrivateFieldBase(receiver, privateKey) { 2 | if (!Object.prototype.hasOwnProperty.call(receiver, privateKey)) { 3 | throw new TypeError("attempted to use private field on non-instance"); 4 | } 5 | 6 | return receiver; 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classPrivateFieldLooseKey.js: -------------------------------------------------------------------------------- 1 | var id = 0; 2 | export default function _classPrivateFieldKey(name) { 3 | return "__private_" + id++ + "_" + name; 4 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classPrivateMethodGet.js: -------------------------------------------------------------------------------- 1 | export default function _classPrivateMethodGet(receiver, privateSet, fn) { 2 | if (!privateSet.has(receiver)) { 3 | throw new TypeError("attempted to get private field on non-instance"); 4 | } 5 | 6 | return fn; 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classPrivateMethodInitSpec.js: -------------------------------------------------------------------------------- 1 | import checkPrivateRedeclaration from "./checkPrivateRedeclaration.js"; 2 | export default function _classPrivateMethodInitSpec(obj, privateSet) { 3 | checkPrivateRedeclaration(obj, privateSet); 4 | privateSet.add(obj); 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classPrivateMethodSet.js: -------------------------------------------------------------------------------- 1 | export default function _classPrivateMethodSet() { 2 | throw new TypeError("attempted to reassign private method"); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodGet.js: -------------------------------------------------------------------------------- 1 | import classCheckPrivateStaticAccess from "./classCheckPrivateStaticAccess.js"; 2 | export default function _classStaticPrivateMethodGet(receiver, classConstructor, method) { 3 | classCheckPrivateStaticAccess(receiver, classConstructor); 4 | return method; 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/classStaticPrivateMethodSet.js: -------------------------------------------------------------------------------- 1 | export default function _classStaticPrivateMethodSet() { 2 | throw new TypeError("attempted to set read only static private field"); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/defineProperty.js: -------------------------------------------------------------------------------- 1 | export default function _defineProperty(obj, key, value) { 2 | if (key in obj) { 3 | Object.defineProperty(obj, key, { 4 | value: value, 5 | enumerable: true, 6 | configurable: true, 7 | writable: true 8 | }); 9 | } else { 10 | obj[key] = value; 11 | } 12 | 13 | return obj; 14 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/getPrototypeOf.js: -------------------------------------------------------------------------------- 1 | export default function _getPrototypeOf(o) { 2 | _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { 3 | return o.__proto__ || Object.getPrototypeOf(o); 4 | }; 5 | return _getPrototypeOf(o); 6 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/identity.js: -------------------------------------------------------------------------------- 1 | export default function _identity(x) { 2 | return x; 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/inheritsLoose.js: -------------------------------------------------------------------------------- 1 | import setPrototypeOf from "./setPrototypeOf.js"; 2 | export default function _inheritsLoose(subClass, superClass) { 3 | subClass.prototype = Object.create(superClass.prototype); 4 | subClass.prototype.constructor = subClass; 5 | setPrototypeOf(subClass, superClass); 6 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/initializerWarningHelper.js: -------------------------------------------------------------------------------- 1 | export default function _initializerWarningHelper(descriptor, context) { 2 | throw new Error('Decorating class property failed. Please ensure that ' + 'proposal-class-properties is enabled and runs after the decorators transform.'); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/instanceof.js: -------------------------------------------------------------------------------- 1 | export default function _instanceof(left, right) { 2 | if (right != null && typeof Symbol !== "undefined" && right[Symbol.hasInstance]) { 3 | return !!right[Symbol.hasInstance](left); 4 | } else { 5 | return left instanceof right; 6 | } 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/interopRequireDefault.js: -------------------------------------------------------------------------------- 1 | export default function _interopRequireDefault(obj) { 2 | return obj && obj.__esModule ? obj : { 3 | "default": obj 4 | }; 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/isNativeFunction.js: -------------------------------------------------------------------------------- 1 | export default function _isNativeFunction(fn) { 2 | return Function.toString.call(fn).indexOf("[native code]") !== -1; 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/iterableToArray.js: -------------------------------------------------------------------------------- 1 | export default function _iterableToArray(iter) { 2 | if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/maybeArrayLike.js: -------------------------------------------------------------------------------- 1 | import arrayLikeToArray from "./arrayLikeToArray.js"; 2 | export default function _maybeArrayLike(next, arr, i) { 3 | if (arr && !Array.isArray(arr) && typeof arr.length === "number") { 4 | var len = arr.length; 5 | return arrayLikeToArray(arr, i !== void 0 && i < len ? i : len); 6 | } 7 | 8 | return next(arr, i); 9 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/newArrowCheck.js: -------------------------------------------------------------------------------- 1 | export default function _newArrowCheck(innerThis, boundThis) { 2 | if (innerThis !== boundThis) { 3 | throw new TypeError("Cannot instantiate an arrow function"); 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/nonIterableRest.js: -------------------------------------------------------------------------------- 1 | export default function _nonIterableRest() { 2 | throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/nonIterableSpread.js: -------------------------------------------------------------------------------- 1 | export default function _nonIterableSpread() { 2 | throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/objectDestructuringEmpty.js: -------------------------------------------------------------------------------- 1 | export default function _objectDestructuringEmpty(obj) { 2 | if (obj == null) throw new TypeError("Cannot destructure undefined"); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/readOnlyError.js: -------------------------------------------------------------------------------- 1 | export default function _readOnlyError(name) { 2 | throw new TypeError("\"" + name + "\" is read-only"); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/setPrototypeOf.js: -------------------------------------------------------------------------------- 1 | export default function _setPrototypeOf(o, p) { 2 | _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { 3 | o.__proto__ = p; 4 | return o; 5 | }; 6 | return _setPrototypeOf(o, p); 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/skipFirstGeneratorNext.js: -------------------------------------------------------------------------------- 1 | export default function _skipFirstGeneratorNext(fn) { 2 | return function () { 3 | var it = fn.apply(this, arguments); 4 | it.next(); 5 | return it; 6 | }; 7 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/superPropBase.js: -------------------------------------------------------------------------------- 1 | import getPrototypeOf from "./getPrototypeOf.js"; 2 | export default function _superPropBase(object, property) { 3 | while (!Object.prototype.hasOwnProperty.call(object, property)) { 4 | object = getPrototypeOf(object); 5 | if (object === null) break; 6 | } 7 | 8 | return object; 9 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteral.js: -------------------------------------------------------------------------------- 1 | export default function _taggedTemplateLiteral(strings, raw) { 2 | if (!raw) { 3 | raw = strings.slice(0); 4 | } 5 | 6 | return Object.freeze(Object.defineProperties(strings, { 7 | raw: { 8 | value: Object.freeze(raw) 9 | } 10 | })); 11 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/taggedTemplateLiteralLoose.js: -------------------------------------------------------------------------------- 1 | export default function _taggedTemplateLiteralLoose(strings, raw) { 2 | if (!raw) { 3 | raw = strings.slice(0); 4 | } 5 | 6 | strings.raw = raw; 7 | return strings; 8 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/tdz.js: -------------------------------------------------------------------------------- 1 | export default function _tdzError(name) { 2 | throw new ReferenceError(name + " is not defined - temporal dead zone"); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/temporalRef.js: -------------------------------------------------------------------------------- 1 | import undef from "./temporalUndefined.js"; 2 | import err from "./tdz.js"; 3 | export default function _temporalRef(val, name) { 4 | return val === undef ? err(name) : val; 5 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/temporalUndefined.js: -------------------------------------------------------------------------------- 1 | export default function _temporalUndefined() {} -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/toPropertyKey.js: -------------------------------------------------------------------------------- 1 | import _typeof from "./typeof.js"; 2 | import toPrimitive from "./toPrimitive.js"; 3 | export default function _toPropertyKey(arg) { 4 | var key = toPrimitive(arg, "string"); 5 | return _typeof(key) === "symbol" ? key : String(key); 6 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/wrapAsyncGenerator.js: -------------------------------------------------------------------------------- 1 | import AsyncGenerator from "./AsyncGenerator.js"; 2 | export default function _wrapAsyncGenerator(fn) { 3 | return function () { 4 | return new AsyncGenerator(fn.apply(this, arguments)); 5 | }; 6 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/esm/writeOnlyError.js: -------------------------------------------------------------------------------- 1 | export default function _writeOnlyError(name) { 2 | throw new TypeError("\"" + name + "\" is write-only"); 3 | } -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/identity.js: -------------------------------------------------------------------------------- 1 | function _identity(x) { 2 | return x; 3 | } 4 | 5 | module.exports = _identity, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/interopRequireDefault.js: -------------------------------------------------------------------------------- 1 | function _interopRequireDefault(obj) { 2 | return obj && obj.__esModule ? obj : { 3 | "default": obj 4 | }; 5 | } 6 | 7 | module.exports = _interopRequireDefault, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/isNativeFunction.js: -------------------------------------------------------------------------------- 1 | function _isNativeFunction(fn) { 2 | return Function.toString.call(fn).indexOf("[native code]") !== -1; 3 | } 4 | 5 | module.exports = _isNativeFunction, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/iterableToArray.js: -------------------------------------------------------------------------------- 1 | function _iterableToArray(iter) { 2 | if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); 3 | } 4 | 5 | module.exports = _iterableToArray, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/newArrowCheck.js: -------------------------------------------------------------------------------- 1 | function _newArrowCheck(innerThis, boundThis) { 2 | if (innerThis !== boundThis) { 3 | throw new TypeError("Cannot instantiate an arrow function"); 4 | } 5 | } 6 | 7 | module.exports = _newArrowCheck, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/nonIterableRest.js: -------------------------------------------------------------------------------- 1 | function _nonIterableRest() { 2 | throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); 3 | } 4 | 5 | module.exports = _nonIterableRest, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/nonIterableSpread.js: -------------------------------------------------------------------------------- 1 | function _nonIterableSpread() { 2 | throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); 3 | } 4 | 5 | module.exports = _nonIterableSpread, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/objectDestructuringEmpty.js: -------------------------------------------------------------------------------- 1 | function _objectDestructuringEmpty(obj) { 2 | if (obj == null) throw new TypeError("Cannot destructure undefined"); 3 | } 4 | 5 | module.exports = _objectDestructuringEmpty, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/readOnlyError.js: -------------------------------------------------------------------------------- 1 | function _readOnlyError(name) { 2 | throw new TypeError("\"" + name + "\" is read-only"); 3 | } 4 | 5 | module.exports = _readOnlyError, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/skipFirstGeneratorNext.js: -------------------------------------------------------------------------------- 1 | function _skipFirstGeneratorNext(fn) { 2 | return function () { 3 | var it = fn.apply(this, arguments); 4 | it.next(); 5 | return it; 6 | }; 7 | } 8 | 9 | module.exports = _skipFirstGeneratorNext, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/taggedTemplateLiteralLoose.js: -------------------------------------------------------------------------------- 1 | function _taggedTemplateLiteralLoose(strings, raw) { 2 | if (!raw) { 3 | raw = strings.slice(0); 4 | } 5 | 6 | strings.raw = raw; 7 | return strings; 8 | } 9 | 10 | module.exports = _taggedTemplateLiteralLoose, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/tdz.js: -------------------------------------------------------------------------------- 1 | function _tdzError(name) { 2 | throw new ReferenceError(name + " is not defined - temporal dead zone"); 3 | } 4 | 5 | module.exports = _tdzError, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/temporalRef.js: -------------------------------------------------------------------------------- 1 | var temporalUndefined = require("./temporalUndefined.js"); 2 | 3 | var tdz = require("./tdz.js"); 4 | 5 | function _temporalRef(val, name) { 6 | return val === temporalUndefined ? tdz(name) : val; 7 | } 8 | 9 | module.exports = _temporalRef, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/temporalUndefined.js: -------------------------------------------------------------------------------- 1 | function _temporalUndefined() {} 2 | 3 | module.exports = _temporalUndefined, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/wrapAsyncGenerator.js: -------------------------------------------------------------------------------- 1 | var AsyncGenerator = require("./AsyncGenerator.js"); 2 | 3 | function _wrapAsyncGenerator(fn) { 4 | return function () { 5 | return new AsyncGenerator(fn.apply(this, arguments)); 6 | }; 7 | } 8 | 9 | module.exports = _wrapAsyncGenerator, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@babel/runtime/helpers/writeOnlyError.js: -------------------------------------------------------------------------------- 1 | function _writeOnlyError(name) { 2 | throw new TypeError("\"" + name + "\" is write-only"); 3 | } 4 | 5 | module.exports = _writeOnlyError, module.exports.__esModule = true, module.exports["default"] = module.exports; -------------------------------------------------------------------------------- /node_modules/@iarna/toml/lib/create-datetime.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = value => { 3 | const date = new Date(value) 4 | /* istanbul ignore if */ 5 | if (isNaN(date)) { 6 | throw new TypeError('Invalid Datetime') 7 | } else { 8 | return date 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/@iarna/toml/lib/format-num.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = (d, num) => { 3 | num = String(num) 4 | while (num.length < d) num = '0' + num 5 | return num 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/@iarna/toml/parse.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = require('./parse-string.js') 3 | module.exports.async = require('./parse-async.js') 4 | module.exports.stream = require('./parse-stream.js') 5 | module.exports.prettyError = require('./parse-pretty-error.js') 6 | -------------------------------------------------------------------------------- /node_modules/@iarna/toml/toml.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | exports.parse = require('./parse.js') 3 | exports.stringify = require('./stringify.js') 4 | -------------------------------------------------------------------------------- /node_modules/@myunisoft/httpie/dist/policies/httpcode.d.ts: -------------------------------------------------------------------------------- 1 | export declare function httpcode(codes?: Set, useDefault?: boolean): ({ statusCode }: { 2 | statusCode: any; 3 | }) => boolean; 4 | -------------------------------------------------------------------------------- /node_modules/@myunisoft/httpie/dist/policies/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./none"; 2 | export * from "./httpcode"; 3 | export declare type PolicyCallback = (error?: any) => boolean; 4 | -------------------------------------------------------------------------------- /node_modules/@myunisoft/httpie/dist/policies/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/policies/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,yCAAuB;AACvB,6CAA2B"} -------------------------------------------------------------------------------- /node_modules/@myunisoft/httpie/dist/policies/none.d.ts: -------------------------------------------------------------------------------- 1 | export declare function none(): boolean; 2 | -------------------------------------------------------------------------------- /node_modules/@myunisoft/httpie/dist/policies/none.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.none = void 0; 4 | function none() { 5 | return false; 6 | } 7 | exports.none = none; 8 | //# sourceMappingURL=none.js.map -------------------------------------------------------------------------------- /node_modules/@myunisoft/httpie/dist/policies/none.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"none.js","sourceRoot":"","sources":["../../src/policies/none.ts"],"names":[],"mappings":";;;AAAA,SAAgB,IAAI;IAClB,OAAO,KAAK,CAAC;AACf,CAAC;AAFD,oBAEC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/bin/cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/extraction/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./extract.js"; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/extraction/index.js: -------------------------------------------------------------------------------- 1 | export * from "./extract.js"; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/extraction/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/analysis/extraction/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./extraction/index.js"; 2 | export * from "./interpretation/index.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/index.js: -------------------------------------------------------------------------------- 1 | export * from "./extraction/index.js"; 2 | export * from "./interpretation/index.js"; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/analysis/index.ts"],"names":[],"mappings":"AAAA,cAAc,uBAAuB,CAAC;AACtC,cAAc,2BAA2B,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/interpretation/checkable.js: -------------------------------------------------------------------------------- 1 | export const FAILING_CHECK = "failed"; 2 | export function fromBooleanToCheckResult(result) { 3 | return result ? "failed" : "passed"; 4 | } 5 | //# sourceMappingURL=checkable.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/interpretation/checkable.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"checkable.js","sourceRoot":"","sources":["../../../../src/analysis/interpretation/checkable.ts"],"names":[],"mappings":"AAuBA,MAAM,CAAC,MAAM,aAAa,GAAgB,QAAiB,CAAC;AAE5D,MAAM,UAAU,wBAAwB,CAAC,MAAe;IACtD,OAAO,MAAM,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,QAAQ,CAAC;AACtC,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/interpretation/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./interpret.js"; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/interpretation/index.js: -------------------------------------------------------------------------------- 1 | export * from "./interpret.js"; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/analysis/interpretation/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/analysis/interpretation/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/api/index.js: -------------------------------------------------------------------------------- 1 | export const ApiConfigAdapter = { 2 | adaptToExternalConfig: (config) => config 3 | }; 4 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/api/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/configuration/external/api/index.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,gBAAgB,GAAqC;IAChE,qBAAqB,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM;CAC1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/cli/index.js: -------------------------------------------------------------------------------- 1 | export const CliConfigAdapter = { 2 | adaptToExternalConfig: (config) => config 3 | }; 4 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/cli/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/configuration/external/cli/index.ts"],"names":[],"mappings":"AAYA,MAAM,CAAC,MAAM,gBAAgB,GAAqC;IAChE,qBAAqB,EAAE,CAAC,MAAM,EAAE,EAAE,CAAC,MAAM;CAC1C,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./cli/index.js"; 2 | export * from "./api/index.js"; 3 | export * from "./nodesecure/index.js"; 4 | export * from "./adapt.js"; 5 | export * from "./common.js"; 6 | export * from "./standardize.js"; 7 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/index.js: -------------------------------------------------------------------------------- 1 | export * from "./cli/index.js"; 2 | export * from "./api/index.js"; 3 | export * from "./nodesecure/index.js"; 4 | export * from "./adapt.js"; 5 | export * from "./common.js"; 6 | export * from "./standardize.js"; 7 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/external/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/configuration/external/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,uBAAuB,CAAC;AACtC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,kBAAkB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./external/index.js"; 2 | export * from "./standard/index.js"; 3 | export * from "./manage.js"; 4 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/index.js: -------------------------------------------------------------------------------- 1 | export * from "./external/index.js"; 2 | export * from "./standard/index.js"; 3 | export * from "./manage.js"; 4 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/configuration/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,qBAAqB,CAAC;AACpC,cAAc,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/standard/index.d.ts: -------------------------------------------------------------------------------- 1 | export * as Nsci from "./nsci.js"; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/standard/index.js: -------------------------------------------------------------------------------- 1 | export * as Nsci from "./nsci.js"; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/configuration/standard/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/configuration/standard/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/index.d.ts: -------------------------------------------------------------------------------- 1 | export * as pipeline from "./status.js"; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/index.js: -------------------------------------------------------------------------------- 1 | export * as pipeline from "./status.js"; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/reporting/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,QAAQ,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./reporter.js"; 2 | export * from "./runner.js"; 3 | export * from "./internal/index.js"; 4 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/index.js: -------------------------------------------------------------------------------- 1 | export * from "./reporter.js"; 2 | export * from "./runner.js"; 3 | export * from "./internal/index.js"; 4 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/reporting/reporters/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,qBAAqB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/configuration.d.ts: -------------------------------------------------------------------------------- 1 | import { SelectedRuntimeConfig } from "../../../configuration/manage.js"; 2 | import { Reporter } from "../reporter.js"; 3 | export declare const runtimeConfigurationReporter: Reporter; 4 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/environment.d.ts: -------------------------------------------------------------------------------- 1 | import { EnvironmentContext } from "../../../configuration/environment"; 2 | import { Nsci } from "../../../configuration/standard/index.js"; 3 | import { Reporter } from "../reporter.js"; 4 | export declare const environmentContextReporter: Reporter void>; 5 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./scanner.js"; 2 | export * from "./environment.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/index.js: -------------------------------------------------------------------------------- 1 | export * from "./scanner.js"; 2 | export * from "./environment.js"; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/reporting/reporters/internal/index.ts"],"names":[],"mappings":"AAAA,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/util.d.ts: -------------------------------------------------------------------------------- 1 | export declare function invertRecord(obj: Record): Record; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/internal/util.js: -------------------------------------------------------------------------------- 1 | export function invertRecord(obj) { 2 | const invertedEntries = Object.entries(obj).map(([key, value]) => [ 3 | value, 4 | key 5 | ]); 6 | return Object.fromEntries(invertedEntries); 7 | } 8 | //# sourceMappingURL=util.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/post-pipeline/html/index.d.ts: -------------------------------------------------------------------------------- 1 | import { Reporter } from "../../reporter.js"; 2 | export declare const htmlReporter: Reporter; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/post-pipeline/html/index.js: -------------------------------------------------------------------------------- 1 | // Import Internal Dependencies 2 | import { reporterTarget } from "../../../../configuration/standard/nsci.js"; 3 | export const htmlReporter = { 4 | type: reporterTarget.HTML, 5 | report: (_payload) => Promise.resolve(undefined) 6 | }; 7 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/post-pipeline/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./console/index.js"; 2 | export * from "./html/index.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/post-pipeline/index.js: -------------------------------------------------------------------------------- 1 | export * from "./console/index.js"; 2 | export * from "./html/index.js"; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/post-pipeline/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../src/reporting/reporters/post-pipeline/index.ts"],"names":[],"mappings":"AAAA,cAAc,oBAAoB,CAAC;AACnC,cAAc,iBAAiB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/reporter.d.ts: -------------------------------------------------------------------------------- 1 | import { OutcomePayloadFromPipelineChecks } from "../../analysis/index.js"; 2 | import { ReporterTarget } from "../../configuration/standard/nsci.js"; 3 | export declare type Reporter = { 4 | type: ReporterTarget; 5 | report: (payload: T) => R; 6 | }; 7 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/reporter.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=reporter.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/reporter.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"reporter.js","sourceRoot":"","sources":["../../../../src/reporting/reporters/reporter.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/reporters/runner.d.ts: -------------------------------------------------------------------------------- 1 | import type { OutcomePayloadFromPipelineChecks } from "../../analysis"; 2 | import { Nsci } from "../../configuration/standard/index.js"; 3 | export declare function runReporting(payload: OutcomePayloadFromPipelineChecks, rc: Nsci.Configuration): Promise; 4 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/status.d.ts: -------------------------------------------------------------------------------- 1 | import type { ValueOf } from "../types"; 2 | export declare const status: { 3 | readonly SUCCESS: "success"; 4 | readonly FAILURE: "failure"; 5 | }; 6 | export declare type Status = ValueOf; 7 | export declare function getOutcome(result: boolean): Status; 8 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/status.js: -------------------------------------------------------------------------------- 1 | export const status = { 2 | SUCCESS: "success", 3 | FAILURE: "failure" 4 | }; 5 | export function getOutcome(result) { 6 | return result ? status.SUCCESS : status.FAILURE; 7 | } 8 | //# sourceMappingURL=status.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/reporting/status.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"status.js","sourceRoot":"","sources":["../../../src/reporting/status.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,MAAM,GAAG;IACpB,OAAO,EAAE,SAAS;IAClB,OAAO,EAAE,SAAS;CACV,CAAC;AAIX,MAAM,UAAU,UAAU,CAAC,MAAe;IACxC,OAAO,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC;AAClD,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/types/index.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/ci/dist/src/types/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/types/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/@nodesecure/flags/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./src/node"; 2 | export * from "./src/web"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/flags/index.js: -------------------------------------------------------------------------------- 1 | export * from "./src/node.js"; 2 | export * from "./src/web.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/flags/src/flags/hasManyPublishers.html: -------------------------------------------------------------------------------- 1 |
2 |

👥 hasManyPublishers

3 |

4 | The package has been published on npm by multiple unique users. There is no 5 | big deal here, just mean the package is maintained by a group of people. 6 |

7 |
8 | 9 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/flags/src/flags/hasMissingOrUnusedDependency.html: -------------------------------------------------------------------------------- 1 |
2 |

👀 hasMissingOrUnusedDependency

3 |

4 | The package has a missing dependency (in package.json) or a dependency that is not used in the code (this may happen if the AST Analysis fail!) 5 |

6 |
7 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/flags/src/node.d.ts: -------------------------------------------------------------------------------- 1 | export function lazyFetchFlagFile(name: string): ReadableStream; 2 | export function eagerFetchFlagFile(name: string): Promise; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/fs-walk/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./type/walk"; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/i18n/languages/index.js: -------------------------------------------------------------------------------- 1 | export * as english from "./english.js"; 2 | export * as french from "./french.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/i18n/src/constants.js: -------------------------------------------------------------------------------- 1 | // Import Node.js Dependencies 2 | import os from "os"; 3 | import path from "path"; 4 | 5 | export const CACHE_PATH = path.join(os.tmpdir(), "nsecure-cli"); 6 | export const CURRENT_LANG = "english"; 7 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/js-x-ray/src/obfuscators/trojan-source.js: -------------------------------------------------------------------------------- 1 | import { unsafeUnicodeControlCharacters } from "../constants.js"; 2 | 3 | export function verify(sourceString) { 4 | for (const unsafeCharacter of unsafeUnicodeControlCharacters) { 5 | if (sourceString.includes(unsafeCharacter)) { 6 | return true; 7 | } 8 | } 9 | 10 | return false; 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/npm-registry-sdk/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./api.js"; 2 | export * from "./registry.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/npm-registry-sdk/dist/index.js: -------------------------------------------------------------------------------- 1 | export * from "./api.js"; 2 | export * from "./registry.js"; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/npm-registry-sdk/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,eAAe,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const CONFIGURATION_NAME = ".nodesecurerc"; 2 | export declare const GLOBAL_CONFIGURATION_DIRECTORY = "nodesecure"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/constants.js: -------------------------------------------------------------------------------- 1 | export const CONFIGURATION_NAME = ".nodesecurerc"; 2 | export const GLOBAL_CONFIGURATION_DIRECTORY = "nodesecure"; 3 | //# sourceMappingURL=constants.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG,eAAe,CAAC;AAClD,MAAM,CAAC,MAAM,8BAA8B,GAAG,YAAY,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./functions/read.js"; 2 | export * from "./functions/write.js"; 3 | export * as CONSTANTS from "./constants.js"; 4 | export { RC, JSONSchema, homedir } from "./rc.js"; 5 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/index.js: -------------------------------------------------------------------------------- 1 | export * from "./functions/read.js"; 2 | export * from "./functions/write.js"; 3 | export * as CONSTANTS from "./constants.js"; 4 | export { JSONSchema, homedir } from "./rc.js"; 5 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,sBAAsB,CAAC;AACrC,OAAO,KAAK,SAAS,MAAM,gBAAgB,CAAC;AAE5C,OAAO,EAAM,UAAU,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/projects/ci.js: -------------------------------------------------------------------------------- 1 | export function generateCIConfiguration() { 2 | const ci = { 3 | reporters: ["console"], 4 | vulnerabilities: { 5 | severity: "medium" 6 | }, 7 | warnings: "error" 8 | }; 9 | return { ci }; 10 | } 11 | //# sourceMappingURL=ci.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/projects/ci.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ci.js","sourceRoot":"","sources":["../../src/projects/ci.ts"],"names":[],"mappings":"AAyBA,MAAM,UAAU,uBAAuB;IACrC,MAAM,EAAE,GAAoB;QAC1B,SAAS,EAAE,CAAC,SAAS,CAAC;QACtB,eAAe,EAAE;YACf,QAAQ,EAAE,QAAQ;SACnB;QACD,QAAQ,EAAE,OAAO;KAClB,CAAC;IAEF,OAAO,EAAE,EAAE,EAAE,CAAC;AAChB,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/schema/defs/ciWarnings.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "string", 3 | "enum": [ 4 | "off", 5 | "error", 6 | "warning" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/schema/loader.d.ts: -------------------------------------------------------------------------------- 1 | export declare function loadJSONSchemaSync(): any; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/utils/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./readJSON.js"; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from "./readJSON.js"; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/utils/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/utils/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC"} -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/utils/readJSON.d.ts: -------------------------------------------------------------------------------- 1 | export declare function readJSONSync(path: string, base?: string | URL): any; 2 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/rc/dist/utils/readJSON.js: -------------------------------------------------------------------------------- 1 | // Import Node.js Dependencies 2 | import { readFileSync } from "node:fs"; 3 | export function readJSONSync(path, base) { 4 | const buf = readFileSync(typeof base === "string" ? new URL(path, base) : path); 5 | return JSON.parse(buf.toString()); 6 | } 7 | //# sourceMappingURL=readJSON.js.map -------------------------------------------------------------------------------- /node_modules/@nodesecure/scanner/node_modules/@nodesecure/i18n/languages/index.js: -------------------------------------------------------------------------------- 1 | export * as english from "./english.js"; 2 | export * as french from "./french.js"; 3 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/scanner/node_modules/@nodesecure/i18n/src/constants.js: -------------------------------------------------------------------------------- 1 | // Import Node.js Dependencies 2 | import os from "os"; 3 | import path from "path"; 4 | 5 | export const CACHE_PATH = path.join(os.tmpdir(), "nsecure-cli"); 6 | export const CURRENT_LANG = "english"; 7 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/scanner/src/constants.js: -------------------------------------------------------------------------------- 1 | 2 | export const ScannerLoggerEvents = { 3 | done: "depWalkerFinished", 4 | analysis: { 5 | tree: "walkTree", 6 | tarball: "tarball", 7 | registry: "registry" 8 | }, 9 | manifest: { 10 | read: "readManifest", 11 | fetch: "fetchManifest" 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/scanner/src/utils/dirname.js: -------------------------------------------------------------------------------- 1 | // Import Node.js Dependencies 2 | import { fileURLToPath } from "url"; 3 | import { dirname } from "path"; 4 | 5 | export function getDirNameFromUrl(url) { 6 | const __filename = fileURLToPath(url); 7 | 8 | return dirname(__filename); 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/scanner/types/walker.d.ts: -------------------------------------------------------------------------------- 1 | import { Manifest } from "@npm/types"; 2 | import Scanner from "./scanner"; 3 | 4 | export { 5 | depWalker 6 | } 7 | 8 | declare function depWalker(manifest: Manifest, options?: Scanner.Options); 9 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/sec-literal/src/index.js: -------------------------------------------------------------------------------- 1 | export * as Hex from "./hex.js"; 2 | export * as Literal from "./literal.js"; 3 | export * as Utils from "./utils.js"; 4 | export * as Patterns from "./patterns.js"; 5 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/utils/index.js: -------------------------------------------------------------------------------- 1 | export * from "./src/formatBytes.js"; 2 | export * from "./src/locationToString.js"; 3 | export * from "./src/taggedString.js"; 4 | export * from "./src/parseManifestAuthor.js"; 5 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/vuln/src/strategies/none.js: -------------------------------------------------------------------------------- 1 | // Import Internal Dependencies 2 | import { VULN_MODE } from "../constants.js"; 3 | 4 | export function NoneStrategy() { 5 | return { 6 | strategy: VULN_MODE.NONE, 7 | hydratePayloadDependencies 8 | }; 9 | } 10 | 11 | async function hydratePayloadDependencies(dependencies) { 12 | // Do nothing 13 | } 14 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/vuln/src/utils.js: -------------------------------------------------------------------------------- 1 | // Import Node.js Dependencies 2 | import { readFile } from "fs/promises"; 3 | 4 | export async function readJsonFile(path) { 5 | try { 6 | const buf = await readFile(path); 7 | 8 | return JSON.parse(buf.toString()); 9 | } 10 | catch { 11 | return null; 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /node_modules/@nodesecure/vuln/types/cache.d.ts: -------------------------------------------------------------------------------- 1 | export = cache; 2 | 3 | declare namespace cache { 4 | export interface Data { 5 | /** Timestamp that indicate the last time the cache has been updated **/ 6 | lastUpdated: number; 7 | } 8 | 9 | export function load(defaultPayload?: Data): Data; 10 | export function refresh(): void; 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/@npm/types/.clang-format: -------------------------------------------------------------------------------- 1 | Language: JavaScript 2 | BasedOnStyle: Google 3 | ColumnLimit: 80 -------------------------------------------------------------------------------- /node_modules/@npm/types/.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /node_modules/@npm/types/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "parser": "@typescript-eslint/parser", 3 | "plugins": ["@typescript-eslint"], 4 | "extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"] 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/@npm/types/img/tool-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/@npm/types/img/tool-tip.png -------------------------------------------------------------------------------- /node_modules/@npm/types/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./node_modules/gts/tsconfig-google.json", 3 | "compilerOptions": { 4 | "rootDir": ".", 5 | "outDir": "build" 6 | }, 7 | "include": [ 8 | "index.d.ts", 9 | "src/*.ts", 10 | "src/**/*.ts", 11 | "test/*.ts", 12 | "test/**/*.ts" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /node_modules/@npm/types/tslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "gts/tslint.json" 3 | } 4 | -------------------------------------------------------------------------------- /node_modules/@npmcli/arborist/bin/lib/print-tree.js: -------------------------------------------------------------------------------- 1 | const { inspect } = require('util') 2 | const log = require('./logging.js') 3 | 4 | module.exports = tree => log.info(inspect(tree.toJSON(), { depth: Infinity })) 5 | -------------------------------------------------------------------------------- /node_modules/@npmcli/arborist/bin/shrinkwrap.js: -------------------------------------------------------------------------------- 1 | const Shrinkwrap = require('../lib/shrinkwrap.js') 2 | 3 | module.exports = (options, time) => Shrinkwrap 4 | .load(options) 5 | .then((s) => s.commit()) 6 | .then(time) 7 | .then(({ result: s }) => JSON.stringify(s, 0, 2)) 8 | -------------------------------------------------------------------------------- /node_modules/@npmcli/arborist/lib/override-resolves.js: -------------------------------------------------------------------------------- 1 | function overrideResolves (resolved, opts = {}) { 2 | const { omitLockfileRegistryResolved = false } = opts 3 | 4 | if (omitLockfileRegistryResolved) { 5 | return undefined 6 | } 7 | 8 | return resolved 9 | } 10 | 11 | module.exports = { overrideResolves } 12 | -------------------------------------------------------------------------------- /node_modules/@npmcli/arborist/lib/relpath.js: -------------------------------------------------------------------------------- 1 | const { relative } = require('path') 2 | const relpath = (from, to) => relative(from, to).replace(/\\/g, '/') 3 | module.exports = relpath 4 | -------------------------------------------------------------------------------- /node_modules/@npmcli/fs/lib/common/node.js: -------------------------------------------------------------------------------- 1 | const semver = require('semver') 2 | 3 | const satisfies = (range) => { 4 | return semver.satisfies(process.version, range, { includePrerelease: true }) 5 | } 6 | 7 | module.exports = { 8 | satisfies, 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/@npmcli/git/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clone: require('./clone.js'), 3 | revs: require('./revs.js'), 4 | spawn: require('./spawn.js'), 5 | is: require('./is.js'), 6 | find: require('./find.js'), 7 | isClean: require('./is-clean.js'), 8 | errors: require('./errors.js'), 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/@npmcli/git/lib/is-clean.js: -------------------------------------------------------------------------------- 1 | const spawn = require('./spawn.js') 2 | 3 | module.exports = (opts = {}) => 4 | spawn(['status', '--porcelain=v1', '-uno'], opts) 5 | .then(res => !res.stdout.trim().split(/\r?\n+/) 6 | .map(l => l.trim()).filter(l => l).length) 7 | -------------------------------------------------------------------------------- /node_modules/@npmcli/git/lib/is.js: -------------------------------------------------------------------------------- 1 | // not an airtight indicator, but a good gut-check to even bother trying 2 | const { promisify } = require('util') 3 | const fs = require('fs') 4 | const stat = promisify(fs.stat) 5 | module.exports = ({ cwd = process.cwd() } = {}) => 6 | stat(cwd + '/.git').then(() => true, () => false) 7 | -------------------------------------------------------------------------------- /node_modules/@npmcli/git/lib/utils.js: -------------------------------------------------------------------------------- 1 | const isWindows = opts => (opts.fakePlatform || process.platform) === 'win32' 2 | 3 | exports.isWindows = isWindows 4 | -------------------------------------------------------------------------------- /node_modules/@npmcli/metavuln-calculator/lib/hash.js: -------------------------------------------------------------------------------- 1 | const { createHash } = require('crypto') 2 | 3 | module.exports = ({ name, source }) => createHash('sha512') 4 | .update(JSON.stringify([name, source])) 5 | .digest('base64') 6 | -------------------------------------------------------------------------------- /node_modules/@npmcli/name-from-folder/index.js: -------------------------------------------------------------------------------- 1 | const { basename, dirname } = require('path') 2 | 3 | const getName = (parent, base) => 4 | parent.charAt(0) === '@' ? `${parent}/${base}` : base 5 | 6 | module.exports = dir => dir ? getName(basename(dirname(dir)), basename(dir)) 7 | : false 8 | -------------------------------------------------------------------------------- /node_modules/@npmcli/run-script/lib/is-windows.js: -------------------------------------------------------------------------------- 1 | const platform = process.env.__FAKE_TESTING_PLATFORM__ || process.platform 2 | module.exports = platform === 'win32' 3 | -------------------------------------------------------------------------------- /node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | node "$npm_config_node_gyp" "$@" 3 | -------------------------------------------------------------------------------- /node_modules/@npmcli/run-script/lib/node-gyp-bin/node-gyp.cmd: -------------------------------------------------------------------------------- 1 | @node "%npm_config_node_gyp%" %* 2 | -------------------------------------------------------------------------------- /node_modules/@slimio/config/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | const Config = require("./src/config.class"); 4 | module.exports = Config; 5 | -------------------------------------------------------------------------------- /node_modules/@slimio/is/slimio.toml: -------------------------------------------------------------------------------- 1 | name = "is" 2 | version = "1.5.1" 3 | type = "Package" 4 | [dependencies] 5 | -------------------------------------------------------------------------------- /node_modules/@tootallnate/once/dist/overloaded-parameters.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=overloaded-parameters.js.map -------------------------------------------------------------------------------- /node_modules/@tootallnate/once/dist/overloaded-parameters.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"overloaded-parameters.js","sourceRoot":"","sources":["../src/overloaded-parameters.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/@tootallnate/once/dist/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/@tootallnate/once/dist/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/agent-base/dist/src/promisify.d.ts: -------------------------------------------------------------------------------- 1 | import { ClientRequest, RequestOptions, AgentCallbackCallback, AgentCallbackPromise } from './index'; 2 | declare type LegacyCallback = (req: ClientRequest, opts: RequestOptions, fn: AgentCallbackCallback) => void; 3 | export default function promisify(fn: LegacyCallback): AgentCallbackPromise; 4 | export {}; 5 | -------------------------------------------------------------------------------- /node_modules/agentkeepalive/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = noop; 2 | module.exports.HttpsAgent = noop; 3 | 4 | // Noop function for browser since native api's don't use agents. 5 | function noop () {} 6 | -------------------------------------------------------------------------------- /node_modules/agentkeepalive/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/agent'); 4 | module.exports.HttpsAgent = require('./lib/https_agent'); 5 | module.exports.constants = require('./lib/constants'); 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/jtd/parse.d.ts: -------------------------------------------------------------------------------- 1 | import type Ajv from "../../core"; 2 | import { SchemaObjectMap } from "./types"; 3 | import { SchemaEnv } from ".."; 4 | export default function compileParser(this: Ajv, sch: SchemaEnv, definitions: SchemaObjectMap): SchemaEnv; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/jtd/serialize.d.ts: -------------------------------------------------------------------------------- 1 | import type Ajv from "../../core"; 2 | import { SchemaObjectMap } from "./types"; 3 | import { SchemaEnv } from ".."; 4 | export default function compileSerializer(this: Ajv, sch: SchemaEnv, definitions: SchemaObjectMap): SchemaEnv; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/jtd/types.d.ts: -------------------------------------------------------------------------------- 1 | import type { SchemaObject } from "../../types"; 2 | export declare type SchemaObjectMap = { 3 | [Ref in string]?: SchemaObject; 4 | }; 5 | export declare const jtdForms: readonly ["elements", "values", "discriminator", "properties", "optionalProperties", "enum", "type", "ref"]; 6 | export declare type JTDForm = typeof jtdForms[number]; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/jtd/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.jtdForms = void 0; 4 | exports.jtdForms = [ 5 | "elements", 6 | "values", 7 | "discriminator", 8 | "properties", 9 | "optionalProperties", 10 | "enum", 11 | "type", 12 | "ref", 13 | ]; 14 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/jtd/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../lib/compile/jtd/types.ts"],"names":[],"mappings":";;;AAIa,QAAA,QAAQ,GAAG;IACtB,UAAU;IACV,QAAQ;IACR,eAAe;IACf,YAAY;IACZ,oBAAoB;IACpB,MAAM;IACN,MAAM;IACN,KAAK;CACG,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/ref_error.d.ts: -------------------------------------------------------------------------------- 1 | import type { UriResolver } from "../types"; 2 | export default class MissingRefError extends Error { 3 | readonly missingRef: string; 4 | readonly missingSchema: string; 5 | constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string); 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/validate/boolSchema.d.ts: -------------------------------------------------------------------------------- 1 | import type { SchemaCxt } from ".."; 2 | import { Name } from "../codegen"; 3 | export declare function topBoolOrEmptySchema(it: SchemaCxt): void; 4 | export declare function boolOrEmptySchema(it: SchemaCxt, valid: Name): void; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/compile/validate/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import type { SchemaObjCxt } from ".."; 2 | export declare function assignDefaults(it: SchemaObjCxt, ty?: string): void; 3 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/refs/json-schema-2019-09/index.d.ts: -------------------------------------------------------------------------------- 1 | import type Ajv from "../../core"; 2 | export default function addMetaSchema2019(this: Ajv, $data?: boolean): Ajv; 3 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/refs/json-schema-2020-12/index.d.ts: -------------------------------------------------------------------------------- 1 | import type Ajv from "../../core"; 2 | export default function addMetaSchema2020(this: Ajv, $data?: boolean): Ajv; 3 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/refs/jtd-schema.d.ts: -------------------------------------------------------------------------------- 1 | import { SchemaObject } from "../types"; 2 | declare const jtdMetaSchema: SchemaObject; 3 | export default jtdMetaSchema; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/equal.d.ts: -------------------------------------------------------------------------------- 1 | import * as equal from "fast-deep-equal"; 2 | declare type Equal = typeof equal & { 3 | code: string; 4 | }; 5 | declare const _default: Equal; 6 | export default _default; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/equal.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | // https://github.com/ajv-validator/ajv/issues/889 4 | const equal = require("fast-deep-equal"); 5 | equal.code = 'require("ajv/dist/runtime/equal").default'; 6 | exports.default = equal; 7 | //# sourceMappingURL=equal.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/equal.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"equal.js","sourceRoot":"","sources":["../../lib/runtime/equal.ts"],"names":[],"mappings":";;AAAA,kDAAkD;AAClD,yCAAwC;AAGtC,KAAe,CAAC,IAAI,GAAG,2CAA2C,CAAA;AAEpE,kBAAe,KAAc,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/quote.d.ts: -------------------------------------------------------------------------------- 1 | declare function quote(s: string): string; 2 | declare namespace quote { 3 | var code: string; 4 | } 5 | export default quote; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/re2.d.ts: -------------------------------------------------------------------------------- 1 | import * as re2 from "re2"; 2 | declare type Re2 = typeof re2 & { 3 | code: string; 4 | }; 5 | declare const _default: Re2; 6 | export default _default; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/re2.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const re2 = require("re2"); 4 | re2.code = 'require("ajv/dist/runtime/re2").default'; 5 | exports.default = re2; 6 | //# sourceMappingURL=re2.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/re2.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"re2.js","sourceRoot":"","sources":["../../lib/runtime/re2.ts"],"names":[],"mappings":";;AAAA,2BAA0B;AAGxB,GAAW,CAAC,IAAI,GAAG,yCAAyC,CAAA;AAE9D,kBAAe,GAAU,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/timestamp.d.ts: -------------------------------------------------------------------------------- 1 | declare function validTimestamp(str: string, allowDate: boolean): boolean; 2 | declare namespace validTimestamp { 3 | var code: string; 4 | } 5 | export default validTimestamp; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/ucs2length.d.ts: -------------------------------------------------------------------------------- 1 | declare function ucs2length(str: string): number; 2 | declare namespace ucs2length { 3 | var code: string; 4 | } 5 | export default ucs2length; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/uri.d.ts: -------------------------------------------------------------------------------- 1 | import * as uri from "uri-js"; 2 | declare type URI = typeof uri & { 3 | code: string; 4 | }; 5 | declare const _default: URI; 6 | export default _default; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/uri.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const uri = require("uri-js"); 4 | uri.code = 'require("ajv/dist/runtime/uri").default'; 5 | exports.default = uri; 6 | //# sourceMappingURL=uri.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/uri.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"uri.js","sourceRoot":"","sources":["../../lib/runtime/uri.ts"],"names":[],"mappings":";;AAAA,8BAA6B;AAG3B,GAAW,CAAC,IAAI,GAAG,yCAAyC,CAAA;AAE9D,kBAAe,GAAU,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/validation_error.d.ts: -------------------------------------------------------------------------------- 1 | import type { ErrorObject } from "../types"; 2 | export default class ValidationError extends Error { 3 | readonly errors: Partial[]; 4 | readonly ajv: true; 5 | readonly validation: true; 6 | constructor(errors: Partial[]); 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/runtime/validation_error.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"validation_error.js","sourceRoot":"","sources":["../../lib/runtime/validation_error.ts"],"names":[],"mappings":";;AAEA,MAAqB,eAAgB,SAAQ,KAAK;IAKhD,YAAY,MAA8B;QACxC,KAAK,CAAC,mBAAmB,CAAC,CAAA;QAC1B,IAAI,CAAC,MAAM,GAAG,MAAM,CAAA;QACpB,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,UAAU,GAAG,IAAI,CAAA;IACnC,CAAC;CACF;AAVD,kCAUC"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/standalone/index.d.ts: -------------------------------------------------------------------------------- 1 | import type AjvCore from "../core"; 2 | import type { AnyValidateFunction } from "../types"; 3 | declare function standaloneCode(ajv: AjvCore, refsOrFunc?: { 4 | [K in string]?: string; 5 | } | AnyValidateFunction): string; 6 | export default standaloneCode; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/types/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/types/index.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/ajv/dist/types/json-schema.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=json-schema.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/types/json-schema.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"json-schema.js","sourceRoot":"","sources":["../../lib/types/json-schema.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/ajv/dist/types/jtd-schema.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=jtd-schema.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/types/jtd-schema.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"jtd-schema.js","sourceRoot":"","sources":["../../lib/types/jtd-schema.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/allOf.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/anyOf.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorNoParams, AnySchema } from "../../types"; 2 | export declare type AnyOfError = ErrorNoParams<"anyOf", AnySchema[]>; 3 | declare const def: CodeKeywordDefinition; 4 | export default def; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/anyOf.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"anyOf.js","sourceRoot":"","sources":["../../../lib/vocabularies/applicator/anyOf.ts"],"names":[],"mappings":";;AACA,kCAAqC;AAIrC,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,OAAO;IACnB,WAAW,EAAE,IAAI;IACjB,IAAI,EAAE,oBAAa;IACnB,KAAK,EAAE,EAAC,OAAO,EAAE,8BAA8B,EAAC;CACjD,CAAA;AAED,kBAAe,GAAG,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/contains.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type ContainsError = ErrorObject<"contains", { 3 | minContains: number; 4 | maxContains?: number; 5 | }, AnySchema>; 6 | declare const def: CodeKeywordDefinition; 7 | export default def; 8 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/dependentSchemas.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/if.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type IfKeywordError = ErrorObject<"if", { 3 | failingKeyword: string; 4 | }, AnySchema>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/items.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, AnySchema } from "../../types"; 2 | import type { KeywordCxt } from "../../compile/validate"; 3 | declare const def: CodeKeywordDefinition; 4 | export declare function validateTuple(cxt: KeywordCxt, extraItems: string, schArr?: AnySchema[]): void; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/items2020.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type ItemsError = ErrorObject<"items", { 3 | limit: number; 4 | }, AnySchema>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/not.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorNoParams, AnySchema } from "../../types"; 2 | export declare type NotKeywordError = ErrorNoParams<"not", AnySchema>; 3 | declare const def: CodeKeywordDefinition; 4 | export default def; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/oneOf.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type OneOfError = ErrorObject<"oneOf", { 3 | passingSchemas: [number, number] | null; 4 | }, AnySchema[]>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/patternProperties.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/prefixItems.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/properties.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/propertyNames.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type PropertyNamesError = ErrorObject<"propertyNames", { 3 | propertyName: string; 4 | }, AnySchema>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/applicator/thenElse.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/core/id.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/core/id.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const def = { 4 | keyword: "id", 5 | code() { 6 | throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID'); 7 | }, 8 | }; 9 | exports.default = def; 10 | //# sourceMappingURL=id.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/core/id.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"id.js","sourceRoot":"","sources":["../../../lib/vocabularies/core/id.ts"],"names":[],"mappings":";;AAEA,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,IAAI;IACb,IAAI;QACF,MAAM,IAAI,KAAK,CAAC,sDAAsD,CAAC,CAAA;IACzE,CAAC;CACF,CAAA;AAED,kBAAe,GAAG,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/core/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../../types"; 2 | declare const core: Vocabulary; 3 | export default core; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/core/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/vocabularies/core/index.ts"],"names":[],"mappings":";;AACA,6BAA4B;AAC5B,+BAA8B;AAE9B,MAAM,IAAI,GAAe;IACvB,SAAS;IACT,KAAK;IACL,OAAO;IACP,aAAa;IACb,EAAC,OAAO,EAAE,UAAU,EAAC;IACrB,aAAa;IACb,YAAS;IACT,aAAU;CACX,CAAA;AAED,kBAAe,IAAI,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/discriminator/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | import { DiscrError, DiscrErrorObj } from "../discriminator/types"; 3 | export declare type DiscriminatorError = DiscrErrorObj | DiscrErrorObj; 4 | declare const def: CodeKeywordDefinition; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/discriminator/types.d.ts: -------------------------------------------------------------------------------- 1 | import type { ErrorObject } from "../../types"; 2 | export declare enum DiscrError { 3 | Tag = "tag", 4 | Mapping = "mapping" 5 | } 6 | export declare type DiscrErrorObj = ErrorObject<"discriminator", { 7 | error: E; 8 | tag: string; 9 | tagValue: unknown; 10 | }, string>; 11 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/discriminator/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../lib/vocabularies/discriminator/types.ts"],"names":[],"mappings":";;;AAEA,IAAY,UAGX;AAHD,WAAY,UAAU;IACpB,yBAAW,CAAA;IACX,iCAAmB,CAAA;AACrB,CAAC,EAHW,UAAU,GAAV,kBAAU,KAAV,kBAAU,QAGrB"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/draft2020.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../types"; 2 | declare const draft2020Vocabularies: Vocabulary[]; 3 | export default draft2020Vocabularies; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/draft7.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../types"; 2 | declare const draft7Vocabularies: Vocabulary[]; 3 | export default draft7Vocabularies; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/draft7.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"draft7.js","sourceRoot":"","sources":["../../lib/vocabularies/draft7.ts"],"names":[],"mappings":";;AACA,iCAAmC;AACnC,6CAA+C;AAC/C,6CAAkD;AAClD,qCAAuC;AACvC,yCAAgE;AAEhE,MAAM,kBAAkB,GAAiB;IACvC,cAAc;IACd,oBAAoB;IACpB,IAAA,oBAAuB,GAAE;IACzB,gBAAgB;IAChB,6BAAkB;IAClB,4BAAiB;CAClB,CAAA;AAED,kBAAe,kBAAkB,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/dynamicAnchor.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | import type { KeywordCxt } from "../../compile/validate"; 3 | declare const def: CodeKeywordDefinition; 4 | export declare function dynamicAnchor(cxt: KeywordCxt, anchor: string): void; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/dynamicRef.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | import type { KeywordCxt } from "../../compile/validate"; 3 | declare const def: CodeKeywordDefinition; 4 | export declare function dynamicRef(cxt: KeywordCxt, ref: string): void; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../../types"; 2 | declare const dynamic: Vocabulary; 3 | export default dynamic; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/vocabularies/dynamic/index.ts"],"names":[],"mappings":";;AACA,mDAA2C;AAC3C,6CAAqC;AACrC,uDAA+C;AAC/C,iDAAyC;AAEzC,MAAM,OAAO,GAAe,CAAC,uBAAa,EAAE,oBAAU,EAAE,yBAAe,EAAE,sBAAY,CAAC,CAAA;AAEtF,kBAAe,OAAO,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/recursiveAnchor.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/dynamic/recursiveRef.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"recursiveRef.js","sourceRoot":"","sources":["../../../lib/vocabularies/dynamic/recursiveRef.ts"],"names":[],"mappings":";;AACA,6CAAuC;AAEvC,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,eAAe;IACxB,UAAU,EAAE,QAAQ;IACpB,IAAI,EAAE,CAAC,GAAG,EAAE,EAAE,CAAC,IAAA,uBAAU,EAAC,GAAG,EAAE,GAAG,CAAC,MAAM,CAAC;CAC3C,CAAA;AAED,kBAAe,GAAG,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/errors.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=errors.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/errors.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"errors.js","sourceRoot":"","sources":["../../lib/vocabularies/errors.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/format/format.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type FormatError = ErrorObject<"format", { 3 | format: string; 4 | }, string | { 5 | $data: string; 6 | }>; 7 | declare const def: CodeKeywordDefinition; 8 | export default def; 9 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/format/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../../types"; 2 | declare const format: Vocabulary; 3 | export default format; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/format/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const format_1 = require("./format"); 4 | const format = [format_1.default]; 5 | exports.default = format; 6 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/format/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/vocabularies/format/index.ts"],"names":[],"mappings":";;AACA,qCAAoC;AAEpC,MAAM,MAAM,GAAe,CAAC,gBAAa,CAAC,CAAA;AAE1C,kBAAe,MAAM,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/elements.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, SchemaObject } from "../../types"; 2 | import { _JTDTypeError } from "./error"; 3 | export declare type JTDElementsError = _JTDTypeError<"elements", "array", SchemaObject>; 4 | declare const def: CodeKeywordDefinition; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/enum.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type JTDEnumError = ErrorObject<"enum", { 3 | allowedValues: string[]; 4 | }, string[]>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/metadata.d.ts: -------------------------------------------------------------------------------- 1 | import { KeywordCxt } from "../../ajv"; 2 | import type { CodeKeywordDefinition } from "../../types"; 3 | declare const def: CodeKeywordDefinition; 4 | export declare function checkMetadata({ it, keyword }: KeywordCxt, metadata?: boolean): void; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/nullable.d.ts: -------------------------------------------------------------------------------- 1 | import type { KeywordCxt } from "../../compile/validate"; 2 | import { Code, Name } from "../../compile/codegen"; 3 | export declare function checkNullable({ gen, data, parentSchema }: KeywordCxt, cond?: Code): [Name, Code]; 4 | export declare function checkNullableObject(cxt: KeywordCxt, cond: Code): [Name, Code]; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/optionalProperties.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/ref.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, AnySchemaObject } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export declare function hasRef(schema: AnySchemaObject): boolean; 4 | export default def; 5 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/union.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/union.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"union.js","sourceRoot":"","sources":["../../../lib/vocabularies/jtd/union.ts"],"names":[],"mappings":";;AACA,kCAAqC;AAErC,MAAM,GAAG,GAA0B;IACjC,OAAO,EAAE,OAAO;IAChB,UAAU,EAAE,OAAO;IACnB,WAAW,EAAE,IAAI;IACjB,IAAI,EAAE,oBAAa;IACnB,KAAK,EAAE,EAAC,OAAO,EAAE,8BAA8B,EAAC;CACjD,CAAA;AAED,kBAAe,GAAG,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/jtd/values.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, SchemaObject } from "../../types"; 2 | import { _JTDTypeError } from "./error"; 3 | export declare type JTDValuesError = _JTDTypeError<"values", "object", SchemaObject>; 4 | declare const def: CodeKeywordDefinition; 5 | export default def; 6 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/metadata.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../types"; 2 | export declare const metadataVocabulary: Vocabulary; 3 | export declare const contentVocabulary: Vocabulary; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/metadata.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"metadata.js","sourceRoot":"","sources":["../../lib/vocabularies/metadata.ts"],"names":[],"mappings":";;;AAEa,QAAA,kBAAkB,GAAe;IAC5C,OAAO;IACP,aAAa;IACb,SAAS;IACT,YAAY;IACZ,UAAU;IACV,WAAW;IACX,UAAU;CACX,CAAA;AAEY,QAAA,iBAAiB,GAAe;IAC3C,kBAAkB;IAClB,iBAAiB;IACjB,eAAe;CAChB,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/next.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../types"; 2 | declare const next: Vocabulary; 3 | export default next; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/next.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"next.js","sourceRoot":"","sources":["../../lib/vocabularies/next.ts"],"names":[],"mappings":";;AACA,sEAA8D;AAC9D,oEAA4D;AAC5D,8DAAsD;AAEtD,MAAM,IAAI,GAAe,CAAC,2BAAiB,EAAE,0BAAgB,EAAE,uBAAa,CAAC,CAAA;AAE7E,kBAAe,IAAI,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/unevaluated/index.d.ts: -------------------------------------------------------------------------------- 1 | import type { Vocabulary } from "../../types"; 2 | declare const unevaluated: Vocabulary; 3 | export default unevaluated; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/unevaluated/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../lib/vocabularies/unevaluated/index.ts"],"names":[],"mappings":";;AACA,mEAA2D;AAC3D,yDAAiD;AAEjD,MAAM,WAAW,GAAe,CAAC,+BAAqB,EAAE,0BAAgB,CAAC,CAAA;AAEzE,kBAAe,WAAW,CAAA"} -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedItems.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type UnevaluatedItemsError = ErrorObject<"unevaluatedItems", { 3 | limit: number; 4 | }, AnySchema>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/unevaluated/unevaluatedProperties.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject, AnySchema } from "../../types"; 2 | export declare type UnevaluatedPropertiesError = ErrorObject<"unevaluatedProperties", { 3 | unevaluatedProperty: string; 4 | }, AnySchema>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/const.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type ConstError = ErrorObject<"const", { 3 | allowedValue: any; 4 | }>; 5 | declare const def: CodeKeywordDefinition; 6 | export default def; 7 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/enum.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type EnumError = ErrorObject<"enum", { 3 | allowedValues: any[]; 4 | }, any[] | { 5 | $data: string; 6 | }>; 7 | declare const def: CodeKeywordDefinition; 8 | export default def; 9 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/limitContains.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/limitItems.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/limitLength.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/limitProperties.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition } from "../../types"; 2 | declare const def: CodeKeywordDefinition; 3 | export default def; 4 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/multipleOf.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type MultipleOfError = ErrorObject<"multipleOf", { 3 | multipleOf: number; 4 | }, number | { 5 | $data: string; 6 | }>; 7 | declare const def: CodeKeywordDefinition; 8 | export default def; 9 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/pattern.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type PatternError = ErrorObject<"pattern", { 3 | pattern: string; 4 | }, string | { 5 | $data: string; 6 | }>; 7 | declare const def: CodeKeywordDefinition; 8 | export default def; 9 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/required.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type RequiredError = ErrorObject<"required", { 3 | missingProperty: string; 4 | }, string[] | { 5 | $data: string; 6 | }>; 7 | declare const def: CodeKeywordDefinition; 8 | export default def; 9 | -------------------------------------------------------------------------------- /node_modules/ajv/dist/vocabularies/validation/uniqueItems.d.ts: -------------------------------------------------------------------------------- 1 | import type { CodeKeywordDefinition, ErrorObject } from "../../types"; 2 | export declare type UniqueItemsError = ErrorObject<"uniqueItems", { 3 | i: number; 4 | j: number; 5 | }, boolean | { 6 | $data: string; 7 | }>; 8 | declare const def: CodeKeywordDefinition; 9 | export default def; 10 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/runtime/equal.ts: -------------------------------------------------------------------------------- 1 | // https://github.com/ajv-validator/ajv/issues/889 2 | import * as equal from "fast-deep-equal" 3 | 4 | type Equal = typeof equal & {code: string} 5 | ;(equal as Equal).code = 'require("ajv/dist/runtime/equal").default' 6 | 7 | export default equal as Equal 8 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/runtime/re2.ts: -------------------------------------------------------------------------------- 1 | import * as re2 from "re2" 2 | 3 | type Re2 = typeof re2 & {code: string} 4 | ;(re2 as Re2).code = 'require("ajv/dist/runtime/re2").default' 5 | 6 | export default re2 as Re2 7 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/runtime/uri.ts: -------------------------------------------------------------------------------- 1 | import * as uri from "uri-js" 2 | 3 | type URI = typeof uri & {code: string} 4 | ;(uri as URI).code = 'require("ajv/dist/runtime/uri").default' 5 | 6 | export default uri as URI 7 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/applicator/dependentSchemas.ts: -------------------------------------------------------------------------------- 1 | import type {CodeKeywordDefinition} from "../../types" 2 | import {validateSchemaDeps} from "./dependencies" 3 | 4 | const def: CodeKeywordDefinition = { 5 | keyword: "dependentSchemas", 6 | type: "object", 7 | schemaType: "object", 8 | code: (cxt) => validateSchemaDeps(cxt), 9 | } 10 | 11 | export default def 12 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/core/id.ts: -------------------------------------------------------------------------------- 1 | import type {CodeKeywordDefinition} from "../../types" 2 | 3 | const def: CodeKeywordDefinition = { 4 | keyword: "id", 5 | code() { 6 | throw new Error('NOT SUPPORTED: keyword "id", use "$id" for schema ID') 7 | }, 8 | } 9 | 10 | export default def 11 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/core/index.ts: -------------------------------------------------------------------------------- 1 | import type {Vocabulary} from "../../types" 2 | import idKeyword from "./id" 3 | import refKeyword from "./ref" 4 | 5 | const core: Vocabulary = [ 6 | "$schema", 7 | "$id", 8 | "$defs", 9 | "$vocabulary", 10 | {keyword: "$comment"}, 11 | "definitions", 12 | idKeyword, 13 | refKeyword, 14 | ] 15 | 16 | export default core 17 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/discriminator/types.ts: -------------------------------------------------------------------------------- 1 | import type {ErrorObject} from "../../types" 2 | 3 | export enum DiscrError { 4 | Tag = "tag", 5 | Mapping = "mapping", 6 | } 7 | 8 | export type DiscrErrorObj = ErrorObject< 9 | "discriminator", 10 | {error: E; tag: string; tagValue: unknown}, 11 | string 12 | > 13 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/dynamic/recursiveRef.ts: -------------------------------------------------------------------------------- 1 | import type {CodeKeywordDefinition} from "../../types" 2 | import {dynamicRef} from "./dynamicRef" 3 | 4 | const def: CodeKeywordDefinition = { 5 | keyword: "$recursiveRef", 6 | schemaType: "string", 7 | code: (cxt) => dynamicRef(cxt, cxt.schema), 8 | } 9 | 10 | export default def 11 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/format/index.ts: -------------------------------------------------------------------------------- 1 | import type {Vocabulary} from "../../types" 2 | import formatKeyword from "./format" 3 | 4 | const format: Vocabulary = [formatKeyword] 5 | 6 | export default format 7 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/jtd/union.ts: -------------------------------------------------------------------------------- 1 | import type {CodeKeywordDefinition} from "../../types" 2 | import {validateUnion} from "../code" 3 | 4 | const def: CodeKeywordDefinition = { 5 | keyword: "union", 6 | schemaType: "array", 7 | trackErrors: true, 8 | code: validateUnion, 9 | error: {message: "must match a schema in union"}, 10 | } 11 | 12 | export default def 13 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/next.ts: -------------------------------------------------------------------------------- 1 | import type {Vocabulary} from "../types" 2 | import dependentRequired from "./validation/dependentRequired" 3 | import dependentSchemas from "./applicator/dependentSchemas" 4 | import limitContains from "./validation/limitContains" 5 | 6 | const next: Vocabulary = [dependentRequired, dependentSchemas, limitContains] 7 | 8 | export default next 9 | -------------------------------------------------------------------------------- /node_modules/ajv/lib/vocabularies/unevaluated/index.ts: -------------------------------------------------------------------------------- 1 | import type {Vocabulary} from "../../types" 2 | import unevaluatedProperties from "./unevaluatedProperties" 3 | import unevaluatedItems from "./unevaluatedItems" 4 | 5 | const unevaluated: Vocabulary = [unevaluatedProperties, unevaluatedItems] 6 | 7 | export default unevaluated 8 | -------------------------------------------------------------------------------- /node_modules/aproba/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | * Drop support for 0.10 and 0.12. They haven't been in travis but still, 3 | since we _know_ we'll break with them now it's only polite to do a 4 | major bump. 5 | -------------------------------------------------------------------------------- /node_modules/are-we-there-yet/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | exports.TrackerGroup = require('./tracker-group.js') 3 | exports.Tracker = require('./tracker.js') 4 | exports.TrackerStream = require('./tracker-stream.js') 5 | -------------------------------------------------------------------------------- /node_modules/are-we-there-yet/lib/tracker-base.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | var EventEmitter = require('events').EventEmitter 3 | var util = require('util') 4 | 5 | var trackerId = 0 6 | var TrackerBase = module.exports = function (name) { 7 | EventEmitter.call(this) 8 | this.id = ++trackerId 9 | this.name = name 10 | } 11 | util.inherits(TrackerBase, EventEmitter) 12 | -------------------------------------------------------------------------------- /node_modules/astral-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const regex = '[\uD800-\uDBFF][\uDC00-\uDFFF]'; 3 | 4 | const astralRegex = options => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, 'g'); 5 | 6 | module.exports = astralRegex; 7 | -------------------------------------------------------------------------------- /node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /node_modules/base64-js/index.d.ts: -------------------------------------------------------------------------------- 1 | export function byteLength(b64: string): number; 2 | export function toByteArray(b64: string): Uint8Array; 3 | export function fromByteArray(uint8: Uint8Array): string; 4 | -------------------------------------------------------------------------------- /node_modules/bin-links/lib/get-prefix.js: -------------------------------------------------------------------------------- 1 | const { dirname } = require('path') 2 | const getNodeModules = require('./get-node-modules.js') 3 | module.exports = path => dirname(getNodeModules(path)) 4 | -------------------------------------------------------------------------------- /node_modules/bin-links/lib/is-windows.js: -------------------------------------------------------------------------------- 1 | const platform = process.env.__TESTING_BIN_LINKS_PLATFORM__ || process.platform 2 | module.exports = platform === 'win32' 3 | -------------------------------------------------------------------------------- /node_modules/bin-links/lib/man-target.js: -------------------------------------------------------------------------------- 1 | const isWindows = require('./is-windows.js') 2 | const getPrefix = require('./get-prefix.js') 3 | const { dirname } = require('path') 4 | 5 | module.exports = ({ top, path }) => !top || isWindows ? null 6 | : dirname(getPrefix(path)) + '/share/man' 7 | -------------------------------------------------------------------------------- /node_modules/bl/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: false 2 | arch: 3 | - amd64 4 | - ppc64le 5 | language: node_js 6 | node_js: 7 | - '6' 8 | - '8' 9 | - '10' 10 | - '12' 11 | - '14' 12 | - '15' 13 | - lts/* 14 | notifications: 15 | email: 16 | - rod@vagg.org 17 | - matteo.collina@gmail.com 18 | -------------------------------------------------------------------------------- /node_modules/brace-expansion/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/brace-expansion" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /node_modules/cacache/lib/util/hash-to-segments.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = hashToSegments 4 | 5 | function hashToSegments (hash) { 6 | return [hash.slice(0, 2), hash.slice(2, 4), hash.slice(4)] 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/chownr/README.md: -------------------------------------------------------------------------------- 1 | Like `chown -R`. 2 | 3 | Takes the same arguments as `fs.chown()` 4 | -------------------------------------------------------------------------------- /node_modules/color-support/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var colorSupport = require('./')({alwaysReturn: true }) 3 | console.log(JSON.stringify(colorSupport, null, 2)) 4 | -------------------------------------------------------------------------------- /node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /node_modules/debug/src/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Detect Electron renderer / nwjs process, which is node, but we should 3 | * treat as a browser. 4 | */ 5 | 6 | if (typeof process === 'undefined' || process.type === 'renderer' || process.browser === true || process.__nwjs) { 7 | module.exports = require('./browser.js'); 8 | } else { 9 | module.exports = require('./node.js'); 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/delegates/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /node_modules/delegates/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./node_modules/.bin/mocha \ 4 | --require should \ 5 | --reporter spec \ 6 | --bail 7 | 8 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/emoji-regex/RGI_Emoji.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'emoji-regex/RGI_Emoji' { 2 | function emojiRegex(): RegExp; 3 | 4 | export = emojiRegex; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/emoji-regex/es2015/RGI_Emoji.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'emoji-regex/es2015/RGI_Emoji' { 2 | function emojiRegex(): RegExp; 3 | 4 | export = emojiRegex; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/emoji-regex/es2015/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'emoji-regex/es2015' { 2 | function emojiRegex(): RegExp; 3 | 4 | export = emojiRegex; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/emoji-regex/es2015/text.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'emoji-regex/es2015/text' { 2 | function emojiRegex(): RegExp; 3 | 4 | export = emojiRegex; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/emoji-regex/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'emoji-regex' { 2 | function emojiRegex(): RegExp; 3 | 4 | export = emojiRegex; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/emoji-regex/text.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'emoji-regex/text' { 2 | function emojiRegex(): RegExp; 3 | 4 | export = emojiRegex; 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/encoding/.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | printWidth: 160, 3 | tabWidth: 4, 4 | singleQuote: true, 5 | endOfLine: 'lf', 6 | trailingComma: 'none', 7 | arrowParens: 'avoid' 8 | }; 9 | -------------------------------------------------------------------------------- /node_modules/err-code/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 4 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [package.json] 12 | indent_size = 2 13 | -------------------------------------------------------------------------------- /node_modules/err-code/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | "extends": [ 4 | "@satazor/eslint-config/es6", 5 | "@satazor/eslint-config/addons/node" 6 | ] 7 | } -------------------------------------------------------------------------------- /node_modules/err-code/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4" 4 | - "6" 5 | -------------------------------------------------------------------------------- /node_modules/err-code/test/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "mocha": true 4 | } 5 | } -------------------------------------------------------------------------------- /node_modules/fast-deep-equal/es6/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const equal: (a: any, b: any) => boolean; 2 | export = equal; 3 | -------------------------------------------------------------------------------- /node_modules/fast-deep-equal/es6/react.d.ts: -------------------------------------------------------------------------------- 1 | declare const equal: (a: any, b: any) => boolean; 2 | export = equal; 3 | -------------------------------------------------------------------------------- /node_modules/fast-deep-equal/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'fast-deep-equal' { 2 | const equal: (a: any, b: any) => boolean; 3 | export = equal; 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/fast-deep-equal/react.d.ts: -------------------------------------------------------------------------------- 1 | declare const equal: (a: any, b: any) => boolean; 2 | export = equal; 3 | -------------------------------------------------------------------------------- /node_modules/fs-constants/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('constants') 2 | -------------------------------------------------------------------------------- /node_modules/fs-constants/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('fs').constants || require('constants') 2 | -------------------------------------------------------------------------------- /node_modules/function-bind/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "indent": [2, 4], 9 | "max-nested-callbacks": [2, 3], 10 | "max-params": [2, 3], 11 | "max-statements": [2, 20], 12 | "no-new-func": [1], 13 | "strict": [0] 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /node_modules/function-bind/.npmignore: -------------------------------------------------------------------------------- 1 | # gitignore 2 | .DS_Store 3 | .monitor 4 | .*.swp 5 | .nodemonignore 6 | releases 7 | *.log 8 | *.err 9 | fleet.json 10 | public/browserify 11 | bin/*.json 12 | .bin 13 | build 14 | compile 15 | .lock-wscript 16 | coverage 17 | node_modules 18 | 19 | # Only apps should have lockfiles 20 | npm-shrinkwrap.json 21 | package-lock.json 22 | yarn.lock 23 | -------------------------------------------------------------------------------- /node_modules/function-bind/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var implementation = require('./implementation'); 4 | 5 | module.exports = Function.prototype.bind || implementation; 6 | -------------------------------------------------------------------------------- /node_modules/function-bind/test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "array-bracket-newline": 0, 4 | "array-element-newline": 0, 5 | "max-statements-per-line": [2, { "max": 2 }], 6 | "no-invalid-this": 0, 7 | "no-magic-numbers": 0, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/gauge/lib/has-color.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | var colorSupport = require('color-support') 3 | 4 | module.exports = colorSupport().hasBasic 5 | -------------------------------------------------------------------------------- /node_modules/gauge/lib/process.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | // this exists so we can replace it during testing 3 | module.exports = process 4 | -------------------------------------------------------------------------------- /node_modules/gauge/lib/set-immediate.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | var process = require('./process') 3 | try { 4 | module.exports = setImmediate 5 | } catch (ex) { 6 | module.exports = process.nextTick 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/gauge/lib/set-interval.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | // this exists so we can replace it during testing 3 | module.exports = setInterval 4 | -------------------------------------------------------------------------------- /node_modules/gauge/lib/spin.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = function spin (spinstr, spun) { 4 | return spinstr[spun % spinstr.length] 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/has/README.md: -------------------------------------------------------------------------------- 1 | # has 2 | 3 | > Object.prototype.hasOwnProperty.call shortcut 4 | 5 | ## Installation 6 | 7 | ```sh 8 | npm install --save has 9 | ``` 10 | 11 | ## Usage 12 | 13 | ```js 14 | var has = require('has'); 15 | 16 | has({}, 'hasOwnProperty'); // false 17 | has(Object.prototype, 'hasOwnProperty'); // true 18 | ``` 19 | -------------------------------------------------------------------------------- /node_modules/has/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var bind = require('function-bind'); 4 | 5 | module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty); 6 | -------------------------------------------------------------------------------- /node_modules/https-proxy-agent/dist/parse-proxy-response.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import { Readable } from 'stream'; 3 | export interface ProxyResponse { 4 | statusCode: number; 5 | buffered: Buffer; 6 | } 7 | export default function parseProxyResponse(socket: Readable): Promise; 8 | -------------------------------------------------------------------------------- /node_modules/iconv-lite/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /node_modules/iconv-lite/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /node_modules/iconv-lite/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /node_modules/iconv-lite/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | try { 2 | var util = require('util'); 3 | /* istanbul ignore next */ 4 | if (typeof util.inherits !== 'function') throw ''; 5 | module.exports = util.inherits; 6 | } catch (e) { 7 | /* istanbul ignore next */ 8 | module.exports = require('./inherits_browser.js'); 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/is-base64/.gitattributes: -------------------------------------------------------------------------------- 1 | # Convert line endings to LF (Line Feed) 2 | * text=auto -------------------------------------------------------------------------------- /node_modules/is-base64/.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "google", 3 | "disallowSpacesInAnonymousFunctionExpression": null, 4 | "excludeFiles": ["node_modules/**"] 5 | } -------------------------------------------------------------------------------- /node_modules/is-base64/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | This project adheres to [Semantic Versioning](http://semver.org/). 4 | -------------------------------------------------------------------------------- /node_modules/is-core-module/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/is-lambda/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /node_modules/is-lambda/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - '7' 4 | - '6' 5 | - '5' 6 | - '4' 7 | - '0.12' 8 | - '0.10' 9 | -------------------------------------------------------------------------------- /node_modules/is-lambda/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = !!( 4 | (process.env.LAMBDA_TASK_ROOT && process.env.AWS_EXECUTION_ENV) || 5 | false 6 | ) 7 | -------------------------------------------------------------------------------- /node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /node_modules/itertools/types.d.ts: -------------------------------------------------------------------------------- 1 | export type Maybe = T | undefined; 2 | export type Predicate = (value: T) => boolean; 3 | export type Primitive = string | number | boolean; 4 | -------------------------------------------------------------------------------- /node_modules/itertools/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; -------------------------------------------------------------------------------- /node_modules/itertools/types.js.flow: -------------------------------------------------------------------------------- 1 | // @flow strict 2 | 3 | export type Maybe = T | void; 4 | export type Predicate = (T) => boolean; 5 | export type Primitive = string | number | boolean; 6 | -------------------------------------------------------------------------------- /node_modules/itertools/utils.d.ts: -------------------------------------------------------------------------------- 1 | import { Primitive } from './types'; 2 | 3 | export type CmpFn = (a: T, b: T) => number; 4 | 5 | export function keyToCmp(keyFn: (value: T) => Primitive): CmpFn; 6 | export function identityPredicate(x: unknown): boolean; 7 | export function numberIdentity(x: unknown): number; 8 | export function primitiveIdentity(x: unknown): Primitive; 9 | -------------------------------------------------------------------------------- /node_modules/json-schema-traverse/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: epoberezkin 2 | tidelift: "npm/json-schema-traverse" 3 | -------------------------------------------------------------------------------- /node_modules/json-schema-traverse/spec/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | parserOptions: 2 | ecmaVersion: 6 3 | globals: 4 | beforeEach: false 5 | describe: false 6 | it: false 7 | -------------------------------------------------------------------------------- /node_modules/jsonparse/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /node_modules/jsonparse/test/unvalid.js: -------------------------------------------------------------------------------- 1 | var test = require('tape'); 2 | var Parser = require('../'); 3 | 4 | test('unvalid', function (t) { 5 | var count = 0; 6 | 7 | var p = new Parser(); 8 | p.onError = function (value) { 9 | count++; 10 | t.equal(1, count); 11 | t.end(); 12 | }; 13 | 14 | p.write('{"test": eer['); 15 | }); 16 | -------------------------------------------------------------------------------- /node_modules/just-diff-apply/rollup.config.js: -------------------------------------------------------------------------------- 1 | const createRollupConfig = require('../../config/createRollupConfig'); 2 | 3 | module.exports = createRollupConfig(__dirname); 4 | -------------------------------------------------------------------------------- /node_modules/just-diff/rollup.config.js: -------------------------------------------------------------------------------- 1 | const createRollupConfig = require('../../config/createRollupConfig'); 2 | 3 | module.exports = createRollupConfig(__dirname); 4 | -------------------------------------------------------------------------------- /node_modules/make-fetch-happen/lib/cache/errors.js: -------------------------------------------------------------------------------- 1 | class NotCachedError extends Error { 2 | constructor (url) { 3 | /* eslint-disable-next-line max-len */ 4 | super(`request to ${url} failed: cache mode is 'only-if-cached' but no cached response is available.`) 5 | this.code = 'ENOTCACHED' 6 | } 7 | } 8 | 9 | module.exports = { 10 | NotCachedError, 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/lexer/decodeHTML.d.ts: -------------------------------------------------------------------------------- 1 | export declare function decodeHTMLStrict(text: string): string; 2 | //# sourceMappingURL=decodeHTML.d.ts.map -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/lexer/decodeHTML.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decodeHTML.d.ts","sourceRoot":"","sources":["../../../src/lexer/decodeHTML.ts"],"names":[],"mappings":"AAinEA,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAYrD"} -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/lexer/regexp.d.ts: -------------------------------------------------------------------------------- 1 | import { Context, ParserState } from '../common'; 2 | import { Token } from '../token'; 3 | export declare function scanRegularExpression(parser: ParserState, context: Context): Token; 4 | //# sourceMappingURL=regexp.d.ts.map -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/lexer/regexp.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"regexp.d.ts","sourceRoot":"","sources":["../../../src/lexer/regexp.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AACjD,OAAO,EAAE,KAAK,EAAE,MAAM,UAAU,CAAC;AAYjC,wBAAgB,qBAAqB,CAAC,MAAM,EAAE,WAAW,EAAE,OAAO,EAAE,OAAO,GAAG,KAAK,CAqHlF"} -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/lexer/template.d.ts: -------------------------------------------------------------------------------- 1 | import { ParserState, Context } from '../common'; 2 | import { Token } from '../token'; 3 | export declare function scanTemplate(parser: ParserState, context: Context): Token; 4 | export declare function scanTemplateTail(parser: ParserState, context: Context): Token; 5 | //# sourceMappingURL=template.d.ts.map -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/unicode.d.ts: -------------------------------------------------------------------------------- 1 | declare function isIDContinue(code: number): boolean; 2 | declare function isIDStart(code: number): boolean; 3 | declare function mustEscape(code: number): boolean; 4 | export declare const unicodeLookup: Uint32Array; 5 | export { isIDContinue, isIDStart, mustEscape }; 6 | //# sourceMappingURL=unicode.d.ts.map -------------------------------------------------------------------------------- /node_modules/meriyah/dist/src/unicode.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"unicode.d.ts","sourceRoot":"","sources":["../../src/unicode.ts"],"names":[],"mappings":"AAGA,iBAAS,YAAY,CAAC,IAAI,EAAC,MAAM,WAEhC;AACD,iBAAS,SAAS,CAAC,IAAI,EAAC,MAAM,WAE7B;AACD,iBAAS,UAAU,CAAC,IAAI,EAAC,MAAM,WAE9B;AACD,eAAO,MAAM,aAAa,aAsBzB,CAAA;AACD,OAAO,EAAC,YAAY,EAAC,SAAS,EAAC,UAAU,EAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/mimic-fn/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const mimicFn = (to, from) => { 4 | for (const prop of Reflect.ownKeys(from)) { 5 | Object.defineProperty(to, prop, Object.getOwnPropertyDescriptor(from, prop)); 6 | } 7 | 8 | return to; 9 | }; 10 | 11 | module.exports = mimicFn; 12 | // TODO: Remove this for the next major release 13 | module.exports.default = mimicFn; 14 | -------------------------------------------------------------------------------- /node_modules/minimatch/lib/path.js: -------------------------------------------------------------------------------- 1 | const isWindows = typeof process === 'object' && 2 | process && 3 | process.platform === 'win32' 4 | module.exports = isWindows ? { sep: '\\' } : { sep: '/' } 5 | -------------------------------------------------------------------------------- /node_modules/node-gyp/SECURITY.md: -------------------------------------------------------------------------------- 1 | If you believe you have found a security issue in the software in this 2 | repository, please consult https://github.com/nodejs/node/blob/HEAD/SECURITY.md. -------------------------------------------------------------------------------- /node_modules/node-gyp/docs/Home.md: -------------------------------------------------------------------------------- 1 | Welcome to the node-gyp wiki! 2 | 3 | * [["binding.gyp" files out in the wild]] 4 | * [[Linking to OpenSSL]] 5 | * [[Common Issues]] 6 | * [[Updating npm's bundled node-gyp]] 7 | * [[Error: "pre" versions of node cannot be installed]] 8 | -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/.flake8: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-complexity = 101 3 | max-line-length = 88 4 | extend-ignore = E203 # whitespace before ':' to agree with psf/black 5 | -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | 3 | * [Node.js Code of Conduct](https://github.com/nodejs/admin/blob/HEAD/CODE_OF_CONDUCT.md) 4 | * [Node.js Moderation Policy](https://github.com/nodejs/admin/blob/HEAD/Moderation-Policy.md) 5 | -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/gyp: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright 2013 The Chromium Authors. All rights reserved. 3 | # Use of this source code is governed by a BSD-style license that can be 4 | # found in the LICENSE file. 5 | 6 | set -e 7 | base=$(dirname "$0") 8 | exec python "${base}/gyp_main.py" "$@" 9 | -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/gyp.bat: -------------------------------------------------------------------------------- 1 | @rem Copyright (c) 2009 Google Inc. All rights reserved. 2 | @rem Use of this source code is governed by a BSD-style license that can be 3 | @rem found in the LICENSE file. 4 | 5 | @python "%~dp0gyp_main.py" %* 6 | -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.py -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/requirements_dev.txt: -------------------------------------------------------------------------------- 1 | flake8 2 | pytest 3 | -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/tools/Xcode/README: -------------------------------------------------------------------------------- 1 | Specifications contains syntax formatters for Xcode 3. These do not appear to be supported yet on Xcode 4. To use these with Xcode 3 please install both the gyp.pbfilespec and gyp.xclangspec files in 2 | 3 | ~/Library/Application Support/Developer/Shared/Xcode/Specifications/ 4 | 5 | and restart Xcode. -------------------------------------------------------------------------------- /node_modules/node-gyp/gyp/tools/emacs/run-unit-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # Copyright (c) 2012 Google Inc. All rights reserved. 3 | # Use of this source code is governed by a BSD-style license that can be 4 | # found in the LICENSE file. 5 | emacs --no-site-file --no-init-file --batch \ 6 | --load ert.el --load gyp.el --load gyp-tests.el \ 7 | -f ert-run-tests-batch-and-exit 8 | -------------------------------------------------------------------------------- /node_modules/node-gyp/node_modules/.bin/nopt: -------------------------------------------------------------------------------- 1 | ../nopt/bin/nopt.js -------------------------------------------------------------------------------- /node_modules/node-gyp/test/common.js: -------------------------------------------------------------------------------- 1 | const envPaths = require('env-paths') 2 | 3 | module.exports.devDir = () => envPaths('node-gyp', { suffix: '' }).cache 4 | -------------------------------------------------------------------------------- /node_modules/node-gyp/test/fixtures/nodedir/include/node/config.gypi: -------------------------------------------------------------------------------- 1 | # Test configuration 2 | { 3 | 'variables': { 4 | 'build_with_electron': true 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/normalize-package-data/lib/safe_format.js: -------------------------------------------------------------------------------- 1 | var util = require('util') 2 | 3 | module.exports = function () { 4 | var args = Array.prototype.slice.call(arguments, 0) 5 | args.forEach(function (arg) { 6 | if (!arg) { 7 | throw new TypeError('Bad arguments.') 8 | } 9 | }) 10 | return util.format.apply(null, arguments) 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/npm-normalize-package-bin/.github/settings.yml: -------------------------------------------------------------------------------- 1 | --- 2 | _extends: 'open-source-project-boilerplate' 3 | -------------------------------------------------------------------------------- /node_modules/pacote/lib/util/trailing-slashes.js: -------------------------------------------------------------------------------- 1 | const removeTrailingSlashes = (input) => { 2 | // in order to avoid regexp redos detection 3 | let output = input 4 | while (output.endsWith('/')) { 5 | output = output.slice(0, -1) 6 | } 7 | return output 8 | } 9 | 10 | module.exports = removeTrailingSlashes 11 | -------------------------------------------------------------------------------- /node_modules/postcss-selector-parser/dist/sortAscending.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | exports.__esModule = true; 4 | exports["default"] = sortAscending; 5 | 6 | function sortAscending(list) { 7 | return list.sort(function (a, b) { 8 | return a - b; 9 | }); 10 | } 11 | 12 | ; 13 | module.exports = exports.default; -------------------------------------------------------------------------------- /node_modules/promise-all-reject-late/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [isaacs] 4 | -------------------------------------------------------------------------------- /node_modules/promise-retry/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 4 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [package.json] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /node_modules/promise-retry/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "10" 4 | - "12" 5 | -------------------------------------------------------------------------------- /node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /node_modules/readable-stream/lib/internal/streams/from-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function () { 2 | throw new Error('Readable.from is not available in the browser') 3 | }; 4 | -------------------------------------------------------------------------------- /node_modules/readable-stream/lib/internal/streams/stream-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = require('events').EventEmitter; 2 | -------------------------------------------------------------------------------- /node_modules/readable-stream/lib/internal/streams/stream.js: -------------------------------------------------------------------------------- 1 | module.exports = require('stream'); 2 | -------------------------------------------------------------------------------- /node_modules/regenerator-runtime/path.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Copyright (c) 2014-present, Facebook, Inc. 3 | * 4 | * This source code is licensed under the MIT license found in the 5 | * LICENSE file in the root directory of this source tree. 6 | */ 7 | 8 | exports.path = require("path").join( 9 | __dirname, 10 | "runtime.js" 11 | ); 12 | -------------------------------------------------------------------------------- /node_modules/regexp-tree/bin/regexp-tree: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | 'use strict'; 4 | 5 | require('../dist/bin/regexp-tree')(); -------------------------------------------------------------------------------- /node_modules/regexp-tree/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * The MIT License (MIT) 3 | * Copyright (c) 2017-present Dmitry Soshnikov 4 | */ 5 | 6 | 'use strict'; 7 | 8 | module.exports = require('./dist/regexp-tree'); -------------------------------------------------------------------------------- /node_modules/restore-cursor/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | Gracefully restore the CLI cursor on exit. 3 | 4 | @example 5 | ``` 6 | import restoreCursor = require('restore-cursor'); 7 | 8 | restoreCursor(); 9 | ``` 10 | */ 11 | declare function restoreCursor(): void; 12 | 13 | export = restoreCursor; 14 | -------------------------------------------------------------------------------- /node_modules/restore-cursor/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const onetime = require('onetime'); 3 | const signalExit = require('signal-exit'); 4 | 5 | module.exports = onetime(() => { 6 | signalExit(() => { 7 | process.stderr.write('\u001B[?25h'); 8 | }, {alwaysLast: true}); 9 | }); 10 | -------------------------------------------------------------------------------- /node_modules/retry/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/* 2 | npm-debug.log 3 | coverage 4 | -------------------------------------------------------------------------------- /node_modules/retry/equation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/retry/equation.gif -------------------------------------------------------------------------------- /node_modules/retry/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/retry'); -------------------------------------------------------------------------------- /node_modules/retry/test/common.js: -------------------------------------------------------------------------------- 1 | var common = module.exports; 2 | var path = require('path'); 3 | 4 | var rootDir = path.join(__dirname, '..'); 5 | common.dir = { 6 | lib: rootDir + '/lib' 7 | }; 8 | 9 | common.assert = require('assert'); 10 | common.fake = require('fake'); -------------------------------------------------------------------------------- /node_modules/safe-regex/.travis.yml: -------------------------------------------------------------------------------- 1 | sudo: required 2 | 3 | language: node_js 4 | 5 | node_js: 6 | - "10" 7 | - "12" 8 | 9 | install: 10 | - npm install 11 | 12 | script: 13 | - npm test 14 | 15 | cache: 16 | directories: 17 | - node_modules 18 | -------------------------------------------------------------------------------- /node_modules/safe-regex/example/safe.js: -------------------------------------------------------------------------------- 1 | var safe = require('../'); 2 | var regex = process.argv.slice(2).join(' '); 3 | console.log(safe(regex)); 4 | -------------------------------------------------------------------------------- /node_modules/safe-regex/lib/analyzer-family.js: -------------------------------------------------------------------------------- 1 | // Load the analyzers 2 | const heuristicAnalyzer = require("./heuristic-analyzer"); 3 | 4 | module.exports = [heuristicAnalyzer]; 5 | -------------------------------------------------------------------------------- /node_modules/semver/classes/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | SemVer: require('./semver.js'), 3 | Range: require('./range.js'), 4 | Comparator: require('./comparator.js'), 5 | } 6 | -------------------------------------------------------------------------------- /node_modules/semver/functions/clean.js: -------------------------------------------------------------------------------- 1 | const parse = require('./parse') 2 | const clean = (version, options) => { 3 | const s = parse(version.trim().replace(/^[=v]+/, ''), options) 4 | return s ? s.version : null 5 | } 6 | module.exports = clean 7 | -------------------------------------------------------------------------------- /node_modules/semver/functions/compare-build.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const compareBuild = (a, b, loose) => { 3 | const versionA = new SemVer(a, loose) 4 | const versionB = new SemVer(b, loose) 5 | return versionA.compare(versionB) || versionA.compareBuild(versionB) 6 | } 7 | module.exports = compareBuild 8 | -------------------------------------------------------------------------------- /node_modules/semver/functions/compare-loose.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const compareLoose = (a, b) => compare(a, b, true) 3 | module.exports = compareLoose 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/compare.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const compare = (a, b, loose) => 3 | new SemVer(a, loose).compare(new SemVer(b, loose)) 4 | 5 | module.exports = compare 6 | -------------------------------------------------------------------------------- /node_modules/semver/functions/eq.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const eq = (a, b, loose) => compare(a, b, loose) === 0 3 | module.exports = eq 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/gt.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const gt = (a, b, loose) => compare(a, b, loose) > 0 3 | module.exports = gt 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/gte.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const gte = (a, b, loose) => compare(a, b, loose) >= 0 3 | module.exports = gte 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/lt.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const lt = (a, b, loose) => compare(a, b, loose) < 0 3 | module.exports = lt 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/lte.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const lte = (a, b, loose) => compare(a, b, loose) <= 0 3 | module.exports = lte 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/major.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const major = (a, loose) => new SemVer(a, loose).major 3 | module.exports = major 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/minor.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const minor = (a, loose) => new SemVer(a, loose).minor 3 | module.exports = minor 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/neq.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const neq = (a, b, loose) => compare(a, b, loose) !== 0 3 | module.exports = neq 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/patch.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const patch = (a, loose) => new SemVer(a, loose).patch 3 | module.exports = patch 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/prerelease.js: -------------------------------------------------------------------------------- 1 | const parse = require('./parse') 2 | const prerelease = (version, options) => { 3 | const parsed = parse(version, options) 4 | return (parsed && parsed.prerelease.length) ? parsed.prerelease : null 5 | } 6 | module.exports = prerelease 7 | -------------------------------------------------------------------------------- /node_modules/semver/functions/rcompare.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const rcompare = (a, b, loose) => compare(b, a, loose) 3 | module.exports = rcompare 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/rsort.js: -------------------------------------------------------------------------------- 1 | const compareBuild = require('./compare-build') 2 | const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose)) 3 | module.exports = rsort 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/satisfies.js: -------------------------------------------------------------------------------- 1 | const Range = require('../classes/range') 2 | const satisfies = (version, range, options) => { 3 | try { 4 | range = new Range(range, options) 5 | } catch (er) { 6 | return false 7 | } 8 | return range.test(version) 9 | } 10 | module.exports = satisfies 11 | -------------------------------------------------------------------------------- /node_modules/semver/functions/sort.js: -------------------------------------------------------------------------------- 1 | const compareBuild = require('./compare-build') 2 | const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose)) 3 | module.exports = sort 4 | -------------------------------------------------------------------------------- /node_modules/semver/functions/valid.js: -------------------------------------------------------------------------------- 1 | const parse = require('./parse') 2 | const valid = (version, options) => { 3 | const v = parse(version, options) 4 | return v ? v.version : null 5 | } 6 | module.exports = valid 7 | -------------------------------------------------------------------------------- /node_modules/semver/internal/debug.js: -------------------------------------------------------------------------------- 1 | const debug = ( 2 | typeof process === 'object' && 3 | process.env && 4 | process.env.NODE_DEBUG && 5 | /\bsemver\b/i.test(process.env.NODE_DEBUG) 6 | ) ? (...args) => console.error('SEMVER', ...args) 7 | : () => {} 8 | 9 | module.exports = debug 10 | -------------------------------------------------------------------------------- /node_modules/semver/preload.js: -------------------------------------------------------------------------------- 1 | // XXX remove in v8 or beyond 2 | module.exports = require('./index.js') 3 | -------------------------------------------------------------------------------- /node_modules/semver/ranges/gtr.js: -------------------------------------------------------------------------------- 1 | // Determine if version is greater than all the versions possible in the range. 2 | const outside = require('./outside') 3 | const gtr = (version, range, options) => outside(version, range, '>', options) 4 | module.exports = gtr 5 | -------------------------------------------------------------------------------- /node_modules/semver/ranges/intersects.js: -------------------------------------------------------------------------------- 1 | const Range = require('../classes/range') 2 | const intersects = (r1, r2, options) => { 3 | r1 = new Range(r1, options) 4 | r2 = new Range(r2, options) 5 | return r1.intersects(r2) 6 | } 7 | module.exports = intersects 8 | -------------------------------------------------------------------------------- /node_modules/semver/ranges/ltr.js: -------------------------------------------------------------------------------- 1 | const outside = require('./outside') 2 | // Determine if version is less than all the versions possible in the range 3 | const ltr = (version, range, options) => outside(version, range, '<', options) 4 | module.exports = ltr 5 | -------------------------------------------------------------------------------- /node_modules/semver/ranges/to-comparators.js: -------------------------------------------------------------------------------- 1 | const Range = require('../classes/range') 2 | 3 | // Mostly just for testing and legacy API reasons 4 | const toComparators = (range, options) => 5 | new Range(range, options).set 6 | .map(comp => comp.map(c => c.value).join(' ').trim().split(' ')) 7 | 8 | module.exports = toComparators 9 | -------------------------------------------------------------------------------- /node_modules/set-blocking/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function (blocking) { 2 | [process.stdout, process.stderr].forEach(function (stream) { 3 | if (stream._handle && stream.isTTY && typeof stream._handle.setBlocking === 'function') { 4 | stream._handle.setBlocking(blocking) 5 | } 6 | }) 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/smart-buffer/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | parser: typescript 2 | printWidth: 120 3 | tabWidth: 2 4 | singleQuote: true 5 | trailingComma: none -------------------------------------------------------------------------------- /node_modules/smart-buffer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 6 4 | - 8 5 | - 10 6 | - 12 7 | - stable 8 | 9 | before_script: 10 | - npm install -g typescript 11 | - tsc -p ./ 12 | 13 | script: "npm run coveralls" -------------------------------------------------------------------------------- /node_modules/smart-buffer/docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/smart-buffer/docs/ROADMAP.md -------------------------------------------------------------------------------- /node_modules/socks/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: '@typescript-eslint/parser', 4 | plugins: [ 5 | '@typescript-eslint', 6 | ], 7 | extends: [ 8 | 'eslint:recommended', 9 | 'plugin:@typescript-eslint/recommended', 10 | ], 11 | }; -------------------------------------------------------------------------------- /node_modules/socks/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | parser: typescript 2 | printWidth: 80 3 | tabWidth: 2 4 | singleQuote: true 5 | trailingComma: all 6 | arrowParens: always 7 | bracketSpacing: false -------------------------------------------------------------------------------- /node_modules/socks/build/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"} -------------------------------------------------------------------------------- /node_modules/socks/docs/index.md: -------------------------------------------------------------------------------- 1 | # Documentation 2 | 3 | - [API Reference](https://github.com/JoshGlazebrook/socks#api-reference) 4 | 5 | - [Code Examples](./examples/index.md) -------------------------------------------------------------------------------- /node_modules/socks/typings/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './client/socksclient'; 2 | -------------------------------------------------------------------------------- /node_modules/spdx-expression-parse/AUTHORS: -------------------------------------------------------------------------------- 1 | C. Scott Ananian (http://cscott.net) 2 | Kyle E. Mitchell (https://kemitchell.com) 3 | Shinnosuke Watanabe 4 | Antoine Motet 5 | -------------------------------------------------------------------------------- /node_modules/spdx-expression-parse/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | var scan = require('./scan') 4 | var parse = require('./parse') 5 | 6 | module.exports = function (source) { 7 | return parse(scan(source)) 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/string-width/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | import ansiRegex from 'ansi-regex'; 2 | 3 | export default function stripAnsi(string) { 4 | if (typeof string !== 'string') { 5 | throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``); 6 | } 7 | 8 | return string.replace(ansiRegex(), ''); 9 | } 10 | -------------------------------------------------------------------------------- /node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const ansiRegex = require('ansi-regex'); 3 | 4 | module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string; 5 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/alignString.d.ts: -------------------------------------------------------------------------------- 1 | import type { Alignment } from './types/api'; 2 | /** 3 | * Pads a string to the left and/or right to position the subject 4 | * text in a desired alignment within a container. 5 | */ 6 | export declare const alignString: (subject: string, containerWidth: number, alignment: Alignment) => string; 7 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/alignTableData.d.ts: -------------------------------------------------------------------------------- 1 | import type { BaseConfig, Row } from './types/internal'; 2 | export declare const alignTableData: (rows: Row[], config: BaseConfig) => Row[]; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/calculateCellHeight.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Calculates height of cell content in regard to its width and word wrapping. 3 | */ 4 | export declare const calculateCellHeight: (value: string, columnWidth: number, useWrapWord?: boolean) => number; 5 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/calculateCellHeight.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"calculateCellHeight.js","sourceRoot":"","sources":["../../src/calculateCellHeight.ts"],"names":[],"mappings":";;;AAAA,yCAEoB;AAEpB;;GAEG;AACI,MAAM,mBAAmB,GAAG,CAAC,KAAa,EAAE,WAAmB,EAAE,WAAW,GAAG,KAAK,EAAU,EAAE;IACrG,OAAO,IAAA,mBAAQ,EAAC,KAAK,EAAE,WAAW,EAAE,WAAW,CAAC,CAAC,MAAM,CAAC;AAC1D,CAAC,CAAC;AAFW,QAAA,mBAAmB,uBAE9B"} -------------------------------------------------------------------------------- /node_modules/table/dist/src/calculateOutputColumnWidths.d.ts: -------------------------------------------------------------------------------- 1 | import type { TableConfig } from './types/internal'; 2 | export declare const calculateOutputColumnWidths: (config: TableConfig) => number[]; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/calculateRowHeights.d.ts: -------------------------------------------------------------------------------- 1 | import type { BaseConfig, Row } from './types/internal'; 2 | /** 3 | * Produces an array of values that describe the largest value length (height) in every row. 4 | */ 5 | export declare const calculateRowHeights: (rows: Row[], config: BaseConfig) => number[]; 6 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/calculateSpanningCellWidth.d.ts: -------------------------------------------------------------------------------- 1 | import type { SpanningCellParameters } from './spanningCellManager'; 2 | import type { RangeConfig } from './types/internal'; 3 | export declare const calculateSpanningCellWidth: (rangeConfig: RangeConfig, dependencies: SpanningCellParameters) => number; 4 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/createStream.d.ts: -------------------------------------------------------------------------------- 1 | import type { StreamUserConfig, WritableStream } from './types/api'; 2 | export declare const createStream: (userConfig: StreamUserConfig) => WritableStream; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/drawTable.d.ts: -------------------------------------------------------------------------------- 1 | import type { TableConfig, Row } from './types/internal'; 2 | export declare const drawTable: (rows: Row[], outputColumnWidths: number[], rowHeights: number[], config: TableConfig) => string; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/getBorderCharacters.d.ts: -------------------------------------------------------------------------------- 1 | import type { BorderConfig } from './types/api'; 2 | export declare const getBorderCharacters: (name: string) => BorderConfig; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/index.d.ts: -------------------------------------------------------------------------------- 1 | import { createStream } from './createStream'; 2 | import { getBorderCharacters } from './getBorderCharacters'; 3 | import { table } from './table'; 4 | export { table, createStream, getBorderCharacters, }; 5 | export * from './types/api'; 6 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,iDAEwB;AAUtB,6FAXA,2BAAY,OAWA;AATd,+DAE+B;AAQ7B,oGATA,yCAAmB,OASA;AAPrB,mCAEiB;AAGf,sFAJA,aAAK,OAIA;AAKP,8CAA4B"} -------------------------------------------------------------------------------- /node_modules/table/dist/src/injectHeaderConfig.d.ts: -------------------------------------------------------------------------------- 1 | import type { SpanningCellConfig, TableUserConfig } from './types/api'; 2 | import type { Row } from './types/internal'; 3 | export declare const injectHeaderConfig: (rows: Row[], config: TableUserConfig) => [Row[], SpanningCellConfig[]]; 4 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/makeRangeConfig.d.ts: -------------------------------------------------------------------------------- 1 | import type { SpanningCellConfig } from './types/api'; 2 | import type { ColumnConfig, RangeConfig } from './types/internal'; 3 | export declare const makeRangeConfig: (spanningCellConfig: SpanningCellConfig, columnsConfig: ColumnConfig[]) => RangeConfig; 4 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/padTableData.d.ts: -------------------------------------------------------------------------------- 1 | import type { BaseConfig, Row } from './types/internal'; 2 | export declare const padString: (input: string, paddingLeft: number, paddingRight: number) => string; 3 | export declare const padTableData: (rows: Row[], config: BaseConfig) => Row[]; 4 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/stringifyTableData.d.ts: -------------------------------------------------------------------------------- 1 | import type { Row } from './types/internal'; 2 | export declare const stringifyTableData: (rows: unknown[][]) => Row[]; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/table.d.ts: -------------------------------------------------------------------------------- 1 | import type { TableUserConfig } from './types/api'; 2 | export declare const table: (data: unknown[][], userConfig?: TableUserConfig) => string; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/truncateTableData.d.ts: -------------------------------------------------------------------------------- 1 | import type { Row } from './types/internal'; 2 | export declare const truncateString: (input: string, length: number) => string; 3 | /** 4 | * @todo Make it work with ASCII content. 5 | */ 6 | export declare const truncateTableData: (rows: Row[], truncates: number[]) => Row[]; 7 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/types/api.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=api.js.map -------------------------------------------------------------------------------- /node_modules/table/dist/src/types/api.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"api.js","sourceRoot":"","sources":["../../../src/types/api.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/table/dist/src/types/internal.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/types/internal.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=internal.js.map -------------------------------------------------------------------------------- /node_modules/table/dist/src/types/internal.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"internal.js","sourceRoot":"","sources":["../../../src/types/internal.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /node_modules/table/dist/src/validateConfig.d.ts: -------------------------------------------------------------------------------- 1 | import type { TableUserConfig } from './types/api'; 2 | export declare const validateConfig: (schemaId: 'config.json' | 'streamConfig.json', config: TableUserConfig) => void; 3 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/validateSpanningCellConfig.d.ts: -------------------------------------------------------------------------------- 1 | import type { SpanningCellConfig } from './types/api'; 2 | import type { Row } from './types/internal'; 3 | export declare const validateSpanningCellConfig: (rows: Row[], configs: SpanningCellConfig[]) => void; 4 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/validateTableData.d.ts: -------------------------------------------------------------------------------- 1 | export declare const validateTableData: (rows: unknown[][]) => void; 2 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/wrapCell.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Wrap a single cell value into a list of lines 3 | * 4 | * Always wraps on newlines, for the remainder uses either word or string wrapping 5 | * depending on user configuration. 6 | * 7 | */ 8 | export declare const wrapCell: (cellValue: string, cellWidth: number, useWrapWord: boolean) => string[]; 9 | -------------------------------------------------------------------------------- /node_modules/table/dist/src/wrapWord.d.ts: -------------------------------------------------------------------------------- 1 | export declare const wrapWord: (input: string, size: number) => string[]; 2 | -------------------------------------------------------------------------------- /node_modules/tar-fs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 8 4 | - 10 5 | - 12 6 | - 14 7 | -------------------------------------------------------------------------------- /node_modules/tar-fs/node_modules/chownr/README.md: -------------------------------------------------------------------------------- 1 | Like `chown -R`. 2 | 3 | Takes the same arguments as `fs.chown()` 4 | -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/a/hello.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/b/a/test.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/d/file1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/d/file1 -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/d/file2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/d/file2 -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/d/sub-dir/file5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/d/sub-dir/file5 -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/d/sub-files/file3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/d/sub-files/file3 -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/d/sub-files/file4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/d/sub-files/file4 -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/e/directory/.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/e/directory/.ignore -------------------------------------------------------------------------------- /node_modules/tar-fs/test/fixtures/e/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/tar-fs/test/fixtures/e/file -------------------------------------------------------------------------------- /node_modules/tar-stream/index.js: -------------------------------------------------------------------------------- 1 | exports.extract = require('./extract') 2 | exports.pack = require('./pack') 3 | -------------------------------------------------------------------------------- /node_modules/treeverse/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | breadth: require('./breadth.js'), 3 | depth: require('./depth.js'), 4 | } 5 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/BuildMany.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/DeepExclude.d.ts: -------------------------------------------------------------------------------- 1 | import { DistributeMatchingUnions } from './DistributeUnions'; 2 | export declare type DeepExclude = Exclude, b>; 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/DeepExclude.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/DistributeUnions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/ExtractPreciseValue.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/FindSelected.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/InvertPattern.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/IsMatching.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/Match.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/Pattern.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-pattern/lib/types/helpers.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /node_modules/ts-results/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from './result'; 2 | export * from './option'; 3 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /node_modules/ts-results/esm/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"} -------------------------------------------------------------------------------- /node_modules/ts-results/esm/utils.js: -------------------------------------------------------------------------------- 1 | export function toString(val) { 2 | var value = String(val); 3 | if (value === '[object Object]') { 4 | try { 5 | value = JSON.stringify(val); 6 | } 7 | catch (_a) { } 8 | } 9 | return value; 10 | } 11 | //# sourceMappingURL=utils.js.map -------------------------------------------------------------------------------- /node_modules/ts-results/esm/utils.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.js","sourceRoot":"","sources":["../../src/utils.ts"],"names":[],"mappings":"AAAA,MAAM,UAAU,QAAQ,CAAC,GAAY;IACjC,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;IACxB,IAAI,KAAK,KAAK,iBAAiB,EAAE;QAC7B,IAAI;YACA,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;SAC/B;QAAC,WAAM,GAAE;KACb;IACD,OAAO,KAAK,CAAC;AACjB,CAAC"} -------------------------------------------------------------------------------- /node_modules/ts-results/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './result'; 2 | export * from './option'; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /node_modules/ts-results/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,UAAU,CAAC"} -------------------------------------------------------------------------------- /node_modules/ts-results/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;IAAA,mDAAyB;IACzB,mDAAyB"} -------------------------------------------------------------------------------- /node_modules/ts-results/rxjs-operators/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ts-results/rxjs-operators", 3 | "types": "index.d.ts", 4 | "main": "index.js", 5 | "module": "../esm/rxjs-operators/index.js" 6 | } 7 | -------------------------------------------------------------------------------- /node_modules/ts-results/utils.d.ts: -------------------------------------------------------------------------------- 1 | export declare function toString(val: unknown): string; 2 | //# sourceMappingURL=utils.d.ts.map -------------------------------------------------------------------------------- /node_modules/ts-results/utils.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":"AAAA,wBAAgB,QAAQ,CAAC,GAAG,EAAE,OAAO,GAAG,MAAM,CAQ7C"} -------------------------------------------------------------------------------- /node_modules/ts-results/utils.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";;;;;;;;;;;;IAAA,SAAgB,QAAQ,CAAC,GAAY;QACjC,IAAI,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC;QACxB,IAAI,KAAK,KAAK,iBAAiB,EAAE;YAC7B,IAAI;gBACA,KAAK,GAAG,IAAI,CAAC,SAAS,CAAC,GAAG,CAAC,CAAC;aAC/B;YAAC,WAAM,GAAE;SACb;QACD,OAAO,KAAK,CAAC;IACjB,CAAC;IARD,4BAQC"} -------------------------------------------------------------------------------- /node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /node_modules/tunnel/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /node_modules/tunnel/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /node_modules/tunnel/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /node_modules/tunnel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4" 4 | - "6" 5 | - "8" 6 | - "10" 7 | -------------------------------------------------------------------------------- /node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /node_modules/type-fest/source/mutable.d.ts: -------------------------------------------------------------------------------- 1 | import type {Writable} from './writable'; 2 | 3 | /** @deprecated @see Writable */ 4 | export type Mutable = 5 | Writable; 6 | -------------------------------------------------------------------------------- /node_modules/type-fest/source/primitive.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive). 3 | 4 | @category Type 5 | */ 6 | export type Primitive = 7 | | null 8 | | undefined 9 | | string 10 | | number 11 | | boolean 12 | | symbol 13 | | bigint; 14 | -------------------------------------------------------------------------------- /node_modules/undici/docs/assets/lifecycle-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/undici/docs/assets/lifecycle-diagram.png -------------------------------------------------------------------------------- /node_modules/undici/lib/api/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports.request = require('./api-request') 4 | module.exports.stream = require('./api-stream') 5 | module.exports.pipeline = require('./api-pipeline') 6 | module.exports.upgrade = require('./api-upgrade') 7 | module.exports.connect = require('./api-connect') 8 | -------------------------------------------------------------------------------- /node_modules/undici/lib/fetch/symbols.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = { 4 | kUrl: Symbol('url'), 5 | kHeaders: Symbol('headers'), 6 | kSignal: Symbol('signal'), 7 | kState: Symbol('state'), 8 | kGuard: Symbol('guard'), 9 | kRealm: Symbol('realm') 10 | } 11 | -------------------------------------------------------------------------------- /node_modules/undici/lib/llhttp/llhttp.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/undici/lib/llhttp/llhttp.wasm -------------------------------------------------------------------------------- /node_modules/undici/lib/llhttp/llhttp_simd.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NodeSecure/ci-action/3ed18f07602cb89a27fbce0430371d1c479541e4/node_modules/undici/lib/llhttp/llhttp_simd.wasm -------------------------------------------------------------------------------- /node_modules/undici/lib/llhttp/utils.d.ts: -------------------------------------------------------------------------------- 1 | export interface IEnumMap { 2 | [key: string]: number; 3 | } 4 | export declare function enumToMap(obj: any): IEnumMap; 5 | -------------------------------------------------------------------------------- /node_modules/undici/types/global-dispatcher.d.ts: -------------------------------------------------------------------------------- 1 | import Dispatcher = require("./dispatcher"); 2 | 3 | export { 4 | getGlobalDispatcher, 5 | setGlobalDispatcher 6 | } 7 | 8 | declare function setGlobalDispatcher(dispatcher: DispatcherImplementation): void; 9 | declare function getGlobalDispatcher(): Dispatcher; 10 | -------------------------------------------------------------------------------- /node_modules/unique-filename/lib/index.js: -------------------------------------------------------------------------------- 1 | var path = require('path') 2 | 3 | var uniqueSlug = require('unique-slug') 4 | 5 | module.exports = function (filepath, prefix, uniq) { 6 | return path.join(filepath, (prefix ? prefix + '-' : '') + uniqueSlug(uniq)) 7 | } 8 | -------------------------------------------------------------------------------- /node_modules/unique-slug/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | var MurmurHash3 = require('imurmurhash') 3 | 4 | module.exports = function (uniq) { 5 | if (uniq) { 6 | var hash = new MurmurHash3(uniq) 7 | return ('00000000' + hash.result().toString(16)).slice(-8) 8 | } else { 9 | return (Math.random().toString(16) + '0000000').slice(2, 10) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./uri"; 2 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/regexps-iri.d.ts: -------------------------------------------------------------------------------- 1 | import { URIRegExps } from "./uri"; 2 | declare const _default: URIRegExps; 3 | export default _default; 4 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/regexps-iri.js: -------------------------------------------------------------------------------- 1 | import { buildExps } from "./regexps-uri"; 2 | export default buildExps(true); 3 | //# sourceMappingURL=regexps-iri.js.map -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/regexps-iri.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"regexps-iri.js","sourceRoot":"","sources":["../../src/regexps-iri.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;AAE1C,eAAe,SAAS,CAAC,IAAI,CAAC,CAAC"} -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/regexps-uri.d.ts: -------------------------------------------------------------------------------- 1 | import { URIRegExps } from "./uri"; 2 | export declare function buildExps(isIRI: boolean): URIRegExps; 3 | declare const _default: URIRegExps; 4 | export default _default; 5 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/http.d.ts: -------------------------------------------------------------------------------- 1 | import { URISchemeHandler } from "../uri"; 2 | declare const handler: URISchemeHandler; 3 | export default handler; 4 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/https.d.ts: -------------------------------------------------------------------------------- 1 | import { URISchemeHandler } from "../uri"; 2 | declare const handler: URISchemeHandler; 3 | export default handler; 4 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/https.js: -------------------------------------------------------------------------------- 1 | import http from "./http"; 2 | const handler = { 3 | scheme: "https", 4 | domainHost: http.domainHost, 5 | parse: http.parse, 6 | serialize: http.serialize 7 | }; 8 | export default handler; 9 | //# sourceMappingURL=https.js.map -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/https.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"https.js","sourceRoot":"","sources":["../../../src/schemes/https.ts"],"names":[],"mappings":"AACA,OAAO,IAAI,MAAM,QAAQ,CAAC;AAE1B,MAAM,OAAO,GAAoB;IAChC,MAAM,EAAG,OAAO;IAChB,UAAU,EAAG,IAAI,CAAC,UAAU;IAC5B,KAAK,EAAG,IAAI,CAAC,KAAK;IAClB,SAAS,EAAG,IAAI,CAAC,SAAS;CAC1B,CAAA;AAED,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/urn-uuid.d.ts: -------------------------------------------------------------------------------- 1 | import { URISchemeHandler, URIOptions } from "../uri"; 2 | import { URNComponents } from "./urn"; 3 | export interface UUIDComponents extends URNComponents { 4 | uuid?: string; 5 | } 6 | declare const handler: URISchemeHandler; 7 | export default handler; 8 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/ws.d.ts: -------------------------------------------------------------------------------- 1 | import { URISchemeHandler, URIComponents } from "../uri"; 2 | export interface WSComponents extends URIComponents { 3 | resourceName?: string; 4 | secure?: boolean; 5 | } 6 | declare const handler: URISchemeHandler; 7 | export default handler; 8 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/wss.d.ts: -------------------------------------------------------------------------------- 1 | import { URISchemeHandler } from "../uri"; 2 | declare const handler: URISchemeHandler; 3 | export default handler; 4 | -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/wss.js: -------------------------------------------------------------------------------- 1 | import ws from "./ws"; 2 | const handler = { 3 | scheme: "wss", 4 | domainHost: ws.domainHost, 5 | parse: ws.parse, 6 | serialize: ws.serialize 7 | }; 8 | export default handler; 9 | //# sourceMappingURL=wss.js.map -------------------------------------------------------------------------------- /node_modules/uri-js/dist/esnext/schemes/wss.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"wss.js","sourceRoot":"","sources":["../../../src/schemes/wss.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,MAAM,CAAC;AAEtB,MAAM,OAAO,GAAoB;IAChC,MAAM,EAAG,KAAK;IACd,UAAU,EAAG,EAAE,CAAC,UAAU;IAC1B,KAAK,EAAG,EAAE,CAAC,KAAK;IAChB,SAAS,EAAG,EAAE,CAAC,SAAS;CACxB,CAAA;AAED,eAAe,OAAO,CAAC"} -------------------------------------------------------------------------------- /node_modules/util-deprecate/node.js: -------------------------------------------------------------------------------- 1 | 2 | /** 3 | * For Node.js, simply re-export the core `util.deprecate` function. 4 | */ 5 | 6 | module.exports = require('util').deprecate; 7 | -------------------------------------------------------------------------------- /node_modules/uuid/dist/bin/uuid: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../uuid-bin'); 3 | -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-browser/nil.js: -------------------------------------------------------------------------------- 1 | export default '00000000-0000-0000-0000-000000000000'; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-browser/regex.js: -------------------------------------------------------------------------------- 1 | export default /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-browser/v3.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import md5 from './md5.js'; 3 | var v3 = v35('v3', 0x30, md5); 4 | export default v3; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-browser/v5.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import sha1 from './sha1.js'; 3 | var v5 = v35('v5', 0x50, sha1); 4 | export default v5; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-browser/validate.js: -------------------------------------------------------------------------------- 1 | import REGEX from './regex.js'; 2 | 3 | function validate(uuid) { 4 | return typeof uuid === 'string' && REGEX.test(uuid); 5 | } 6 | 7 | export default validate; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-browser/version.js: -------------------------------------------------------------------------------- 1 | import validate from './validate.js'; 2 | 3 | function version(uuid) { 4 | if (!validate(uuid)) { 5 | throw TypeError('Invalid UUID'); 6 | } 7 | 8 | return parseInt(uuid.substr(14, 1), 16); 9 | } 10 | 11 | export default version; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/md5.js: -------------------------------------------------------------------------------- 1 | import crypto from 'crypto'; 2 | 3 | function md5(bytes) { 4 | if (Array.isArray(bytes)) { 5 | bytes = Buffer.from(bytes); 6 | } else if (typeof bytes === 'string') { 7 | bytes = Buffer.from(bytes, 'utf8'); 8 | } 9 | 10 | return crypto.createHash('md5').update(bytes).digest(); 11 | } 12 | 13 | export default md5; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/nil.js: -------------------------------------------------------------------------------- 1 | export default '00000000-0000-0000-0000-000000000000'; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/regex.js: -------------------------------------------------------------------------------- 1 | export default /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/sha1.js: -------------------------------------------------------------------------------- 1 | import crypto from 'crypto'; 2 | 3 | function sha1(bytes) { 4 | if (Array.isArray(bytes)) { 5 | bytes = Buffer.from(bytes); 6 | } else if (typeof bytes === 'string') { 7 | bytes = Buffer.from(bytes, 'utf8'); 8 | } 9 | 10 | return crypto.createHash('sha1').update(bytes).digest(); 11 | } 12 | 13 | export default sha1; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/v3.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import md5 from './md5.js'; 3 | const v3 = v35('v3', 0x30, md5); 4 | export default v3; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/v5.js: -------------------------------------------------------------------------------- 1 | import v35 from './v35.js'; 2 | import sha1 from './sha1.js'; 3 | const v5 = v35('v5', 0x50, sha1); 4 | export default v5; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/validate.js: -------------------------------------------------------------------------------- 1 | import REGEX from './regex.js'; 2 | 3 | function validate(uuid) { 4 | return typeof uuid === 'string' && REGEX.test(uuid); 5 | } 6 | 7 | export default validate; -------------------------------------------------------------------------------- /node_modules/uuid/dist/esm-node/version.js: -------------------------------------------------------------------------------- 1 | import validate from './validate.js'; 2 | 3 | function version(uuid) { 4 | if (!validate(uuid)) { 5 | throw TypeError('Invalid UUID'); 6 | } 7 | 8 | return parseInt(uuid.substr(14, 1), 16); 9 | } 10 | 11 | export default version; -------------------------------------------------------------------------------- /node_modules/uuid/dist/nil.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | var _default = '00000000-0000-0000-0000-000000000000'; 8 | exports.default = _default; -------------------------------------------------------------------------------- /node_modules/uuid/dist/regex.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | Object.defineProperty(exports, "__esModule", { 4 | value: true 5 | }); 6 | exports.default = void 0; 7 | var _default = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i; 8 | exports.default = _default; -------------------------------------------------------------------------------- /node_modules/uuid/dist/umd/uuidNIL.min.js: -------------------------------------------------------------------------------- 1 | !function(e,n){"object"==typeof exports&&"undefined"!=typeof module?module.exports=n():"function"==typeof define&&define.amd?define(n):(e="undefined"!=typeof globalThis?globalThis:e||self).uuidNIL=n()}(this,(function(){"use strict";return"00000000-0000-0000-0000-000000000000"})); -------------------------------------------------------------------------------- /node_modules/walk-up-path/index.js: -------------------------------------------------------------------------------- 1 | const {dirname, resolve} = require('path') 2 | module.exports = function* (path) { 3 | for (path = resolve(path); path;) { 4 | yield path 5 | const pp = dirname(path) 6 | if (pp === path) 7 | path = null 8 | else 9 | path = pp 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/yallist/iterator.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | module.exports = function (Yallist) { 3 | Yallist.prototype[Symbol.iterator] = function* () { 4 | for (let walker = this.head; walker; walker = walker.next) { 5 | yield walker.value 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /node_modules/zen-observable/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | end_of_line = lf 5 | insert_final_newline = false 6 | indent_style = space 7 | indent_size = 2 8 | -------------------------------------------------------------------------------- /node_modules/zen-observable/esm.js: -------------------------------------------------------------------------------- 1 | import { Observable } from './src/Observable.js'; 2 | 3 | export default Observable; 4 | export { Observable }; 5 | export * from './src/extras.js'; 6 | -------------------------------------------------------------------------------- /node_modules/zen-observable/extras.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/extras.js'); 2 | -------------------------------------------------------------------------------- /node_modules/zen-observable/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/Observable.js').Observable; 2 | -------------------------------------------------------------------------------- /node_modules/zen-observable/scripts/build.js: -------------------------------------------------------------------------------- 1 | const { execSync } = require('child_process'); 2 | const plugins = require('./babel-plugins'); 3 | 4 | execSync('babel src --out-dir lib --plugins=' + plugins.join(','), { 5 | env: process.env, 6 | stdio: 'inherit', 7 | }); 8 | -------------------------------------------------------------------------------- /node_modules/zen-observable/scripts/mocha-require.js: -------------------------------------------------------------------------------- 1 | require('@babel/register')({ 2 | plugins: require('./babel-plugins'), 3 | }); 4 | -------------------------------------------------------------------------------- /node_modules/zen-observable/test/extras/parse.js: -------------------------------------------------------------------------------- 1 | export function parse(string) { 2 | return new Observable(async observer => { 3 | await null; 4 | for (let char of string) { 5 | if (observer.closed) return; 6 | else if (char !== '-') observer.next(char); 7 | await null; 8 | } 9 | observer.complete(); 10 | }); 11 | } 12 | -------------------------------------------------------------------------------- /node_modules/zen-observable/test/map.js: -------------------------------------------------------------------------------- 1 | import assert from 'assert'; 2 | 3 | describe('map', () => { 4 | it('maps the results using the supplied callback', async () => { 5 | let list = []; 6 | 7 | await Observable.from([1, 2, 3]) 8 | .map(x => x * 2) 9 | .forEach(x => list.push(x)); 10 | 11 | assert.deepEqual(list, [2, 4, 6]); 12 | }); 13 | }); 14 | -------------------------------------------------------------------------------- /node_modules/zen-observable/test/setup.js: -------------------------------------------------------------------------------- 1 | import { Observable } from '../src/Observable.js'; 2 | 3 | beforeEach(() => { 4 | global.Observable = Observable; 5 | global.hostError = null; 6 | let $extensions = Object.getOwnPropertySymbols(Observable)[1]; 7 | let { hostReportError } = Observable[$extensions]; 8 | hostReportError.log = (e => global.hostError = e); 9 | }); 10 | --------------------------------------------------------------------------------