cz-cli: 4.2.4 -> 4.3.0

bump and repackage with `buildNpmPackage`

+18 -10059
+18 -10
pkgs/applications/version-management/cz-cli/default.nix
··· 1 - { pkgs, nodejs, stdenv, lib, ... }: 1 + { lib 2 + , buildNpmPackage 3 + , fetchFromGitHub 4 + }: 2 5 3 - let 4 - nodePackages = import ./node-composition.nix { 5 - inherit pkgs nodejs; 6 - inherit (stdenv.hostPlatform) system; 6 + buildNpmPackage rec { 7 + pname = "cz-cli"; 8 + version = "4.3.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "commitizen"; 12 + repo = "cz-cli"; 13 + rev = "refs/tags/v${version}"; 14 + hash = "sha256-4kyGxidE8dzkHL0oPv/XxDxQ3qlEE6TKSgj+1g9uvJM="; 7 15 }; 8 - in 9 - nodePackages.commitizen.override { 10 - name = "cz-cli"; 16 + 17 + npmDepsHash = "sha256-zQ0T/1khnn+CXm/3yc9nANL0ROEEE03U5fV57btEmPg="; 18 + 11 19 meta = with lib; { 12 20 description = "The commitizen command line utility"; 13 21 homepage = "https://commitizen.github.io/cz-cli"; 14 - maintainers = with maintainers; [ freezeboy ]; 22 + changelog = "https://github.com/commitizen/cz-cli/releases/tag/v${version}"; 23 + maintainers = with maintainers; [ freezeboy natsukium ]; 15 24 license = licenses.mit; 16 - platforms = platforms.linux ++ platforms.darwin; 17 25 }; 18 26 }
-9
pkgs/applications/version-management/cz-cli/generate-dependencies.sh
··· 1 - #!/usr/bin/env nix-shell 2 - #! nix-shell -I nixpkgs=../../../.. -i bash -p nodePackages.node2nix 3 - 4 - node2nix \ 5 - --node-env node-env.nix \ 6 - --development \ 7 - --input package.json \ 8 - --output node-packages.nix \ 9 - --composition node-composition.nix
-17
pkgs/applications/version-management/cz-cli/node-composition.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 2 - 3 - {pkgs ? import <nixpkgs> { 4 - inherit system; 5 - }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs_14"}: 6 - 7 - let 8 - nodeEnv = import ./node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript; 10 - inherit pkgs nodejs; 11 - libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 - }; 13 - in 14 - import ./node-packages.nix { 15 - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 16 - inherit nodeEnv; 17 - }
-588
pkgs/applications/version-management/cz-cli/node-env.nix
··· 1 - # This file originates from node2nix 2 - 3 - {lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}: 4 - 5 - let 6 - # Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master 7 - utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux; 8 - 9 - python = if nodejs ? python then nodejs.python else python2; 10 - 11 - # Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise 12 - tarWrapper = runCommand "tarWrapper" {} '' 13 - mkdir -p $out/bin 14 - 15 - cat > $out/bin/tar <<EOF 16 - #! ${stdenv.shell} -e 17 - $(type -p tar) "\$@" --warning=no-unknown-keyword --delay-directory-restore 18 - EOF 19 - 20 - chmod +x $out/bin/tar 21 - ''; 22 - 23 - # Function that generates a TGZ file from a NPM project 24 - buildNodeSourceDist = 25 - { name, version, src, ... }: 26 - 27 - stdenv.mkDerivation { 28 - name = "node-tarball-${name}-${version}"; 29 - inherit src; 30 - buildInputs = [ nodejs ]; 31 - buildPhase = '' 32 - export HOME=$TMPDIR 33 - tgzFile=$(npm pack | tail -n 1) # Hooks to the pack command will add output (https://docs.npmjs.com/misc/scripts) 34 - ''; 35 - installPhase = '' 36 - mkdir -p $out/tarballs 37 - mv $tgzFile $out/tarballs 38 - mkdir -p $out/nix-support 39 - echo "file source-dist $out/tarballs/$tgzFile" >> $out/nix-support/hydra-build-products 40 - ''; 41 - }; 42 - 43 - # Common shell logic 44 - installPackage = writeShellScript "install-package" '' 45 - installPackage() { 46 - local packageName=$1 src=$2 47 - 48 - local strippedName 49 - 50 - local DIR=$PWD 51 - cd $TMPDIR 52 - 53 - unpackFile $src 54 - 55 - # Make the base dir in which the target dependency resides first 56 - mkdir -p "$(dirname "$DIR/$packageName")" 57 - 58 - if [ -f "$src" ] 59 - then 60 - # Figure out what directory has been unpacked 61 - packageDir="$(find . -maxdepth 1 -type d | tail -1)" 62 - 63 - # Restore write permissions to make building work 64 - find "$packageDir" -type d -exec chmod u+x {} \; 65 - chmod -R u+w "$packageDir" 66 - 67 - # Move the extracted tarball into the output folder 68 - mv "$packageDir" "$DIR/$packageName" 69 - elif [ -d "$src" ] 70 - then 71 - # Get a stripped name (without hash) of the source directory. 72 - # On old nixpkgs it's already set internally. 73 - if [ -z "$strippedName" ] 74 - then 75 - strippedName="$(stripHash $src)" 76 - fi 77 - 78 - # Restore write permissions to make building work 79 - chmod -R u+w "$strippedName" 80 - 81 - # Move the extracted directory into the output folder 82 - mv "$strippedName" "$DIR/$packageName" 83 - fi 84 - 85 - # Change to the package directory to install dependencies 86 - cd "$DIR/$packageName" 87 - } 88 - ''; 89 - 90 - # Bundle the dependencies of the package 91 - # 92 - # Only include dependencies if they don't exist. They may also be bundled in the package. 93 - includeDependencies = {dependencies}: 94 - lib.optionalString (dependencies != []) ( 95 - '' 96 - mkdir -p node_modules 97 - cd node_modules 98 - '' 99 - + (lib.concatMapStrings (dependency: 100 - '' 101 - if [ ! -e "${dependency.name}" ]; then 102 - ${composePackage dependency} 103 - fi 104 - '' 105 - ) dependencies) 106 - + '' 107 - cd .. 108 - '' 109 - ); 110 - 111 - # Recursively composes the dependencies of a package 112 - composePackage = { name, packageName, src, dependencies ? [], ... }@args: 113 - builtins.addErrorContext "while evaluating node package '${packageName}'" '' 114 - installPackage "${packageName}" "${src}" 115 - ${includeDependencies { inherit dependencies; }} 116 - cd .. 117 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 118 - ''; 119 - 120 - pinpointDependencies = {dependencies, production}: 121 - let 122 - pinpointDependenciesFromPackageJSON = writeTextFile { 123 - name = "pinpointDependencies.js"; 124 - text = '' 125 - var fs = require('fs'); 126 - var path = require('path'); 127 - 128 - function resolveDependencyVersion(location, name) { 129 - if(location == process.env['NIX_STORE']) { 130 - return null; 131 - } else { 132 - var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json"); 133 - 134 - if(fs.existsSync(dependencyPackageJSON)) { 135 - var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON)); 136 - 137 - if(dependencyPackageObj.name == name) { 138 - return dependencyPackageObj.version; 139 - } 140 - } else { 141 - return resolveDependencyVersion(path.resolve(location, ".."), name); 142 - } 143 - } 144 - } 145 - 146 - function replaceDependencies(dependencies) { 147 - if(typeof dependencies == "object" && dependencies !== null) { 148 - for(var dependency in dependencies) { 149 - var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency); 150 - 151 - if(resolvedVersion === null) { 152 - process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n"); 153 - } else { 154 - dependencies[dependency] = resolvedVersion; 155 - } 156 - } 157 - } 158 - } 159 - 160 - /* Read the package.json configuration */ 161 - var packageObj = JSON.parse(fs.readFileSync('./package.json')); 162 - 163 - /* Pinpoint all dependencies */ 164 - replaceDependencies(packageObj.dependencies); 165 - if(process.argv[2] == "development") { 166 - replaceDependencies(packageObj.devDependencies); 167 - } 168 - replaceDependencies(packageObj.optionalDependencies); 169 - 170 - /* Write the fixed package.json file */ 171 - fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2)); 172 - ''; 173 - }; 174 - in 175 - '' 176 - node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"} 177 - 178 - ${lib.optionalString (dependencies != []) 179 - '' 180 - if [ -d node_modules ] 181 - then 182 - cd node_modules 183 - ${lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies} 184 - cd .. 185 - fi 186 - ''} 187 - ''; 188 - 189 - # Recursively traverses all dependencies of a package and pinpoints all 190 - # dependencies in the package.json file to the versions that are actually 191 - # being used. 192 - 193 - pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args: 194 - '' 195 - if [ -d "${packageName}" ] 196 - then 197 - cd "${packageName}" 198 - ${pinpointDependencies { inherit dependencies production; }} 199 - cd .. 200 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 201 - fi 202 - ''; 203 - 204 - # Extract the Node.js source code which is used to compile packages with 205 - # native bindings 206 - nodeSources = runCommand "node-sources" {} '' 207 - tar --no-same-owner --no-same-permissions -xf ${nodejs.src} 208 - mv node-* $out 209 - ''; 210 - 211 - # Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty) 212 - addIntegrityFieldsScript = writeTextFile { 213 - name = "addintegrityfields.js"; 214 - text = '' 215 - var fs = require('fs'); 216 - var path = require('path'); 217 - 218 - function augmentDependencies(baseDir, dependencies) { 219 - for(var dependencyName in dependencies) { 220 - var dependency = dependencies[dependencyName]; 221 - 222 - // Open package.json and augment metadata fields 223 - var packageJSONDir = path.join(baseDir, "node_modules", dependencyName); 224 - var packageJSONPath = path.join(packageJSONDir, "package.json"); 225 - 226 - if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored 227 - console.log("Adding metadata fields to: "+packageJSONPath); 228 - var packageObj = JSON.parse(fs.readFileSync(packageJSONPath)); 229 - 230 - if(dependency.integrity) { 231 - packageObj["_integrity"] = dependency.integrity; 232 - } else { 233 - packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads. 234 - } 235 - 236 - if(dependency.resolved) { 237 - packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided 238 - } else { 239 - packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories. 240 - } 241 - 242 - if(dependency.from !== undefined) { // Adopt from property if one has been provided 243 - packageObj["_from"] = dependency.from; 244 - } 245 - 246 - fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2)); 247 - } 248 - 249 - // Augment transitive dependencies 250 - if(dependency.dependencies !== undefined) { 251 - augmentDependencies(packageJSONDir, dependency.dependencies); 252 - } 253 - } 254 - } 255 - 256 - if(fs.existsSync("./package-lock.json")) { 257 - var packageLock = JSON.parse(fs.readFileSync("./package-lock.json")); 258 - 259 - if(![1, 2].includes(packageLock.lockfileVersion)) { 260 - process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n"); 261 - process.exit(1); 262 - } 263 - 264 - if(packageLock.dependencies !== undefined) { 265 - augmentDependencies(".", packageLock.dependencies); 266 - } 267 - } 268 - ''; 269 - }; 270 - 271 - # Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes 272 - reconstructPackageLock = writeTextFile { 273 - name = "addintegrityfields.js"; 274 - text = '' 275 - var fs = require('fs'); 276 - var path = require('path'); 277 - 278 - var packageObj = JSON.parse(fs.readFileSync("package.json")); 279 - 280 - var lockObj = { 281 - name: packageObj.name, 282 - version: packageObj.version, 283 - lockfileVersion: 1, 284 - requires: true, 285 - dependencies: {} 286 - }; 287 - 288 - function augmentPackageJSON(filePath, dependencies) { 289 - var packageJSON = path.join(filePath, "package.json"); 290 - if(fs.existsSync(packageJSON)) { 291 - var packageObj = JSON.parse(fs.readFileSync(packageJSON)); 292 - dependencies[packageObj.name] = { 293 - version: packageObj.version, 294 - integrity: "sha1-000000000000000000000000000=", 295 - dependencies: {} 296 - }; 297 - processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies); 298 - } 299 - } 300 - 301 - function processDependencies(dir, dependencies) { 302 - if(fs.existsSync(dir)) { 303 - var files = fs.readdirSync(dir); 304 - 305 - files.forEach(function(entry) { 306 - var filePath = path.join(dir, entry); 307 - var stats = fs.statSync(filePath); 308 - 309 - if(stats.isDirectory()) { 310 - if(entry.substr(0, 1) == "@") { 311 - // When we encounter a namespace folder, augment all packages belonging to the scope 312 - var pkgFiles = fs.readdirSync(filePath); 313 - 314 - pkgFiles.forEach(function(entry) { 315 - if(stats.isDirectory()) { 316 - var pkgFilePath = path.join(filePath, entry); 317 - augmentPackageJSON(pkgFilePath, dependencies); 318 - } 319 - }); 320 - } else { 321 - augmentPackageJSON(filePath, dependencies); 322 - } 323 - } 324 - }); 325 - } 326 - } 327 - 328 - processDependencies("node_modules", lockObj.dependencies); 329 - 330 - fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2)); 331 - ''; 332 - }; 333 - 334 - prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}: 335 - let 336 - forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com"; 337 - in 338 - '' 339 - # Pinpoint the versions of all dependencies to the ones that are actually being used 340 - echo "pinpointing versions of dependencies..." 341 - source $pinpointDependenciesScriptPath 342 - 343 - # Patch the shebangs of the bundled modules to prevent them from 344 - # calling executables outside the Nix store as much as possible 345 - patchShebangs . 346 - 347 - # Deploy the Node.js package by running npm install. Since the 348 - # dependencies have been provided already by ourselves, it should not 349 - # attempt to install them again, which is good, because we want to make 350 - # it Nix's responsibility. If it needs to install any dependencies 351 - # anyway (e.g. because the dependency parameters are 352 - # incomplete/incorrect), it fails. 353 - # 354 - # The other responsibilities of NPM are kept -- version checks, build 355 - # steps, postprocessing etc. 356 - 357 - export HOME=$TMPDIR 358 - cd "${packageName}" 359 - runHook preRebuild 360 - 361 - ${lib.optionalString bypassCache '' 362 - ${lib.optionalString reconstructLock '' 363 - if [ -f package-lock.json ] 364 - then 365 - echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!" 366 - echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!" 367 - rm package-lock.json 368 - else 369 - echo "No package-lock.json file found, reconstructing..." 370 - fi 371 - 372 - node ${reconstructPackageLock} 373 - ''} 374 - 375 - node ${addIntegrityFieldsScript} 376 - ''} 377 - 378 - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild 379 - 380 - if [ "''${dontNpmInstall-}" != "1" ] 381 - then 382 - # NPM tries to download packages even when they already exist if npm-shrinkwrap is used. 383 - rm -f npm-shrinkwrap.json 384 - 385 - npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} install 386 - fi 387 - ''; 388 - 389 - # Builds and composes an NPM package including all its dependencies 390 - buildNodePackage = 391 - { name 392 - , packageName 393 - , version 394 - , dependencies ? [] 395 - , buildInputs ? [] 396 - , production ? true 397 - , npmFlags ? "" 398 - , dontNpmInstall ? false 399 - , bypassCache ? false 400 - , reconstructLock ? false 401 - , preRebuild ? "" 402 - , dontStrip ? true 403 - , unpackPhase ? "true" 404 - , buildPhase ? "true" 405 - , meta ? {} 406 - , ... }@args: 407 - 408 - let 409 - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ]; 410 - in 411 - stdenv.mkDerivation ({ 412 - name = "${name}-${version}"; 413 - buildInputs = [ tarWrapper python nodejs ] 414 - ++ lib.optional (stdenv.isLinux) utillinux 415 - ++ lib.optional (stdenv.isDarwin) libtool 416 - ++ buildInputs; 417 - 418 - inherit nodejs; 419 - 420 - inherit dontStrip; # Stripping may fail a build for some package deployments 421 - inherit dontNpmInstall preRebuild unpackPhase buildPhase; 422 - 423 - compositionScript = composePackage args; 424 - pinpointDependenciesScript = pinpointDependenciesOfPackage args; 425 - 426 - passAsFile = [ "compositionScript" "pinpointDependenciesScript" ]; 427 - 428 - installPhase = '' 429 - source ${installPackage} 430 - 431 - # Create and enter a root node_modules/ folder 432 - mkdir -p $out/lib/node_modules 433 - cd $out/lib/node_modules 434 - 435 - # Compose the package and all its dependencies 436 - source $compositionScriptPath 437 - 438 - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} 439 - 440 - # Create symlink to the deployed executable folder, if applicable 441 - if [ -d "$out/lib/node_modules/.bin" ] 442 - then 443 - ln -s $out/lib/node_modules/.bin $out/bin 444 - fi 445 - 446 - # Create symlinks to the deployed manual page folders, if applicable 447 - if [ -d "$out/lib/node_modules/${packageName}/man" ] 448 - then 449 - mkdir -p $out/share 450 - for dir in "$out/lib/node_modules/${packageName}/man/"* 451 - do 452 - mkdir -p $out/share/man/$(basename "$dir") 453 - for page in "$dir"/* 454 - do 455 - ln -s $page $out/share/man/$(basename "$dir") 456 - done 457 - done 458 - fi 459 - 460 - # Run post install hook, if provided 461 - runHook postInstall 462 - ''; 463 - 464 - meta = { 465 - # default to Node.js' platforms 466 - platforms = nodejs.meta.platforms; 467 - } // meta; 468 - } // extraArgs); 469 - 470 - # Builds a node environment (a node_modules folder and a set of binaries) 471 - buildNodeDependencies = 472 - { name 473 - , packageName 474 - , version 475 - , src 476 - , dependencies ? [] 477 - , buildInputs ? [] 478 - , production ? true 479 - , npmFlags ? "" 480 - , dontNpmInstall ? false 481 - , bypassCache ? false 482 - , reconstructLock ? false 483 - , dontStrip ? true 484 - , unpackPhase ? "true" 485 - , buildPhase ? "true" 486 - , ... }@args: 487 - 488 - let 489 - extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ]; 490 - in 491 - stdenv.mkDerivation ({ 492 - name = "node-dependencies-${name}-${version}"; 493 - 494 - buildInputs = [ tarWrapper python nodejs ] 495 - ++ lib.optional (stdenv.isLinux) utillinux 496 - ++ lib.optional (stdenv.isDarwin) libtool 497 - ++ buildInputs; 498 - 499 - inherit dontStrip; # Stripping may fail a build for some package deployments 500 - inherit dontNpmInstall unpackPhase buildPhase; 501 - 502 - includeScript = includeDependencies { inherit dependencies; }; 503 - pinpointDependenciesScript = pinpointDependenciesOfPackage args; 504 - 505 - passAsFile = [ "includeScript" "pinpointDependenciesScript" ]; 506 - 507 - installPhase = '' 508 - source ${installPackage} 509 - 510 - mkdir -p $out/${packageName} 511 - cd $out/${packageName} 512 - 513 - source $includeScriptPath 514 - 515 - # Create fake package.json to make the npm commands work properly 516 - cp ${src}/package.json . 517 - chmod 644 package.json 518 - ${lib.optionalString bypassCache '' 519 - if [ -f ${src}/package-lock.json ] 520 - then 521 - cp ${src}/package-lock.json . 522 - fi 523 - ''} 524 - 525 - # Go to the parent folder to make sure that all packages are pinpointed 526 - cd .. 527 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 528 - 529 - ${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }} 530 - 531 - # Expose the executables that were installed 532 - cd .. 533 - ${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."} 534 - 535 - mv ${packageName} lib 536 - ln -s $out/lib/node_modules/.bin $out/bin 537 - ''; 538 - } // extraArgs); 539 - 540 - # Builds a development shell 541 - buildNodeShell = 542 - { name 543 - , packageName 544 - , version 545 - , src 546 - , dependencies ? [] 547 - , buildInputs ? [] 548 - , production ? true 549 - , npmFlags ? "" 550 - , dontNpmInstall ? false 551 - , bypassCache ? false 552 - , reconstructLock ? false 553 - , dontStrip ? true 554 - , unpackPhase ? "true" 555 - , buildPhase ? "true" 556 - , ... }@args: 557 - 558 - let 559 - nodeDependencies = buildNodeDependencies args; 560 - in 561 - stdenv.mkDerivation { 562 - name = "node-shell-${name}-${version}"; 563 - 564 - buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs; 565 - buildCommand = '' 566 - mkdir -p $out/bin 567 - cat > $out/bin/shell <<EOF 568 - #! ${stdenv.shell} -e 569 - $shellHook 570 - exec ${stdenv.shell} 571 - EOF 572 - chmod +x $out/bin/shell 573 - ''; 574 - 575 - # Provide the dependencies in a development shell through the NODE_PATH environment variable 576 - inherit nodeDependencies; 577 - shellHook = lib.optionalString (dependencies != []) '' 578 - export NODE_PATH=${nodeDependencies}/lib/node_modules 579 - export PATH="${nodeDependencies}/bin:$PATH" 580 - ''; 581 - }; 582 - in 583 - { 584 - buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist; 585 - buildNodePackage = lib.makeOverridable buildNodePackage; 586 - buildNodeDependencies = lib.makeOverridable buildNodeDependencies; 587 - buildNodeShell = lib.makeOverridable buildNodeShell; 588 - }
-9432
pkgs/applications/version-management/cz-cli/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 2 - 3 - {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 - 5 - let 6 - sources = { 7 - "@babel/cli-7.11.6" = { 8 - name = "_at_babel_slash_cli"; 9 - packageName = "@babel/cli"; 10 - version = "7.11.6"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.11.6.tgz"; 13 - sha512 = "+w7BZCvkewSmaRM6H4L2QM3RL90teqEIHDIFXAmrW33+0jhlymnDAEdqVeCZATvxhQuio1ifoGVlJJbIiH9Ffg=="; 14 - }; 15 - }; 16 - "@babel/code-frame-7.15.8" = { 17 - name = "_at_babel_slash_code-frame"; 18 - packageName = "@babel/code-frame"; 19 - version = "7.15.8"; 20 - src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz"; 22 - sha512 = "2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg=="; 23 - }; 24 - }; 25 - "@babel/compat-data-7.15.0" = { 26 - name = "_at_babel_slash_compat-data"; 27 - packageName = "@babel/compat-data"; 28 - version = "7.15.0"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz"; 31 - sha512 = "0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA=="; 32 - }; 33 - }; 34 - "@babel/core-7.11.6" = { 35 - name = "_at_babel_slash_core"; 36 - packageName = "@babel/core"; 37 - version = "7.11.6"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/core/-/core-7.11.6.tgz"; 40 - sha512 = "Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg=="; 41 - }; 42 - }; 43 - "@babel/generator-7.15.8" = { 44 - name = "_at_babel_slash_generator"; 45 - packageName = "@babel/generator"; 46 - version = "7.15.8"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz"; 49 - sha512 = "ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g=="; 50 - }; 51 - }; 52 - "@babel/helper-annotate-as-pure-7.15.4" = { 53 - name = "_at_babel_slash_helper-annotate-as-pure"; 54 - packageName = "@babel/helper-annotate-as-pure"; 55 - version = "7.15.4"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz"; 58 - sha512 = "QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA=="; 59 - }; 60 - }; 61 - "@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" = { 62 - name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 63 - packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 64 - version = "7.15.4"; 65 - src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz"; 67 - sha512 = "P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q=="; 68 - }; 69 - }; 70 - "@babel/helper-compilation-targets-7.15.4" = { 71 - name = "_at_babel_slash_helper-compilation-targets"; 72 - packageName = "@babel/helper-compilation-targets"; 73 - version = "7.15.4"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz"; 76 - sha512 = "rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ=="; 77 - }; 78 - }; 79 - "@babel/helper-create-class-features-plugin-7.15.4" = { 80 - name = "_at_babel_slash_helper-create-class-features-plugin"; 81 - packageName = "@babel/helper-create-class-features-plugin"; 82 - version = "7.15.4"; 83 - src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz"; 85 - sha512 = "7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw=="; 86 - }; 87 - }; 88 - "@babel/helper-create-regexp-features-plugin-7.14.5" = { 89 - name = "_at_babel_slash_helper-create-regexp-features-plugin"; 90 - packageName = "@babel/helper-create-regexp-features-plugin"; 91 - version = "7.14.5"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz"; 94 - sha512 = "TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A=="; 95 - }; 96 - }; 97 - "@babel/helper-explode-assignable-expression-7.15.4" = { 98 - name = "_at_babel_slash_helper-explode-assignable-expression"; 99 - packageName = "@babel/helper-explode-assignable-expression"; 100 - version = "7.15.4"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz"; 103 - sha512 = "J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g=="; 104 - }; 105 - }; 106 - "@babel/helper-function-name-7.15.4" = { 107 - name = "_at_babel_slash_helper-function-name"; 108 - packageName = "@babel/helper-function-name"; 109 - version = "7.15.4"; 110 - src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz"; 112 - sha512 = "Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw=="; 113 - }; 114 - }; 115 - "@babel/helper-get-function-arity-7.15.4" = { 116 - name = "_at_babel_slash_helper-get-function-arity"; 117 - packageName = "@babel/helper-get-function-arity"; 118 - version = "7.15.4"; 119 - src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz"; 121 - sha512 = "1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA=="; 122 - }; 123 - }; 124 - "@babel/helper-hoist-variables-7.15.4" = { 125 - name = "_at_babel_slash_helper-hoist-variables"; 126 - packageName = "@babel/helper-hoist-variables"; 127 - version = "7.15.4"; 128 - src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz"; 130 - sha512 = "VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA=="; 131 - }; 132 - }; 133 - "@babel/helper-member-expression-to-functions-7.15.4" = { 134 - name = "_at_babel_slash_helper-member-expression-to-functions"; 135 - packageName = "@babel/helper-member-expression-to-functions"; 136 - version = "7.15.4"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz"; 139 - sha512 = "cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA=="; 140 - }; 141 - }; 142 - "@babel/helper-module-imports-7.15.4" = { 143 - name = "_at_babel_slash_helper-module-imports"; 144 - packageName = "@babel/helper-module-imports"; 145 - version = "7.15.4"; 146 - src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz"; 148 - sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA=="; 149 - }; 150 - }; 151 - "@babel/helper-module-transforms-7.15.8" = { 152 - name = "_at_babel_slash_helper-module-transforms"; 153 - packageName = "@babel/helper-module-transforms"; 154 - version = "7.15.8"; 155 - src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz"; 157 - sha512 = "DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg=="; 158 - }; 159 - }; 160 - "@babel/helper-optimise-call-expression-7.15.4" = { 161 - name = "_at_babel_slash_helper-optimise-call-expression"; 162 - packageName = "@babel/helper-optimise-call-expression"; 163 - version = "7.15.4"; 164 - src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz"; 166 - sha512 = "E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw=="; 167 - }; 168 - }; 169 - "@babel/helper-plugin-utils-7.14.5" = { 170 - name = "_at_babel_slash_helper-plugin-utils"; 171 - packageName = "@babel/helper-plugin-utils"; 172 - version = "7.14.5"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz"; 175 - sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ=="; 176 - }; 177 - }; 178 - "@babel/helper-remap-async-to-generator-7.15.4" = { 179 - name = "_at_babel_slash_helper-remap-async-to-generator"; 180 - packageName = "@babel/helper-remap-async-to-generator"; 181 - version = "7.15.4"; 182 - src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz"; 184 - sha512 = "v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ=="; 185 - }; 186 - }; 187 - "@babel/helper-replace-supers-7.15.4" = { 188 - name = "_at_babel_slash_helper-replace-supers"; 189 - packageName = "@babel/helper-replace-supers"; 190 - version = "7.15.4"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz"; 193 - sha512 = "/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw=="; 194 - }; 195 - }; 196 - "@babel/helper-simple-access-7.15.4" = { 197 - name = "_at_babel_slash_helper-simple-access"; 198 - packageName = "@babel/helper-simple-access"; 199 - version = "7.15.4"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz"; 202 - sha512 = "UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg=="; 203 - }; 204 - }; 205 - "@babel/helper-skip-transparent-expression-wrappers-7.15.4" = { 206 - name = "_at_babel_slash_helper-skip-transparent-expression-wrappers"; 207 - packageName = "@babel/helper-skip-transparent-expression-wrappers"; 208 - version = "7.15.4"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz"; 211 - sha512 = "BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A=="; 212 - }; 213 - }; 214 - "@babel/helper-split-export-declaration-7.15.4" = { 215 - name = "_at_babel_slash_helper-split-export-declaration"; 216 - packageName = "@babel/helper-split-export-declaration"; 217 - version = "7.15.4"; 218 - src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz"; 220 - sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw=="; 221 - }; 222 - }; 223 - "@babel/helper-validator-identifier-7.15.7" = { 224 - name = "_at_babel_slash_helper-validator-identifier"; 225 - packageName = "@babel/helper-validator-identifier"; 226 - version = "7.15.7"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 229 - sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 230 - }; 231 - }; 232 - "@babel/helper-validator-option-7.14.5" = { 233 - name = "_at_babel_slash_helper-validator-option"; 234 - packageName = "@babel/helper-validator-option"; 235 - version = "7.14.5"; 236 - src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 238 - sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 239 - }; 240 - }; 241 - "@babel/helper-wrap-function-7.15.4" = { 242 - name = "_at_babel_slash_helper-wrap-function"; 243 - packageName = "@babel/helper-wrap-function"; 244 - version = "7.15.4"; 245 - src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz"; 247 - sha512 = "Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw=="; 248 - }; 249 - }; 250 - "@babel/helpers-7.15.4" = { 251 - name = "_at_babel_slash_helpers"; 252 - packageName = "@babel/helpers"; 253 - version = "7.15.4"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz"; 256 - sha512 = "V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ=="; 257 - }; 258 - }; 259 - "@babel/highlight-7.14.5" = { 260 - name = "_at_babel_slash_highlight"; 261 - packageName = "@babel/highlight"; 262 - version = "7.14.5"; 263 - src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz"; 265 - sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg=="; 266 - }; 267 - }; 268 - "@babel/parser-7.15.8" = { 269 - name = "_at_babel_slash_parser"; 270 - packageName = "@babel/parser"; 271 - version = "7.15.8"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz"; 274 - sha512 = "BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA=="; 275 - }; 276 - }; 277 - "@babel/plugin-proposal-async-generator-functions-7.15.8" = { 278 - name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 279 - packageName = "@babel/plugin-proposal-async-generator-functions"; 280 - version = "7.15.8"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz"; 283 - sha512 = "2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA=="; 284 - }; 285 - }; 286 - "@babel/plugin-proposal-class-properties-7.14.5" = { 287 - name = "_at_babel_slash_plugin-proposal-class-properties"; 288 - packageName = "@babel/plugin-proposal-class-properties"; 289 - version = "7.14.5"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz"; 292 - sha512 = "q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg=="; 293 - }; 294 - }; 295 - "@babel/plugin-proposal-dynamic-import-7.14.5" = { 296 - name = "_at_babel_slash_plugin-proposal-dynamic-import"; 297 - packageName = "@babel/plugin-proposal-dynamic-import"; 298 - version = "7.14.5"; 299 - src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz"; 301 - sha512 = "ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g=="; 302 - }; 303 - }; 304 - "@babel/plugin-proposal-export-namespace-from-7.14.5" = { 305 - name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 306 - packageName = "@babel/plugin-proposal-export-namespace-from"; 307 - version = "7.14.5"; 308 - src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz"; 310 - sha512 = "g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA=="; 311 - }; 312 - }; 313 - "@babel/plugin-proposal-json-strings-7.14.5" = { 314 - name = "_at_babel_slash_plugin-proposal-json-strings"; 315 - packageName = "@babel/plugin-proposal-json-strings"; 316 - version = "7.14.5"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz"; 319 - sha512 = "NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ=="; 320 - }; 321 - }; 322 - "@babel/plugin-proposal-logical-assignment-operators-7.14.5" = { 323 - name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 324 - packageName = "@babel/plugin-proposal-logical-assignment-operators"; 325 - version = "7.14.5"; 326 - src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz"; 328 - sha512 = "YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw=="; 329 - }; 330 - }; 331 - "@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" = { 332 - name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 333 - packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 334 - version = "7.14.5"; 335 - src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz"; 337 - sha512 = "gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg=="; 338 - }; 339 - }; 340 - "@babel/plugin-proposal-numeric-separator-7.14.5" = { 341 - name = "_at_babel_slash_plugin-proposal-numeric-separator"; 342 - packageName = "@babel/plugin-proposal-numeric-separator"; 343 - version = "7.14.5"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz"; 346 - sha512 = "yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg=="; 347 - }; 348 - }; 349 - "@babel/plugin-proposal-object-rest-spread-7.11.0" = { 350 - name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 351 - packageName = "@babel/plugin-proposal-object-rest-spread"; 352 - version = "7.11.0"; 353 - src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz"; 355 - sha512 = "wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA=="; 356 - }; 357 - }; 358 - "@babel/plugin-proposal-optional-catch-binding-7.14.5" = { 359 - name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 360 - packageName = "@babel/plugin-proposal-optional-catch-binding"; 361 - version = "7.14.5"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz"; 364 - sha512 = "3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ=="; 365 - }; 366 - }; 367 - "@babel/plugin-proposal-optional-chaining-7.14.5" = { 368 - name = "_at_babel_slash_plugin-proposal-optional-chaining"; 369 - packageName = "@babel/plugin-proposal-optional-chaining"; 370 - version = "7.14.5"; 371 - src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz"; 373 - sha512 = "ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ=="; 374 - }; 375 - }; 376 - "@babel/plugin-proposal-private-methods-7.14.5" = { 377 - name = "_at_babel_slash_plugin-proposal-private-methods"; 378 - packageName = "@babel/plugin-proposal-private-methods"; 379 - version = "7.14.5"; 380 - src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz"; 382 - sha512 = "838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g=="; 383 - }; 384 - }; 385 - "@babel/plugin-proposal-unicode-property-regex-7.14.5" = { 386 - name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 387 - packageName = "@babel/plugin-proposal-unicode-property-regex"; 388 - version = "7.14.5"; 389 - src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz"; 391 - sha512 = "6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q=="; 392 - }; 393 - }; 394 - "@babel/plugin-syntax-async-generators-7.8.4" = { 395 - name = "_at_babel_slash_plugin-syntax-async-generators"; 396 - packageName = "@babel/plugin-syntax-async-generators"; 397 - version = "7.8.4"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz"; 400 - sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw=="; 401 - }; 402 - }; 403 - "@babel/plugin-syntax-class-properties-7.12.13" = { 404 - name = "_at_babel_slash_plugin-syntax-class-properties"; 405 - packageName = "@babel/plugin-syntax-class-properties"; 406 - version = "7.12.13"; 407 - src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; 409 - sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 410 - }; 411 - }; 412 - "@babel/plugin-syntax-dynamic-import-7.8.3" = { 413 - name = "_at_babel_slash_plugin-syntax-dynamic-import"; 414 - packageName = "@babel/plugin-syntax-dynamic-import"; 415 - version = "7.8.3"; 416 - src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz"; 418 - sha512 = "5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ=="; 419 - }; 420 - }; 421 - "@babel/plugin-syntax-export-namespace-from-7.8.3" = { 422 - name = "_at_babel_slash_plugin-syntax-export-namespace-from"; 423 - packageName = "@babel/plugin-syntax-export-namespace-from"; 424 - version = "7.8.3"; 425 - src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz"; 427 - sha512 = "MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q=="; 428 - }; 429 - }; 430 - "@babel/plugin-syntax-json-strings-7.8.3" = { 431 - name = "_at_babel_slash_plugin-syntax-json-strings"; 432 - packageName = "@babel/plugin-syntax-json-strings"; 433 - version = "7.8.3"; 434 - src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz"; 436 - sha512 = "lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA=="; 437 - }; 438 - }; 439 - "@babel/plugin-syntax-logical-assignment-operators-7.10.4" = { 440 - name = "_at_babel_slash_plugin-syntax-logical-assignment-operators"; 441 - packageName = "@babel/plugin-syntax-logical-assignment-operators"; 442 - version = "7.10.4"; 443 - src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz"; 445 - sha512 = "d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig=="; 446 - }; 447 - }; 448 - "@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" = { 449 - name = "_at_babel_slash_plugin-syntax-nullish-coalescing-operator"; 450 - packageName = "@babel/plugin-syntax-nullish-coalescing-operator"; 451 - version = "7.8.3"; 452 - src = fetchurl { 453 - url = "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz"; 454 - sha512 = "aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ=="; 455 - }; 456 - }; 457 - "@babel/plugin-syntax-numeric-separator-7.10.4" = { 458 - name = "_at_babel_slash_plugin-syntax-numeric-separator"; 459 - packageName = "@babel/plugin-syntax-numeric-separator"; 460 - version = "7.10.4"; 461 - src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz"; 463 - sha512 = "9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug=="; 464 - }; 465 - }; 466 - "@babel/plugin-syntax-object-rest-spread-7.8.3" = { 467 - name = "_at_babel_slash_plugin-syntax-object-rest-spread"; 468 - packageName = "@babel/plugin-syntax-object-rest-spread"; 469 - version = "7.8.3"; 470 - src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz"; 472 - sha512 = "XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA=="; 473 - }; 474 - }; 475 - "@babel/plugin-syntax-optional-catch-binding-7.8.3" = { 476 - name = "_at_babel_slash_plugin-syntax-optional-catch-binding"; 477 - packageName = "@babel/plugin-syntax-optional-catch-binding"; 478 - version = "7.8.3"; 479 - src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz"; 481 - sha512 = "6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q=="; 482 - }; 483 - }; 484 - "@babel/plugin-syntax-optional-chaining-7.8.3" = { 485 - name = "_at_babel_slash_plugin-syntax-optional-chaining"; 486 - packageName = "@babel/plugin-syntax-optional-chaining"; 487 - version = "7.8.3"; 488 - src = fetchurl { 489 - url = "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz"; 490 - sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 491 - }; 492 - }; 493 - "@babel/plugin-syntax-top-level-await-7.14.5" = { 494 - name = "_at_babel_slash_plugin-syntax-top-level-await"; 495 - packageName = "@babel/plugin-syntax-top-level-await"; 496 - version = "7.14.5"; 497 - src = fetchurl { 498 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz"; 499 - sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 500 - }; 501 - }; 502 - "@babel/plugin-transform-arrow-functions-7.14.5" = { 503 - name = "_at_babel_slash_plugin-transform-arrow-functions"; 504 - packageName = "@babel/plugin-transform-arrow-functions"; 505 - version = "7.14.5"; 506 - src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz"; 508 - sha512 = "KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A=="; 509 - }; 510 - }; 511 - "@babel/plugin-transform-async-to-generator-7.14.5" = { 512 - name = "_at_babel_slash_plugin-transform-async-to-generator"; 513 - packageName = "@babel/plugin-transform-async-to-generator"; 514 - version = "7.14.5"; 515 - src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz"; 517 - sha512 = "szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA=="; 518 - }; 519 - }; 520 - "@babel/plugin-transform-block-scoped-functions-7.14.5" = { 521 - name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 522 - packageName = "@babel/plugin-transform-block-scoped-functions"; 523 - version = "7.14.5"; 524 - src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz"; 526 - sha512 = "dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ=="; 527 - }; 528 - }; 529 - "@babel/plugin-transform-block-scoping-7.15.3" = { 530 - name = "_at_babel_slash_plugin-transform-block-scoping"; 531 - packageName = "@babel/plugin-transform-block-scoping"; 532 - version = "7.15.3"; 533 - src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz"; 535 - sha512 = "nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q=="; 536 - }; 537 - }; 538 - "@babel/plugin-transform-classes-7.15.4" = { 539 - name = "_at_babel_slash_plugin-transform-classes"; 540 - packageName = "@babel/plugin-transform-classes"; 541 - version = "7.15.4"; 542 - src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz"; 544 - sha512 = "Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg=="; 545 - }; 546 - }; 547 - "@babel/plugin-transform-computed-properties-7.14.5" = { 548 - name = "_at_babel_slash_plugin-transform-computed-properties"; 549 - packageName = "@babel/plugin-transform-computed-properties"; 550 - version = "7.14.5"; 551 - src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz"; 553 - sha512 = "pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg=="; 554 - }; 555 - }; 556 - "@babel/plugin-transform-destructuring-7.14.7" = { 557 - name = "_at_babel_slash_plugin-transform-destructuring"; 558 - packageName = "@babel/plugin-transform-destructuring"; 559 - version = "7.14.7"; 560 - src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz"; 562 - sha512 = "0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw=="; 563 - }; 564 - }; 565 - "@babel/plugin-transform-dotall-regex-7.14.5" = { 566 - name = "_at_babel_slash_plugin-transform-dotall-regex"; 567 - packageName = "@babel/plugin-transform-dotall-regex"; 568 - version = "7.14.5"; 569 - src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz"; 571 - sha512 = "loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw=="; 572 - }; 573 - }; 574 - "@babel/plugin-transform-duplicate-keys-7.14.5" = { 575 - name = "_at_babel_slash_plugin-transform-duplicate-keys"; 576 - packageName = "@babel/plugin-transform-duplicate-keys"; 577 - version = "7.14.5"; 578 - src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz"; 580 - sha512 = "iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A=="; 581 - }; 582 - }; 583 - "@babel/plugin-transform-exponentiation-operator-7.14.5" = { 584 - name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 585 - packageName = "@babel/plugin-transform-exponentiation-operator"; 586 - version = "7.14.5"; 587 - src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz"; 589 - sha512 = "jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA=="; 590 - }; 591 - }; 592 - "@babel/plugin-transform-for-of-7.15.4" = { 593 - name = "_at_babel_slash_plugin-transform-for-of"; 594 - packageName = "@babel/plugin-transform-for-of"; 595 - version = "7.15.4"; 596 - src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz"; 598 - sha512 = "DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA=="; 599 - }; 600 - }; 601 - "@babel/plugin-transform-function-name-7.14.5" = { 602 - name = "_at_babel_slash_plugin-transform-function-name"; 603 - packageName = "@babel/plugin-transform-function-name"; 604 - version = "7.14.5"; 605 - src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz"; 607 - sha512 = "vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ=="; 608 - }; 609 - }; 610 - "@babel/plugin-transform-literals-7.14.5" = { 611 - name = "_at_babel_slash_plugin-transform-literals"; 612 - packageName = "@babel/plugin-transform-literals"; 613 - version = "7.14.5"; 614 - src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz"; 616 - sha512 = "ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A=="; 617 - }; 618 - }; 619 - "@babel/plugin-transform-member-expression-literals-7.14.5" = { 620 - name = "_at_babel_slash_plugin-transform-member-expression-literals"; 621 - packageName = "@babel/plugin-transform-member-expression-literals"; 622 - version = "7.14.5"; 623 - src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz"; 625 - sha512 = "WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q=="; 626 - }; 627 - }; 628 - "@babel/plugin-transform-modules-amd-7.14.5" = { 629 - name = "_at_babel_slash_plugin-transform-modules-amd"; 630 - packageName = "@babel/plugin-transform-modules-amd"; 631 - version = "7.14.5"; 632 - src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz"; 634 - sha512 = "3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g=="; 635 - }; 636 - }; 637 - "@babel/plugin-transform-modules-commonjs-7.15.4" = { 638 - name = "_at_babel_slash_plugin-transform-modules-commonjs"; 639 - packageName = "@babel/plugin-transform-modules-commonjs"; 640 - version = "7.15.4"; 641 - src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz"; 643 - sha512 = "qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA=="; 644 - }; 645 - }; 646 - "@babel/plugin-transform-modules-systemjs-7.15.4" = { 647 - name = "_at_babel_slash_plugin-transform-modules-systemjs"; 648 - packageName = "@babel/plugin-transform-modules-systemjs"; 649 - version = "7.15.4"; 650 - src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz"; 652 - sha512 = "fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw=="; 653 - }; 654 - }; 655 - "@babel/plugin-transform-modules-umd-7.14.5" = { 656 - name = "_at_babel_slash_plugin-transform-modules-umd"; 657 - packageName = "@babel/plugin-transform-modules-umd"; 658 - version = "7.14.5"; 659 - src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz"; 661 - sha512 = "RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA=="; 662 - }; 663 - }; 664 - "@babel/plugin-transform-named-capturing-groups-regex-7.14.9" = { 665 - name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 666 - packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 667 - version = "7.14.9"; 668 - src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz"; 670 - sha512 = "l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA=="; 671 - }; 672 - }; 673 - "@babel/plugin-transform-new-target-7.14.5" = { 674 - name = "_at_babel_slash_plugin-transform-new-target"; 675 - packageName = "@babel/plugin-transform-new-target"; 676 - version = "7.14.5"; 677 - src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz"; 679 - sha512 = "Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ=="; 680 - }; 681 - }; 682 - "@babel/plugin-transform-object-super-7.14.5" = { 683 - name = "_at_babel_slash_plugin-transform-object-super"; 684 - packageName = "@babel/plugin-transform-object-super"; 685 - version = "7.14.5"; 686 - src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz"; 688 - sha512 = "MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg=="; 689 - }; 690 - }; 691 - "@babel/plugin-transform-parameters-7.15.4" = { 692 - name = "_at_babel_slash_plugin-transform-parameters"; 693 - packageName = "@babel/plugin-transform-parameters"; 694 - version = "7.15.4"; 695 - src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz"; 697 - sha512 = "9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ=="; 698 - }; 699 - }; 700 - "@babel/plugin-transform-property-literals-7.14.5" = { 701 - name = "_at_babel_slash_plugin-transform-property-literals"; 702 - packageName = "@babel/plugin-transform-property-literals"; 703 - version = "7.14.5"; 704 - src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz"; 706 - sha512 = "r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw=="; 707 - }; 708 - }; 709 - "@babel/plugin-transform-regenerator-7.14.5" = { 710 - name = "_at_babel_slash_plugin-transform-regenerator"; 711 - packageName = "@babel/plugin-transform-regenerator"; 712 - version = "7.14.5"; 713 - src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz"; 715 - sha512 = "NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg=="; 716 - }; 717 - }; 718 - "@babel/plugin-transform-reserved-words-7.14.5" = { 719 - name = "_at_babel_slash_plugin-transform-reserved-words"; 720 - packageName = "@babel/plugin-transform-reserved-words"; 721 - version = "7.14.5"; 722 - src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz"; 724 - sha512 = "cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg=="; 725 - }; 726 - }; 727 - "@babel/plugin-transform-shorthand-properties-7.14.5" = { 728 - name = "_at_babel_slash_plugin-transform-shorthand-properties"; 729 - packageName = "@babel/plugin-transform-shorthand-properties"; 730 - version = "7.14.5"; 731 - src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz"; 733 - sha512 = "xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g=="; 734 - }; 735 - }; 736 - "@babel/plugin-transform-spread-7.15.8" = { 737 - name = "_at_babel_slash_plugin-transform-spread"; 738 - packageName = "@babel/plugin-transform-spread"; 739 - version = "7.15.8"; 740 - src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz"; 742 - sha512 = "/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ=="; 743 - }; 744 - }; 745 - "@babel/plugin-transform-sticky-regex-7.14.5" = { 746 - name = "_at_babel_slash_plugin-transform-sticky-regex"; 747 - packageName = "@babel/plugin-transform-sticky-regex"; 748 - version = "7.14.5"; 749 - src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz"; 751 - sha512 = "Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A=="; 752 - }; 753 - }; 754 - "@babel/plugin-transform-template-literals-7.14.5" = { 755 - name = "_at_babel_slash_plugin-transform-template-literals"; 756 - packageName = "@babel/plugin-transform-template-literals"; 757 - version = "7.14.5"; 758 - src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz"; 760 - sha512 = "22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg=="; 761 - }; 762 - }; 763 - "@babel/plugin-transform-typeof-symbol-7.14.5" = { 764 - name = "_at_babel_slash_plugin-transform-typeof-symbol"; 765 - packageName = "@babel/plugin-transform-typeof-symbol"; 766 - version = "7.14.5"; 767 - src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz"; 769 - sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw=="; 770 - }; 771 - }; 772 - "@babel/plugin-transform-unicode-escapes-7.14.5" = { 773 - name = "_at_babel_slash_plugin-transform-unicode-escapes"; 774 - packageName = "@babel/plugin-transform-unicode-escapes"; 775 - version = "7.14.5"; 776 - src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz"; 778 - sha512 = "crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA=="; 779 - }; 780 - }; 781 - "@babel/plugin-transform-unicode-regex-7.14.5" = { 782 - name = "_at_babel_slash_plugin-transform-unicode-regex"; 783 - packageName = "@babel/plugin-transform-unicode-regex"; 784 - version = "7.14.5"; 785 - src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz"; 787 - sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw=="; 788 - }; 789 - }; 790 - "@babel/preset-env-7.11.5" = { 791 - name = "_at_babel_slash_preset-env"; 792 - packageName = "@babel/preset-env"; 793 - version = "7.11.5"; 794 - src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.11.5.tgz"; 796 - sha512 = "kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA=="; 797 - }; 798 - }; 799 - "@babel/preset-modules-0.1.4" = { 800 - name = "_at_babel_slash_preset-modules"; 801 - packageName = "@babel/preset-modules"; 802 - version = "0.1.4"; 803 - src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.4.tgz"; 805 - sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 806 - }; 807 - }; 808 - "@babel/register-7.11.5" = { 809 - name = "_at_babel_slash_register"; 810 - packageName = "@babel/register"; 811 - version = "7.11.5"; 812 - src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/register/-/register-7.11.5.tgz"; 814 - sha512 = "CAml0ioKX+kOAvBQDHa/+t1fgOt3qkTIz0TrRtRAT6XY0m5qYZXR85k6/sLCNPMGhYDlCFHCYuU0ybTJbvlC6w=="; 815 - }; 816 - }; 817 - "@babel/runtime-7.15.4" = { 818 - name = "_at_babel_slash_runtime"; 819 - packageName = "@babel/runtime"; 820 - version = "7.15.4"; 821 - src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz"; 823 - sha512 = "99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw=="; 824 - }; 825 - }; 826 - "@babel/template-7.15.4" = { 827 - name = "_at_babel_slash_template"; 828 - packageName = "@babel/template"; 829 - version = "7.15.4"; 830 - src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz"; 832 - sha512 = "UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg=="; 833 - }; 834 - }; 835 - "@babel/traverse-7.15.4" = { 836 - name = "_at_babel_slash_traverse"; 837 - packageName = "@babel/traverse"; 838 - version = "7.15.4"; 839 - src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz"; 841 - sha512 = "W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA=="; 842 - }; 843 - }; 844 - "@babel/types-7.15.6" = { 845 - name = "_at_babel_slash_types"; 846 - packageName = "@babel/types"; 847 - version = "7.15.6"; 848 - src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz"; 850 - sha512 = "BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig=="; 851 - }; 852 - }; 853 - "@commitlint/execute-rule-13.2.0" = { 854 - name = "_at_commitlint_slash_execute-rule"; 855 - packageName = "@commitlint/execute-rule"; 856 - version = "13.2.0"; 857 - src = fetchurl { 858 - url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-13.2.0.tgz"; 859 - sha512 = "6nPwpN0hwTYmsH3WM4hCdN+NrMopgRIuQ0aqZa+jnwMoS/g6ljliQNYfL+m5WO306BaIu1W3yYpbW5aI8gEr0g=="; 860 - }; 861 - }; 862 - "@commitlint/load-13.2.1" = { 863 - name = "_at_commitlint_slash_load"; 864 - packageName = "@commitlint/load"; 865 - version = "13.2.1"; 866 - src = fetchurl { 867 - url = "https://registry.npmjs.org/@commitlint/load/-/load-13.2.1.tgz"; 868 - sha512 = "qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ=="; 869 - }; 870 - }; 871 - "@commitlint/resolve-extends-13.2.0" = { 872 - name = "_at_commitlint_slash_resolve-extends"; 873 - packageName = "@commitlint/resolve-extends"; 874 - version = "13.2.0"; 875 - src = fetchurl { 876 - url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-13.2.0.tgz"; 877 - sha512 = "HLCMkqMKtvl1yYLZ1Pm0UpFvd0kYjsm1meLOGZ7VkOd9G/XX+Fr1S2G5AT2zeiDw7WUVYK8lGVMNa319bnV+aw=="; 878 - }; 879 - }; 880 - "@commitlint/types-13.2.0" = { 881 - name = "_at_commitlint_slash_types"; 882 - packageName = "@commitlint/types"; 883 - version = "13.2.0"; 884 - src = fetchurl { 885 - url = "https://registry.npmjs.org/@commitlint/types/-/types-13.2.0.tgz"; 886 - sha512 = "RRVHEqmk1qn/dIaSQhvuca6k/6Z54G+r/KyimZ8gnAFielGiGUpsFRhIY3qhd5rXClVxDaa3nlcyTWckSccotQ=="; 887 - }; 888 - }; 889 - "@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" = { 890 - name = "_at_endemolshinegroup_slash_cosmiconfig-typescript-loader"; 891 - packageName = "@endemolshinegroup/cosmiconfig-typescript-loader"; 892 - version = "3.0.2"; 893 - src = fetchurl { 894 - url = "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz"; 895 - sha512 = "QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA=="; 896 - }; 897 - }; 898 - "@istanbuljs/load-nyc-config-1.1.0" = { 899 - name = "_at_istanbuljs_slash_load-nyc-config"; 900 - packageName = "@istanbuljs/load-nyc-config"; 901 - version = "1.1.0"; 902 - src = fetchurl { 903 - url = "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz"; 904 - sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; 905 - }; 906 - }; 907 - "@istanbuljs/nyc-config-babel-2.1.1" = { 908 - name = "_at_istanbuljs_slash_nyc-config-babel"; 909 - packageName = "@istanbuljs/nyc-config-babel"; 910 - version = "2.1.1"; 911 - src = fetchurl { 912 - url = "https://registry.npmjs.org/@istanbuljs/nyc-config-babel/-/nyc-config-babel-2.1.1.tgz"; 913 - sha512 = "cWcUCqHOYB+Mpumsv03uaE7rMvtmJn7pZ3llc+9gyqMFC93IVcUuuJ/mknoWsiuajcEjRCqKmhGaiAaXG6kzLA=="; 914 - }; 915 - }; 916 - "@istanbuljs/schema-0.1.3" = { 917 - name = "_at_istanbuljs_slash_schema"; 918 - packageName = "@istanbuljs/schema"; 919 - version = "0.1.3"; 920 - src = fetchurl { 921 - url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"; 922 - sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 923 - }; 924 - }; 925 - "@nodelib/fs.scandir-2.1.5" = { 926 - name = "_at_nodelib_slash_fs.scandir"; 927 - packageName = "@nodelib/fs.scandir"; 928 - version = "2.1.5"; 929 - src = fetchurl { 930 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"; 931 - sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g=="; 932 - }; 933 - }; 934 - "@nodelib/fs.stat-2.0.5" = { 935 - name = "_at_nodelib_slash_fs.stat"; 936 - packageName = "@nodelib/fs.stat"; 937 - version = "2.0.5"; 938 - src = fetchurl { 939 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"; 940 - sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A=="; 941 - }; 942 - }; 943 - "@nodelib/fs.walk-1.2.8" = { 944 - name = "_at_nodelib_slash_fs.walk"; 945 - packageName = "@nodelib/fs.walk"; 946 - version = "1.2.8"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz"; 949 - sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg=="; 950 - }; 951 - }; 952 - "@octokit/auth-token-2.5.0" = { 953 - name = "_at_octokit_slash_auth-token"; 954 - packageName = "@octokit/auth-token"; 955 - version = "2.5.0"; 956 - src = fetchurl { 957 - url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz"; 958 - sha512 = "r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g=="; 959 - }; 960 - }; 961 - "@octokit/endpoint-6.0.12" = { 962 - name = "_at_octokit_slash_endpoint"; 963 - packageName = "@octokit/endpoint"; 964 - version = "6.0.12"; 965 - src = fetchurl { 966 - url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz"; 967 - sha512 = "lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA=="; 968 - }; 969 - }; 970 - "@octokit/openapi-types-11.2.0" = { 971 - name = "_at_octokit_slash_openapi-types"; 972 - packageName = "@octokit/openapi-types"; 973 - version = "11.2.0"; 974 - src = fetchurl { 975 - url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz"; 976 - sha512 = "PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA=="; 977 - }; 978 - }; 979 - "@octokit/plugin-paginate-rest-1.1.2" = { 980 - name = "_at_octokit_slash_plugin-paginate-rest"; 981 - packageName = "@octokit/plugin-paginate-rest"; 982 - version = "1.1.2"; 983 - src = fetchurl { 984 - url = "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-1.1.2.tgz"; 985 - sha512 = "jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q=="; 986 - }; 987 - }; 988 - "@octokit/plugin-request-log-1.0.4" = { 989 - name = "_at_octokit_slash_plugin-request-log"; 990 - packageName = "@octokit/plugin-request-log"; 991 - version = "1.0.4"; 992 - src = fetchurl { 993 - url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz"; 994 - sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA=="; 995 - }; 996 - }; 997 - "@octokit/plugin-rest-endpoint-methods-2.4.0" = { 998 - name = "_at_octokit_slash_plugin-rest-endpoint-methods"; 999 - packageName = "@octokit/plugin-rest-endpoint-methods"; 1000 - version = "2.4.0"; 1001 - src = fetchurl { 1002 - url = "https://registry.npmjs.org/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-2.4.0.tgz"; 1003 - sha512 = "EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ=="; 1004 - }; 1005 - }; 1006 - "@octokit/request-5.6.2" = { 1007 - name = "_at_octokit_slash_request"; 1008 - packageName = "@octokit/request"; 1009 - version = "5.6.2"; 1010 - src = fetchurl { 1011 - url = "https://registry.npmjs.org/@octokit/request/-/request-5.6.2.tgz"; 1012 - sha512 = "je66CvSEVf0jCpRISxkUcCa0UkxmFs6eGDRSbfJtAVwbLH5ceqF+YEyC8lj8ystKyZTy8adWr0qmkY52EfOeLA=="; 1013 - }; 1014 - }; 1015 - "@octokit/request-error-1.2.1" = { 1016 - name = "_at_octokit_slash_request-error"; 1017 - packageName = "@octokit/request-error"; 1018 - version = "1.2.1"; 1019 - src = fetchurl { 1020 - url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-1.2.1.tgz"; 1021 - sha512 = "+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA=="; 1022 - }; 1023 - }; 1024 - "@octokit/request-error-2.1.0" = { 1025 - name = "_at_octokit_slash_request-error"; 1026 - packageName = "@octokit/request-error"; 1027 - version = "2.1.0"; 1028 - src = fetchurl { 1029 - url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz"; 1030 - sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg=="; 1031 - }; 1032 - }; 1033 - "@octokit/rest-16.43.2" = { 1034 - name = "_at_octokit_slash_rest"; 1035 - packageName = "@octokit/rest"; 1036 - version = "16.43.2"; 1037 - src = fetchurl { 1038 - url = "https://registry.npmjs.org/@octokit/rest/-/rest-16.43.2.tgz"; 1039 - sha512 = "ngDBevLbBTFfrHZeiS7SAMAZ6ssuVmXuya+F/7RaVvlysgGa1JKJkKWY+jV6TCJYcW0OALfJ7nTIGXcBXzycfQ=="; 1040 - }; 1041 - }; 1042 - "@octokit/types-2.16.2" = { 1043 - name = "_at_octokit_slash_types"; 1044 - packageName = "@octokit/types"; 1045 - version = "2.16.2"; 1046 - src = fetchurl { 1047 - url = "https://registry.npmjs.org/@octokit/types/-/types-2.16.2.tgz"; 1048 - sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q=="; 1049 - }; 1050 - }; 1051 - "@octokit/types-6.34.0" = { 1052 - name = "_at_octokit_slash_types"; 1053 - packageName = "@octokit/types"; 1054 - version = "6.34.0"; 1055 - src = fetchurl { 1056 - url = "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz"; 1057 - sha512 = "s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw=="; 1058 - }; 1059 - }; 1060 - "@semantic-release/commit-analyzer-6.3.3" = { 1061 - name = "_at_semantic-release_slash_commit-analyzer"; 1062 - packageName = "@semantic-release/commit-analyzer"; 1063 - version = "6.3.3"; 1064 - src = fetchurl { 1065 - url = "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-6.3.3.tgz"; 1066 - sha512 = "Pyv1ZL2u5AIOY4YbxFCAB5J1PEh5yON8ylbfiPiriDGGW6Uu1U3Y8lysMtWu+FUD5x7tSnyIzhqx0+fxPxqbgw=="; 1067 - }; 1068 - }; 1069 - "@semantic-release/error-2.2.0" = { 1070 - name = "_at_semantic-release_slash_error"; 1071 - packageName = "@semantic-release/error"; 1072 - version = "2.2.0"; 1073 - src = fetchurl { 1074 - url = "https://registry.npmjs.org/@semantic-release/error/-/error-2.2.0.tgz"; 1075 - sha512 = "9Tj/qn+y2j+sjCI3Jd+qseGtHjOAeg7dU2/lVcqIQ9TV3QDaDXDYXcoOHU+7o2Hwh8L8ymL4gfuO7KxDs3q2zg=="; 1076 - }; 1077 - }; 1078 - "@semantic-release/github-5.5.8" = { 1079 - name = "_at_semantic-release_slash_github"; 1080 - packageName = "@semantic-release/github"; 1081 - version = "5.5.8"; 1082 - src = fetchurl { 1083 - url = "https://registry.npmjs.org/@semantic-release/github/-/github-5.5.8.tgz"; 1084 - sha512 = "YxbBXbCThs/Xk3E4QU01AMIUM8eb0UTvjHJtclTDR3/DEW7kUpmXQqBMnSh3qCTuk4scRFIoaF0fGU/0xByZug=="; 1085 - }; 1086 - }; 1087 - "@semantic-release/npm-5.3.5" = { 1088 - name = "_at_semantic-release_slash_npm"; 1089 - packageName = "@semantic-release/npm"; 1090 - version = "5.3.5"; 1091 - src = fetchurl { 1092 - url = "https://registry.npmjs.org/@semantic-release/npm/-/npm-5.3.5.tgz"; 1093 - sha512 = "AOREQ6rUT8OAiqXvWCp0kMNjcdnLLq1JdP0voZL4l5zf6Tgs/65YA7ctP+9shthW01Ps85Nu0pILW3p9GkaYuw=="; 1094 - }; 1095 - }; 1096 - "@semantic-release/release-notes-generator-7.3.5" = { 1097 - name = "_at_semantic-release_slash_release-notes-generator"; 1098 - packageName = "@semantic-release/release-notes-generator"; 1099 - version = "7.3.5"; 1100 - src = fetchurl { 1101 - url = "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-7.3.5.tgz"; 1102 - sha512 = "LGjgPBGjjmjap/76O0Md3wc04Y7IlLnzZceLsAkcYRwGQdRPTTFUJKqDQTuieWTs7zfHzQoZqsqPfFxEN+g2+Q=="; 1103 - }; 1104 - }; 1105 - "@sinonjs/commons-1.8.3" = { 1106 - name = "_at_sinonjs_slash_commons"; 1107 - packageName = "@sinonjs/commons"; 1108 - version = "1.8.3"; 1109 - src = fetchurl { 1110 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz"; 1111 - sha512 = "xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ=="; 1112 - }; 1113 - }; 1114 - "@sinonjs/formatio-3.2.2" = { 1115 - name = "_at_sinonjs_slash_formatio"; 1116 - packageName = "@sinonjs/formatio"; 1117 - version = "3.2.2"; 1118 - src = fetchurl { 1119 - url = "https://registry.npmjs.org/@sinonjs/formatio/-/formatio-3.2.2.tgz"; 1120 - sha512 = "B8SEsgd8gArBLMD6zpRw3juQ2FVSsmdd7qlevyDqzS9WTCtvF55/gAL+h6gue8ZvPYcdiPdvueM/qm//9XzyTQ=="; 1121 - }; 1122 - }; 1123 - "@sinonjs/samsam-2.1.3" = { 1124 - name = "_at_sinonjs_slash_samsam"; 1125 - packageName = "@sinonjs/samsam"; 1126 - version = "2.1.3"; 1127 - src = fetchurl { 1128 - url = "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-2.1.3.tgz"; 1129 - sha512 = "8zNeBkSKhU9a5cRNbpCKau2WWPfan+Q2zDlcXvXyhn9EsMqgYs4qzo0XHNVlXC6ABQL8fT6nV+zzo5RTHJzyXw=="; 1130 - }; 1131 - }; 1132 - "@sinonjs/samsam-3.3.3" = { 1133 - name = "_at_sinonjs_slash_samsam"; 1134 - packageName = "@sinonjs/samsam"; 1135 - version = "3.3.3"; 1136 - src = fetchurl { 1137 - url = "https://registry.npmjs.org/@sinonjs/samsam/-/samsam-3.3.3.tgz"; 1138 - sha512 = "bKCMKZvWIjYD0BLGnNrxVuw4dkWCYsLqFOUWw8VgKF/+5Y+mE7LfHWPIYoDXowH+3a9LsWDMo0uAP8YDosPvHQ=="; 1139 - }; 1140 - }; 1141 - "@sinonjs/text-encoding-0.7.1" = { 1142 - name = "_at_sinonjs_slash_text-encoding"; 1143 - packageName = "@sinonjs/text-encoding"; 1144 - version = "0.7.1"; 1145 - src = fetchurl { 1146 - url = "https://registry.npmjs.org/@sinonjs/text-encoding/-/text-encoding-0.7.1.tgz"; 1147 - sha512 = "+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ=="; 1148 - }; 1149 - }; 1150 - "@types/glob-7.2.0" = { 1151 - name = "_at_types_slash_glob"; 1152 - packageName = "@types/glob"; 1153 - version = "7.2.0"; 1154 - src = fetchurl { 1155 - url = "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz"; 1156 - sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA=="; 1157 - }; 1158 - }; 1159 - "@types/minimatch-3.0.5" = { 1160 - name = "_at_types_slash_minimatch"; 1161 - packageName = "@types/minimatch"; 1162 - version = "3.0.5"; 1163 - src = fetchurl { 1164 - url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz"; 1165 - sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1166 - }; 1167 - }; 1168 - "@types/minimist-1.2.2" = { 1169 - name = "_at_types_slash_minimist"; 1170 - packageName = "@types/minimist"; 1171 - version = "1.2.2"; 1172 - src = fetchurl { 1173 - url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz"; 1174 - sha512 = "jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ=="; 1175 - }; 1176 - }; 1177 - "@types/node-16.11.1" = { 1178 - name = "_at_types_slash_node"; 1179 - packageName = "@types/node"; 1180 - version = "16.11.1"; 1181 - src = fetchurl { 1182 - url = "https://registry.npmjs.org/@types/node/-/node-16.11.1.tgz"; 1183 - sha512 = "PYGcJHL9mwl1Ek3PLiYgyEKtwTMmkMw4vbiyz/ps3pfdRYLVv+SN7qHVAImrjdAXxgluDEw6Ph4lyv+m9UpRmA=="; 1184 - }; 1185 - }; 1186 - "@types/normalize-package-data-2.4.1" = { 1187 - name = "_at_types_slash_normalize-package-data"; 1188 - packageName = "@types/normalize-package-data"; 1189 - version = "2.4.1"; 1190 - src = fetchurl { 1191 - url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz"; 1192 - sha512 = "Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw=="; 1193 - }; 1194 - }; 1195 - "@types/parse-json-4.0.0" = { 1196 - name = "_at_types_slash_parse-json"; 1197 - packageName = "@types/parse-json"; 1198 - version = "4.0.0"; 1199 - src = fetchurl { 1200 - url = "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz"; 1201 - sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA=="; 1202 - }; 1203 - }; 1204 - "@types/retry-0.12.1" = { 1205 - name = "_at_types_slash_retry"; 1206 - packageName = "@types/retry"; 1207 - version = "0.12.1"; 1208 - src = fetchurl { 1209 - url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz"; 1210 - sha512 = "xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g=="; 1211 - }; 1212 - }; 1213 - "JSONStream-1.3.5" = { 1214 - name = "JSONStream"; 1215 - packageName = "JSONStream"; 1216 - version = "1.3.5"; 1217 - src = fetchurl { 1218 - url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz"; 1219 - sha512 = "E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ=="; 1220 - }; 1221 - }; 1222 - "abbrev-1.1.1" = { 1223 - name = "abbrev"; 1224 - packageName = "abbrev"; 1225 - version = "1.1.1"; 1226 - src = fetchurl { 1227 - url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz"; 1228 - sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 1229 - }; 1230 - }; 1231 - "agent-base-5.1.1" = { 1232 - name = "agent-base"; 1233 - packageName = "agent-base"; 1234 - version = "5.1.1"; 1235 - src = fetchurl { 1236 - url = "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz"; 1237 - sha512 = "TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g=="; 1238 - }; 1239 - }; 1240 - "aggregate-error-3.1.0" = { 1241 - name = "aggregate-error"; 1242 - packageName = "aggregate-error"; 1243 - version = "3.1.0"; 1244 - src = fetchurl { 1245 - url = "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz"; 1246 - sha512 = "4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA=="; 1247 - }; 1248 - }; 1249 - "ansi-align-2.0.0" = { 1250 - name = "ansi-align"; 1251 - packageName = "ansi-align"; 1252 - version = "2.0.0"; 1253 - src = fetchurl { 1254 - url = "https://registry.npmjs.org/ansi-align/-/ansi-align-2.0.0.tgz"; 1255 - sha1 = "c36aeccba563b89ceb556f3690f0b1d9e3547f7f"; 1256 - }; 1257 - }; 1258 - "ansi-colors-3.2.3" = { 1259 - name = "ansi-colors"; 1260 - packageName = "ansi-colors"; 1261 - version = "3.2.3"; 1262 - src = fetchurl { 1263 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.3.tgz"; 1264 - sha512 = "LEHHyuhlPY3TmuUYMh2oz89lTShfvgbmzaBcxve9t/9Wuy7Dwf4yoAKcND7KFT1HAQfqZ12qtc+DUrBMeKF9nw=="; 1265 - }; 1266 - }; 1267 - "ansi-escapes-3.2.0" = { 1268 - name = "ansi-escapes"; 1269 - packageName = "ansi-escapes"; 1270 - version = "3.2.0"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 1273 - sha512 = "cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ=="; 1274 - }; 1275 - }; 1276 - "ansi-regex-2.1.1" = { 1277 - name = "ansi-regex"; 1278 - packageName = "ansi-regex"; 1279 - version = "2.1.1"; 1280 - src = fetchurl { 1281 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 1282 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1283 - }; 1284 - }; 1285 - "ansi-regex-3.0.0" = { 1286 - name = "ansi-regex"; 1287 - packageName = "ansi-regex"; 1288 - version = "3.0.0"; 1289 - src = fetchurl { 1290 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; 1291 - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 1292 - }; 1293 - }; 1294 - "ansi-regex-4.1.0" = { 1295 - name = "ansi-regex"; 1296 - packageName = "ansi-regex"; 1297 - version = "4.1.0"; 1298 - src = fetchurl { 1299 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 1300 - sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 1301 - }; 1302 - }; 1303 - "ansi-regex-5.0.1" = { 1304 - name = "ansi-regex"; 1305 - packageName = "ansi-regex"; 1306 - version = "5.0.1"; 1307 - src = fetchurl { 1308 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz"; 1309 - sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ=="; 1310 - }; 1311 - }; 1312 - "ansi-styles-3.2.1" = { 1313 - name = "ansi-styles"; 1314 - packageName = "ansi-styles"; 1315 - version = "3.2.1"; 1316 - src = fetchurl { 1317 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz"; 1318 - sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA=="; 1319 - }; 1320 - }; 1321 - "ansi-styles-4.3.0" = { 1322 - name = "ansi-styles"; 1323 - packageName = "ansi-styles"; 1324 - version = "4.3.0"; 1325 - src = fetchurl { 1326 - url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 1327 - sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 1328 - }; 1329 - }; 1330 - "ansicolors-0.3.2" = { 1331 - name = "ansicolors"; 1332 - packageName = "ansicolors"; 1333 - version = "0.3.2"; 1334 - src = fetchurl { 1335 - url = "https://registry.npmjs.org/ansicolors/-/ansicolors-0.3.2.tgz"; 1336 - sha1 = "665597de86a9ffe3aa9bfbe6cae5c6ea426b4979"; 1337 - }; 1338 - }; 1339 - "anymatch-2.0.0" = { 1340 - name = "anymatch"; 1341 - packageName = "anymatch"; 1342 - version = "2.0.0"; 1343 - src = fetchurl { 1344 - url = "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz"; 1345 - sha512 = "5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw=="; 1346 - }; 1347 - }; 1348 - "append-transform-2.0.0" = { 1349 - name = "append-transform"; 1350 - packageName = "append-transform"; 1351 - version = "2.0.0"; 1352 - src = fetchurl { 1353 - url = "https://registry.npmjs.org/append-transform/-/append-transform-2.0.0.tgz"; 1354 - sha512 = "7yeyCEurROLQJFv5Xj4lEGTy0borxepjFv1g22oAdqFu//SrAlDl1O1Nxx15SH1RoliUml6p8dwJW9jvZughhg=="; 1355 - }; 1356 - }; 1357 - "archy-1.0.0" = { 1358 - name = "archy"; 1359 - packageName = "archy"; 1360 - version = "1.0.0"; 1361 - src = fetchurl { 1362 - url = "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz"; 1363 - sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; 1364 - }; 1365 - }; 1366 - "arg-4.1.3" = { 1367 - name = "arg"; 1368 - packageName = "arg"; 1369 - version = "4.1.3"; 1370 - src = fetchurl { 1371 - url = "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz"; 1372 - sha512 = "58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA=="; 1373 - }; 1374 - }; 1375 - "argparse-1.0.10" = { 1376 - name = "argparse"; 1377 - packageName = "argparse"; 1378 - version = "1.0.10"; 1379 - src = fetchurl { 1380 - url = "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz"; 1381 - sha512 = "o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg=="; 1382 - }; 1383 - }; 1384 - "argv-formatter-1.0.0" = { 1385 - name = "argv-formatter"; 1386 - packageName = "argv-formatter"; 1387 - version = "1.0.0"; 1388 - src = fetchurl { 1389 - url = "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz"; 1390 - sha1 = "a0ca0cbc29a5b73e836eebe1cbf6c5e0e4eb82f9"; 1391 - }; 1392 - }; 1393 - "arr-diff-4.0.0" = { 1394 - name = "arr-diff"; 1395 - packageName = "arr-diff"; 1396 - version = "4.0.0"; 1397 - src = fetchurl { 1398 - url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; 1399 - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; 1400 - }; 1401 - }; 1402 - "arr-flatten-1.1.0" = { 1403 - name = "arr-flatten"; 1404 - packageName = "arr-flatten"; 1405 - version = "1.1.0"; 1406 - src = fetchurl { 1407 - url = "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz"; 1408 - sha512 = "L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg=="; 1409 - }; 1410 - }; 1411 - "arr-union-3.1.0" = { 1412 - name = "arr-union"; 1413 - packageName = "arr-union"; 1414 - version = "3.1.0"; 1415 - src = fetchurl { 1416 - url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; 1417 - sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; 1418 - }; 1419 - }; 1420 - "array-from-2.1.1" = { 1421 - name = "array-from"; 1422 - packageName = "array-from"; 1423 - version = "2.1.1"; 1424 - src = fetchurl { 1425 - url = "https://registry.npmjs.org/array-from/-/array-from-2.1.1.tgz"; 1426 - sha1 = "cfe9d8c26628b9dc5aecc62a9f5d8f1f352c1195"; 1427 - }; 1428 - }; 1429 - "array-ify-1.0.0" = { 1430 - name = "array-ify"; 1431 - packageName = "array-ify"; 1432 - version = "1.0.0"; 1433 - src = fetchurl { 1434 - url = "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz"; 1435 - sha1 = "9e528762b4a9066ad163a6962a364418e9626ece"; 1436 - }; 1437 - }; 1438 - "array-union-2.1.0" = { 1439 - name = "array-union"; 1440 - packageName = "array-union"; 1441 - version = "2.1.0"; 1442 - src = fetchurl { 1443 - url = "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz"; 1444 - sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; 1445 - }; 1446 - }; 1447 - "array-unique-0.3.2" = { 1448 - name = "array-unique"; 1449 - packageName = "array-unique"; 1450 - version = "0.3.2"; 1451 - src = fetchurl { 1452 - url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; 1453 - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; 1454 - }; 1455 - }; 1456 - "arrify-1.0.1" = { 1457 - name = "arrify"; 1458 - packageName = "arrify"; 1459 - version = "1.0.1"; 1460 - src = fetchurl { 1461 - url = "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz"; 1462 - sha1 = "898508da2226f380df904728456849c1501a4b0d"; 1463 - }; 1464 - }; 1465 - "asn1-0.1.11" = { 1466 - name = "asn1"; 1467 - packageName = "asn1"; 1468 - version = "0.1.11"; 1469 - src = fetchurl { 1470 - url = "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz"; 1471 - sha1 = "559be18376d08a4ec4dbe80877d27818639b2df7"; 1472 - }; 1473 - }; 1474 - "assert-plus-0.1.5" = { 1475 - name = "assert-plus"; 1476 - packageName = "assert-plus"; 1477 - version = "0.1.5"; 1478 - src = fetchurl { 1479 - url = "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz"; 1480 - sha1 = "ee74009413002d84cec7219c6ac811812e723160"; 1481 - }; 1482 - }; 1483 - "assertion-error-1.1.0" = { 1484 - name = "assertion-error"; 1485 - packageName = "assertion-error"; 1486 - version = "1.1.0"; 1487 - src = fetchurl { 1488 - url = "https://registry.npmjs.org/assertion-error/-/assertion-error-1.1.0.tgz"; 1489 - sha512 = "jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw=="; 1490 - }; 1491 - }; 1492 - "assign-symbols-1.0.0" = { 1493 - name = "assign-symbols"; 1494 - packageName = "assign-symbols"; 1495 - version = "1.0.0"; 1496 - src = fetchurl { 1497 - url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; 1498 - sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1499 - }; 1500 - }; 1501 - "async-0.9.2" = { 1502 - name = "async"; 1503 - packageName = "async"; 1504 - version = "0.9.2"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; 1507 - sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; 1508 - }; 1509 - }; 1510 - "async-each-1.0.3" = { 1511 - name = "async-each"; 1512 - packageName = "async-each"; 1513 - version = "1.0.3"; 1514 - src = fetchurl { 1515 - url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz"; 1516 - sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="; 1517 - }; 1518 - }; 1519 - "atob-2.1.2" = { 1520 - name = "atob"; 1521 - packageName = "atob"; 1522 - version = "2.1.2"; 1523 - src = fetchurl { 1524 - url = "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz"; 1525 - sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg=="; 1526 - }; 1527 - }; 1528 - "atob-lite-2.0.0" = { 1529 - name = "atob-lite"; 1530 - packageName = "atob-lite"; 1531 - version = "2.0.0"; 1532 - src = fetchurl { 1533 - url = "https://registry.npmjs.org/atob-lite/-/atob-lite-2.0.0.tgz"; 1534 - sha1 = "0fef5ad46f1bd7a8502c65727f0367d5ee43d696"; 1535 - }; 1536 - }; 1537 - "aws-sign2-0.5.0" = { 1538 - name = "aws-sign2"; 1539 - packageName = "aws-sign2"; 1540 - version = "0.5.0"; 1541 - src = fetchurl { 1542 - url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz"; 1543 - sha1 = "c57103f7a17fc037f02d7c2e64b602ea223f7d63"; 1544 - }; 1545 - }; 1546 - "axios-0.19.0" = { 1547 - name = "axios"; 1548 - packageName = "axios"; 1549 - version = "0.19.0"; 1550 - src = fetchurl { 1551 - url = "https://registry.npmjs.org/axios/-/axios-0.19.0.tgz"; 1552 - sha512 = "1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ=="; 1553 - }; 1554 - }; 1555 - "babel-plugin-dynamic-import-node-2.3.3" = { 1556 - name = "babel-plugin-dynamic-import-node"; 1557 - packageName = "babel-plugin-dynamic-import-node"; 1558 - version = "2.3.3"; 1559 - src = fetchurl { 1560 - url = "https://registry.npmjs.org/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz"; 1561 - sha512 = "jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ=="; 1562 - }; 1563 - }; 1564 - "babel-plugin-istanbul-5.2.0" = { 1565 - name = "babel-plugin-istanbul"; 1566 - packageName = "babel-plugin-istanbul"; 1567 - version = "5.2.0"; 1568 - src = fetchurl { 1569 - url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.2.0.tgz"; 1570 - sha512 = "5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw=="; 1571 - }; 1572 - }; 1573 - "balanced-match-1.0.2" = { 1574 - name = "balanced-match"; 1575 - packageName = "balanced-match"; 1576 - version = "1.0.2"; 1577 - src = fetchurl { 1578 - url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz"; 1579 - sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw=="; 1580 - }; 1581 - }; 1582 - "base-0.11.2" = { 1583 - name = "base"; 1584 - packageName = "base"; 1585 - version = "0.11.2"; 1586 - src = fetchurl { 1587 - url = "https://registry.npmjs.org/base/-/base-0.11.2.tgz"; 1588 - sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg=="; 1589 - }; 1590 - }; 1591 - "before-after-hook-2.2.2" = { 1592 - name = "before-after-hook"; 1593 - packageName = "before-after-hook"; 1594 - version = "2.2.2"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz"; 1597 - sha512 = "3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ=="; 1598 - }; 1599 - }; 1600 - "binary-extensions-1.13.1" = { 1601 - name = "binary-extensions"; 1602 - packageName = "binary-extensions"; 1603 - version = "1.13.1"; 1604 - src = fetchurl { 1605 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz"; 1606 - sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 1607 - }; 1608 - }; 1609 - "bindings-1.5.0" = { 1610 - name = "bindings"; 1611 - packageName = "bindings"; 1612 - version = "1.5.0"; 1613 - src = fetchurl { 1614 - url = "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz"; 1615 - sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 1616 - }; 1617 - }; 1618 - "bl-0.9.5" = { 1619 - name = "bl"; 1620 - packageName = "bl"; 1621 - version = "0.9.5"; 1622 - src = fetchurl { 1623 - url = "https://registry.npmjs.org/bl/-/bl-0.9.5.tgz"; 1624 - sha1 = "c06b797af085ea00bc527afc8efcf11de2232054"; 1625 - }; 1626 - }; 1627 - "boom-0.4.2" = { 1628 - name = "boom"; 1629 - packageName = "boom"; 1630 - version = "0.4.2"; 1631 - src = fetchurl { 1632 - url = "https://registry.npmjs.org/boom/-/boom-0.4.2.tgz"; 1633 - sha1 = "7a636e9ded4efcefb19cef4947a3c67dfaee911b"; 1634 - }; 1635 - }; 1636 - "bottleneck-2.19.5" = { 1637 - name = "bottleneck"; 1638 - packageName = "bottleneck"; 1639 - version = "2.19.5"; 1640 - src = fetchurl { 1641 - url = "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz"; 1642 - sha512 = "VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw=="; 1643 - }; 1644 - }; 1645 - "boxen-1.3.0" = { 1646 - name = "boxen"; 1647 - packageName = "boxen"; 1648 - version = "1.3.0"; 1649 - src = fetchurl { 1650 - url = "https://registry.npmjs.org/boxen/-/boxen-1.3.0.tgz"; 1651 - sha512 = "TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw=="; 1652 - }; 1653 - }; 1654 - "brace-expansion-1.1.11" = { 1655 - name = "brace-expansion"; 1656 - packageName = "brace-expansion"; 1657 - version = "1.1.11"; 1658 - src = fetchurl { 1659 - url = "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz"; 1660 - sha512 = "iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA=="; 1661 - }; 1662 - }; 1663 - "braces-2.3.2" = { 1664 - name = "braces"; 1665 - packageName = "braces"; 1666 - version = "2.3.2"; 1667 - src = fetchurl { 1668 - url = "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz"; 1669 - sha512 = "aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w=="; 1670 - }; 1671 - }; 1672 - "braces-3.0.2" = { 1673 - name = "braces"; 1674 - packageName = "braces"; 1675 - version = "3.0.2"; 1676 - src = fetchurl { 1677 - url = "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz"; 1678 - sha512 = "b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A=="; 1679 - }; 1680 - }; 1681 - "browser-stdout-1.3.1" = { 1682 - name = "browser-stdout"; 1683 - packageName = "browser-stdout"; 1684 - version = "1.3.1"; 1685 - src = fetchurl { 1686 - url = "https://registry.npmjs.org/browser-stdout/-/browser-stdout-1.3.1.tgz"; 1687 - sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw=="; 1688 - }; 1689 - }; 1690 - "browserslist-4.17.4" = { 1691 - name = "browserslist"; 1692 - packageName = "browserslist"; 1693 - version = "4.17.4"; 1694 - src = fetchurl { 1695 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz"; 1696 - sha512 = "Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ=="; 1697 - }; 1698 - }; 1699 - "btoa-lite-1.0.0" = { 1700 - name = "btoa-lite"; 1701 - packageName = "btoa-lite"; 1702 - version = "1.0.0"; 1703 - src = fetchurl { 1704 - url = "https://registry.npmjs.org/btoa-lite/-/btoa-lite-1.0.0.tgz"; 1705 - sha1 = "337766da15801210fdd956c22e9c6891ab9d0337"; 1706 - }; 1707 - }; 1708 - "buffer-from-1.1.2" = { 1709 - name = "buffer-from"; 1710 - packageName = "buffer-from"; 1711 - version = "1.1.2"; 1712 - src = fetchurl { 1713 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz"; 1714 - sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ=="; 1715 - }; 1716 - }; 1717 - "cache-base-1.0.1" = { 1718 - name = "cache-base"; 1719 - packageName = "cache-base"; 1720 - version = "1.0.1"; 1721 - src = fetchurl { 1722 - url = "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz"; 1723 - sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 1724 - }; 1725 - }; 1726 - "cachedir-2.2.0" = { 1727 - name = "cachedir"; 1728 - packageName = "cachedir"; 1729 - version = "2.2.0"; 1730 - src = fetchurl { 1731 - url = "https://registry.npmjs.org/cachedir/-/cachedir-2.2.0.tgz"; 1732 - sha512 = "VvxA0xhNqIIfg0V9AmJkDg91DaJwryutH5rVEZAhcNi4iJFj9f+QxmAjgK1LT9I8OgToX27fypX6/MeCXVbBjQ=="; 1733 - }; 1734 - }; 1735 - "caching-transform-4.0.0" = { 1736 - name = "caching-transform"; 1737 - packageName = "caching-transform"; 1738 - version = "4.0.0"; 1739 - src = fetchurl { 1740 - url = "https://registry.npmjs.org/caching-transform/-/caching-transform-4.0.0.tgz"; 1741 - sha512 = "kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA=="; 1742 - }; 1743 - }; 1744 - "call-bind-1.0.2" = { 1745 - name = "call-bind"; 1746 - packageName = "call-bind"; 1747 - version = "1.0.2"; 1748 - src = fetchurl { 1749 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 1750 - sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 1751 - }; 1752 - }; 1753 - "callsites-3.1.0" = { 1754 - name = "callsites"; 1755 - packageName = "callsites"; 1756 - version = "3.1.0"; 1757 - src = fetchurl { 1758 - url = "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz"; 1759 - sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ=="; 1760 - }; 1761 - }; 1762 - "camelcase-4.1.0" = { 1763 - name = "camelcase"; 1764 - packageName = "camelcase"; 1765 - version = "4.1.0"; 1766 - src = fetchurl { 1767 - url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz"; 1768 - sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; 1769 - }; 1770 - }; 1771 - "camelcase-5.3.1" = { 1772 - name = "camelcase"; 1773 - packageName = "camelcase"; 1774 - version = "5.3.1"; 1775 - src = fetchurl { 1776 - url = "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz"; 1777 - sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 1778 - }; 1779 - }; 1780 - "camelcase-keys-6.2.2" = { 1781 - name = "camelcase-keys"; 1782 - packageName = "camelcase-keys"; 1783 - version = "6.2.2"; 1784 - src = fetchurl { 1785 - url = "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz"; 1786 - sha512 = "YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg=="; 1787 - }; 1788 - }; 1789 - "caniuse-lite-1.0.30001270" = { 1790 - name = "caniuse-lite"; 1791 - packageName = "caniuse-lite"; 1792 - version = "1.0.30001270"; 1793 - src = fetchurl { 1794 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001270.tgz"; 1795 - sha512 = "TcIC7AyNWXhcOmv2KftOl1ShFAaHQYcB/EPL/hEyMrcS7ZX0/DvV1aoy6BzV0+16wTpoAyTMGDNAJfSqS/rz7A=="; 1796 - }; 1797 - }; 1798 - "capture-stack-trace-1.0.1" = { 1799 - name = "capture-stack-trace"; 1800 - packageName = "capture-stack-trace"; 1801 - version = "1.0.1"; 1802 - src = fetchurl { 1803 - url = "https://registry.npmjs.org/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz"; 1804 - sha512 = "mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw=="; 1805 - }; 1806 - }; 1807 - "cardinal-2.1.1" = { 1808 - name = "cardinal"; 1809 - packageName = "cardinal"; 1810 - version = "2.1.1"; 1811 - src = fetchurl { 1812 - url = "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz"; 1813 - sha1 = "7cc1055d822d212954d07b085dea251cc7bc5505"; 1814 - }; 1815 - }; 1816 - "caseless-0.6.0" = { 1817 - name = "caseless"; 1818 - packageName = "caseless"; 1819 - version = "0.6.0"; 1820 - src = fetchurl { 1821 - url = "https://registry.npmjs.org/caseless/-/caseless-0.6.0.tgz"; 1822 - sha1 = "8167c1ab8397fb5bb95f96d28e5a81c50f247ac4"; 1823 - }; 1824 - }; 1825 - "chai-4.1.2" = { 1826 - name = "chai"; 1827 - packageName = "chai"; 1828 - version = "4.1.2"; 1829 - src = fetchurl { 1830 - url = "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz"; 1831 - sha1 = "0f64584ba642f0f2ace2806279f4f06ca23ad73c"; 1832 - }; 1833 - }; 1834 - "chalk-2.4.2" = { 1835 - name = "chalk"; 1836 - packageName = "chalk"; 1837 - version = "2.4.2"; 1838 - src = fetchurl { 1839 - url = "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz"; 1840 - sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ=="; 1841 - }; 1842 - }; 1843 - "chalk-4.1.2" = { 1844 - name = "chalk"; 1845 - packageName = "chalk"; 1846 - version = "4.1.2"; 1847 - src = fetchurl { 1848 - url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"; 1849 - sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA=="; 1850 - }; 1851 - }; 1852 - "chardet-0.7.0" = { 1853 - name = "chardet"; 1854 - packageName = "chardet"; 1855 - version = "0.7.0"; 1856 - src = fetchurl { 1857 - url = "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz"; 1858 - sha512 = "mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA=="; 1859 - }; 1860 - }; 1861 - "charenc-0.0.2" = { 1862 - name = "charenc"; 1863 - packageName = "charenc"; 1864 - version = "0.0.2"; 1865 - src = fetchurl { 1866 - url = "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz"; 1867 - sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"; 1868 - }; 1869 - }; 1870 - "check-error-1.0.2" = { 1871 - name = "check-error"; 1872 - packageName = "check-error"; 1873 - version = "1.0.2"; 1874 - src = fetchurl { 1875 - url = "https://registry.npmjs.org/check-error/-/check-error-1.0.2.tgz"; 1876 - sha1 = "574d312edd88bb5dd8912e9286dd6c0aed4aac82"; 1877 - }; 1878 - }; 1879 - "chokidar-2.1.8" = { 1880 - name = "chokidar"; 1881 - packageName = "chokidar"; 1882 - version = "2.1.8"; 1883 - src = fetchurl { 1884 - url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 1885 - sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 1886 - }; 1887 - }; 1888 - "ci-info-1.6.0" = { 1889 - name = "ci-info"; 1890 - packageName = "ci-info"; 1891 - version = "1.6.0"; 1892 - src = fetchurl { 1893 - url = "https://registry.npmjs.org/ci-info/-/ci-info-1.6.0.tgz"; 1894 - sha512 = "vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A=="; 1895 - }; 1896 - }; 1897 - "class-utils-0.3.6" = { 1898 - name = "class-utils"; 1899 - packageName = "class-utils"; 1900 - version = "0.3.6"; 1901 - src = fetchurl { 1902 - url = "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz"; 1903 - sha512 = "qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg=="; 1904 - }; 1905 - }; 1906 - "clean-stack-2.2.0" = { 1907 - name = "clean-stack"; 1908 - packageName = "clean-stack"; 1909 - version = "2.2.0"; 1910 - src = fetchurl { 1911 - url = "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz"; 1912 - sha512 = "4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A=="; 1913 - }; 1914 - }; 1915 - "cli-boxes-1.0.0" = { 1916 - name = "cli-boxes"; 1917 - packageName = "cli-boxes"; 1918 - version = "1.0.0"; 1919 - src = fetchurl { 1920 - url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz"; 1921 - sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143"; 1922 - }; 1923 - }; 1924 - "cli-cursor-2.1.0" = { 1925 - name = "cli-cursor"; 1926 - packageName = "cli-cursor"; 1927 - version = "2.1.0"; 1928 - src = fetchurl { 1929 - url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"; 1930 - sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 1931 - }; 1932 - }; 1933 - "cli-table-0.3.6" = { 1934 - name = "cli-table"; 1935 - packageName = "cli-table"; 1936 - version = "0.3.6"; 1937 - src = fetchurl { 1938 - url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.6.tgz"; 1939 - sha512 = "ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ=="; 1940 - }; 1941 - }; 1942 - "cli-width-2.2.1" = { 1943 - name = "cli-width"; 1944 - packageName = "cli-width"; 1945 - version = "2.2.1"; 1946 - src = fetchurl { 1947 - url = "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz"; 1948 - sha512 = "GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw=="; 1949 - }; 1950 - }; 1951 - "cliui-4.1.0" = { 1952 - name = "cliui"; 1953 - packageName = "cliui"; 1954 - version = "4.1.0"; 1955 - src = fetchurl { 1956 - url = "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz"; 1957 - sha512 = "4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ=="; 1958 - }; 1959 - }; 1960 - "cliui-6.0.0" = { 1961 - name = "cliui"; 1962 - packageName = "cliui"; 1963 - version = "6.0.0"; 1964 - src = fetchurl { 1965 - url = "https://registry.npmjs.org/cliui/-/cliui-6.0.0.tgz"; 1966 - sha512 = "t6wbgtoCXvAzst7QgXxJYqPt0usEfbgQdftEPbLL/cvv6HPE5VgvqCuAIDR0NgU52ds6rFwqrgakNLrHEjCbrQ=="; 1967 - }; 1968 - }; 1969 - "code-point-at-1.1.0" = { 1970 - name = "code-point-at"; 1971 - packageName = "code-point-at"; 1972 - version = "1.1.0"; 1973 - src = fetchurl { 1974 - url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; 1975 - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; 1976 - }; 1977 - }; 1978 - "codecov.io-0.1.6" = { 1979 - name = "codecov.io"; 1980 - packageName = "codecov.io"; 1981 - version = "0.1.6"; 1982 - src = fetchurl { 1983 - url = "https://registry.npmjs.org/codecov.io/-/codecov.io-0.1.6.tgz"; 1984 - sha1 = "59dfd02da1ff31c2fb2b952ad8ad16fd3781b728"; 1985 - }; 1986 - }; 1987 - "collection-visit-1.0.0" = { 1988 - name = "collection-visit"; 1989 - packageName = "collection-visit"; 1990 - version = "1.0.0"; 1991 - src = fetchurl { 1992 - url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; 1993 - sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 1994 - }; 1995 - }; 1996 - "color-convert-1.9.3" = { 1997 - name = "color-convert"; 1998 - packageName = "color-convert"; 1999 - version = "1.9.3"; 2000 - src = fetchurl { 2001 - url = "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz"; 2002 - sha512 = "QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg=="; 2003 - }; 2004 - }; 2005 - "color-convert-2.0.1" = { 2006 - name = "color-convert"; 2007 - packageName = "color-convert"; 2008 - version = "2.0.1"; 2009 - src = fetchurl { 2010 - url = "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz"; 2011 - sha512 = "RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ=="; 2012 - }; 2013 - }; 2014 - "color-name-1.1.3" = { 2015 - name = "color-name"; 2016 - packageName = "color-name"; 2017 - version = "1.1.3"; 2018 - src = fetchurl { 2019 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 2020 - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 2021 - }; 2022 - }; 2023 - "color-name-1.1.4" = { 2024 - name = "color-name"; 2025 - packageName = "color-name"; 2026 - version = "1.1.4"; 2027 - src = fetchurl { 2028 - url = "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz"; 2029 - sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2030 - }; 2031 - }; 2032 - "colors-0.6.2" = { 2033 - name = "colors"; 2034 - packageName = "colors"; 2035 - version = "0.6.2"; 2036 - src = fetchurl { 2037 - url = "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz"; 2038 - sha1 = "2423fe6678ac0c5dae8852e5d0e5be08c997abcc"; 2039 - }; 2040 - }; 2041 - "colors-1.0.3" = { 2042 - name = "colors"; 2043 - packageName = "colors"; 2044 - version = "1.0.3"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; 2047 - sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; 2048 - }; 2049 - }; 2050 - "combined-stream-0.0.7" = { 2051 - name = "combined-stream"; 2052 - packageName = "combined-stream"; 2053 - version = "0.0.7"; 2054 - src = fetchurl { 2055 - url = "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz"; 2056 - sha1 = "0137e657baa5a7541c57ac37ac5fc07d73b4dc1f"; 2057 - }; 2058 - }; 2059 - "commander-2.1.0" = { 2060 - name = "commander"; 2061 - packageName = "commander"; 2062 - version = "2.1.0"; 2063 - src = fetchurl { 2064 - url = "https://registry.npmjs.org/commander/-/commander-2.1.0.tgz"; 2065 - sha1 = "d121bbae860d9992a3d517ba96f56588e47c6781"; 2066 - }; 2067 - }; 2068 - "commander-2.9.0" = { 2069 - name = "commander"; 2070 - packageName = "commander"; 2071 - version = "2.9.0"; 2072 - src = fetchurl { 2073 - url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz"; 2074 - sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4"; 2075 - }; 2076 - }; 2077 - "commander-4.1.1" = { 2078 - name = "commander"; 2079 - packageName = "commander"; 2080 - version = "4.1.1"; 2081 - src = fetchurl { 2082 - url = "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"; 2083 - sha512 = "NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="; 2084 - }; 2085 - }; 2086 - "commitizen-4.2.4" = { 2087 - name = "commitizen"; 2088 - packageName = "commitizen"; 2089 - version = "4.2.4"; 2090 - src = fetchurl { 2091 - url = "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz"; 2092 - sha512 = "LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw=="; 2093 - }; 2094 - }; 2095 - "commondir-1.0.1" = { 2096 - name = "commondir"; 2097 - packageName = "commondir"; 2098 - version = "1.0.1"; 2099 - src = fetchurl { 2100 - url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; 2101 - sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; 2102 - }; 2103 - }; 2104 - "compare-func-2.0.0" = { 2105 - name = "compare-func"; 2106 - packageName = "compare-func"; 2107 - version = "2.0.0"; 2108 - src = fetchurl { 2109 - url = "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz"; 2110 - sha512 = "zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA=="; 2111 - }; 2112 - }; 2113 - "component-emitter-1.3.0" = { 2114 - name = "component-emitter"; 2115 - packageName = "component-emitter"; 2116 - version = "1.3.0"; 2117 - src = fetchurl { 2118 - url = "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz"; 2119 - sha512 = "Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg=="; 2120 - }; 2121 - }; 2122 - "concat-map-0.0.1" = { 2123 - name = "concat-map"; 2124 - packageName = "concat-map"; 2125 - version = "0.0.1"; 2126 - src = fetchurl { 2127 - url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 2128 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 2129 - }; 2130 - }; 2131 - "configstore-3.1.5" = { 2132 - name = "configstore"; 2133 - packageName = "configstore"; 2134 - version = "3.1.5"; 2135 - src = fetchurl { 2136 - url = "https://registry.npmjs.org/configstore/-/configstore-3.1.5.tgz"; 2137 - sha512 = "nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA=="; 2138 - }; 2139 - }; 2140 - "conventional-changelog-angular-5.0.13" = { 2141 - name = "conventional-changelog-angular"; 2142 - packageName = "conventional-changelog-angular"; 2143 - version = "5.0.13"; 2144 - src = fetchurl { 2145 - url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz"; 2146 - sha512 = "i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA=="; 2147 - }; 2148 - }; 2149 - "conventional-changelog-conventionalcommits-4.4.0" = { 2150 - name = "conventional-changelog-conventionalcommits"; 2151 - packageName = "conventional-changelog-conventionalcommits"; 2152 - version = "4.4.0"; 2153 - src = fetchurl { 2154 - url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.4.0.tgz"; 2155 - sha512 = "ybvx76jTh08tpaYrYn/yd0uJNLt5yMrb1BphDe4WBredMlvPisvMghfpnJb6RmRNcqXeuhR6LfGZGewbkRm9yA=="; 2156 - }; 2157 - }; 2158 - "conventional-changelog-writer-4.1.0" = { 2159 - name = "conventional-changelog-writer"; 2160 - packageName = "conventional-changelog-writer"; 2161 - version = "4.1.0"; 2162 - src = fetchurl { 2163 - url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.1.0.tgz"; 2164 - sha512 = "WwKcUp7WyXYGQmkLsX4QmU42AZ1lqlvRW9mqoyiQzdD+rJWbTepdWoKJuwXTS+yq79XKnQNa93/roViPQrAQgw=="; 2165 - }; 2166 - }; 2167 - "conventional-commit-types-2.3.0" = { 2168 - name = "conventional-commit-types"; 2169 - packageName = "conventional-commit-types"; 2170 - version = "2.3.0"; 2171 - src = fetchurl { 2172 - url = "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-2.3.0.tgz"; 2173 - sha512 = "6iB39PrcGYdz0n3z31kj6/Km6mK9hm9oMRhwcLnKxE7WNoeRKZbTAobliKrbYZ5jqyCvtcVEfjCiaEzhL3AVmQ=="; 2174 - }; 2175 - }; 2176 - "conventional-commit-types-3.0.0" = { 2177 - name = "conventional-commit-types"; 2178 - packageName = "conventional-commit-types"; 2179 - version = "3.0.0"; 2180 - src = fetchurl { 2181 - url = "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz"; 2182 - sha512 = "SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg=="; 2183 - }; 2184 - }; 2185 - "conventional-commits-filter-2.0.7" = { 2186 - name = "conventional-commits-filter"; 2187 - packageName = "conventional-commits-filter"; 2188 - version = "2.0.7"; 2189 - src = fetchurl { 2190 - url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz"; 2191 - sha512 = "ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA=="; 2192 - }; 2193 - }; 2194 - "conventional-commits-parser-3.2.2" = { 2195 - name = "conventional-commits-parser"; 2196 - packageName = "conventional-commits-parser"; 2197 - version = "3.2.2"; 2198 - src = fetchurl { 2199 - url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.2.tgz"; 2200 - sha512 = "Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g=="; 2201 - }; 2202 - }; 2203 - "convert-source-map-1.8.0" = { 2204 - name = "convert-source-map"; 2205 - packageName = "convert-source-map"; 2206 - version = "1.8.0"; 2207 - src = fetchurl { 2208 - url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz"; 2209 - sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2210 - }; 2211 - }; 2212 - "copy-descriptor-0.1.1" = { 2213 - name = "copy-descriptor"; 2214 - packageName = "copy-descriptor"; 2215 - version = "0.1.1"; 2216 - src = fetchurl { 2217 - url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 2218 - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 2219 - }; 2220 - }; 2221 - "core-js-compat-3.18.3" = { 2222 - name = "core-js-compat"; 2223 - packageName = "core-js-compat"; 2224 - version = "3.18.3"; 2225 - src = fetchurl { 2226 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz"; 2227 - sha512 = "4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw=="; 2228 - }; 2229 - }; 2230 - "core-util-is-1.0.3" = { 2231 - name = "core-util-is"; 2232 - packageName = "core-util-is"; 2233 - version = "1.0.3"; 2234 - src = fetchurl { 2235 - url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz"; 2236 - sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ=="; 2237 - }; 2238 - }; 2239 - "cosmiconfig-6.0.0" = { 2240 - name = "cosmiconfig"; 2241 - packageName = "cosmiconfig"; 2242 - version = "6.0.0"; 2243 - src = fetchurl { 2244 - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz"; 2245 - sha512 = "xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg=="; 2246 - }; 2247 - }; 2248 - "cosmiconfig-7.0.1" = { 2249 - name = "cosmiconfig"; 2250 - packageName = "cosmiconfig"; 2251 - version = "7.0.1"; 2252 - src = fetchurl { 2253 - url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz"; 2254 - sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ=="; 2255 - }; 2256 - }; 2257 - "create-error-class-3.0.2" = { 2258 - name = "create-error-class"; 2259 - packageName = "create-error-class"; 2260 - version = "3.0.2"; 2261 - src = fetchurl { 2262 - url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz"; 2263 - sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6"; 2264 - }; 2265 - }; 2266 - "create-require-1.1.1" = { 2267 - name = "create-require"; 2268 - packageName = "create-require"; 2269 - version = "1.1.1"; 2270 - src = fetchurl { 2271 - url = "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz"; 2272 - sha512 = "dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ=="; 2273 - }; 2274 - }; 2275 - "cross-spawn-5.1.0" = { 2276 - name = "cross-spawn"; 2277 - packageName = "cross-spawn"; 2278 - version = "5.1.0"; 2279 - src = fetchurl { 2280 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz"; 2281 - sha1 = "e8bd0efee58fcff6f8f94510a0a554bbfa235449"; 2282 - }; 2283 - }; 2284 - "cross-spawn-6.0.5" = { 2285 - name = "cross-spawn"; 2286 - packageName = "cross-spawn"; 2287 - version = "6.0.5"; 2288 - src = fetchurl { 2289 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz"; 2290 - sha512 = "eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ=="; 2291 - }; 2292 - }; 2293 - "cross-spawn-7.0.3" = { 2294 - name = "cross-spawn"; 2295 - packageName = "cross-spawn"; 2296 - version = "7.0.3"; 2297 - src = fetchurl { 2298 - url = "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz"; 2299 - sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w=="; 2300 - }; 2301 - }; 2302 - "crypt-0.0.2" = { 2303 - name = "crypt"; 2304 - packageName = "crypt"; 2305 - version = "0.0.2"; 2306 - src = fetchurl { 2307 - url = "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"; 2308 - sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"; 2309 - }; 2310 - }; 2311 - "cryptiles-0.2.2" = { 2312 - name = "cryptiles"; 2313 - packageName = "cryptiles"; 2314 - version = "0.2.2"; 2315 - src = fetchurl { 2316 - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-0.2.2.tgz"; 2317 - sha1 = "ed91ff1f17ad13d3748288594f8a48a0d26f325c"; 2318 - }; 2319 - }; 2320 - "crypto-random-string-1.0.0" = { 2321 - name = "crypto-random-string"; 2322 - packageName = "crypto-random-string"; 2323 - version = "1.0.0"; 2324 - src = fetchurl { 2325 - url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz"; 2326 - sha1 = "a230f64f568310e1498009940790ec99545bca7e"; 2327 - }; 2328 - }; 2329 - "ctype-0.5.3" = { 2330 - name = "ctype"; 2331 - packageName = "ctype"; 2332 - version = "0.5.3"; 2333 - src = fetchurl { 2334 - url = "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz"; 2335 - sha1 = "82c18c2461f74114ef16c135224ad0b9144ca12f"; 2336 - }; 2337 - }; 2338 - "cz-conventional-changelog-3.2.0" = { 2339 - name = "cz-conventional-changelog"; 2340 - packageName = "cz-conventional-changelog"; 2341 - version = "3.2.0"; 2342 - src = fetchurl { 2343 - url = "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.2.0.tgz"; 2344 - sha512 = "yAYxeGpVi27hqIilG1nh4A9Bnx4J3Ov+eXy4koL3drrR+IO9GaWPsKjik20ht608Asqi8TQPf0mczhEeyAtMzg=="; 2345 - }; 2346 - }; 2347 - "cz-conventional-changelog-default-export-0.0.0-semantically-released.1" = { 2348 - name = "cz-conventional-changelog-default-export"; 2349 - packageName = "cz-conventional-changelog-default-export"; 2350 - version = "0.0.0-semantically-released.1"; 2351 - src = fetchurl { 2352 - url = "https://registry.npmjs.org/cz-conventional-changelog-default-export/-/cz-conventional-changelog-default-export-0.0.0-semantically-released.1.tgz"; 2353 - sha1 = "522fbf6a54110d34152636cb5e7476899d68cd46"; 2354 - }; 2355 - }; 2356 - "dateformat-3.0.3" = { 2357 - name = "dateformat"; 2358 - packageName = "dateformat"; 2359 - version = "3.0.3"; 2360 - src = fetchurl { 2361 - url = "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz"; 2362 - sha512 = "jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q=="; 2363 - }; 2364 - }; 2365 - "debug-2.6.9" = { 2366 - name = "debug"; 2367 - packageName = "debug"; 2368 - version = "2.6.9"; 2369 - src = fetchurl { 2370 - url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2371 - sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2372 - }; 2373 - }; 2374 - "debug-3.1.0" = { 2375 - name = "debug"; 2376 - packageName = "debug"; 2377 - version = "3.1.0"; 2378 - src = fetchurl { 2379 - url = "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz"; 2380 - sha512 = "OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g=="; 2381 - }; 2382 - }; 2383 - "debug-3.2.6" = { 2384 - name = "debug"; 2385 - packageName = "debug"; 2386 - version = "3.2.6"; 2387 - src = fetchurl { 2388 - url = "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz"; 2389 - sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ=="; 2390 - }; 2391 - }; 2392 - "debug-3.2.7" = { 2393 - name = "debug"; 2394 - packageName = "debug"; 2395 - version = "3.2.7"; 2396 - src = fetchurl { 2397 - url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz"; 2398 - sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 2399 - }; 2400 - }; 2401 - "debug-4.3.2" = { 2402 - name = "debug"; 2403 - packageName = "debug"; 2404 - version = "4.3.2"; 2405 - src = fetchurl { 2406 - url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz"; 2407 - sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw=="; 2408 - }; 2409 - }; 2410 - "decamelize-1.2.0" = { 2411 - name = "decamelize"; 2412 - packageName = "decamelize"; 2413 - version = "1.2.0"; 2414 - src = fetchurl { 2415 - url = "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz"; 2416 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 2417 - }; 2418 - }; 2419 - "decamelize-keys-1.1.0" = { 2420 - name = "decamelize-keys"; 2421 - packageName = "decamelize-keys"; 2422 - version = "1.1.0"; 2423 - src = fetchurl { 2424 - url = "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz"; 2425 - sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9"; 2426 - }; 2427 - }; 2428 - "decode-uri-component-0.2.0" = { 2429 - name = "decode-uri-component"; 2430 - packageName = "decode-uri-component"; 2431 - version = "0.2.0"; 2432 - src = fetchurl { 2433 - url = "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz"; 2434 - sha1 = "eb3913333458775cb84cd1a1fae062106bb87545"; 2435 - }; 2436 - }; 2437 - "dedent-0.7.0" = { 2438 - name = "dedent"; 2439 - packageName = "dedent"; 2440 - version = "0.7.0"; 2441 - src = fetchurl { 2442 - url = "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz"; 2443 - sha1 = "2495ddbaf6eb874abb0e1be9df22d2e5a544326c"; 2444 - }; 2445 - }; 2446 - "deep-eql-3.0.1" = { 2447 - name = "deep-eql"; 2448 - packageName = "deep-eql"; 2449 - version = "3.0.1"; 2450 - src = fetchurl { 2451 - url = "https://registry.npmjs.org/deep-eql/-/deep-eql-3.0.1.tgz"; 2452 - sha512 = "+QeIQyN5ZuO+3Uk5DYh6/1eKO0m0YmJFGNmFHGACpf1ClL1nmlV/p4gNgbl2pJGxgXb4faqo6UE+M5ACEMyVcw=="; 2453 - }; 2454 - }; 2455 - "deep-equal-0.1.2" = { 2456 - name = "deep-equal"; 2457 - packageName = "deep-equal"; 2458 - version = "0.1.2"; 2459 - src = fetchurl { 2460 - url = "https://registry.npmjs.org/deep-equal/-/deep-equal-0.1.2.tgz"; 2461 - sha1 = "b246c2b80a570a47c11be1d9bd1070ec878b87ce"; 2462 - }; 2463 - }; 2464 - "deep-extend-0.6.0" = { 2465 - name = "deep-extend"; 2466 - packageName = "deep-extend"; 2467 - version = "0.6.0"; 2468 - src = fetchurl { 2469 - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; 2470 - sha512 = "LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA=="; 2471 - }; 2472 - }; 2473 - "default-require-extensions-3.0.0" = { 2474 - name = "default-require-extensions"; 2475 - packageName = "default-require-extensions"; 2476 - version = "3.0.0"; 2477 - src = fetchurl { 2478 - url = "https://registry.npmjs.org/default-require-extensions/-/default-require-extensions-3.0.0.tgz"; 2479 - sha512 = "ek6DpXq/SCpvjhpFsLFRVtIxJCRw6fUR42lYMVZuUMK7n8eMz4Uh5clckdBjEpLhn/gEBZo7hDJnJcwdKLKQjg=="; 2480 - }; 2481 - }; 2482 - "define-properties-1.1.3" = { 2483 - name = "define-properties"; 2484 - packageName = "define-properties"; 2485 - version = "1.1.3"; 2486 - src = fetchurl { 2487 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; 2488 - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; 2489 - }; 2490 - }; 2491 - "define-property-0.2.5" = { 2492 - name = "define-property"; 2493 - packageName = "define-property"; 2494 - version = "0.2.5"; 2495 - src = fetchurl { 2496 - url = "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz"; 2497 - sha1 = "c35b1ef918ec3c990f9a5bc57be04aacec5c8116"; 2498 - }; 2499 - }; 2500 - "define-property-1.0.0" = { 2501 - name = "define-property"; 2502 - packageName = "define-property"; 2503 - version = "1.0.0"; 2504 - src = fetchurl { 2505 - url = "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz"; 2506 - sha1 = "769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"; 2507 - }; 2508 - }; 2509 - "define-property-2.0.2" = { 2510 - name = "define-property"; 2511 - packageName = "define-property"; 2512 - version = "2.0.2"; 2513 - src = fetchurl { 2514 - url = "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz"; 2515 - sha512 = "jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ=="; 2516 - }; 2517 - }; 2518 - "defined-0.0.0" = { 2519 - name = "defined"; 2520 - packageName = "defined"; 2521 - version = "0.0.0"; 2522 - src = fetchurl { 2523 - url = "https://registry.npmjs.org/defined/-/defined-0.0.0.tgz"; 2524 - sha1 = "f35eea7d705e933baf13b2f03b3f83d921403b3e"; 2525 - }; 2526 - }; 2527 - "delayed-stream-0.0.5" = { 2528 - name = "delayed-stream"; 2529 - packageName = "delayed-stream"; 2530 - version = "0.0.5"; 2531 - src = fetchurl { 2532 - url = "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz"; 2533 - sha1 = "d4b1f43a93e8296dfe02694f4680bc37a313c73f"; 2534 - }; 2535 - }; 2536 - "deprecation-2.3.1" = { 2537 - name = "deprecation"; 2538 - packageName = "deprecation"; 2539 - version = "2.3.1"; 2540 - src = fetchurl { 2541 - url = "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz"; 2542 - sha512 = "xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ=="; 2543 - }; 2544 - }; 2545 - "detect-file-1.0.0" = { 2546 - name = "detect-file"; 2547 - packageName = "detect-file"; 2548 - version = "1.0.0"; 2549 - src = fetchurl { 2550 - url = "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz"; 2551 - sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; 2552 - }; 2553 - }; 2554 - "detect-indent-6.0.0" = { 2555 - name = "detect-indent"; 2556 - packageName = "detect-indent"; 2557 - version = "6.0.0"; 2558 - src = fetchurl { 2559 - url = "https://registry.npmjs.org/detect-indent/-/detect-indent-6.0.0.tgz"; 2560 - sha512 = "oSyFlqaTHCItVRGK5RmrmjB+CmaMOW7IaNA/kdxqhoa6d17j/5ce9O9eWXmV/KEdRwqpQA+Vqe8a8Bsybu4YnA=="; 2561 - }; 2562 - }; 2563 - "diff-3.5.0" = { 2564 - name = "diff"; 2565 - packageName = "diff"; 2566 - version = "3.5.0"; 2567 - src = fetchurl { 2568 - url = "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz"; 2569 - sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA=="; 2570 - }; 2571 - }; 2572 - "diff-4.0.2" = { 2573 - name = "diff"; 2574 - packageName = "diff"; 2575 - version = "4.0.2"; 2576 - src = fetchurl { 2577 - url = "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz"; 2578 - sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A=="; 2579 - }; 2580 - }; 2581 - "dir-glob-3.0.1" = { 2582 - name = "dir-glob"; 2583 - packageName = "dir-glob"; 2584 - version = "3.0.1"; 2585 - src = fetchurl { 2586 - url = "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz"; 2587 - sha512 = "WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA=="; 2588 - }; 2589 - }; 2590 - "dot-prop-4.2.1" = { 2591 - name = "dot-prop"; 2592 - packageName = "dot-prop"; 2593 - version = "4.2.1"; 2594 - src = fetchurl { 2595 - url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.2.1.tgz"; 2596 - sha512 = "l0p4+mIuJIua0mhxGoh4a+iNL9bmeK5DvnSVQa6T0OhrVmaEa1XScX5Etc673FePCJOArq/4Pa2cLGODUWTPOQ=="; 2597 - }; 2598 - }; 2599 - "dot-prop-5.3.0" = { 2600 - name = "dot-prop"; 2601 - packageName = "dot-prop"; 2602 - version = "5.3.0"; 2603 - src = fetchurl { 2604 - url = "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz"; 2605 - sha512 = "QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q=="; 2606 - }; 2607 - }; 2608 - "duplexer-0.1.2" = { 2609 - name = "duplexer"; 2610 - packageName = "duplexer"; 2611 - version = "0.1.2"; 2612 - src = fetchurl { 2613 - url = "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz"; 2614 - sha512 = "jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg=="; 2615 - }; 2616 - }; 2617 - "duplexer2-0.1.4" = { 2618 - name = "duplexer2"; 2619 - packageName = "duplexer2"; 2620 - version = "0.1.4"; 2621 - src = fetchurl { 2622 - url = "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz"; 2623 - sha1 = "8b12dab878c0d69e3e7891051662a32fc6bddcc1"; 2624 - }; 2625 - }; 2626 - "duplexer3-0.1.4" = { 2627 - name = "duplexer3"; 2628 - packageName = "duplexer3"; 2629 - version = "0.1.4"; 2630 - src = fetchurl { 2631 - url = "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz"; 2632 - sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"; 2633 - }; 2634 - }; 2635 - "electron-to-chromium-1.3.873" = { 2636 - name = "electron-to-chromium"; 2637 - packageName = "electron-to-chromium"; 2638 - version = "1.3.873"; 2639 - src = fetchurl { 2640 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.873.tgz"; 2641 - sha512 = "TiHlCgl2uP26Z0c67u442c0a2MZCWZNCRnPTQDPhVJ4h9G6z2zU0lApD9H0K9R5yFL5SfdaiVsVD2izOY24xBQ=="; 2642 - }; 2643 - }; 2644 - "emoji-regex-7.0.3" = { 2645 - name = "emoji-regex"; 2646 - packageName = "emoji-regex"; 2647 - version = "7.0.3"; 2648 - src = fetchurl { 2649 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 2650 - sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 2651 - }; 2652 - }; 2653 - "emoji-regex-8.0.0" = { 2654 - name = "emoji-regex"; 2655 - packageName = "emoji-regex"; 2656 - version = "8.0.0"; 2657 - src = fetchurl { 2658 - url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz"; 2659 - sha512 = "MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A=="; 2660 - }; 2661 - }; 2662 - "end-of-stream-1.4.4" = { 2663 - name = "end-of-stream"; 2664 - packageName = "end-of-stream"; 2665 - version = "1.4.4"; 2666 - src = fetchurl { 2667 - url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz"; 2668 - sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 2669 - }; 2670 - }; 2671 - "env-ci-4.5.2" = { 2672 - name = "env-ci"; 2673 - packageName = "env-ci"; 2674 - version = "4.5.2"; 2675 - src = fetchurl { 2676 - url = "https://registry.npmjs.org/env-ci/-/env-ci-4.5.2.tgz"; 2677 - sha512 = "lS+edpNp2+QXEPkx6raEMIjKxKKWnJ4+VWzovYJ2NLYiJAYenSAXotFfVdgaFxdbVnvAbUI8epQDa1u12ERxfQ=="; 2678 - }; 2679 - }; 2680 - "error-ex-1.3.2" = { 2681 - name = "error-ex"; 2682 - packageName = "error-ex"; 2683 - version = "1.3.2"; 2684 - src = fetchurl { 2685 - url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz"; 2686 - sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 2687 - }; 2688 - }; 2689 - "es-abstract-1.19.1" = { 2690 - name = "es-abstract"; 2691 - packageName = "es-abstract"; 2692 - version = "1.19.1"; 2693 - src = fetchurl { 2694 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz"; 2695 - sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; 2696 - }; 2697 - }; 2698 - "es-to-primitive-1.2.1" = { 2699 - name = "es-to-primitive"; 2700 - packageName = "es-to-primitive"; 2701 - version = "1.2.1"; 2702 - src = fetchurl { 2703 - url = "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz"; 2704 - sha512 = "QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA=="; 2705 - }; 2706 - }; 2707 - "es6-error-4.1.1" = { 2708 - name = "es6-error"; 2709 - packageName = "es6-error"; 2710 - version = "4.1.1"; 2711 - src = fetchurl { 2712 - url = "https://registry.npmjs.org/es6-error/-/es6-error-4.1.1.tgz"; 2713 - sha512 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg=="; 2714 - }; 2715 - }; 2716 - "escalade-3.1.1" = { 2717 - name = "escalade"; 2718 - packageName = "escalade"; 2719 - version = "3.1.1"; 2720 - src = fetchurl { 2721 - url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz"; 2722 - sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw=="; 2723 - }; 2724 - }; 2725 - "escape-string-regexp-1.0.5" = { 2726 - name = "escape-string-regexp"; 2727 - packageName = "escape-string-regexp"; 2728 - version = "1.0.5"; 2729 - src = fetchurl { 2730 - url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 2731 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 2732 - }; 2733 - }; 2734 - "esprima-4.0.1" = { 2735 - name = "esprima"; 2736 - packageName = "esprima"; 2737 - version = "4.0.1"; 2738 - src = fetchurl { 2739 - url = "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz"; 2740 - sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 2741 - }; 2742 - }; 2743 - "esutils-2.0.3" = { 2744 - name = "esutils"; 2745 - packageName = "esutils"; 2746 - version = "2.0.3"; 2747 - src = fetchurl { 2748 - url = "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz"; 2749 - sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 2750 - }; 2751 - }; 2752 - "execa-0.7.0" = { 2753 - name = "execa"; 2754 - packageName = "execa"; 2755 - version = "0.7.0"; 2756 - src = fetchurl { 2757 - url = "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz"; 2758 - sha1 = "944becd34cc41ee32a63a9faf27ad5a65fc59777"; 2759 - }; 2760 - }; 2761 - "execa-1.0.0" = { 2762 - name = "execa"; 2763 - packageName = "execa"; 2764 - version = "1.0.0"; 2765 - src = fetchurl { 2766 - url = "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz"; 2767 - sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA=="; 2768 - }; 2769 - }; 2770 - "execa-3.4.0" = { 2771 - name = "execa"; 2772 - packageName = "execa"; 2773 - version = "3.4.0"; 2774 - src = fetchurl { 2775 - url = "https://registry.npmjs.org/execa/-/execa-3.4.0.tgz"; 2776 - sha512 = "r9vdGQk4bmCuK1yKQu1KTwcT2zwfWdbdaXfCtAh+5nU/4fSX+JAb7vZGvI5naJrQlvONrEB20jeruESI69530g=="; 2777 - }; 2778 - }; 2779 - "expand-brackets-2.1.4" = { 2780 - name = "expand-brackets"; 2781 - packageName = "expand-brackets"; 2782 - version = "2.1.4"; 2783 - src = fetchurl { 2784 - url = "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz"; 2785 - sha1 = "b77735e315ce30f6b6eff0f83b04151a22449622"; 2786 - }; 2787 - }; 2788 - "expand-tilde-2.0.2" = { 2789 - name = "expand-tilde"; 2790 - packageName = "expand-tilde"; 2791 - version = "2.0.2"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz"; 2794 - sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; 2795 - }; 2796 - }; 2797 - "extend-shallow-2.0.1" = { 2798 - name = "extend-shallow"; 2799 - packageName = "extend-shallow"; 2800 - version = "2.0.1"; 2801 - src = fetchurl { 2802 - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz"; 2803 - sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f"; 2804 - }; 2805 - }; 2806 - "extend-shallow-3.0.2" = { 2807 - name = "extend-shallow"; 2808 - packageName = "extend-shallow"; 2809 - version = "3.0.2"; 2810 - src = fetchurl { 2811 - url = "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz"; 2812 - sha1 = "26a71aaf073b39fb2127172746131c2704028db8"; 2813 - }; 2814 - }; 2815 - "external-editor-3.1.0" = { 2816 - name = "external-editor"; 2817 - packageName = "external-editor"; 2818 - version = "3.1.0"; 2819 - src = fetchurl { 2820 - url = "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz"; 2821 - sha512 = "hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew=="; 2822 - }; 2823 - }; 2824 - "extglob-2.0.4" = { 2825 - name = "extglob"; 2826 - packageName = "extglob"; 2827 - version = "2.0.4"; 2828 - src = fetchurl { 2829 - url = "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz"; 2830 - sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw=="; 2831 - }; 2832 - }; 2833 - "fast-glob-3.2.7" = { 2834 - name = "fast-glob"; 2835 - packageName = "fast-glob"; 2836 - version = "3.2.7"; 2837 - src = fetchurl { 2838 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz"; 2839 - sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q=="; 2840 - }; 2841 - }; 2842 - "fastq-1.13.0" = { 2843 - name = "fastq"; 2844 - packageName = "fastq"; 2845 - version = "1.13.0"; 2846 - src = fetchurl { 2847 - url = "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz"; 2848 - sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw=="; 2849 - }; 2850 - }; 2851 - "figures-2.0.0" = { 2852 - name = "figures"; 2853 - packageName = "figures"; 2854 - version = "2.0.0"; 2855 - src = fetchurl { 2856 - url = "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz"; 2857 - sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; 2858 - }; 2859 - }; 2860 - "figures-3.2.0" = { 2861 - name = "figures"; 2862 - packageName = "figures"; 2863 - version = "3.2.0"; 2864 - src = fetchurl { 2865 - url = "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz"; 2866 - sha512 = "yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg=="; 2867 - }; 2868 - }; 2869 - "file-uri-to-path-1.0.0" = { 2870 - name = "file-uri-to-path"; 2871 - packageName = "file-uri-to-path"; 2872 - version = "1.0.0"; 2873 - src = fetchurl { 2874 - url = "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 2875 - sha512 = "0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw=="; 2876 - }; 2877 - }; 2878 - "fill-keys-1.0.2" = { 2879 - name = "fill-keys"; 2880 - packageName = "fill-keys"; 2881 - version = "1.0.2"; 2882 - src = fetchurl { 2883 - url = "https://registry.npmjs.org/fill-keys/-/fill-keys-1.0.2.tgz"; 2884 - sha1 = "9a8fa36f4e8ad634e3bf6b4f3c8882551452eb20"; 2885 - }; 2886 - }; 2887 - "fill-range-4.0.0" = { 2888 - name = "fill-range"; 2889 - packageName = "fill-range"; 2890 - version = "4.0.0"; 2891 - src = fetchurl { 2892 - url = "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz"; 2893 - sha1 = "d544811d428f98eb06a63dc402d2403c328c38f7"; 2894 - }; 2895 - }; 2896 - "fill-range-7.0.1" = { 2897 - name = "fill-range"; 2898 - packageName = "fill-range"; 2899 - version = "7.0.1"; 2900 - src = fetchurl { 2901 - url = "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz"; 2902 - sha512 = "qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ=="; 2903 - }; 2904 - }; 2905 - "find-cache-dir-2.1.0" = { 2906 - name = "find-cache-dir"; 2907 - packageName = "find-cache-dir"; 2908 - version = "2.1.0"; 2909 - src = fetchurl { 2910 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz"; 2911 - sha512 = "Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ=="; 2912 - }; 2913 - }; 2914 - "find-cache-dir-3.3.2" = { 2915 - name = "find-cache-dir"; 2916 - packageName = "find-cache-dir"; 2917 - version = "3.3.2"; 2918 - src = fetchurl { 2919 - url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz"; 2920 - sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig=="; 2921 - }; 2922 - }; 2923 - "find-node-modules-2.1.2" = { 2924 - name = "find-node-modules"; 2925 - packageName = "find-node-modules"; 2926 - version = "2.1.2"; 2927 - src = fetchurl { 2928 - url = "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.2.tgz"; 2929 - sha512 = "x+3P4mbtRPlSiVE1Qco0Z4YLU8WFiFcuWTf3m75OV9Uzcfs2Bg+O9N+r/K0AnmINBW06KpfqKwYJbFlFq4qNug=="; 2930 - }; 2931 - }; 2932 - "find-root-1.1.0" = { 2933 - name = "find-root"; 2934 - packageName = "find-root"; 2935 - version = "1.1.0"; 2936 - src = fetchurl { 2937 - url = "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz"; 2938 - sha512 = "NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng=="; 2939 - }; 2940 - }; 2941 - "find-up-2.1.0" = { 2942 - name = "find-up"; 2943 - packageName = "find-up"; 2944 - version = "2.1.0"; 2945 - src = fetchurl { 2946 - url = "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz"; 2947 - sha1 = "45d1b7e506c717ddd482775a2b77920a3c0c57a7"; 2948 - }; 2949 - }; 2950 - "find-up-3.0.0" = { 2951 - name = "find-up"; 2952 - packageName = "find-up"; 2953 - version = "3.0.0"; 2954 - src = fetchurl { 2955 - url = "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz"; 2956 - sha512 = "1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg=="; 2957 - }; 2958 - }; 2959 - "find-up-4.1.0" = { 2960 - name = "find-up"; 2961 - packageName = "find-up"; 2962 - version = "4.1.0"; 2963 - src = fetchurl { 2964 - url = "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz"; 2965 - sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 2966 - }; 2967 - }; 2968 - "find-versions-3.2.0" = { 2969 - name = "find-versions"; 2970 - packageName = "find-versions"; 2971 - version = "3.2.0"; 2972 - src = fetchurl { 2973 - url = "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz"; 2974 - sha512 = "P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww=="; 2975 - }; 2976 - }; 2977 - "findup-0.1.5" = { 2978 - name = "findup"; 2979 - packageName = "findup"; 2980 - version = "0.1.5"; 2981 - src = fetchurl { 2982 - url = "https://registry.npmjs.org/findup/-/findup-0.1.5.tgz"; 2983 - sha1 = "8ad929a3393bac627957a7e5de4623b06b0e2ceb"; 2984 - }; 2985 - }; 2986 - "findup-sync-4.0.0" = { 2987 - name = "findup-sync"; 2988 - packageName = "findup-sync"; 2989 - version = "4.0.0"; 2990 - src = fetchurl { 2991 - url = "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz"; 2992 - sha512 = "6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ=="; 2993 - }; 2994 - }; 2995 - "flat-4.1.1" = { 2996 - name = "flat"; 2997 - packageName = "flat"; 2998 - version = "4.1.1"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz"; 3001 - sha512 = "FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA=="; 3002 - }; 3003 - }; 3004 - "follow-redirects-1.5.10" = { 3005 - name = "follow-redirects"; 3006 - packageName = "follow-redirects"; 3007 - version = "1.5.10"; 3008 - src = fetchurl { 3009 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz"; 3010 - sha512 = "0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ=="; 3011 - }; 3012 - }; 3013 - "for-in-1.0.2" = { 3014 - name = "for-in"; 3015 - packageName = "for-in"; 3016 - version = "1.0.2"; 3017 - src = fetchurl { 3018 - url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz"; 3019 - sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80"; 3020 - }; 3021 - }; 3022 - "foreground-child-2.0.0" = { 3023 - name = "foreground-child"; 3024 - packageName = "foreground-child"; 3025 - version = "2.0.0"; 3026 - src = fetchurl { 3027 - url = "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz"; 3028 - sha512 = "dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA=="; 3029 - }; 3030 - }; 3031 - "forever-agent-0.5.2" = { 3032 - name = "forever-agent"; 3033 - packageName = "forever-agent"; 3034 - version = "0.5.2"; 3035 - src = fetchurl { 3036 - url = "https://registry.npmjs.org/forever-agent/-/forever-agent-0.5.2.tgz"; 3037 - sha1 = "6d0e09c4921f94a27f63d3b49c5feff1ea4c5130"; 3038 - }; 3039 - }; 3040 - "form-data-0.1.4" = { 3041 - name = "form-data"; 3042 - packageName = "form-data"; 3043 - version = "0.1.4"; 3044 - src = fetchurl { 3045 - url = "https://registry.npmjs.org/form-data/-/form-data-0.1.4.tgz"; 3046 - sha1 = "91abd788aba9702b1aabfa8bc01031a2ac9e3b12"; 3047 - }; 3048 - }; 3049 - "fragment-cache-0.2.1" = { 3050 - name = "fragment-cache"; 3051 - packageName = "fragment-cache"; 3052 - version = "0.2.1"; 3053 - src = fetchurl { 3054 - url = "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz"; 3055 - sha1 = "4290fad27f13e89be7f33799c6bc5a0abfff0d19"; 3056 - }; 3057 - }; 3058 - "from2-2.3.0" = { 3059 - name = "from2"; 3060 - packageName = "from2"; 3061 - version = "2.3.0"; 3062 - src = fetchurl { 3063 - url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz"; 3064 - sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; 3065 - }; 3066 - }; 3067 - "fromentries-1.3.2" = { 3068 - name = "fromentries"; 3069 - packageName = "fromentries"; 3070 - version = "1.3.2"; 3071 - src = fetchurl { 3072 - url = "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz"; 3073 - sha512 = "cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg=="; 3074 - }; 3075 - }; 3076 - "fs-extra-8.1.0" = { 3077 - name = "fs-extra"; 3078 - packageName = "fs-extra"; 3079 - version = "8.1.0"; 3080 - src = fetchurl { 3081 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz"; 3082 - sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g=="; 3083 - }; 3084 - }; 3085 - "fs-readdir-recursive-1.1.0" = { 3086 - name = "fs-readdir-recursive"; 3087 - packageName = "fs-readdir-recursive"; 3088 - version = "1.1.0"; 3089 - src = fetchurl { 3090 - url = "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"; 3091 - sha512 = "GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA=="; 3092 - }; 3093 - }; 3094 - "fs.realpath-1.0.0" = { 3095 - name = "fs.realpath"; 3096 - packageName = "fs.realpath"; 3097 - version = "1.0.0"; 3098 - src = fetchurl { 3099 - url = "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"; 3100 - sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 3101 - }; 3102 - }; 3103 - "fsevents-1.2.13" = { 3104 - name = "fsevents"; 3105 - packageName = "fsevents"; 3106 - version = "1.2.13"; 3107 - src = fetchurl { 3108 - url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"; 3109 - sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="; 3110 - }; 3111 - }; 3112 - "function-bind-1.1.1" = { 3113 - name = "function-bind"; 3114 - packageName = "function-bind"; 3115 - version = "1.1.1"; 3116 - src = fetchurl { 3117 - url = "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz"; 3118 - sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="; 3119 - }; 3120 - }; 3121 - "gensync-1.0.0-beta.2" = { 3122 - name = "gensync"; 3123 - packageName = "gensync"; 3124 - version = "1.0.0-beta.2"; 3125 - src = fetchurl { 3126 - url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz"; 3127 - sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg=="; 3128 - }; 3129 - }; 3130 - "get-caller-file-1.0.3" = { 3131 - name = "get-caller-file"; 3132 - packageName = "get-caller-file"; 3133 - version = "1.0.3"; 3134 - src = fetchurl { 3135 - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz"; 3136 - sha512 = "3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w=="; 3137 - }; 3138 - }; 3139 - "get-caller-file-2.0.5" = { 3140 - name = "get-caller-file"; 3141 - packageName = "get-caller-file"; 3142 - version = "2.0.5"; 3143 - src = fetchurl { 3144 - url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz"; 3145 - sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3146 - }; 3147 - }; 3148 - "get-func-name-2.0.0" = { 3149 - name = "get-func-name"; 3150 - packageName = "get-func-name"; 3151 - version = "2.0.0"; 3152 - src = fetchurl { 3153 - url = "https://registry.npmjs.org/get-func-name/-/get-func-name-2.0.0.tgz"; 3154 - sha1 = "ead774abee72e20409433a066366023dd6887a41"; 3155 - }; 3156 - }; 3157 - "get-intrinsic-1.1.1" = { 3158 - name = "get-intrinsic"; 3159 - packageName = "get-intrinsic"; 3160 - version = "1.1.1"; 3161 - src = fetchurl { 3162 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; 3163 - sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; 3164 - }; 3165 - }; 3166 - "get-package-type-0.1.0" = { 3167 - name = "get-package-type"; 3168 - packageName = "get-package-type"; 3169 - version = "0.1.0"; 3170 - src = fetchurl { 3171 - url = "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz"; 3172 - sha512 = "pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q=="; 3173 - }; 3174 - }; 3175 - "get-stream-3.0.0" = { 3176 - name = "get-stream"; 3177 - packageName = "get-stream"; 3178 - version = "3.0.0"; 3179 - src = fetchurl { 3180 - url = "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz"; 3181 - sha1 = "8e943d1358dc37555054ecbe2edb05aa174ede14"; 3182 - }; 3183 - }; 3184 - "get-stream-4.1.0" = { 3185 - name = "get-stream"; 3186 - packageName = "get-stream"; 3187 - version = "4.1.0"; 3188 - src = fetchurl { 3189 - url = "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz"; 3190 - sha512 = "GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w=="; 3191 - }; 3192 - }; 3193 - "get-stream-5.2.0" = { 3194 - name = "get-stream"; 3195 - packageName = "get-stream"; 3196 - version = "5.2.0"; 3197 - src = fetchurl { 3198 - url = "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz"; 3199 - sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA=="; 3200 - }; 3201 - }; 3202 - "get-symbol-description-1.0.0" = { 3203 - name = "get-symbol-description"; 3204 - packageName = "get-symbol-description"; 3205 - version = "1.0.0"; 3206 - src = fetchurl { 3207 - url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz"; 3208 - sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw=="; 3209 - }; 3210 - }; 3211 - "get-value-2.0.6" = { 3212 - name = "get-value"; 3213 - packageName = "get-value"; 3214 - version = "2.0.6"; 3215 - src = fetchurl { 3216 - url = "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz"; 3217 - sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 3218 - }; 3219 - }; 3220 - "ghooks-2.0.4" = { 3221 - name = "ghooks"; 3222 - packageName = "ghooks"; 3223 - version = "2.0.4"; 3224 - src = fetchurl { 3225 - url = "https://registry.npmjs.org/ghooks/-/ghooks-2.0.4.tgz"; 3226 - sha1 = "fd50e040ff548906ae42cb51793a01bfe24567b9"; 3227 - }; 3228 - }; 3229 - "git-log-parser-1.2.0" = { 3230 - name = "git-log-parser"; 3231 - packageName = "git-log-parser"; 3232 - version = "1.2.0"; 3233 - src = fetchurl { 3234 - url = "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.0.tgz"; 3235 - sha1 = "2e6a4c1b13fc00028207ba795a7ac31667b9fd4a"; 3236 - }; 3237 - }; 3238 - "glob-7.1.3" = { 3239 - name = "glob"; 3240 - packageName = "glob"; 3241 - version = "7.1.3"; 3242 - src = fetchurl { 3243 - url = "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz"; 3244 - sha512 = "vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ=="; 3245 - }; 3246 - }; 3247 - "glob-7.1.4" = { 3248 - name = "glob"; 3249 - packageName = "glob"; 3250 - version = "7.1.4"; 3251 - src = fetchurl { 3252 - url = "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz"; 3253 - sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A=="; 3254 - }; 3255 - }; 3256 - "glob-7.2.0" = { 3257 - name = "glob"; 3258 - packageName = "glob"; 3259 - version = "7.2.0"; 3260 - src = fetchurl { 3261 - url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz"; 3262 - sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q=="; 3263 - }; 3264 - }; 3265 - "glob-parent-3.1.0" = { 3266 - name = "glob-parent"; 3267 - packageName = "glob-parent"; 3268 - version = "3.1.0"; 3269 - src = fetchurl { 3270 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz"; 3271 - sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; 3272 - }; 3273 - }; 3274 - "glob-parent-5.1.2" = { 3275 - name = "glob-parent"; 3276 - packageName = "glob-parent"; 3277 - version = "5.1.2"; 3278 - src = fetchurl { 3279 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 3280 - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 3281 - }; 3282 - }; 3283 - "global-dirs-0.1.1" = { 3284 - name = "global-dirs"; 3285 - packageName = "global-dirs"; 3286 - version = "0.1.1"; 3287 - src = fetchurl { 3288 - url = "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz"; 3289 - sha1 = "b319c0dd4607f353f3be9cca4c72fc148c49f445"; 3290 - }; 3291 - }; 3292 - "global-modules-1.0.0" = { 3293 - name = "global-modules"; 3294 - packageName = "global-modules"; 3295 - version = "1.0.0"; 3296 - src = fetchurl { 3297 - url = "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz"; 3298 - sha512 = "sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg=="; 3299 - }; 3300 - }; 3301 - "global-prefix-1.0.2" = { 3302 - name = "global-prefix"; 3303 - packageName = "global-prefix"; 3304 - version = "1.0.2"; 3305 - src = fetchurl { 3306 - url = "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz"; 3307 - sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; 3308 - }; 3309 - }; 3310 - "globals-11.12.0" = { 3311 - name = "globals"; 3312 - packageName = "globals"; 3313 - version = "11.12.0"; 3314 - src = fetchurl { 3315 - url = "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz"; 3316 - sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 3317 - }; 3318 - }; 3319 - "globby-10.0.2" = { 3320 - name = "globby"; 3321 - packageName = "globby"; 3322 - version = "10.0.2"; 3323 - src = fetchurl { 3324 - url = "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz"; 3325 - sha512 = "7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg=="; 3326 - }; 3327 - }; 3328 - "got-6.7.1" = { 3329 - name = "got"; 3330 - packageName = "got"; 3331 - version = "6.7.1"; 3332 - src = fetchurl { 3333 - url = "https://registry.npmjs.org/got/-/got-6.7.1.tgz"; 3334 - sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0"; 3335 - }; 3336 - }; 3337 - "graceful-fs-4.2.8" = { 3338 - name = "graceful-fs"; 3339 - packageName = "graceful-fs"; 3340 - version = "4.2.8"; 3341 - src = fetchurl { 3342 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 3343 - sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 3344 - }; 3345 - }; 3346 - "graceful-readlink-1.0.1" = { 3347 - name = "graceful-readlink"; 3348 - packageName = "graceful-readlink"; 3349 - version = "1.0.1"; 3350 - src = fetchurl { 3351 - url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz"; 3352 - sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725"; 3353 - }; 3354 - }; 3355 - "growl-1.10.5" = { 3356 - name = "growl"; 3357 - packageName = "growl"; 3358 - version = "1.10.5"; 3359 - src = fetchurl { 3360 - url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; 3361 - sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA=="; 3362 - }; 3363 - }; 3364 - "handlebars-4.7.7" = { 3365 - name = "handlebars"; 3366 - packageName = "handlebars"; 3367 - version = "4.7.7"; 3368 - src = fetchurl { 3369 - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; 3370 - sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; 3371 - }; 3372 - }; 3373 - "hard-rejection-2.1.0" = { 3374 - name = "hard-rejection"; 3375 - packageName = "hard-rejection"; 3376 - version = "2.1.0"; 3377 - src = fetchurl { 3378 - url = "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz"; 3379 - sha512 = "VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA=="; 3380 - }; 3381 - }; 3382 - "has-1.0.3" = { 3383 - name = "has"; 3384 - packageName = "has"; 3385 - version = "1.0.3"; 3386 - src = fetchurl { 3387 - url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 3388 - sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw=="; 3389 - }; 3390 - }; 3391 - "has-bigints-1.0.1" = { 3392 - name = "has-bigints"; 3393 - packageName = "has-bigints"; 3394 - version = "1.0.1"; 3395 - src = fetchurl { 3396 - url = "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz"; 3397 - sha512 = "LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA=="; 3398 - }; 3399 - }; 3400 - "has-flag-2.0.0" = { 3401 - name = "has-flag"; 3402 - packageName = "has-flag"; 3403 - version = "2.0.0"; 3404 - src = fetchurl { 3405 - url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz"; 3406 - sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51"; 3407 - }; 3408 - }; 3409 - "has-flag-3.0.0" = { 3410 - name = "has-flag"; 3411 - packageName = "has-flag"; 3412 - version = "3.0.0"; 3413 - src = fetchurl { 3414 - url = "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz"; 3415 - sha1 = "b5d454dc2199ae225699f3467e5a07f3b955bafd"; 3416 - }; 3417 - }; 3418 - "has-flag-4.0.0" = { 3419 - name = "has-flag"; 3420 - packageName = "has-flag"; 3421 - version = "4.0.0"; 3422 - src = fetchurl { 3423 - url = "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz"; 3424 - sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 3425 - }; 3426 - }; 3427 - "has-symbols-1.0.2" = { 3428 - name = "has-symbols"; 3429 - packageName = "has-symbols"; 3430 - version = "1.0.2"; 3431 - src = fetchurl { 3432 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"; 3433 - sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 3434 - }; 3435 - }; 3436 - "has-tostringtag-1.0.0" = { 3437 - name = "has-tostringtag"; 3438 - packageName = "has-tostringtag"; 3439 - version = "1.0.0"; 3440 - src = fetchurl { 3441 - url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz"; 3442 - sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ=="; 3443 - }; 3444 - }; 3445 - "has-value-0.3.1" = { 3446 - name = "has-value"; 3447 - packageName = "has-value"; 3448 - version = "0.3.1"; 3449 - src = fetchurl { 3450 - url = "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz"; 3451 - sha1 = "7b1f58bada62ca827ec0a2078025654845995e1f"; 3452 - }; 3453 - }; 3454 - "has-value-1.0.0" = { 3455 - name = "has-value"; 3456 - packageName = "has-value"; 3457 - version = "1.0.0"; 3458 - src = fetchurl { 3459 - url = "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz"; 3460 - sha1 = "18b281da585b1c5c51def24c930ed29a0be6b177"; 3461 - }; 3462 - }; 3463 - "has-values-0.1.4" = { 3464 - name = "has-values"; 3465 - packageName = "has-values"; 3466 - version = "0.1.4"; 3467 - src = fetchurl { 3468 - url = "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz"; 3469 - sha1 = "6d61de95d91dfca9b9a02089ad384bff8f62b771"; 3470 - }; 3471 - }; 3472 - "has-values-1.0.0" = { 3473 - name = "has-values"; 3474 - packageName = "has-values"; 3475 - version = "1.0.0"; 3476 - src = fetchurl { 3477 - url = "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz"; 3478 - sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; 3479 - }; 3480 - }; 3481 - "hasha-5.2.2" = { 3482 - name = "hasha"; 3483 - packageName = "hasha"; 3484 - version = "5.2.2"; 3485 - src = fetchurl { 3486 - url = "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz"; 3487 - sha512 = "Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ=="; 3488 - }; 3489 - }; 3490 - "hawk-1.1.1" = { 3491 - name = "hawk"; 3492 - packageName = "hawk"; 3493 - version = "1.1.1"; 3494 - src = fetchurl { 3495 - url = "https://registry.npmjs.org/hawk/-/hawk-1.1.1.tgz"; 3496 - sha1 = "87cd491f9b46e4e2aeaca335416766885d2d1ed9"; 3497 - }; 3498 - }; 3499 - "he-1.2.0" = { 3500 - name = "he"; 3501 - packageName = "he"; 3502 - version = "1.2.0"; 3503 - src = fetchurl { 3504 - url = "https://registry.npmjs.org/he/-/he-1.2.0.tgz"; 3505 - sha512 = "F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw=="; 3506 - }; 3507 - }; 3508 - "hoek-0.9.1" = { 3509 - name = "hoek"; 3510 - packageName = "hoek"; 3511 - version = "0.9.1"; 3512 - src = fetchurl { 3513 - url = "https://registry.npmjs.org/hoek/-/hoek-0.9.1.tgz"; 3514 - sha1 = "3d322462badf07716ea7eb85baf88079cddce505"; 3515 - }; 3516 - }; 3517 - "homedir-polyfill-1.0.3" = { 3518 - name = "homedir-polyfill"; 3519 - packageName = "homedir-polyfill"; 3520 - version = "1.0.3"; 3521 - src = fetchurl { 3522 - url = "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; 3523 - sha512 = "eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA=="; 3524 - }; 3525 - }; 3526 - "hook-std-2.0.0" = { 3527 - name = "hook-std"; 3528 - packageName = "hook-std"; 3529 - version = "2.0.0"; 3530 - src = fetchurl { 3531 - url = "https://registry.npmjs.org/hook-std/-/hook-std-2.0.0.tgz"; 3532 - sha512 = "zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g=="; 3533 - }; 3534 - }; 3535 - "hosted-git-info-2.8.9" = { 3536 - name = "hosted-git-info"; 3537 - packageName = "hosted-git-info"; 3538 - version = "2.8.9"; 3539 - src = fetchurl { 3540 - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz"; 3541 - sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw=="; 3542 - }; 3543 - }; 3544 - "hosted-git-info-3.0.8" = { 3545 - name = "hosted-git-info"; 3546 - packageName = "hosted-git-info"; 3547 - version = "3.0.8"; 3548 - src = fetchurl { 3549 - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz"; 3550 - sha512 = "aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw=="; 3551 - }; 3552 - }; 3553 - "hosted-git-info-4.0.2" = { 3554 - name = "hosted-git-info"; 3555 - packageName = "hosted-git-info"; 3556 - version = "4.0.2"; 3557 - src = fetchurl { 3558 - url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz"; 3559 - sha512 = "c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg=="; 3560 - }; 3561 - }; 3562 - "html-escaper-2.0.2" = { 3563 - name = "html-escaper"; 3564 - packageName = "html-escaper"; 3565 - version = "2.0.2"; 3566 - src = fetchurl { 3567 - url = "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz"; 3568 - sha512 = "H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg=="; 3569 - }; 3570 - }; 3571 - "http-proxy-agent-3.0.0" = { 3572 - name = "http-proxy-agent"; 3573 - packageName = "http-proxy-agent"; 3574 - version = "3.0.0"; 3575 - src = fetchurl { 3576 - url = "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-3.0.0.tgz"; 3577 - sha512 = "uGuJaBWQWDQCJI5ip0d/VTYZW0nRrlLWXA4A7P1jrsa+f77rW2yXz315oBt6zGCF6l8C2tlMxY7ffULCj+5FhA=="; 3578 - }; 3579 - }; 3580 - "http-signature-0.10.1" = { 3581 - name = "http-signature"; 3582 - packageName = "http-signature"; 3583 - version = "0.10.1"; 3584 - src = fetchurl { 3585 - url = "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz"; 3586 - sha1 = "4fbdac132559aa8323121e540779c0a012b27e66"; 3587 - }; 3588 - }; 3589 - "https-proxy-agent-4.0.0" = { 3590 - name = "https-proxy-agent"; 3591 - packageName = "https-proxy-agent"; 3592 - version = "4.0.0"; 3593 - src = fetchurl { 3594 - url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz"; 3595 - sha512 = "zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg=="; 3596 - }; 3597 - }; 3598 - "human-signals-1.1.1" = { 3599 - name = "human-signals"; 3600 - packageName = "human-signals"; 3601 - version = "1.1.1"; 3602 - src = fetchurl { 3603 - url = "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz"; 3604 - sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 3605 - }; 3606 - }; 3607 - "iconv-lite-0.4.24" = { 3608 - name = "iconv-lite"; 3609 - packageName = "iconv-lite"; 3610 - version = "0.4.24"; 3611 - src = fetchurl { 3612 - url = "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"; 3613 - sha512 = "v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA=="; 3614 - }; 3615 - }; 3616 - "ignore-5.1.8" = { 3617 - name = "ignore"; 3618 - packageName = "ignore"; 3619 - version = "5.1.8"; 3620 - src = fetchurl { 3621 - url = "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz"; 3622 - sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 3623 - }; 3624 - }; 3625 - "ignore-by-default-1.0.1" = { 3626 - name = "ignore-by-default"; 3627 - packageName = "ignore-by-default"; 3628 - version = "1.0.1"; 3629 - src = fetchurl { 3630 - url = "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz"; 3631 - sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09"; 3632 - }; 3633 - }; 3634 - "import-fresh-3.3.0" = { 3635 - name = "import-fresh"; 3636 - packageName = "import-fresh"; 3637 - version = "3.3.0"; 3638 - src = fetchurl { 3639 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 3640 - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 3641 - }; 3642 - }; 3643 - "import-from-3.0.0" = { 3644 - name = "import-from"; 3645 - packageName = "import-from"; 3646 - version = "3.0.0"; 3647 - src = fetchurl { 3648 - url = "https://registry.npmjs.org/import-from/-/import-from-3.0.0.tgz"; 3649 - sha512 = "CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ=="; 3650 - }; 3651 - }; 3652 - "import-lazy-2.1.0" = { 3653 - name = "import-lazy"; 3654 - packageName = "import-lazy"; 3655 - version = "2.1.0"; 3656 - src = fetchurl { 3657 - url = "https://registry.npmjs.org/import-lazy/-/import-lazy-2.1.0.tgz"; 3658 - sha1 = "05698e3d45c88e8d7e9d92cb0584e77f096f3e43"; 3659 - }; 3660 - }; 3661 - "imurmurhash-0.1.4" = { 3662 - name = "imurmurhash"; 3663 - packageName = "imurmurhash"; 3664 - version = "0.1.4"; 3665 - src = fetchurl { 3666 - url = "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz"; 3667 - sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea"; 3668 - }; 3669 - }; 3670 - "in-publish-2.0.0" = { 3671 - name = "in-publish"; 3672 - packageName = "in-publish"; 3673 - version = "2.0.0"; 3674 - src = fetchurl { 3675 - url = "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz"; 3676 - sha1 = "e20ff5e3a2afc2690320b6dc552682a9c7fadf51"; 3677 - }; 3678 - }; 3679 - "indent-string-4.0.0" = { 3680 - name = "indent-string"; 3681 - packageName = "indent-string"; 3682 - version = "4.0.0"; 3683 - src = fetchurl { 3684 - url = "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz"; 3685 - sha512 = "EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg=="; 3686 - }; 3687 - }; 3688 - "inflight-1.0.6" = { 3689 - name = "inflight"; 3690 - packageName = "inflight"; 3691 - version = "1.0.6"; 3692 - src = fetchurl { 3693 - url = "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz"; 3694 - sha1 = "49bd6331d7d02d0c09bc910a1075ba8165b56df9"; 3695 - }; 3696 - }; 3697 - "inherits-2.0.4" = { 3698 - name = "inherits"; 3699 - packageName = "inherits"; 3700 - version = "2.0.4"; 3701 - src = fetchurl { 3702 - url = "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"; 3703 - sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 3704 - }; 3705 - }; 3706 - "ini-1.3.8" = { 3707 - name = "ini"; 3708 - packageName = "ini"; 3709 - version = "1.3.8"; 3710 - src = fetchurl { 3711 - url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 3712 - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 3713 - }; 3714 - }; 3715 - "inquirer-6.5.2" = { 3716 - name = "inquirer"; 3717 - packageName = "inquirer"; 3718 - version = "6.5.2"; 3719 - src = fetchurl { 3720 - url = "https://registry.npmjs.org/inquirer/-/inquirer-6.5.2.tgz"; 3721 - sha512 = "cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ=="; 3722 - }; 3723 - }; 3724 - "internal-slot-1.0.3" = { 3725 - name = "internal-slot"; 3726 - packageName = "internal-slot"; 3727 - version = "1.0.3"; 3728 - src = fetchurl { 3729 - url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz"; 3730 - sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA=="; 3731 - }; 3732 - }; 3733 - "into-stream-5.1.1" = { 3734 - name = "into-stream"; 3735 - packageName = "into-stream"; 3736 - version = "5.1.1"; 3737 - src = fetchurl { 3738 - url = "https://registry.npmjs.org/into-stream/-/into-stream-5.1.1.tgz"; 3739 - sha512 = "krrAJ7McQxGGmvaYbB7Q1mcA+cRwg9Ij2RfWIeVesNBgVDZmzY/Fa4IpZUT3bmdRzMzdf/mzltCG2Dq99IZGBA=="; 3740 - }; 3741 - }; 3742 - "invariant-2.2.4" = { 3743 - name = "invariant"; 3744 - packageName = "invariant"; 3745 - version = "2.2.4"; 3746 - src = fetchurl { 3747 - url = "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz"; 3748 - sha512 = "phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA=="; 3749 - }; 3750 - }; 3751 - "invert-kv-2.0.0" = { 3752 - name = "invert-kv"; 3753 - packageName = "invert-kv"; 3754 - version = "2.0.0"; 3755 - src = fetchurl { 3756 - url = "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz"; 3757 - sha512 = "wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA=="; 3758 - }; 3759 - }; 3760 - "is-accessor-descriptor-0.1.6" = { 3761 - name = "is-accessor-descriptor"; 3762 - packageName = "is-accessor-descriptor"; 3763 - version = "0.1.6"; 3764 - src = fetchurl { 3765 - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz"; 3766 - sha1 = "a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"; 3767 - }; 3768 - }; 3769 - "is-accessor-descriptor-1.0.0" = { 3770 - name = "is-accessor-descriptor"; 3771 - packageName = "is-accessor-descriptor"; 3772 - version = "1.0.0"; 3773 - src = fetchurl { 3774 - url = "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz"; 3775 - sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ=="; 3776 - }; 3777 - }; 3778 - "is-arrayish-0.2.1" = { 3779 - name = "is-arrayish"; 3780 - packageName = "is-arrayish"; 3781 - version = "0.2.1"; 3782 - src = fetchurl { 3783 - url = "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz"; 3784 - sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d"; 3785 - }; 3786 - }; 3787 - "is-bigint-1.0.4" = { 3788 - name = "is-bigint"; 3789 - packageName = "is-bigint"; 3790 - version = "1.0.4"; 3791 - src = fetchurl { 3792 - url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz"; 3793 - sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg=="; 3794 - }; 3795 - }; 3796 - "is-binary-path-1.0.1" = { 3797 - name = "is-binary-path"; 3798 - packageName = "is-binary-path"; 3799 - version = "1.0.1"; 3800 - src = fetchurl { 3801 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz"; 3802 - sha1 = "75f16642b480f187a711c814161fd3a4a7655898"; 3803 - }; 3804 - }; 3805 - "is-boolean-object-1.1.2" = { 3806 - name = "is-boolean-object"; 3807 - packageName = "is-boolean-object"; 3808 - version = "1.1.2"; 3809 - src = fetchurl { 3810 - url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz"; 3811 - sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA=="; 3812 - }; 3813 - }; 3814 - "is-buffer-1.1.6" = { 3815 - name = "is-buffer"; 3816 - packageName = "is-buffer"; 3817 - version = "1.1.6"; 3818 - src = fetchurl { 3819 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; 3820 - sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="; 3821 - }; 3822 - }; 3823 - "is-buffer-2.0.5" = { 3824 - name = "is-buffer"; 3825 - packageName = "is-buffer"; 3826 - version = "2.0.5"; 3827 - src = fetchurl { 3828 - url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz"; 3829 - sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ=="; 3830 - }; 3831 - }; 3832 - "is-callable-1.2.4" = { 3833 - name = "is-callable"; 3834 - packageName = "is-callable"; 3835 - version = "1.2.4"; 3836 - src = fetchurl { 3837 - url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz"; 3838 - sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w=="; 3839 - }; 3840 - }; 3841 - "is-ci-1.2.1" = { 3842 - name = "is-ci"; 3843 - packageName = "is-ci"; 3844 - version = "1.2.1"; 3845 - src = fetchurl { 3846 - url = "https://registry.npmjs.org/is-ci/-/is-ci-1.2.1.tgz"; 3847 - sha512 = "s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg=="; 3848 - }; 3849 - }; 3850 - "is-core-module-2.8.0" = { 3851 - name = "is-core-module"; 3852 - packageName = "is-core-module"; 3853 - version = "2.8.0"; 3854 - src = fetchurl { 3855 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz"; 3856 - sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw=="; 3857 - }; 3858 - }; 3859 - "is-data-descriptor-0.1.4" = { 3860 - name = "is-data-descriptor"; 3861 - packageName = "is-data-descriptor"; 3862 - version = "0.1.4"; 3863 - src = fetchurl { 3864 - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz"; 3865 - sha1 = "0b5ee648388e2c860282e793f1856fec3f301b56"; 3866 - }; 3867 - }; 3868 - "is-data-descriptor-1.0.0" = { 3869 - name = "is-data-descriptor"; 3870 - packageName = "is-data-descriptor"; 3871 - version = "1.0.0"; 3872 - src = fetchurl { 3873 - url = "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz"; 3874 - sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ=="; 3875 - }; 3876 - }; 3877 - "is-date-object-1.0.5" = { 3878 - name = "is-date-object"; 3879 - packageName = "is-date-object"; 3880 - version = "1.0.5"; 3881 - src = fetchurl { 3882 - url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz"; 3883 - sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ=="; 3884 - }; 3885 - }; 3886 - "is-descriptor-0.1.6" = { 3887 - name = "is-descriptor"; 3888 - packageName = "is-descriptor"; 3889 - version = "0.1.6"; 3890 - src = fetchurl { 3891 - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz"; 3892 - sha512 = "avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg=="; 3893 - }; 3894 - }; 3895 - "is-descriptor-1.0.2" = { 3896 - name = "is-descriptor"; 3897 - packageName = "is-descriptor"; 3898 - version = "1.0.2"; 3899 - src = fetchurl { 3900 - url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz"; 3901 - sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg=="; 3902 - }; 3903 - }; 3904 - "is-extendable-0.1.1" = { 3905 - name = "is-extendable"; 3906 - packageName = "is-extendable"; 3907 - version = "0.1.1"; 3908 - src = fetchurl { 3909 - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz"; 3910 - sha1 = "62b110e289a471418e3ec36a617d472e301dfc89"; 3911 - }; 3912 - }; 3913 - "is-extendable-1.0.1" = { 3914 - name = "is-extendable"; 3915 - packageName = "is-extendable"; 3916 - version = "1.0.1"; 3917 - src = fetchurl { 3918 - url = "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz"; 3919 - sha512 = "arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA=="; 3920 - }; 3921 - }; 3922 - "is-extglob-2.1.1" = { 3923 - name = "is-extglob"; 3924 - packageName = "is-extglob"; 3925 - version = "2.1.1"; 3926 - src = fetchurl { 3927 - url = "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz"; 3928 - sha1 = "a88c02535791f02ed37c76a1b9ea9773c833f8c2"; 3929 - }; 3930 - }; 3931 - "is-fullwidth-code-point-1.0.0" = { 3932 - name = "is-fullwidth-code-point"; 3933 - packageName = "is-fullwidth-code-point"; 3934 - version = "1.0.0"; 3935 - src = fetchurl { 3936 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 3937 - sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 3938 - }; 3939 - }; 3940 - "is-fullwidth-code-point-2.0.0" = { 3941 - name = "is-fullwidth-code-point"; 3942 - packageName = "is-fullwidth-code-point"; 3943 - version = "2.0.0"; 3944 - src = fetchurl { 3945 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 3946 - sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 3947 - }; 3948 - }; 3949 - "is-fullwidth-code-point-3.0.0" = { 3950 - name = "is-fullwidth-code-point"; 3951 - packageName = "is-fullwidth-code-point"; 3952 - version = "3.0.0"; 3953 - src = fetchurl { 3954 - url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz"; 3955 - sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 3956 - }; 3957 - }; 3958 - "is-glob-3.1.0" = { 3959 - name = "is-glob"; 3960 - packageName = "is-glob"; 3961 - version = "3.1.0"; 3962 - src = fetchurl { 3963 - url = "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz"; 3964 - sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a"; 3965 - }; 3966 - }; 3967 - "is-glob-4.0.3" = { 3968 - name = "is-glob"; 3969 - packageName = "is-glob"; 3970 - version = "4.0.3"; 3971 - src = fetchurl { 3972 - url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz"; 3973 - sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg=="; 3974 - }; 3975 - }; 3976 - "is-installed-globally-0.1.0" = { 3977 - name = "is-installed-globally"; 3978 - packageName = "is-installed-globally"; 3979 - version = "0.1.0"; 3980 - src = fetchurl { 3981 - url = "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.1.0.tgz"; 3982 - sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80"; 3983 - }; 3984 - }; 3985 - "is-negative-zero-2.0.1" = { 3986 - name = "is-negative-zero"; 3987 - packageName = "is-negative-zero"; 3988 - version = "2.0.1"; 3989 - src = fetchurl { 3990 - url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz"; 3991 - sha512 = "2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w=="; 3992 - }; 3993 - }; 3994 - "is-npm-1.0.0" = { 3995 - name = "is-npm"; 3996 - packageName = "is-npm"; 3997 - version = "1.0.0"; 3998 - src = fetchurl { 3999 - url = "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz"; 4000 - sha1 = "f2fb63a65e4905b406c86072765a1a4dc793b9f4"; 4001 - }; 4002 - }; 4003 - "is-number-3.0.0" = { 4004 - name = "is-number"; 4005 - packageName = "is-number"; 4006 - version = "3.0.0"; 4007 - src = fetchurl { 4008 - url = "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz"; 4009 - sha1 = "24fd6201a4782cf50561c810276afc7d12d71195"; 4010 - }; 4011 - }; 4012 - "is-number-7.0.0" = { 4013 - name = "is-number"; 4014 - packageName = "is-number"; 4015 - version = "7.0.0"; 4016 - src = fetchurl { 4017 - url = "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz"; 4018 - sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 4019 - }; 4020 - }; 4021 - "is-number-object-1.0.6" = { 4022 - name = "is-number-object"; 4023 - packageName = "is-number-object"; 4024 - version = "1.0.6"; 4025 - src = fetchurl { 4026 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz"; 4027 - sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; 4028 - }; 4029 - }; 4030 - "is-obj-1.0.1" = { 4031 - name = "is-obj"; 4032 - packageName = "is-obj"; 4033 - version = "1.0.1"; 4034 - src = fetchurl { 4035 - url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz"; 4036 - sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"; 4037 - }; 4038 - }; 4039 - "is-obj-2.0.0" = { 4040 - name = "is-obj"; 4041 - packageName = "is-obj"; 4042 - version = "2.0.0"; 4043 - src = fetchurl { 4044 - url = "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz"; 4045 - sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w=="; 4046 - }; 4047 - }; 4048 - "is-object-1.0.2" = { 4049 - name = "is-object"; 4050 - packageName = "is-object"; 4051 - version = "1.0.2"; 4052 - src = fetchurl { 4053 - url = "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz"; 4054 - sha512 = "2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA=="; 4055 - }; 4056 - }; 4057 - "is-path-inside-1.0.1" = { 4058 - name = "is-path-inside"; 4059 - packageName = "is-path-inside"; 4060 - version = "1.0.1"; 4061 - src = fetchurl { 4062 - url = "https://registry.npmjs.org/is-path-inside/-/is-path-inside-1.0.1.tgz"; 4063 - sha1 = "8ef5b7de50437a3fdca6b4e865ef7aa55cb48036"; 4064 - }; 4065 - }; 4066 - "is-plain-obj-1.1.0" = { 4067 - name = "is-plain-obj"; 4068 - packageName = "is-plain-obj"; 4069 - version = "1.1.0"; 4070 - src = fetchurl { 4071 - url = "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; 4072 - sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; 4073 - }; 4074 - }; 4075 - "is-plain-object-2.0.4" = { 4076 - name = "is-plain-object"; 4077 - packageName = "is-plain-object"; 4078 - version = "2.0.4"; 4079 - src = fetchurl { 4080 - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz"; 4081 - sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og=="; 4082 - }; 4083 - }; 4084 - "is-plain-object-5.0.0" = { 4085 - name = "is-plain-object"; 4086 - packageName = "is-plain-object"; 4087 - version = "5.0.0"; 4088 - src = fetchurl { 4089 - url = "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz"; 4090 - sha512 = "VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q=="; 4091 - }; 4092 - }; 4093 - "is-redirect-1.0.0" = { 4094 - name = "is-redirect"; 4095 - packageName = "is-redirect"; 4096 - version = "1.0.0"; 4097 - src = fetchurl { 4098 - url = "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz"; 4099 - sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24"; 4100 - }; 4101 - }; 4102 - "is-regex-1.1.4" = { 4103 - name = "is-regex"; 4104 - packageName = "is-regex"; 4105 - version = "1.1.4"; 4106 - src = fetchurl { 4107 - url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz"; 4108 - sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg=="; 4109 - }; 4110 - }; 4111 - "is-retry-allowed-1.2.0" = { 4112 - name = "is-retry-allowed"; 4113 - packageName = "is-retry-allowed"; 4114 - version = "1.2.0"; 4115 - src = fetchurl { 4116 - url = "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz"; 4117 - sha512 = "RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg=="; 4118 - }; 4119 - }; 4120 - "is-shared-array-buffer-1.0.1" = { 4121 - name = "is-shared-array-buffer"; 4122 - packageName = "is-shared-array-buffer"; 4123 - version = "1.0.1"; 4124 - src = fetchurl { 4125 - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; 4126 - sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; 4127 - }; 4128 - }; 4129 - "is-stream-1.1.0" = { 4130 - name = "is-stream"; 4131 - packageName = "is-stream"; 4132 - version = "1.1.0"; 4133 - src = fetchurl { 4134 - url = "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz"; 4135 - sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"; 4136 - }; 4137 - }; 4138 - "is-stream-2.0.1" = { 4139 - name = "is-stream"; 4140 - packageName = "is-stream"; 4141 - version = "2.0.1"; 4142 - src = fetchurl { 4143 - url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz"; 4144 - sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg=="; 4145 - }; 4146 - }; 4147 - "is-string-1.0.7" = { 4148 - name = "is-string"; 4149 - packageName = "is-string"; 4150 - version = "1.0.7"; 4151 - src = fetchurl { 4152 - url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz"; 4153 - sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg=="; 4154 - }; 4155 - }; 4156 - "is-symbol-1.0.4" = { 4157 - name = "is-symbol"; 4158 - packageName = "is-symbol"; 4159 - version = "1.0.4"; 4160 - src = fetchurl { 4161 - url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz"; 4162 - sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg=="; 4163 - }; 4164 - }; 4165 - "is-text-path-1.0.1" = { 4166 - name = "is-text-path"; 4167 - packageName = "is-text-path"; 4168 - version = "1.0.1"; 4169 - src = fetchurl { 4170 - url = "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz"; 4171 - sha1 = "4e1aa0fb51bfbcb3e92688001397202c1775b66e"; 4172 - }; 4173 - }; 4174 - "is-typedarray-1.0.0" = { 4175 - name = "is-typedarray"; 4176 - packageName = "is-typedarray"; 4177 - version = "1.0.0"; 4178 - src = fetchurl { 4179 - url = "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz"; 4180 - sha1 = "e479c80858df0c1b11ddda6940f96011fcda4a9a"; 4181 - }; 4182 - }; 4183 - "is-utf8-0.2.1" = { 4184 - name = "is-utf8"; 4185 - packageName = "is-utf8"; 4186 - version = "0.2.1"; 4187 - src = fetchurl { 4188 - url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz"; 4189 - sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; 4190 - }; 4191 - }; 4192 - "is-weakref-1.0.1" = { 4193 - name = "is-weakref"; 4194 - packageName = "is-weakref"; 4195 - version = "1.0.1"; 4196 - src = fetchurl { 4197 - url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz"; 4198 - sha512 = "b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ=="; 4199 - }; 4200 - }; 4201 - "is-windows-1.0.2" = { 4202 - name = "is-windows"; 4203 - packageName = "is-windows"; 4204 - version = "1.0.2"; 4205 - src = fetchurl { 4206 - url = "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz"; 4207 - sha512 = "eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA=="; 4208 - }; 4209 - }; 4210 - "isarray-0.0.1" = { 4211 - name = "isarray"; 4212 - packageName = "isarray"; 4213 - version = "0.0.1"; 4214 - src = fetchurl { 4215 - url = "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz"; 4216 - sha1 = "8a18acfca9a8f4177e09abfc6038939b05d1eedf"; 4217 - }; 4218 - }; 4219 - "isarray-1.0.0" = { 4220 - name = "isarray"; 4221 - packageName = "isarray"; 4222 - version = "1.0.0"; 4223 - src = fetchurl { 4224 - url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz"; 4225 - sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 4226 - }; 4227 - }; 4228 - "isexe-2.0.0" = { 4229 - name = "isexe"; 4230 - packageName = "isexe"; 4231 - version = "2.0.0"; 4232 - src = fetchurl { 4233 - url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz"; 4234 - sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10"; 4235 - }; 4236 - }; 4237 - "isobject-2.1.0" = { 4238 - name = "isobject"; 4239 - packageName = "isobject"; 4240 - version = "2.1.0"; 4241 - src = fetchurl { 4242 - url = "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz"; 4243 - sha1 = "f065561096a3f1da2ef46272f815c840d87e0c89"; 4244 - }; 4245 - }; 4246 - "isobject-3.0.1" = { 4247 - name = "isobject"; 4248 - packageName = "isobject"; 4249 - version = "3.0.1"; 4250 - src = fetchurl { 4251 - url = "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz"; 4252 - sha1 = "4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"; 4253 - }; 4254 - }; 4255 - "issue-parser-5.0.0" = { 4256 - name = "issue-parser"; 4257 - packageName = "issue-parser"; 4258 - version = "5.0.0"; 4259 - src = fetchurl { 4260 - url = "https://registry.npmjs.org/issue-parser/-/issue-parser-5.0.0.tgz"; 4261 - sha512 = "q/16W7EPHRL0FKVz9NU++TUsoygXGj6JOi88oulyAcQG+IEZ0T6teVdE+VLbe19OfL/tbV8Wi3Dfo0HedeHW0Q=="; 4262 - }; 4263 - }; 4264 - "istanbul-lib-coverage-2.0.5" = { 4265 - name = "istanbul-lib-coverage"; 4266 - packageName = "istanbul-lib-coverage"; 4267 - version = "2.0.5"; 4268 - src = fetchurl { 4269 - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz"; 4270 - sha512 = "8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA=="; 4271 - }; 4272 - }; 4273 - "istanbul-lib-coverage-3.2.0" = { 4274 - name = "istanbul-lib-coverage"; 4275 - packageName = "istanbul-lib-coverage"; 4276 - version = "3.2.0"; 4277 - src = fetchurl { 4278 - url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz"; 4279 - sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 4280 - }; 4281 - }; 4282 - "istanbul-lib-hook-3.0.0" = { 4283 - name = "istanbul-lib-hook"; 4284 - packageName = "istanbul-lib-hook"; 4285 - version = "3.0.0"; 4286 - src = fetchurl { 4287 - url = "https://registry.npmjs.org/istanbul-lib-hook/-/istanbul-lib-hook-3.0.0.tgz"; 4288 - sha512 = "Pt/uge1Q9s+5VAZ+pCo16TYMWPBIl+oaNIjgLQxcX0itS6ueeaA+pEfThZpH8WxhFgCiEb8sAJY6MdUKgiIWaQ=="; 4289 - }; 4290 - }; 4291 - "istanbul-lib-instrument-3.3.0" = { 4292 - name = "istanbul-lib-instrument"; 4293 - packageName = "istanbul-lib-instrument"; 4294 - version = "3.3.0"; 4295 - src = fetchurl { 4296 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz"; 4297 - sha512 = "5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA=="; 4298 - }; 4299 - }; 4300 - "istanbul-lib-instrument-4.0.3" = { 4301 - name = "istanbul-lib-instrument"; 4302 - packageName = "istanbul-lib-instrument"; 4303 - version = "4.0.3"; 4304 - src = fetchurl { 4305 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"; 4306 - sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; 4307 - }; 4308 - }; 4309 - "istanbul-lib-processinfo-2.0.2" = { 4310 - name = "istanbul-lib-processinfo"; 4311 - packageName = "istanbul-lib-processinfo"; 4312 - version = "2.0.2"; 4313 - src = fetchurl { 4314 - url = "https://registry.npmjs.org/istanbul-lib-processinfo/-/istanbul-lib-processinfo-2.0.2.tgz"; 4315 - sha512 = "kOwpa7z9hme+IBPZMzQ5vdQj8srYgAtaRqeI48NGmAQ+/5yKiHLV0QbYqQpxsdEF0+w14SoB8YbnHKcXE2KnYw=="; 4316 - }; 4317 - }; 4318 - "istanbul-lib-report-3.0.0" = { 4319 - name = "istanbul-lib-report"; 4320 - packageName = "istanbul-lib-report"; 4321 - version = "3.0.0"; 4322 - src = fetchurl { 4323 - url = "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz"; 4324 - sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw=="; 4325 - }; 4326 - }; 4327 - "istanbul-lib-source-maps-4.0.1" = { 4328 - name = "istanbul-lib-source-maps"; 4329 - packageName = "istanbul-lib-source-maps"; 4330 - version = "4.0.1"; 4331 - src = fetchurl { 4332 - url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz"; 4333 - sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; 4334 - }; 4335 - }; 4336 - "istanbul-reports-3.0.5" = { 4337 - name = "istanbul-reports"; 4338 - packageName = "istanbul-reports"; 4339 - version = "3.0.5"; 4340 - src = fetchurl { 4341 - url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.5.tgz"; 4342 - sha512 = "5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ=="; 4343 - }; 4344 - }; 4345 - "java-properties-1.0.2" = { 4346 - name = "java-properties"; 4347 - packageName = "java-properties"; 4348 - version = "1.0.2"; 4349 - src = fetchurl { 4350 - url = "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz"; 4351 - sha512 = "qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ=="; 4352 - }; 4353 - }; 4354 - "js-tokens-4.0.0" = { 4355 - name = "js-tokens"; 4356 - packageName = "js-tokens"; 4357 - version = "4.0.0"; 4358 - src = fetchurl { 4359 - url = "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz"; 4360 - sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 4361 - }; 4362 - }; 4363 - "js-yaml-3.13.1" = { 4364 - name = "js-yaml"; 4365 - packageName = "js-yaml"; 4366 - version = "3.13.1"; 4367 - src = fetchurl { 4368 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.13.1.tgz"; 4369 - sha512 = "YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw=="; 4370 - }; 4371 - }; 4372 - "jsesc-0.5.0" = { 4373 - name = "jsesc"; 4374 - packageName = "jsesc"; 4375 - version = "0.5.0"; 4376 - src = fetchurl { 4377 - url = "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz"; 4378 - sha1 = "e7dee66e35d6fc16f710fe91d5cf69f70f08911d"; 4379 - }; 4380 - }; 4381 - "jsesc-2.5.2" = { 4382 - name = "jsesc"; 4383 - packageName = "jsesc"; 4384 - version = "2.5.2"; 4385 - src = fetchurl { 4386 - url = "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz"; 4387 - sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 4388 - }; 4389 - }; 4390 - "json-parse-better-errors-1.0.2" = { 4391 - name = "json-parse-better-errors"; 4392 - packageName = "json-parse-better-errors"; 4393 - version = "1.0.2"; 4394 - src = fetchurl { 4395 - url = "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz"; 4396 - sha512 = "mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw=="; 4397 - }; 4398 - }; 4399 - "json-parse-even-better-errors-2.3.1" = { 4400 - name = "json-parse-even-better-errors"; 4401 - packageName = "json-parse-even-better-errors"; 4402 - version = "2.3.1"; 4403 - src = fetchurl { 4404 - url = "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz"; 4405 - sha512 = "xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w=="; 4406 - }; 4407 - }; 4408 - "json-stringify-safe-5.0.1" = { 4409 - name = "json-stringify-safe"; 4410 - packageName = "json-stringify-safe"; 4411 - version = "5.0.1"; 4412 - src = fetchurl { 4413 - url = "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz"; 4414 - sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 4415 - }; 4416 - }; 4417 - "json5-2.2.0" = { 4418 - name = "json5"; 4419 - packageName = "json5"; 4420 - version = "2.2.0"; 4421 - src = fetchurl { 4422 - url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"; 4423 - sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 4424 - }; 4425 - }; 4426 - "jsonfile-4.0.0" = { 4427 - name = "jsonfile"; 4428 - packageName = "jsonfile"; 4429 - version = "4.0.0"; 4430 - src = fetchurl { 4431 - url = "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz"; 4432 - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 4433 - }; 4434 - }; 4435 - "jsonify-0.0.0" = { 4436 - name = "jsonify"; 4437 - packageName = "jsonify"; 4438 - version = "0.0.0"; 4439 - src = fetchurl { 4440 - url = "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz"; 4441 - sha1 = "2c74b6ee41d93ca51b7b5aaee8f503631d252a73"; 4442 - }; 4443 - }; 4444 - "jsonparse-1.3.1" = { 4445 - name = "jsonparse"; 4446 - packageName = "jsonparse"; 4447 - version = "1.3.1"; 4448 - src = fetchurl { 4449 - url = "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz"; 4450 - sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280"; 4451 - }; 4452 - }; 4453 - "just-extend-4.2.1" = { 4454 - name = "just-extend"; 4455 - packageName = "just-extend"; 4456 - version = "4.2.1"; 4457 - src = fetchurl { 4458 - url = "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz"; 4459 - sha512 = "g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg=="; 4460 - }; 4461 - }; 4462 - "kind-of-3.2.2" = { 4463 - name = "kind-of"; 4464 - packageName = "kind-of"; 4465 - version = "3.2.2"; 4466 - src = fetchurl { 4467 - url = "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz"; 4468 - sha1 = "31ea21a734bab9bbb0f32466d893aea51e4a3c64"; 4469 - }; 4470 - }; 4471 - "kind-of-4.0.0" = { 4472 - name = "kind-of"; 4473 - packageName = "kind-of"; 4474 - version = "4.0.0"; 4475 - src = fetchurl { 4476 - url = "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz"; 4477 - sha1 = "20813df3d712928b207378691a45066fae72dd57"; 4478 - }; 4479 - }; 4480 - "kind-of-5.1.0" = { 4481 - name = "kind-of"; 4482 - packageName = "kind-of"; 4483 - version = "5.1.0"; 4484 - src = fetchurl { 4485 - url = "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz"; 4486 - sha512 = "NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw=="; 4487 - }; 4488 - }; 4489 - "kind-of-6.0.3" = { 4490 - name = "kind-of"; 4491 - packageName = "kind-of"; 4492 - version = "6.0.3"; 4493 - src = fetchurl { 4494 - url = "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz"; 4495 - sha512 = "dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw=="; 4496 - }; 4497 - }; 4498 - "latest-version-3.1.0" = { 4499 - name = "latest-version"; 4500 - packageName = "latest-version"; 4501 - version = "3.1.0"; 4502 - src = fetchurl { 4503 - url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz"; 4504 - sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15"; 4505 - }; 4506 - }; 4507 - "lcid-2.0.0" = { 4508 - name = "lcid"; 4509 - packageName = "lcid"; 4510 - version = "2.0.0"; 4511 - src = fetchurl { 4512 - url = "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz"; 4513 - sha512 = "avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA=="; 4514 - }; 4515 - }; 4516 - "leven-3.1.0" = { 4517 - name = "leven"; 4518 - packageName = "leven"; 4519 - version = "3.1.0"; 4520 - src = fetchurl { 4521 - url = "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz"; 4522 - sha512 = "qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A=="; 4523 - }; 4524 - }; 4525 - "levenary-1.1.1" = { 4526 - name = "levenary"; 4527 - packageName = "levenary"; 4528 - version = "1.1.1"; 4529 - src = fetchurl { 4530 - url = "https://registry.npmjs.org/levenary/-/levenary-1.1.1.tgz"; 4531 - sha512 = "mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ=="; 4532 - }; 4533 - }; 4534 - "lines-and-columns-1.1.6" = { 4535 - name = "lines-and-columns"; 4536 - packageName = "lines-and-columns"; 4537 - version = "1.1.6"; 4538 - src = fetchurl { 4539 - url = "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz"; 4540 - sha1 = "1c00c743b433cd0a4e80758f7b64a57440d9ff00"; 4541 - }; 4542 - }; 4543 - "load-json-file-4.0.0" = { 4544 - name = "load-json-file"; 4545 - packageName = "load-json-file"; 4546 - version = "4.0.0"; 4547 - src = fetchurl { 4548 - url = "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz"; 4549 - sha1 = "2f5f45ab91e33216234fd53adab668eb4ec0993b"; 4550 - }; 4551 - }; 4552 - "locate-path-2.0.0" = { 4553 - name = "locate-path"; 4554 - packageName = "locate-path"; 4555 - version = "2.0.0"; 4556 - src = fetchurl { 4557 - url = "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz"; 4558 - sha1 = "2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"; 4559 - }; 4560 - }; 4561 - "locate-path-3.0.0" = { 4562 - name = "locate-path"; 4563 - packageName = "locate-path"; 4564 - version = "3.0.0"; 4565 - src = fetchurl { 4566 - url = "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz"; 4567 - sha512 = "7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A=="; 4568 - }; 4569 - }; 4570 - "locate-path-5.0.0" = { 4571 - name = "locate-path"; 4572 - packageName = "locate-path"; 4573 - version = "5.0.0"; 4574 - src = fetchurl { 4575 - url = "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz"; 4576 - sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 4577 - }; 4578 - }; 4579 - "lodash-4.17.21" = { 4580 - name = "lodash"; 4581 - packageName = "lodash"; 4582 - version = "4.17.21"; 4583 - src = fetchurl { 4584 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 4585 - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 4586 - }; 4587 - }; 4588 - "lodash._baseclone-4.5.7" = { 4589 - name = "lodash._baseclone"; 4590 - packageName = "lodash._baseclone"; 4591 - version = "4.5.7"; 4592 - src = fetchurl { 4593 - url = "https://registry.npmjs.org/lodash._baseclone/-/lodash._baseclone-4.5.7.tgz"; 4594 - sha1 = "ce42ade08384ef5d62fa77c30f61a46e686f8434"; 4595 - }; 4596 - }; 4597 - "lodash.capitalize-4.2.1" = { 4598 - name = "lodash.capitalize"; 4599 - packageName = "lodash.capitalize"; 4600 - version = "4.2.1"; 4601 - src = fetchurl { 4602 - url = "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz"; 4603 - sha1 = "f826c9b4e2a8511d84e3aca29db05e1a4f3b72a9"; 4604 - }; 4605 - }; 4606 - "lodash.clone-4.3.2" = { 4607 - name = "lodash.clone"; 4608 - packageName = "lodash.clone"; 4609 - version = "4.3.2"; 4610 - src = fetchurl { 4611 - url = "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.3.2.tgz"; 4612 - sha1 = "e56b176b6823a7dde38f7f2bf58de7d5971200e9"; 4613 - }; 4614 - }; 4615 - "lodash.clone-4.5.0" = { 4616 - name = "lodash.clone"; 4617 - packageName = "lodash.clone"; 4618 - version = "4.5.0"; 4619 - src = fetchurl { 4620 - url = "https://registry.npmjs.org/lodash.clone/-/lodash.clone-4.5.0.tgz"; 4621 - sha1 = "195870450f5a13192478df4bc3d23d2dea1907b6"; 4622 - }; 4623 - }; 4624 - "lodash.escaperegexp-4.1.2" = { 4625 - name = "lodash.escaperegexp"; 4626 - packageName = "lodash.escaperegexp"; 4627 - version = "4.1.2"; 4628 - src = fetchurl { 4629 - url = "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz"; 4630 - sha1 = "64762c48618082518ac3df4ccf5d5886dae20347"; 4631 - }; 4632 - }; 4633 - "lodash.flattendeep-4.4.0" = { 4634 - name = "lodash.flattendeep"; 4635 - packageName = "lodash.flattendeep"; 4636 - version = "4.4.0"; 4637 - src = fetchurl { 4638 - url = "https://registry.npmjs.org/lodash.flattendeep/-/lodash.flattendeep-4.4.0.tgz"; 4639 - sha1 = "fb030917f86a3134e5bc9bec0d69e0013ddfedb2"; 4640 - }; 4641 - }; 4642 - "lodash.get-4.4.2" = { 4643 - name = "lodash.get"; 4644 - packageName = "lodash.get"; 4645 - version = "4.4.2"; 4646 - src = fetchurl { 4647 - url = "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz"; 4648 - sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; 4649 - }; 4650 - }; 4651 - "lodash.ismatch-4.4.0" = { 4652 - name = "lodash.ismatch"; 4653 - packageName = "lodash.ismatch"; 4654 - version = "4.4.0"; 4655 - src = fetchurl { 4656 - url = "https://registry.npmjs.org/lodash.ismatch/-/lodash.ismatch-4.4.0.tgz"; 4657 - sha1 = "756cb5150ca3ba6f11085a78849645f188f85f37"; 4658 - }; 4659 - }; 4660 - "lodash.isplainobject-4.0.6" = { 4661 - name = "lodash.isplainobject"; 4662 - packageName = "lodash.isplainobject"; 4663 - version = "4.0.6"; 4664 - src = fetchurl { 4665 - url = "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz"; 4666 - sha1 = "7c526a52d89b45c45cc690b88163be0497f550cb"; 4667 - }; 4668 - }; 4669 - "lodash.isstring-4.0.1" = { 4670 - name = "lodash.isstring"; 4671 - packageName = "lodash.isstring"; 4672 - version = "4.0.1"; 4673 - src = fetchurl { 4674 - url = "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz"; 4675 - sha1 = "d527dfb5456eca7cc9bb95d5daeaf88ba54a5451"; 4676 - }; 4677 - }; 4678 - "lodash.map-4.6.0" = { 4679 - name = "lodash.map"; 4680 - packageName = "lodash.map"; 4681 - version = "4.6.0"; 4682 - src = fetchurl { 4683 - url = "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz"; 4684 - sha1 = "771ec7839e3473d9c4cde28b19394c3562f4f6d3"; 4685 - }; 4686 - }; 4687 - "lodash.set-4.3.2" = { 4688 - name = "lodash.set"; 4689 - packageName = "lodash.set"; 4690 - version = "4.3.2"; 4691 - src = fetchurl { 4692 - url = "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"; 4693 - sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23"; 4694 - }; 4695 - }; 4696 - "lodash.uniq-4.5.0" = { 4697 - name = "lodash.uniq"; 4698 - packageName = "lodash.uniq"; 4699 - version = "4.5.0"; 4700 - src = fetchurl { 4701 - url = "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz"; 4702 - sha1 = "d0225373aeb652adc1bc82e4945339a842754773"; 4703 - }; 4704 - }; 4705 - "lodash.uniqby-4.7.0" = { 4706 - name = "lodash.uniqby"; 4707 - packageName = "lodash.uniqby"; 4708 - version = "4.7.0"; 4709 - src = fetchurl { 4710 - url = "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz"; 4711 - sha1 = "d99c07a669e9e6d24e1362dfe266c67616af1302"; 4712 - }; 4713 - }; 4714 - "log-symbols-2.2.0" = { 4715 - name = "log-symbols"; 4716 - packageName = "log-symbols"; 4717 - version = "2.2.0"; 4718 - src = fetchurl { 4719 - url = "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz"; 4720 - sha512 = "VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg=="; 4721 - }; 4722 - }; 4723 - "lolex-2.7.5" = { 4724 - name = "lolex"; 4725 - packageName = "lolex"; 4726 - version = "2.7.5"; 4727 - src = fetchurl { 4728 - url = "https://registry.npmjs.org/lolex/-/lolex-2.7.5.tgz"; 4729 - sha512 = "l9x0+1offnKKIzYVjyXU2SiwhXDLekRzKyhnbyldPHvC7BvLPVpdNUNR2KeMAiCN2D/kLNttZgQD5WjSxuBx3Q=="; 4730 - }; 4731 - }; 4732 - "lolex-5.1.2" = { 4733 - name = "lolex"; 4734 - packageName = "lolex"; 4735 - version = "5.1.2"; 4736 - src = fetchurl { 4737 - url = "https://registry.npmjs.org/lolex/-/lolex-5.1.2.tgz"; 4738 - sha512 = "h4hmjAvHTmd+25JSwrtTIuwbKdwg5NzZVRMLn9saij4SZaepCrTCxPr35H/3bjwfMJtN+t3CX8672UIkglz28A=="; 4739 - }; 4740 - }; 4741 - "longest-1.0.1" = { 4742 - name = "longest"; 4743 - packageName = "longest"; 4744 - version = "1.0.1"; 4745 - src = fetchurl { 4746 - url = "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz"; 4747 - sha1 = "30a0b2da38f73770e8294a0d22e6625ed77d0097"; 4748 - }; 4749 - }; 4750 - "longest-2.0.1" = { 4751 - name = "longest"; 4752 - packageName = "longest"; 4753 - version = "2.0.1"; 4754 - src = fetchurl { 4755 - url = "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz"; 4756 - sha1 = "781e183296aa94f6d4d916dc335d0d17aefa23f8"; 4757 - }; 4758 - }; 4759 - "loose-envify-1.4.0" = { 4760 - name = "loose-envify"; 4761 - packageName = "loose-envify"; 4762 - version = "1.4.0"; 4763 - src = fetchurl { 4764 - url = "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz"; 4765 - sha512 = "lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q=="; 4766 - }; 4767 - }; 4768 - "lowercase-keys-1.0.1" = { 4769 - name = "lowercase-keys"; 4770 - packageName = "lowercase-keys"; 4771 - version = "1.0.1"; 4772 - src = fetchurl { 4773 - url = "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz"; 4774 - sha512 = "G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA=="; 4775 - }; 4776 - }; 4777 - "lru-cache-4.1.5" = { 4778 - name = "lru-cache"; 4779 - packageName = "lru-cache"; 4780 - version = "4.1.5"; 4781 - src = fetchurl { 4782 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz"; 4783 - sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g=="; 4784 - }; 4785 - }; 4786 - "lru-cache-6.0.0" = { 4787 - name = "lru-cache"; 4788 - packageName = "lru-cache"; 4789 - version = "6.0.0"; 4790 - src = fetchurl { 4791 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 4792 - sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 4793 - }; 4794 - }; 4795 - "macos-release-2.5.0" = { 4796 - name = "macos-release"; 4797 - packageName = "macos-release"; 4798 - version = "2.5.0"; 4799 - src = fetchurl { 4800 - url = "https://registry.npmjs.org/macos-release/-/macos-release-2.5.0.tgz"; 4801 - sha512 = "EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g=="; 4802 - }; 4803 - }; 4804 - "make-dir-1.3.0" = { 4805 - name = "make-dir"; 4806 - packageName = "make-dir"; 4807 - version = "1.3.0"; 4808 - src = fetchurl { 4809 - url = "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz"; 4810 - sha512 = "2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ=="; 4811 - }; 4812 - }; 4813 - "make-dir-2.1.0" = { 4814 - name = "make-dir"; 4815 - packageName = "make-dir"; 4816 - version = "2.1.0"; 4817 - src = fetchurl { 4818 - url = "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"; 4819 - sha512 = "LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="; 4820 - }; 4821 - }; 4822 - "make-dir-3.1.0" = { 4823 - name = "make-dir"; 4824 - packageName = "make-dir"; 4825 - version = "3.1.0"; 4826 - src = fetchurl { 4827 - url = "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz"; 4828 - sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw=="; 4829 - }; 4830 - }; 4831 - "make-error-1.3.6" = { 4832 - name = "make-error"; 4833 - packageName = "make-error"; 4834 - version = "1.3.6"; 4835 - src = fetchurl { 4836 - url = "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz"; 4837 - sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw=="; 4838 - }; 4839 - }; 4840 - "manage-path-2.0.0" = { 4841 - name = "manage-path"; 4842 - packageName = "manage-path"; 4843 - version = "2.0.0"; 4844 - src = fetchurl { 4845 - url = "https://registry.npmjs.org/manage-path/-/manage-path-2.0.0.tgz"; 4846 - sha1 = "f4cf8457b926eeee2a83b173501414bc76eb9597"; 4847 - }; 4848 - }; 4849 - "map-age-cleaner-0.1.3" = { 4850 - name = "map-age-cleaner"; 4851 - packageName = "map-age-cleaner"; 4852 - version = "0.1.3"; 4853 - src = fetchurl { 4854 - url = "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz"; 4855 - sha512 = "bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w=="; 4856 - }; 4857 - }; 4858 - "map-cache-0.2.2" = { 4859 - name = "map-cache"; 4860 - packageName = "map-cache"; 4861 - version = "0.2.2"; 4862 - src = fetchurl { 4863 - url = "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz"; 4864 - sha1 = "c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"; 4865 - }; 4866 - }; 4867 - "map-obj-1.0.1" = { 4868 - name = "map-obj"; 4869 - packageName = "map-obj"; 4870 - version = "1.0.1"; 4871 - src = fetchurl { 4872 - url = "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz"; 4873 - sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d"; 4874 - }; 4875 - }; 4876 - "map-obj-4.3.0" = { 4877 - name = "map-obj"; 4878 - packageName = "map-obj"; 4879 - version = "4.3.0"; 4880 - src = fetchurl { 4881 - url = "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz"; 4882 - sha512 = "hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ=="; 4883 - }; 4884 - }; 4885 - "map-visit-1.0.0" = { 4886 - name = "map-visit"; 4887 - packageName = "map-visit"; 4888 - version = "1.0.0"; 4889 - src = fetchurl { 4890 - url = "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz"; 4891 - sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 4892 - }; 4893 - }; 4894 - "marked-0.7.0" = { 4895 - name = "marked"; 4896 - packageName = "marked"; 4897 - version = "0.7.0"; 4898 - src = fetchurl { 4899 - url = "https://registry.npmjs.org/marked/-/marked-0.7.0.tgz"; 4900 - sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg=="; 4901 - }; 4902 - }; 4903 - "marked-terminal-3.3.0" = { 4904 - name = "marked-terminal"; 4905 - packageName = "marked-terminal"; 4906 - version = "3.3.0"; 4907 - src = fetchurl { 4908 - url = "https://registry.npmjs.org/marked-terminal/-/marked-terminal-3.3.0.tgz"; 4909 - sha512 = "+IUQJ5VlZoAFsM5MHNT7g3RHSkA3eETqhRCdXv4niUMAKHQ7lb1yvAcuGPmm4soxhmtX13u4Li6ZToXtvSEH+A=="; 4910 - }; 4911 - }; 4912 - "md5-2.3.0" = { 4913 - name = "md5"; 4914 - packageName = "md5"; 4915 - version = "2.3.0"; 4916 - src = fetchurl { 4917 - url = "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz"; 4918 - sha512 = "T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g=="; 4919 - }; 4920 - }; 4921 - "mem-4.3.0" = { 4922 - name = "mem"; 4923 - packageName = "mem"; 4924 - version = "4.3.0"; 4925 - src = fetchurl { 4926 - url = "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz"; 4927 - sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w=="; 4928 - }; 4929 - }; 4930 - "meow-8.1.2" = { 4931 - name = "meow"; 4932 - packageName = "meow"; 4933 - version = "8.1.2"; 4934 - src = fetchurl { 4935 - url = "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz"; 4936 - sha512 = "r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q=="; 4937 - }; 4938 - }; 4939 - "merge-2.1.1" = { 4940 - name = "merge"; 4941 - packageName = "merge"; 4942 - version = "2.1.1"; 4943 - src = fetchurl { 4944 - url = "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz"; 4945 - sha512 = "jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w=="; 4946 - }; 4947 - }; 4948 - "merge-descriptors-1.0.1" = { 4949 - name = "merge-descriptors"; 4950 - packageName = "merge-descriptors"; 4951 - version = "1.0.1"; 4952 - src = fetchurl { 4953 - url = "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz"; 4954 - sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 4955 - }; 4956 - }; 4957 - "merge-stream-2.0.0" = { 4958 - name = "merge-stream"; 4959 - packageName = "merge-stream"; 4960 - version = "2.0.0"; 4961 - src = fetchurl { 4962 - url = "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz"; 4963 - sha512 = "abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w=="; 4964 - }; 4965 - }; 4966 - "merge2-1.4.1" = { 4967 - name = "merge2"; 4968 - packageName = "merge2"; 4969 - version = "1.4.1"; 4970 - src = fetchurl { 4971 - url = "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz"; 4972 - sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; 4973 - }; 4974 - }; 4975 - "micromatch-3.1.10" = { 4976 - name = "micromatch"; 4977 - packageName = "micromatch"; 4978 - version = "3.1.10"; 4979 - src = fetchurl { 4980 - url = "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz"; 4981 - sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 4982 - }; 4983 - }; 4984 - "micromatch-4.0.4" = { 4985 - name = "micromatch"; 4986 - packageName = "micromatch"; 4987 - version = "4.0.4"; 4988 - src = fetchurl { 4989 - url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"; 4990 - sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="; 4991 - }; 4992 - }; 4993 - "mime-1.2.11" = { 4994 - name = "mime"; 4995 - packageName = "mime"; 4996 - version = "1.2.11"; 4997 - src = fetchurl { 4998 - url = "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz"; 4999 - sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10"; 5000 - }; 5001 - }; 5002 - "mime-2.5.2" = { 5003 - name = "mime"; 5004 - packageName = "mime"; 5005 - version = "2.5.2"; 5006 - src = fetchurl { 5007 - url = "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz"; 5008 - sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg=="; 5009 - }; 5010 - }; 5011 - "mime-types-1.0.2" = { 5012 - name = "mime-types"; 5013 - packageName = "mime-types"; 5014 - version = "1.0.2"; 5015 - src = fetchurl { 5016 - url = "https://registry.npmjs.org/mime-types/-/mime-types-1.0.2.tgz"; 5017 - sha1 = "995ae1392ab8affcbfcb2641dd054e943c0d5dce"; 5018 - }; 5019 - }; 5020 - "mimic-fn-1.2.0" = { 5021 - name = "mimic-fn"; 5022 - packageName = "mimic-fn"; 5023 - version = "1.2.0"; 5024 - src = fetchurl { 5025 - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz"; 5026 - sha512 = "jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ=="; 5027 - }; 5028 - }; 5029 - "mimic-fn-2.1.0" = { 5030 - name = "mimic-fn"; 5031 - packageName = "mimic-fn"; 5032 - version = "2.1.0"; 5033 - src = fetchurl { 5034 - url = "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz"; 5035 - sha512 = "OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg=="; 5036 - }; 5037 - }; 5038 - "min-indent-1.0.1" = { 5039 - name = "min-indent"; 5040 - packageName = "min-indent"; 5041 - version = "1.0.1"; 5042 - src = fetchurl { 5043 - url = "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz"; 5044 - sha512 = "I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg=="; 5045 - }; 5046 - }; 5047 - "minimatch-3.0.4" = { 5048 - name = "minimatch"; 5049 - packageName = "minimatch"; 5050 - version = "3.0.4"; 5051 - src = fetchurl { 5052 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 5053 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 5054 - }; 5055 - }; 5056 - "minimist-0.0.8" = { 5057 - name = "minimist"; 5058 - packageName = "minimist"; 5059 - version = "0.0.8"; 5060 - src = fetchurl { 5061 - url = "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz"; 5062 - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 5063 - }; 5064 - }; 5065 - "minimist-1.2.5" = { 5066 - name = "minimist"; 5067 - packageName = "minimist"; 5068 - version = "1.2.5"; 5069 - src = fetchurl { 5070 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 5071 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 5072 - }; 5073 - }; 5074 - "minimist-options-4.1.0" = { 5075 - name = "minimist-options"; 5076 - packageName = "minimist-options"; 5077 - version = "4.1.0"; 5078 - src = fetchurl { 5079 - url = "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz"; 5080 - sha512 = "Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A=="; 5081 - }; 5082 - }; 5083 - "mixin-deep-1.3.2" = { 5084 - name = "mixin-deep"; 5085 - packageName = "mixin-deep"; 5086 - version = "1.3.2"; 5087 - src = fetchurl { 5088 - url = "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz"; 5089 - sha512 = "WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA=="; 5090 - }; 5091 - }; 5092 - "mkdirp-0.5.1" = { 5093 - name = "mkdirp"; 5094 - packageName = "mkdirp"; 5095 - version = "0.5.1"; 5096 - src = fetchurl { 5097 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz"; 5098 - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 5099 - }; 5100 - }; 5101 - "mocha-6.2.0" = { 5102 - name = "mocha"; 5103 - packageName = "mocha"; 5104 - version = "6.2.0"; 5105 - src = fetchurl { 5106 - url = "https://registry.npmjs.org/mocha/-/mocha-6.2.0.tgz"; 5107 - sha512 = "qwfFgY+7EKAAUAdv7VYMZQknI7YJSGesxHyhn6qD52DV8UcSZs5XwCifcZGMVIE4a5fbmhvbotxC0DLQ0oKohQ=="; 5108 - }; 5109 - }; 5110 - "mocha-junit-reporter-1.18.0" = { 5111 - name = "mocha-junit-reporter"; 5112 - packageName = "mocha-junit-reporter"; 5113 - version = "1.18.0"; 5114 - src = fetchurl { 5115 - url = "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-1.18.0.tgz"; 5116 - sha512 = "y3XuqKa2+HRYtg0wYyhW/XsLm2Ps+pqf9HaTAt7+MVUAKFJaNAHOrNseTZo9KCxjfIbxUWwckP5qCDDPUmjSWA=="; 5117 - }; 5118 - }; 5119 - "mocha-multi-reporters-1.1.7" = { 5120 - name = "mocha-multi-reporters"; 5121 - packageName = "mocha-multi-reporters"; 5122 - version = "1.1.7"; 5123 - src = fetchurl { 5124 - url = "https://registry.npmjs.org/mocha-multi-reporters/-/mocha-multi-reporters-1.1.7.tgz"; 5125 - sha1 = "cc7f3f4d32f478520941d852abb64d9988587d82"; 5126 - }; 5127 - }; 5128 - "modify-values-1.0.1" = { 5129 - name = "modify-values"; 5130 - packageName = "modify-values"; 5131 - version = "1.0.1"; 5132 - src = fetchurl { 5133 - url = "https://registry.npmjs.org/modify-values/-/modify-values-1.0.1.tgz"; 5134 - sha512 = "xV2bxeN6F7oYjZWTe/YPAy6MN2M+sL4u/Rlm2AHCIVGfo2p1yGmBHQ6vHehl4bRTZBdHu3TSkWdYgkwpYzAGSw=="; 5135 - }; 5136 - }; 5137 - "module-not-found-error-1.0.1" = { 5138 - name = "module-not-found-error"; 5139 - packageName = "module-not-found-error"; 5140 - version = "1.0.1"; 5141 - src = fetchurl { 5142 - url = "https://registry.npmjs.org/module-not-found-error/-/module-not-found-error-1.0.1.tgz"; 5143 - sha1 = "cf8b4ff4f29640674d6cdd02b0e3bc523c2bbdc0"; 5144 - }; 5145 - }; 5146 - "ms-2.0.0" = { 5147 - name = "ms"; 5148 - packageName = "ms"; 5149 - version = "2.0.0"; 5150 - src = fetchurl { 5151 - url = "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"; 5152 - sha1 = "5608aeadfc00be6c2901df5f9861788de0d597c8"; 5153 - }; 5154 - }; 5155 - "ms-2.1.1" = { 5156 - name = "ms"; 5157 - packageName = "ms"; 5158 - version = "2.1.1"; 5159 - src = fetchurl { 5160 - url = "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz"; 5161 - sha512 = "tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg=="; 5162 - }; 5163 - }; 5164 - "ms-2.1.2" = { 5165 - name = "ms"; 5166 - packageName = "ms"; 5167 - version = "2.1.2"; 5168 - src = fetchurl { 5169 - url = "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz"; 5170 - sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5171 - }; 5172 - }; 5173 - "ms-2.1.3" = { 5174 - name = "ms"; 5175 - packageName = "ms"; 5176 - version = "2.1.3"; 5177 - src = fetchurl { 5178 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 5179 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 5180 - }; 5181 - }; 5182 - "mute-stream-0.0.7" = { 5183 - name = "mute-stream"; 5184 - packageName = "mute-stream"; 5185 - version = "0.0.7"; 5186 - src = fetchurl { 5187 - url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz"; 5188 - sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; 5189 - }; 5190 - }; 5191 - "nan-2.15.0" = { 5192 - name = "nan"; 5193 - packageName = "nan"; 5194 - version = "2.15.0"; 5195 - src = fetchurl { 5196 - url = "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"; 5197 - sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="; 5198 - }; 5199 - }; 5200 - "nanomatch-1.2.13" = { 5201 - name = "nanomatch"; 5202 - packageName = "nanomatch"; 5203 - version = "1.2.13"; 5204 - src = fetchurl { 5205 - url = "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz"; 5206 - sha512 = "fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA=="; 5207 - }; 5208 - }; 5209 - "neo-async-2.6.2" = { 5210 - name = "neo-async"; 5211 - packageName = "neo-async"; 5212 - version = "2.6.2"; 5213 - src = fetchurl { 5214 - url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"; 5215 - sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 5216 - }; 5217 - }; 5218 - "nerf-dart-1.0.0" = { 5219 - name = "nerf-dart"; 5220 - packageName = "nerf-dart"; 5221 - version = "1.0.0"; 5222 - src = fetchurl { 5223 - url = "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz"; 5224 - sha1 = "e6dab7febf5ad816ea81cf5c629c5a0ebde72c1a"; 5225 - }; 5226 - }; 5227 - "nice-try-1.0.5" = { 5228 - name = "nice-try"; 5229 - packageName = "nice-try"; 5230 - version = "1.0.5"; 5231 - src = fetchurl { 5232 - url = "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz"; 5233 - sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 5234 - }; 5235 - }; 5236 - "nise-1.5.3" = { 5237 - name = "nise"; 5238 - packageName = "nise"; 5239 - version = "1.5.3"; 5240 - src = fetchurl { 5241 - url = "https://registry.npmjs.org/nise/-/nise-1.5.3.tgz"; 5242 - sha512 = "Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ=="; 5243 - }; 5244 - }; 5245 - "node-emoji-1.11.0" = { 5246 - name = "node-emoji"; 5247 - packageName = "node-emoji"; 5248 - version = "1.11.0"; 5249 - src = fetchurl { 5250 - url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz"; 5251 - sha512 = "wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A=="; 5252 - }; 5253 - }; 5254 - "node-environment-flags-1.0.5" = { 5255 - name = "node-environment-flags"; 5256 - packageName = "node-environment-flags"; 5257 - version = "1.0.5"; 5258 - src = fetchurl { 5259 - url = "https://registry.npmjs.org/node-environment-flags/-/node-environment-flags-1.0.5.tgz"; 5260 - sha512 = "VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ=="; 5261 - }; 5262 - }; 5263 - "node-fetch-2.6.5" = { 5264 - name = "node-fetch"; 5265 - packageName = "node-fetch"; 5266 - version = "2.6.5"; 5267 - src = fetchurl { 5268 - url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz"; 5269 - sha512 = "mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ=="; 5270 - }; 5271 - }; 5272 - "node-modules-regexp-1.0.0" = { 5273 - name = "node-modules-regexp"; 5274 - packageName = "node-modules-regexp"; 5275 - version = "1.0.0"; 5276 - src = fetchurl { 5277 - url = "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz"; 5278 - sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40"; 5279 - }; 5280 - }; 5281 - "node-preload-0.2.1" = { 5282 - name = "node-preload"; 5283 - packageName = "node-preload"; 5284 - version = "0.2.1"; 5285 - src = fetchurl { 5286 - url = "https://registry.npmjs.org/node-preload/-/node-preload-0.2.1.tgz"; 5287 - sha512 = "RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ=="; 5288 - }; 5289 - }; 5290 - "node-releases-2.0.0" = { 5291 - name = "node-releases"; 5292 - packageName = "node-releases"; 5293 - version = "2.0.0"; 5294 - src = fetchurl { 5295 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz"; 5296 - sha512 = "aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA=="; 5297 - }; 5298 - }; 5299 - "node-uuid-1.4.8" = { 5300 - name = "node-uuid"; 5301 - packageName = "node-uuid"; 5302 - version = "1.4.8"; 5303 - src = fetchurl { 5304 - url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; 5305 - sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; 5306 - }; 5307 - }; 5308 - "nodemon-1.19.1" = { 5309 - name = "nodemon"; 5310 - packageName = "nodemon"; 5311 - version = "1.19.1"; 5312 - src = fetchurl { 5313 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.19.1.tgz"; 5314 - sha512 = "/DXLzd/GhiaDXXbGId5BzxP1GlsqtMGM9zTmkWrgXtSqjKmGSbLicM/oAy4FR0YWm14jCHRwnR31AHS2dYFHrg=="; 5315 - }; 5316 - }; 5317 - "nopt-1.0.10" = { 5318 - name = "nopt"; 5319 - packageName = "nopt"; 5320 - version = "1.0.10"; 5321 - src = fetchurl { 5322 - url = "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz"; 5323 - sha1 = "6ddd21bd2a31417b92727dd585f8a6f37608ebee"; 5324 - }; 5325 - }; 5326 - "normalize-package-data-2.5.0" = { 5327 - name = "normalize-package-data"; 5328 - packageName = "normalize-package-data"; 5329 - version = "2.5.0"; 5330 - src = fetchurl { 5331 - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz"; 5332 - sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA=="; 5333 - }; 5334 - }; 5335 - "normalize-package-data-3.0.3" = { 5336 - name = "normalize-package-data"; 5337 - packageName = "normalize-package-data"; 5338 - version = "3.0.3"; 5339 - src = fetchurl { 5340 - url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz"; 5341 - sha512 = "p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA=="; 5342 - }; 5343 - }; 5344 - "normalize-path-2.1.1" = { 5345 - name = "normalize-path"; 5346 - packageName = "normalize-path"; 5347 - version = "2.1.1"; 5348 - src = fetchurl { 5349 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz"; 5350 - sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"; 5351 - }; 5352 - }; 5353 - "normalize-path-3.0.0" = { 5354 - name = "normalize-path"; 5355 - packageName = "normalize-path"; 5356 - version = "3.0.0"; 5357 - src = fetchurl { 5358 - url = "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz"; 5359 - sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA=="; 5360 - }; 5361 - }; 5362 - "normalize-url-4.5.1" = { 5363 - name = "normalize-url"; 5364 - packageName = "normalize-url"; 5365 - version = "4.5.1"; 5366 - src = fetchurl { 5367 - url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz"; 5368 - sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA=="; 5369 - }; 5370 - }; 5371 - "npm-6.14.15" = { 5372 - name = "npm"; 5373 - packageName = "npm"; 5374 - version = "6.14.15"; 5375 - src = fetchurl { 5376 - url = "https://registry.npmjs.org/npm/-/npm-6.14.15.tgz"; 5377 - sha512 = "dkcQc4n+DiJAMYG2haNAMyJbmuvevjXz+WC9dCUzodw8EovwTIc6CATSsTEplCY6c0jG4OshxFGFJsrnKJguWA=="; 5378 - }; 5379 - }; 5380 - "npm-run-path-2.0.2" = { 5381 - name = "npm-run-path"; 5382 - packageName = "npm-run-path"; 5383 - version = "2.0.2"; 5384 - src = fetchurl { 5385 - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz"; 5386 - sha1 = "35a9232dfa35d7067b4cb2ddf2357b1871536c5f"; 5387 - }; 5388 - }; 5389 - "npm-run-path-4.0.1" = { 5390 - name = "npm-run-path"; 5391 - packageName = "npm-run-path"; 5392 - version = "4.0.1"; 5393 - src = fetchurl { 5394 - url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz"; 5395 - sha512 = "S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw=="; 5396 - }; 5397 - }; 5398 - "number-is-nan-1.0.1" = { 5399 - name = "number-is-nan"; 5400 - packageName = "number-is-nan"; 5401 - version = "1.0.1"; 5402 - src = fetchurl { 5403 - url = "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz"; 5404 - sha1 = "097b602b53422a522c1afb8790318336941a011d"; 5405 - }; 5406 - }; 5407 - "nyc-15.1.0" = { 5408 - name = "nyc"; 5409 - packageName = "nyc"; 5410 - version = "15.1.0"; 5411 - src = fetchurl { 5412 - url = "https://registry.npmjs.org/nyc/-/nyc-15.1.0.tgz"; 5413 - sha512 = "jMW04n9SxKdKi1ZMGhvUTHBN0EICCRkHemEoE5jm6mTYcqcdas0ATzgUgejlQUHMvpnOZqGB5Xxsv9KxJW1j8A=="; 5414 - }; 5415 - }; 5416 - "oauth-sign-0.4.0" = { 5417 - name = "oauth-sign"; 5418 - packageName = "oauth-sign"; 5419 - version = "0.4.0"; 5420 - src = fetchurl { 5421 - url = "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.4.0.tgz"; 5422 - sha1 = "f22956f31ea7151a821e5f2fb32c113cad8b9f69"; 5423 - }; 5424 - }; 5425 - "object-copy-0.1.0" = { 5426 - name = "object-copy"; 5427 - packageName = "object-copy"; 5428 - version = "0.1.0"; 5429 - src = fetchurl { 5430 - url = "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz"; 5431 - sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 5432 - }; 5433 - }; 5434 - "object-inspect-1.11.0" = { 5435 - name = "object-inspect"; 5436 - packageName = "object-inspect"; 5437 - version = "1.11.0"; 5438 - src = fetchurl { 5439 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz"; 5440 - sha512 = "jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg=="; 5441 - }; 5442 - }; 5443 - "object-keys-1.1.1" = { 5444 - name = "object-keys"; 5445 - packageName = "object-keys"; 5446 - version = "1.1.1"; 5447 - src = fetchurl { 5448 - url = "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz"; 5449 - sha512 = "NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA=="; 5450 - }; 5451 - }; 5452 - "object-visit-1.0.1" = { 5453 - name = "object-visit"; 5454 - packageName = "object-visit"; 5455 - version = "1.0.1"; 5456 - src = fetchurl { 5457 - url = "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz"; 5458 - sha1 = "f79c4493af0c5377b59fe39d395e41042dd045bb"; 5459 - }; 5460 - }; 5461 - "object.assign-4.1.0" = { 5462 - name = "object.assign"; 5463 - packageName = "object.assign"; 5464 - version = "4.1.0"; 5465 - src = fetchurl { 5466 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.0.tgz"; 5467 - sha512 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w=="; 5468 - }; 5469 - }; 5470 - "object.assign-4.1.2" = { 5471 - name = "object.assign"; 5472 - packageName = "object.assign"; 5473 - version = "4.1.2"; 5474 - src = fetchurl { 5475 - url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz"; 5476 - sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ=="; 5477 - }; 5478 - }; 5479 - "object.getownpropertydescriptors-2.1.3" = { 5480 - name = "object.getownpropertydescriptors"; 5481 - packageName = "object.getownpropertydescriptors"; 5482 - version = "2.1.3"; 5483 - src = fetchurl { 5484 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz"; 5485 - sha512 = "VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw=="; 5486 - }; 5487 - }; 5488 - "object.pick-1.3.0" = { 5489 - name = "object.pick"; 5490 - packageName = "object.pick"; 5491 - version = "1.3.0"; 5492 - src = fetchurl { 5493 - url = "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz"; 5494 - sha1 = "87a10ac4c1694bd2e1cbf53591a66141fb5dd747"; 5495 - }; 5496 - }; 5497 - "octokit-pagination-methods-1.1.0" = { 5498 - name = "octokit-pagination-methods"; 5499 - packageName = "octokit-pagination-methods"; 5500 - version = "1.1.0"; 5501 - src = fetchurl { 5502 - url = "https://registry.npmjs.org/octokit-pagination-methods/-/octokit-pagination-methods-1.1.0.tgz"; 5503 - sha512 = "fZ4qZdQ2nxJvtcasX7Ghl+WlWS/d9IgnBIwFZXVNNZUmzpno91SX5bc5vuxiuKoCtK78XxGGNuSCrDC7xYB3OQ=="; 5504 - }; 5505 - }; 5506 - "once-1.4.0" = { 5507 - name = "once"; 5508 - packageName = "once"; 5509 - version = "1.4.0"; 5510 - src = fetchurl { 5511 - url = "https://registry.npmjs.org/once/-/once-1.4.0.tgz"; 5512 - sha1 = "583b1aa775961d4b113ac17d9c50baef9dd76bd1"; 5513 - }; 5514 - }; 5515 - "onetime-2.0.1" = { 5516 - name = "onetime"; 5517 - packageName = "onetime"; 5518 - version = "2.0.1"; 5519 - src = fetchurl { 5520 - url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz"; 5521 - sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 5522 - }; 5523 - }; 5524 - "onetime-5.1.2" = { 5525 - name = "onetime"; 5526 - packageName = "onetime"; 5527 - version = "5.1.2"; 5528 - src = fetchurl { 5529 - url = "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz"; 5530 - sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 5531 - }; 5532 - }; 5533 - "opt-cli-1.5.1" = { 5534 - name = "opt-cli"; 5535 - packageName = "opt-cli"; 5536 - version = "1.5.1"; 5537 - src = fetchurl { 5538 - url = "https://registry.npmjs.org/opt-cli/-/opt-cli-1.5.1.tgz"; 5539 - sha1 = "04db447b13c96b992eb31685266f4ed0d9736dc2"; 5540 - }; 5541 - }; 5542 - "os-locale-3.1.0" = { 5543 - name = "os-locale"; 5544 - packageName = "os-locale"; 5545 - version = "3.1.0"; 5546 - src = fetchurl { 5547 - url = "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz"; 5548 - sha512 = "Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q=="; 5549 - }; 5550 - }; 5551 - "os-name-3.1.0" = { 5552 - name = "os-name"; 5553 - packageName = "os-name"; 5554 - version = "3.1.0"; 5555 - src = fetchurl { 5556 - url = "https://registry.npmjs.org/os-name/-/os-name-3.1.0.tgz"; 5557 - sha512 = "h8L+8aNjNcMpo/mAIBPn5PXCM16iyPGjHNWo6U1YO8sJTMHtEtyczI6QJnLoplswm6goopQkqc7OAnjhWcugVg=="; 5558 - }; 5559 - }; 5560 - "os-tmpdir-1.0.2" = { 5561 - name = "os-tmpdir"; 5562 - packageName = "os-tmpdir"; 5563 - version = "1.0.2"; 5564 - src = fetchurl { 5565 - url = "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz"; 5566 - sha1 = "bbe67406c79aa85c5cfec766fe5734555dfa1274"; 5567 - }; 5568 - }; 5569 - "p-defer-1.0.0" = { 5570 - name = "p-defer"; 5571 - packageName = "p-defer"; 5572 - version = "1.0.0"; 5573 - src = fetchurl { 5574 - url = "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz"; 5575 - sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; 5576 - }; 5577 - }; 5578 - "p-filter-2.1.0" = { 5579 - name = "p-filter"; 5580 - packageName = "p-filter"; 5581 - version = "2.1.0"; 5582 - src = fetchurl { 5583 - url = "https://registry.npmjs.org/p-filter/-/p-filter-2.1.0.tgz"; 5584 - sha512 = "ZBxxZ5sL2HghephhpGAQdoskxplTwr7ICaehZwLIlfL6acuVgZPm8yBNuRAFBGEqtD/hmUeq9eqLg2ys9Xr/yw=="; 5585 - }; 5586 - }; 5587 - "p-finally-1.0.0" = { 5588 - name = "p-finally"; 5589 - packageName = "p-finally"; 5590 - version = "1.0.0"; 5591 - src = fetchurl { 5592 - url = "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz"; 5593 - sha1 = "3fbcfb15b899a44123b34b6dcc18b724336a2cae"; 5594 - }; 5595 - }; 5596 - "p-finally-2.0.1" = { 5597 - name = "p-finally"; 5598 - packageName = "p-finally"; 5599 - version = "2.0.1"; 5600 - src = fetchurl { 5601 - url = "https://registry.npmjs.org/p-finally/-/p-finally-2.0.1.tgz"; 5602 - sha512 = "vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw=="; 5603 - }; 5604 - }; 5605 - "p-is-promise-2.1.0" = { 5606 - name = "p-is-promise"; 5607 - packageName = "p-is-promise"; 5608 - version = "2.1.0"; 5609 - src = fetchurl { 5610 - url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz"; 5611 - sha512 = "Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg=="; 5612 - }; 5613 - }; 5614 - "p-is-promise-3.0.0" = { 5615 - name = "p-is-promise"; 5616 - packageName = "p-is-promise"; 5617 - version = "3.0.0"; 5618 - src = fetchurl { 5619 - url = "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz"; 5620 - sha512 = "Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ=="; 5621 - }; 5622 - }; 5623 - "p-limit-1.3.0" = { 5624 - name = "p-limit"; 5625 - packageName = "p-limit"; 5626 - version = "1.3.0"; 5627 - src = fetchurl { 5628 - url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz"; 5629 - sha512 = "vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q=="; 5630 - }; 5631 - }; 5632 - "p-limit-2.3.0" = { 5633 - name = "p-limit"; 5634 - packageName = "p-limit"; 5635 - version = "2.3.0"; 5636 - src = fetchurl { 5637 - url = "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"; 5638 - sha512 = "//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w=="; 5639 - }; 5640 - }; 5641 - "p-locate-2.0.0" = { 5642 - name = "p-locate"; 5643 - packageName = "p-locate"; 5644 - version = "2.0.0"; 5645 - src = fetchurl { 5646 - url = "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz"; 5647 - sha1 = "20a0103b222a70c8fd39cc2e580680f3dde5ec43"; 5648 - }; 5649 - }; 5650 - "p-locate-3.0.0" = { 5651 - name = "p-locate"; 5652 - packageName = "p-locate"; 5653 - version = "3.0.0"; 5654 - src = fetchurl { 5655 - url = "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz"; 5656 - sha512 = "x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ=="; 5657 - }; 5658 - }; 5659 - "p-locate-4.1.0" = { 5660 - name = "p-locate"; 5661 - packageName = "p-locate"; 5662 - version = "4.1.0"; 5663 - src = fetchurl { 5664 - url = "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz"; 5665 - sha512 = "R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A=="; 5666 - }; 5667 - }; 5668 - "p-map-2.1.0" = { 5669 - name = "p-map"; 5670 - packageName = "p-map"; 5671 - version = "2.1.0"; 5672 - src = fetchurl { 5673 - url = "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz"; 5674 - sha512 = "y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw=="; 5675 - }; 5676 - }; 5677 - "p-map-3.0.0" = { 5678 - name = "p-map"; 5679 - packageName = "p-map"; 5680 - version = "3.0.0"; 5681 - src = fetchurl { 5682 - url = "https://registry.npmjs.org/p-map/-/p-map-3.0.0.tgz"; 5683 - sha512 = "d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ=="; 5684 - }; 5685 - }; 5686 - "p-reduce-2.1.0" = { 5687 - name = "p-reduce"; 5688 - packageName = "p-reduce"; 5689 - version = "2.1.0"; 5690 - src = fetchurl { 5691 - url = "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz"; 5692 - sha512 = "2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw=="; 5693 - }; 5694 - }; 5695 - "p-retry-4.6.1" = { 5696 - name = "p-retry"; 5697 - packageName = "p-retry"; 5698 - version = "4.6.1"; 5699 - src = fetchurl { 5700 - url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz"; 5701 - sha512 = "e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA=="; 5702 - }; 5703 - }; 5704 - "p-try-1.0.0" = { 5705 - name = "p-try"; 5706 - packageName = "p-try"; 5707 - version = "1.0.0"; 5708 - src = fetchurl { 5709 - url = "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz"; 5710 - sha1 = "cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"; 5711 - }; 5712 - }; 5713 - "p-try-2.2.0" = { 5714 - name = "p-try"; 5715 - packageName = "p-try"; 5716 - version = "2.2.0"; 5717 - src = fetchurl { 5718 - url = "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz"; 5719 - sha512 = "R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ=="; 5720 - }; 5721 - }; 5722 - "package-hash-4.0.0" = { 5723 - name = "package-hash"; 5724 - packageName = "package-hash"; 5725 - version = "4.0.0"; 5726 - src = fetchurl { 5727 - url = "https://registry.npmjs.org/package-hash/-/package-hash-4.0.0.tgz"; 5728 - sha512 = "whdkPIooSu/bASggZ96BWVvZTRMOFxnyUG5PnTSGKoJE2gd5mbVNmR2Nj20QFzxYYgAXpoqC+AiXzl+UMRh7zQ=="; 5729 - }; 5730 - }; 5731 - "package-json-4.0.1" = { 5732 - name = "package-json"; 5733 - packageName = "package-json"; 5734 - version = "4.0.1"; 5735 - src = fetchurl { 5736 - url = "https://registry.npmjs.org/package-json/-/package-json-4.0.1.tgz"; 5737 - sha1 = "8869a0401253661c4c4ca3da6c2121ed555f5eed"; 5738 - }; 5739 - }; 5740 - "pad-right-0.2.2" = { 5741 - name = "pad-right"; 5742 - packageName = "pad-right"; 5743 - version = "0.2.2"; 5744 - src = fetchurl { 5745 - url = "https://registry.npmjs.org/pad-right/-/pad-right-0.2.2.tgz"; 5746 - sha1 = "6fbc924045d244f2a2a244503060d3bfc6009774"; 5747 - }; 5748 - }; 5749 - "parent-module-1.0.1" = { 5750 - name = "parent-module"; 5751 - packageName = "parent-module"; 5752 - version = "1.0.1"; 5753 - src = fetchurl { 5754 - url = "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz"; 5755 - sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 5756 - }; 5757 - }; 5758 - "parse-json-4.0.0" = { 5759 - name = "parse-json"; 5760 - packageName = "parse-json"; 5761 - version = "4.0.0"; 5762 - src = fetchurl { 5763 - url = "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz"; 5764 - sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; 5765 - }; 5766 - }; 5767 - "parse-json-5.2.0" = { 5768 - name = "parse-json"; 5769 - packageName = "parse-json"; 5770 - version = "5.2.0"; 5771 - src = fetchurl { 5772 - url = "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"; 5773 - sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; 5774 - }; 5775 - }; 5776 - "parse-passwd-1.0.0" = { 5777 - name = "parse-passwd"; 5778 - packageName = "parse-passwd"; 5779 - version = "1.0.0"; 5780 - src = fetchurl { 5781 - url = "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz"; 5782 - sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; 5783 - }; 5784 - }; 5785 - "pascalcase-0.1.1" = { 5786 - name = "pascalcase"; 5787 - packageName = "pascalcase"; 5788 - version = "0.1.1"; 5789 - src = fetchurl { 5790 - url = "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz"; 5791 - sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; 5792 - }; 5793 - }; 5794 - "path-dirname-1.0.2" = { 5795 - name = "path-dirname"; 5796 - packageName = "path-dirname"; 5797 - version = "1.0.2"; 5798 - src = fetchurl { 5799 - url = "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz"; 5800 - sha1 = "cc33d24d525e099a5388c0336c6e32b9160609e0"; 5801 - }; 5802 - }; 5803 - "path-exists-3.0.0" = { 5804 - name = "path-exists"; 5805 - packageName = "path-exists"; 5806 - version = "3.0.0"; 5807 - src = fetchurl { 5808 - url = "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz"; 5809 - sha1 = "ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"; 5810 - }; 5811 - }; 5812 - "path-exists-4.0.0" = { 5813 - name = "path-exists"; 5814 - packageName = "path-exists"; 5815 - version = "4.0.0"; 5816 - src = fetchurl { 5817 - url = "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz"; 5818 - sha512 = "ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w=="; 5819 - }; 5820 - }; 5821 - "path-is-absolute-1.0.1" = { 5822 - name = "path-is-absolute"; 5823 - packageName = "path-is-absolute"; 5824 - version = "1.0.1"; 5825 - src = fetchurl { 5826 - url = "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz"; 5827 - sha1 = "174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"; 5828 - }; 5829 - }; 5830 - "path-is-inside-1.0.2" = { 5831 - name = "path-is-inside"; 5832 - packageName = "path-is-inside"; 5833 - version = "1.0.2"; 5834 - src = fetchurl { 5835 - url = "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz"; 5836 - sha1 = "365417dede44430d1c11af61027facf074bdfc53"; 5837 - }; 5838 - }; 5839 - "path-key-2.0.1" = { 5840 - name = "path-key"; 5841 - packageName = "path-key"; 5842 - version = "2.0.1"; 5843 - src = fetchurl { 5844 - url = "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz"; 5845 - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 5846 - }; 5847 - }; 5848 - "path-key-3.1.1" = { 5849 - name = "path-key"; 5850 - packageName = "path-key"; 5851 - version = "3.1.1"; 5852 - src = fetchurl { 5853 - url = "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz"; 5854 - sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q=="; 5855 - }; 5856 - }; 5857 - "path-parse-1.0.7" = { 5858 - name = "path-parse"; 5859 - packageName = "path-parse"; 5860 - version = "1.0.7"; 5861 - src = fetchurl { 5862 - url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz"; 5863 - sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw=="; 5864 - }; 5865 - }; 5866 - "path-to-regexp-1.8.0" = { 5867 - name = "path-to-regexp"; 5868 - packageName = "path-to-regexp"; 5869 - version = "1.8.0"; 5870 - src = fetchurl { 5871 - url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.8.0.tgz"; 5872 - sha512 = "n43JRhlUKUAlibEJhPeir1ncUID16QnEjNpwzNdO3Lm4ywrBpBZ5oLD0I6br9evr1Y9JTqwRtAh7JLoOzAQdVA=="; 5873 - }; 5874 - }; 5875 - "path-type-3.0.0" = { 5876 - name = "path-type"; 5877 - packageName = "path-type"; 5878 - version = "3.0.0"; 5879 - src = fetchurl { 5880 - url = "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz"; 5881 - sha512 = "T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg=="; 5882 - }; 5883 - }; 5884 - "path-type-4.0.0" = { 5885 - name = "path-type"; 5886 - packageName = "path-type"; 5887 - version = "4.0.0"; 5888 - src = fetchurl { 5889 - url = "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz"; 5890 - sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw=="; 5891 - }; 5892 - }; 5893 - "pathval-1.1.1" = { 5894 - name = "pathval"; 5895 - packageName = "pathval"; 5896 - version = "1.1.1"; 5897 - src = fetchurl { 5898 - url = "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz"; 5899 - sha512 = "Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ=="; 5900 - }; 5901 - }; 5902 - "picocolors-1.0.0" = { 5903 - name = "picocolors"; 5904 - packageName = "picocolors"; 5905 - version = "1.0.0"; 5906 - src = fetchurl { 5907 - url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz"; 5908 - sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 5909 - }; 5910 - }; 5911 - "picomatch-2.3.0" = { 5912 - name = "picomatch"; 5913 - packageName = "picomatch"; 5914 - version = "2.3.0"; 5915 - src = fetchurl { 5916 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 5917 - sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 5918 - }; 5919 - }; 5920 - "pify-3.0.0" = { 5921 - name = "pify"; 5922 - packageName = "pify"; 5923 - version = "3.0.0"; 5924 - src = fetchurl { 5925 - url = "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz"; 5926 - sha1 = "e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"; 5927 - }; 5928 - }; 5929 - "pify-4.0.1" = { 5930 - name = "pify"; 5931 - packageName = "pify"; 5932 - version = "4.0.1"; 5933 - src = fetchurl { 5934 - url = "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"; 5935 - sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 5936 - }; 5937 - }; 5938 - "pirates-4.0.1" = { 5939 - name = "pirates"; 5940 - packageName = "pirates"; 5941 - version = "4.0.1"; 5942 - src = fetchurl { 5943 - url = "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz"; 5944 - sha512 = "WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA=="; 5945 - }; 5946 - }; 5947 - "pkg-conf-2.1.0" = { 5948 - name = "pkg-conf"; 5949 - packageName = "pkg-conf"; 5950 - version = "2.1.0"; 5951 - src = fetchurl { 5952 - url = "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz"; 5953 - sha1 = "2126514ca6f2abfebd168596df18ba57867f0058"; 5954 - }; 5955 - }; 5956 - "pkg-dir-3.0.0" = { 5957 - name = "pkg-dir"; 5958 - packageName = "pkg-dir"; 5959 - version = "3.0.0"; 5960 - src = fetchurl { 5961 - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz"; 5962 - sha512 = "/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw=="; 5963 - }; 5964 - }; 5965 - "pkg-dir-4.2.0" = { 5966 - name = "pkg-dir"; 5967 - packageName = "pkg-dir"; 5968 - version = "4.2.0"; 5969 - src = fetchurl { 5970 - url = "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz"; 5971 - sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 5972 - }; 5973 - }; 5974 - "posix-character-classes-0.1.1" = { 5975 - name = "posix-character-classes"; 5976 - packageName = "posix-character-classes"; 5977 - version = "0.1.1"; 5978 - src = fetchurl { 5979 - url = "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz"; 5980 - sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 5981 - }; 5982 - }; 5983 - "prepend-http-1.0.4" = { 5984 - name = "prepend-http"; 5985 - packageName = "prepend-http"; 5986 - version = "1.0.4"; 5987 - src = fetchurl { 5988 - url = "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz"; 5989 - sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"; 5990 - }; 5991 - }; 5992 - "process-nextick-args-2.0.1" = { 5993 - name = "process-nextick-args"; 5994 - packageName = "process-nextick-args"; 5995 - version = "2.0.1"; 5996 - src = fetchurl { 5997 - url = "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz"; 5998 - sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 5999 - }; 6000 - }; 6001 - "process-on-spawn-1.0.0" = { 6002 - name = "process-on-spawn"; 6003 - packageName = "process-on-spawn"; 6004 - version = "1.0.0"; 6005 - src = fetchurl { 6006 - url = "https://registry.npmjs.org/process-on-spawn/-/process-on-spawn-1.0.0.tgz"; 6007 - sha512 = "1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg=="; 6008 - }; 6009 - }; 6010 - "proxyquire-2.1.0" = { 6011 - name = "proxyquire"; 6012 - packageName = "proxyquire"; 6013 - version = "2.1.0"; 6014 - src = fetchurl { 6015 - url = "https://registry.npmjs.org/proxyquire/-/proxyquire-2.1.0.tgz"; 6016 - sha512 = "kptdFArCfGRtQFv3Qwjr10lwbEV0TBJYvfqzhwucyfEXqVgmnAkyEw/S3FYzR5HI9i5QOq4rcqQjZ6AlknlCDQ=="; 6017 - }; 6018 - }; 6019 - "pseudomap-1.0.2" = { 6020 - name = "pseudomap"; 6021 - packageName = "pseudomap"; 6022 - version = "1.0.2"; 6023 - src = fetchurl { 6024 - url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 6025 - sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 6026 - }; 6027 - }; 6028 - "psl-1.8.0" = { 6029 - name = "psl"; 6030 - packageName = "psl"; 6031 - version = "1.8.0"; 6032 - src = fetchurl { 6033 - url = "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz"; 6034 - sha512 = "RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="; 6035 - }; 6036 - }; 6037 - "pstree.remy-1.1.8" = { 6038 - name = "pstree.remy"; 6039 - packageName = "pstree.remy"; 6040 - version = "1.1.8"; 6041 - src = fetchurl { 6042 - url = "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz"; 6043 - sha512 = "77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w=="; 6044 - }; 6045 - }; 6046 - "pump-3.0.0" = { 6047 - name = "pump"; 6048 - packageName = "pump"; 6049 - version = "3.0.0"; 6050 - src = fetchurl { 6051 - url = "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz"; 6052 - sha512 = "LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww=="; 6053 - }; 6054 - }; 6055 - "punycode-2.1.1" = { 6056 - name = "punycode"; 6057 - packageName = "punycode"; 6058 - version = "2.1.1"; 6059 - src = fetchurl { 6060 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 6061 - sha512 = "XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="; 6062 - }; 6063 - }; 6064 - "q-1.5.1" = { 6065 - name = "q"; 6066 - packageName = "q"; 6067 - version = "1.5.1"; 6068 - src = fetchurl { 6069 - url = "https://registry.npmjs.org/q/-/q-1.5.1.tgz"; 6070 - sha1 = "7e32f75b41381291d04611f1bf14109ac00651d7"; 6071 - }; 6072 - }; 6073 - "qs-1.2.2" = { 6074 - name = "qs"; 6075 - packageName = "qs"; 6076 - version = "1.2.2"; 6077 - src = fetchurl { 6078 - url = "https://registry.npmjs.org/qs/-/qs-1.2.2.tgz"; 6079 - sha1 = "19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88"; 6080 - }; 6081 - }; 6082 - "queue-microtask-1.2.3" = { 6083 - name = "queue-microtask"; 6084 - packageName = "queue-microtask"; 6085 - version = "1.2.3"; 6086 - src = fetchurl { 6087 - url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 6088 - sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 6089 - }; 6090 - }; 6091 - "quick-lru-4.0.1" = { 6092 - name = "quick-lru"; 6093 - packageName = "quick-lru"; 6094 - version = "4.0.1"; 6095 - src = fetchurl { 6096 - url = "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz"; 6097 - sha512 = "ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g=="; 6098 - }; 6099 - }; 6100 - "rc-1.2.8" = { 6101 - name = "rc"; 6102 - packageName = "rc"; 6103 - version = "1.2.8"; 6104 - src = fetchurl { 6105 - url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; 6106 - sha512 = "y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw=="; 6107 - }; 6108 - }; 6109 - "read-pkg-3.0.0" = { 6110 - name = "read-pkg"; 6111 - packageName = "read-pkg"; 6112 - version = "3.0.0"; 6113 - src = fetchurl { 6114 - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz"; 6115 - sha1 = "9cbc686978fee65d16c00e2b19c237fcf6e38389"; 6116 - }; 6117 - }; 6118 - "read-pkg-5.2.0" = { 6119 - name = "read-pkg"; 6120 - packageName = "read-pkg"; 6121 - version = "5.2.0"; 6122 - src = fetchurl { 6123 - url = "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz"; 6124 - sha512 = "Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg=="; 6125 - }; 6126 - }; 6127 - "read-pkg-up-4.0.0" = { 6128 - name = "read-pkg-up"; 6129 - packageName = "read-pkg-up"; 6130 - version = "4.0.0"; 6131 - src = fetchurl { 6132 - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz"; 6133 - sha512 = "6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA=="; 6134 - }; 6135 - }; 6136 - "read-pkg-up-7.0.1" = { 6137 - name = "read-pkg-up"; 6138 - packageName = "read-pkg-up"; 6139 - version = "7.0.1"; 6140 - src = fetchurl { 6141 - url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz"; 6142 - sha512 = "zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg=="; 6143 - }; 6144 - }; 6145 - "readable-stream-1.0.34" = { 6146 - name = "readable-stream"; 6147 - packageName = "readable-stream"; 6148 - version = "1.0.34"; 6149 - src = fetchurl { 6150 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz"; 6151 - sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; 6152 - }; 6153 - }; 6154 - "readable-stream-2.3.7" = { 6155 - name = "readable-stream"; 6156 - packageName = "readable-stream"; 6157 - version = "2.3.7"; 6158 - src = fetchurl { 6159 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz"; 6160 - sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw=="; 6161 - }; 6162 - }; 6163 - "readable-stream-3.6.0" = { 6164 - name = "readable-stream"; 6165 - packageName = "readable-stream"; 6166 - version = "3.6.0"; 6167 - src = fetchurl { 6168 - url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz"; 6169 - sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 6170 - }; 6171 - }; 6172 - "readdirp-2.2.1" = { 6173 - name = "readdirp"; 6174 - packageName = "readdirp"; 6175 - version = "2.2.1"; 6176 - src = fetchurl { 6177 - url = "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz"; 6178 - sha512 = "1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ=="; 6179 - }; 6180 - }; 6181 - "redent-3.0.0" = { 6182 - name = "redent"; 6183 - packageName = "redent"; 6184 - version = "3.0.0"; 6185 - src = fetchurl { 6186 - url = "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz"; 6187 - sha512 = "6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg=="; 6188 - }; 6189 - }; 6190 - "redeyed-2.1.1" = { 6191 - name = "redeyed"; 6192 - packageName = "redeyed"; 6193 - version = "2.1.1"; 6194 - src = fetchurl { 6195 - url = "https://registry.npmjs.org/redeyed/-/redeyed-2.1.1.tgz"; 6196 - sha1 = "8984b5815d99cb220469c99eeeffe38913e6cc0b"; 6197 - }; 6198 - }; 6199 - "regenerate-1.4.2" = { 6200 - name = "regenerate"; 6201 - packageName = "regenerate"; 6202 - version = "1.4.2"; 6203 - src = fetchurl { 6204 - url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz"; 6205 - sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 6206 - }; 6207 - }; 6208 - "regenerate-unicode-properties-9.0.0" = { 6209 - name = "regenerate-unicode-properties"; 6210 - packageName = "regenerate-unicode-properties"; 6211 - version = "9.0.0"; 6212 - src = fetchurl { 6213 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz"; 6214 - sha512 = "3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA=="; 6215 - }; 6216 - }; 6217 - "regenerator-runtime-0.13.9" = { 6218 - name = "regenerator-runtime"; 6219 - packageName = "regenerator-runtime"; 6220 - version = "0.13.9"; 6221 - src = fetchurl { 6222 - url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz"; 6223 - sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 6224 - }; 6225 - }; 6226 - "regenerator-transform-0.14.5" = { 6227 - name = "regenerator-transform"; 6228 - packageName = "regenerator-transform"; 6229 - version = "0.14.5"; 6230 - src = fetchurl { 6231 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; 6232 - sha512 = "eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="; 6233 - }; 6234 - }; 6235 - "regex-not-1.0.2" = { 6236 - name = "regex-not"; 6237 - packageName = "regex-not"; 6238 - version = "1.0.2"; 6239 - src = fetchurl { 6240 - url = "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz"; 6241 - sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 6242 - }; 6243 - }; 6244 - "regexpu-core-4.8.0" = { 6245 - name = "regexpu-core"; 6246 - packageName = "regexpu-core"; 6247 - version = "4.8.0"; 6248 - src = fetchurl { 6249 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz"; 6250 - sha512 = "1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg=="; 6251 - }; 6252 - }; 6253 - "registry-auth-token-3.4.0" = { 6254 - name = "registry-auth-token"; 6255 - packageName = "registry-auth-token"; 6256 - version = "3.4.0"; 6257 - src = fetchurl { 6258 - url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.4.0.tgz"; 6259 - sha512 = "4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A=="; 6260 - }; 6261 - }; 6262 - "registry-auth-token-4.2.1" = { 6263 - name = "registry-auth-token"; 6264 - packageName = "registry-auth-token"; 6265 - version = "4.2.1"; 6266 - src = fetchurl { 6267 - url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz"; 6268 - sha512 = "6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw=="; 6269 - }; 6270 - }; 6271 - "registry-url-3.1.0" = { 6272 - name = "registry-url"; 6273 - packageName = "registry-url"; 6274 - version = "3.1.0"; 6275 - src = fetchurl { 6276 - url = "https://registry.npmjs.org/registry-url/-/registry-url-3.1.0.tgz"; 6277 - sha1 = "3d4ef870f73dde1d77f0cf9a381432444e174942"; 6278 - }; 6279 - }; 6280 - "regjsgen-0.5.2" = { 6281 - name = "regjsgen"; 6282 - packageName = "regjsgen"; 6283 - version = "0.5.2"; 6284 - src = fetchurl { 6285 - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz"; 6286 - sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 6287 - }; 6288 - }; 6289 - "regjsparser-0.7.0" = { 6290 - name = "regjsparser"; 6291 - packageName = "regjsparser"; 6292 - version = "0.7.0"; 6293 - src = fetchurl { 6294 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz"; 6295 - sha512 = "A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ=="; 6296 - }; 6297 - }; 6298 - "release-zalgo-1.0.0" = { 6299 - name = "release-zalgo"; 6300 - packageName = "release-zalgo"; 6301 - version = "1.0.0"; 6302 - src = fetchurl { 6303 - url = "https://registry.npmjs.org/release-zalgo/-/release-zalgo-1.0.0.tgz"; 6304 - sha1 = "09700b7e5074329739330e535c5a90fb67851730"; 6305 - }; 6306 - }; 6307 - "remove-trailing-separator-1.1.0" = { 6308 - name = "remove-trailing-separator"; 6309 - packageName = "remove-trailing-separator"; 6310 - version = "1.1.0"; 6311 - src = fetchurl { 6312 - url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz"; 6313 - sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef"; 6314 - }; 6315 - }; 6316 - "repeat-element-1.1.4" = { 6317 - name = "repeat-element"; 6318 - packageName = "repeat-element"; 6319 - version = "1.1.4"; 6320 - src = fetchurl { 6321 - url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz"; 6322 - sha512 = "LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ=="; 6323 - }; 6324 - }; 6325 - "repeat-string-1.6.1" = { 6326 - name = "repeat-string"; 6327 - packageName = "repeat-string"; 6328 - version = "1.6.1"; 6329 - src = fetchurl { 6330 - url = "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz"; 6331 - sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 6332 - }; 6333 - }; 6334 - "request-2.42.0" = { 6335 - name = "request"; 6336 - packageName = "request"; 6337 - version = "2.42.0"; 6338 - src = fetchurl { 6339 - url = "https://registry.npmjs.org/request/-/request-2.42.0.tgz"; 6340 - sha1 = "572bd0148938564040ac7ab148b96423a063304a"; 6341 - }; 6342 - }; 6343 - "require-directory-2.1.1" = { 6344 - name = "require-directory"; 6345 - packageName = "require-directory"; 6346 - version = "2.1.1"; 6347 - src = fetchurl { 6348 - url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz"; 6349 - sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 6350 - }; 6351 - }; 6352 - "require-main-filename-1.0.1" = { 6353 - name = "require-main-filename"; 6354 - packageName = "require-main-filename"; 6355 - version = "1.0.1"; 6356 - src = fetchurl { 6357 - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz"; 6358 - sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1"; 6359 - }; 6360 - }; 6361 - "require-main-filename-2.0.0" = { 6362 - name = "require-main-filename"; 6363 - packageName = "require-main-filename"; 6364 - version = "2.0.0"; 6365 - src = fetchurl { 6366 - url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz"; 6367 - sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 6368 - }; 6369 - }; 6370 - "resolve-1.20.0" = { 6371 - name = "resolve"; 6372 - packageName = "resolve"; 6373 - version = "1.20.0"; 6374 - src = fetchurl { 6375 - url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"; 6376 - sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; 6377 - }; 6378 - }; 6379 - "resolve-1.8.1" = { 6380 - name = "resolve"; 6381 - packageName = "resolve"; 6382 - version = "1.8.1"; 6383 - src = fetchurl { 6384 - url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz"; 6385 - sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA=="; 6386 - }; 6387 - }; 6388 - "resolve-dir-1.0.1" = { 6389 - name = "resolve-dir"; 6390 - packageName = "resolve-dir"; 6391 - version = "1.0.1"; 6392 - src = fetchurl { 6393 - url = "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz"; 6394 - sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; 6395 - }; 6396 - }; 6397 - "resolve-from-4.0.0" = { 6398 - name = "resolve-from"; 6399 - packageName = "resolve-from"; 6400 - version = "4.0.0"; 6401 - src = fetchurl { 6402 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz"; 6403 - sha512 = "pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g=="; 6404 - }; 6405 - }; 6406 - "resolve-from-5.0.0" = { 6407 - name = "resolve-from"; 6408 - packageName = "resolve-from"; 6409 - version = "5.0.0"; 6410 - src = fetchurl { 6411 - url = "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz"; 6412 - sha512 = "qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw=="; 6413 - }; 6414 - }; 6415 - "resolve-global-1.0.0" = { 6416 - name = "resolve-global"; 6417 - packageName = "resolve-global"; 6418 - version = "1.0.0"; 6419 - src = fetchurl { 6420 - url = "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz"; 6421 - sha512 = "zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw=="; 6422 - }; 6423 - }; 6424 - "resolve-url-0.2.1" = { 6425 - name = "resolve-url"; 6426 - packageName = "resolve-url"; 6427 - version = "0.2.1"; 6428 - src = fetchurl { 6429 - url = "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz"; 6430 - sha1 = "2c637fe77c893afd2a663fe21aa9080068e2052a"; 6431 - }; 6432 - }; 6433 - "restore-cursor-2.0.0" = { 6434 - name = "restore-cursor"; 6435 - packageName = "restore-cursor"; 6436 - version = "2.0.0"; 6437 - src = fetchurl { 6438 - url = "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz"; 6439 - sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; 6440 - }; 6441 - }; 6442 - "resumer-0.0.0" = { 6443 - name = "resumer"; 6444 - packageName = "resumer"; 6445 - version = "0.0.0"; 6446 - src = fetchurl { 6447 - url = "https://registry.npmjs.org/resumer/-/resumer-0.0.0.tgz"; 6448 - sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759"; 6449 - }; 6450 - }; 6451 - "ret-0.1.15" = { 6452 - name = "ret"; 6453 - packageName = "ret"; 6454 - version = "0.1.15"; 6455 - src = fetchurl { 6456 - url = "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz"; 6457 - sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg=="; 6458 - }; 6459 - }; 6460 - "retry-0.13.1" = { 6461 - name = "retry"; 6462 - packageName = "retry"; 6463 - version = "0.13.1"; 6464 - src = fetchurl { 6465 - url = "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz"; 6466 - sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg=="; 6467 - }; 6468 - }; 6469 - "reusify-1.0.4" = { 6470 - name = "reusify"; 6471 - packageName = "reusify"; 6472 - version = "1.0.4"; 6473 - src = fetchurl { 6474 - url = "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz"; 6475 - sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6476 - }; 6477 - }; 6478 - "right-pad-1.0.1" = { 6479 - name = "right-pad"; 6480 - packageName = "right-pad"; 6481 - version = "1.0.1"; 6482 - src = fetchurl { 6483 - url = "https://registry.npmjs.org/right-pad/-/right-pad-1.0.1.tgz"; 6484 - sha1 = "8ca08c2cbb5b55e74dafa96bf7fd1a27d568c8d0"; 6485 - }; 6486 - }; 6487 - "rimraf-3.0.2" = { 6488 - name = "rimraf"; 6489 - packageName = "rimraf"; 6490 - version = "3.0.2"; 6491 - src = fetchurl { 6492 - url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz"; 6493 - sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA=="; 6494 - }; 6495 - }; 6496 - "run-async-2.4.1" = { 6497 - name = "run-async"; 6498 - packageName = "run-async"; 6499 - version = "2.4.1"; 6500 - src = fetchurl { 6501 - url = "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz"; 6502 - sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ=="; 6503 - }; 6504 - }; 6505 - "run-parallel-1.2.0" = { 6506 - name = "run-parallel"; 6507 - packageName = "run-parallel"; 6508 - version = "1.2.0"; 6509 - src = fetchurl { 6510 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 6511 - sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 6512 - }; 6513 - }; 6514 - "rxjs-6.6.7" = { 6515 - name = "rxjs"; 6516 - packageName = "rxjs"; 6517 - version = "6.6.7"; 6518 - src = fetchurl { 6519 - url = "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz"; 6520 - sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ=="; 6521 - }; 6522 - }; 6523 - "safe-buffer-5.1.2" = { 6524 - name = "safe-buffer"; 6525 - packageName = "safe-buffer"; 6526 - version = "5.1.2"; 6527 - src = fetchurl { 6528 - url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"; 6529 - sha512 = "Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g=="; 6530 - }; 6531 - }; 6532 - "safe-regex-1.1.0" = { 6533 - name = "safe-regex"; 6534 - packageName = "safe-regex"; 6535 - version = "1.1.0"; 6536 - src = fetchurl { 6537 - url = "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz"; 6538 - sha1 = "40a3669f3b077d1e943d44629e157dd48023bf2e"; 6539 - }; 6540 - }; 6541 - "safer-buffer-2.1.2" = { 6542 - name = "safer-buffer"; 6543 - packageName = "safer-buffer"; 6544 - version = "2.1.2"; 6545 - src = fetchurl { 6546 - url = "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"; 6547 - sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="; 6548 - }; 6549 - }; 6550 - "semantic-release-15.14.0" = { 6551 - name = "semantic-release"; 6552 - packageName = "semantic-release"; 6553 - version = "15.14.0"; 6554 - src = fetchurl { 6555 - url = "https://registry.npmjs.org/semantic-release/-/semantic-release-15.14.0.tgz"; 6556 - sha512 = "Cn43W35AOLY0RMcDbtwhJODJmWg6YCs1+R5jRQsTmmkEGzkV4B2F/QXkjVZpl4UbH91r93GGH0xhoq9kh7I5PA=="; 6557 - }; 6558 - }; 6559 - "semver-5.7.1" = { 6560 - name = "semver"; 6561 - packageName = "semver"; 6562 - version = "5.7.1"; 6563 - src = fetchurl { 6564 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 6565 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 6566 - }; 6567 - }; 6568 - "semver-6.3.0" = { 6569 - name = "semver"; 6570 - packageName = "semver"; 6571 - version = "6.3.0"; 6572 - src = fetchurl { 6573 - url = "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz"; 6574 - sha512 = "b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw=="; 6575 - }; 6576 - }; 6577 - "semver-7.0.0" = { 6578 - name = "semver"; 6579 - packageName = "semver"; 6580 - version = "7.0.0"; 6581 - src = fetchurl { 6582 - url = "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz"; 6583 - sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 6584 - }; 6585 - }; 6586 - "semver-7.3.5" = { 6587 - name = "semver"; 6588 - packageName = "semver"; 6589 - version = "7.3.5"; 6590 - src = fetchurl { 6591 - url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 6592 - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 6593 - }; 6594 - }; 6595 - "semver-diff-2.1.0" = { 6596 - name = "semver-diff"; 6597 - packageName = "semver-diff"; 6598 - version = "2.1.0"; 6599 - src = fetchurl { 6600 - url = "https://registry.npmjs.org/semver-diff/-/semver-diff-2.1.0.tgz"; 6601 - sha1 = "4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36"; 6602 - }; 6603 - }; 6604 - "semver-regex-2.0.0" = { 6605 - name = "semver-regex"; 6606 - packageName = "semver-regex"; 6607 - version = "2.0.0"; 6608 - src = fetchurl { 6609 - url = "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz"; 6610 - sha512 = "mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw=="; 6611 - }; 6612 - }; 6613 - "set-blocking-2.0.0" = { 6614 - name = "set-blocking"; 6615 - packageName = "set-blocking"; 6616 - version = "2.0.0"; 6617 - src = fetchurl { 6618 - url = "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz"; 6619 - sha1 = "045f9782d011ae9a6803ddd382b24392b3d890f7"; 6620 - }; 6621 - }; 6622 - "set-value-2.0.1" = { 6623 - name = "set-value"; 6624 - packageName = "set-value"; 6625 - version = "2.0.1"; 6626 - src = fetchurl { 6627 - url = "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz"; 6628 - sha512 = "JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw=="; 6629 - }; 6630 - }; 6631 - "shebang-command-1.2.0" = { 6632 - name = "shebang-command"; 6633 - packageName = "shebang-command"; 6634 - version = "1.2.0"; 6635 - src = fetchurl { 6636 - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz"; 6637 - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 6638 - }; 6639 - }; 6640 - "shebang-command-2.0.0" = { 6641 - name = "shebang-command"; 6642 - packageName = "shebang-command"; 6643 - version = "2.0.0"; 6644 - src = fetchurl { 6645 - url = "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz"; 6646 - sha512 = "kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA=="; 6647 - }; 6648 - }; 6649 - "shebang-regex-1.0.0" = { 6650 - name = "shebang-regex"; 6651 - packageName = "shebang-regex"; 6652 - version = "1.0.0"; 6653 - src = fetchurl { 6654 - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz"; 6655 - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 6656 - }; 6657 - }; 6658 - "shebang-regex-3.0.0" = { 6659 - name = "shebang-regex"; 6660 - packageName = "shebang-regex"; 6661 - version = "3.0.0"; 6662 - src = fetchurl { 6663 - url = "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz"; 6664 - sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 6665 - }; 6666 - }; 6667 - "side-channel-1.0.4" = { 6668 - name = "side-channel"; 6669 - packageName = "side-channel"; 6670 - version = "1.0.4"; 6671 - src = fetchurl { 6672 - url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz"; 6673 - sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 6674 - }; 6675 - }; 6676 - "signal-exit-3.0.5" = { 6677 - name = "signal-exit"; 6678 - packageName = "signal-exit"; 6679 - version = "3.0.5"; 6680 - src = fetchurl { 6681 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz"; 6682 - sha512 = "KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ=="; 6683 - }; 6684 - }; 6685 - "signale-1.4.0" = { 6686 - name = "signale"; 6687 - packageName = "signale"; 6688 - version = "1.4.0"; 6689 - src = fetchurl { 6690 - url = "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz"; 6691 - sha512 = "iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w=="; 6692 - }; 6693 - }; 6694 - "sinon-6.3.4" = { 6695 - name = "sinon"; 6696 - packageName = "sinon"; 6697 - version = "6.3.4"; 6698 - src = fetchurl { 6699 - url = "https://registry.npmjs.org/sinon/-/sinon-6.3.4.tgz"; 6700 - sha512 = "NIaR56Z1mefuRBXYrf4otqBxkWiKveX+fvqs3HzFq2b07HcgpkMgIwmQM/owNjNFAHkx0kJXW+Q0mDthiuslXw=="; 6701 - }; 6702 - }; 6703 - "slash-2.0.0" = { 6704 - name = "slash"; 6705 - packageName = "slash"; 6706 - version = "2.0.0"; 6707 - src = fetchurl { 6708 - url = "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz"; 6709 - sha512 = "ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A=="; 6710 - }; 6711 - }; 6712 - "slash-3.0.0" = { 6713 - name = "slash"; 6714 - packageName = "slash"; 6715 - version = "3.0.0"; 6716 - src = fetchurl { 6717 - url = "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz"; 6718 - sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 6719 - }; 6720 - }; 6721 - "snapdragon-0.8.2" = { 6722 - name = "snapdragon"; 6723 - packageName = "snapdragon"; 6724 - version = "0.8.2"; 6725 - src = fetchurl { 6726 - url = "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz"; 6727 - sha512 = "FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg=="; 6728 - }; 6729 - }; 6730 - "snapdragon-node-2.1.1" = { 6731 - name = "snapdragon-node"; 6732 - packageName = "snapdragon-node"; 6733 - version = "2.1.1"; 6734 - src = fetchurl { 6735 - url = "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz"; 6736 - sha512 = "O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw=="; 6737 - }; 6738 - }; 6739 - "snapdragon-util-3.0.1" = { 6740 - name = "snapdragon-util"; 6741 - packageName = "snapdragon-util"; 6742 - version = "3.0.1"; 6743 - src = fetchurl { 6744 - url = "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz"; 6745 - sha512 = "mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ=="; 6746 - }; 6747 - }; 6748 - "sntp-0.2.4" = { 6749 - name = "sntp"; 6750 - packageName = "sntp"; 6751 - version = "0.2.4"; 6752 - src = fetchurl { 6753 - url = "https://registry.npmjs.org/sntp/-/sntp-0.2.4.tgz"; 6754 - sha1 = "fb885f18b0f3aad189f824862536bceeec750900"; 6755 - }; 6756 - }; 6757 - "source-map-0.5.7" = { 6758 - name = "source-map"; 6759 - packageName = "source-map"; 6760 - version = "0.5.7"; 6761 - src = fetchurl { 6762 - url = "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz"; 6763 - sha1 = "8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"; 6764 - }; 6765 - }; 6766 - "source-map-0.6.1" = { 6767 - name = "source-map"; 6768 - packageName = "source-map"; 6769 - version = "0.6.1"; 6770 - src = fetchurl { 6771 - url = "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz"; 6772 - sha512 = "UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="; 6773 - }; 6774 - }; 6775 - "source-map-resolve-0.5.3" = { 6776 - name = "source-map-resolve"; 6777 - packageName = "source-map-resolve"; 6778 - version = "0.5.3"; 6779 - src = fetchurl { 6780 - url = "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz"; 6781 - sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw=="; 6782 - }; 6783 - }; 6784 - "source-map-support-0.5.20" = { 6785 - name = "source-map-support"; 6786 - packageName = "source-map-support"; 6787 - version = "0.5.20"; 6788 - src = fetchurl { 6789 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz"; 6790 - sha512 = "n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw=="; 6791 - }; 6792 - }; 6793 - "source-map-url-0.4.1" = { 6794 - name = "source-map-url"; 6795 - packageName = "source-map-url"; 6796 - version = "0.4.1"; 6797 - src = fetchurl { 6798 - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"; 6799 - sha512 = "cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw=="; 6800 - }; 6801 - }; 6802 - "spawn-command-0.0.2" = { 6803 - name = "spawn-command"; 6804 - packageName = "spawn-command"; 6805 - version = "0.0.2"; 6806 - src = fetchurl { 6807 - url = "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2.tgz"; 6808 - sha1 = "9544e1a43ca045f8531aac1a48cb29bdae62338e"; 6809 - }; 6810 - }; 6811 - "spawn-command-0.0.2-1" = { 6812 - name = "spawn-command"; 6813 - packageName = "spawn-command"; 6814 - version = "0.0.2-1"; 6815 - src = fetchurl { 6816 - url = "https://registry.npmjs.org/spawn-command/-/spawn-command-0.0.2-1.tgz"; 6817 - sha1 = "62f5e9466981c1b796dc5929937e11c9c6921bd0"; 6818 - }; 6819 - }; 6820 - "spawn-error-forwarder-1.0.0" = { 6821 - name = "spawn-error-forwarder"; 6822 - packageName = "spawn-error-forwarder"; 6823 - version = "1.0.0"; 6824 - src = fetchurl { 6825 - url = "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz"; 6826 - sha1 = "1afd94738e999b0346d7b9fc373be55e07577029"; 6827 - }; 6828 - }; 6829 - "spawn-wrap-2.0.0" = { 6830 - name = "spawn-wrap"; 6831 - packageName = "spawn-wrap"; 6832 - version = "2.0.0"; 6833 - src = fetchurl { 6834 - url = "https://registry.npmjs.org/spawn-wrap/-/spawn-wrap-2.0.0.tgz"; 6835 - sha512 = "EeajNjfN9zMnULLwhZZQU3GWBoFNkbngTUPfaawT4RkMiviTxcX0qfhVbGey39mfctfDHkWtuecgQ8NJcyQWHg=="; 6836 - }; 6837 - }; 6838 - "spdx-correct-3.1.1" = { 6839 - name = "spdx-correct"; 6840 - packageName = "spdx-correct"; 6841 - version = "3.1.1"; 6842 - src = fetchurl { 6843 - url = "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz"; 6844 - sha512 = "cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w=="; 6845 - }; 6846 - }; 6847 - "spdx-exceptions-2.3.0" = { 6848 - name = "spdx-exceptions"; 6849 - packageName = "spdx-exceptions"; 6850 - version = "2.3.0"; 6851 - src = fetchurl { 6852 - url = "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz"; 6853 - sha512 = "/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A=="; 6854 - }; 6855 - }; 6856 - "spdx-expression-parse-3.0.1" = { 6857 - name = "spdx-expression-parse"; 6858 - packageName = "spdx-expression-parse"; 6859 - version = "3.0.1"; 6860 - src = fetchurl { 6861 - url = "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz"; 6862 - sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 6863 - }; 6864 - }; 6865 - "spdx-license-ids-3.0.10" = { 6866 - name = "spdx-license-ids"; 6867 - packageName = "spdx-license-ids"; 6868 - version = "3.0.10"; 6869 - src = fetchurl { 6870 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz"; 6871 - sha512 = "oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA=="; 6872 - }; 6873 - }; 6874 - "split-0.2.10" = { 6875 - name = "split"; 6876 - packageName = "split"; 6877 - version = "0.2.10"; 6878 - src = fetchurl { 6879 - url = "https://registry.npmjs.org/split/-/split-0.2.10.tgz"; 6880 - sha1 = "67097c601d697ce1368f418f06cd201cf0521a57"; 6881 - }; 6882 - }; 6883 - "split-1.0.1" = { 6884 - name = "split"; 6885 - packageName = "split"; 6886 - version = "1.0.1"; 6887 - src = fetchurl { 6888 - url = "https://registry.npmjs.org/split/-/split-1.0.1.tgz"; 6889 - sha512 = "mTyOoPbrivtXnwnIxZRFYRrPNtEFKlpB2fvjSnCQUiAA6qAZzqwna5envK4uk6OIeP17CsdF3rSBGYVBsU0Tkg=="; 6890 - }; 6891 - }; 6892 - "split-string-3.1.0" = { 6893 - name = "split-string"; 6894 - packageName = "split-string"; 6895 - version = "3.1.0"; 6896 - src = fetchurl { 6897 - url = "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz"; 6898 - sha512 = "NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw=="; 6899 - }; 6900 - }; 6901 - "split2-1.0.0" = { 6902 - name = "split2"; 6903 - packageName = "split2"; 6904 - version = "1.0.0"; 6905 - src = fetchurl { 6906 - url = "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz"; 6907 - sha1 = "52e2e221d88c75f9a73f90556e263ff96772b314"; 6908 - }; 6909 - }; 6910 - "split2-3.2.2" = { 6911 - name = "split2"; 6912 - packageName = "split2"; 6913 - version = "3.2.2"; 6914 - src = fetchurl { 6915 - url = "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz"; 6916 - sha512 = "9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg=="; 6917 - }; 6918 - }; 6919 - "sprintf-js-1.0.3" = { 6920 - name = "sprintf-js"; 6921 - packageName = "sprintf-js"; 6922 - version = "1.0.3"; 6923 - src = fetchurl { 6924 - url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz"; 6925 - sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 6926 - }; 6927 - }; 6928 - "static-extend-0.1.2" = { 6929 - name = "static-extend"; 6930 - packageName = "static-extend"; 6931 - version = "0.1.2"; 6932 - src = fetchurl { 6933 - url = "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz"; 6934 - sha1 = "60809c39cbff55337226fd5e0b520f341f1fb5c6"; 6935 - }; 6936 - }; 6937 - "stream-combiner-0.0.4" = { 6938 - name = "stream-combiner"; 6939 - packageName = "stream-combiner"; 6940 - version = "0.0.4"; 6941 - src = fetchurl { 6942 - url = "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz"; 6943 - sha1 = "4d5e433c185261dde623ca3f44c586bcf5c4ad14"; 6944 - }; 6945 - }; 6946 - "stream-combiner2-1.1.1" = { 6947 - name = "stream-combiner2"; 6948 - packageName = "stream-combiner2"; 6949 - version = "1.1.1"; 6950 - src = fetchurl { 6951 - url = "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz"; 6952 - sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe"; 6953 - }; 6954 - }; 6955 - "string-width-1.0.2" = { 6956 - name = "string-width"; 6957 - packageName = "string-width"; 6958 - version = "1.0.2"; 6959 - src = fetchurl { 6960 - url = "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz"; 6961 - sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 6962 - }; 6963 - }; 6964 - "string-width-2.1.1" = { 6965 - name = "string-width"; 6966 - packageName = "string-width"; 6967 - version = "2.1.1"; 6968 - src = fetchurl { 6969 - url = "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz"; 6970 - sha512 = "nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw=="; 6971 - }; 6972 - }; 6973 - "string-width-3.1.0" = { 6974 - name = "string-width"; 6975 - packageName = "string-width"; 6976 - version = "3.1.0"; 6977 - src = fetchurl { 6978 - url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 6979 - sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 6980 - }; 6981 - }; 6982 - "string-width-4.2.3" = { 6983 - name = "string-width"; 6984 - packageName = "string-width"; 6985 - version = "4.2.3"; 6986 - src = fetchurl { 6987 - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz"; 6988 - sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g=="; 6989 - }; 6990 - }; 6991 - "string.prototype.trimend-1.0.4" = { 6992 - name = "string.prototype.trimend"; 6993 - packageName = "string.prototype.trimend"; 6994 - version = "1.0.4"; 6995 - src = fetchurl { 6996 - url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"; 6997 - sha512 = "y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A=="; 6998 - }; 6999 - }; 7000 - "string.prototype.trimstart-1.0.4" = { 7001 - name = "string.prototype.trimstart"; 7002 - packageName = "string.prototype.trimstart"; 7003 - version = "1.0.4"; 7004 - src = fetchurl { 7005 - url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"; 7006 - sha512 = "jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw=="; 7007 - }; 7008 - }; 7009 - "string_decoder-0.10.31" = { 7010 - name = "string_decoder"; 7011 - packageName = "string_decoder"; 7012 - version = "0.10.31"; 7013 - src = fetchurl { 7014 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz"; 7015 - sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 7016 - }; 7017 - }; 7018 - "string_decoder-1.1.1" = { 7019 - name = "string_decoder"; 7020 - packageName = "string_decoder"; 7021 - version = "1.1.1"; 7022 - src = fetchurl { 7023 - url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"; 7024 - sha512 = "n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg=="; 7025 - }; 7026 - }; 7027 - "stringstream-0.0.6" = { 7028 - name = "stringstream"; 7029 - packageName = "stringstream"; 7030 - version = "0.0.6"; 7031 - src = fetchurl { 7032 - url = "https://registry.npmjs.org/stringstream/-/stringstream-0.0.6.tgz"; 7033 - sha512 = "87GEBAkegbBcweToUrdzf3eLhWNg06FJTebl4BVJz/JgWy8CvEr9dRtX5qWphiynMSQlxxi+QqN0z5T32SLlhA=="; 7034 - }; 7035 - }; 7036 - "strip-ansi-3.0.1" = { 7037 - name = "strip-ansi"; 7038 - packageName = "strip-ansi"; 7039 - version = "3.0.1"; 7040 - src = fetchurl { 7041 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 7042 - sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 7043 - }; 7044 - }; 7045 - "strip-ansi-4.0.0" = { 7046 - name = "strip-ansi"; 7047 - packageName = "strip-ansi"; 7048 - version = "4.0.0"; 7049 - src = fetchurl { 7050 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz"; 7051 - sha1 = "a8479022eb1ac368a871389b635262c505ee368f"; 7052 - }; 7053 - }; 7054 - "strip-ansi-5.2.0" = { 7055 - name = "strip-ansi"; 7056 - packageName = "strip-ansi"; 7057 - version = "5.2.0"; 7058 - src = fetchurl { 7059 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 7060 - sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 7061 - }; 7062 - }; 7063 - "strip-ansi-6.0.1" = { 7064 - name = "strip-ansi"; 7065 - packageName = "strip-ansi"; 7066 - version = "6.0.1"; 7067 - src = fetchurl { 7068 - url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz"; 7069 - sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A=="; 7070 - }; 7071 - }; 7072 - "strip-bom-3.0.0" = { 7073 - name = "strip-bom"; 7074 - packageName = "strip-bom"; 7075 - version = "3.0.0"; 7076 - src = fetchurl { 7077 - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz"; 7078 - sha1 = "2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3"; 7079 - }; 7080 - }; 7081 - "strip-bom-4.0.0" = { 7082 - name = "strip-bom"; 7083 - packageName = "strip-bom"; 7084 - version = "4.0.0"; 7085 - src = fetchurl { 7086 - url = "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz"; 7087 - sha512 = "3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w=="; 7088 - }; 7089 - }; 7090 - "strip-eof-1.0.0" = { 7091 - name = "strip-eof"; 7092 - packageName = "strip-eof"; 7093 - version = "1.0.0"; 7094 - src = fetchurl { 7095 - url = "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz"; 7096 - sha1 = "bb43ff5598a6eb05d89b59fcd129c983313606bf"; 7097 - }; 7098 - }; 7099 - "strip-final-newline-2.0.0" = { 7100 - name = "strip-final-newline"; 7101 - packageName = "strip-final-newline"; 7102 - version = "2.0.0"; 7103 - src = fetchurl { 7104 - url = "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz"; 7105 - sha512 = "BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA=="; 7106 - }; 7107 - }; 7108 - "strip-indent-3.0.0" = { 7109 - name = "strip-indent"; 7110 - packageName = "strip-indent"; 7111 - version = "3.0.0"; 7112 - src = fetchurl { 7113 - url = "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz"; 7114 - sha512 = "laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ=="; 7115 - }; 7116 - }; 7117 - "strip-json-comments-2.0.1" = { 7118 - name = "strip-json-comments"; 7119 - packageName = "strip-json-comments"; 7120 - version = "2.0.1"; 7121 - src = fetchurl { 7122 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz"; 7123 - sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a"; 7124 - }; 7125 - }; 7126 - "strip-json-comments-3.0.1" = { 7127 - name = "strip-json-comments"; 7128 - packageName = "strip-json-comments"; 7129 - version = "3.0.1"; 7130 - src = fetchurl { 7131 - url = "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.0.1.tgz"; 7132 - sha512 = "VTyMAUfdm047mwKl+u79WIdrZxtFtn+nBxHeb844XBQ9uMNTuTHdx2hc5RiAJYqwTj3wc/xe5HLSdJSkJ+WfZw=="; 7133 - }; 7134 - }; 7135 - "supports-color-5.5.0" = { 7136 - name = "supports-color"; 7137 - packageName = "supports-color"; 7138 - version = "5.5.0"; 7139 - src = fetchurl { 7140 - url = "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz"; 7141 - sha512 = "QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow=="; 7142 - }; 7143 - }; 7144 - "supports-color-6.0.0" = { 7145 - name = "supports-color"; 7146 - packageName = "supports-color"; 7147 - version = "6.0.0"; 7148 - src = fetchurl { 7149 - url = "https://registry.npmjs.org/supports-color/-/supports-color-6.0.0.tgz"; 7150 - sha512 = "on9Kwidc1IUQo+bQdhi8+Tijpo0e1SS6RoGo2guUwn5vdaxw8RXOF9Vb2ws+ihWOmh4JnCJOvaziZWP1VABaLg=="; 7151 - }; 7152 - }; 7153 - "supports-color-7.2.0" = { 7154 - name = "supports-color"; 7155 - packageName = "supports-color"; 7156 - version = "7.2.0"; 7157 - src = fetchurl { 7158 - url = "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz"; 7159 - sha512 = "qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw=="; 7160 - }; 7161 - }; 7162 - "supports-hyperlinks-1.0.1" = { 7163 - name = "supports-hyperlinks"; 7164 - packageName = "supports-hyperlinks"; 7165 - version = "1.0.1"; 7166 - src = fetchurl { 7167 - url = "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz"; 7168 - sha512 = "HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw=="; 7169 - }; 7170 - }; 7171 - "tape-2.3.0" = { 7172 - name = "tape"; 7173 - packageName = "tape"; 7174 - version = "2.3.0"; 7175 - src = fetchurl { 7176 - url = "https://registry.npmjs.org/tape/-/tape-2.3.0.tgz"; 7177 - sha1 = "0dfeec709227fbcc9170abe7f046962b271431db"; 7178 - }; 7179 - }; 7180 - "temp-dir-1.0.0" = { 7181 - name = "temp-dir"; 7182 - packageName = "temp-dir"; 7183 - version = "1.0.0"; 7184 - src = fetchurl { 7185 - url = "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz"; 7186 - sha1 = "0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"; 7187 - }; 7188 - }; 7189 - "tempy-0.3.0" = { 7190 - name = "tempy"; 7191 - packageName = "tempy"; 7192 - version = "0.3.0"; 7193 - src = fetchurl { 7194 - url = "https://registry.npmjs.org/tempy/-/tempy-0.3.0.tgz"; 7195 - sha512 = "WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="; 7196 - }; 7197 - }; 7198 - "term-size-1.2.0" = { 7199 - name = "term-size"; 7200 - packageName = "term-size"; 7201 - version = "1.2.0"; 7202 - src = fetchurl { 7203 - url = "https://registry.npmjs.org/term-size/-/term-size-1.2.0.tgz"; 7204 - sha1 = "458b83887f288fc56d6fffbfad262e26638efa69"; 7205 - }; 7206 - }; 7207 - "test-exclude-5.2.3" = { 7208 - name = "test-exclude"; 7209 - packageName = "test-exclude"; 7210 - version = "5.2.3"; 7211 - src = fetchurl { 7212 - url = "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz"; 7213 - sha512 = "M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g=="; 7214 - }; 7215 - }; 7216 - "test-exclude-6.0.0" = { 7217 - name = "test-exclude"; 7218 - packageName = "test-exclude"; 7219 - version = "6.0.0"; 7220 - src = fetchurl { 7221 - url = "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz"; 7222 - sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w=="; 7223 - }; 7224 - }; 7225 - "text-extensions-1.9.0" = { 7226 - name = "text-extensions"; 7227 - packageName = "text-extensions"; 7228 - version = "1.9.0"; 7229 - src = fetchurl { 7230 - url = "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz"; 7231 - sha512 = "wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ=="; 7232 - }; 7233 - }; 7234 - "through-2.3.8" = { 7235 - name = "through"; 7236 - packageName = "through"; 7237 - version = "2.3.8"; 7238 - src = fetchurl { 7239 - url = "https://registry.npmjs.org/through/-/through-2.3.8.tgz"; 7240 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 7241 - }; 7242 - }; 7243 - "through2-2.0.5" = { 7244 - name = "through2"; 7245 - packageName = "through2"; 7246 - version = "2.0.5"; 7247 - src = fetchurl { 7248 - url = "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz"; 7249 - sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ=="; 7250 - }; 7251 - }; 7252 - "through2-4.0.2" = { 7253 - name = "through2"; 7254 - packageName = "through2"; 7255 - version = "4.0.2"; 7256 - src = fetchurl { 7257 - url = "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz"; 7258 - sha512 = "iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw=="; 7259 - }; 7260 - }; 7261 - "timed-out-4.0.1" = { 7262 - name = "timed-out"; 7263 - packageName = "timed-out"; 7264 - version = "4.0.1"; 7265 - src = fetchurl { 7266 - url = "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz"; 7267 - sha1 = "f32eacac5a175bea25d7fab565ab3ed8741ef56f"; 7268 - }; 7269 - }; 7270 - "tmp-0.0.33" = { 7271 - name = "tmp"; 7272 - packageName = "tmp"; 7273 - version = "0.0.33"; 7274 - src = fetchurl { 7275 - url = "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz"; 7276 - sha512 = "jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw=="; 7277 - }; 7278 - }; 7279 - "to-fast-properties-2.0.0" = { 7280 - name = "to-fast-properties"; 7281 - packageName = "to-fast-properties"; 7282 - version = "2.0.0"; 7283 - src = fetchurl { 7284 - url = "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz"; 7285 - sha1 = "dc5e698cbd079265bc73e0377681a4e4e83f616e"; 7286 - }; 7287 - }; 7288 - "to-object-path-0.3.0" = { 7289 - name = "to-object-path"; 7290 - packageName = "to-object-path"; 7291 - version = "0.3.0"; 7292 - src = fetchurl { 7293 - url = "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz"; 7294 - sha1 = "297588b7b0e7e0ac08e04e672f85c1f4999e17af"; 7295 - }; 7296 - }; 7297 - "to-regex-3.0.2" = { 7298 - name = "to-regex"; 7299 - packageName = "to-regex"; 7300 - version = "3.0.2"; 7301 - src = fetchurl { 7302 - url = "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz"; 7303 - sha512 = "FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw=="; 7304 - }; 7305 - }; 7306 - "to-regex-range-2.1.1" = { 7307 - name = "to-regex-range"; 7308 - packageName = "to-regex-range"; 7309 - version = "2.1.1"; 7310 - src = fetchurl { 7311 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz"; 7312 - sha1 = "7c80c17b9dfebe599e27367e0d4dd5590141db38"; 7313 - }; 7314 - }; 7315 - "to-regex-range-5.0.1" = { 7316 - name = "to-regex-range"; 7317 - packageName = "to-regex-range"; 7318 - version = "5.0.1"; 7319 - src = fetchurl { 7320 - url = "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz"; 7321 - sha512 = "65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ=="; 7322 - }; 7323 - }; 7324 - "touch-3.1.0" = { 7325 - name = "touch"; 7326 - packageName = "touch"; 7327 - version = "3.1.0"; 7328 - src = fetchurl { 7329 - url = "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz"; 7330 - sha512 = "WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA=="; 7331 - }; 7332 - }; 7333 - "tough-cookie-4.0.0" = { 7334 - name = "tough-cookie"; 7335 - packageName = "tough-cookie"; 7336 - version = "4.0.0"; 7337 - src = fetchurl { 7338 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz"; 7339 - sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="; 7340 - }; 7341 - }; 7342 - "tr46-0.0.3" = { 7343 - name = "tr46"; 7344 - packageName = "tr46"; 7345 - version = "0.0.3"; 7346 - src = fetchurl { 7347 - url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"; 7348 - sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a"; 7349 - }; 7350 - }; 7351 - "traverse-0.6.6" = { 7352 - name = "traverse"; 7353 - packageName = "traverse"; 7354 - version = "0.6.6"; 7355 - src = fetchurl { 7356 - url = "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz"; 7357 - sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137"; 7358 - }; 7359 - }; 7360 - "trim-newlines-3.0.1" = { 7361 - name = "trim-newlines"; 7362 - packageName = "trim-newlines"; 7363 - version = "3.0.1"; 7364 - src = fetchurl { 7365 - url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz"; 7366 - sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw=="; 7367 - }; 7368 - }; 7369 - "ts-node-9.1.1" = { 7370 - name = "ts-node"; 7371 - packageName = "ts-node"; 7372 - version = "9.1.1"; 7373 - src = fetchurl { 7374 - url = "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz"; 7375 - sha512 = "hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg=="; 7376 - }; 7377 - }; 7378 - "tslib-1.14.1" = { 7379 - name = "tslib"; 7380 - packageName = "tslib"; 7381 - version = "1.14.1"; 7382 - src = fetchurl { 7383 - url = "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"; 7384 - sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 7385 - }; 7386 - }; 7387 - "tslib-2.3.1" = { 7388 - name = "tslib"; 7389 - packageName = "tslib"; 7390 - version = "2.3.1"; 7391 - src = fetchurl { 7392 - url = "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz"; 7393 - sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw=="; 7394 - }; 7395 - }; 7396 - "tunnel-agent-0.4.3" = { 7397 - name = "tunnel-agent"; 7398 - packageName = "tunnel-agent"; 7399 - version = "0.4.3"; 7400 - src = fetchurl { 7401 - url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz"; 7402 - sha1 = "6373db76909fe570e08d73583365ed828a74eeeb"; 7403 - }; 7404 - }; 7405 - "type-detect-4.0.8" = { 7406 - name = "type-detect"; 7407 - packageName = "type-detect"; 7408 - version = "4.0.8"; 7409 - src = fetchurl { 7410 - url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz"; 7411 - sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 7412 - }; 7413 - }; 7414 - "type-fest-0.18.1" = { 7415 - name = "type-fest"; 7416 - packageName = "type-fest"; 7417 - version = "0.18.1"; 7418 - src = fetchurl { 7419 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz"; 7420 - sha512 = "OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw=="; 7421 - }; 7422 - }; 7423 - "type-fest-0.3.1" = { 7424 - name = "type-fest"; 7425 - packageName = "type-fest"; 7426 - version = "0.3.1"; 7427 - src = fetchurl { 7428 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz"; 7429 - sha512 = "cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ=="; 7430 - }; 7431 - }; 7432 - "type-fest-0.6.0" = { 7433 - name = "type-fest"; 7434 - packageName = "type-fest"; 7435 - version = "0.6.0"; 7436 - src = fetchurl { 7437 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz"; 7438 - sha512 = "q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg=="; 7439 - }; 7440 - }; 7441 - "type-fest-0.8.1" = { 7442 - name = "type-fest"; 7443 - packageName = "type-fest"; 7444 - version = "0.8.1"; 7445 - src = fetchurl { 7446 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz"; 7447 - sha512 = "4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA=="; 7448 - }; 7449 - }; 7450 - "typedarray-to-buffer-3.1.5" = { 7451 - name = "typedarray-to-buffer"; 7452 - packageName = "typedarray-to-buffer"; 7453 - version = "3.1.5"; 7454 - src = fetchurl { 7455 - url = "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz"; 7456 - sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7457 - }; 7458 - }; 7459 - "typescript-4.4.4" = { 7460 - name = "typescript"; 7461 - packageName = "typescript"; 7462 - version = "4.4.4"; 7463 - src = fetchurl { 7464 - url = "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz"; 7465 - sha512 = "DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA=="; 7466 - }; 7467 - }; 7468 - "uglify-js-3.14.2" = { 7469 - name = "uglify-js"; 7470 - packageName = "uglify-js"; 7471 - version = "3.14.2"; 7472 - src = fetchurl { 7473 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz"; 7474 - sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A=="; 7475 - }; 7476 - }; 7477 - "unbox-primitive-1.0.1" = { 7478 - name = "unbox-primitive"; 7479 - packageName = "unbox-primitive"; 7480 - version = "1.0.1"; 7481 - src = fetchurl { 7482 - url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; 7483 - sha512 = "tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw=="; 7484 - }; 7485 - }; 7486 - "undefsafe-2.0.5" = { 7487 - name = "undefsafe"; 7488 - packageName = "undefsafe"; 7489 - version = "2.0.5"; 7490 - src = fetchurl { 7491 - url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz"; 7492 - sha512 = "WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA=="; 7493 - }; 7494 - }; 7495 - "unicode-canonical-property-names-ecmascript-2.0.0" = { 7496 - name = "unicode-canonical-property-names-ecmascript"; 7497 - packageName = "unicode-canonical-property-names-ecmascript"; 7498 - version = "2.0.0"; 7499 - src = fetchurl { 7500 - url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz"; 7501 - sha512 = "yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ=="; 7502 - }; 7503 - }; 7504 - "unicode-match-property-ecmascript-2.0.0" = { 7505 - name = "unicode-match-property-ecmascript"; 7506 - packageName = "unicode-match-property-ecmascript"; 7507 - version = "2.0.0"; 7508 - src = fetchurl { 7509 - url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz"; 7510 - sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q=="; 7511 - }; 7512 - }; 7513 - "unicode-match-property-value-ecmascript-2.0.0" = { 7514 - name = "unicode-match-property-value-ecmascript"; 7515 - packageName = "unicode-match-property-value-ecmascript"; 7516 - version = "2.0.0"; 7517 - src = fetchurl { 7518 - url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz"; 7519 - sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw=="; 7520 - }; 7521 - }; 7522 - "unicode-property-aliases-ecmascript-2.0.0" = { 7523 - name = "unicode-property-aliases-ecmascript"; 7524 - packageName = "unicode-property-aliases-ecmascript"; 7525 - version = "2.0.0"; 7526 - src = fetchurl { 7527 - url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz"; 7528 - sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ=="; 7529 - }; 7530 - }; 7531 - "union-value-1.0.1" = { 7532 - name = "union-value"; 7533 - packageName = "union-value"; 7534 - version = "1.0.1"; 7535 - src = fetchurl { 7536 - url = "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz"; 7537 - sha512 = "tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg=="; 7538 - }; 7539 - }; 7540 - "unique-string-1.0.0" = { 7541 - name = "unique-string"; 7542 - packageName = "unique-string"; 7543 - version = "1.0.0"; 7544 - src = fetchurl { 7545 - url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz"; 7546 - sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a"; 7547 - }; 7548 - }; 7549 - "universal-user-agent-4.0.1" = { 7550 - name = "universal-user-agent"; 7551 - packageName = "universal-user-agent"; 7552 - version = "4.0.1"; 7553 - src = fetchurl { 7554 - url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-4.0.1.tgz"; 7555 - sha512 = "LnST3ebHwVL2aNe4mejI9IQh2HfZ1RLo8Io2HugSif8ekzD1TlWpHpColOB/eh8JHMLkGH3Akqf040I+4ylNxg=="; 7556 - }; 7557 - }; 7558 - "universal-user-agent-6.0.0" = { 7559 - name = "universal-user-agent"; 7560 - packageName = "universal-user-agent"; 7561 - version = "6.0.0"; 7562 - src = fetchurl { 7563 - url = "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-6.0.0.tgz"; 7564 - sha512 = "isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w=="; 7565 - }; 7566 - }; 7567 - "universalify-0.1.2" = { 7568 - name = "universalify"; 7569 - packageName = "universalify"; 7570 - version = "0.1.2"; 7571 - src = fetchurl { 7572 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 7573 - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 7574 - }; 7575 - }; 7576 - "unset-value-1.0.0" = { 7577 - name = "unset-value"; 7578 - packageName = "unset-value"; 7579 - version = "1.0.0"; 7580 - src = fetchurl { 7581 - url = "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz"; 7582 - sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; 7583 - }; 7584 - }; 7585 - "unzip-response-2.0.1" = { 7586 - name = "unzip-response"; 7587 - packageName = "unzip-response"; 7588 - version = "2.0.1"; 7589 - src = fetchurl { 7590 - url = "https://registry.npmjs.org/unzip-response/-/unzip-response-2.0.1.tgz"; 7591 - sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 7592 - }; 7593 - }; 7594 - "upath-1.2.0" = { 7595 - name = "upath"; 7596 - packageName = "upath"; 7597 - version = "1.2.0"; 7598 - src = fetchurl { 7599 - url = "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz"; 7600 - sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 7601 - }; 7602 - }; 7603 - "update-notifier-2.5.0" = { 7604 - name = "update-notifier"; 7605 - packageName = "update-notifier"; 7606 - version = "2.5.0"; 7607 - src = fetchurl { 7608 - url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.5.0.tgz"; 7609 - sha512 = "gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw=="; 7610 - }; 7611 - }; 7612 - "urix-0.1.0" = { 7613 - name = "urix"; 7614 - packageName = "urix"; 7615 - version = "0.1.0"; 7616 - src = fetchurl { 7617 - url = "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz"; 7618 - sha1 = "da937f7a62e21fec1fd18d49b35c2935067a6c72"; 7619 - }; 7620 - }; 7621 - "url-join-4.0.1" = { 7622 - name = "url-join"; 7623 - packageName = "url-join"; 7624 - version = "4.0.1"; 7625 - src = fetchurl { 7626 - url = "https://registry.npmjs.org/url-join/-/url-join-4.0.1.tgz"; 7627 - sha512 = "jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA=="; 7628 - }; 7629 - }; 7630 - "url-parse-lax-1.0.0" = { 7631 - name = "url-parse-lax"; 7632 - packageName = "url-parse-lax"; 7633 - version = "1.0.0"; 7634 - src = fetchurl { 7635 - url = "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz"; 7636 - sha1 = "7af8f303645e9bd79a272e7a14ac68bc0609da73"; 7637 - }; 7638 - }; 7639 - "urlgrey-0.4.0" = { 7640 - name = "urlgrey"; 7641 - packageName = "urlgrey"; 7642 - version = "0.4.0"; 7643 - src = fetchurl { 7644 - url = "https://registry.npmjs.org/urlgrey/-/urlgrey-0.4.0.tgz"; 7645 - sha1 = "f065357040fb35c3b311d4e5dc36484d96dbea06"; 7646 - }; 7647 - }; 7648 - "use-3.1.1" = { 7649 - name = "use"; 7650 - packageName = "use"; 7651 - version = "3.1.1"; 7652 - src = fetchurl { 7653 - url = "https://registry.npmjs.org/use/-/use-3.1.1.tgz"; 7654 - sha512 = "cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ=="; 7655 - }; 7656 - }; 7657 - "util-deprecate-1.0.2" = { 7658 - name = "util-deprecate"; 7659 - packageName = "util-deprecate"; 7660 - version = "1.0.2"; 7661 - src = fetchurl { 7662 - url = "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz"; 7663 - sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf"; 7664 - }; 7665 - }; 7666 - "uuid-3.4.0" = { 7667 - name = "uuid"; 7668 - packageName = "uuid"; 7669 - version = "3.4.0"; 7670 - src = fetchurl { 7671 - url = "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz"; 7672 - sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7673 - }; 7674 - }; 7675 - "validate-npm-package-license-3.0.4" = { 7676 - name = "validate-npm-package-license"; 7677 - packageName = "validate-npm-package-license"; 7678 - version = "3.0.4"; 7679 - src = fetchurl { 7680 - url = "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz"; 7681 - sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew=="; 7682 - }; 7683 - }; 7684 - "webidl-conversions-3.0.1" = { 7685 - name = "webidl-conversions"; 7686 - packageName = "webidl-conversions"; 7687 - version = "3.0.1"; 7688 - src = fetchurl { 7689 - url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz"; 7690 - sha1 = "24534275e2a7bc6be7bc86611cc16ae0a5654871"; 7691 - }; 7692 - }; 7693 - "whatwg-url-5.0.0" = { 7694 - name = "whatwg-url"; 7695 - packageName = "whatwg-url"; 7696 - version = "5.0.0"; 7697 - src = fetchurl { 7698 - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz"; 7699 - sha1 = "966454e8765462e37644d3626f6742ce8b70965d"; 7700 - }; 7701 - }; 7702 - "which-1.3.1" = { 7703 - name = "which"; 7704 - packageName = "which"; 7705 - version = "1.3.1"; 7706 - src = fetchurl { 7707 - url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; 7708 - sha512 = "HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ=="; 7709 - }; 7710 - }; 7711 - "which-2.0.2" = { 7712 - name = "which"; 7713 - packageName = "which"; 7714 - version = "2.0.2"; 7715 - src = fetchurl { 7716 - url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz"; 7717 - sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA=="; 7718 - }; 7719 - }; 7720 - "which-boxed-primitive-1.0.2" = { 7721 - name = "which-boxed-primitive"; 7722 - packageName = "which-boxed-primitive"; 7723 - version = "1.0.2"; 7724 - src = fetchurl { 7725 - url = "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; 7726 - sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg=="; 7727 - }; 7728 - }; 7729 - "which-module-2.0.0" = { 7730 - name = "which-module"; 7731 - packageName = "which-module"; 7732 - version = "2.0.0"; 7733 - src = fetchurl { 7734 - url = "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz"; 7735 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 7736 - }; 7737 - }; 7738 - "wide-align-1.1.3" = { 7739 - name = "wide-align"; 7740 - packageName = "wide-align"; 7741 - version = "1.1.3"; 7742 - src = fetchurl { 7743 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 7744 - sha512 = "QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA=="; 7745 - }; 7746 - }; 7747 - "widest-line-2.0.1" = { 7748 - name = "widest-line"; 7749 - packageName = "widest-line"; 7750 - version = "2.0.1"; 7751 - src = fetchurl { 7752 - url = "https://registry.npmjs.org/widest-line/-/widest-line-2.0.1.tgz"; 7753 - sha512 = "Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA=="; 7754 - }; 7755 - }; 7756 - "windows-release-3.3.3" = { 7757 - name = "windows-release"; 7758 - packageName = "windows-release"; 7759 - version = "3.3.3"; 7760 - src = fetchurl { 7761 - url = "https://registry.npmjs.org/windows-release/-/windows-release-3.3.3.tgz"; 7762 - sha512 = "OSOGH1QYiW5yVor9TtmXKQvt2vjQqbYS+DqmsZw+r7xDwLXEeT3JGW0ZppFmHx4diyXmxt238KFR3N9jzevBRg=="; 7763 - }; 7764 - }; 7765 - "word-wrap-1.2.3" = { 7766 - name = "word-wrap"; 7767 - packageName = "word-wrap"; 7768 - version = "1.2.3"; 7769 - src = fetchurl { 7770 - url = "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz"; 7771 - sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 7772 - }; 7773 - }; 7774 - "wordwrap-1.0.0" = { 7775 - name = "wordwrap"; 7776 - packageName = "wordwrap"; 7777 - version = "1.0.0"; 7778 - src = fetchurl { 7779 - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; 7780 - sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; 7781 - }; 7782 - }; 7783 - "wrap-ansi-2.1.0" = { 7784 - name = "wrap-ansi"; 7785 - packageName = "wrap-ansi"; 7786 - version = "2.1.0"; 7787 - src = fetchurl { 7788 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz"; 7789 - sha1 = "d8fc3d284dd05794fe84973caecdd1cf824fdd85"; 7790 - }; 7791 - }; 7792 - "wrap-ansi-6.2.0" = { 7793 - name = "wrap-ansi"; 7794 - packageName = "wrap-ansi"; 7795 - version = "6.2.0"; 7796 - src = fetchurl { 7797 - url = "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz"; 7798 - sha512 = "r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA=="; 7799 - }; 7800 - }; 7801 - "wrappy-1.0.2" = { 7802 - name = "wrappy"; 7803 - packageName = "wrappy"; 7804 - version = "1.0.2"; 7805 - src = fetchurl { 7806 - url = "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz"; 7807 - sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 7808 - }; 7809 - }; 7810 - "write-file-atomic-2.4.3" = { 7811 - name = "write-file-atomic"; 7812 - packageName = "write-file-atomic"; 7813 - version = "2.4.3"; 7814 - src = fetchurl { 7815 - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz"; 7816 - sha512 = "GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ=="; 7817 - }; 7818 - }; 7819 - "write-file-atomic-3.0.3" = { 7820 - name = "write-file-atomic"; 7821 - packageName = "write-file-atomic"; 7822 - version = "3.0.3"; 7823 - src = fetchurl { 7824 - url = "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-3.0.3.tgz"; 7825 - sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 7826 - }; 7827 - }; 7828 - "xdg-basedir-3.0.0" = { 7829 - name = "xdg-basedir"; 7830 - packageName = "xdg-basedir"; 7831 - version = "3.0.0"; 7832 - src = fetchurl { 7833 - url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz"; 7834 - sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4"; 7835 - }; 7836 - }; 7837 - "xml-1.0.1" = { 7838 - name = "xml"; 7839 - packageName = "xml"; 7840 - version = "1.0.1"; 7841 - src = fetchurl { 7842 - url = "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz"; 7843 - sha1 = "78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5"; 7844 - }; 7845 - }; 7846 - "xtend-4.0.2" = { 7847 - name = "xtend"; 7848 - packageName = "xtend"; 7849 - version = "4.0.2"; 7850 - src = fetchurl { 7851 - url = "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz"; 7852 - sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 7853 - }; 7854 - }; 7855 - "y18n-4.0.3" = { 7856 - name = "y18n"; 7857 - packageName = "y18n"; 7858 - version = "4.0.3"; 7859 - src = fetchurl { 7860 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz"; 7861 - sha512 = "JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ=="; 7862 - }; 7863 - }; 7864 - "yallist-2.1.2" = { 7865 - name = "yallist"; 7866 - packageName = "yallist"; 7867 - version = "2.1.2"; 7868 - src = fetchurl { 7869 - url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz"; 7870 - sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52"; 7871 - }; 7872 - }; 7873 - "yallist-4.0.0" = { 7874 - name = "yallist"; 7875 - packageName = "yallist"; 7876 - version = "4.0.0"; 7877 - src = fetchurl { 7878 - url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 7879 - sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 7880 - }; 7881 - }; 7882 - "yaml-1.10.2" = { 7883 - name = "yaml"; 7884 - packageName = "yaml"; 7885 - version = "1.10.2"; 7886 - src = fetchurl { 7887 - url = "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz"; 7888 - sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg=="; 7889 - }; 7890 - }; 7891 - "yargs-12.0.5" = { 7892 - name = "yargs"; 7893 - packageName = "yargs"; 7894 - version = "12.0.5"; 7895 - src = fetchurl { 7896 - url = "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz"; 7897 - sha512 = "Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw=="; 7898 - }; 7899 - }; 7900 - "yargs-13.2.2" = { 7901 - name = "yargs"; 7902 - packageName = "yargs"; 7903 - version = "13.2.2"; 7904 - src = fetchurl { 7905 - url = "https://registry.npmjs.org/yargs/-/yargs-13.2.2.tgz"; 7906 - sha512 = "WyEoxgyTD3w5XRpAQNYUB9ycVH/PQrToaTXdYXRdOXvEy1l19br+VJsc0vcO8PTGg5ro/l/GY7F/JMEBmI0BxA=="; 7907 - }; 7908 - }; 7909 - "yargs-15.4.1" = { 7910 - name = "yargs"; 7911 - packageName = "yargs"; 7912 - version = "15.4.1"; 7913 - src = fetchurl { 7914 - url = "https://registry.npmjs.org/yargs/-/yargs-15.4.1.tgz"; 7915 - sha512 = "aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A=="; 7916 - }; 7917 - }; 7918 - "yargs-parser-11.1.1" = { 7919 - name = "yargs-parser"; 7920 - packageName = "yargs-parser"; 7921 - version = "11.1.1"; 7922 - src = fetchurl { 7923 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz"; 7924 - sha512 = "C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ=="; 7925 - }; 7926 - }; 7927 - "yargs-parser-13.0.0" = { 7928 - name = "yargs-parser"; 7929 - packageName = "yargs-parser"; 7930 - version = "13.0.0"; 7931 - src = fetchurl { 7932 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-13.0.0.tgz"; 7933 - sha512 = "w2LXjoL8oRdRQN+hOyppuXs+V/fVAYtpcrRxZuF7Kt/Oc+Jr2uAcVntaUTNT6w5ihoWfFDpNY8CPx1QskxZ/pw=="; 7934 - }; 7935 - }; 7936 - "yargs-parser-18.1.3" = { 7937 - name = "yargs-parser"; 7938 - packageName = "yargs-parser"; 7939 - version = "18.1.3"; 7940 - src = fetchurl { 7941 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz"; 7942 - sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 7943 - }; 7944 - }; 7945 - "yargs-parser-20.2.9" = { 7946 - name = "yargs-parser"; 7947 - packageName = "yargs-parser"; 7948 - version = "20.2.9"; 7949 - src = fetchurl { 7950 - url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz"; 7951 - sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 7952 - }; 7953 - }; 7954 - "yargs-unparser-1.5.0" = { 7955 - name = "yargs-unparser"; 7956 - packageName = "yargs-unparser"; 7957 - version = "1.5.0"; 7958 - src = fetchurl { 7959 - url = "https://registry.npmjs.org/yargs-unparser/-/yargs-unparser-1.5.0.tgz"; 7960 - sha512 = "HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw=="; 7961 - }; 7962 - }; 7963 - "yn-3.1.1" = { 7964 - name = "yn"; 7965 - packageName = "yn"; 7966 - version = "3.1.1"; 7967 - src = fetchurl { 7968 - url = "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz"; 7969 - sha512 = "Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q=="; 7970 - }; 7971 - }; 7972 - }; 7973 - in 7974 - { 7975 - commitizen = nodeEnv.buildNodePackage { 7976 - name = "commitizen"; 7977 - packageName = "commitizen"; 7978 - version = "4.2.4"; 7979 - src = fetchurl { 7980 - url = "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz"; 7981 - sha512 = "LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw=="; 7982 - }; 7983 - dependencies = [ 7984 - (sources."@babel/cli-7.11.6" // { 7985 - dependencies = [ 7986 - sources."source-map-0.5.7" 7987 - ]; 7988 - }) 7989 - sources."@babel/code-frame-7.15.8" 7990 - sources."@babel/compat-data-7.15.0" 7991 - (sources."@babel/core-7.11.6" // { 7992 - dependencies = [ 7993 - sources."debug-4.3.2" 7994 - sources."ms-2.1.2" 7995 - sources."semver-5.7.1" 7996 - sources."source-map-0.5.7" 7997 - ]; 7998 - }) 7999 - (sources."@babel/generator-7.15.8" // { 8000 - dependencies = [ 8001 - sources."source-map-0.5.7" 8002 - ]; 8003 - }) 8004 - sources."@babel/helper-annotate-as-pure-7.15.4" 8005 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" 8006 - sources."@babel/helper-compilation-targets-7.15.4" 8007 - sources."@babel/helper-create-class-features-plugin-7.15.4" 8008 - sources."@babel/helper-create-regexp-features-plugin-7.14.5" 8009 - sources."@babel/helper-explode-assignable-expression-7.15.4" 8010 - sources."@babel/helper-function-name-7.15.4" 8011 - sources."@babel/helper-get-function-arity-7.15.4" 8012 - sources."@babel/helper-hoist-variables-7.15.4" 8013 - sources."@babel/helper-member-expression-to-functions-7.15.4" 8014 - sources."@babel/helper-module-imports-7.15.4" 8015 - sources."@babel/helper-module-transforms-7.15.8" 8016 - sources."@babel/helper-optimise-call-expression-7.15.4" 8017 - sources."@babel/helper-plugin-utils-7.14.5" 8018 - sources."@babel/helper-remap-async-to-generator-7.15.4" 8019 - sources."@babel/helper-replace-supers-7.15.4" 8020 - sources."@babel/helper-simple-access-7.15.4" 8021 - sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4" 8022 - sources."@babel/helper-split-export-declaration-7.15.4" 8023 - sources."@babel/helper-validator-identifier-7.15.7" 8024 - sources."@babel/helper-validator-option-7.14.5" 8025 - sources."@babel/helper-wrap-function-7.15.4" 8026 - sources."@babel/helpers-7.15.4" 8027 - sources."@babel/highlight-7.14.5" 8028 - sources."@babel/parser-7.15.8" 8029 - sources."@babel/plugin-proposal-async-generator-functions-7.15.8" 8030 - sources."@babel/plugin-proposal-class-properties-7.14.5" 8031 - sources."@babel/plugin-proposal-dynamic-import-7.14.5" 8032 - sources."@babel/plugin-proposal-export-namespace-from-7.14.5" 8033 - sources."@babel/plugin-proposal-json-strings-7.14.5" 8034 - sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5" 8035 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" 8036 - sources."@babel/plugin-proposal-numeric-separator-7.14.5" 8037 - sources."@babel/plugin-proposal-object-rest-spread-7.11.0" 8038 - sources."@babel/plugin-proposal-optional-catch-binding-7.14.5" 8039 - sources."@babel/plugin-proposal-optional-chaining-7.14.5" 8040 - sources."@babel/plugin-proposal-private-methods-7.14.5" 8041 - sources."@babel/plugin-proposal-unicode-property-regex-7.14.5" 8042 - sources."@babel/plugin-syntax-async-generators-7.8.4" 8043 - sources."@babel/plugin-syntax-class-properties-7.12.13" 8044 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 8045 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 8046 - sources."@babel/plugin-syntax-json-strings-7.8.3" 8047 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 8048 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 8049 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 8050 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 8051 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 8052 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 8053 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 8054 - sources."@babel/plugin-transform-arrow-functions-7.14.5" 8055 - sources."@babel/plugin-transform-async-to-generator-7.14.5" 8056 - sources."@babel/plugin-transform-block-scoped-functions-7.14.5" 8057 - sources."@babel/plugin-transform-block-scoping-7.15.3" 8058 - sources."@babel/plugin-transform-classes-7.15.4" 8059 - sources."@babel/plugin-transform-computed-properties-7.14.5" 8060 - sources."@babel/plugin-transform-destructuring-7.14.7" 8061 - sources."@babel/plugin-transform-dotall-regex-7.14.5" 8062 - sources."@babel/plugin-transform-duplicate-keys-7.14.5" 8063 - sources."@babel/plugin-transform-exponentiation-operator-7.14.5" 8064 - sources."@babel/plugin-transform-for-of-7.15.4" 8065 - sources."@babel/plugin-transform-function-name-7.14.5" 8066 - sources."@babel/plugin-transform-literals-7.14.5" 8067 - sources."@babel/plugin-transform-member-expression-literals-7.14.5" 8068 - sources."@babel/plugin-transform-modules-amd-7.14.5" 8069 - sources."@babel/plugin-transform-modules-commonjs-7.15.4" 8070 - sources."@babel/plugin-transform-modules-systemjs-7.15.4" 8071 - sources."@babel/plugin-transform-modules-umd-7.14.5" 8072 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9" 8073 - sources."@babel/plugin-transform-new-target-7.14.5" 8074 - sources."@babel/plugin-transform-object-super-7.14.5" 8075 - sources."@babel/plugin-transform-parameters-7.15.4" 8076 - sources."@babel/plugin-transform-property-literals-7.14.5" 8077 - sources."@babel/plugin-transform-regenerator-7.14.5" 8078 - sources."@babel/plugin-transform-reserved-words-7.14.5" 8079 - sources."@babel/plugin-transform-shorthand-properties-7.14.5" 8080 - sources."@babel/plugin-transform-spread-7.15.8" 8081 - sources."@babel/plugin-transform-sticky-regex-7.14.5" 8082 - sources."@babel/plugin-transform-template-literals-7.14.5" 8083 - sources."@babel/plugin-transform-typeof-symbol-7.14.5" 8084 - sources."@babel/plugin-transform-unicode-escapes-7.14.5" 8085 - sources."@babel/plugin-transform-unicode-regex-7.14.5" 8086 - (sources."@babel/preset-env-7.11.5" // { 8087 - dependencies = [ 8088 - sources."semver-5.7.1" 8089 - ]; 8090 - }) 8091 - sources."@babel/preset-modules-0.1.4" 8092 - sources."@babel/register-7.11.5" 8093 - sources."@babel/runtime-7.15.4" 8094 - sources."@babel/template-7.15.4" 8095 - (sources."@babel/traverse-7.15.4" // { 8096 - dependencies = [ 8097 - sources."debug-4.3.2" 8098 - sources."ms-2.1.2" 8099 - ]; 8100 - }) 8101 - sources."@babel/types-7.15.6" 8102 - sources."@commitlint/execute-rule-13.2.0" 8103 - (sources."@commitlint/load-13.2.1" // { 8104 - dependencies = [ 8105 - sources."ansi-styles-4.3.0" 8106 - sources."chalk-4.1.2" 8107 - sources."color-convert-2.0.1" 8108 - sources."color-name-1.1.4" 8109 - sources."has-flag-4.0.0" 8110 - sources."supports-color-7.2.0" 8111 - ]; 8112 - }) 8113 - sources."@commitlint/resolve-extends-13.2.0" 8114 - (sources."@commitlint/types-13.2.0" // { 8115 - dependencies = [ 8116 - sources."ansi-styles-4.3.0" 8117 - sources."chalk-4.1.2" 8118 - sources."color-convert-2.0.1" 8119 - sources."color-name-1.1.4" 8120 - sources."has-flag-4.0.0" 8121 - sources."supports-color-7.2.0" 8122 - ]; 8123 - }) 8124 - sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" 8125 - (sources."@istanbuljs/load-nyc-config-1.1.0" // { 8126 - dependencies = [ 8127 - sources."find-up-4.1.0" 8128 - sources."locate-path-5.0.0" 8129 - sources."p-locate-4.1.0" 8130 - sources."path-exists-4.0.0" 8131 - ]; 8132 - }) 8133 - sources."@istanbuljs/nyc-config-babel-2.1.1" 8134 - sources."@istanbuljs/schema-0.1.3" 8135 - sources."@nodelib/fs.scandir-2.1.5" 8136 - sources."@nodelib/fs.stat-2.0.5" 8137 - sources."@nodelib/fs.walk-1.2.8" 8138 - sources."@octokit/auth-token-2.5.0" 8139 - (sources."@octokit/endpoint-6.0.12" // { 8140 - dependencies = [ 8141 - sources."is-plain-object-5.0.0" 8142 - sources."universal-user-agent-6.0.0" 8143 - ]; 8144 - }) 8145 - sources."@octokit/openapi-types-11.2.0" 8146 - (sources."@octokit/plugin-paginate-rest-1.1.2" // { 8147 - dependencies = [ 8148 - sources."@octokit/types-2.16.2" 8149 - ]; 8150 - }) 8151 - sources."@octokit/plugin-request-log-1.0.4" 8152 - (sources."@octokit/plugin-rest-endpoint-methods-2.4.0" // { 8153 - dependencies = [ 8154 - sources."@octokit/types-2.16.2" 8155 - ]; 8156 - }) 8157 - (sources."@octokit/request-5.6.2" // { 8158 - dependencies = [ 8159 - sources."@octokit/request-error-2.1.0" 8160 - sources."is-plain-object-5.0.0" 8161 - sources."universal-user-agent-6.0.0" 8162 - ]; 8163 - }) 8164 - (sources."@octokit/request-error-1.2.1" // { 8165 - dependencies = [ 8166 - sources."@octokit/types-2.16.2" 8167 - ]; 8168 - }) 8169 - sources."@octokit/rest-16.43.2" 8170 - sources."@octokit/types-6.34.0" 8171 - (sources."@semantic-release/commit-analyzer-6.3.3" // { 8172 - dependencies = [ 8173 - sources."debug-4.3.2" 8174 - sources."ms-2.1.2" 8175 - ]; 8176 - }) 8177 - sources."@semantic-release/error-2.2.0" 8178 - (sources."@semantic-release/github-5.5.8" // { 8179 - dependencies = [ 8180 - sources."debug-4.3.2" 8181 - sources."mime-2.5.2" 8182 - sources."ms-2.1.2" 8183 - ]; 8184 - }) 8185 - (sources."@semantic-release/npm-5.3.5" // { 8186 - dependencies = [ 8187 - sources."cross-spawn-7.0.3" 8188 - sources."execa-3.4.0" 8189 - sources."get-stream-5.2.0" 8190 - sources."is-stream-2.0.1" 8191 - sources."mimic-fn-2.1.0" 8192 - sources."npm-run-path-4.0.1" 8193 - sources."onetime-5.1.2" 8194 - sources."p-finally-2.0.1" 8195 - sources."path-key-3.1.1" 8196 - sources."read-pkg-5.2.0" 8197 - sources."registry-auth-token-4.2.1" 8198 - sources."shebang-command-2.0.0" 8199 - sources."shebang-regex-3.0.0" 8200 - sources."type-fest-0.6.0" 8201 - sources."which-2.0.2" 8202 - ]; 8203 - }) 8204 - (sources."@semantic-release/release-notes-generator-7.3.5" // { 8205 - dependencies = [ 8206 - sources."debug-4.3.2" 8207 - sources."find-up-4.1.0" 8208 - sources."get-stream-5.2.0" 8209 - sources."locate-path-5.0.0" 8210 - sources."ms-2.1.2" 8211 - sources."p-locate-4.1.0" 8212 - sources."path-exists-4.0.0" 8213 - sources."read-pkg-5.2.0" 8214 - sources."read-pkg-up-7.0.1" 8215 - sources."type-fest-0.6.0" 8216 - ]; 8217 - }) 8218 - sources."@sinonjs/commons-1.8.3" 8219 - (sources."@sinonjs/formatio-3.2.2" // { 8220 - dependencies = [ 8221 - sources."@sinonjs/samsam-3.3.3" 8222 - ]; 8223 - }) 8224 - sources."@sinonjs/samsam-2.1.3" 8225 - sources."@sinonjs/text-encoding-0.7.1" 8226 - sources."@types/glob-7.2.0" 8227 - sources."@types/minimatch-3.0.5" 8228 - sources."@types/minimist-1.2.2" 8229 - sources."@types/node-16.11.1" 8230 - sources."@types/normalize-package-data-2.4.1" 8231 - sources."@types/parse-json-4.0.0" 8232 - sources."@types/retry-0.12.1" 8233 - sources."JSONStream-1.3.5" 8234 - sources."abbrev-1.1.1" 8235 - sources."agent-base-5.1.1" 8236 - sources."aggregate-error-3.1.0" 8237 - sources."ansi-align-2.0.0" 8238 - sources."ansi-colors-3.2.3" 8239 - sources."ansi-escapes-3.2.0" 8240 - sources."ansi-regex-3.0.0" 8241 - sources."ansi-styles-3.2.1" 8242 - sources."ansicolors-0.3.2" 8243 - (sources."anymatch-2.0.0" // { 8244 - dependencies = [ 8245 - (sources."braces-2.3.2" // { 8246 - dependencies = [ 8247 - sources."extend-shallow-2.0.1" 8248 - ]; 8249 - }) 8250 - (sources."fill-range-4.0.0" // { 8251 - dependencies = [ 8252 - sources."extend-shallow-2.0.1" 8253 - ]; 8254 - }) 8255 - (sources."is-number-3.0.0" // { 8256 - dependencies = [ 8257 - sources."kind-of-3.2.2" 8258 - ]; 8259 - }) 8260 - sources."micromatch-3.1.10" 8261 - sources."normalize-path-2.1.1" 8262 - sources."to-regex-range-2.1.1" 8263 - ]; 8264 - }) 8265 - sources."append-transform-2.0.0" 8266 - sources."archy-1.0.0" 8267 - sources."arg-4.1.3" 8268 - sources."argparse-1.0.10" 8269 - sources."argv-formatter-1.0.0" 8270 - sources."arr-diff-4.0.0" 8271 - sources."arr-flatten-1.1.0" 8272 - sources."arr-union-3.1.0" 8273 - sources."array-from-2.1.1" 8274 - sources."array-ify-1.0.0" 8275 - sources."array-union-2.1.0" 8276 - sources."array-unique-0.3.2" 8277 - sources."arrify-1.0.1" 8278 - sources."asn1-0.1.11" 8279 - sources."assert-plus-0.1.5" 8280 - sources."assertion-error-1.1.0" 8281 - sources."assign-symbols-1.0.0" 8282 - sources."async-0.9.2" 8283 - sources."async-each-1.0.3" 8284 - sources."atob-2.1.2" 8285 - sources."atob-lite-2.0.0" 8286 - sources."aws-sign2-0.5.0" 8287 - (sources."axios-0.19.0" // { 8288 - dependencies = [ 8289 - sources."is-buffer-2.0.5" 8290 - ]; 8291 - }) 8292 - sources."babel-plugin-dynamic-import-node-2.3.3" 8293 - sources."babel-plugin-istanbul-5.2.0" 8294 - sources."balanced-match-1.0.2" 8295 - (sources."base-0.11.2" // { 8296 - dependencies = [ 8297 - sources."define-property-1.0.0" 8298 - ]; 8299 - }) 8300 - sources."before-after-hook-2.2.2" 8301 - sources."binary-extensions-1.13.1" 8302 - sources."bindings-1.5.0" 8303 - (sources."bl-0.9.5" // { 8304 - dependencies = [ 8305 - sources."isarray-0.0.1" 8306 - sources."readable-stream-1.0.34" 8307 - sources."string_decoder-0.10.31" 8308 - ]; 8309 - }) 8310 - sources."boom-0.4.2" 8311 - sources."bottleneck-2.19.5" 8312 - (sources."boxen-1.3.0" // { 8313 - dependencies = [ 8314 - sources."camelcase-4.1.0" 8315 - ]; 8316 - }) 8317 - sources."brace-expansion-1.1.11" 8318 - sources."braces-3.0.2" 8319 - sources."browser-stdout-1.3.1" 8320 - sources."browserslist-4.17.4" 8321 - sources."btoa-lite-1.0.0" 8322 - sources."buffer-from-1.1.2" 8323 - sources."cache-base-1.0.1" 8324 - sources."cachedir-2.2.0" 8325 - (sources."caching-transform-4.0.0" // { 8326 - dependencies = [ 8327 - sources."make-dir-3.1.0" 8328 - sources."write-file-atomic-3.0.3" 8329 - ]; 8330 - }) 8331 - sources."call-bind-1.0.2" 8332 - sources."callsites-3.1.0" 8333 - sources."camelcase-5.3.1" 8334 - sources."camelcase-keys-6.2.2" 8335 - sources."caniuse-lite-1.0.30001270" 8336 - sources."capture-stack-trace-1.0.1" 8337 - sources."cardinal-2.1.1" 8338 - sources."caseless-0.6.0" 8339 - sources."chai-4.1.2" 8340 - sources."chalk-2.4.2" 8341 - sources."chardet-0.7.0" 8342 - sources."charenc-0.0.2" 8343 - sources."check-error-1.0.2" 8344 - (sources."chokidar-2.1.8" // { 8345 - dependencies = [ 8346 - sources."braces-2.3.2" 8347 - sources."extend-shallow-2.0.1" 8348 - sources."fill-range-4.0.0" 8349 - sources."is-number-3.0.0" 8350 - sources."kind-of-3.2.2" 8351 - sources."to-regex-range-2.1.1" 8352 - ]; 8353 - }) 8354 - sources."ci-info-1.6.0" 8355 - (sources."class-utils-0.3.6" // { 8356 - dependencies = [ 8357 - sources."define-property-0.2.5" 8358 - (sources."is-accessor-descriptor-0.1.6" // { 8359 - dependencies = [ 8360 - sources."kind-of-3.2.2" 8361 - ]; 8362 - }) 8363 - (sources."is-data-descriptor-0.1.4" // { 8364 - dependencies = [ 8365 - sources."kind-of-3.2.2" 8366 - ]; 8367 - }) 8368 - sources."is-descriptor-0.1.6" 8369 - sources."kind-of-5.1.0" 8370 - ]; 8371 - }) 8372 - sources."clean-stack-2.2.0" 8373 - sources."cli-boxes-1.0.0" 8374 - sources."cli-cursor-2.1.0" 8375 - (sources."cli-table-0.3.6" // { 8376 - dependencies = [ 8377 - sources."colors-1.0.3" 8378 - ]; 8379 - }) 8380 - sources."cli-width-2.2.1" 8381 - (sources."cliui-4.1.0" // { 8382 - dependencies = [ 8383 - sources."strip-ansi-4.0.0" 8384 - ]; 8385 - }) 8386 - sources."code-point-at-1.1.0" 8387 - sources."codecov.io-0.1.6" 8388 - sources."collection-visit-1.0.0" 8389 - sources."color-convert-1.9.3" 8390 - sources."color-name-1.1.3" 8391 - sources."colors-0.6.2" 8392 - sources."combined-stream-0.0.7" 8393 - sources."commander-4.1.1" 8394 - sources."commitizen-4.2.4" 8395 - sources."commondir-1.0.1" 8396 - sources."compare-func-2.0.0" 8397 - sources."component-emitter-1.3.0" 8398 - sources."concat-map-0.0.1" 8399 - (sources."configstore-3.1.5" // { 8400 - dependencies = [ 8401 - sources."dot-prop-4.2.1" 8402 - sources."is-obj-1.0.1" 8403 - sources."make-dir-1.3.0" 8404 - sources."pify-3.0.0" 8405 - ]; 8406 - }) 8407 - sources."conventional-changelog-angular-5.0.13" 8408 - sources."conventional-changelog-conventionalcommits-4.4.0" 8409 - (sources."conventional-changelog-writer-4.1.0" // { 8410 - dependencies = [ 8411 - sources."split-1.0.1" 8412 - ]; 8413 - }) 8414 - sources."conventional-commit-types-3.0.0" 8415 - sources."conventional-commits-filter-2.0.7" 8416 - sources."conventional-commits-parser-3.2.2" 8417 - sources."convert-source-map-1.8.0" 8418 - sources."copy-descriptor-0.1.1" 8419 - (sources."core-js-compat-3.18.3" // { 8420 - dependencies = [ 8421 - sources."semver-7.0.0" 8422 - ]; 8423 - }) 8424 - sources."core-util-is-1.0.3" 8425 - sources."cosmiconfig-7.0.1" 8426 - sources."create-error-class-3.0.2" 8427 - sources."create-require-1.1.1" 8428 - (sources."cross-spawn-6.0.5" // { 8429 - dependencies = [ 8430 - sources."semver-5.7.1" 8431 - ]; 8432 - }) 8433 - sources."crypt-0.0.2" 8434 - sources."cryptiles-0.2.2" 8435 - sources."crypto-random-string-1.0.0" 8436 - sources."ctype-0.5.3" 8437 - sources."cz-conventional-changelog-3.2.0" 8438 - (sources."cz-conventional-changelog-default-export-0.0.0-semantically-released.1" // { 8439 - dependencies = [ 8440 - sources."conventional-commit-types-2.3.0" 8441 - sources."longest-1.0.1" 8442 - ]; 8443 - }) 8444 - sources."dateformat-3.0.3" 8445 - sources."debug-2.6.9" 8446 - sources."decamelize-1.2.0" 8447 - (sources."decamelize-keys-1.1.0" // { 8448 - dependencies = [ 8449 - sources."map-obj-1.0.1" 8450 - ]; 8451 - }) 8452 - sources."decode-uri-component-0.2.0" 8453 - sources."dedent-0.7.0" 8454 - sources."deep-eql-3.0.1" 8455 - sources."deep-equal-0.1.2" 8456 - sources."deep-extend-0.6.0" 8457 - sources."default-require-extensions-3.0.0" 8458 - sources."define-properties-1.1.3" 8459 - sources."define-property-2.0.2" 8460 - sources."defined-0.0.0" 8461 - sources."delayed-stream-0.0.5" 8462 - sources."deprecation-2.3.1" 8463 - sources."detect-file-1.0.0" 8464 - sources."detect-indent-6.0.0" 8465 - sources."diff-4.0.2" 8466 - sources."dir-glob-3.0.1" 8467 - sources."dot-prop-5.3.0" 8468 - sources."duplexer-0.1.2" 8469 - sources."duplexer2-0.1.4" 8470 - sources."duplexer3-0.1.4" 8471 - sources."electron-to-chromium-1.3.873" 8472 - sources."emoji-regex-7.0.3" 8473 - sources."end-of-stream-1.4.4" 8474 - (sources."env-ci-4.5.2" // { 8475 - dependencies = [ 8476 - sources."cross-spawn-7.0.3" 8477 - sources."execa-3.4.0" 8478 - sources."get-stream-5.2.0" 8479 - sources."is-stream-2.0.1" 8480 - sources."mimic-fn-2.1.0" 8481 - sources."npm-run-path-4.0.1" 8482 - sources."onetime-5.1.2" 8483 - sources."p-finally-2.0.1" 8484 - sources."path-key-3.1.1" 8485 - sources."shebang-command-2.0.0" 8486 - sources."shebang-regex-3.0.0" 8487 - sources."which-2.0.2" 8488 - ]; 8489 - }) 8490 - sources."error-ex-1.3.2" 8491 - sources."es-abstract-1.19.1" 8492 - sources."es-to-primitive-1.2.1" 8493 - sources."es6-error-4.1.1" 8494 - sources."escalade-3.1.1" 8495 - sources."escape-string-regexp-1.0.5" 8496 - sources."esprima-4.0.1" 8497 - sources."esutils-2.0.3" 8498 - sources."execa-1.0.0" 8499 - (sources."expand-brackets-2.1.4" // { 8500 - dependencies = [ 8501 - sources."define-property-0.2.5" 8502 - sources."extend-shallow-2.0.1" 8503 - (sources."is-accessor-descriptor-0.1.6" // { 8504 - dependencies = [ 8505 - sources."kind-of-3.2.2" 8506 - ]; 8507 - }) 8508 - (sources."is-data-descriptor-0.1.4" // { 8509 - dependencies = [ 8510 - sources."kind-of-3.2.2" 8511 - ]; 8512 - }) 8513 - sources."is-descriptor-0.1.6" 8514 - sources."kind-of-5.1.0" 8515 - ]; 8516 - }) 8517 - sources."expand-tilde-2.0.2" 8518 - (sources."extend-shallow-3.0.2" // { 8519 - dependencies = [ 8520 - sources."is-extendable-1.0.1" 8521 - ]; 8522 - }) 8523 - sources."external-editor-3.1.0" 8524 - (sources."extglob-2.0.4" // { 8525 - dependencies = [ 8526 - sources."define-property-1.0.0" 8527 - sources."extend-shallow-2.0.1" 8528 - ]; 8529 - }) 8530 - (sources."fast-glob-3.2.7" // { 8531 - dependencies = [ 8532 - sources."glob-parent-5.1.2" 8533 - ]; 8534 - }) 8535 - sources."fastq-1.13.0" 8536 - sources."figures-2.0.0" 8537 - sources."file-uri-to-path-1.0.0" 8538 - sources."fill-keys-1.0.2" 8539 - sources."fill-range-7.0.1" 8540 - sources."find-cache-dir-2.1.0" 8541 - sources."find-node-modules-2.1.2" 8542 - sources."find-root-1.1.0" 8543 - sources."find-up-3.0.0" 8544 - sources."find-versions-3.2.0" 8545 - (sources."findup-0.1.5" // { 8546 - dependencies = [ 8547 - sources."commander-2.1.0" 8548 - ]; 8549 - }) 8550 - sources."findup-sync-4.0.0" 8551 - (sources."flat-4.1.1" // { 8552 - dependencies = [ 8553 - sources."is-buffer-2.0.5" 8554 - ]; 8555 - }) 8556 - (sources."follow-redirects-1.5.10" // { 8557 - dependencies = [ 8558 - sources."debug-3.1.0" 8559 - ]; 8560 - }) 8561 - sources."for-in-1.0.2" 8562 - (sources."foreground-child-2.0.0" // { 8563 - dependencies = [ 8564 - sources."cross-spawn-7.0.3" 8565 - sources."path-key-3.1.1" 8566 - sources."shebang-command-2.0.0" 8567 - sources."shebang-regex-3.0.0" 8568 - sources."which-2.0.2" 8569 - ]; 8570 - }) 8571 - sources."forever-agent-0.5.2" 8572 - sources."form-data-0.1.4" 8573 - sources."fragment-cache-0.2.1" 8574 - sources."from2-2.3.0" 8575 - sources."fromentries-1.3.2" 8576 - sources."fs-extra-8.1.0" 8577 - sources."fs-readdir-recursive-1.1.0" 8578 - sources."fs.realpath-1.0.0" 8579 - sources."fsevents-1.2.13" 8580 - sources."function-bind-1.1.1" 8581 - sources."gensync-1.0.0-beta.2" 8582 - sources."get-caller-file-2.0.5" 8583 - sources."get-func-name-2.0.0" 8584 - sources."get-intrinsic-1.1.1" 8585 - sources."get-package-type-0.1.0" 8586 - sources."get-stream-4.1.0" 8587 - sources."get-symbol-description-1.0.0" 8588 - sources."get-value-2.0.6" 8589 - sources."ghooks-2.0.4" 8590 - (sources."git-log-parser-1.2.0" // { 8591 - dependencies = [ 8592 - sources."split2-1.0.0" 8593 - sources."through2-2.0.5" 8594 - ]; 8595 - }) 8596 - sources."glob-7.1.4" 8597 - (sources."glob-parent-3.1.0" // { 8598 - dependencies = [ 8599 - sources."is-glob-3.1.0" 8600 - ]; 8601 - }) 8602 - sources."global-dirs-0.1.1" 8603 - sources."global-modules-1.0.0" 8604 - sources."global-prefix-1.0.2" 8605 - sources."globals-11.12.0" 8606 - (sources."globby-10.0.2" // { 8607 - dependencies = [ 8608 - sources."slash-3.0.0" 8609 - ]; 8610 - }) 8611 - (sources."got-6.7.1" // { 8612 - dependencies = [ 8613 - sources."get-stream-3.0.0" 8614 - ]; 8615 - }) 8616 - sources."graceful-fs-4.2.8" 8617 - sources."graceful-readlink-1.0.1" 8618 - sources."growl-1.10.5" 8619 - sources."handlebars-4.7.7" 8620 - sources."hard-rejection-2.1.0" 8621 - sources."has-1.0.3" 8622 - sources."has-bigints-1.0.1" 8623 - sources."has-flag-3.0.0" 8624 - sources."has-symbols-1.0.2" 8625 - sources."has-tostringtag-1.0.0" 8626 - sources."has-value-1.0.0" 8627 - (sources."has-values-1.0.0" // { 8628 - dependencies = [ 8629 - (sources."is-number-3.0.0" // { 8630 - dependencies = [ 8631 - sources."kind-of-3.2.2" 8632 - ]; 8633 - }) 8634 - sources."kind-of-4.0.0" 8635 - ]; 8636 - }) 8637 - (sources."hasha-5.2.2" // { 8638 - dependencies = [ 8639 - sources."is-stream-2.0.1" 8640 - ]; 8641 - }) 8642 - sources."hawk-1.1.1" 8643 - sources."he-1.2.0" 8644 - sources."hoek-0.9.1" 8645 - sources."homedir-polyfill-1.0.3" 8646 - sources."hook-std-2.0.0" 8647 - sources."hosted-git-info-2.8.9" 8648 - sources."html-escaper-2.0.2" 8649 - (sources."http-proxy-agent-3.0.0" // { 8650 - dependencies = [ 8651 - sources."debug-4.3.2" 8652 - sources."ms-2.1.2" 8653 - ]; 8654 - }) 8655 - sources."http-signature-0.10.1" 8656 - (sources."https-proxy-agent-4.0.0" // { 8657 - dependencies = [ 8658 - sources."debug-4.3.2" 8659 - sources."ms-2.1.2" 8660 - ]; 8661 - }) 8662 - sources."human-signals-1.1.1" 8663 - sources."iconv-lite-0.4.24" 8664 - sources."ignore-5.1.8" 8665 - sources."ignore-by-default-1.0.1" 8666 - (sources."import-fresh-3.3.0" // { 8667 - dependencies = [ 8668 - sources."resolve-from-4.0.0" 8669 - ]; 8670 - }) 8671 - sources."import-from-3.0.0" 8672 - sources."import-lazy-2.1.0" 8673 - sources."imurmurhash-0.1.4" 8674 - sources."in-publish-2.0.0" 8675 - sources."indent-string-4.0.0" 8676 - sources."inflight-1.0.6" 8677 - sources."inherits-2.0.4" 8678 - sources."ini-1.3.8" 8679 - sources."inquirer-6.5.2" 8680 - sources."internal-slot-1.0.3" 8681 - (sources."into-stream-5.1.1" // { 8682 - dependencies = [ 8683 - sources."p-is-promise-3.0.0" 8684 - ]; 8685 - }) 8686 - sources."invariant-2.2.4" 8687 - sources."invert-kv-2.0.0" 8688 - sources."is-accessor-descriptor-1.0.0" 8689 - sources."is-arrayish-0.2.1" 8690 - sources."is-bigint-1.0.4" 8691 - sources."is-binary-path-1.0.1" 8692 - sources."is-boolean-object-1.1.2" 8693 - sources."is-buffer-1.1.6" 8694 - sources."is-callable-1.2.4" 8695 - sources."is-ci-1.2.1" 8696 - sources."is-core-module-2.8.0" 8697 - sources."is-data-descriptor-1.0.0" 8698 - sources."is-date-object-1.0.5" 8699 - sources."is-descriptor-1.0.2" 8700 - sources."is-extendable-0.1.1" 8701 - sources."is-extglob-2.1.1" 8702 - sources."is-fullwidth-code-point-2.0.0" 8703 - sources."is-glob-4.0.3" 8704 - sources."is-installed-globally-0.1.0" 8705 - sources."is-negative-zero-2.0.1" 8706 - sources."is-npm-1.0.0" 8707 - sources."is-number-7.0.0" 8708 - sources."is-number-object-1.0.6" 8709 - sources."is-obj-2.0.0" 8710 - sources."is-object-1.0.2" 8711 - sources."is-path-inside-1.0.1" 8712 - sources."is-plain-obj-1.1.0" 8713 - sources."is-plain-object-2.0.4" 8714 - sources."is-redirect-1.0.0" 8715 - sources."is-regex-1.1.4" 8716 - sources."is-retry-allowed-1.2.0" 8717 - sources."is-shared-array-buffer-1.0.1" 8718 - sources."is-stream-1.1.0" 8719 - sources."is-string-1.0.7" 8720 - sources."is-symbol-1.0.4" 8721 - sources."is-text-path-1.0.1" 8722 - sources."is-typedarray-1.0.0" 8723 - sources."is-utf8-0.2.1" 8724 - sources."is-weakref-1.0.1" 8725 - sources."is-windows-1.0.2" 8726 - sources."isarray-1.0.0" 8727 - sources."isexe-2.0.0" 8728 - sources."isobject-3.0.1" 8729 - sources."issue-parser-5.0.0" 8730 - sources."istanbul-lib-coverage-2.0.5" 8731 - sources."istanbul-lib-hook-3.0.0" 8732 - sources."istanbul-lib-instrument-3.3.0" 8733 - (sources."istanbul-lib-processinfo-2.0.2" // { 8734 - dependencies = [ 8735 - sources."cross-spawn-7.0.3" 8736 - sources."istanbul-lib-coverage-3.2.0" 8737 - sources."make-dir-3.1.0" 8738 - sources."path-key-3.1.1" 8739 - sources."shebang-command-2.0.0" 8740 - sources."shebang-regex-3.0.0" 8741 - sources."which-2.0.2" 8742 - ]; 8743 - }) 8744 - (sources."istanbul-lib-report-3.0.0" // { 8745 - dependencies = [ 8746 - sources."has-flag-4.0.0" 8747 - sources."istanbul-lib-coverage-3.2.0" 8748 - sources."make-dir-3.1.0" 8749 - sources."supports-color-7.2.0" 8750 - ]; 8751 - }) 8752 - (sources."istanbul-lib-source-maps-4.0.1" // { 8753 - dependencies = [ 8754 - sources."debug-4.3.2" 8755 - sources."istanbul-lib-coverage-3.2.0" 8756 - sources."ms-2.1.2" 8757 - ]; 8758 - }) 8759 - sources."istanbul-reports-3.0.5" 8760 - sources."java-properties-1.0.2" 8761 - sources."js-tokens-4.0.0" 8762 - sources."js-yaml-3.13.1" 8763 - sources."jsesc-2.5.2" 8764 - sources."json-parse-better-errors-1.0.2" 8765 - sources."json-parse-even-better-errors-2.3.1" 8766 - sources."json-stringify-safe-5.0.1" 8767 - sources."json5-2.2.0" 8768 - sources."jsonfile-4.0.0" 8769 - sources."jsonify-0.0.0" 8770 - sources."jsonparse-1.3.1" 8771 - sources."just-extend-4.2.1" 8772 - sources."kind-of-6.0.3" 8773 - sources."latest-version-3.1.0" 8774 - sources."lcid-2.0.0" 8775 - sources."leven-3.1.0" 8776 - sources."levenary-1.1.1" 8777 - sources."lines-and-columns-1.1.6" 8778 - (sources."load-json-file-4.0.0" // { 8779 - dependencies = [ 8780 - sources."parse-json-4.0.0" 8781 - sources."pify-3.0.0" 8782 - sources."strip-bom-3.0.0" 8783 - ]; 8784 - }) 8785 - sources."locate-path-3.0.0" 8786 - sources."lodash-4.17.21" 8787 - sources."lodash._baseclone-4.5.7" 8788 - sources."lodash.capitalize-4.2.1" 8789 - sources."lodash.clone-4.5.0" 8790 - sources."lodash.escaperegexp-4.1.2" 8791 - sources."lodash.flattendeep-4.4.0" 8792 - sources."lodash.get-4.4.2" 8793 - sources."lodash.ismatch-4.4.0" 8794 - sources."lodash.isplainobject-4.0.6" 8795 - sources."lodash.isstring-4.0.1" 8796 - sources."lodash.map-4.6.0" 8797 - sources."lodash.set-4.3.2" 8798 - sources."lodash.uniq-4.5.0" 8799 - sources."lodash.uniqby-4.7.0" 8800 - sources."log-symbols-2.2.0" 8801 - sources."lolex-2.7.5" 8802 - sources."longest-2.0.1" 8803 - sources."loose-envify-1.4.0" 8804 - sources."lowercase-keys-1.0.1" 8805 - sources."lru-cache-4.1.5" 8806 - sources."macos-release-2.5.0" 8807 - (sources."make-dir-2.1.0" // { 8808 - dependencies = [ 8809 - sources."semver-5.7.1" 8810 - ]; 8811 - }) 8812 - sources."make-error-1.3.6" 8813 - sources."manage-path-2.0.0" 8814 - sources."map-age-cleaner-0.1.3" 8815 - sources."map-cache-0.2.2" 8816 - sources."map-obj-4.3.0" 8817 - sources."map-visit-1.0.0" 8818 - sources."marked-0.7.0" 8819 - sources."marked-terminal-3.3.0" 8820 - sources."md5-2.3.0" 8821 - (sources."mem-4.3.0" // { 8822 - dependencies = [ 8823 - sources."mimic-fn-2.1.0" 8824 - ]; 8825 - }) 8826 - (sources."meow-8.1.2" // { 8827 - dependencies = [ 8828 - sources."find-up-4.1.0" 8829 - sources."hosted-git-info-4.0.2" 8830 - sources."locate-path-5.0.0" 8831 - sources."lru-cache-6.0.0" 8832 - sources."normalize-package-data-3.0.3" 8833 - sources."p-locate-4.1.0" 8834 - sources."path-exists-4.0.0" 8835 - (sources."read-pkg-5.2.0" // { 8836 - dependencies = [ 8837 - sources."hosted-git-info-2.8.9" 8838 - sources."normalize-package-data-2.5.0" 8839 - sources."semver-5.7.1" 8840 - sources."type-fest-0.6.0" 8841 - ]; 8842 - }) 8843 - (sources."read-pkg-up-7.0.1" // { 8844 - dependencies = [ 8845 - sources."type-fest-0.8.1" 8846 - ]; 8847 - }) 8848 - sources."semver-7.3.5" 8849 - sources."type-fest-0.18.1" 8850 - sources."yallist-4.0.0" 8851 - sources."yargs-parser-20.2.9" 8852 - ]; 8853 - }) 8854 - sources."merge-2.1.1" 8855 - sources."merge-descriptors-1.0.1" 8856 - sources."merge-stream-2.0.0" 8857 - sources."merge2-1.4.1" 8858 - sources."micromatch-4.0.4" 8859 - sources."mime-1.2.11" 8860 - sources."mime-types-1.0.2" 8861 - sources."mimic-fn-1.2.0" 8862 - sources."min-indent-1.0.1" 8863 - sources."minimatch-3.0.4" 8864 - sources."minimist-1.2.5" 8865 - sources."minimist-options-4.1.0" 8866 - (sources."mixin-deep-1.3.2" // { 8867 - dependencies = [ 8868 - sources."is-extendable-1.0.1" 8869 - ]; 8870 - }) 8871 - (sources."mkdirp-0.5.1" // { 8872 - dependencies = [ 8873 - sources."minimist-0.0.8" 8874 - ]; 8875 - }) 8876 - (sources."mocha-6.2.0" // { 8877 - dependencies = [ 8878 - sources."debug-3.2.6" 8879 - sources."diff-3.5.0" 8880 - sources."glob-7.1.3" 8881 - sources."ms-2.1.1" 8882 - sources."object.assign-4.1.0" 8883 - sources."strip-json-comments-2.0.1" 8884 - sources."supports-color-6.0.0" 8885 - ]; 8886 - }) 8887 - (sources."mocha-junit-reporter-1.18.0" // { 8888 - dependencies = [ 8889 - sources."strip-ansi-4.0.0" 8890 - ]; 8891 - }) 8892 - (sources."mocha-multi-reporters-1.1.7" // { 8893 - dependencies = [ 8894 - sources."debug-3.2.7" 8895 - sources."ms-2.1.3" 8896 - ]; 8897 - }) 8898 - sources."modify-values-1.0.1" 8899 - sources."module-not-found-error-1.0.1" 8900 - sources."ms-2.0.0" 8901 - sources."mute-stream-0.0.7" 8902 - sources."nan-2.15.0" 8903 - sources."nanomatch-1.2.13" 8904 - sources."neo-async-2.6.2" 8905 - sources."nerf-dart-1.0.0" 8906 - sources."nice-try-1.0.5" 8907 - (sources."nise-1.5.3" // { 8908 - dependencies = [ 8909 - sources."lolex-5.1.2" 8910 - ]; 8911 - }) 8912 - sources."node-emoji-1.11.0" 8913 - (sources."node-environment-flags-1.0.5" // { 8914 - dependencies = [ 8915 - sources."semver-5.7.1" 8916 - ]; 8917 - }) 8918 - sources."node-fetch-2.6.5" 8919 - sources."node-modules-regexp-1.0.0" 8920 - sources."node-preload-0.2.1" 8921 - sources."node-releases-2.0.0" 8922 - sources."node-uuid-1.4.8" 8923 - (sources."nodemon-1.19.1" // { 8924 - dependencies = [ 8925 - sources."debug-3.2.7" 8926 - sources."ms-2.1.3" 8927 - sources."semver-5.7.1" 8928 - ]; 8929 - }) 8930 - sources."nopt-1.0.10" 8931 - (sources."normalize-package-data-2.5.0" // { 8932 - dependencies = [ 8933 - sources."semver-5.7.1" 8934 - ]; 8935 - }) 8936 - sources."normalize-path-3.0.0" 8937 - sources."normalize-url-4.5.1" 8938 - sources."npm-6.14.15" 8939 - sources."npm-run-path-2.0.2" 8940 - sources."number-is-nan-1.0.1" 8941 - (sources."nyc-15.1.0" // { 8942 - dependencies = [ 8943 - sources."ansi-regex-5.0.1" 8944 - sources."ansi-styles-4.3.0" 8945 - sources."cliui-6.0.0" 8946 - sources."color-convert-2.0.1" 8947 - sources."color-name-1.1.4" 8948 - sources."emoji-regex-8.0.0" 8949 - sources."find-cache-dir-3.3.2" 8950 - sources."find-up-4.1.0" 8951 - sources."glob-7.2.0" 8952 - sources."is-fullwidth-code-point-3.0.0" 8953 - sources."istanbul-lib-coverage-3.2.0" 8954 - sources."istanbul-lib-instrument-4.0.3" 8955 - sources."locate-path-5.0.0" 8956 - sources."make-dir-3.1.0" 8957 - sources."p-locate-4.1.0" 8958 - sources."path-exists-4.0.0" 8959 - sources."pkg-dir-4.2.0" 8960 - sources."string-width-4.2.3" 8961 - sources."strip-ansi-6.0.1" 8962 - sources."test-exclude-6.0.0" 8963 - sources."wrap-ansi-6.2.0" 8964 - sources."yargs-15.4.1" 8965 - sources."yargs-parser-18.1.3" 8966 - ]; 8967 - }) 8968 - sources."oauth-sign-0.4.0" 8969 - (sources."object-copy-0.1.0" // { 8970 - dependencies = [ 8971 - sources."define-property-0.2.5" 8972 - sources."is-accessor-descriptor-0.1.6" 8973 - sources."is-data-descriptor-0.1.4" 8974 - (sources."is-descriptor-0.1.6" // { 8975 - dependencies = [ 8976 - sources."kind-of-5.1.0" 8977 - ]; 8978 - }) 8979 - sources."kind-of-3.2.2" 8980 - ]; 8981 - }) 8982 - sources."object-inspect-1.11.0" 8983 - sources."object-keys-1.1.1" 8984 - sources."object-visit-1.0.1" 8985 - sources."object.assign-4.1.2" 8986 - sources."object.getownpropertydescriptors-2.1.3" 8987 - sources."object.pick-1.3.0" 8988 - sources."octokit-pagination-methods-1.1.0" 8989 - sources."once-1.4.0" 8990 - sources."onetime-2.0.1" 8991 - (sources."opt-cli-1.5.1" // { 8992 - dependencies = [ 8993 - sources."commander-2.9.0" 8994 - sources."lodash.clone-4.3.2" 8995 - sources."spawn-command-0.0.2-1" 8996 - ]; 8997 - }) 8998 - sources."os-locale-3.1.0" 8999 - sources."os-name-3.1.0" 9000 - sources."os-tmpdir-1.0.2" 9001 - sources."p-defer-1.0.0" 9002 - (sources."p-filter-2.1.0" // { 9003 - dependencies = [ 9004 - sources."p-map-2.1.0" 9005 - ]; 9006 - }) 9007 - sources."p-finally-1.0.0" 9008 - sources."p-is-promise-2.1.0" 9009 - sources."p-limit-2.3.0" 9010 - sources."p-locate-3.0.0" 9011 - sources."p-map-3.0.0" 9012 - sources."p-reduce-2.1.0" 9013 - sources."p-retry-4.6.1" 9014 - sources."p-try-2.2.0" 9015 - sources."package-hash-4.0.0" 9016 - (sources."package-json-4.0.1" // { 9017 - dependencies = [ 9018 - sources."semver-5.7.1" 9019 - ]; 9020 - }) 9021 - sources."pad-right-0.2.2" 9022 - sources."parent-module-1.0.1" 9023 - sources."parse-json-5.2.0" 9024 - sources."parse-passwd-1.0.0" 9025 - sources."pascalcase-0.1.1" 9026 - sources."path-dirname-1.0.2" 9027 - sources."path-exists-3.0.0" 9028 - sources."path-is-absolute-1.0.1" 9029 - sources."path-is-inside-1.0.2" 9030 - sources."path-key-2.0.1" 9031 - sources."path-parse-1.0.7" 9032 - (sources."path-to-regexp-1.8.0" // { 9033 - dependencies = [ 9034 - sources."isarray-0.0.1" 9035 - ]; 9036 - }) 9037 - sources."path-type-4.0.0" 9038 - sources."pathval-1.1.1" 9039 - sources."picocolors-1.0.0" 9040 - sources."picomatch-2.3.0" 9041 - sources."pify-4.0.1" 9042 - sources."pirates-4.0.1" 9043 - (sources."pkg-conf-2.1.0" // { 9044 - dependencies = [ 9045 - sources."find-up-2.1.0" 9046 - sources."locate-path-2.0.0" 9047 - sources."p-limit-1.3.0" 9048 - sources."p-locate-2.0.0" 9049 - sources."p-try-1.0.0" 9050 - ]; 9051 - }) 9052 - sources."pkg-dir-3.0.0" 9053 - sources."posix-character-classes-0.1.1" 9054 - sources."prepend-http-1.0.4" 9055 - sources."process-nextick-args-2.0.1" 9056 - sources."process-on-spawn-1.0.0" 9057 - (sources."proxyquire-2.1.0" // { 9058 - dependencies = [ 9059 - sources."resolve-1.8.1" 9060 - ]; 9061 - }) 9062 - sources."pseudomap-1.0.2" 9063 - sources."psl-1.8.0" 9064 - sources."pstree.remy-1.1.8" 9065 - sources."pump-3.0.0" 9066 - sources."punycode-2.1.1" 9067 - sources."q-1.5.1" 9068 - sources."qs-1.2.2" 9069 - sources."queue-microtask-1.2.3" 9070 - sources."quick-lru-4.0.1" 9071 - (sources."rc-1.2.8" // { 9072 - dependencies = [ 9073 - sources."strip-json-comments-2.0.1" 9074 - ]; 9075 - }) 9076 - (sources."read-pkg-3.0.0" // { 9077 - dependencies = [ 9078 - sources."path-type-3.0.0" 9079 - sources."pify-3.0.0" 9080 - ]; 9081 - }) 9082 - sources."read-pkg-up-4.0.0" 9083 - sources."readable-stream-2.3.7" 9084 - (sources."readdirp-2.2.1" // { 9085 - dependencies = [ 9086 - sources."braces-2.3.2" 9087 - sources."extend-shallow-2.0.1" 9088 - sources."fill-range-4.0.0" 9089 - sources."is-number-3.0.0" 9090 - sources."kind-of-3.2.2" 9091 - sources."micromatch-3.1.10" 9092 - sources."to-regex-range-2.1.1" 9093 - ]; 9094 - }) 9095 - sources."redent-3.0.0" 9096 - sources."redeyed-2.1.1" 9097 - sources."regenerate-1.4.2" 9098 - sources."regenerate-unicode-properties-9.0.0" 9099 - sources."regenerator-runtime-0.13.9" 9100 - sources."regenerator-transform-0.14.5" 9101 - sources."regex-not-1.0.2" 9102 - sources."regexpu-core-4.8.0" 9103 - sources."registry-auth-token-3.4.0" 9104 - sources."registry-url-3.1.0" 9105 - sources."regjsgen-0.5.2" 9106 - (sources."regjsparser-0.7.0" // { 9107 - dependencies = [ 9108 - sources."jsesc-0.5.0" 9109 - ]; 9110 - }) 9111 - sources."release-zalgo-1.0.0" 9112 - sources."remove-trailing-separator-1.1.0" 9113 - sources."repeat-element-1.1.4" 9114 - sources."repeat-string-1.6.1" 9115 - sources."request-2.42.0" 9116 - sources."require-directory-2.1.1" 9117 - sources."require-main-filename-2.0.0" 9118 - sources."resolve-1.20.0" 9119 - sources."resolve-dir-1.0.1" 9120 - sources."resolve-from-5.0.0" 9121 - sources."resolve-global-1.0.0" 9122 - sources."resolve-url-0.2.1" 9123 - sources."restore-cursor-2.0.0" 9124 - sources."resumer-0.0.0" 9125 - sources."ret-0.1.15" 9126 - sources."retry-0.13.1" 9127 - sources."reusify-1.0.4" 9128 - sources."right-pad-1.0.1" 9129 - sources."rimraf-3.0.2" 9130 - sources."run-async-2.4.1" 9131 - sources."run-parallel-1.2.0" 9132 - (sources."rxjs-6.6.7" // { 9133 - dependencies = [ 9134 - sources."tslib-1.14.1" 9135 - ]; 9136 - }) 9137 - sources."safe-buffer-5.1.2" 9138 - sources."safe-regex-1.1.0" 9139 - sources."safer-buffer-2.1.2" 9140 - (sources."semantic-release-15.14.0" // { 9141 - dependencies = [ 9142 - sources."ansi-regex-5.0.1" 9143 - sources."ansi-styles-4.3.0" 9144 - sources."cliui-6.0.0" 9145 - sources."color-convert-2.0.1" 9146 - sources."color-name-1.1.4" 9147 - sources."cosmiconfig-6.0.0" 9148 - sources."cross-spawn-7.0.3" 9149 - sources."debug-4.3.2" 9150 - sources."emoji-regex-8.0.0" 9151 - sources."execa-3.4.0" 9152 - sources."figures-3.2.0" 9153 - sources."find-up-4.1.0" 9154 - sources."get-stream-5.2.0" 9155 - sources."hosted-git-info-3.0.8" 9156 - sources."is-fullwidth-code-point-3.0.0" 9157 - sources."is-stream-2.0.1" 9158 - sources."locate-path-5.0.0" 9159 - sources."lru-cache-6.0.0" 9160 - sources."mimic-fn-2.1.0" 9161 - sources."ms-2.1.2" 9162 - sources."npm-run-path-4.0.1" 9163 - sources."onetime-5.1.2" 9164 - sources."p-finally-2.0.1" 9165 - sources."p-locate-4.1.0" 9166 - sources."path-exists-4.0.0" 9167 - sources."path-key-3.1.1" 9168 - sources."read-pkg-5.2.0" 9169 - sources."read-pkg-up-7.0.1" 9170 - sources."shebang-command-2.0.0" 9171 - sources."shebang-regex-3.0.0" 9172 - sources."string-width-4.2.3" 9173 - sources."strip-ansi-6.0.1" 9174 - sources."type-fest-0.6.0" 9175 - sources."which-2.0.2" 9176 - sources."wrap-ansi-6.2.0" 9177 - sources."yallist-4.0.0" 9178 - sources."yargs-15.4.1" 9179 - sources."yargs-parser-18.1.3" 9180 - ]; 9181 - }) 9182 - sources."semver-6.3.0" 9183 - (sources."semver-diff-2.1.0" // { 9184 - dependencies = [ 9185 - sources."semver-5.7.1" 9186 - ]; 9187 - }) 9188 - sources."semver-regex-2.0.0" 9189 - sources."set-blocking-2.0.0" 9190 - (sources."set-value-2.0.1" // { 9191 - dependencies = [ 9192 - sources."extend-shallow-2.0.1" 9193 - ]; 9194 - }) 9195 - sources."shebang-command-1.2.0" 9196 - sources."shebang-regex-1.0.0" 9197 - sources."side-channel-1.0.4" 9198 - sources."signal-exit-3.0.5" 9199 - sources."signale-1.4.0" 9200 - (sources."sinon-6.3.4" // { 9201 - dependencies = [ 9202 - sources."diff-3.5.0" 9203 - ]; 9204 - }) 9205 - sources."slash-2.0.0" 9206 - (sources."snapdragon-0.8.2" // { 9207 - dependencies = [ 9208 - sources."define-property-0.2.5" 9209 - sources."extend-shallow-2.0.1" 9210 - (sources."is-accessor-descriptor-0.1.6" // { 9211 - dependencies = [ 9212 - sources."kind-of-3.2.2" 9213 - ]; 9214 - }) 9215 - (sources."is-data-descriptor-0.1.4" // { 9216 - dependencies = [ 9217 - sources."kind-of-3.2.2" 9218 - ]; 9219 - }) 9220 - sources."is-descriptor-0.1.6" 9221 - sources."kind-of-5.1.0" 9222 - sources."source-map-0.5.7" 9223 - ]; 9224 - }) 9225 - (sources."snapdragon-node-2.1.1" // { 9226 - dependencies = [ 9227 - sources."define-property-1.0.0" 9228 - ]; 9229 - }) 9230 - (sources."snapdragon-util-3.0.1" // { 9231 - dependencies = [ 9232 - sources."kind-of-3.2.2" 9233 - ]; 9234 - }) 9235 - sources."sntp-0.2.4" 9236 - sources."source-map-0.6.1" 9237 - sources."source-map-resolve-0.5.3" 9238 - sources."source-map-support-0.5.20" 9239 - sources."source-map-url-0.4.1" 9240 - sources."spawn-command-0.0.2" 9241 - sources."spawn-error-forwarder-1.0.0" 9242 - (sources."spawn-wrap-2.0.0" // { 9243 - dependencies = [ 9244 - sources."make-dir-3.1.0" 9245 - sources."which-2.0.2" 9246 - ]; 9247 - }) 9248 - sources."spdx-correct-3.1.1" 9249 - sources."spdx-exceptions-2.3.0" 9250 - sources."spdx-expression-parse-3.0.1" 9251 - sources."spdx-license-ids-3.0.10" 9252 - sources."split-0.2.10" 9253 - sources."split-string-3.1.0" 9254 - (sources."split2-3.2.2" // { 9255 - dependencies = [ 9256 - sources."readable-stream-3.6.0" 9257 - ]; 9258 - }) 9259 - sources."sprintf-js-1.0.3" 9260 - (sources."static-extend-0.1.2" // { 9261 - dependencies = [ 9262 - sources."define-property-0.2.5" 9263 - (sources."is-accessor-descriptor-0.1.6" // { 9264 - dependencies = [ 9265 - sources."kind-of-3.2.2" 9266 - ]; 9267 - }) 9268 - (sources."is-data-descriptor-0.1.4" // { 9269 - dependencies = [ 9270 - sources."kind-of-3.2.2" 9271 - ]; 9272 - }) 9273 - sources."is-descriptor-0.1.6" 9274 - sources."kind-of-5.1.0" 9275 - ]; 9276 - }) 9277 - sources."stream-combiner-0.0.4" 9278 - sources."stream-combiner2-1.1.1" 9279 - (sources."string-width-2.1.1" // { 9280 - dependencies = [ 9281 - sources."strip-ansi-4.0.0" 9282 - ]; 9283 - }) 9284 - sources."string.prototype.trimend-1.0.4" 9285 - sources."string.prototype.trimstart-1.0.4" 9286 - sources."string_decoder-1.1.1" 9287 - sources."stringstream-0.0.6" 9288 - (sources."strip-ansi-5.2.0" // { 9289 - dependencies = [ 9290 - sources."ansi-regex-4.1.0" 9291 - ]; 9292 - }) 9293 - sources."strip-bom-4.0.0" 9294 - sources."strip-eof-1.0.0" 9295 - sources."strip-final-newline-2.0.0" 9296 - sources."strip-indent-3.0.0" 9297 - sources."strip-json-comments-3.0.1" 9298 - sources."supports-color-5.5.0" 9299 - (sources."supports-hyperlinks-1.0.1" // { 9300 - dependencies = [ 9301 - sources."has-flag-2.0.0" 9302 - ]; 9303 - }) 9304 - sources."tape-2.3.0" 9305 - sources."temp-dir-1.0.0" 9306 - (sources."tempy-0.3.0" // { 9307 - dependencies = [ 9308 - sources."type-fest-0.3.1" 9309 - ]; 9310 - }) 9311 - (sources."term-size-1.2.0" // { 9312 - dependencies = [ 9313 - sources."cross-spawn-5.1.0" 9314 - sources."execa-0.7.0" 9315 - sources."get-stream-3.0.0" 9316 - ]; 9317 - }) 9318 - sources."test-exclude-5.2.3" 9319 - sources."text-extensions-1.9.0" 9320 - sources."through-2.3.8" 9321 - (sources."through2-4.0.2" // { 9322 - dependencies = [ 9323 - sources."readable-stream-3.6.0" 9324 - ]; 9325 - }) 9326 - sources."timed-out-4.0.1" 9327 - sources."tmp-0.0.33" 9328 - sources."to-fast-properties-2.0.0" 9329 - (sources."to-object-path-0.3.0" // { 9330 - dependencies = [ 9331 - sources."kind-of-3.2.2" 9332 - ]; 9333 - }) 9334 - sources."to-regex-3.0.2" 9335 - sources."to-regex-range-5.0.1" 9336 - sources."touch-3.1.0" 9337 - sources."tough-cookie-4.0.0" 9338 - sources."tr46-0.0.3" 9339 - sources."traverse-0.6.6" 9340 - sources."trim-newlines-3.0.1" 9341 - sources."ts-node-9.1.1" 9342 - sources."tslib-2.3.1" 9343 - sources."tunnel-agent-0.4.3" 9344 - sources."type-detect-4.0.8" 9345 - sources."type-fest-0.8.1" 9346 - sources."typedarray-to-buffer-3.1.5" 9347 - sources."typescript-4.4.4" 9348 - sources."uglify-js-3.14.2" 9349 - sources."unbox-primitive-1.0.1" 9350 - sources."undefsafe-2.0.5" 9351 - sources."unicode-canonical-property-names-ecmascript-2.0.0" 9352 - sources."unicode-match-property-ecmascript-2.0.0" 9353 - sources."unicode-match-property-value-ecmascript-2.0.0" 9354 - sources."unicode-property-aliases-ecmascript-2.0.0" 9355 - sources."union-value-1.0.1" 9356 - sources."unique-string-1.0.0" 9357 - sources."universal-user-agent-4.0.1" 9358 - sources."universalify-0.1.2" 9359 - (sources."unset-value-1.0.0" // { 9360 - dependencies = [ 9361 - (sources."has-value-0.3.1" // { 9362 - dependencies = [ 9363 - sources."isobject-2.1.0" 9364 - ]; 9365 - }) 9366 - sources."has-values-0.1.4" 9367 - ]; 9368 - }) 9369 - sources."unzip-response-2.0.1" 9370 - sources."upath-1.2.0" 9371 - sources."update-notifier-2.5.0" 9372 - sources."urix-0.1.0" 9373 - sources."url-join-4.0.1" 9374 - sources."url-parse-lax-1.0.0" 9375 - sources."urlgrey-0.4.0" 9376 - sources."use-3.1.1" 9377 - sources."util-deprecate-1.0.2" 9378 - sources."uuid-3.4.0" 9379 - sources."validate-npm-package-license-3.0.4" 9380 - sources."webidl-conversions-3.0.1" 9381 - sources."whatwg-url-5.0.0" 9382 - sources."which-1.3.1" 9383 - sources."which-boxed-primitive-1.0.2" 9384 - sources."which-module-2.0.0" 9385 - sources."wide-align-1.1.3" 9386 - sources."widest-line-2.0.1" 9387 - sources."windows-release-3.3.3" 9388 - sources."word-wrap-1.2.3" 9389 - sources."wordwrap-1.0.0" 9390 - (sources."wrap-ansi-2.1.0" // { 9391 - dependencies = [ 9392 - sources."ansi-regex-2.1.1" 9393 - sources."is-fullwidth-code-point-1.0.0" 9394 - sources."string-width-1.0.2" 9395 - sources."strip-ansi-3.0.1" 9396 - ]; 9397 - }) 9398 - sources."wrappy-1.0.2" 9399 - sources."write-file-atomic-2.4.3" 9400 - sources."xdg-basedir-3.0.0" 9401 - sources."xml-1.0.1" 9402 - sources."xtend-4.0.2" 9403 - sources."y18n-4.0.3" 9404 - sources."yallist-2.1.2" 9405 - sources."yaml-1.10.2" 9406 - (sources."yargs-13.2.2" // { 9407 - dependencies = [ 9408 - sources."string-width-3.1.0" 9409 - ]; 9410 - }) 9411 - sources."yargs-parser-13.0.0" 9412 - (sources."yargs-unparser-1.5.0" // { 9413 - dependencies = [ 9414 - sources."get-caller-file-1.0.3" 9415 - sources."require-main-filename-1.0.1" 9416 - sources."yargs-12.0.5" 9417 - sources."yargs-parser-11.1.1" 9418 - ]; 9419 - }) 9420 - sources."yn-3.1.1" 9421 - ]; 9422 - buildInputs = globalBuildInputs; 9423 - meta = { 9424 - description = "Git commit, but play nice with conventions."; 9425 - homepage = "https://github.com/commitizen/cz-cli"; 9426 - license = "MIT"; 9427 - }; 9428 - production = false; 9429 - bypassCache = true; 9430 - reconstructLock = true; 9431 - }; 9432 - }
-3
pkgs/applications/version-management/cz-cli/package.json
··· 1 - [ 2 - "commitizen" 3 - ]