Merge staging-next into staging

authored by github-actions[bot] and committed by GitHub 4cbb35eb dfafc173

+4119 -5127
+2 -1
nixos/lib/test-driver/test-driver.py
··· 735 shell_path = os.path.join(self.state_dir, "shell") 736 self.shell_socket = create_socket(shell_path) 737 738 qemu_options = ( 739 " ".join( 740 [ ··· 744 "-device virtio-serial", 745 "-device virtconsole,chardev=shell", 746 "-device virtio-rng-pci", 747 - "-serial stdio" if "DISPLAY" in os.environ else "-nographic", 748 ] 749 ) 750 + " "
··· 735 shell_path = os.path.join(self.state_dir, "shell") 736 self.shell_socket = create_socket(shell_path) 737 738 + display_available = any(x in os.environ for x in ["DISPLAY", "WAYLAND_DISPLAY"]) 739 qemu_options = ( 740 " ".join( 741 [ ··· 745 "-device virtio-serial", 746 "-device virtconsole,chardev=shell", 747 "-device virtio-rng-pci", 748 + "-serial stdio" if display_available else "-nographic", 749 ] 750 ) 751 + " "
+13 -8
nixos/modules/services/web-apps/keycloak.nix
··· 168 type = lib.types.str; 169 default = "keycloak"; 170 description = '' 171 - Username to use when connecting to the database. 172 - This is also used for automatic provisioning of the database. 173 - Changing this after the initial installation doesn't delete the 174 - old user and can cause further problems. 175 ''; 176 }; 177 ··· 588 PSQL=${config.services.postgresql.package}/bin/psql 589 590 db_password="$(<'${cfg.databasePasswordFile}')" 591 - $PSQL -tAc "SELECT 1 FROM pg_roles WHERE rolname='${cfg.databaseUsername}'" | grep -q 1 || $PSQL -tAc "CREATE ROLE ${cfg.databaseUsername} WITH LOGIN PASSWORD '$db_password' CREATEDB" 592 - $PSQL -tAc "SELECT 1 FROM pg_database WHERE datname = 'keycloak'" | grep -q 1 || $PSQL -tAc 'CREATE DATABASE "keycloak" OWNER "${cfg.databaseUsername}"' 593 ''; 594 }; 595 ··· 607 set -eu 608 609 db_password="$(<'${cfg.databasePasswordFile}')" 610 - ( echo "CREATE USER IF NOT EXISTS '${cfg.databaseUsername}'@'localhost' IDENTIFIED BY '$db_password';" 611 echo "CREATE DATABASE keycloak CHARACTER SET utf8 COLLATE utf8_unicode_ci;" 612 - echo "GRANT ALL PRIVILEGES ON keycloak.* TO '${cfg.databaseUsername}'@'localhost';" 613 ) | ${config.services.mysql.package}/bin/mysql -N 614 ''; 615 };
··· 168 type = lib.types.str; 169 default = "keycloak"; 170 description = '' 171 + Username to use when connecting to an external or manually 172 + provisioned database; has no effect when a local database is 173 + automatically provisioned. 174 + 175 + To use this with a local database, set <xref 176 + linkend="opt-services.keycloak.databaseCreateLocally" /> to 177 + <literal>false</literal> and create the database and user 178 + manually. The database should be called 179 + <literal>keycloak</literal>. 180 ''; 181 }; 182 ··· 593 PSQL=${config.services.postgresql.package}/bin/psql 594 595 db_password="$(<'${cfg.databasePasswordFile}')" 596 + $PSQL -tAc "SELECT 1 FROM pg_roles WHERE rolname='keycloak'" | grep -q 1 || $PSQL -tAc "CREATE ROLE keycloak WITH LOGIN PASSWORD '$db_password' CREATEDB" 597 + $PSQL -tAc "SELECT 1 FROM pg_database WHERE datname = 'keycloak'" | grep -q 1 || $PSQL -tAc 'CREATE DATABASE "keycloak" OWNER "keycloak"' 598 ''; 599 }; 600 ··· 612 set -eu 613 614 db_password="$(<'${cfg.databasePasswordFile}')" 615 + ( echo "CREATE USER IF NOT EXISTS 'keycloak'@'localhost' IDENTIFIED BY '$db_password';" 616 echo "CREATE DATABASE keycloak CHARACTER SET utf8 COLLATE utf8_unicode_ci;" 617 + echo "GRANT ALL PRIVILEGES ON keycloak.* TO 'keycloak'@'localhost';" 618 ) | ${config.services.mysql.package}/bin/mysql -N 619 ''; 620 };
+1
nixos/tests/keycloak.nix
··· 20 services.keycloak = { 21 enable = true; 22 inherit frontendUrl databaseType initialAdminPassword; 23 databasePasswordFile = pkgs.writeText "dbPassword" "wzf6vOCbPp6cqTH"; 24 }; 25 environment.systemPackages = with pkgs; [
··· 20 services.keycloak = { 21 enable = true; 22 inherit frontendUrl databaseType initialAdminPassword; 23 + databaseUsername = "bogus"; 24 databasePasswordFile = pkgs.writeText "dbPassword" "wzf6vOCbPp6cqTH"; 25 }; 26 environment.systemPackages = with pkgs; [
+5 -4
pkgs/applications/audio/pianobar/default.nix
··· 1 - { fetchurl, lib, stdenv, pkg-config, libao, json_c, libgcrypt, ffmpeg_3, curl }: 2 3 stdenv.mkDerivation rec { 4 - name = "pianobar-2020.11.28"; 5 6 src = fetchurl { 7 - url = "http://6xq.net/projects/pianobar/${name}.tar.bz2"; 8 sha256 = "1znlwybfpxsjqr1jmr8j0ci8wzmpzmk2yxb0qcx9w9a8nnbgnfv5"; 9 }; 10 11 nativeBuildInputs = [ pkg-config ]; 12 buildInputs = [ 13 - libao json_c libgcrypt ffmpeg_3 curl 14 ]; 15 16 makeFlags = [ "PREFIX=$(out)" ];
··· 1 + { fetchurl, lib, stdenv, pkg-config, libao, json_c, libgcrypt, ffmpeg, curl }: 2 3 stdenv.mkDerivation rec { 4 + pname = "pianobar"; 5 + version = "2020.11.28"; 6 7 src = fetchurl { 8 + url = "https://6xq.net/projects/pianobar/${pname}-${version}.tar.bz2"; 9 sha256 = "1znlwybfpxsjqr1jmr8j0ci8wzmpzmk2yxb0qcx9w9a8nnbgnfv5"; 10 }; 11 12 nativeBuildInputs = [ pkg-config ]; 13 buildInputs = [ 14 + libao json_c libgcrypt ffmpeg curl 15 ]; 16 17 makeFlags = [ "PREFIX=$(out)" ];
+64
pkgs/applications/audio/transcribe/default.nix
···
··· 1 + { stdenv, fetchzip, lib, wrapGAppsHook, alsaLib, atk, cairo, gdk-pixbuf 2 + , glib, gst_all_1, gtk3, libSM, libX11, libpng12, pango, zlib }: 3 + 4 + stdenv.mkDerivation rec { 5 + pname = "transcribe"; 6 + version = "9.00"; 7 + 8 + src = if stdenv.hostPlatform.system == "x86_64-linux" then 9 + fetchzip { 10 + url = "https://www.seventhstring.com/xscribe/downlo/xscsetup-9.00.0.tar.gz"; 11 + sha256 = "0mgjx0hnps3jmc2d9hkskxbmwcqf7f9jx595j5sc501br1l84sdf"; 12 + } 13 + else throw "Platform not supported"; 14 + 15 + nativeBuildInputs = [ wrapGAppsHook ]; 16 + 17 + buildInputs = with gst_all_1; [ gst-plugins-base gst-plugins-good 18 + gst-plugins-bad gst-plugins-ugly ]; 19 + 20 + dontPatchELF = true; 21 + 22 + libPath = with gst_all_1; lib.makeLibraryPath [ 23 + stdenv.cc.cc glib gtk3 atk pango cairo gdk-pixbuf alsaLib 24 + libX11 libSM libpng12 gstreamer gst-plugins-base zlib 25 + ]; 26 + 27 + installPhase = '' 28 + mkdir -p $out/bin $out/libexec $out/share/doc 29 + cp transcribe $out/libexec 30 + cp xschelp.htb readme_gtk.html $out/share/doc 31 + cp -r gtkicons $out/share/icons 32 + ln -s $out/share/doc/xschelp.htb $out/libexec 33 + patchelf \ 34 + --set-interpreter $(cat ${stdenv.cc}/nix-support/dynamic-linker) \ 35 + $out/libexec/transcribe 36 + ''; 37 + 38 + preFixup = '' 39 + gappsWrapperArgs+=( 40 + --prefix GST_PLUGIN_SYSTEM_PATH : "$GST_PLUGIN_SYSTEM_PATH_1_0" 41 + --prefix LD_LIBRARY_PATH : "${libPath}" 42 + ) 43 + ''; 44 + 45 + postFixup = '' 46 + ln -s $out/libexec/transcribe $out/bin/ 47 + ''; 48 + 49 + meta = with lib; { 50 + description = "Software to help transcribe recorded music"; 51 + longDescription = '' 52 + The Transcribe! application is an assistant for people who want 53 + to work out a piece of music from a recording, in order to write 54 + it out, or play it themselves, or both. It doesn't do the 55 + transcribing for you, but it is essentially a specialised player 56 + program which is optimised for the purpose of transcription. It 57 + has many transcription-specific features not found on 58 + conventional music players. 59 + ''; 60 + homepage = "https://www.seventhstring.com/xscribe/"; 61 + license = licenses.unfree; 62 + platforms = platforms.linux; 63 + }; 64 + }
+22 -15
pkgs/applications/misc/1password-gui/default.nix
··· 1 - { lib, stdenv 2 , fetchurl 3 - , appimageTools 4 , makeWrapper 5 , electron_11 6 , openssl ··· 8 9 stdenv.mkDerivation rec { 10 pname = "1password"; 11 - version = "8.0.30"; 12 13 src = fetchurl { 14 - url = "https://onepassword.s3.amazonaws.com/linux/appimage/${pname}-${version}.AppImage"; 15 - hash = "sha256-j+fp/f8nta+OOuOFU4mmUrGYlVmAqdaXO4rLJ0in+m8="; 16 }; 17 18 nativeBuildInputs = [ makeWrapper ]; 19 20 - appimageContents = appimageTools.extractType2 { 21 - name = "${pname}-${version}"; 22 - inherit src; 23 - }; 24 - 25 - dontUnpack = true; 26 dontConfigure = true; 27 dontBuild = true; 28 ··· 35 mkdir -p $out/bin $out/share/1password 36 37 # Applications files. 38 - cp -a ${appimageContents}/{locales,resources} $out/share/${pname} 39 40 # Desktop file. 41 - install -Dt $out/share/applications ${appimageContents}/${pname}.desktop 42 substituteInPlace $out/share/applications/${pname}.desktop \ 43 - --replace 'Exec=AppRun' 'Exec=${pname}' 44 45 # Icons. 46 - cp -a ${appimageContents}/usr/share/icons $out/share 47 48 # Wrap the application with Electron. 49 makeWrapper "${electron_11}/bin/electron" "$out/bin/${pname}" \ 50 --add-flags "$out/share/${pname}/resources/app.asar" \ 51 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}" 52 ''; 53
··· 1 + { lib 2 + , stdenv 3 , fetchurl 4 , makeWrapper 5 , electron_11 6 , openssl ··· 8 9 stdenv.mkDerivation rec { 10 pname = "1password"; 11 + version = "8.0.33-53.BETA"; 12 13 src = fetchurl { 14 + url = "https://downloads.1password.com/linux/tar/beta/x86_64/1password-${version}.x64.tar.gz"; 15 + hash = "sha256-YUYER+UiM1QEDgGl0P9bIT65YVacUnuGtQVkV91teEU="; 16 }; 17 18 nativeBuildInputs = [ makeWrapper ]; 19 20 dontConfigure = true; 21 dontBuild = true; 22 ··· 29 mkdir -p $out/bin $out/share/1password 30 31 # Applications files. 32 + cp -a {locales,resources} $out/share/${pname} 33 + install -Dm0755 -t $out/share/${pname} {1Password-BrowserSupport,1Password-KeyringHelper} 34 35 # Desktop file. 36 + install -Dt $out/share/applications resources/${pname}.desktop 37 substituteInPlace $out/share/applications/${pname}.desktop \ 38 + --replace 'Exec=/opt/1Password/${pname}' 'Exec=${pname}' 39 40 # Icons. 41 + cp -a resources/icons $out/share 42 43 # Wrap the application with Electron. 44 makeWrapper "${electron_11}/bin/electron" "$out/bin/${pname}" \ 45 --add-flags "$out/share/${pname}/resources/app.asar" \ 46 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}" 47 + 48 + # Set the interpreter for the helper binaries and wrap them with 49 + # the runtime libraries. 50 + interp="$(cat $NIX_CC/nix-support/dynamic-linker)" 51 + patchelf --set-interpreter $interp \ 52 + $out/share/$pname/{1Password-BrowserSupport,1Password-KeyringHelper} 53 + 54 + wrapProgram $out/share/${pname}/1Password-BrowserSupport \ 55 + --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}" 56 + 57 + wrapProgram $out/share/${pname}/1Password-KeyringHelper \ 58 --prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath runtimeLibs}" 59 ''; 60
+1 -1
pkgs/applications/misc/1password-gui/update.sh
··· 1 #!/usr/bin/env nix-shell 2 #!nix-shell -i bash -p curl gnused common-updater-scripts 3 4 - version="$(curl -sL https://onepassword.s3.amazonaws.com/linux/debian/dists/edge/main/binary-amd64/Packages | sed -r -n 's/^Version: (.*)-[0-9]+/\1/p' | head -n1)" 5 update-source-version _1password-gui "$version"
··· 1 #!/usr/bin/env nix-shell 2 #!nix-shell -i bash -p curl gnused common-updater-scripts 3 4 + version="$(curl -sL https://onepassword.s3.amazonaws.com/linux/debian/dists/edge/main/binary-amd64/Packages | sed -r -n 's/^Version: (.*)/\1/p' | head -n1)" 5 update-source-version _1password-gui "$version"
+48
pkgs/applications/misc/remarkable/restream/default.nix
···
··· 1 + { lib 2 + , bash 3 + , stdenv 4 + , lz4 5 + , ffmpeg-full 6 + , fetchFromGitHub 7 + , openssh 8 + , makeWrapper 9 + }: 10 + 11 + stdenv.mkDerivation rec { 12 + pname = "restream"; 13 + version = "1.1"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "rien"; 17 + repo = pname; 18 + rev = version; 19 + sha256 = "18z17chl7r5dg12xmr3f9gbgv97nslm8nijigd03iysaj6dhymp3"; 20 + }; 21 + 22 + nativeBuildInputs = [ makeWrapper ]; 23 + 24 + dontConfigure = true; 25 + dontBuild = true; 26 + 27 + installPhase = '' 28 + runHook preInstall 29 + 30 + install -D ${src}/restream.arm.static $out/libexec/restream.arm.static 31 + install -D ${src}/reStream.sh $out/bin/restream 32 + 33 + runHook postInstall 34 + ''; 35 + 36 + postInstall = '' 37 + # `ffmpeg-full` is used here to bring in `ffplay`, which is used to display 38 + # the reMarkable framebuffer 39 + wrapProgram "$out/bin/restream" --suffix PATH ":" "${lib.makeBinPath [ ffmpeg-full lz4 openssh ]}" 40 + ''; 41 + 42 + meta = with lib; { 43 + description = "reMarkable screen sharing over SSH"; 44 + homepage = "https://github.com/rien/reStream"; 45 + license = licenses.mit; 46 + maintainers = [ maintainers.cpcloud ]; 47 + }; 48 + }
+4 -2
pkgs/applications/networking/browsers/opera/default.nix
··· 30 , libnotify 31 , libpulseaudio 32 , libuuid 33 , mesa 34 , nspr 35 , nss ··· 49 in stdenv.mkDerivation rec { 50 51 pname = "opera"; 52 - version = "68.0.3618.63"; 53 54 src = fetchurl { 55 url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb"; 56 - sha256 = "1643043ywz94x2yr7xyw7krfq53iwkr8qxlbydzq6zb2zina7jxd"; 57 }; 58 59 unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc ."; ··· 94 libnotify 95 libuuid 96 libxcb 97 mesa 98 nspr 99 nss
··· 30 , libnotify 31 , libpulseaudio 32 , libuuid 33 + , libxshmfence 34 , mesa 35 , nspr 36 , nss ··· 50 in stdenv.mkDerivation rec { 51 52 pname = "opera"; 53 + version = "76.0.4017.94"; 54 55 src = fetchurl { 56 url = "${mirror}/${version}/linux/${pname}-stable_${version}_amd64.deb"; 57 + sha256 = "sha256-vjSfzkl1jIQ9P1ARDa0eOuD8CmKHIEZ+IwMB2wIVjE8="; 58 }; 59 60 unpackCmd = "${dpkg}/bin/dpkg-deb -x $curSrc ."; ··· 95 libnotify 96 libuuid 97 libxcb 98 + libxshmfence 99 mesa 100 nspr 101 nss
+6 -2
pkgs/applications/radio/dump1090/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "dump1090"; 12 - version = "4.0"; 13 14 src = fetchFromGitHub { 15 owner = "flightaware"; 16 repo = pname; 17 rev = "v${version}"; 18 - sha256 = "1zacsqaqsiapljhzw31dwc4nld2rp98jm3ivkyznrhzk9n156p42"; 19 }; 20 21 nativeBuildInputs = [ pkg-config ]; ··· 28 ]; 29 30 installPhase = '' 31 mkdir -p $out/bin $out/share 32 cp -v dump1090 view1090 $out/bin 33 cp -vr public_html $out/share/dump1090 34 ''; 35 36 meta = with lib; {
··· 9 10 stdenv.mkDerivation rec { 11 pname = "dump1090"; 12 + version = "5.0"; 13 14 src = fetchFromGitHub { 15 owner = "flightaware"; 16 repo = pname; 17 rev = "v${version}"; 18 + sha256 = "1fckfcgypmplzl1lidd04jxiabczlfx9mv21d6rbsfknghsjpn03"; 19 }; 20 21 nativeBuildInputs = [ pkg-config ]; ··· 28 ]; 29 30 installPhase = '' 31 + runHook preInstall 32 + 33 mkdir -p $out/bin $out/share 34 cp -v dump1090 view1090 $out/bin 35 cp -vr public_html $out/share/dump1090 36 + 37 + runHook postInstall 38 ''; 39 40 meta = with lib; {
+40 -10
pkgs/applications/version-management/mercurial/default.nix
··· 1 - { lib, stdenv, fetchurl, python3Packages, makeWrapper, unzip 2 , guiSupport ? false, tk ? null 3 , ApplicationServices 4 }: 5 6 let 7 - inherit (python3Packages) docutils python; 8 9 in python3Packages.buildPythonApplication rec { 10 pname = "mercurial"; 11 - version = "5.6"; 12 13 src = fetchurl { 14 url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz"; 15 - sha256 = "1hk2y30zzdnlv8f71kabvh0xi9c7qhp28ksh20vpd0r712sv79yz"; 16 }; 17 18 format = "other"; 19 20 passthru = { inherit python; }; # pass it so that the same version can be used in hg2git 21 22 - nativeBuildInputs = [ makeWrapper unzip ]; 23 buildInputs = [ docutils ] 24 ++ lib.optionals stdenv.isDarwin [ ApplicationServices ]; 25 26 - makeFlags = [ "PREFIX=$(out)" ]; 27 28 postInstall = (lib.optionalString guiSupport '' 29 mkdir -p $out/etc/mercurial ··· 52 install -v -m644 -D contrib/zsh_completion $out/share/zsh/site-functions/_hg 53 ''; 54 55 - meta = { 56 inherit version; 57 description = "A fast, lightweight SCM system for very large distributed projects"; 58 homepage = "https://www.mercurial-scm.org"; 59 downloadPage = "https://www.mercurial-scm.org/release/"; 60 - license = lib.licenses.gpl2; 61 - maintainers = [ lib.maintainers.eelco ]; 62 updateWalker = true; 63 - platforms = lib.platforms.unix; 64 }; 65 }
··· 1 + { lib, stdenv, fetchurl, fetchpatch, python3Packages, makeWrapper, gettext 2 + , re2Support ? true 3 + , rustSupport ? stdenv.hostPlatform.isLinux, rustPlatform 4 , guiSupport ? false, tk ? null 5 , ApplicationServices 6 }: 7 8 let 9 + inherit (python3Packages) docutils python fb-re2; 10 11 in python3Packages.buildPythonApplication rec { 12 pname = "mercurial"; 13 + version = "5.8"; 14 15 src = fetchurl { 16 url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz"; 17 + sha256 = "17rhlmmkqz5ll3k68jfzpcifg3nndbcbc2nx7kw8xn3qcj7nlpgw"; 18 }; 19 20 + patches = [ 21 + # https://phab.mercurial-scm.org/D10638, needed for below patch to apply 22 + (fetchpatch { 23 + url = "https://phab.mercurial-scm.org/file/data/oymk4awh2dd7q6cwjbzu/PHID-FILE-bfcr7qrp5spg42wspxpd/D10638.diff"; 24 + sha256 = "0mfi324is02l7cnd3j0gbmg5rpyyqn3afg3f73flnfwmz5njqa5f"; 25 + }) 26 + # https://phab.mercurial-scm.org/D10639, fixes https://bz.mercurial-scm.org/show_bug.cgi?id=6514 27 + (fetchpatch { 28 + url = "https://phab.mercurial-scm.org/file/data/re4uqdhtknjiacx2ogwu/PHID-FILE-4m26id65dno5gzix2ngh/D10639.diff"; 29 + sha256 = "0h5ilrd2x1789fr6sf4k1mcvxdh0xdyr94yawdacw87v3x12c8cb"; 30 + }) 31 + ]; 32 + 33 format = "other"; 34 35 passthru = { inherit python; }; # pass it so that the same version can be used in hg2git 36 37 + cargoDeps = if rustSupport then rustPlatform.fetchCargoTarball { 38 + inherit src; 39 + name = "${pname}-${version}"; 40 + sha256 = "1kc2giqvfwsdl5fb0qmz96ws1gdrs3skfdzvpiif2i8f7r4nqlhd"; 41 + sourceRoot = "${pname}-${version}/rust"; 42 + } else null; 43 + cargoRoot = if rustSupport then "rust" else null; 44 + 45 + propagatedBuildInputs = lib.optional re2Support fb-re2; 46 + nativeBuildInputs = [ makeWrapper gettext ] 47 + ++ lib.optionals rustSupport (with rustPlatform; [ 48 + cargoSetupHook 49 + rust.cargo 50 + rust.rustc 51 + ]); 52 buildInputs = [ docutils ] 53 ++ lib.optionals stdenv.isDarwin [ ApplicationServices ]; 54 55 + makeFlags = [ "PREFIX=$(out)" ] 56 + ++ lib.optional rustSupport "PURE=--rust"; 57 58 postInstall = (lib.optionalString guiSupport '' 59 mkdir -p $out/etc/mercurial ··· 82 install -v -m644 -D contrib/zsh_completion $out/share/zsh/site-functions/_hg 83 ''; 84 85 + meta = with lib; { 86 inherit version; 87 description = "A fast, lightweight SCM system for very large distributed projects"; 88 homepage = "https://www.mercurial-scm.org"; 89 downloadPage = "https://www.mercurial-scm.org/release/"; 90 + license = licenses.gpl2Plus; 91 + maintainers = with maintainers; [ eelco lukegb ]; 92 updateWalker = true; 93 + platforms = platforms.unix; 94 }; 95 }
+5 -1
pkgs/applications/version-management/tortoisehg/default.nix
··· 9 sha256 = "031bafj88wggpvw0lgvl0djhlbhs9nls9vzwvni8yn0m0bgzc9gr"; 10 }; 11 12 - tortoiseMercurial = mercurial.overridePythonAttrs (old: rec { 13 inherit (tortoisehgSrc.meta) version; 14 src = fetchurl { 15 url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz"; 16 sha256 = "1hk2y30zzdnlv8f71kabvh0xi9c7qhp28ksh20vpd0r712sv79yz"; 17 }; 18 }); 19 20 in python3Packages.buildPythonApplication {
··· 9 sha256 = "031bafj88wggpvw0lgvl0djhlbhs9nls9vzwvni8yn0m0bgzc9gr"; 10 }; 11 12 + tortoiseMercurial = (mercurial.override { 13 + rustSupport = false; 14 + re2Support = lib.versionAtLeast tortoisehgSrc.meta.version "5.8"; 15 + }).overridePythonAttrs (old: rec { 16 inherit (tortoisehgSrc.meta) version; 17 src = fetchurl { 18 url = "https://mercurial-scm.org/release/mercurial-${version}.tar.gz"; 19 sha256 = "1hk2y30zzdnlv8f71kabvh0xi9c7qhp28ksh20vpd0r712sv79yz"; 20 }; 21 + patches = []; 22 }); 23 24 in python3Packages.buildPythonApplication {
-104
pkgs/applications/virtualization/xen/0001-libxl-Spice-image-compression-setting-support-for-up.patch
··· 1 - From bd71555985efc423b1a119b6a3177de855763453 Mon Sep 17 00:00:00 2001 2 - From: Fabio Fantoni <fabio.fantoni@m2r.biz> 3 - Date: Tue, 20 Jan 2015 11:26:30 +0100 4 - Subject: [PATCH] libxl: Spice image compression setting support for upstream 5 - qemu 6 - 7 - Usage: 8 - spice_image_compression=[auto_glz|auto_lz|quic|glz|lz|off] 9 - 10 - Specifies what image compression is to be used by spice (if given), 11 - otherwise the qemu default will be used. 12 - 13 - Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> 14 - Acked-by: Wei Liu <wei.liu2@citrix.com> 15 - --- 16 - docs/man/xl.cfg.pod.5 | 6 ++++++ 17 - tools/libxl/libxl.h | 11 +++++++++++ 18 - tools/libxl/libxl_dm.c | 4 ++++ 19 - tools/libxl/libxl_types.idl | 1 + 20 - tools/libxl/xl_cmdimpl.c | 2 ++ 21 - 5 files changed, 24 insertions(+) 22 - 23 - diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 24 - index e2f91fc..0c2cbac 100644 25 - --- a/docs/man/xl.cfg.pod.5 26 - +++ b/docs/man/xl.cfg.pod.5 27 - @@ -1427,6 +1427,12 @@ for redirection of up to 4 usb devices from spice client to domU's qemu. 28 - It requires an usb controller and if not defined it will automatically adds 29 - an usb2 controller. The default is disabled (0). 30 - 31 - +=item B<spice_image_compression=[auto_glz|auto_lz|quic|glz|lz|off]> 32 - + 33 - +Specifies what image compression is to be used by spice (if given), otherwise 34 - +the qemu default will be used. Please see documentations of your current qemu 35 - +version for details. 36 - + 37 - =back 38 - 39 - =head3 Miscellaneous Emulated Hardware 40 - diff --git a/tools/libxl/libxl.h b/tools/libxl/libxl.h 41 - index 0a123f1..b8e0b67 100644 42 - --- a/tools/libxl/libxl.h 43 - +++ b/tools/libxl/libxl.h 44 - @@ -528,6 +528,17 @@ typedef struct libxl__ctx libxl_ctx; 45 - #define LIBXL_HAVE_SPICE_USBREDIREDIRECTION 1 46 - 47 - /* 48 - + * LIBXL_HAVE_SPICE_IMAGECOMPRESSION 49 - + * 50 - + * If defined, then the libxl_spice_info structure will contain a string type 51 - + * field: image_compression. This value defines what Spice image compression 52 - + * is used. 53 - + * 54 - + * If this is not defined, the Spice image compression setting support is ignored. 55 - + */ 56 - +#define LIBXL_HAVE_SPICE_IMAGECOMPRESSION 1 57 - + 58 - +/* 59 - * LIBXL_HAVE_DOMAIN_CREATE_RESTORE_PARAMS 1 60 - * 61 - * If this is defined, libxl_domain_create_restore()'s API has changed to 62 - diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c 63 - index c2b0487..40c8649 100644 64 - --- a/tools/libxl/libxl_dm.c 65 - +++ b/tools/libxl/libxl_dm.c 66 - @@ -398,6 +398,10 @@ static char *dm_spice_options(libxl__gc *gc, 67 - if (!libxl_defbool_val(spice->clipboard_sharing)) 68 - opt = libxl__sprintf(gc, "%s,disable-copy-paste", opt); 69 - 70 - + if (spice->image_compression) 71 - + opt = libxl__sprintf(gc, "%s,image-compression=%s", opt, 72 - + spice->image_compression); 73 - + 74 - return opt; 75 - } 76 - 77 - diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl 78 - index 1214d2e..052ded9 100644 79 - --- a/tools/libxl/libxl_types.idl 80 - +++ b/tools/libxl/libxl_types.idl 81 - @@ -241,6 +241,7 @@ libxl_spice_info = Struct("spice_info", [ 82 - ("vdagent", libxl_defbool), 83 - ("clipboard_sharing", libxl_defbool), 84 - ("usbredirection", integer), 85 - + ("image_compression", string), 86 - ]) 87 - 88 - libxl_sdl_info = Struct("sdl_info", [ 89 - diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c 90 - index 0b02a6c..00aa69d 100644 91 - --- a/tools/libxl/xl_cmdimpl.c 92 - +++ b/tools/libxl/xl_cmdimpl.c 93 - @@ -1948,6 +1948,8 @@ skip_vfb: 94 - &b_info->u.hvm.spice.clipboard_sharing, 0); 95 - if (!xlu_cfg_get_long (config, "spiceusbredirection", &l, 0)) 96 - b_info->u.hvm.spice.usbredirection = l; 97 - + xlu_cfg_replace_string (config, "spice_image_compression", 98 - + &b_info->u.hvm.spice.image_compression, 0); 99 - xlu_cfg_get_defbool(config, "nographic", &b_info->u.hvm.nographic, 0); 100 - xlu_cfg_get_defbool(config, "gfx_passthru", 101 - &b_info->u.hvm.gfx_passthru, 0); 102 - -- 103 - 1.9.2 104 -
···
-104
pkgs/applications/virtualization/xen/0002-libxl-Spice-streaming-video-setting-support-for-upst.patch
··· 1 - From 296c7f3284efe655d95a8ae045a5dc1a20d6fff0 Mon Sep 17 00:00:00 2001 2 - From: Fabio Fantoni <fabio.fantoni@m2r.biz> 3 - Date: Tue, 20 Jan 2015 11:33:17 +0100 4 - Subject: [PATCH] libxl: Spice streaming video setting support for upstream 5 - qemu 6 - 7 - Usage: 8 - spice_streaming_video=[filter|all|off] 9 - 10 - Specifies what streaming video setting is to be used by spice (if 11 - given), 12 - otherwise the qemu default will be used. 13 - 14 - Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> 15 - Acked-by: Wei Liu <wei.liu2@citrix.com> 16 - --- 17 - docs/man/xl.cfg.pod.5 | 5 +++++ 18 - tools/libxl/libxl.h | 11 +++++++++++ 19 - tools/libxl/libxl_dm.c | 4 ++++ 20 - tools/libxl/libxl_types.idl | 1 + 21 - tools/libxl/xl_cmdimpl.c | 2 ++ 22 - 5 files changed, 23 insertions(+) 23 - 24 - diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 25 - index 0c2cbac..408653f 100644 26 - --- a/docs/man/xl.cfg.pod.5 27 - +++ b/docs/man/xl.cfg.pod.5 28 - @@ -1433,6 +1433,11 @@ Specifies what image compression is to be used by spice (if given), otherwise 29 - the qemu default will be used. Please see documentations of your current qemu 30 - version for details. 31 - 32 - +=item B<spice_streaming_video=[filter|all|off]> 33 - + 34 - +Specifies what streaming video setting is to be used by spice (if given), 35 - +otherwise the qemu default will be used. 36 - + 37 - =back 38 - 39 - =head3 Miscellaneous Emulated Hardware 40 - diff --git a/tools/libxl/libxl.h b/tools/libxl/libxl.h 41 - index b8e0b67..c219f59 100644 42 - --- a/tools/libxl/libxl.h 43 - +++ b/tools/libxl/libxl.h 44 - @@ -539,6 +539,17 @@ typedef struct libxl__ctx libxl_ctx; 45 - #define LIBXL_HAVE_SPICE_IMAGECOMPRESSION 1 46 - 47 - /* 48 - + * LIBXL_HAVE_SPICE_STREAMINGVIDEO 49 - + * 50 - + * If defined, then the libxl_spice_info structure will contain a string type 51 - + * field: streaming_video. This value defines what Spice streaming video setting 52 - + * is used. 53 - + * 54 - + * If this is not defined, the Spice streaming video setting support is ignored. 55 - + */ 56 - +#define LIBXL_HAVE_SPICE_STREAMINGVIDEO 1 57 - + 58 - +/* 59 - * LIBXL_HAVE_DOMAIN_CREATE_RESTORE_PARAMS 1 60 - * 61 - * If this is defined, libxl_domain_create_restore()'s API has changed to 62 - diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c 63 - index 40c8649..d8d6f0c 100644 64 - --- a/tools/libxl/libxl_dm.c 65 - +++ b/tools/libxl/libxl_dm.c 66 - @@ -402,6 +402,10 @@ static char *dm_spice_options(libxl__gc *gc, 67 - opt = libxl__sprintf(gc, "%s,image-compression=%s", opt, 68 - spice->image_compression); 69 - 70 - + if (spice->streaming_video) 71 - + opt = libxl__sprintf(gc, "%s,streaming-video=%s", opt, 72 - + spice->streaming_video); 73 - + 74 - return opt; 75 - } 76 - 77 - diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl 78 - index 052ded9..02be466 100644 79 - --- a/tools/libxl/libxl_types.idl 80 - +++ b/tools/libxl/libxl_types.idl 81 - @@ -242,6 +242,7 @@ libxl_spice_info = Struct("spice_info", [ 82 - ("clipboard_sharing", libxl_defbool), 83 - ("usbredirection", integer), 84 - ("image_compression", string), 85 - + ("streaming_video", string), 86 - ]) 87 - 88 - libxl_sdl_info = Struct("sdl_info", [ 89 - diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c 90 - index 00aa69d..b7eac29 100644 91 - --- a/tools/libxl/xl_cmdimpl.c 92 - +++ b/tools/libxl/xl_cmdimpl.c 93 - @@ -1950,6 +1950,8 @@ skip_vfb: 94 - b_info->u.hvm.spice.usbredirection = l; 95 - xlu_cfg_replace_string (config, "spice_image_compression", 96 - &b_info->u.hvm.spice.image_compression, 0); 97 - + xlu_cfg_replace_string (config, "spice_streaming_video", 98 - + &b_info->u.hvm.spice.streaming_video, 0); 99 - xlu_cfg_get_defbool(config, "nographic", &b_info->u.hvm.nographic, 0); 100 - xlu_cfg_get_defbool(config, "gfx_passthru", 101 - &b_info->u.hvm.gfx_passthru, 0); 102 - -- 103 - 1.9.2 104 -
···
-165
pkgs/applications/virtualization/xen/0003-Add-qxl-vga-interface-support-for-upstream-qem.patch
··· 1 - From 161212ef02312c0681d2d809c8ff1e1f0ea6f6f9 Mon Sep 17 00:00:00 2001 2 - From: Fabio Fantoni <fabio.fantoni@m2r.biz> 3 - Date: Wed, 29 Apr 2015 11:20:28 +0200 4 - Subject: [PATCH] libxl: Add qxl vga interface support for upstream qemu 5 - 6 - Usage: 7 - vga="qxl" 8 - 9 - Qxl vga support many resolutions that not supported by stdvga, 10 - mainly the 16:9 ones and other high up to 2560x1600. 11 - With QXL you can get improved performance and smooth video also 12 - with high resolutions and high quality. 13 - Require their drivers installed in the domU and spice used 14 - otherwise act as a simple stdvga. 15 - 16 - Signed-off-by: Fabio Fantoni <fabio.fantoni@m2r.biz> 17 - Signed-off-by: Zhou Peng <zpengxen@gmail.com> 18 - Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> 19 - Acked-by: Ian Jackson <ian.jackson@eu.citrix.com> 20 - Acked-by: George Dunlap <george.dunlap@eu.citrix.com> 21 - --- 22 - docs/man/xl.cfg.pod.5 | 10 +++++++++- 23 - tools/libxl/libxl.h | 10 ++++++++++ 24 - tools/libxl/libxl_create.c | 13 +++++++++++++ 25 - tools/libxl/libxl_dm.c | 8 ++++++++ 26 - tools/libxl/libxl_types.idl | 1 + 27 - tools/libxl/xl_cmdimpl.c | 2 ++ 28 - 6 files changed, 43 insertions(+), 1 deletion(-) 29 - 30 - diff --git a/docs/man/xl.cfg.pod.5 b/docs/man/xl.cfg.pod.5 31 - index f936dfc..8e4154f 100644 32 - --- a/docs/man/xl.cfg.pod.5 33 - +++ b/docs/man/xl.cfg.pod.5 34 - @@ -1360,6 +1360,9 @@ qemu-xen-traditional device-model, the amount of video RAM is fixed at 4 MB, 35 - which is sufficient for 1024x768 at 32 bpp. For the upstream qemu-xen 36 - device-model, the default and minimum is 8 MB. 37 - 38 - +For B<qxl> vga, the default is both default and minimal 128MB. 39 - +If B<videoram> is set less than 128MB, an error will be triggered. 40 - + 41 - =item B<stdvga=BOOLEAN> 42 - 43 - Select a standard VGA card with VBE (VESA BIOS Extensions) as the 44 - @@ -1371,9 +1374,14 @@ This option is deprecated, use vga="stdvga" instead. 45 - 46 - =item B<vga="STRING"> 47 - 48 - -Selects the emulated video card (none|stdvga|cirrus). 49 - +Selects the emulated video card (none|stdvga|cirrus|qxl). 50 - The default is cirrus. 51 - 52 - +In general, QXL should work with the Spice remote display protocol 53 - +for acceleration, and QXL driver is necessary in guest in this case. 54 - +QXL can also work with the VNC protocol, but it will be like a standard 55 - +VGA without acceleration. 56 - + 57 - =item B<vnc=BOOLEAN> 58 - 59 - Allow access to the display via the VNC protocol. This enables the 60 - diff --git a/tools/libxl/libxl.h b/tools/libxl/libxl.h 61 - index 44bd8e2..efc0617 100644 62 - --- a/tools/libxl/libxl.h 63 - +++ b/tools/libxl/libxl.h 64 - @@ -535,6 +535,16 @@ typedef struct libxl__ctx libxl_ctx; 65 - #define LIBXL_HAVE_DOMINFO_OUTSTANDING_MEMKB 1 66 - 67 - /* 68 - + * LIBXL_HAVE_QXL 69 - + * 70 - + * If defined, then the libxl_vga_interface_type will contain another value: 71 - + * "QXL". This value define if qxl vga is supported. 72 - + * 73 - + * If this is not defined, the qxl vga support is missed. 74 - + */ 75 - +#define LIBXL_HAVE_QXL 1 76 - + 77 - +/* 78 - * LIBXL_HAVE_SPICE_VDAGENT 79 - * 80 - * If defined, then the libxl_spice_info structure will contain a boolean type: 81 - diff --git a/tools/libxl/libxl_create.c b/tools/libxl/libxl_create.c 82 - index e5a343f..188f7df 100644 83 - --- a/tools/libxl/libxl_create.c 84 - +++ b/tools/libxl/libxl_create.c 85 - @@ -248,6 +248,10 @@ int libxl__domain_build_info_setdefault(libxl__gc *gc, 86 - if (b_info->video_memkb == LIBXL_MEMKB_DEFAULT) 87 - b_info->video_memkb = 0; 88 - break; 89 - + case LIBXL_VGA_INTERFACE_TYPE_QXL: 90 - + LOG(ERROR,"qemu upstream required for qxl vga"); 91 - + return ERROR_INVAL; 92 - + break; 93 - case LIBXL_VGA_INTERFACE_TYPE_STD: 94 - if (b_info->video_memkb == LIBXL_MEMKB_DEFAULT) 95 - b_info->video_memkb = 8 * 1024; 96 - @@ -272,6 +276,15 @@ int libxl__domain_build_info_setdefault(libxl__gc *gc, 97 - if (b_info->video_memkb == LIBXL_MEMKB_DEFAULT) 98 - b_info->video_memkb = 0; 99 - break; 100 - + case LIBXL_VGA_INTERFACE_TYPE_QXL: 101 - + if (b_info->video_memkb == LIBXL_MEMKB_DEFAULT) { 102 - + b_info->video_memkb = (128 * 1024); 103 - + } else if (b_info->video_memkb < (128 * 1024)) { 104 - + LOG(ERROR, 105 - + "128 Mib videoram is the minimum for qxl default"); 106 - + return ERROR_INVAL; 107 - + } 108 - + break; 109 - case LIBXL_VGA_INTERFACE_TYPE_STD: 110 - if (b_info->video_memkb == LIBXL_MEMKB_DEFAULT) 111 - b_info->video_memkb = 16 * 1024; 112 - diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c 113 - index 30c1578..58c9b99 100644 114 - --- a/tools/libxl/libxl_dm.c 115 - +++ b/tools/libxl/libxl_dm.c 116 - @@ -251,6 +251,8 @@ static char ** libxl__build_device_model_args_old(libxl__gc *gc, 117 - case LIBXL_VGA_INTERFACE_TYPE_NONE: 118 - flexarray_append_pair(dm_args, "-vga", "none"); 119 - break; 120 - + case LIBXL_VGA_INTERFACE_TYPE_QXL: 121 - + break; 122 - } 123 - 124 - if (b_info->u.hvm.boot) { 125 - @@ -625,6 +627,12 @@ static char ** libxl__build_device_model_args_new(libxl__gc *gc, 126 - break; 127 - case LIBXL_VGA_INTERFACE_TYPE_NONE: 128 - break; 129 - + case LIBXL_VGA_INTERFACE_TYPE_QXL: 130 - + /* QXL have 2 ram regions, ram and vram */ 131 - + flexarray_append_pair(dm_args, "-device", 132 - + GCSPRINTF("qxl-vga,vram_size_mb=%"PRIu64",ram_size_mb=%"PRIu64, 133 - + (b_info->video_memkb/2/1024), (b_info->video_memkb/2/1024) ) ); 134 - + break; 135 - } 136 - 137 - if (b_info->u.hvm.boot) { 138 - diff --git a/tools/libxl/libxl_types.idl b/tools/libxl/libxl_types.idl 139 - index 117b61d..023b21e 100644 140 - --- a/tools/libxl/libxl_types.idl 141 - +++ b/tools/libxl/libxl_types.idl 142 - @@ -183,6 +183,7 @@ libxl_vga_interface_type = Enumeration("vga_interface_type", [ 143 - (1, "CIRRUS"), 144 - (2, "STD"), 145 - (3, "NONE"), 146 - + (4, "QXL"), 147 - ], init_val = "LIBXL_VGA_INTERFACE_TYPE_CIRRUS") 148 - 149 - libxl_vendor_device = Enumeration("vendor_device", [ 150 - diff --git a/tools/libxl/xl_cmdimpl.c b/tools/libxl/xl_cmdimpl.c 151 - index 648ca08..526a1f6 100644 152 - --- a/tools/libxl/xl_cmdimpl.c 153 - +++ b/tools/libxl/xl_cmdimpl.c 154 - @@ -2115,6 +2115,8 @@ skip_vfb: 155 - b_info->u.hvm.vga.kind = LIBXL_VGA_INTERFACE_TYPE_CIRRUS; 156 - } else if (!strcmp(buf, "none")) { 157 - b_info->u.hvm.vga.kind = LIBXL_VGA_INTERFACE_TYPE_NONE; 158 - + } else if (!strcmp(buf, "qxl")) { 159 - + b_info->u.hvm.vga.kind = LIBXL_VGA_INTERFACE_TYPE_QXL; 160 - } else { 161 - fprintf(stderr, "Unknown vga \"%s\" specified\n", buf); 162 - exit(1); 163 - -- 164 - 1.9.2 165 -
···
-63
pkgs/applications/virtualization/xen/acpica-utils-20180427.patch
··· 1 - From 858dbaaeda33b05c1ac80aea0ba9a03924e09005 Mon Sep 17 00:00:00 2001 2 - From: =?utf8?q?Roger=20Pau=20Monn=C3=A9?= <roger.pau@citrix.com> 3 - Date: Wed, 9 May 2018 11:08:12 +0100 4 - Subject: [PATCH] libacpi: fixes for iasl >= 20180427 5 - MIME-Version: 1.0 6 - Content-Type: text/plain; charset=utf8 7 - Content-Transfer-Encoding: 8bit 8 - 9 - New versions of iasl have introduced improved C file generation, as 10 - reported in the changelog: 11 - 12 - iASL: Enhanced the -tc option (which creates an AML hex file in C, 13 - suitable for import into a firmware project): 14 - 1) Create a unique name for the table, to simplify use of multiple 15 - SSDTs. 16 - 2) Add a protection #ifdef in the file, similar to a .h header file. 17 - 18 - The net effect of that on generated files is: 19 - 20 - -unsigned char AmlCode[] = 21 - +#ifndef __SSDT_S4_HEX__ 22 - +#define __SSDT_S4_HEX__ 23 - + 24 - +unsigned char ssdt_s4_aml_code[] = 25 - 26 - The above example is from ssdt_s4.asl. 27 - 28 - Fix the build with newer versions of iasl by stripping the '_aml_code' 29 - suffix from the variable name on generated files. 30 - 31 - Signed-off-by: Roger Pau Monné <roger.pau@citrix.com> 32 - Reviewed-by: Wei Liu <wei.liu2@citrix.com> 33 - Acked-by: Andrew Cooper <andrew.cooper3@citrix.com> 34 - Release-acked-by: Juergen Gross <jgross@suse.com> 35 - --- 36 - tools/libacpi/Makefile | 4 ++-- 37 - 1 file changed, 2 insertions(+), 2 deletions(-) 38 - 39 - diff --git a/tools/libacpi/Makefile b/tools/libacpi/Makefile 40 - index a47a658a25..c17f3924cc 100644 41 - --- a/tools/libacpi/Makefile 42 - +++ b/tools/libacpi/Makefile 43 - @@ -43,7 +43,7 @@ all: $(C_SRC) $(H_SRC) 44 - 45 - $(H_SRC): $(ACPI_BUILD_DIR)/%.h: %.asl iasl 46 - iasl -vs -p $(ACPI_BUILD_DIR)/$*.$(TMP_SUFFIX) -tc $< 47 - - sed -e 's/AmlCode/$*/g' $(ACPI_BUILD_DIR)/$*.hex >$@ 48 - + sed -e 's/AmlCode/$*/g' -e 's/_aml_code//g' $(ACPI_BUILD_DIR)/$*.hex >$@ 49 - rm -f $(addprefix $(ACPI_BUILD_DIR)/, $*.aml $*.hex) 50 - 51 - $(MK_DSDT): mk_dsdt.c 52 - @@ -76,7 +76,7 @@ $(ACPI_BUILD_DIR)/dsdt_anycpu_arm.asl: $(MK_DSDT) 53 - 54 - $(C_SRC): $(ACPI_BUILD_DIR)/%.c: iasl $(ACPI_BUILD_DIR)/%.asl 55 - iasl -vs -p $(ACPI_BUILD_DIR)/$*.$(TMP_SUFFIX) -tc $(ACPI_BUILD_DIR)/$*.asl 56 - - sed -e 's/AmlCode/$*/g' $(ACPI_BUILD_DIR)/$*.hex > $@.$(TMP_SUFFIX) 57 - + sed -e 's/AmlCode/$*/g' -e 's/_aml_code//g' $(ACPI_BUILD_DIR)/$*.hex > $@.$(TMP_SUFFIX) 58 - echo "int $*_len=sizeof($*);" >> $@.$(TMP_SUFFIX) 59 - mv -f $@.$(TMP_SUFFIX) $@ 60 - rm -f $(addprefix $(ACPI_BUILD_DIR)/, $*.aml $*.hex) 61 - -- 62 - 2.11.0 63 -
···
-95
pkgs/applications/virtualization/xen/qemu-gluster-6-compat.diff
··· 1 - diff --git a/block/gluster.c b/block/gluster.c 2 - index 01b479fbb9..29552e1186 100644 3 - --- a/block/gluster.c 4 - +++ b/block/gluster.c 5 - @@ -15,6 +15,10 @@ 6 - #include "qemu/uri.h" 7 - #include "qemu/error-report.h" 8 - 9 - +#ifdef CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT 10 - +# define glfs_ftruncate(fd, offset) glfs_ftruncate(fd, offset, NULL, NULL) 11 - +#endif 12 - + 13 - #define GLUSTER_OPT_FILENAME "filename" 14 - #define GLUSTER_OPT_VOLUME "volume" 15 - #define GLUSTER_OPT_PATH "path" 16 - @@ -613,7 +617,11 @@ static void qemu_gluster_complete_aio(void *opaque) 17 - /* 18 - * AIO callback routine called from GlusterFS thread. 19 - */ 20 - -static void gluster_finish_aiocb(struct glfs_fd *fd, ssize_t ret, void *arg) 21 - +static void gluster_finish_aiocb(struct glfs_fd *fd, ssize_t ret, 22 - +#ifdef CONFIG_GLUSTERFS_IOCB_HAS_STAT 23 - + struct glfs_stat *pre, struct glfs_stat *post, 24 - +#endif 25 - + void *arg) 26 - { 27 - GlusterAIOCB *acb = (GlusterAIOCB *)arg; 28 - 29 - diff --git a/configure b/configure 30 - index 4b808f9d17..89fb27fd0d 100755 31 - --- a/configure 32 - +++ b/configure 33 - @@ -301,6 +301,8 @@ glusterfs="" 34 - glusterfs_xlator_opt="no" 35 - glusterfs_discard="no" 36 - glusterfs_zerofill="no" 37 - +glusterfs_ftruncate_has_stat="no" 38 - +glusterfs_iocb_has_stat="no" 39 - archipelago="no" 40 - gtk="" 41 - gtkabi="" 42 - @@ -3444,6 +3446,38 @@ if test "$glusterfs" != "no" ; then 43 - if $pkg_config --atleast-version=6 glusterfs-api; then 44 - glusterfs_zerofill="yes" 45 - fi 46 - + cat > $TMPC << EOF 47 - +#include <glusterfs/api/glfs.h> 48 - + 49 - +int 50 - +main(void) 51 - +{ 52 - + /* new glfs_ftruncate() passes two additional args */ 53 - + return glfs_ftruncate(NULL, 0, NULL, NULL); 54 - +} 55 - +EOF 56 - + if compile_prog "$glusterfs_cflags" "$glusterfs_libs" ; then 57 - + glusterfs_ftruncate_has_stat="yes" 58 - + fi 59 - + cat > $TMPC << EOF 60 - +#include <glusterfs/api/glfs.h> 61 - + 62 - +/* new glfs_io_cbk() passes two additional glfs_stat structs */ 63 - +static void 64 - +glusterfs_iocb(glfs_fd_t *fd, ssize_t ret, struct glfs_stat *prestat, struct glfs_stat *poststat, void *data) 65 - +{} 66 - + 67 - +int 68 - +main(void) 69 - +{ 70 - + glfs_io_cbk iocb = &glusterfs_iocb; 71 - + iocb(NULL, 0 , NULL, NULL, NULL); 72 - + return 0; 73 - +} 74 - +EOF 75 - + if compile_prog "$glusterfs_cflags" "$glusterfs_libs" ; then 76 - + glusterfs_iocb_has_stat="yes" 77 - + fi 78 - else 79 - if test "$glusterfs" = "yes" ; then 80 - feature_not_found "GlusterFS backend support" \ 81 - @@ -5415,6 +5449,14 @@ if test "$archipelago" = "yes" ; then 82 - echo "ARCHIPELAGO_LIBS=$archipelago_libs" >> $config_host_mak 83 - fi 84 - 85 - +if test "$glusterfs_ftruncate_has_stat" = "yes" ; then 86 - + echo "CONFIG_GLUSTERFS_FTRUNCATE_HAS_STAT=y" >> $config_host_mak 87 - +fi 88 - + 89 - +if test "$glusterfs_iocb_has_stat" = "yes" ; then 90 - + echo "CONFIG_GLUSTERFS_IOCB_HAS_STAT=y" >> $config_host_mak 91 - +fi 92 - + 93 - if test "$libssh2" = "yes" ; then 94 - echo "CONFIG_LIBSSH2=m" >> $config_host_mak 95 - echo "LIBSSH2_CFLAGS=$libssh2_cflags" >> $config_host_mak
···
+2 -1
pkgs/development/compilers/openjdk/openjfx/15.nix
··· 95 96 postFixup = '' 97 # Remove references to bootstrap. 98 find "$out" -name \*.so | while read lib; do 99 - new_refs="$(patchelf --print-rpath "$lib" | sed -E 's,:?${lib.escape ["+"] openjdk11_headless.outPath}[^:]*,,')" 100 patchelf --set-rpath "$new_refs" "$lib" 101 done 102 '';
··· 95 96 postFixup = '' 97 # Remove references to bootstrap. 98 + export openjdkOutPath='${openjdk11_headless.outPath}' 99 find "$out" -name \*.so | while read lib; do 100 + new_refs="$(patchelf --print-rpath "$lib" | perl -pe 's,:?\Q$ENV{openjdkOutPath}\E[^:]*,,')" 101 patchelf --set-rpath "$new_refs" "$lib" 102 done 103 '';
+2 -2
pkgs/development/libraries/intel-gmmlib/default.nix
··· 4 5 stdenv.mkDerivation rec { 6 pname = "intel-gmmlib"; 7 - version = "21.1.2"; 8 9 src = fetchFromGitHub { 10 owner = "intel"; 11 repo = "gmmlib"; 12 rev = "${pname}-${version}"; 13 - sha256 = "0zs8l0q1q7xps3kxlch6jddxjiny8n8avdg1ghiwbkvgf76gb3as"; 14 }; 15 16 nativeBuildInputs = [ cmake ];
··· 4 5 stdenv.mkDerivation rec { 6 pname = "intel-gmmlib"; 7 + version = "21.1.3"; 8 9 src = fetchFromGitHub { 10 owner = "intel"; 11 repo = "gmmlib"; 12 rev = "${pname}-${version}"; 13 + sha256 = "05vcr2rv6l38j7rv34mvcvzpgc2gjmvsb73wyprgdj71mcwrksyq"; 14 }; 15 16 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/development/libraries/libsvm/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libsvm"; 5 - version = "3.24"; 6 7 src = fetchurl { 8 url = "https://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-${version}.tar.gz"; 9 - sha256 = "15l69y23fxslrap415dvqb383x5fxvbffp9giszjfqjf38h1m26m"; 10 }; 11 12 buildPhase = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "libsvm"; 5 + version = "3.25"; 6 7 src = fetchurl { 8 url = "https://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-${version}.tar.gz"; 9 + sha256 = "sha256-UjUOiqdAsXbh13Pp3AjxNAIYw34BvsN6uQ2wEn5LteU="; 10 }; 11 12 buildPhase = ''
+1 -1
pkgs/development/python-modules/aioesphomeapi/default.nix
··· 22 description = "Python Client for ESPHome native API"; 23 homepage = "https://github.com/esphome/aioesphomeapi"; 24 license = licenses.mit; 25 - maintainers = with maintainers; [ dotlambda ]; 26 }; 27 }
··· 22 description = "Python Client for ESPHome native API"; 23 homepage = "https://github.com/esphome/aioesphomeapi"; 24 license = licenses.mit; 25 + maintainers = with maintainers; [ fab hexa ]; 26 }; 27 }
+2 -2
pkgs/development/tools/build-managers/mill/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mill"; 5 - version = "0.9.5"; 6 7 src = fetchurl { 8 url = "https://github.com/com-lihaoyi/mill/releases/download/${version}/${version}"; 9 - sha256 = "142vr40p60mapvvb5amn8hz6a8930kxsz510baql40hai4yhga7z"; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
··· 2 3 stdenv.mkDerivation rec { 4 pname = "mill"; 5 + version = "0.9.6"; 6 7 src = fetchurl { 8 url = "https://github.com/com-lihaoyi/mill/releases/download/${version}/${version}"; 9 + sha256 = "sha256-cAhcTmSPkV5z5ryuCNrpxy9/1iWvvminiVYul9c/DwM="; 10 }; 11 12 nativeBuildInputs = [ makeWrapper ];
+1 -1
pkgs/development/tools/misc/strace/default.nix
··· 27 description = "A system call tracer for Linux"; 28 license = with licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite 29 platforms = platforms.linux; 30 - maintainers = with maintainers; [ globin ma27 ]; 31 }; 32 }
··· 27 description = "A system call tracer for Linux"; 28 license = with licenses; [ lgpl21Plus gpl2Plus ]; # gpl2Plus is for the test suite 29 platforms = platforms.linux; 30 + maintainers = with maintainers; [ globin ma27 qyliss ]; 31 }; 32 }
+3 -3
pkgs/development/tools/rust/sqlx-cli/default.nix
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "sqlx-cli"; 5 - version = "0.4.2"; 6 7 src = fetchFromGitHub { 8 owner = "launchbadge"; 9 repo = "sqlx"; 10 rev = "v${version}"; 11 - sha256 = "1q6p4qly9qjn333nj72sar6nbyclfdw9i9l6rnimswylj0rr9n27"; 12 }; 13 14 - cargoSha256 = "1393mwx6iccnqrry4ia4prcnnjxhp4zjq1s3gzwzfyzsrqyad54g"; 15 16 doCheck = false; 17 cargoBuildFlags = [ "-p sqlx-cli" ];
··· 2 3 rustPlatform.buildRustPackage rec { 4 pname = "sqlx-cli"; 5 + version = "0.5.2"; 6 7 src = fetchFromGitHub { 8 owner = "launchbadge"; 9 repo = "sqlx"; 10 rev = "v${version}"; 11 + sha256 = "0jz0gddw1xp51rnap0dsyq4886x2glmr087r1lf3fxlnv6anaqn9"; 12 }; 13 14 + cargoSha256 = "046blw366d6zjpq944g9n4cdhhv2w97qfi1ynljc9bnz03d8v39c"; 15 16 doCheck = false; 17 cargoBuildFlags = [ "-p sqlx-cli" ];
+8 -8
pkgs/games/factorio/versions.json
··· 2 "x86_64-linux": { 3 "alpha": { 4 "experimental": { 5 - "name": "factorio_alpha_x64-1.1.32.tar.xz", 6 "needsAuth": true, 7 - "sha256": "0ciz7y8xqlk9vg3akvflq1aabzgbqpazfnihyk4gsadk12b6a490", 8 "tarDirectory": "x64", 9 - "url": "https://factorio.com/get-download/1.1.32/alpha/linux64", 10 - "version": "1.1.32" 11 }, 12 "stable": { 13 "name": "factorio_alpha_x64-1.1.32.tar.xz", ··· 38 }, 39 "headless": { 40 "experimental": { 41 - "name": "factorio_headless_x64-1.1.32.tar.xz", 42 "needsAuth": false, 43 - "sha256": "0dg98ycs7m8rm996pk0p1iajalpmiy30p0pwr9dw2chf1d887kvz", 44 "tarDirectory": "x64", 45 - "url": "https://factorio.com/get-download/1.1.32/headless/linux64", 46 - "version": "1.1.32" 47 }, 48 "stable": { 49 "name": "factorio_headless_x64-1.1.32.tar.xz",
··· 2 "x86_64-linux": { 3 "alpha": { 4 "experimental": { 5 + "name": "factorio_alpha_x64-1.1.33.tar.xz", 6 "needsAuth": true, 7 + "sha256": "0qgr609w8pgjpmh8ycf0b846v0i019b393x71i790lb7vcygl2aa", 8 "tarDirectory": "x64", 9 + "url": "https://factorio.com/get-download/1.1.33/alpha/linux64", 10 + "version": "1.1.33" 11 }, 12 "stable": { 13 "name": "factorio_alpha_x64-1.1.32.tar.xz", ··· 38 }, 39 "headless": { 40 "experimental": { 41 + "name": "factorio_headless_x64-1.1.33.tar.xz", 42 "needsAuth": false, 43 + "sha256": "0iv667l25aaij3g9v3mqxhkpphfbc6dhdghsg5qdw4l59vh6fpd4", 44 "tarDirectory": "x64", 45 + "url": "https://factorio.com/get-download/1.1.33/headless/linux64", 46 + "version": "1.1.33" 47 }, 48 "stable": { 49 "name": "factorio_headless_x64-1.1.32.tar.xz",
+2 -2
pkgs/servers/mail/exim/default.nix
··· 9 10 stdenv.mkDerivation rec { 11 pname = "exim"; 12 - version = "4.94"; 13 14 src = fetchurl { 15 url = "https://ftp.exim.org/pub/exim/exim4/${pname}-${version}.tar.xz"; 16 - sha256 = "1nsb2i5mqxfz1sl1bmbxmpb2qiaf3wffhfiw4j9vfpagy3xfhzpp"; 17 }; 18 19 nativeBuildInputs = [ pkg-config ];
··· 9 10 stdenv.mkDerivation rec { 11 pname = "exim"; 12 + version = "4.94.2"; 13 14 src = fetchurl { 15 url = "https://ftp.exim.org/pub/exim/exim4/${pname}-${version}.tar.xz"; 16 + sha256 = "0x4j698gsawm8a3bz531pf1k6izyxfvry4hj5wb0aqphi7y62605"; 17 }; 18 19 nativeBuildInputs = [ pkg-config ];
+7 -4
pkgs/servers/teleport/default.nix
··· 11 12 buildGoModule rec { 13 pname = "teleport"; 14 - version = "6.1.2"; 15 16 # This repo has a private submodule "e" which fetchgit cannot handle without failing. 17 src = fetchFromGitHub { 18 owner = "gravitational"; 19 repo = "teleport"; 20 rev = "v${version}"; 21 - sha256 = "sha256-4ZaebTTgGrGRQbMfDw1PL/qtDKmHbSY6kPmWyFeIcAU="; 22 }; 23 24 vendorSha256 = null; ··· 26 subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ]; 27 28 nativeBuildInputs = [ zip makeWrapper ]; 29 30 postBuild = '' 31 pushd . ··· 54 55 postInstall = '' 56 install -Dm755 -t $client/bin $out/bin/tsh 57 - wrapProgram $client/bin/tsh --prefix PATH : ${xdg-utils}/bin 58 - wrapProgram $out/bin/tsh --prefix PATH : ${xdg-utils}/bin 59 ''; 60 61 doInstallCheck = true;
··· 11 12 buildGoModule rec { 13 pname = "teleport"; 14 + version = "6.1.3"; 15 16 # This repo has a private submodule "e" which fetchgit cannot handle without failing. 17 src = fetchFromGitHub { 18 owner = "gravitational"; 19 repo = "teleport"; 20 rev = "v${version}"; 21 + sha256 = "sha256-kb7qRPZKXDY0Qy3/72epAGaN2FCOO/XAN8lOoUYkoM0="; 22 }; 23 24 vendorSha256 = null; ··· 26 subPackages = [ "tool/tctl" "tool/teleport" "tool/tsh" ]; 27 28 nativeBuildInputs = [ zip makeWrapper ]; 29 + 30 + # https://github.com/NixOS/nixpkgs/issues/120738 31 + patches = [ ./tsh.patch ]; 32 33 postBuild = '' 34 pushd . ··· 57 58 postInstall = '' 59 install -Dm755 -t $client/bin $out/bin/tsh 60 + wrapProgram $client/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]} 61 + wrapProgram $out/bin/tsh --prefix PATH : ${lib.makeBinPath [ xdg-utils ]} 62 ''; 63 64 doInstallCheck = true;
+17
pkgs/servers/teleport/tsh.patch
···
··· 1 + diff --git a/tool/tsh/tsh.go b/tool/tsh/tsh.go 2 + index 57379c40f..cb4d7b84c 100644 3 + --- a/tool/tsh/tsh.go 4 + +++ b/tool/tsh/tsh.go 5 + @@ -514,10 +514,11 @@ func Run(args []string, opts ...cliOption) error { 6 + } 7 + } 8 + 9 + - cf.executablePath, err = os.Executable() 10 + + tempBinaryPath, err := os.Executable() 11 + if err != nil { 12 + return trace.Wrap(err) 13 + } 14 + + cf.executablePath = path.Dir(tempBinaryPath) + "/tsh" 15 + 16 + if err := client.ValidateAgentKeyOption(cf.AddKeysToAgent); err != nil { 17 + return trace.Wrap(err)
+4 -2
pkgs/servers/web-apps/hedgedoc/default.nix
··· 3 4 mkYarnPackage rec { 5 name = "hedgedoc"; 6 - version = "1.7.2"; 7 8 src = fetchFromGitHub { 9 owner = "hedgedoc"; 10 repo = "hedgedoc"; 11 rev = version; 12 - sha256 = "1w3si1k27c8d9yka2v91883dlz57n0wasan4agi6gw17h9dzb1l6"; 13 }; 14 15 nativeBuildInputs = [ which makeWrapper ]; ··· 36 popd 37 38 npm run build 39 40 runHook postBuild 41 '';
··· 3 4 mkYarnPackage rec { 5 name = "hedgedoc"; 6 + version = "1.8.0"; 7 8 src = fetchFromGitHub { 9 owner = "hedgedoc"; 10 repo = "hedgedoc"; 11 rev = version; 12 + sha256 = "1xi4gi1yjwggdsnz5hljx9xl4qhnm9r3c24q7i6d5y8yv6lh6lsr"; 13 }; 14 15 nativeBuildInputs = [ which makeWrapper ]; ··· 36 popd 37 38 npm run build 39 + 40 + patchShebangs bin/* 41 42 runHook postBuild 43 '';
+56 -55
pkgs/servers/web-apps/hedgedoc/package.json
··· 1 { 2 "name": "HedgeDoc", 3 - "version": "1.7.2", 4 "description": "The best platform to write and share markdown.", 5 "main": "app.js", 6 "license": "AGPL-3.0", ··· 11 "markdownlint": "remark .", 12 "mocha-suite": "NODE_ENV=test CMD_DB_URL=\"sqlite::memory:\" mocha --exit", 13 "standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1", 14 - "dev": "webpack --config webpack.dev.js --progress --colors --watch", 15 "heroku-prebuild": "bin/heroku", 16 - "build": "webpack --config webpack.prod.js --progress --colors --bail", 17 - "start": "sequelize db:migrate && node app.js" 18 }, 19 "dependencies": { 20 "@passport-next/passport-openid": "^1.0.0", 21 "Idle.Js": "git+https://github.com/shawnmclean/Idle.js", 22 "archiver": "^5.0.2", 23 - "async": "^2.1.4", 24 - "aws-sdk": "^2.521.0", 25 "azure-storage": "^2.7.0", 26 "base64url": "^3.0.0", 27 "body-parser": "^1.15.2", ··· 32 "codemirror": "git+https://github.com/hedgedoc/CodeMirror.git", 33 "compression": "^1.6.2", 34 "connect-flash": "^0.1.1", 35 - "connect-session-sequelize": "^6.0.0", 36 "cookie": "^0.4.0", 37 "cookie-parser": "^1.4.3", 38 "deep-freeze": "^0.0.1", 39 "diff-match-patch": "git+https://github.com/hackmdio/diff-match-patch.git", 40 - "ejs": "^2.5.5", 41 "emojify.js": "^1.1.0", 42 "escape-html": "^1.0.3", 43 "express": ">=4.14", 44 "express-session": "^1.14.2", 45 - "file-saver": "^1.3.3", 46 "file-type": "^16.1.0", 47 "flowchart.js": "^1.6.4", 48 "fork-awesome": "^1.1.3", ··· 50 "gist-embed": "^2.6.0", 51 "graceful-fs": "^4.1.11", 52 "handlebars": "^4.5.2", 53 - "helmet": "^3.21.1", 54 - "highlight.js": "^9.12.0", 55 "i18n": "^0.13.0", 56 - "imgur": "git+https://github.com/hackmdio/node-imgur.git", 57 "ionicons": "^2.0.1", 58 "jquery": "^3.5.1", 59 "jquery-mousewheel": "^3.1.13", 60 "jquery-ui": "^1.12.1", ··· 63 "js-yaml": "^3.13.1", 64 "jsdom-nogyp": "^0.8.3", 65 "keymaster": "^1.6.2", 66 - "list.js": "^1.5.0", 67 "lodash": "^4.17.20", 68 "lutim": "^1.0.2", 69 "lz-string": "git+https://github.com/hackmdio/lz-string.git", 70 "mariadb": "^2.1.2", 71 - "markdown-it": "^10.0.0", 72 "markdown-it-abbr": "^1.0.4", 73 - "markdown-it-container": "^2.0.0", 74 "markdown-it-deflist": "^2.0.1", 75 - "markdown-it-emoji": "^1.3.0", 76 "markdown-it-footnote": "^3.0.1", 77 "markdown-it-imsize": "^2.0.1", 78 - "markdown-it-ins": "^2.0.0", 79 - "markdown-it-mark": "^2.0.0", 80 "markdown-it-mathjax": "^2.0.0", 81 "markdown-it-regexp": "^0.4.0", 82 "markdown-it-sub": "^1.0.0", ··· 85 "mattermost": "^3.4.0", 86 "mermaid": "^8.5.1", 87 "meta-marked": "git+https://github.com/hedgedoc/meta-marked", 88 - "method-override": "^2.3.7", 89 "minimist": "^1.2.0", 90 - "minio": "^6.0.0", 91 "moment": "^2.17.1", 92 "morgan": "^1.7.0", 93 "mysql2": "^2.0.0", 94 "passport": "^0.4.0", 95 "passport-dropbox-oauth2": "^1.1.0", 96 - "passport-facebook": "^2.1.1", 97 "passport-github": "^1.1.0", 98 - "passport-gitlab2": "^4.0.0", 99 - "passport-google-oauth20": "^1.0.0", 100 - "passport-ldapauth": "^2.0.0", 101 "passport-local": "^1.0.0", 102 "passport-oauth2": "^1.4.0", 103 - "passport-saml": "^1.0.0", 104 "passport-twitter": "^1.0.4", 105 "passport.socketio": "^3.7.0", 106 "pdfobject": "^2.0.201604172", 107 "pg": "^8.2.1", 108 "pg-hstore": "^2.3.3", 109 "prismjs": "^1.21.0", 110 "randomcolor": "^0.6.0", 111 "raphael": "^2.3.0", 112 "readline-sync": "^1.4.7", 113 - "request": "^2.88.0", 114 "reveal.js": "^3.9.2", 115 "rimraf": "^3.0.2", 116 - "scrypt-async": "^2.0.1", 117 "scrypt-kdf": "^2.0.1", 118 "select2": "^3.5.2-browserify", 119 "sequelize": "^5.21.1", 120 - "sequelize-cli": "^5.5.1", 121 "shortid": "2.2.16", 122 "socket.io": "^2.1.1", 123 "socket.io-client": "^2.1.1", 124 - "spin.js": "^2.3.2", 125 - "sqlite3": "^4.1.0", 126 "store": "^2.0.12", 127 "string": "^3.3.3", 128 "tedious": "^6.6.0", 129 "toobusy-js": "^0.5.1", 130 - "turndown": "^5.0.1", 131 - "uuid": "^3.1.0", 132 - "validator": "^10.4.0", 133 "velocity-animate": "^1.4.0", 134 - "visibilityjs": "^1.2.4", 135 "viz.js": "^1.7.0", 136 "winston": "^3.1.0", 137 - "ws": "^6.0.0", 138 "wurl": "^2.5.3", 139 "xss": "^1.0.3" 140 }, ··· 144 "**/request": "^2.88.0" 145 }, 146 "engines": { 147 - "node": ">=10.13" 148 }, 149 "bugs": "https://github.com/hedgedoc/hedgedoc/issues", 150 "keywords": [ ··· 177 "babel-preset-env": "1.7.0", 178 "babel-runtime": "6.26.0", 179 "copy-webpack-plugin": "6.4.1", 180 - "css-loader": "3.6.0", 181 - "eslint": "5.16.0", 182 - "eslint-config-standard": "12.0.0", 183 "eslint-plugin-import": "2.22.1", 184 - "eslint-plugin-node": "8.0.1", 185 - "eslint-plugin-promise": "4.2.1", 186 "eslint-plugin-standard": "4.1.0", 187 - "expose-loader": "0.7.5", 188 - "file-loader": "4.3.0", 189 - "html-webpack-plugin": "4.5.0", 190 - "imports-loader": "0.8.0", 191 "jsonlint": "1.6.3", 192 - "less": "3.13.1", 193 - "less-loader": "5.0.0", 194 - "mini-css-extract-plugin": "0.12.0", 195 - "mocha": "5.2.0", 196 "mock-require": "3.0.3", 197 "optimize-css-assets-webpack-plugin": "5.0.4", 198 - "remark-cli": "8.0.1", 199 - "remark-preset-lint-markdown-style-guide": "3.0.1", 200 "script-loader": "0.7.2", 201 "string-loader": "0.0.1", 202 - "url-loader": "2.3.0", 203 - "webpack": "4.44.2", 204 - "webpack-cli": "3.3.12", 205 - "webpack-merge": "4.2.2" 206 }, 207 "optionalDependencies": { 208 "bufferutil": "^4.0.0",
··· 1 { 2 "name": "HedgeDoc", 3 + "version": "1.8.0", 4 "description": "The best platform to write and share markdown.", 5 "main": "app.js", 6 "license": "AGPL-3.0", ··· 11 "markdownlint": "remark .", 12 "mocha-suite": "NODE_ENV=test CMD_DB_URL=\"sqlite::memory:\" mocha --exit", 13 "standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1", 14 + "dev": "webpack --config webpack.dev.js --progress --watch", 15 "heroku-prebuild": "bin/heroku", 16 + "build": "webpack --config webpack.prod.js --progress", 17 + "start": "node app.js" 18 }, 19 "dependencies": { 20 "@passport-next/passport-openid": "^1.0.0", 21 "Idle.Js": "git+https://github.com/shawnmclean/Idle.js", 22 "archiver": "^5.0.2", 23 + "async": "^3.0.0", 24 + "aws-sdk": "^2.888.0", 25 "azure-storage": "^2.7.0", 26 "base64url": "^3.0.0", 27 "body-parser": "^1.15.2", ··· 32 "codemirror": "git+https://github.com/hedgedoc/CodeMirror.git", 33 "compression": "^1.6.2", 34 "connect-flash": "^0.1.1", 35 + "connect-session-sequelize": "^7.0.0", 36 "cookie": "^0.4.0", 37 "cookie-parser": "^1.4.3", 38 "deep-freeze": "^0.0.1", 39 "diff-match-patch": "git+https://github.com/hackmdio/diff-match-patch.git", 40 + "ejs": "^3.0.0", 41 "emojify.js": "^1.1.0", 42 "escape-html": "^1.0.3", 43 "express": ">=4.14", 44 "express-session": "^1.14.2", 45 + "file-saver": "^2.0.0", 46 "file-type": "^16.1.0", 47 "flowchart.js": "^1.6.4", 48 "fork-awesome": "^1.1.3", ··· 50 "gist-embed": "^2.6.0", 51 "graceful-fs": "^4.1.11", 52 "handlebars": "^4.5.2", 53 + "helmet": "^4.5.0", 54 + "highlight.js": "^10.0.0", 55 "i18n": "^0.13.0", 56 "ionicons": "^2.0.1", 57 + "is-svg": "^4.3.1", 58 "jquery": "^3.5.1", 59 "jquery-mousewheel": "^3.1.13", 60 "jquery-ui": "^1.12.1", ··· 63 "js-yaml": "^3.13.1", 64 "jsdom-nogyp": "^0.8.3", 65 "keymaster": "^1.6.2", 66 + "list.js": "^2.0.0", 67 "lodash": "^4.17.20", 68 "lutim": "^1.0.2", 69 "lz-string": "git+https://github.com/hackmdio/lz-string.git", 70 "mariadb": "^2.1.2", 71 + "markdown-it": "^12.0.0", 72 "markdown-it-abbr": "^1.0.4", 73 + "markdown-it-container": "^3.0.0", 74 "markdown-it-deflist": "^2.0.1", 75 + "markdown-it-emoji": "^2.0.0", 76 "markdown-it-footnote": "^3.0.1", 77 "markdown-it-imsize": "^2.0.1", 78 + "markdown-it-ins": "^3.0.0", 79 + "markdown-it-mark": "^3.0.0", 80 "markdown-it-mathjax": "^2.0.0", 81 "markdown-it-regexp": "^0.4.0", 82 "markdown-it-sub": "^1.0.0", ··· 85 "mattermost": "^3.4.0", 86 "mermaid": "^8.5.1", 87 "meta-marked": "git+https://github.com/hedgedoc/meta-marked", 88 + "method-override": "^3.0.0", 89 "minimist": "^1.2.0", 90 + "minio": "^7.0.0", 91 "moment": "^2.17.1", 92 "morgan": "^1.7.0", 93 "mysql2": "^2.0.0", 94 + "node-fetch": "^2.6.1", 95 "passport": "^0.4.0", 96 "passport-dropbox-oauth2": "^1.1.0", 97 + "passport-facebook": "^3.0.0", 98 "passport-github": "^1.1.0", 99 + "passport-gitlab2": "^5.0.0", 100 + "passport-google-oauth20": "^2.0.0", 101 + "passport-ldapauth": "^3.0.0", 102 "passport-local": "^1.0.0", 103 "passport-oauth2": "^1.4.0", 104 + "passport-saml": "^2.0.0", 105 "passport-twitter": "^1.0.4", 106 "passport.socketio": "^3.7.0", 107 "pdfobject": "^2.0.201604172", 108 "pg": "^8.2.1", 109 "pg-hstore": "^2.3.3", 110 "prismjs": "^1.21.0", 111 + "prom-client": "^13.1.0", 112 + "prometheus-api-metrics": "^3.2.0", 113 "randomcolor": "^0.6.0", 114 "raphael": "^2.3.0", 115 "readline-sync": "^1.4.7", 116 "reveal.js": "^3.9.2", 117 "rimraf": "^3.0.2", 118 "scrypt-kdf": "^2.0.1", 119 "select2": "^3.5.2-browserify", 120 "sequelize": "^5.21.1", 121 "shortid": "2.2.16", 122 "socket.io": "^2.1.1", 123 "socket.io-client": "^2.1.1", 124 + "spin.js": "^4.0.0", 125 + "sqlite3": "^5.0.0", 126 "store": "^2.0.12", 127 "string": "^3.3.3", 128 "tedious": "^6.6.0", 129 "toobusy-js": "^0.5.1", 130 + "turndown": "^7.0.0", 131 + "umzug": "^2.3.0", 132 + "uuid": "^8.0.0", 133 + "validator": "^13.0.0", 134 "velocity-animate": "^1.4.0", 135 + "visibilityjs": "^2.0.0", 136 "viz.js": "^1.7.0", 137 "winston": "^3.1.0", 138 + "ws": "^7.4.4", 139 "wurl": "^2.5.3", 140 "xss": "^1.0.3" 141 }, ··· 145 "**/request": "^2.88.0" 146 }, 147 "engines": { 148 + "node": ">=12" 149 }, 150 "bugs": "https://github.com/hedgedoc/hedgedoc/issues", 151 "keywords": [ ··· 178 "babel-preset-env": "1.7.0", 179 "babel-runtime": "6.26.0", 180 "copy-webpack-plugin": "6.4.1", 181 + "css-loader": "5.2.4", 182 + "eslint": "7.25.0", 183 + "eslint-config-standard": "16.0.2", 184 "eslint-plugin-import": "2.22.1", 185 + "eslint-plugin-node": "11.1.0", 186 + "eslint-plugin-promise": "5.1.0", 187 "eslint-plugin-standard": "4.1.0", 188 + "expose-loader": "1.0.3", 189 + "file-loader": "6.2.0", 190 + "html-webpack-plugin": "4.5.2", 191 + "imports-loader": "1.2.0", 192 "jsonlint": "1.6.3", 193 + "less": "4.1.1", 194 + "less-loader": "7.3.0", 195 + "mini-css-extract-plugin": "1.6.0", 196 + "mocha": "8.3.2", 197 "mock-require": "3.0.3", 198 "optimize-css-assets-webpack-plugin": "5.0.4", 199 + "remark-cli": "9.0.0", 200 + "remark-preset-lint-markdown-style-guide": "4.0.0", 201 "script-loader": "0.7.2", 202 "string-loader": "0.0.1", 203 + "url-loader": "4.1.1", 204 + "webpack": "4.46.0", 205 + "webpack-cli": "4.6.0", 206 + "webpack-merge": "5.7.3" 207 }, 208 "optionalDependencies": { 209 "bufferutil": "^4.0.0",
+1976 -2306
pkgs/servers/web-apps/hedgedoc/yarn.lock
··· 2 # yarn lockfile v1 3 4 5 "@azure/ms-rest-azure-env@^1.1.2": 6 version "1.1.2" 7 resolved "https://registry.yarnpkg.com/@azure/ms-rest-azure-env/-/ms-rest-azure-env-1.1.2.tgz#8505873afd4a1227ec040894a64fdd736b4a101f" 8 integrity sha512-l7z0DPCi2Hp88w12JhDTtx5d0Y3+vhfE7JKJb9O7sEz71Cwp053N8piTtTnnk/tUor9oZHgEKi/p3tQQmLPjvA== 9 10 "@azure/ms-rest-js@^1.8.7": 11 - version "1.9.1" 12 - resolved "https://registry.yarnpkg.com/@azure/ms-rest-js/-/ms-rest-js-1.9.1.tgz#93aef111b00bfdcc470a6bcb4520a13b36f21788" 13 - integrity sha512-F1crHKhmsvFLM9fsnDyCGFd2E2KR9GEZm5oBVV5D5k2EBQ7u7idtSJlSF6RDLDIrGWtc4NnFdYwsoiW8NLlBQg== 14 dependencies: 15 - "@types/tunnel" "0.0.0" 16 axios "^0.21.1" 17 form-data "^2.3.2" 18 tough-cookie "^2.4.3" ··· 30 "@azure/ms-rest-js" "^1.8.7" 31 adal-node "^0.1.28" 32 33 - "@babel/code-frame@^7.0.0": 34 version "7.12.11" 35 resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 36 integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 37 dependencies: 38 "@babel/highlight" "^7.10.4" 39 40 - "@babel/helper-validator-identifier@^7.10.4": 41 - version "7.12.11" 42 - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 43 - integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 44 45 - "@babel/highlight@^7.10.4": 46 - version "7.10.4" 47 - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 48 - integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 49 dependencies: 50 - "@babel/helper-validator-identifier" "^7.10.4" 51 chalk "^2.0.0" 52 js-tokens "^4.0.0" 53 ··· 65 enabled "2.0.x" 66 kuler "^2.0.0" 67 68 "@nodelib/fs.scandir@2.1.4": 69 version "2.1.4" 70 resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" ··· 87 fastq "^1.6.0" 88 89 "@npmcli/move-file@^1.0.1": 90 - version "1.1.0" 91 - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.0.tgz#4ef8a53d727b9e43facf35404caf55ebf92cfec8" 92 - integrity sha512-Iv2iq0JuyYjKeFkSR4LPaCdDZwlGK9X2cP/01nJcp3yMJ1FjNd9vpiEYvLUgzBxKPg2SFmaOhizoQsPc0LWeOQ== 93 dependencies: 94 mkdirp "^1.0.4" 95 - rimraf "^2.7.1" 96 97 "@passport-next/passport-openid@^1.0.0": 98 version "1.0.0" ··· 112 resolved "https://registry.yarnpkg.com/@tokenizer/token/-/token-0.1.1.tgz#f0d92c12f87079ddfd1b29f614758b9696bc29e3" 113 integrity sha512-XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w== 114 115 "@types/anymatch@*": 116 version "1.3.1" 117 resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" ··· 132 dependencies: 133 "@types/node" "*" 134 135 "@types/debug@^4.1.5": 136 version "4.1.5" 137 resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" 138 integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== 139 140 - "@types/express-serve-static-core@^4.17.18": 141 - version "4.17.18" 142 - resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz#8371e260f40e0e1ca0c116a9afcd9426fa094c40" 143 - integrity sha512-m4JTwx5RUBNZvky/JJ8swEJPKFd8si08pPF2PfizYjGZOKr/svUWPcoUmLow6MmPzhasphB7gSTINY67xn3JNA== 144 dependencies: 145 "@types/node" "*" 146 "@types/qs" "*" 147 "@types/range-parser" "*" 148 149 - "@types/express@*": 150 version "4.17.11" 151 resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.11.tgz#debe3caa6f8e5fcda96b47bd54e2f40c4ee59545" 152 integrity sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg== ··· 166 resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" 167 integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA== 168 169 - "@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": 170 - version "7.0.6" 171 - resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" 172 - integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== 173 174 "@types/json5@^0.0.29": 175 version "0.0.29" 176 resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 177 integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 178 179 - "@types/ldapjs@^1.0.0": 180 - version "1.0.9" 181 - resolved "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.9.tgz#1224192d14cc5ab5218fcea72ebb04489c52cb95" 182 - integrity sha512-3PvY7Drp1zoLbcGlothCAkoc5o6Jp9KvUPwHadlHyKp3yPvyeIh7w2zQc9UXMzgDRkoeGXUEODtbEs5XCh9ZyA== 183 dependencies: 184 "@types/node" "*" 185 186 - "@types/mime@*": 187 - version "2.0.3" 188 - resolved "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz#c893b73721db73699943bfc3653b1deb7faa4a3a" 189 - integrity sha512-Jus9s4CDbqwocc5pOAnh8ShfrnMcPHuJYzVcSUU7lrh8Ni5HuIqX3oilL86p3dlTrk0LzHRCgA/GQ7uNCw6l2Q== 190 191 - "@types/node@*", "@types/node@^14.14.7": 192 - version "14.14.21" 193 - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.21.tgz#d934aacc22424fe9622ebf6857370c052eae464e" 194 - integrity sha512-cHYfKsnwllYhjOzuC5q1VpguABBeecUp24yFluHpn/BQaVxB1CuQ1FSRZCzrPxrkIfWISXV2LbeoBthLWg0+0A== 195 196 "@types/node@^12.12.17": 197 - version "12.19.14" 198 - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.19.14.tgz#59e5029a3c2aea34f68b717955381692fd47cafb" 199 - integrity sha512-2U9uLN46+7dv9PiS8VQJcHhuoOjiDPZOLAt0WuA1EanEknIMae+2QbMhayF7cgGqjvRVIfNpt+6jLPczJZFiRw== 200 201 "@types/node@^8.0.47": 202 version "8.10.66" 203 resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.66.tgz#dd035d409df322acc83dff62a602f12a5783bbb3" 204 integrity sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw== 205 206 - "@types/passport@^1.0.0": 207 - version "1.0.5" 208 - resolved "https://registry.yarnpkg.com/@types/passport/-/passport-1.0.5.tgz#1ff54ec3e30fa6480c5e8b8de949c6dc40ddfa2a" 209 - integrity sha512-wNL4kT/5rnZgyGkqX7V2qH/R/te+bklv+nXcvHzyX99vNggx9DGN+F8CEOW3P/gRi7Cjm991uidRgTHsYkSuMg== 210 - dependencies: 211 - "@types/express" "*" 212 - 213 "@types/q@^1.5.1": 214 version "1.5.4" 215 resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 216 integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 217 218 "@types/qs@*": 219 - version "6.9.5" 220 - resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz#434711bdd49eb5ee69d90c1d67c354a9a8ecb18b" 221 - integrity sha512-/JHkVHtx/REVG0VVToGRGH2+23hsYLHdyG+GrvoUGlGAd0ErauXDyvHtRI/7H7mzLm+tBCKA7pfcpkQ1lf58iQ== 222 223 "@types/range-parser@*": 224 version "1.2.3" ··· 234 safe-buffer "*" 235 236 "@types/serve-static@*": 237 - version "1.13.8" 238 - resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.8.tgz#851129d434433c7082148574ffec263d58309c46" 239 - integrity sha512-MoJhSQreaVoL+/hurAZzIm8wafFR6ajiTM1m4A0kv6AGeVBl4r4pOV8bGFrjjq1sGxDTnCoF8i22o0/aE5XCyA== 240 dependencies: 241 - "@types/mime" "*" 242 "@types/node" "*" 243 244 "@types/source-list-map@*": ··· 246 resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" 247 integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== 248 249 - "@types/tapable@*", "@types/tapable@^1.0.5": 250 - version "1.0.6" 251 - resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz#a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74" 252 - integrity sha512-W+bw9ds02rAQaMvaLYxAbJ6cvguW/iJXNT6lTssS1ps6QdrMKttqEAMEG/b5CR8TZl3/L7/lH0ZV5nNR1LXikA== 253 - 254 - "@types/tunnel@0.0.0": 255 - version "0.0.0" 256 - resolved "https://registry.yarnpkg.com/@types/tunnel/-/tunnel-0.0.0.tgz#c2a42943ee63c90652a5557b8c4e56cda77f944e" 257 - integrity sha512-FGDp0iBRiBdPjOgjJmn1NH0KDLN+Z8fRmo+9J7XGBhubq1DPrGrbmG4UTlGzrpbCpesMqD0sWkzi27EYkOMHyg== 258 - dependencies: 259 - "@types/node" "*" 260 261 "@types/uglify-js@*": 262 - version "3.11.1" 263 - resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.11.1.tgz#97ff30e61a0aa6876c270b5f538737e2d6ab8ceb" 264 - integrity sha512-7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q== 265 dependencies: 266 source-map "^0.6.1" 267 268 - "@types/unist@^2.0.0", "@types/unist@^2.0.2": 269 version "2.0.3" 270 resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" 271 integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== ··· 280 source-map "^0.7.3" 281 282 "@types/webpack@^4.41.8": 283 - version "4.41.26" 284 - resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.26.tgz#27a30d7d531e16489f9c7607c747be6bc1a459ef" 285 - integrity sha512-7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA== 286 dependencies: 287 "@types/anymatch" "*" 288 "@types/node" "*" 289 - "@types/tapable" "*" 290 "@types/uglify-js" "*" 291 "@types/webpack-sources" "*" 292 source-map "^0.6.0" 293 294 "@webassemblyjs/ast@1.9.0": 295 version "1.9.0" ··· 436 "@webassemblyjs/wast-parser" "1.9.0" 437 "@xtuc/long" "4.2.2" 438 439 "@xtuc/ieee754@^1.2.0": 440 version "1.2.0" 441 resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" ··· 448 449 "Idle.Js@git+https://github.com/shawnmclean/Idle.js": 450 version "0.0.1" 451 resolved "git+https://github.com/shawnmclean/Idle.js#db9beb3483a460ad638ec947867720f0ed066a62" 452 453 JSV@^4.0.x: ··· 455 resolved "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz#d077f6825571f82132f9dffaed587b4029feff57" 456 integrity sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c= 457 458 - abab@^2.0.0: 459 - version "2.0.5" 460 - resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 461 - integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 462 - 463 abbrev@1: 464 version "1.1.1" 465 resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 466 integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 467 468 accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: 469 version "1.3.7" 470 resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" ··· 473 mime-types "~2.1.24" 474 negotiator "0.6.2" 475 476 - acorn-globals@^4.1.0: 477 - version "4.3.4" 478 - resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz#9fa1926addc11c97308c4e66d7add0d40c3272e7" 479 - integrity sha512-clfQEh21R+D0leSbUdWf3OcfqyaCSAQ8Ryq00bofSekfr9W8u1jyYZo6ir0xu9Gtcf7BjcHJpnbZH7JOCpP60A== 480 - dependencies: 481 - acorn "^6.0.1" 482 - acorn-walk "^6.0.1" 483 - 484 - acorn-jsx@^5.0.0: 485 version "5.3.1" 486 resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 487 integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 488 489 - acorn-walk@^6.0.1: 490 - version "6.2.0" 491 - resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c" 492 - integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA== 493 - 494 - acorn@^5.5.3: 495 - version "5.7.4" 496 - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e" 497 - integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg== 498 - 499 - acorn@^6.0.1, acorn@^6.0.7, acorn@^6.4.1: 500 version "6.4.2" 501 resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" 502 integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== 503 504 adal-node@^0.1.28: 505 version "0.1.28" ··· 539 resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" 540 integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== 541 542 - ajv@^6.1.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5, ajv@^6.9.1: 543 version "6.12.6" 544 resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 545 integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== ··· 549 json-schema-traverse "^0.4.1" 550 uri-js "^4.2.2" 551 552 alphanum-sort@^1.0.0: 553 version "1.0.2" 554 resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 555 integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 556 557 - ansi-escapes@^3.2.0: 558 - version "3.2.0" 559 - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" 560 - integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== 561 562 - ansi-regex@^2.0.0, ansi-regex@^2.1.1: 563 version "2.1.1" 564 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 565 integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ··· 568 version "3.0.0" 569 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 570 integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 571 - 572 - ansi-regex@^4.1.0: 573 - version "4.1.0" 574 - resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997" 575 - integrity sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg== 576 577 ansi-regex@^5.0.0: 578 version "5.0.0" ··· 584 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 585 integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 586 587 - ansi-styles@^3.2.0, ansi-styles@^3.2.1: 588 version "3.2.1" 589 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 590 integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 591 dependencies: 592 color-convert "^1.9.0" 593 594 - ansi-styles@^4.1.0: 595 version "4.3.0" 596 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 597 integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== ··· 625 normalize-path "^2.1.1" 626 627 anymatch@~3.1.1: 628 - version "3.1.1" 629 - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 630 - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 631 dependencies: 632 normalize-path "^3.0.0" 633 picomatch "^2.0.4" ··· 654 readable-stream "^2.0.0" 655 656 archiver@^5.0.2: 657 - version "5.2.0" 658 - resolved "https://registry.yarnpkg.com/archiver/-/archiver-5.2.0.tgz#25aa1b3d9febf7aec5b0f296e77e69960c26db94" 659 - integrity sha512-QEAKlgQuAtUxKeZB9w5/ggKXh21bZS+dzzuQ0RPBC20qtDCbTyzqmisoeJP46MP39fg4B4IcyvR+yeyEBdblsQ== 660 dependencies: 661 archiver-utils "^2.1.0" 662 async "^3.2.0" 663 buffer-crc32 "^0.2.1" 664 readable-stream "^3.6.0" 665 readdir-glob "^1.0.0" 666 - tar-stream "^2.1.4" 667 - zip-stream "^4.0.4" 668 669 are-we-there-yet@~1.1.2: 670 version "1.1.5" ··· 680 integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 681 dependencies: 682 sprintf-js "~1.0.2" 683 684 arr-diff@^2.0.0: 685 version "2.0.0" ··· 703 resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 704 integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 705 706 - array-equal@^1.0.0: 707 version "1.0.0" 708 - resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93" 709 - integrity sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM= 710 711 array-flatten@1.1.1: 712 version "1.1.1" ··· 714 integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 715 716 array-includes@^3.1.1: 717 - version "3.1.2" 718 - resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.2.tgz#a8db03e0b88c8c6aeddc49cb132f9bcab4ebf9c8" 719 - integrity sha512-w2GspexNQpx+PutG3QpT437/BenZBj0M/MZGn5mzv/MofYqo0xmRHzn4lFsoDlWJ+THYsGJmFlW68WlDFx7VRw== 720 dependencies: 721 - call-bind "^1.0.0" 722 define-properties "^1.1.3" 723 - es-abstract "^1.18.0-next.1" 724 - get-intrinsic "^1.0.1" 725 is-string "^1.0.5" 726 727 array-union@^2.1.0: ··· 753 resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" 754 integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== 755 756 - asap@^2.0.0: 757 - version "2.0.6" 758 - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" 759 - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= 760 - 761 asn1.js@^5.2.0: 762 version "5.4.1" 763 resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" ··· 768 minimalistic-assert "^1.0.0" 769 safer-buffer "^2.1.0" 770 771 - asn1@0.2.3: 772 - version "0.2.3" 773 - resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz#dac8787713c9966849fc8180777ebe9c1ddf3b86" 774 - integrity sha1-2sh4dxPJlmhJ/IGAd36+nB3fO4Y= 775 - 776 - asn1@~0.2.3: 777 version "0.2.4" 778 resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 779 integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 780 dependencies: 781 safer-buffer "~2.1.0" 782 - 783 - assert-plus@0.1.5: 784 - version "0.1.5" 785 - resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz#ee74009413002d84cec7219c6ac811812e723160" 786 - integrity sha1-7nQAlBMALYTOxyGcasgRgS5yMWA= 787 788 assert-plus@1.0.0, assert-plus@^1.0.0: 789 version "1.0.0" ··· 803 resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 804 integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 805 806 - astral-regex@^1.0.0: 807 - version "1.0.0" 808 - resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" 809 - integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== 810 811 async-each@^1.0.0, async-each@^1.0.1: 812 version "1.0.3" 813 resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 814 integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 815 816 - async-limiter@~1.0.0: 817 - version "1.0.1" 818 - resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd" 819 - integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ== 820 821 - async@>=0.6.0, async@^3.1.0, async@^3.2.0: 822 version "3.2.0" 823 resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" 824 integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== 825 826 - async@^1.4.0, async@^1.5.2: 827 version "1.5.2" 828 resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 829 integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= 830 831 - async@^2.1.4: 832 - version "2.6.3" 833 - resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff" 834 - integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg== 835 - dependencies: 836 - lodash "^4.17.14" 837 - 838 asynckit@^0.4.0: 839 version "0.4.0" 840 resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" ··· 845 resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 846 integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 847 848 - aws-sdk@^2.521.0: 849 - version "2.828.0" 850 - resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.828.0.tgz#6aa599c3582f219568f41fb287eb65753e4a9234" 851 - integrity sha512-JoDujGdncSIF9ka+XFZjop/7G+fNGucwPwYj7OHYMmFIOV5p7YmqomdbVmH/vIzd988YZz8oLOinWc4jM6vvhg== 852 dependencies: 853 buffer "4.9.2" 854 events "1.1.1" ··· 1470 integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== 1471 1472 balanced-match@^1.0.0: 1473 - version "1.0.0" 1474 - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1475 - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1476 1477 base64-arraybuffer@0.1.4: 1478 version "0.1.4" ··· 1548 dependencies: 1549 file-uri-to-path "1.0.0" 1550 1551 bl@^3.0.0: 1552 version "3.0.1" 1553 resolved "https://registry.yarnpkg.com/bl/-/bl-3.0.1.tgz#1cbb439299609e419b5a74d7fce2f8b37d8e5c6f" ··· 1556 readable-stream "^3.0.1" 1557 1558 bl@^4.0.3: 1559 - version "4.0.3" 1560 - resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489" 1561 - integrity sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg== 1562 dependencies: 1563 buffer "^5.5.0" 1564 inherits "^2.0.4" ··· 1569 resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" 1570 integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== 1571 1572 - block-stream2@^1.0.0: 1573 - version "1.1.0" 1574 - resolved "https://registry.yarnpkg.com/block-stream2/-/block-stream2-1.1.0.tgz#c738e3a91ba977ebb5e1fef431e13ca11d8639e2" 1575 - integrity sha1-xzjjqRupd+u14f70MeE8oR2GOeI= 1576 dependencies: 1577 - defined "^1.0.0" 1578 - inherits "^2.0.1" 1579 - readable-stream "^2.0.4" 1580 1581 - bluebird@^3.5.0, bluebird@^3.5.3, bluebird@^3.5.5, bluebird@^3.7.2: 1582 version "3.7.2" 1583 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 1584 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 1585 1586 - bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.4.0: 1587 - version "4.11.9" 1588 - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz#26d556829458f9d1e81fc48952493d0ba3507828" 1589 - integrity sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw== 1590 1591 bn.js@^5.0.0, bn.js@^5.1.1: 1592 - version "5.1.3" 1593 - resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz#beca005408f642ebebea80b042b4d18d2ac0ee6b" 1594 - integrity sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ== 1595 1596 body-parser@1.19.0, body-parser@^1.15.2: 1597 version "1.19.0" ··· 1623 version "3.4.1" 1624 resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz#c3a347d419e289ad11f4033e3c4132b87c081d72" 1625 integrity sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA== 1626 - 1627 - bowser@2.9.0: 1628 - version "2.9.0" 1629 - resolved "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz#3bed854233b419b9a7422d9ee3e85504373821c9" 1630 - integrity sha512-2ld76tuLBNFekRgmJfT2+3j5MIrP6bFict8WAIT3beq+srz1gcKNAdNKMqHqauQt63NmAa88HfP1/Ypa9Er3HA== 1631 1632 brace-expansion@^1.1.7: 1633 version "1.1.11" ··· 1669 dependencies: 1670 fill-range "^7.0.1" 1671 1672 - brorand@^1.0.1: 1673 version "1.1.0" 1674 resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1675 integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 1676 1677 - browser-process-hrtime@^1.0.0: 1678 - version "1.0.0" 1679 - resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 1680 - integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 1681 - 1682 browser-stdout@1.3.1: 1683 version "1.3.1" 1684 resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" ··· 1759 electron-to-chromium "^1.3.47" 1760 1761 browserslist@^4.0.0: 1762 - version "4.16.1" 1763 - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz#bf757a2da376b3447b800a16f0f1c96358138766" 1764 - integrity sha512-UXhDrwqsNcpTYJBTZsbGATDxZbiVDsx6UjpmRUmtnP10pr8wAYr5LgFoEFw9ixriQH2mv/NX2SfGzE/o8GndLA== 1765 dependencies: 1766 - caniuse-lite "^1.0.30001173" 1767 - colorette "^1.2.1" 1768 - electron-to-chromium "^1.3.634" 1769 escalade "^3.1.1" 1770 - node-releases "^1.1.69" 1771 1772 buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: 1773 version "0.2.13" ··· 1823 resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1824 integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 1825 1826 - bunyan@^1.8.3: 1827 - version "1.8.15" 1828 - resolved "https://registry.yarnpkg.com/bunyan/-/bunyan-1.8.15.tgz#8ce34ca908a17d0776576ca1b2f6cbd916e93b46" 1829 - integrity sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig== 1830 - optionalDependencies: 1831 - dtrace-provider "~0.8" 1832 - moment "^2.19.3" 1833 - mv "~2" 1834 - safe-json-stringify "~1" 1835 - 1836 bytes@3.0.0: 1837 version "3.0.0" 1838 resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" ··· 1865 y18n "^4.0.0" 1866 1867 cacache@^15.0.5: 1868 - version "15.0.5" 1869 - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" 1870 - integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== 1871 dependencies: 1872 "@npmcli/move-file" "^1.0.1" 1873 chownr "^2.0.0" ··· 1883 p-map "^4.0.0" 1884 promise-inflight "^1.0.1" 1885 rimraf "^3.0.2" 1886 - ssri "^8.0.0" 1887 tar "^6.0.2" 1888 unique-filename "^1.1.1" 1889 ··· 1902 union-value "^1.0.0" 1903 unset-value "^1.0.0" 1904 1905 - call-bind@^1.0.0: 1906 version "1.0.2" 1907 resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 1908 integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== ··· 1950 pascal-case "^3.1.2" 1951 tslib "^2.0.3" 1952 1953 - camelcase@^5.0.0, camelcase@^5.3.1: 1954 version "5.3.1" 1955 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1956 integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1957 1958 - camelize@1.0.0: 1959 - version "1.0.0" 1960 - resolved "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz#164a5483e630fa4321e5af07020e531831b2609b" 1961 - integrity sha1-FkpUg+Yw+kMh5a8HAg5TGDGyYJs= 1962 1963 caniuse-api@^3.0.0: 1964 version "3.0.0" ··· 1970 lodash.memoize "^4.1.2" 1971 lodash.uniq "^4.5.0" 1972 1973 - caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30001173: 1974 - version "1.0.30001177" 1975 - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001177.tgz#2c3b384933aafda03e29ccca7bb3d8c3389e1ece" 1976 - integrity sha512-6Ld7t3ifCL02jTj3MxPMM5wAYjbo4h/TAQGFTgv1inihP1tWnWp8mxxT4ut4JBEHLbpFXEXJJQ119JCJTBkYDw== 1977 1978 caseless@~0.12.0: 1979 version "0.12.0" 1980 resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 1981 integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 1982 1983 - ccount@^1.0.0: 1984 - version "1.1.0" 1985 - resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz#246687debb6014735131be8abab2d93898f8d043" 1986 - integrity sha512-vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg== 1987 - 1988 chalk@^1.1.3: 1989 version "1.1.3" 1990 resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" ··· 1996 strip-ansi "^3.0.0" 1997 supports-color "^2.0.0" 1998 1999 - chalk@^2.0.0, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: 2000 version "2.4.2" 2001 resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 2002 integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== ··· 2013 ansi-styles "^4.1.0" 2014 supports-color "^7.1.0" 2015 2016 chalk@~0.4.0: 2017 version "0.4.0" 2018 resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" ··· 2027 resolved "https://registry.yarnpkg.com/chance/-/chance-1.1.7.tgz#e99dde5ac16681af787b5ba94c8277c090d6cfe8" 2028 integrity sha512-bua/2cZEfzS6qPm0vi3JEvGNbriDLcMj9lKxCQOjUcCJRcyjA7umP0zZm6bKWWlBN04vA0L99QGH/CZQawr0eg== 2029 2030 - character-entities-html4@^1.0.0: 2031 - version "1.1.4" 2032 - resolved "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz#0e64b0a3753ddbf1fdc044c5fd01d0199a02e125" 2033 - integrity sha512-HRcDxZuZqMx3/a+qrzxdBKBPUpxWEq9xw2OPZ3a/174ihfrQKVsFhqtthBInFy1zZ9GgZyFXOatNujm8M+El3g== 2034 - 2035 character-entities-legacy@^1.0.0: 2036 version "1.1.4" 2037 resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" ··· 2046 version "1.1.4" 2047 resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" 2048 integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== 2049 - 2050 - chardet@^0.7.0: 2051 - version "0.7.0" 2052 - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" 2053 - integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== 2054 2055 cheerio@^0.22.0: 2056 version "0.22.0" ··· 2074 lodash.reject "^4.4.0" 2075 lodash.some "^4.4.0" 2076 2077 chokidar@^1.6.1: 2078 version "1.7.0" 2079 resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" ··· 2109 optionalDependencies: 2110 fsevents "^1.2.7" 2111 2112 - chokidar@^3.0.0, chokidar@^3.4.1: 2113 - version "3.5.0" 2114 - resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.0.tgz#458a4816a415e9d3b3caa4faec2b96a6935a9e65" 2115 - integrity sha512-JgQM9JS92ZbFR4P90EvmzNpSGhpPBGBSj10PILeDyYFwp4h2/D9OM03wsJ4zW1fEp4ka2DGrnUeD7FuvQ2aZ2Q== 2116 - dependencies: 2117 - anymatch "~3.1.1" 2118 - braces "~3.0.2" 2119 - glob-parent "~5.1.0" 2120 - is-binary-path "~2.1.0" 2121 - is-glob "~4.0.1" 2122 - normalize-path "~3.0.0" 2123 - readdirp "~3.5.0" 2124 - optionalDependencies: 2125 - fsevents "~2.3.1" 2126 - 2127 chownr@^1.1.1: 2128 version "1.1.4" 2129 resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" ··· 2135 integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 2136 2137 chrome-trace-event@^1.0.2: 2138 - version "1.0.2" 2139 - resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" 2140 - integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ== 2141 - dependencies: 2142 - tslib "^1.9.0" 2143 2144 cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 2145 version "1.0.4" ··· 2171 resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 2172 integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 2173 2174 - cli-color@^1.4.0: 2175 - version "1.4.0" 2176 - resolved "https://registry.yarnpkg.com/cli-color/-/cli-color-1.4.0.tgz#7d10738f48526824f8fe7da51857cb0f572fe01f" 2177 - integrity sha512-xu6RvQqqrWEo6MPR1eixqGPywhYBHRs653F9jfXB2Hx4jdM/3WxiNE1vppRmxtMIfl16SFYTpYlrnqH/HsK/2w== 2178 - dependencies: 2179 - ansi-regex "^2.1.1" 2180 - d "1" 2181 - es5-ext "^0.10.46" 2182 - es6-iterator "^2.0.3" 2183 - memoizee "^0.4.14" 2184 - timers-ext "^0.1.5" 2185 - 2186 - cli-cursor@^2.1.0: 2187 - version "2.1.0" 2188 - resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" 2189 - integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU= 2190 - dependencies: 2191 - restore-cursor "^2.0.0" 2192 - 2193 - cli-width@^2.0.0: 2194 - version "2.2.1" 2195 - resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48" 2196 - integrity sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw== 2197 - 2198 clipboard@^2.0.0: 2199 - version "2.0.6" 2200 - resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376" 2201 - integrity sha512-g5zbiixBRk/wyKakSwCKd7vQXDjFnAMGHoEyBogG/bw9kTD9GvdAvaoRR1ALcEzt3pVKxZR0pViekPMIS0QyGg== 2202 dependencies: 2203 good-listener "^1.2.2" 2204 select "^1.1.2" 2205 tiny-emitter "^2.0.0" 2206 2207 - cliui@^5.0.0: 2208 - version "5.0.0" 2209 - resolved "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz#deefcfdb2e800784aa34f46fa08e06851c7bbbc5" 2210 - integrity sha512-PYeGSEmmHM6zvoef2w8TPzlrnNpXIjTipYK780YswmIP9vjxmd6Y2a3CB2Ks6/AU8NHjZugXvo8w3oWM2qnwXA== 2211 dependencies: 2212 - string-width "^3.1.0" 2213 - strip-ansi "^5.2.0" 2214 - wrap-ansi "^5.1.0" 2215 2216 - clone@^2.1.1: 2217 - version "2.1.2" 2218 - resolved "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz#1b7f4b9f591f1e8f83670401600345a02887435f" 2219 - integrity sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18= 2220 2221 cls-bluebird@^2.1.0: 2222 version "2.1.0" ··· 2247 2248 "codemirror@git+https://github.com/hedgedoc/CodeMirror.git": 2249 version "5.58.2" 2250 resolved "git+https://github.com/hedgedoc/CodeMirror.git#f780b569b3717cdff4c8507538cc63101bfa02e1" 2251 2252 - collapse-white-space@^1.0.2: 2253 - version "1.0.6" 2254 - resolved "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz#e63629c0016665792060dbbeb79c42239d2c5287" 2255 - integrity sha512-jEovNnrhMuqyCcjfEJA56v0Xq8SkIoPKDyaHahwo3POf4qcSXqMYuwNcOTzp74vTsR9Tn08z4MxWqAhcekogkQ== 2256 - 2257 collection-visit@^1.0.0: 2258 version "1.0.0" 2259 resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" ··· 2287 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 2288 2289 color-string@^1.5.2, color-string@^1.5.4: 2290 - version "1.5.4" 2291 - resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" 2292 - integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== 2293 dependencies: 2294 color-name "^1.0.0" 2295 simple-swizzle "^0.2.2" ··· 2310 color-convert "^1.9.1" 2311 color-string "^1.5.4" 2312 2313 - colorette@^1.2.1: 2314 - version "1.2.1" 2315 - resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" 2316 - integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== 2317 2318 colors@^1.2.1: 2319 version "1.4.0" ··· 2335 dependencies: 2336 delayed-stream "~1.0.0" 2337 2338 - commander@2, commander@^2.11.0, commander@^2.13.0, commander@^2.19.0, commander@^2.20.0, commander@^2.20.3: 2339 version "2.20.3" 2340 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 2341 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 2342 2343 - commander@2.15.1: 2344 - version "2.15.1" 2345 - resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f" 2346 - integrity sha512-VlfT9F3V0v+jr4yxPc5gg9s62/fIVWsd2Bk2iD435um1NlGMYdVCq+MjcXnhYq2icNOizHr1kK+5TI6H0Hy0ag== 2347 - 2348 commander@^4.1.1: 2349 version "4.1.1" 2350 resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 2351 integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 2352 2353 commondir@^1.0.1: 2354 version "1.0.1" ··· 2375 resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 2376 integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= 2377 2378 - compress-commons@^4.0.2: 2379 - version "4.0.2" 2380 - resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.0.2.tgz#d6896be386e52f37610cef9e6fa5defc58c31bd7" 2381 - integrity sha512-qhd32a9xgzmpfoga1VQEiLEwdKZ6Plnpx5UCgIsf89FSolyJ7WnifY4Gtjgv5WR6hWAyRaHxC5MiEhU/38U70A== 2382 dependencies: 2383 buffer-crc32 "^0.2.13" 2384 crc32-stream "^4.0.1" ··· 2410 resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 2411 integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 2412 2413 - concat-stream@^1.4.8, concat-stream@^1.5.0: 2414 version "1.6.2" 2415 resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 2416 integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== ··· 2430 readable-stream "^3.0.2" 2431 typedarray "^0.0.6" 2432 2433 - config-chain@^1.1.12: 2434 - version "1.1.12" 2435 - resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa" 2436 - integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA== 2437 - dependencies: 2438 - ini "^1.3.4" 2439 - proto-list "~1.2.1" 2440 - 2441 connect-flash@^0.1.1: 2442 version "0.1.1" 2443 resolved "https://registry.yarnpkg.com/connect-flash/-/connect-flash-0.1.1.tgz#d8630f26d95a7f851f9956b1e8cc6732f3b6aa30" 2444 integrity sha1-2GMPJtlaf4UfmVax6MxnMvO2qjA= 2445 2446 - connect-session-sequelize@^6.0.0: 2447 - version "6.1.1" 2448 - resolved "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-6.1.1.tgz#0155d01fbffc67352df795aa53b7ab397ab95094" 2449 - integrity sha512-BwD1FYgds9T+5ZxnvcCvE/0B0clj3b3WwfGLEhE3GiYUbl3fhQzlLjUGBql9Ce/X9isOQWMKGy1br4TenIG9Cg== 2450 dependencies: 2451 - debug "^3.1.0" 2452 - deep-equal "^1.0.1" 2453 2454 console-browserify@^1.1.0: 2455 version "1.2.0" ··· 2478 dependencies: 2479 safe-buffer "5.1.2" 2480 2481 - content-security-policy-builder@2.1.0: 2482 - version "2.1.0" 2483 - resolved "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz#0a2364d769a3d7014eec79ff7699804deb8cfcbb" 2484 - integrity sha512-/MtLWhJVvJNkA9dVLAp6fg9LxD2gfI6R2Fi1hPmfjYXSahJJzcfvoeDOxSyp4NvxMuwWv3WMssE9o31DoULHrQ== 2485 - 2486 content-type@~1.0.4: 2487 version "1.0.4" 2488 resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" ··· 2524 integrity sha1-Cr81atANHFohnYjURRgEbdAmrP4= 2525 2526 copy-anything@^2.0.1: 2527 - version "2.0.1" 2528 - resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.1.tgz#2afbce6da684bdfcbec93752fa762819cb480d9a" 2529 - integrity sha512-lA57e7viQHOdPQcrytv5jFeudZZOXuyk47lZym279FiDQ8jeZomXiGuVf6ffMKkJ+3TIai3J1J3yi6M+/4U35g== 2530 dependencies: 2531 - is-what "^3.7.1" 2532 2533 copy-concurrently@^1.0.0: 2534 version "1.0.5" ··· 2593 printj "~1.1.0" 2594 2595 crc32-stream@^4.0.1: 2596 - version "4.0.1" 2597 - resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-4.0.1.tgz#0f047d74041737f8a55e86837a1b826bd8ab0067" 2598 - integrity sha512-FN5V+weeO/8JaXsamelVYO1PHyeCsuL3HcG4cqsj0ceARcocxalaShCsohZMSAF+db7UYFwBy1rARK/0oFItUw== 2599 dependencies: 2600 crc-32 "^1.2.0" 2601 readable-stream "^3.4.0" ··· 2631 safe-buffer "^5.0.1" 2632 sha.js "^2.4.8" 2633 2634 - cross-spawn@^6.0.5: 2635 - version "6.0.5" 2636 - resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" 2637 - integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== 2638 dependencies: 2639 - nice-try "^1.0.4" 2640 - path-key "^2.0.1" 2641 - semver "^5.5.0" 2642 - shebang-command "^1.2.0" 2643 - which "^1.2.9" 2644 2645 crypto-browserify@^3.11.0: 2646 version "3.12.0" ··· 2677 postcss "^7.0.1" 2678 timsort "^0.3.0" 2679 2680 - css-loader@3.6.0: 2681 - version "3.6.0" 2682 - resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz#2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645" 2683 - integrity sha512-M5lSukoWi1If8dhQAUCvj4H8vUt3vOnwbQBH9DdTm/s4Ym2B/3dPMtYZeJmq7Q3S3Pa+I94DcZ7pc9bP14cWIQ== 2684 dependencies: 2685 - camelcase "^5.3.1" 2686 - cssesc "^3.0.0" 2687 - icss-utils "^4.1.1" 2688 - loader-utils "^1.2.3" 2689 - normalize-path "^3.0.0" 2690 - postcss "^7.0.32" 2691 - postcss-modules-extract-imports "^2.0.0" 2692 - postcss-modules-local-by-default "^3.0.2" 2693 - postcss-modules-scope "^2.2.0" 2694 - postcss-modules-values "^3.0.0" 2695 postcss-value-parser "^4.1.0" 2696 - schema-utils "^2.7.0" 2697 - semver "^6.3.0" 2698 2699 css-select-base-adapter@^0.1.1: 2700 version "0.1.1" ··· 2730 source-map "^0.6.1" 2731 2732 css-tree@^1.1.2: 2733 - version "1.1.2" 2734 - resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.2.tgz#9ae393b5dafd7dae8a622475caec78d3d8fbd7b5" 2735 - integrity sha512-wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ== 2736 dependencies: 2737 mdn-data "2.0.14" 2738 source-map "^0.6.1" ··· 2757 resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" 2758 integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= 2759 2760 - cssnano-preset-default@^4.0.7: 2761 - version "4.0.7" 2762 - resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76" 2763 - integrity sha512-x0YHHx2h6p0fCl1zY9L9roD7rnlltugGu7zXSKQx6k2rYw0Hi3IqxcoAGF7u9Q5w1nt7vK0ulxV8Lo+EvllGsA== 2764 dependencies: 2765 css-declaration-sorter "^4.0.1" 2766 cssnano-util-raw-cache "^4.0.1" ··· 2790 postcss-ordered-values "^4.1.2" 2791 postcss-reduce-initial "^4.0.3" 2792 postcss-reduce-transforms "^4.0.2" 2793 - postcss-svgo "^4.0.2" 2794 postcss-unique-selectors "^4.0.1" 2795 2796 cssnano-util-get-arguments@^4.0.0: ··· 2816 integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== 2817 2818 cssnano@^4.1.10: 2819 - version "4.1.10" 2820 - resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2" 2821 - integrity sha512-5wny+F6H4/8RgNlaqab4ktc3e0/blKutmq8yNlBFXA//nSFFAqAngjNVRzUvCgYROULmZZUoosL/KSoZo5aUaQ== 2822 dependencies: 2823 cosmiconfig "^5.0.0" 2824 - cssnano-preset-default "^4.0.7" 2825 is-resolvable "^1.0.0" 2826 postcss "^7.0.0" 2827 ··· 2832 dependencies: 2833 css-tree "^1.1.2" 2834 2835 - cssom@0.3.x, "cssom@>= 0.3.2 < 0.4.0": 2836 version "0.3.8" 2837 resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 2838 integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== ··· 2841 version "0.2.5" 2842 resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz#2682709b5902e7212df529116ff788cd5b254894" 2843 integrity sha1-JoJwm1kC5yEt9SkRb/eIzVslSJQ= 2844 - 2845 - cssstyle@^1.0.0: 2846 - version "1.4.0" 2847 - resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1" 2848 - integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA== 2849 - dependencies: 2850 - cssom "0.3.x" 2851 2852 cssstyle@~0.2.3: 2853 version "0.2.37" ··· 3109 d3-voronoi "1" 3110 d3-zoom "1" 3111 3112 - d@1, d@^1.0.1: 3113 - version "1.0.1" 3114 - resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a" 3115 - integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA== 3116 - dependencies: 3117 - es5-ext "^0.10.50" 3118 - type "^1.0.1" 3119 - 3120 dagre-d3@^0.6.4: 3121 version "0.6.4" 3122 resolved "https://registry.yarnpkg.com/dagre-d3/-/dagre-d3-0.6.4.tgz#0728d5ce7f177ca2337df141ceb60fbe6eeb7b29" ··· 3135 graphlib "^2.1.8" 3136 lodash "^4.17.15" 3137 3138 - dashdash@^1.12.0, dashdash@^1.14.0: 3139 version "1.14.1" 3140 resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 3141 integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 3142 dependencies: 3143 assert-plus "^1.0.0" 3144 3145 - dasherize@2.0.0: 3146 - version "2.0.0" 3147 - resolved "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz#6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308" 3148 - integrity sha1-bYCcnNDPe7iVLYD8hPoT1H3bEwg= 3149 - 3150 - data-urls@^1.0.0: 3151 - version "1.1.0" 3152 - resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe" 3153 - integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ== 3154 - dependencies: 3155 - abab "^2.0.0" 3156 - whatwg-mimetype "^2.2.0" 3157 - whatwg-url "^7.0.0" 3158 - 3159 date-utils@*: 3160 version "1.2.21" 3161 resolved "https://registry.yarnpkg.com/date-utils/-/date-utils-1.2.21.tgz#61fb16cdc1274b3c9acaaffe9fc69df8720a2b64" ··· 3175 dependencies: 3176 ms "2.0.0" 3177 3178 - debug@^3.1.0, debug@^3.2.6: 3179 - version "3.2.7" 3180 - resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 3181 - integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 3182 - dependencies: 3183 - ms "^2.1.1" 3184 - 3185 - debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1: 3186 version "4.3.1" 3187 resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 3188 integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 3189 dependencies: 3190 ms "2.1.2" 3191 3192 debug@~4.1.0: 3193 version "4.1.1" 3194 resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" ··· 3196 dependencies: 3197 ms "^2.1.1" 3198 3199 - decamelize@^1.2.0: 3200 - version "1.2.0" 3201 - resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 3202 - integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 3203 3204 decode-uri-component@^0.2.0: 3205 version "0.2.0" 3206 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 3207 integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 3208 3209 - deep-equal@^1.0.1: 3210 - version "1.1.1" 3211 - resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz#b5c98c942ceffaf7cb051e24e1434a25a2e6076a" 3212 - integrity sha512-yd9c5AdiqVcR+JjcwUQb9DkhJc8ngNr0MahEBGvDiJw8puWab2yZlh+nkasOnZP+EGTAP6rRp2JzJhJZzvNF8g== 3213 dependencies: 3214 is-arguments "^1.0.4" 3215 - is-date-object "^1.0.1" 3216 - is-regex "^1.0.4" 3217 - object-is "^1.0.1" 3218 object-keys "^1.1.1" 3219 - regexp.prototype.flags "^1.2.0" 3220 3221 deep-extend@^0.6.0: 3222 version "0.6.0" ··· 3228 resolved "https://registry.yarnpkg.com/deep-freeze/-/deep-freeze-0.0.1.tgz#3a0b0005de18672819dfd38cd31f91179c893e84" 3229 integrity sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ= 3230 3231 - deep-is@~0.1.3: 3232 version "0.1.3" 3233 resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 3234 integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= ··· 3262 is-descriptor "^1.0.2" 3263 isobject "^3.0.1" 3264 3265 - defined@^1.0.0: 3266 - version "1.0.0" 3267 - resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 3268 - integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 3269 - 3270 delayed-stream@~1.0.0: 3271 version "1.0.0" 3272 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" ··· 3287 resolved "https://registry.yarnpkg.com/denque/-/denque-1.5.0.tgz#773de0686ff2d8ec2ff92914316a47b73b1c73de" 3288 integrity sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ== 3289 3290 - depd@2.0.0, depd@^2.0.0, depd@~2.0.0: 3291 version "2.0.0" 3292 resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 3293 integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== ··· 3310 resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 3311 integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 3312 3313 - detect-file@^1.0.0: 3314 - version "1.0.0" 3315 - resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" 3316 - integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= 3317 - 3318 detect-indent@^4.0.0: 3319 version "4.0.0" 3320 resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" ··· 3329 3330 "diff-match-patch@git+https://github.com/hackmdio/diff-match-patch.git": 3331 version "1.1.1" 3332 resolved "git+https://github.com/hackmdio/diff-match-patch.git#c2f8fb9d69aa9490b764850aa86ba442c93ccf78" 3333 3334 - diff@3.5.0: 3335 - version "3.5.0" 3336 - resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12" 3337 - integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA== 3338 3339 diffie-hellman@^5.0.0: 3340 version "5.0.3" ··· 3401 integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 3402 3403 domelementtype@^2.0.1: 3404 - version "2.1.0" 3405 - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" 3406 - integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== 3407 - 3408 - domexception@^1.0.1: 3409 - version "1.0.1" 3410 - resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90" 3411 - integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug== 3412 - dependencies: 3413 - webidl-conversions "^4.0.2" 3414 3415 domhandler@^2.3.0: 3416 version "2.4.2" ··· 3418 integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== 3419 dependencies: 3420 domelementtype "1" 3421 3422 domutils@1.5.1: 3423 version "1.5.1" ··· 3435 dom-serializer "0" 3436 domelementtype "1" 3437 3438 - dont-sniff-mimetype@1.1.0: 3439 - version "1.1.0" 3440 - resolved "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz#c7d0427f8bcb095762751252af59d148b0a623b2" 3441 - integrity sha512-ZjI4zqTaxveH2/tTlzS1wFp+7ncxNZaIEWYg3lzZRHkKf5zPT/MnEG6WL0BhHMJUabkh8GeU5NL5j+rEUCb7Ug== 3442 - 3443 dot-case@^3.0.4: 3444 version "3.0.4" 3445 resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" ··· 3460 resolved "https://registry.yarnpkg.com/dottie/-/dottie-2.0.2.tgz#cc91c0726ce3a054ebf11c55fbc92a7f266dd154" 3461 integrity sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg== 3462 3463 - dtrace-provider@~0.8: 3464 - version "0.8.8" 3465 - resolved "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.8.tgz#2996d5490c37e1347be263b423ed7b297fb0d97e" 3466 - integrity sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg== 3467 - dependencies: 3468 - nan "^2.14.0" 3469 - 3470 duplexify@^3.4.2, duplexify@^3.6.0: 3471 version "3.7.1" 3472 resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" ··· 3492 dependencies: 3493 safe-buffer "^5.0.1" 3494 3495 - editorconfig@^0.15.3: 3496 - version "0.15.3" 3497 - resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5" 3498 - integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g== 3499 - dependencies: 3500 - commander "^2.19.0" 3501 - lru-cache "^4.1.5" 3502 - semver "^5.6.0" 3503 - sigmund "^1.0.1" 3504 - 3505 ee-first@1.1.1: 3506 version "1.1.1" 3507 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 3508 integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 3509 3510 - ejs@^2.5.5: 3511 - version "2.7.4" 3512 - resolved "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz#48661287573dcc53e366c7a1ae52c3a120eec9ba" 3513 - integrity sha512-7vmuyh5+kuUyJKePhQfRQBhXV5Ce+RnaeeQArKu1EAMpL3WbgMt5WG6uQZpEVvYSSsxMXRKOewtDk9RaTKXRlA== 3514 3515 - electron-to-chromium@^1.3.47, electron-to-chromium@^1.3.634: 3516 - version "1.3.639" 3517 - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.639.tgz#0a27e3018ae3acf438a14a1dd4e41db4b8ab764e" 3518 - integrity sha512-bwl6/U6xb3d3CNufQU9QeO1L32ueouFwW4bWANSwdXR7LVqyLzWjNbynoKNfuC38QFB5Qn7O0l2KLqBkcXnC3Q== 3519 3520 elliptic@^6.5.3: 3521 - version "6.5.3" 3522 - resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz#cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6" 3523 - integrity sha512-IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw== 3524 dependencies: 3525 - bn.js "^4.4.0" 3526 - brorand "^1.0.1" 3527 hash.js "^1.0.0" 3528 - hmac-drbg "^1.0.0" 3529 - inherits "^2.0.1" 3530 - minimalistic-assert "^1.0.0" 3531 - minimalistic-crypto-utils "^1.0.0" 3532 - 3533 - emoji-regex@^7.0.1: 3534 - version "7.0.3" 3535 - resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" 3536 - integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== 3537 3538 emoji-regex@^8.0.0: 3539 version "8.0.0" ··· 3568 once "^1.4.0" 3569 3570 engine.io-client@~3.5.0: 3571 - version "3.5.0" 3572 - resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.0.tgz#fc1b4d9616288ce4f2daf06dcf612413dec941c7" 3573 - integrity sha512-12wPRfMrugVw/DNyJk34GQ5vIVArEcVMXWugQGGuw2XxUSztFNmJggZmv8IZlLyEdnpO1QB9LkcjeWewO2vxtA== 3574 dependencies: 3575 component-emitter "~1.3.0" 3576 component-inherit "0.0.3" ··· 3607 engine.io-parser "~2.2.0" 3608 ws "~7.4.2" 3609 3610 - enhanced-resolve@^4.1.1, enhanced-resolve@^4.3.0: 3611 version "4.5.0" 3612 resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" 3613 integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== ··· 3616 memory-fs "^0.5.0" 3617 tapable "^1.0.0" 3618 3619 entities@^1.1.1, entities@~1.1.1: 3620 version "1.1.2" 3621 resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 3622 integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== 3623 3624 entities@^2.0.0: 3625 version "2.1.0" 3626 resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" 3627 integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== 3628 3629 - entities@~2.0.0: 3630 - version "2.0.3" 3631 - resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" 3632 - integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== 3633 - 3634 entity-decode@^2.0.2: 3635 version "2.0.2" 3636 resolved "https://registry.yarnpkg.com/entity-decode/-/entity-decode-2.0.2.tgz#e4f807e52c3294246e9347d1f2b02b07fd5f92e7" ··· 3638 dependencies: 3639 he "^1.1.1" 3640 3641 errno@^0.1.1, errno@^0.1.3, errno@~0.1.7: 3642 version "0.1.8" 3643 resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" ··· 3652 dependencies: 3653 is-arrayish "^0.2.1" 3654 3655 - es-abstract@^1.17.0-next.1, es-abstract@^1.17.2: 3656 - version "1.17.7" 3657 - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz#a4de61b2f66989fc7421676c1cb9787573ace54c" 3658 - integrity sha512-VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g== 3659 dependencies: 3660 es-to-primitive "^1.2.1" 3661 function-bind "^1.1.1" 3662 has "^1.0.3" 3663 - has-symbols "^1.0.1" 3664 - is-callable "^1.2.2" 3665 - is-regex "^1.1.1" 3666 - object-inspect "^1.8.0" 3667 object-keys "^1.1.1" 3668 - object.assign "^4.1.1" 3669 - string.prototype.trimend "^1.0.1" 3670 - string.prototype.trimstart "^1.0.1" 3671 3672 - es-abstract@^1.18.0-next.1: 3673 - version "1.18.0-next.1" 3674 - resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz#6e3a0a4bda717e5023ab3b8e90bec36108d22c68" 3675 - integrity sha512-I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA== 3676 dependencies: 3677 - es-to-primitive "^1.2.1" 3678 - function-bind "^1.1.1" 3679 - has "^1.0.3" 3680 has-symbols "^1.0.1" 3681 - is-callable "^1.2.2" 3682 - is-negative-zero "^2.0.0" 3683 - is-regex "^1.1.1" 3684 - object-inspect "^1.8.0" 3685 - object-keys "^1.1.1" 3686 - object.assign "^4.1.1" 3687 - string.prototype.trimend "^1.0.1" 3688 - string.prototype.trimstart "^1.0.1" 3689 3690 es-to-primitive@^1.2.1: 3691 version "1.2.1" ··· 3696 is-date-object "^1.0.1" 3697 is-symbol "^1.0.2" 3698 3699 - es5-ext@^0.10.35, es5-ext@^0.10.46, es5-ext@^0.10.50, es5-ext@^0.10.53, es5-ext@~0.10.14, es5-ext@~0.10.2, es5-ext@~0.10.46: 3700 - version "0.10.53" 3701 - resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz#93c5a3acfdbef275220ad72644ad02ee18368de1" 3702 - integrity sha512-Xs2Stw6NiNHWypzRTY1MtaG/uJlwCk8kH81920ma8mvN8Xq1gsfhZvpkImLQArw8AHnv8MT2I45J3c0R8slE+Q== 3703 - dependencies: 3704 - es6-iterator "~2.0.3" 3705 - es6-symbol "~3.1.3" 3706 - next-tick "~1.0.0" 3707 - 3708 - es6-error@^2.0.2: 3709 - version "2.1.1" 3710 - resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-2.1.1.tgz#91384301ec5ed1c9a7247d1128247216f03547cd" 3711 - integrity sha1-kThDAexe0cmnJH0RKCRyFvA1R80= 3712 - 3713 - es6-iterator@^2.0.3, es6-iterator@~2.0.3: 3714 - version "2.0.3" 3715 - resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7" 3716 - integrity sha1-p96IkUGgWpSwhUQDstCg+/qY87c= 3717 - dependencies: 3718 - d "1" 3719 - es5-ext "^0.10.35" 3720 - es6-symbol "^3.1.1" 3721 - 3722 - es6-symbol@^3.1.1, es6-symbol@~3.1.3: 3723 - version "3.1.3" 3724 - resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18" 3725 - integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA== 3726 - dependencies: 3727 - d "^1.0.1" 3728 - ext "^1.1.2" 3729 - 3730 - es6-weak-map@^2.0.3: 3731 - version "2.0.3" 3732 - resolved "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz#b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53" 3733 - integrity sha512-p5um32HOTO1kP+w7PRnB+5lQ43Z6muuMuIMffvDN8ZB4GcnjLBV6zGStpbASIMk4DCAvEaamhe2zhyCb/QXXsA== 3734 - dependencies: 3735 - d "1" 3736 - es5-ext "^0.10.46" 3737 - es6-iterator "^2.0.3" 3738 - es6-symbol "^3.1.1" 3739 3740 escalade@^3.1.1: 3741 version "3.1.1" ··· 3747 resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 3748 integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 3749 3750 - escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 3751 version "1.0.5" 3752 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 3753 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 3754 3755 - escodegen@^1.9.1: 3756 - version "1.14.3" 3757 - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" 3758 - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== 3759 - dependencies: 3760 - esprima "^4.0.1" 3761 - estraverse "^4.2.0" 3762 - esutils "^2.0.2" 3763 - optionator "^0.8.1" 3764 - optionalDependencies: 3765 - source-map "~0.6.1" 3766 - 3767 - eslint-config-standard@12.0.0: 3768 - version "12.0.0" 3769 - resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz#638b4c65db0bd5a41319f96bba1f15ddad2107d9" 3770 - integrity sha512-COUz8FnXhqFitYj4DTqHzidjIL/t4mumGZto5c7DrBpvWoie+Sn3P4sLEzUGeYhRElWuFEf8K1S1EfvD1vixCQ== 3771 3772 eslint-import-resolver-node@^0.3.4: 3773 version "0.3.4" ··· 3785 debug "^2.6.9" 3786 pkg-dir "^2.0.0" 3787 3788 - eslint-plugin-es@^1.3.1: 3789 - version "1.4.1" 3790 - resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz#12acae0f4953e76ba444bfd1b2271081ac620998" 3791 - integrity sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA== 3792 dependencies: 3793 - eslint-utils "^1.4.2" 3794 - regexpp "^2.0.1" 3795 3796 eslint-plugin-import@2.22.1: 3797 version "2.22.1" ··· 3812 resolve "^1.17.0" 3813 tsconfig-paths "^3.9.0" 3814 3815 - eslint-plugin-node@8.0.1: 3816 - version "8.0.1" 3817 - resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz#55ae3560022863d141fa7a11799532340a685964" 3818 - integrity sha512-ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w== 3819 dependencies: 3820 - eslint-plugin-es "^1.3.1" 3821 - eslint-utils "^1.3.1" 3822 - ignore "^5.0.2" 3823 minimatch "^3.0.4" 3824 - resolve "^1.8.1" 3825 - semver "^5.5.0" 3826 3827 - eslint-plugin-promise@4.2.1: 3828 - version "4.2.1" 3829 - resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz#845fd8b2260ad8f82564c1222fce44ad71d9418a" 3830 - integrity sha512-VoM09vT7bfA7D+upt+FjeBO5eHIJQBUWki1aPvB+vbNiHS3+oGIJGIeyBtKQTME6UPXXy3vV07OL1tHd3ANuDw== 3831 3832 eslint-plugin-standard@4.1.0: 3833 version "4.1.0" ··· 3842 esrecurse "^4.1.0" 3843 estraverse "^4.1.1" 3844 3845 - eslint-utils@^1.3.1, eslint-utils@^1.4.2: 3846 - version "1.4.3" 3847 - resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f" 3848 - integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q== 3849 dependencies: 3850 eslint-visitor-keys "^1.1.0" 3851 3852 - eslint-visitor-keys@^1.0.0, eslint-visitor-keys@^1.1.0: 3853 version "1.3.0" 3854 resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 3855 integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 3856 3857 - eslint@5.16.0: 3858 - version "5.16.0" 3859 - resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz#a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea" 3860 - integrity sha512-S3Rz11i7c8AA5JPv7xAH+dOyq/Cu/VXHiHXBPOU1k/JAM5dXqQPt3qcrhpHSorXmrpu2g0gkIBVXAqCpzfoZIg== 3861 dependencies: 3862 - "@babel/code-frame" "^7.0.0" 3863 - ajv "^6.9.1" 3864 - chalk "^2.1.0" 3865 - cross-spawn "^6.0.5" 3866 debug "^4.0.1" 3867 doctrine "^3.0.0" 3868 - eslint-scope "^4.0.3" 3869 - eslint-utils "^1.3.1" 3870 - eslint-visitor-keys "^1.0.0" 3871 - espree "^5.0.1" 3872 - esquery "^1.0.1" 3873 esutils "^2.0.2" 3874 - file-entry-cache "^5.0.1" 3875 functional-red-black-tree "^1.0.1" 3876 - glob "^7.1.2" 3877 - globals "^11.7.0" 3878 ignore "^4.0.6" 3879 import-fresh "^3.0.0" 3880 imurmurhash "^0.1.4" 3881 - inquirer "^6.2.2" 3882 - js-yaml "^3.13.0" 3883 json-stable-stringify-without-jsonify "^1.0.1" 3884 - levn "^0.3.0" 3885 - lodash "^4.17.11" 3886 minimatch "^3.0.4" 3887 - mkdirp "^0.5.1" 3888 natural-compare "^1.4.0" 3889 - optionator "^0.8.2" 3890 - path-is-inside "^1.0.2" 3891 progress "^2.0.0" 3892 - regexpp "^2.0.1" 3893 - semver "^5.5.1" 3894 - strip-ansi "^4.0.0" 3895 - strip-json-comments "^2.0.1" 3896 - table "^5.2.3" 3897 text-table "^0.2.0" 3898 3899 - espree@^5.0.1: 3900 - version "5.0.1" 3901 - resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" 3902 - integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== 3903 dependencies: 3904 - acorn "^6.0.7" 3905 - acorn-jsx "^5.0.0" 3906 - eslint-visitor-keys "^1.0.0" 3907 3908 - esprima@^4.0.0, esprima@^4.0.1: 3909 version "4.0.1" 3910 resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 3911 integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 3912 3913 - esquery@^1.0.1: 3914 - version "1.3.1" 3915 - resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57" 3916 - integrity sha512-olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ== 3917 dependencies: 3918 estraverse "^5.1.0" 3919 3920 - esrecurse@^4.1.0: 3921 version "4.3.0" 3922 resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 3923 integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 3924 dependencies: 3925 estraverse "^5.2.0" 3926 3927 - estraverse@^4.1.1, estraverse@^4.2.0: 3928 version "4.3.0" 3929 resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 3930 integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== ··· 3954 resolved "https://registry.yarnpkg.com/eve/-/eve-0.5.4.tgz#67d080b9725291d7e389e34c26860dd97f1debaa" 3955 integrity sha1-Z9CAuXJSkdfjieNMJoYN2X8d66o= 3956 3957 - event-emitter@^0.3.5: 3958 - version "0.3.5" 3959 - resolved "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz#df8c69eef1647923c7157b9ce83840610b02cc39" 3960 - integrity sha1-34xp7vFkeSPHFXuc6DhAYQsCzDk= 3961 - dependencies: 3962 - d "1" 3963 - es5-ext "~0.10.14" 3964 - 3965 events@1.1.1: 3966 version "1.1.1" 3967 resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 3968 integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= 3969 3970 events@^3.0.0: 3971 - version "3.2.0" 3972 - resolved "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz#93b87c18f8efcd4202a461aec4dfc0556b639379" 3973 - integrity sha512-/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg== 3974 3975 evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 3976 version "1.0.3" ··· 3980 md5.js "^1.3.4" 3981 safe-buffer "^5.1.1" 3982 3983 exit-on-epipe@~1.0.1: 3984 version "1.0.1" 3985 resolved "https://registry.yarnpkg.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz#0bdd92e87d5285d267daa8171d0eb06159689692" ··· 4012 dependencies: 4013 fill-range "^2.1.0" 4014 4015 - expand-tilde@^2.0.0, expand-tilde@^2.0.2: 4016 - version "2.0.2" 4017 - resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" 4018 - integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= 4019 dependencies: 4020 - homedir-polyfill "^1.0.1" 4021 - 4022 - expose-loader@0.7.5: 4023 - version "0.7.5" 4024 - resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.5.tgz#e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f" 4025 - integrity sha512-iPowgKUZkTPX5PznYsmifVj9Bob0w2wTHVkt/eYNPSzyebkUgIedmskf/kcfEIWpiWjg3JRjnW+a17XypySMuw== 4026 4027 express-session@^1.14.2: 4028 version "1.17.1" ··· 4074 utils-merge "1.0.1" 4075 vary "~1.1.2" 4076 4077 - ext@^1.1.2: 4078 - version "1.4.0" 4079 - resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244" 4080 - integrity sha512-Key5NIsUxdqKg3vIsdw9dSuXpPCQ297y6wBjL30edxwPgt2E44WcWBZey/ZvUc6sERLTxKdyCu4gZFmUbk1Q7A== 4081 - dependencies: 4082 - type "^2.0.0" 4083 - 4084 extend-shallow@^2.0.1: 4085 version "2.0.1" 4086 resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" ··· 4106 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 4107 integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 4108 4109 - external-editor@^3.0.3: 4110 - version "3.1.0" 4111 - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495" 4112 - integrity sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew== 4113 - dependencies: 4114 - chardet "^0.7.0" 4115 - iconv-lite "^0.4.24" 4116 - tmp "^0.0.33" 4117 - 4118 extglob@^0.3.1: 4119 version "0.3.2" 4120 resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" ··· 4136 snapdragon "^0.8.1" 4137 to-regex "^3.0.1" 4138 4139 - extsprintf@1.2.0: 4140 - version "1.2.0" 4141 - resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.2.0.tgz#5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529" 4142 - integrity sha1-WtlGwi9bMrp/jNdCZxHG6KP8JSk= 4143 - 4144 extsprintf@1.3.0: 4145 version "1.3.0" 4146 resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" ··· 4157 integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 4158 4159 fast-glob@^3.1.1, fast-glob@^3.2.4: 4160 - version "3.2.4" 4161 - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" 4162 - integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== 4163 dependencies: 4164 "@nodelib/fs.stat" "^2.0.2" 4165 "@nodelib/fs.walk" "^1.2.3" ··· 4173 resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 4174 integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 4175 4176 - fast-levenshtein@~2.0.6: 4177 version "2.0.6" 4178 resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 4179 integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= ··· 4183 resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" 4184 integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== 4185 4186 fastq@^1.6.0: 4187 - version "1.10.0" 4188 - resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz#74dbefccade964932cdf500473ef302719c652bb" 4189 - integrity sha512-NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA== 4190 dependencies: 4191 reusify "^1.0.4" 4192 ··· 4197 dependencies: 4198 format "^0.2.0" 4199 4200 - feature-policy@0.3.0: 4201 - version "0.3.0" 4202 - resolved "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.3.0.tgz#7430e8e54a40da01156ca30aaec1a381ce536069" 4203 - integrity sha512-ZtijOTFN7TzCujt1fnNhfWPFPSHeZkesff9AXZj+UEjYBynWNUIYpC87Ve4wHzyexQsImicLu7WsC2LHq7/xrQ== 4204 - 4205 fecha@^4.2.0: 4206 - version "4.2.0" 4207 - resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.0.tgz#3ffb6395453e3f3efff850404f0a59b6747f5f41" 4208 - integrity sha512-aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg== 4209 4210 figgy-pudding@^3.5.1: 4211 version "3.5.2" 4212 resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" 4213 integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== 4214 4215 - figures@^2.0.0: 4216 - version "2.0.0" 4217 - resolved "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962" 4218 - integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI= 4219 - dependencies: 4220 - escape-string-regexp "^1.0.5" 4221 - 4222 figures@^3.0.0: 4223 version "3.2.0" 4224 resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" ··· 4226 dependencies: 4227 escape-string-regexp "^1.0.5" 4228 4229 - file-entry-cache@^5.0.1: 4230 - version "5.0.1" 4231 - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" 4232 - integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== 4233 dependencies: 4234 - flat-cache "^2.0.1" 4235 4236 - file-loader@4.3.0: 4237 - version "4.3.0" 4238 - resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-4.3.0.tgz#780f040f729b3d18019f20605f723e844b8a58af" 4239 - integrity sha512-aKrYPYjF1yG3oX0kWRrqrSMfgftm7oJW5M+m4owoldH5C51C0RkIwB++JbRvEW3IU6/ZG5n8UvEcdgwOt2UOWA== 4240 dependencies: 4241 - loader-utils "^1.2.3" 4242 - schema-utils "^2.5.0" 4243 4244 - file-saver@^1.3.3: 4245 - version "1.3.8" 4246 - resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.8.tgz#e68a30c7cb044e2fb362b428469feb291c2e09d8" 4247 - integrity sha512-spKHSBQIxxS81N/O21WmuXA2F6wppUCsutpzenOeZzOCCJ5gEfcbqJP983IrpLXzYmXnMUa6J03SubcNPdKrlg== 4248 4249 file-type@^16.1.0: 4250 - version "16.2.0" 4251 - resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.2.0.tgz#d4f1da71ddda758db7f15f93adfaed09ce9e2715" 4252 - integrity sha512-1Wwww3mmZCMmLjBfslCluwt2mxH80GsAXYrvPnfQ42G1EGWag336kB1iyCgyn7UXiKY3cJrNykXPrCwA7xb5Ag== 4253 dependencies: 4254 readable-web-to-node-stream "^3.0.0" 4255 strtok3 "^6.0.3" ··· 4260 version "1.0.0" 4261 resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 4262 integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 4263 4264 filename-regex@^2.0.0: 4265 version "2.0.1" ··· 4334 make-dir "^3.0.2" 4335 pkg-dir "^4.1.0" 4336 4337 find-up@^2.0.0, find-up@^2.1.0: 4338 version "2.1.0" 4339 resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" ··· 4356 locate-path "^5.0.0" 4357 path-exists "^4.0.0" 4358 4359 - findup-sync@^3.0.0: 4360 - version "3.0.0" 4361 - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz#17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1" 4362 - integrity sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg== 4363 dependencies: 4364 - detect-file "^1.0.0" 4365 - is-glob "^4.0.0" 4366 - micromatch "^3.0.4" 4367 - resolve-dir "^1.0.1" 4368 4369 - flat-cache@^2.0.1: 4370 - version "2.0.1" 4371 - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0" 4372 - integrity sha512-LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA== 4373 - dependencies: 4374 - flatted "^2.0.0" 4375 - rimraf "2.6.3" 4376 - write "1.0.3" 4377 4378 - flatted@^2.0.0: 4379 - version "2.0.2" 4380 - resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" 4381 - integrity sha512-r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA== 4382 4383 flowchart.js@^1.6.4: 4384 version "1.15.0" ··· 4401 integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== 4402 4403 follow-redirects@^1.10.0: 4404 - version "1.13.1" 4405 - resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz#5f69b813376cee4fd0474a3aba835df04ab763b7" 4406 - integrity sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg== 4407 4408 for-in@^1.0.1, for-in@^1.0.2: 4409 version "1.0.2" ··· 4416 integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= 4417 dependencies: 4418 for-in "^1.0.1" 4419 4420 forever-agent@~0.6.1: 4421 version "0.6.1" ··· 4499 resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 4500 integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 4501 4502 - fs-extra@^7.0.1: 4503 - version "7.0.1" 4504 - resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" 4505 - integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== 4506 - dependencies: 4507 - graceful-fs "^4.1.2" 4508 - jsonfile "^4.0.0" 4509 - universalify "^0.1.0" 4510 - 4511 fs-minipass@^1.2.5: 4512 version "1.2.7" 4513 resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" ··· 4551 nan "^2.12.1" 4552 4553 fsevents@~2.3.1: 4554 - version "2.3.1" 4555 - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz#b209ab14c61012636c8863507edf7fb68cc54e9f" 4556 - integrity sha512-YR47Eg4hChJGAB1O3yEAOkGO+rlzutoICGqGo9EZ4lKWokzZRSyIW1QmTzqjtw8MJdj9srP869CuWw/hyzSiBw== 4557 4558 function-bind@^1.1.1: 4559 version "1.1.1" ··· 4591 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 4592 integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 4593 4594 - get-caller-file@^2.0.1: 4595 version "2.0.5" 4596 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 4597 integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 4598 4599 - get-intrinsic@^1.0.1, get-intrinsic@^1.0.2: 4600 - version "1.0.2" 4601 - resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz#6820da226e50b24894e08859469dc68361545d49" 4602 - integrity sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg== 4603 dependencies: 4604 function-bind "^1.1.1" 4605 has "^1.0.3" 4606 has-symbols "^1.0.1" 4607 4608 get-value@^2.0.3, get-value@^2.0.6: 4609 version "2.0.6" ··· 4645 is-glob "^3.1.0" 4646 path-dirname "^1.0.0" 4647 4648 - glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@~5.1.0: 4649 - version "5.1.1" 4650 - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 4651 - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 4652 dependencies: 4653 is-glob "^4.0.1" 4654 4655 - glob@7.1.2: 4656 - version "7.1.2" 4657 - resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz#c19c9df9a028702d678612384a6552404c636d15" 4658 - integrity sha512-MJTUg1kjuLeQCJ+ccE4Vpa6kKVXkPYJ2mOCQyUuKLcLQsdrMCpBPUi8qVE6+YuaJkozeA9NusTAw3hLr8Xe5EQ== 4659 - dependencies: 4660 - fs.realpath "^1.0.0" 4661 - inflight "^1.0.4" 4662 - inherits "2" 4663 - minimatch "^3.0.4" 4664 - once "^1.3.0" 4665 - path-is-absolute "^1.0.0" 4666 - 4667 - glob@^6.0.1: 4668 - version "6.0.4" 4669 - resolved "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz#0f08860f6a155127b2fadd4f9ce24b1aab6e4d22" 4670 - integrity sha1-DwiGD2oVUSey+t1PnOJLGqtuTSI= 4671 - dependencies: 4672 - inflight "^1.0.4" 4673 - inherits "2" 4674 - minimatch "2 || 3" 4675 - once "^1.3.0" 4676 - path-is-absolute "^1.0.0" 4677 - 4678 - glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 4679 version "7.1.6" 4680 resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 4681 integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== ··· 4687 once "^1.3.0" 4688 path-is-absolute "^1.0.0" 4689 4690 - global-modules@^1.0.0: 4691 - version "1.0.0" 4692 - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" 4693 - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== 4694 - dependencies: 4695 - global-prefix "^1.0.1" 4696 - is-windows "^1.0.1" 4697 - resolve-dir "^1.0.0" 4698 - 4699 - global-modules@^2.0.0: 4700 - version "2.0.0" 4701 - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780" 4702 - integrity sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A== 4703 - dependencies: 4704 - global-prefix "^3.0.0" 4705 - 4706 - global-prefix@^1.0.1: 4707 - version "1.0.2" 4708 - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" 4709 - integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= 4710 dependencies: 4711 - expand-tilde "^2.0.2" 4712 - homedir-polyfill "^1.0.1" 4713 - ini "^1.3.4" 4714 - is-windows "^1.0.1" 4715 - which "^1.2.14" 4716 4717 - global-prefix@^3.0.0: 4718 - version "3.0.0" 4719 - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" 4720 - integrity sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg== 4721 dependencies: 4722 - ini "^1.3.5" 4723 - kind-of "^6.0.2" 4724 - which "^1.3.1" 4725 - 4726 - globals@^11.7.0: 4727 - version "11.12.0" 4728 - resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 4729 - integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 4730 4731 globals@^9.18.0: 4732 version "9.18.0" ··· 4734 integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== 4735 4736 globby@^11.0.1: 4737 - version "11.0.2" 4738 - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.2.tgz#1af538b766a3b540ebfb58a32b2e2d5897321d83" 4739 - integrity sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og== 4740 dependencies: 4741 array-union "^2.1.0" 4742 dir-glob "^3.0.1" ··· 4752 dependencies: 4753 delegate "^3.1.2" 4754 4755 - graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.1.6, graceful-fs@^4.2.0: 4756 - version "4.2.4" 4757 - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb" 4758 - integrity sha512-WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw== 4759 4760 graphlib@^2.1.7, graphlib@^2.1.8: 4761 version "2.1.8" ··· 4770 integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 4771 4772 handlebars@^4.5.2: 4773 - version "4.7.6" 4774 - resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz#d4c05c1baf90e9945f77aa68a7a219aa4a7df74e" 4775 - integrity sha512-1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA== 4776 dependencies: 4777 minimist "^1.2.5" 4778 neo-async "^2.6.0" ··· 4801 dependencies: 4802 ansi-regex "^2.0.0" 4803 4804 has-binary2@~1.0.2: 4805 version "1.0.3" 4806 resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" ··· 4828 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 4829 integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 4830 4831 - has-symbols@^1.0.1: 4832 - version "1.0.1" 4833 - resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8" 4834 - integrity sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg== 4835 4836 has-unicode@^2.0.0: 4837 version "2.0.1" ··· 4893 inherits "^2.0.3" 4894 minimalistic-assert "^1.0.1" 4895 4896 - he@1.1.1: 4897 - version "1.1.1" 4898 - resolved "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz#93410fd21b009735151f8868c2f271f3427e23fd" 4899 - integrity sha1-k0EP0hsAlzUVH4howvJx80J+I/0= 4900 - 4901 - he@^1.1.1, he@^1.2.0: 4902 version "1.2.0" 4903 resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 4904 integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 4905 4906 - helmet-crossdomain@0.4.0: 4907 - version "0.4.0" 4908 - resolved "https://registry.yarnpkg.com/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz#5f1fe5a836d0325f1da0a78eaa5fd8429078894e" 4909 - integrity sha512-AB4DTykRw3HCOxovD1nPR16hllrVImeFp5VBV9/twj66lJ2nU75DP8FPL0/Jp4jj79JhTfG+pFI2MD02kWJ+fA== 4910 - 4911 - helmet-csp@2.10.0: 4912 - version "2.10.0" 4913 - resolved "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.10.0.tgz#685dde1747bc16c5e28ad9d91e229a69f0a85e84" 4914 - integrity sha512-Rz953ZNEFk8sT2XvewXkYN0Ho4GEZdjAZy4stjiEQV3eN7GDxg1QKmYggH7otDyIA7uGA6XnUMVSgeJwbR5X+w== 4915 - dependencies: 4916 - bowser "2.9.0" 4917 - camelize "1.0.0" 4918 - content-security-policy-builder "2.1.0" 4919 - dasherize "2.0.0" 4920 - 4921 - helmet@^3.21.1: 4922 - version "3.23.3" 4923 - resolved "https://registry.yarnpkg.com/helmet/-/helmet-3.23.3.tgz#5ba30209c5f73ded4ab65746a3a11bedd4579ab7" 4924 - integrity sha512-U3MeYdzPJQhtvqAVBPntVgAvNSOJyagwZwyKsFdyRa8TV3pOKVFljalPOCxbw5Wwf2kncGhmP0qHjyazIdNdSA== 4925 - dependencies: 4926 - depd "2.0.0" 4927 - dont-sniff-mimetype "1.1.0" 4928 - feature-policy "0.3.0" 4929 - helmet-crossdomain "0.4.0" 4930 - helmet-csp "2.10.0" 4931 - hide-powered-by "1.1.0" 4932 - hpkp "2.0.0" 4933 - hsts "2.2.0" 4934 - nocache "2.1.0" 4935 - referrer-policy "1.2.0" 4936 - x-xss-protection "1.3.0" 4937 4938 hex-color-regex@^1.1.0: 4939 version "1.1.0" 4940 resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 4941 integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 4942 4943 - hide-powered-by@1.1.0: 4944 - version "1.1.0" 4945 - resolved "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.1.0.tgz#be3ea9cab4bdb16f8744be873755ca663383fa7a" 4946 - integrity sha512-Io1zA2yOA1YJslkr+AJlWSf2yWFkKjvkcL9Ni1XSUqnGLr/qRQe2UI3Cn/J9MsJht7yEVCe0SscY1HgVMujbgg== 4947 4948 - highlight.js@^9.12.0: 4949 - version "9.18.5" 4950 - resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.5.tgz#d18a359867f378c138d6819edfc2a8acd5f29825" 4951 - integrity sha512-a5bFyofd/BHCX52/8i8uJkjr9DYwXIPnM/plwI6W7ezItLGqzt7X2G2nXuYSfsIJdkwwj/g9DG1LkcGJI/dDoA== 4952 - 4953 - hmac-drbg@^1.0.0: 4954 version "1.0.1" 4955 resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 4956 integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= ··· 4967 os-homedir "^1.0.0" 4968 os-tmpdir "^1.0.1" 4969 4970 - homedir-polyfill@^1.0.1: 4971 - version "1.0.3" 4972 - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz#743298cef4e5af3e194161fbadcc2151d3a058e8" 4973 - integrity sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA== 4974 - dependencies: 4975 - parse-passwd "^1.0.0" 4976 - 4977 hosted-git-info@^2.1.4: 4978 - version "2.8.8" 4979 - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 4980 - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 4981 - 4982 - hpkp@2.0.0: 4983 - version "2.0.0" 4984 - resolved "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz#10e142264e76215a5d30c44ec43de64dee6d1672" 4985 - integrity sha1-EOFCJk52IVpdMMROxD3mTe5tFnI= 4986 4987 hsl-regex@^1.0.0: 4988 version "1.0.0" ··· 4994 resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" 4995 integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 4996 4997 - hsts@2.2.0: 4998 - version "2.2.0" 4999 - resolved "https://registry.yarnpkg.com/hsts/-/hsts-2.2.0.tgz#09119d42f7a8587035d027dda4522366fe75d964" 5000 - integrity sha512-ToaTnQ2TbJkochoVcdXYm4HOCliNozlviNsg+X2XQLQvZNI/kCHR9rZxVYpJB3UPcHz80PgxRyWQ7PdU1r+VBQ== 5001 - dependencies: 5002 - depd "2.0.0" 5003 - 5004 - html-comment-regex@^1.1.0: 5005 - version "1.1.2" 5006 - resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" 5007 - integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 5008 - 5009 - html-encoding-sniffer@^1.0.2: 5010 - version "1.0.2" 5011 - resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8" 5012 - integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw== 5013 - dependencies: 5014 - whatwg-encoding "^1.0.1" 5015 - 5016 html-minifier-terser@^5.0.1: 5017 version "5.1.1" 5018 resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" ··· 5039 relateurl "^0.2.7" 5040 uglify-js "^3.5.1" 5041 5042 - html-webpack-plugin@4.5.0: 5043 - version "4.5.0" 5044 - resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz#625097650886b97ea5dae331c320e3238f6c121c" 5045 - integrity sha512-MouoXEYSjTzCrjIxWwg8gxL5fE2X2WZJLmBYXlaJhQUH5K/b5OrqmV7T4dB7iu0xkmJ6JlUuV6fFVtnqbPopZw== 5046 dependencies: 5047 "@types/html-minifier-terser" "^5.0.0" 5048 "@types/tapable" "^1.0.5" 5049 "@types/webpack" "^4.41.8" 5050 html-minifier-terser "^5.0.1" 5051 loader-utils "^1.2.3" 5052 - lodash "^4.17.15" 5053 pretty-error "^2.1.1" 5054 tapable "^1.1.3" 5055 util.promisify "1.0.0" ··· 5102 resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 5103 integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 5104 5105 i18n@^0.13.0: 5106 version "0.13.2" 5107 resolved "https://registry.yarnpkg.com/i18n/-/i18n-0.13.2.tgz#3886678fe7cbbed45bac2ce53b8144c788a1c1b5" ··· 5114 mustache "^4.0.1" 5115 sprintf-js "^1.1.2" 5116 5117 - iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.24, iconv-lite@^0.4.4: 5118 version "0.4.24" 5119 resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 5120 integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== ··· 5135 dependencies: 5136 safer-buffer ">= 2.1.2 < 3.0.0" 5137 5138 - icss-utils@^4.0.0, icss-utils@^4.1.1: 5139 - version "4.1.1" 5140 - resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz#21170b53789ee27447c2f47dd683081403f9a467" 5141 - integrity sha512-4aFq7wvWyMHKgxsH8QQtGpvbASCf+eM3wPRLI6R+MgAnTCZ6STYsRvttLvRWK0Nfif5piF394St3HeJDaljGPA== 5142 - dependencies: 5143 - postcss "^7.0.14" 5144 5145 ieee754@1.1.13: 5146 version "1.1.13" ··· 5169 resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 5170 integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 5171 5172 - ignore@^5.0.0, ignore@^5.0.2, ignore@^5.1.4: 5173 version "5.1.8" 5174 resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 5175 integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== ··· 5179 resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" 5180 integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w= 5181 5182 - "imgur@git+https://github.com/hackmdio/node-imgur.git": 5183 - version "0.5.0" 5184 - resolved "git+https://github.com/hackmdio/node-imgur.git#de0a7a1f1eb2cb6628385fedb990ad396a190573" 5185 - dependencies: 5186 - commander "^2.13.0" 5187 - glob "^7.1.2" 5188 - q "^2.0.3" 5189 - request "^2.83.0" 5190 - 5191 import-fresh@^2.0.0: 5192 version "2.0.0" 5193 resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" ··· 5196 caller-path "^2.0.0" 5197 resolve-from "^3.0.0" 5198 5199 - import-fresh@^3.0.0: 5200 version "3.3.0" 5201 resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 5202 integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== ··· 5204 parent-module "^1.0.0" 5205 resolve-from "^4.0.0" 5206 5207 - import-local@^2.0.0: 5208 - version "2.0.0" 5209 - resolved "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz#55070be38a5993cf18ef6db7e961f5bee5c5a09d" 5210 - integrity sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ== 5211 dependencies: 5212 - pkg-dir "^3.0.0" 5213 - resolve-cwd "^2.0.0" 5214 5215 - imports-loader@0.8.0: 5216 - version "0.8.0" 5217 - resolved "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz#030ea51b8ca05977c40a3abfd9b4088fe0be9a69" 5218 - integrity sha512-kXWL7Scp8KQ4552ZcdVTeaQCZSLW+e6nJfp3cwUMB673T7Hr98Xjx5JK+ql7ADlJUvj1JS5O01RLbKoutN5QDQ== 5219 dependencies: 5220 - loader-utils "^1.0.2" 5221 source-map "^0.6.1" 5222 5223 imurmurhash@^0.1.4: 5224 version "0.1.4" ··· 5258 once "^1.3.0" 5259 wrappy "1" 5260 5261 - inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3: 5262 version "2.0.4" 5263 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 5264 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ··· 5273 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 5274 integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 5275 5276 - ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: 5277 version "1.3.8" 5278 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 5279 integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 5280 5281 - inquirer@^6.2.2: 5282 - version "6.5.2" 5283 - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz#ad50942375d036d327ff528c08bd5fab089928ca" 5284 - integrity sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ== 5285 - dependencies: 5286 - ansi-escapes "^3.2.0" 5287 - chalk "^2.4.2" 5288 - cli-cursor "^2.1.0" 5289 - cli-width "^2.0.0" 5290 - external-editor "^3.0.3" 5291 - figures "^2.0.0" 5292 - lodash "^4.17.12" 5293 - mute-stream "0.0.7" 5294 - run-async "^2.2.0" 5295 - rxjs "^6.4.0" 5296 - string-width "^2.1.0" 5297 - strip-ansi "^5.1.0" 5298 - through "^2.3.6" 5299 - 5300 - interpret@^1.4.0: 5301 - version "1.4.0" 5302 - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e" 5303 - integrity sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA== 5304 5305 invariant@^2.2.2: 5306 version "2.2.4" ··· 5343 resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" 5344 integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== 5345 5346 - is-alphanumeric@^1.0.0: 5347 - version "1.0.0" 5348 - resolved "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz#4a9cef71daf4c001c1d81d63d140cf53fd6889f4" 5349 - integrity sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ= 5350 - 5351 is-alphanumerical@^1.0.0: 5352 version "1.0.4" 5353 resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" ··· 5356 is-alphabetical "^1.0.0" 5357 is-decimal "^1.0.0" 5358 5359 - is-arguments@^1.0.4: 5360 version "1.1.0" 5361 resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" 5362 integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== ··· 5373 resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 5374 integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 5375 5376 is-binary-path@^1.0.0: 5377 version "1.0.1" 5378 resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" ··· 5391 version "1.0.2" 5392 resolved "https://registry.yarnpkg.com/is-bluebird/-/is-bluebird-1.0.2.tgz#096439060f4aa411abee19143a84d6a55346d6e2" 5393 integrity sha1-CWQ5Bg9KpBGr7hkUOoTWpVNG1uI= 5394 5395 is-buffer@^1.1.5: 5396 version "1.1.6" ··· 5402 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" 5403 integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== 5404 5405 - is-callable@^1.1.4, is-callable@^1.2.2: 5406 - version "1.2.2" 5407 - resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz#c7c6715cd22d4ddb48d3e19970223aceabb080d9" 5408 - integrity sha512-dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA== 5409 5410 is-color-stop@^1.0.0: 5411 version "1.1.0" ··· 5419 rgb-regex "^1.0.1" 5420 rgba-regex "^1.0.0" 5421 5422 - is-core-module@^2.1.0: 5423 - version "2.2.0" 5424 - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 5425 - integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 5426 dependencies: 5427 has "^1.0.3" 5428 ··· 5440 dependencies: 5441 kind-of "^6.0.0" 5442 5443 - is-date-object@^1.0.1: 5444 version "1.0.2" 5445 resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 5446 integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== ··· 5560 resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" 5561 integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== 5562 5563 - is-negative-zero@^2.0.0: 5564 version "2.0.1" 5565 resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 5566 integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 5567 5568 is-number@^2.1.0: 5569 version "2.1.0" ··· 5594 resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 5595 integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 5596 5597 - is-plain-obj@^1.0.0: 5598 - version "1.1.0" 5599 - resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" 5600 - integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= 5601 - 5602 - is-plain-obj@^2.0.0: 5603 version "2.1.0" 5604 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 5605 integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== ··· 5621 resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 5622 integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= 5623 5624 - is-promise@^2.2.2: 5625 - version "2.2.2" 5626 - resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz#39ab959ccbf9a774cf079f7b40c7a26f763135f1" 5627 - integrity sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ== 5628 - 5629 is-property@^1.0.2: 5630 version "1.0.2" 5631 resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 5632 integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= 5633 5634 - is-regex@^1.0.4, is-regex@^1.1.1: 5635 - version "1.1.1" 5636 - resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9" 5637 - integrity sha512-1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg== 5638 dependencies: 5639 has-symbols "^1.0.1" 5640 5641 is-resolvable@^1.0.0: ··· 5643 resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 5644 integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 5645 5646 is-stream@^2.0.0: 5647 version "2.0.0" 5648 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" ··· 5653 resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 5654 integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 5655 5656 - is-svg@^3.0.0: 5657 - version "3.0.0" 5658 - resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75" 5659 - integrity sha512-gi4iHK53LR2ujhLVVj+37Ykh9GLqYHX6JOVXbLAucaG/Cqw9xwdFOjDM2qeifLs1sF1npXXFvDu0r5HNgCMrzQ== 5660 dependencies: 5661 - html-comment-regex "^1.1.0" 5662 5663 - is-symbol@^1.0.2: 5664 version "1.0.3" 5665 resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 5666 integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 5667 dependencies: 5668 has-symbols "^1.0.1" 5669 5670 is-typedarray@^1.0.0, is-typedarray@~1.0.0: 5671 version "1.0.0" 5672 resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 5673 integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 5674 5675 - is-what@^3.7.1: 5676 - version "3.12.0" 5677 - resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.12.0.tgz#f4405ce4bd6dd420d3ced51a026fb90e03705e55" 5678 - integrity sha512-2ilQz5/f/o9V7WRWJQmpFYNmQFZ9iM+OXRonZKcYgTkCzjb949Vi4h282PD1UfmgHk666rcWonbRJ++KI41VGw== 5679 5680 - is-whitespace-character@^1.0.0: 5681 - version "1.0.4" 5682 - resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz#0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7" 5683 - integrity sha512-SDweEzfIZM0SJV0EUga669UTKlmL0Pq8Lno0QDQsPnvECB3IM2aP0gdx5TrU0A01MAPfViaZiI2V1QMZLaKK5w== 5684 5685 - is-windows@^1.0.1, is-windows@^1.0.2: 5686 version "1.0.2" 5687 resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 5688 integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 5689 - 5690 - is-word-character@^1.0.0: 5691 - version "1.0.4" 5692 - resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz#ce0e73216f98599060592f62ff31354ddbeb0230" 5693 - integrity sha512-5SMO8RVennx3nZrqtKwCGyyetPE9VDba5ugvKLaD4KopPG5kR4mQ7tNt/r7feL5yt5h3lpuBbIUmCOG2eSzXHA== 5694 5695 is-wsl@^1.1.0: 5696 version "1.1.0" ··· 5712 resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" 5713 integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= 5714 5715 isexe@^2.0.0: 5716 version "2.0.0" 5717 resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" ··· 5734 resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 5735 integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 5736 5737 jmespath@0.15.0: 5738 version "0.15.0" 5739 resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" ··· 5750 integrity sha1-vLQEXI3QU5wTS8FIjN0+dop6nlE= 5751 5752 jquery@^3.5.1: 5753 - version "3.5.1" 5754 - resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz#d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5" 5755 - integrity sha512-XwIBPqcMn57FxfT+Go5pzySnm4KWkT1Tv7gjrpT1srtf8Weynl6R273VJ5GjkRb51IzMp5nbaPjJXMWeju2MKg== 5756 - 5757 - js-beautify@^1.8.8: 5758 - version "1.13.4" 5759 - resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.4.tgz#1cad80b9e89cfc455b3a14f0eaf4dc10b6ae1206" 5760 - integrity sha512-M5yEWwonlEO3kPcCZ3K3KBSpFRZAEO3FAWC6wtbIGeyg7dusStxvF0WG+HRLBoMZqREXSRSxkkqClDE865x1sg== 5761 - dependencies: 5762 - config-chain "^1.1.12" 5763 - editorconfig "^0.15.3" 5764 - glob "^7.1.3" 5765 - mkdirp "^1.0.4" 5766 - nopt "^5.0.0" 5767 5768 js-cookie@^2.1.3: 5769 version "2.2.1" ··· 5772 5773 "js-sequence-diagrams@git+https://github.com/hedgedoc/js-sequence-diagrams.git": 5774 version "2.0.1" 5775 resolved "git+https://github.com/hedgedoc/js-sequence-diagrams.git#bda0e49b6c2754f3c7158b1dfb9ccf26efc24b39" 5776 dependencies: 5777 lodash "4.17.x" ··· 5790 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 5791 integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 5792 5793 - js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.6.1, js-yaml@~3.14.0: 5794 version "3.14.1" 5795 resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 5796 integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== ··· 5798 argparse "^1.0.7" 5799 esprima "^4.0.0" 5800 5801 jsbi@^3.1.1: 5802 version "3.1.4" 5803 resolved "https://registry.yarnpkg.com/jsbi/-/jsbi-3.1.4.tgz#9654dd02207a66a4911b4e4bb74265bc2cbc9dd0" ··· 5820 request "2.x" 5821 xmlhttprequest ">=1.5.0" 5822 5823 - jsdom@^11.9.0: 5824 - version "11.12.0" 5825 - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz#1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8" 5826 - integrity sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw== 5827 - dependencies: 5828 - abab "^2.0.0" 5829 - acorn "^5.5.3" 5830 - acorn-globals "^4.1.0" 5831 - array-equal "^1.0.0" 5832 - cssom ">= 0.3.2 < 0.4.0" 5833 - cssstyle "^1.0.0" 5834 - data-urls "^1.0.0" 5835 - domexception "^1.0.1" 5836 - escodegen "^1.9.1" 5837 - html-encoding-sniffer "^1.0.2" 5838 - left-pad "^1.3.0" 5839 - nwsapi "^2.0.7" 5840 - parse5 "4.0.0" 5841 - pn "^1.1.0" 5842 - request "^2.87.0" 5843 - request-promise-native "^1.0.5" 5844 - sax "^1.2.4" 5845 - symbol-tree "^3.2.2" 5846 - tough-cookie "^2.3.4" 5847 - w3c-hr-time "^1.0.1" 5848 - webidl-conversions "^4.0.2" 5849 - whatwg-encoding "^1.0.3" 5850 - whatwg-mimetype "^2.1.0" 5851 - whatwg-url "^6.4.1" 5852 - ws "^5.2.0" 5853 - xml-name-validator "^3.0.0" 5854 - 5855 jsesc@^1.3.0: 5856 version "1.3.0" 5857 resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" ··· 5883 version "0.4.1" 5884 resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 5885 integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 5886 5887 json-schema@0.2.3: 5888 version "0.2.3" ··· 5917 minimist "^1.2.0" 5918 5919 json5@^2.0.0, json5@^2.1.2: 5920 - version "2.1.3" 5921 - resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43" 5922 - integrity sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA== 5923 dependencies: 5924 minimist "^1.2.5" 5925 5926 - jsonfile@^4.0.0: 5927 - version "4.0.0" 5928 - resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 5929 - integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 5930 - optionalDependencies: 5931 - graceful-fs "^4.1.6" 5932 - 5933 jsonlint@1.6.3: 5934 version "1.6.3" 5935 resolved "https://registry.yarnpkg.com/jsonlint/-/jsonlint-1.6.3.tgz#cb5e31efc0b78291d0d862fbef05900adf212988" ··· 5976 integrity sha1-4a5U0OqUiPn2C2a2aPAumhlGxus= 5977 5978 khroma@^1.1.0: 5979 - version "1.2.0" 5980 - resolved "https://registry.yarnpkg.com/khroma/-/khroma-1.2.0.tgz#46dcc9d7533923c228b51724db108f11fec108d8" 5981 - integrity sha512-DlKk5y243dujy8fOH02aRnnewLfiHJV0s8aXaVrCohgBf3s7fEAn6gc6LLQ21agODlFZS8ufrn+juu70uCA9Tw== 5982 5983 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 5984 version "3.2.2" ··· 6004 resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 6005 integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 6006 6007 kuler@^2.0.0: 6008 version "2.0.0" 6009 resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" ··· 6024 dependencies: 6025 readable-stream "^2.0.5" 6026 6027 - ldap-filter@0.2.2: 6028 - version "0.2.2" 6029 - resolved "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.2.2.tgz#f2b842be0b86da3352798505b31ebcae590d77d0" 6030 - integrity sha1-8rhCvguG2jNSeYUFsx68rlkNd9A= 6031 dependencies: 6032 - assert-plus "0.1.5" 6033 6034 - ldapauth-fork@^4.3.2: 6035 - version "4.3.3" 6036 - resolved "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-4.3.3.tgz#d62c8f18a5035fd47a572f2ac7aa8c8227b3f4c2" 6037 - integrity sha512-x76VpQ5ZqkwAJmqwcD6KIwDiNEbgIGIPGwC/eA17e1dxWhlTx36w0DlLOFwjTuZ2iuaLTsZsUprlVqvSlwc/1Q== 6038 dependencies: 6039 - "@types/ldapjs" "^1.0.0" 6040 - "@types/node" "*" 6041 bcryptjs "^2.4.0" 6042 - ldapjs "^1.0.2" 6043 - lru-cache "^5.1.1" 6044 6045 - ldapjs@^1.0.2: 6046 - version "1.0.2" 6047 - resolved "https://registry.yarnpkg.com/ldapjs/-/ldapjs-1.0.2.tgz#544ff7032b7b83c68f0701328d9297aa694340f9" 6048 - integrity sha1-VE/3Ayt7g8aPBwEyjZKXqmlDQPk= 6049 dependencies: 6050 - asn1 "0.2.3" 6051 assert-plus "^1.0.0" 6052 backoff "^2.5.0" 6053 - bunyan "^1.8.3" 6054 - dashdash "^1.14.0" 6055 - ldap-filter "0.2.2" 6056 once "^1.4.0" 6057 - vasync "^1.6.4" 6058 verror "^1.8.1" 6059 - optionalDependencies: 6060 - dtrace-provider "~0.8" 6061 6062 - left-pad@^1.3.0: 6063 - version "1.3.0" 6064 - resolved "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz#5b8a3a7765dfe001261dde915589e782f8c94d1e" 6065 - integrity sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA== 6066 - 6067 - less-loader@5.0.0: 6068 - version "5.0.0" 6069 - resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-5.0.0.tgz#498dde3a6c6c4f887458ee9ed3f086a12ad1b466" 6070 - integrity sha512-bquCU89mO/yWLaUq0Clk7qCsKhsF/TZpJUzETRvJa9KSVEL9SO3ovCvdEHISBhrC81OwC8QSVX7E0bzElZj9cg== 6071 dependencies: 6072 - clone "^2.1.1" 6073 - loader-utils "^1.1.0" 6074 - pify "^4.0.1" 6075 6076 - less@3.13.1: 6077 - version "3.13.1" 6078 - resolved "https://registry.yarnpkg.com/less/-/less-3.13.1.tgz#0ebc91d2a0e9c0c6735b83d496b0ab0583077909" 6079 - integrity sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw== 6080 dependencies: 6081 copy-anything "^2.0.1" 6082 tslib "^1.10.0" 6083 optionalDependencies: 6084 errno "^0.1.1" ··· 6086 image-size "~0.5.0" 6087 make-dir "^2.1.0" 6088 mime "^1.4.1" 6089 - native-request "^1.0.5" 6090 source-map "~0.6.0" 6091 6092 - levn@^0.3.0, levn@~0.3.0: 6093 - version "0.3.0" 6094 - resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 6095 - integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 6096 dependencies: 6097 - prelude-ls "~1.1.2" 6098 - type-check "~0.3.2" 6099 6100 libnpmconfig@^1.0.0: 6101 version "1.2.1" ··· 6111 resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 6112 integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 6113 6114 - linkify-it@^2.0.0: 6115 - version "2.2.0" 6116 - resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz#e3b54697e78bf915c70a38acd78fd09e0058b1cf" 6117 - integrity sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw== 6118 dependencies: 6119 uc.micro "^1.0.1" 6120 6121 - list.js@^1.5.0: 6122 - version "1.5.0" 6123 - resolved "https://registry.yarnpkg.com/list.js/-/list.js-1.5.0.tgz#a4cbfc8281ddefc02fdb2d30c8748bfae25fbcda" 6124 - integrity sha1-pMv8goHd78Av2y0wyHSL+uJfvNo= 6125 dependencies: 6126 string-natural-compare "^2.0.2" 6127 ··· 6148 resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" 6149 integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== 6150 6151 - loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3, loader-utils@^1.4.0: 6152 version "1.4.0" 6153 resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 6154 integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== ··· 6189 dependencies: 6190 p-locate "^4.1.0" 6191 6192 lodash.assignin@^4.0.9: 6193 version "4.2.0" 6194 resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" ··· 6198 version "4.2.1" 6199 resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 6200 integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU= 6201 6202 lodash.defaults@^4.0.1, lodash.defaults@^4.2.0: 6203 version "4.2.0" ··· 6224 resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 6225 integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= 6226 6227 lodash.isplainobject@^4.0.6: 6228 version "4.0.6" 6229 resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" ··· 6264 resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 6265 integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= 6266 6267 - lodash.sortby@^4.7.0: 6268 - version "4.7.0" 6269 - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 6270 - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 6271 6272 lodash.union@^4.6.0: 6273 version "4.6.0" ··· 6279 resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 6280 integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 6281 6282 - lodash@4.17.x, lodash@^4.14.2, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.4, lodash@^4.17.5: 6283 - version "4.17.20" 6284 - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 6285 - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 6286 6287 logform@^2.2.0: 6288 version "2.2.0" ··· 6300 resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 6301 integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 6302 6303 - longest-streak@^2.0.1: 6304 version "2.0.4" 6305 resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" 6306 integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== ··· 6324 dependencies: 6325 tslib "^2.0.3" 6326 6327 - lru-cache@^4.1.3, lru-cache@^4.1.5: 6328 version "4.1.5" 6329 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 6330 integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== ··· 6346 dependencies: 6347 yallist "^4.0.0" 6348 6349 - lru-queue@^0.1.0: 6350 - version "0.1.0" 6351 - resolved "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz#2738bd9f0d3cf4f84490c5736c48699ac632cda3" 6352 - integrity sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM= 6353 - dependencies: 6354 - es5-ext "~0.10.2" 6355 - 6356 lutim@^1.0.2: 6357 version "1.0.3" 6358 resolved "https://registry.yarnpkg.com/lutim/-/lutim-1.0.3.tgz#3a29d0f2731eed7097f2d7367defeaa2ae45d820" ··· 6363 6364 "lz-string@git+https://github.com/hackmdio/lz-string.git": 6365 version "1.4.4" 6366 resolved "git+https://github.com/hackmdio/lz-string.git#efd1f64676264d6d8871b01f4f375fc6ef4f9022" 6367 6368 make-dir@^1.0.0: ··· 6412 object-visit "^1.0.0" 6413 6414 mariadb@^2.1.2: 6415 - version "2.5.2" 6416 - resolved "https://registry.yarnpkg.com/mariadb/-/mariadb-2.5.2.tgz#0046331541589a9c0405507d91d79bcc972b3f5e" 6417 - integrity sha512-SfaBl5/LiX2qJNNr7wCQvizVjtWxVm1CUWYKe+y4OMeyYMM6g0GhwX7/BbGtv/O3WthnGrM+Kj1imFnlescO0w== 6418 dependencies: 6419 "@types/geojson" "^7946.0.7" 6420 - "@types/node" "^14.14.7" 6421 denque "^1.4.1" 6422 iconv-lite "^0.6.2" 6423 long "^4.0.0" 6424 - moment-timezone "^0.5.32" 6425 please-upgrade-node "^3.2.0" 6426 6427 - markdown-escapes@^1.0.0: 6428 - version "1.0.4" 6429 - resolved "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz#c95415ef451499d7602b91095f3c8e8975f78535" 6430 - integrity sha512-8z4efJYk43E0upd0NbVXwgSTQs6cT3T06etieCMEg7dRbzCbxUCK/GHlX8mhHRDcp+OLlHkPKsvqQTCvsRl2cg== 6431 - 6432 markdown-extensions@^1.1.0: 6433 version "1.1.1" 6434 resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" ··· 6439 resolved "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz#d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8" 6440 integrity sha1-1mtTZFIcuz3Yqlna37ovtoZcj9g= 6441 6442 - markdown-it-container@^2.0.0: 6443 - version "2.0.0" 6444 - resolved "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-2.0.0.tgz#0019b43fd02eefece2f1960a2895fba81a404695" 6445 - integrity sha1-ABm0P9Au7+zi8ZYKKJX7qBpARpU= 6446 6447 markdown-it-deflist@^2.0.1: 6448 version "2.1.0" 6449 resolved "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.1.0.tgz#50d7a56b9544cd81252f7623bd785e28a8dcef5c" 6450 integrity sha512-3OuqoRUlSxJiuQYu0cWTLHNhhq2xtoSFqsZK8plANg91+RJQU1ziQ6lA2LzmFAEes18uPBsHZpcX6We5l76Nzg== 6451 6452 - markdown-it-emoji@^1.3.0: 6453 - version "1.4.0" 6454 - resolved "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz#9bee0e9a990a963ba96df6980c4fddb05dfb4dcc" 6455 - integrity sha1-m+4OmpkKljupbfaYDE/dsF37Tcw= 6456 6457 markdown-it-footnote@^3.0.1: 6458 version "3.0.2" ··· 6464 resolved "https://registry.yarnpkg.com/markdown-it-imsize/-/markdown-it-imsize-2.0.1.tgz#cca0427905d05338a247cb9ca9d968c5cddd5170" 6465 integrity sha1-zKBCeQXQUziiR8ucqdloxc3dUXA= 6466 6467 - markdown-it-ins@^2.0.0: 6468 - version "2.0.0" 6469 - resolved "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz#a5aa6a30f1e2f71e9497567cfdff40f1fde67483" 6470 - integrity sha1-papqMPHi9x6Ul1Z8/f9A8f3mdIM= 6471 6472 - markdown-it-mark@^2.0.0: 6473 - version "2.0.0" 6474 - resolved "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz#46a1aa947105aed8188978e0a016179e404f42c7" 6475 - integrity sha1-RqGqlHEFrtgYiXjgoBYXnkBPQsc= 6476 6477 markdown-it-mathjax@^2.0.0: 6478 version "2.0.0" ··· 6494 resolved "https://registry.yarnpkg.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz#cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3" 6495 integrity sha1-y5yf+RpSVawI8/09YyhuFd8KH8M= 6496 6497 - markdown-it@^10.0.0: 6498 - version "10.0.0" 6499 - resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz#abfc64f141b1722d663402044e43927f1f50a8dc" 6500 - integrity sha512-YWOP1j7UbDNz+TumYP1kpwnP0aEa711cJjrAQrzd0UXlbJfc5aAq0F/PZHjiioqDC1NKgvIMX+o+9Bk7yuM2dg== 6501 dependencies: 6502 - argparse "^1.0.7" 6503 - entities "~2.0.0" 6504 - linkify-it "^2.0.0" 6505 mdurl "^1.0.1" 6506 uc.micro "^1.0.5" 6507 6508 - markdown-table@^2.0.0: 6509 - version "2.0.0" 6510 - resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz#194a90ced26d31fe753d8b9434430214c011865b" 6511 - integrity sha512-Ezda85ToJUBhM6WGaG6veasyym+Tbs3cMAw/ZhOPqXiYsr0jgocBV3j3nx+4lk47plLlIqjwuTm/ywVI+zjJ/A== 6512 - dependencies: 6513 - repeat-string "^1.0.0" 6514 - 6515 - marked@~1.2.0: 6516 - version "1.2.7" 6517 - resolved "https://registry.yarnpkg.com/marked/-/marked-1.2.7.tgz#6e14b595581d2319cdcf033a24caaf41455a01fb" 6518 - integrity sha512-No11hFYcXr/zkBvL6qFmAp1z6BKY3zqLMHny/JN/ey+al7qwCM2+CMBL9BOgqMxZU36fz4cCWfn2poWIf7QRXA== 6519 6520 math-interval-parser@^2.0.1: 6521 version "2.0.1" ··· 6561 resolved "https://registry.yarnpkg.com/mdast-comment-marker/-/mdast-comment-marker-1.1.2.tgz#5ad2e42cfcc41b92a10c1421a98c288d7b447a6d" 6562 integrity sha512-vTFXtmbbF3rgnTh3Zl3irso4LtvwUq/jaDvT2D1JqTGAwaipcS7RpTxzi6KjoRqI9n2yuAhzLDAC8xVTF3XYVQ== 6563 6564 - mdast-util-compact@^2.0.0: 6565 - version "2.0.1" 6566 - resolved "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-2.0.1.tgz#cabc69a2f43103628326f35b1acf735d55c99490" 6567 - integrity sha512-7GlnT24gEwDrdAwEHrU4Vv5lLWrEer4KOkAiKT9nYstsTad7Oc1TwqT2zIMKRdZF7cTuaf+GA1E4Kv7jJh8mPA== 6568 dependencies: 6569 - unist-util-visit "^2.0.0" 6570 6571 mdast-util-heading-style@^1.0.2: 6572 version "1.0.6" 6573 resolved "https://registry.yarnpkg.com/mdast-util-heading-style/-/mdast-util-heading-style-1.0.6.tgz#6410418926fd5673d40f519406b35d17da10e3c5" 6574 integrity sha512-8ZuuegRqS0KESgjAGW8zTx4tJ3VNIiIaGFNEzFpRSAQBavVc7AvOo9I4g3crcZBfYisHs4seYh0rAVimO6HyOw== 6575 6576 mdast-util-to-string@^1.0.2: 6577 version "1.1.0" 6578 resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" 6579 integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== 6580 6581 mdn-data@2.0.14: 6582 version "2.0.14" ··· 6598 resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 6599 integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 6600 6601 - memoizee@^0.4.14: 6602 - version "0.4.15" 6603 - resolved "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz#e6f3d2da863f318d02225391829a6c5956555b72" 6604 - integrity sha512-UBWmJpLZd5STPm7PMUlOw/TSy972M+z8gcyQ5veOnSDRREz/0bmpyTfKt3/51DhEBqCZQn1udM/5flcSPYhkdQ== 6605 - dependencies: 6606 - d "^1.0.1" 6607 - es5-ext "^0.10.53" 6608 - es6-weak-map "^2.0.3" 6609 - event-emitter "^0.3.5" 6610 - is-promise "^2.2.2" 6611 - lru-queue "^0.1.0" 6612 - next-tick "^1.1.0" 6613 - timers-ext "^0.1.7" 6614 - 6615 memory-fs@^0.4.1: 6616 version "0.4.1" 6617 resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" ··· 6633 resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 6634 integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 6635 6636 merge2@^1.3.0: 6637 version "1.4.1" 6638 resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 6639 integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 6640 6641 mermaid@^8.5.1: 6642 - version "8.8.4" 6643 - resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-8.8.4.tgz#5ea699bcfa1ef848d78b2ce8efb1e0118f30d9f7" 6644 - integrity sha512-YPn35uEAIrOcsDPjCiKNXXBdO1Aoazsv2zTZjG4+oXa7+tTVUb5sI81NqaTYa47RnoH9Vl4waLlEEJfB8KM9VA== 6645 dependencies: 6646 "@braintree/sanitize-url" "^3.1.0" 6647 d3 "^5.7.0" ··· 6676 6677 "meta-marked@git+https://github.com/hedgedoc/meta-marked": 6678 version "0.4.5" 6679 - resolved "git+https://github.com/hedgedoc/meta-marked#4fb5cb5a204969cc91e66eee92c0211188e69a2b" 6680 dependencies: 6681 - js-yaml "~3.14.0" 6682 - marked "~1.2.0" 6683 6684 - method-override@^2.3.7: 6685 - version "2.3.10" 6686 - resolved "https://registry.yarnpkg.com/method-override/-/method-override-2.3.10.tgz#e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4" 6687 - integrity sha1-49r41d7hDdLc59SuiNYrvud0drQ= 6688 dependencies: 6689 - debug "2.6.9" 6690 methods "~1.1.2" 6691 parseurl "~1.3.2" 6692 vary "~1.1.2" ··· 6696 resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 6697 integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 6698 6699 micromatch@^2.1.5: 6700 version "2.3.11" 6701 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" ··· 6715 parse-glob "^3.0.4" 6716 regex-cache "^0.4.2" 6717 6718 - micromatch@^3.0.4, micromatch@^3.1.10, micromatch@^3.1.4: 6719 version "3.1.10" 6720 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 6721 integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== ··· 6735 to-regex "^3.0.2" 6736 6737 micromatch@^4.0.2: 6738 - version "4.0.2" 6739 - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 6740 - integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 6741 dependencies: 6742 braces "^3.0.1" 6743 - picomatch "^2.0.5" 6744 6745 miller-rabin@^4.0.0: 6746 version "4.0.1" ··· 6750 bn.js "^4.0.0" 6751 brorand "^1.0.1" 6752 6753 - mime-db@1.45.0, "mime-db@>= 1.43.0 < 2": 6754 - version "1.45.0" 6755 - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" 6756 - integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== 6757 6758 - mime-types@^2.1.12, mime-types@^2.1.14, mime-types@^2.1.3, mime-types@~2.1.19, mime-types@~2.1.24: 6759 - version "2.1.28" 6760 - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" 6761 - integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== 6762 dependencies: 6763 - mime-db "1.45.0" 6764 6765 mime@1.3.4: 6766 version "1.3.4" ··· 6772 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 6773 integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 6774 6775 - mime@^2.4.4: 6776 - version "2.4.7" 6777 - resolved "https://registry.yarnpkg.com/mime/-/mime-2.4.7.tgz#962aed9be0ed19c91fd7dc2ece5d7f4e89a90d74" 6778 - integrity sha512-dhNd1uA2u397uQk3Nv5LM4lm93WYDUXFn3Fu291FJerns4jyTudqhIWe4W04YLy7Uk1tm1Ore04NpjRvQp/NPA== 6779 6780 - mimic-fn@^1.0.0: 6781 - version "1.2.0" 6782 - resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" 6783 - integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== 6784 - 6785 - mini-css-extract-plugin@0.12.0: 6786 - version "0.12.0" 6787 - resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.12.0.tgz#ddeb74fd6304ca9f99c1db74acc7d5b507705454" 6788 - integrity sha512-z6PQCe9rd1XUwZ8gMaEVwwRyZlrYy8Ba1gRjFP5HcV51HkXX+XlwZ+a1iAYTjSYwgNBXoNR7mhx79mDpOn5fdw== 6789 dependencies: 6790 - loader-utils "^1.1.0" 6791 - normalize-url "1.9.1" 6792 - schema-utils "^1.0.0" 6793 webpack-sources "^1.1.0" 6794 6795 minify@^4.1.1: ··· 6810 resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 6811 integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 6812 6813 - minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1: 6814 version "1.0.1" 6815 resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 6816 integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 6817 6818 - "minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4: 6819 version "3.0.4" 6820 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 6821 integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 6822 dependencies: 6823 brace-expansion "^1.1.7" 6824 6825 - minimist@0.0.8: 6826 - version "0.0.8" 6827 - resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" 6828 - integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= 6829 - 6830 minimist@^1.2.0, minimist@^1.2.5: 6831 version "1.2.5" 6832 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 6833 integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 6834 6835 - minio@^6.0.0: 6836 - version "6.0.0" 6837 - resolved "https://registry.yarnpkg.com/minio/-/minio-6.0.0.tgz#7e514d38eaacf2264556b232f1c2c063cc6ca7ba" 6838 - integrity sha1-flFNOOqs8iZFVrIy8cLAY8xsp7o= 6839 dependencies: 6840 - async "^1.5.2" 6841 - block-stream2 "^1.0.0" 6842 - concat-stream "^1.4.8" 6843 - es6-error "^2.0.2" 6844 json-stream "^1.0.0" 6845 - lodash "^4.14.2" 6846 mime-types "^2.1.14" 6847 mkdirp "^0.5.1" 6848 querystring "0.2.0" 6849 - source-map-support "^0.4.12" 6850 - through2 "^0.6.5" 6851 - uuid "^3.1.0" 6852 xml "^1.0.0" 6853 xml2js "^0.4.15" 6854 ··· 6927 for-in "^1.0.2" 6928 is-extendable "^1.0.1" 6929 6930 - mkdirp@0.5.1: 6931 - version "0.5.1" 6932 - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903" 6933 - integrity sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM= 6934 - dependencies: 6935 - minimist "0.0.8" 6936 - 6937 - mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: 6938 version "0.5.5" 6939 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 6940 integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== ··· 6946 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 6947 integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 6948 6949 - mocha@5.2.0: 6950 - version "5.2.0" 6951 - resolved "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz#6d8ae508f59167f940f2b5b3c4a612ae50c90ae6" 6952 - integrity sha512-2IUgKDhc3J7Uug+FxMXuqIyYzH7gJjXECKe/w43IGgQHTSj3InJi+yAA7T24L9bQMRKiUEHxEX37G5JpVUGLcQ== 6953 dependencies: 6954 browser-stdout "1.3.1" 6955 - commander "2.15.1" 6956 - debug "3.1.0" 6957 - diff "3.5.0" 6958 - escape-string-regexp "1.0.5" 6959 - glob "7.1.2" 6960 growl "1.10.5" 6961 - he "1.1.1" 6962 minimatch "3.0.4" 6963 - mkdirp "0.5.1" 6964 - supports-color "5.4.0" 6965 6966 mock-require@3.0.3: 6967 version "3.0.3" ··· 6976 resolved "https://registry.yarnpkg.com/moment-mini/-/moment-mini-2.24.0.tgz#fa68d98f7fe93ae65bf1262f6abb5fb6983d8d18" 6977 integrity sha512-9ARkWHBs+6YJIvrIp0Ik5tyTTtP9PoV0Ssu2Ocq5y9v8+NOOpWiRshAp8c4rZVWTOe+157on/5G+zj5pwIQFEQ== 6978 6979 - moment-timezone@^0.5.21, moment-timezone@^0.5.32: 6980 - version "0.5.32" 6981 - resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.32.tgz#db7677cc3cc680fd30303ebd90b0da1ca0dfecc2" 6982 - integrity sha512-Z8QNyuQHQAmWucp8Knmgei8YNo28aLjJq6Ma+jy1ZSpSk5nyfRT8xgUbSQvD2+2UajISfenndwvFuH3NGS+nvA== 6983 dependencies: 6984 moment ">= 2.9.0" 6985 6986 - "moment@>= 2.9.0", moment@^2.17.1, moment@^2.19.3, moment@^2.24.0: 6987 version "2.29.1" 6988 resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" 6989 integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== ··· 7026 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 7027 integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 7028 7029 - ms@^2.1.1: 7030 version "2.1.3" 7031 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 7032 integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 7033 7034 mustache@^4.0.1: 7035 - version "4.1.0" 7036 - resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.1.0.tgz#8c1b042238a982d2eb2d30efc6c14296ae3f699d" 7037 - integrity sha512-0FsgP/WVq4mKyjolIyX+Z9Bd+3WS8GOwoUTyKXT5cTYMGeauNTi2HPCwERqseC1IHAy0Z7MDZnJBfjabd4O8GQ== 7038 - 7039 - mute-stream@0.0.7: 7040 - version "0.0.7" 7041 - resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" 7042 - integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= 7043 - 7044 - mv@~2: 7045 - version "2.1.1" 7046 - resolved "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz#ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2" 7047 - integrity sha1-rmzg1vbV4KT32JN5jQPB6pVZtqI= 7048 - dependencies: 7049 - mkdirp "~0.5.1" 7050 - ncp "~2.0.0" 7051 - rimraf "~2.4.0" 7052 7053 mysql2@^2.0.0: 7054 version "2.2.5" ··· 7071 dependencies: 7072 lru-cache "^4.1.3" 7073 7074 - nan@^2.12.1, nan@^2.14.0: 7075 version "2.14.2" 7076 resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" 7077 integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== 7078 7079 nanoid@^2.1.0: 7080 version "2.1.11" 7081 resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.11.tgz#ec24b8a758d591561531b4176a01e3ab4f0f0280" 7082 integrity sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA== 7083 7084 nanomatch@^1.2.9: 7085 version "1.2.13" 7086 resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" ··· 7103 resolved "https://registry.yarnpkg.com/native-duplexpair/-/native-duplexpair-1.0.0.tgz#7899078e64bf3c8a3d732601b3d40ff05db58fa0" 7104 integrity sha1-eJkHjmS/PIo9cyYBs9QP8F21j6A= 7105 7106 - native-request@^1.0.5: 7107 - version "1.0.8" 7108 - resolved "https://registry.yarnpkg.com/native-request/-/native-request-1.0.8.tgz#8f66bf606e0f7ea27c0e5995eb2f5d03e33ae6fb" 7109 - integrity sha512-vU2JojJVelUGp6jRcLwToPoWGxSx23z/0iX+I77J3Ht17rf2INGjrhOoQnjVo60nQd8wVsgzKkPfRXBiVdD2ag== 7110 - 7111 natural-compare@^1.4.0: 7112 version "1.4.0" 7113 resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 7114 integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 7115 7116 - ncp@~2.0.0: 7117 - version "2.0.0" 7118 - resolved "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz#195a21d6c46e361d2fb1281ba38b91e9df7bdbb3" 7119 - integrity sha1-GVoh1sRuNh0vsSgbo4uR6d9727M= 7120 - 7121 - needle@^2.2.1: 7122 version "2.6.0" 7123 resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" 7124 integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== ··· 7137 resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 7138 integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 7139 7140 - next-tick@1, next-tick@^1.1.0: 7141 - version "1.1.0" 7142 - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb" 7143 - integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ== 7144 - 7145 - next-tick@~1.0.0: 7146 - version "1.0.0" 7147 - resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" 7148 - integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= 7149 - 7150 - nice-try@^1.0.4: 7151 - version "1.0.5" 7152 - resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" 7153 - integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== 7154 - 7155 no-case@^2.2.0: 7156 version "2.3.2" 7157 resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" ··· 7167 lower-case "^2.0.2" 7168 tslib "^2.0.3" 7169 7170 - nocache@2.1.0: 7171 - version "2.1.0" 7172 - resolved "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz#120c9ffec43b5729b1d5de88cd71aa75a0ba491f" 7173 - integrity sha512-0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q== 7174 7175 node-forge@^0.10.0: 7176 version "0.10.0" ··· 7181 version "4.2.3" 7182 resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739" 7183 integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg== 7184 7185 node-libs-browser@^2.2.1: 7186 version "2.2.1" ··· 7227 semver "^5.3.0" 7228 tar "^4" 7229 7230 - node-releases@^1.1.69: 7231 - version "1.1.69" 7232 - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.69.tgz#3149dbde53b781610cd8b486d62d86e26c3725f6" 7233 - integrity sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA== 7234 7235 nomnom@^1.5.x: 7236 version "1.8.1" ··· 7239 dependencies: 7240 chalk "~0.4.0" 7241 underscore "~1.6.0" 7242 7243 nopt@^4.0.1: 7244 version "4.0.3" ··· 7248 abbrev "1" 7249 osenv "^0.1.4" 7250 7251 - nopt@^5.0.0: 7252 - version "5.0.0" 7253 - resolved "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz#530942bb58a512fccafe53fe210f13a25355dc88" 7254 - integrity sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ== 7255 - dependencies: 7256 - abbrev "1" 7257 - 7258 normalize-package-data@^2.3.2: 7259 version "2.5.0" 7260 resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" ··· 7277 resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 7278 integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 7279 7280 - normalize-url@1.9.1: 7281 - version "1.9.1" 7282 - resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz#2cc0d66b31ea23036458436e3620d85954c66c3c" 7283 - integrity sha1-LMDWazHqIwNkWENuNiDYWVTGbDw= 7284 - dependencies: 7285 - object-assign "^4.0.1" 7286 - prepend-http "^1.0.0" 7287 - query-string "^4.1.0" 7288 - sort-keys "^1.0.0" 7289 - 7290 normalize-url@^3.0.0: 7291 version "3.3.0" 7292 resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" 7293 integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== 7294 7295 npm-bundled@^1.0.1: 7296 - version "1.1.1" 7297 - resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz#1edd570865a94cdb1bc8220775e29466c9fb234b" 7298 - integrity sha512-gqkfgGePhTpAEgUsGEgcq1rqPXA+tv/aVBlgEzfXwA1yiUJF7xtEt3CtVwOjNYQOVknDk0F20w58Fnm3EtG0fA== 7299 dependencies: 7300 npm-normalize-package-bin "^1.0.1" 7301 ··· 7313 npm-bundled "^1.0.1" 7314 npm-normalize-package-bin "^1.0.1" 7315 7316 - npmlog@^4.0.2: 7317 version "4.1.2" 7318 resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 7319 integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== ··· 7340 resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 7341 integrity sha1-i6tIb/f6Pf0IZla76LFxFtNpLSo= 7342 7343 - nwsapi@^2.0.7: 7344 - version "2.2.0" 7345 - resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 7346 - integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 7347 - 7348 oauth-sign@~0.9.0: 7349 version "0.9.0" 7350 resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" ··· 7355 resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" 7356 integrity sha1-vR/vr2hslrdUda7VGWQS/2DPucE= 7357 7358 - object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1: 7359 version "4.1.1" 7360 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 7361 integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= ··· 7369 define-property "^0.2.5" 7370 kind-of "^3.0.3" 7371 7372 - object-inspect@^1.8.0: 7373 - version "1.9.0" 7374 - resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz#c90521d74e1127b67266ded3394ad6116986533a" 7375 - integrity sha512-i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw== 7376 7377 - object-is@^1.0.1: 7378 - version "1.1.4" 7379 - resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.4.tgz#63d6c83c00a43f4cbc9434eb9757c8a5b8565068" 7380 - integrity sha512-1ZvAZ4wlF7IyPVOcE1Omikt7UpaFlOQq0HlSti+ZvDH3UiD2brwGMwDbyV43jao2bKJ+4+WdPJHSd7kgzKYVqg== 7381 dependencies: 7382 - call-bind "^1.0.0" 7383 define-properties "^1.1.3" 7384 7385 object-keys@^1.0.12, object-keys@^1.1.1: ··· 7394 dependencies: 7395 isobject "^3.0.0" 7396 7397 - object.assign@^4.1.1: 7398 version "4.1.2" 7399 resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 7400 integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== ··· 7405 object-keys "^1.1.1" 7406 7407 object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: 7408 - version "2.1.1" 7409 - resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz#0dfda8d108074d9c563e80490c883b6661091544" 7410 - integrity sha512-6DtXgZ/lIZ9hqx4GtZETobXLR/ZLaa0aqV0kzbn80Rf8Z2e/XFnhA0I7p07N2wH8bBBltr2xQPi6sbKWAY2Eng== 7411 dependencies: 7412 - call-bind "^1.0.0" 7413 define-properties "^1.1.3" 7414 - es-abstract "^1.18.0-next.1" 7415 7416 object.omit@^2.0.0: 7417 version "2.0.1" ··· 7429 isobject "^3.0.1" 7430 7431 object.values@^1.1.0, object.values@^1.1.1: 7432 - version "1.1.2" 7433 - resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz#7a2015e06fcb0f546bd652486ce8583a4731c731" 7434 - integrity sha512-MYC0jvJopr8EK6dPBiO8Nb9mvjdypOachO5REGk6MXzujbBrAisKo3HmdEI6kZDL6fC31Mwee/5YbtMebixeag== 7435 dependencies: 7436 - call-bind "^1.0.0" 7437 define-properties "^1.1.3" 7438 - es-abstract "^1.18.0-next.1" 7439 has "^1.0.3" 7440 7441 on-finished@~2.3.0: ··· 7464 dependencies: 7465 fn.name "1.x.x" 7466 7467 - onetime@^2.0.0: 7468 - version "2.0.1" 7469 - resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" 7470 - integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ= 7471 dependencies: 7472 - mimic-fn "^1.0.0" 7473 7474 openid@2.x.x: 7475 - version "2.0.7" 7476 - resolved "https://registry.yarnpkg.com/openid/-/openid-2.0.7.tgz#37bf50af2aa692623364c004de35d41fd399c6e4" 7477 - integrity sha512-xH6qaz/hS55rEX8xURz4HRUO96cpj821WY6UEG9rgcusZ8Jsq54jGWP1EMCjGvgngonw8vgSljM1i2OESv16Gw== 7478 dependencies: 7479 request "^2.88.2" 7480 ··· 7486 cssnano "^4.1.10" 7487 last-call-webpack-plugin "^3.0.0" 7488 7489 - optionator@^0.8.1, optionator@^0.8.2: 7490 - version "0.8.3" 7491 - resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 7492 - integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 7493 dependencies: 7494 - deep-is "~0.1.3" 7495 - fast-levenshtein "~2.0.6" 7496 - levn "~0.3.0" 7497 - prelude-ls "~1.1.2" 7498 - type-check "~0.3.2" 7499 - word-wrap "~1.2.3" 7500 7501 os-browserify@^0.3.0: 7502 version "0.3.0" ··· 7508 resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 7509 integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 7510 7511 - os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: 7512 version "1.0.2" 7513 resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 7514 integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 7515 7516 - osenv@^0.1.4: 7517 version "0.1.5" 7518 resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 7519 integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== ··· 7572 dependencies: 7573 p-limit "^2.2.0" 7574 7575 p-map@^4.0.0: 7576 version "4.0.0" 7577 resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" ··· 7679 json-parse-better-errors "^1.0.1" 7680 7681 parse-json@^5.0.0: 7682 - version "5.1.0" 7683 - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" 7684 - integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== 7685 dependencies: 7686 "@babel/code-frame" "^7.0.0" 7687 error-ex "^1.3.1" 7688 json-parse-even-better-errors "^2.3.0" 7689 lines-and-columns "^1.1.6" 7690 7691 - parse-passwd@^1.0.0: 7692 - version "1.0.0" 7693 - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" 7694 - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= 7695 - 7696 - parse5@4.0.0: 7697 - version "4.0.0" 7698 - resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608" 7699 - integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA== 7700 7701 parseqs@0.0.6: 7702 version "0.0.6" ··· 7734 passport-oauth "^1.0.0" 7735 pkginfo "^0.2.3" 7736 7737 - passport-facebook@^2.1.1: 7738 - version "2.1.1" 7739 - resolved "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-2.1.1.tgz#c39d0b52ae4d59163245a4e21a7b9b6321303311" 7740 - integrity sha1-w50LUq5NWRYyRaTiGnubYyEwMxE= 7741 dependencies: 7742 passport-oauth2 "1.x.x" 7743 ··· 7748 dependencies: 7749 passport-oauth2 "1.x.x" 7750 7751 - passport-gitlab2@^4.0.0: 7752 - version "4.0.0" 7753 - resolved "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-4.0.0.tgz#08de8b54d58cbe6f22f577f977f7874df3c26efb" 7754 - integrity sha512-C/8/L8piHwv57J6fY/MzsEJc8yCkgsyBSzMWxfTfEHRvCaTkD08vJ5b/txydKrWrRPl4MHuZfisFnKlZHmq4yw== 7755 dependencies: 7756 passport-oauth2 "^1.4.0" 7757 7758 - passport-google-oauth20@^1.0.0: 7759 - version "1.0.0" 7760 - resolved "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz#3b960e8a1d70d1dbe794615c827c68c40392a5d0" 7761 - integrity sha1-O5YOih1w0dvnlGFcgnxoxAOSpdA= 7762 dependencies: 7763 passport-oauth2 "1.x.x" 7764 7765 - passport-ldapauth@^2.0.0: 7766 - version "2.1.4" 7767 - resolved "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-2.1.4.tgz#2259e4e5d2d9c2b3d50a04f6640a941effda8da9" 7768 - integrity sha512-VeVL69ZK+cpJe0DKMSGuwcf7k+V4dr0U0Y7ZhXL785pcRb5gRA6qYZfIH+XTsAzwqTK9l0Dn3Ds4weOZ1jKkLQ== 7769 dependencies: 7770 - "@types/node" "*" 7771 - "@types/passport" "^1.0.0" 7772 - ldapauth-fork "^4.3.2" 7773 passport-strategy "^1.0.0" 7774 7775 passport-local@^1.0.0: ··· 7807 passport-oauth1 "1.x.x" 7808 passport-oauth2 "1.x.x" 7809 7810 - passport-saml@^1.0.0: 7811 - version "1.5.0" 7812 - resolved "https://registry.yarnpkg.com/passport-saml/-/passport-saml-1.5.0.tgz#4f22526b577987fb2304219c29e05d2172fca5cf" 7813 - integrity sha512-6f4bfnu/X2KNbuqshOryPap0g8BvhOrlt1qDtJdA44qzQXZ5QUMwaTmexAHIf96LTqPqQ91MzPvi5MGsOgTYTw== 7814 dependencies: 7815 - debug "^3.1.0" 7816 passport-strategy "*" 7817 - xml-crypto "^2.0.0" 7818 - xml-encryption "1.2.1" 7819 - xml2js "0.4.x" 7820 - xmlbuilder "^11.0.0" 7821 - xmldom "0.1.x" 7822 7823 passport-strategy@*, passport-strategy@1.x.x, passport-strategy@^1.0.0: 7824 version "1.0.0" ··· 7873 resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 7874 integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 7875 7876 - path-is-inside@^1.0.2: 7877 - version "1.0.2" 7878 - resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" 7879 - integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= 7880 - 7881 - path-key@^2.0.1: 7882 - version "2.0.1" 7883 - resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" 7884 - integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= 7885 7886 path-parse@^1.0.6: 7887 version "1.0.6" ··· 7911 integrity sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10= 7912 7913 pbkdf2@^3.0.3: 7914 - version "3.1.1" 7915 - resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz#cb8724b0fada984596856d1a6ebafd3584654b94" 7916 - integrity sha512-4Ejy1OPxi9f2tt1rRV7Go7zmfDQ+ZectEQz3VGUQhgq62HtIRPDyG/JtnwIxs6x3uNMwo2V7q1fMvKjb+Tnpqg== 7917 dependencies: 7918 create-hash "^1.1.2" 7919 create-hmac "^1.1.4" ··· 7922 sha.js "^2.4.8" 7923 7924 pdfobject@^2.0.201604172: 7925 - version "2.2.4" 7926 - resolved "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.2.4.tgz#ccb3c191129298a471e9ccb59c88a3ee0b7c7530" 7927 - integrity sha512-r6Rw9CQWsrY6uqmKvlgFNoupmuRbSt9EsG0sZhSAy3cIk4WgOXyAVmebFSlLhqj6gA5NIEXL3lSEbwOOYfdUvw== 7928 7929 peek-readable@^3.1.3: 7930 version "3.1.3" ··· 7936 resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 7937 integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 7938 7939 - pg-connection-string@^2.4.0: 7940 - version "2.4.0" 7941 - resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.4.0.tgz#c979922eb47832999a204da5dbe1ebf2341b6a10" 7942 - integrity sha512-3iBXuv7XKvxeMrIgym7njT+HlZkwZqqGX4Bu9cci8xHZNT+Um1gWKqCsAzcC0d95rcKMU5WBg6YRUcHyV0HZKQ== 7943 7944 pg-hstore@^2.3.3: 7945 version "2.3.3" ··· 7953 resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" 7954 integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== 7955 7956 - pg-pool@^3.2.2: 7957 - version "3.2.2" 7958 - resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.2.2.tgz#a560e433443ed4ad946b84d774b3f22452694dff" 7959 - integrity sha512-ORJoFxAlmmros8igi608iVEbQNNZlp89diFVx6yV5v+ehmpMY9sK6QgpmgoXbmkNaBAx8cOOZh9g80kJv1ooyA== 7960 7961 - pg-protocol@^1.4.0: 7962 - version "1.4.0" 7963 - resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.4.0.tgz#43a71a92f6fe3ac559952555aa3335c8cb4908be" 7964 - integrity sha512-El+aXWcwG/8wuFICMQjM5ZSAm6OWiJicFdNYo+VY3QP+8vI4SvLIWVe51PppTzMhikUJR+PsyIFKqfdXPz/yxA== 7965 7966 pg-types@^2.1.0: 7967 version "2.2.0" ··· 7975 postgres-interval "^1.1.0" 7976 7977 pg@^8.2.1: 7978 - version "8.5.1" 7979 - resolved "https://registry.yarnpkg.com/pg/-/pg-8.5.1.tgz#34dcb15f6db4a29c702bf5031ef2e1e25a06a120" 7980 - integrity sha512-9wm3yX9lCfjvA98ybCyw2pADUivyNWT/yIP4ZcDVpMN0og70BUWYEGXPCTAQdGTAqnytfRADb7NERrY1qxhIqw== 7981 dependencies: 7982 buffer-writer "2.0.0" 7983 packet-reader "1.0.0" 7984 - pg-connection-string "^2.4.0" 7985 - pg-pool "^3.2.2" 7986 - pg-protocol "^1.4.0" 7987 pg-types "^2.1.0" 7988 pgpass "1.x" 7989 ··· 7994 dependencies: 7995 split2 "^3.1.1" 7996 7997 - picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: 7998 - version "2.2.2" 7999 - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 8000 - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 8001 8002 pify@^2.0.0: 8003 version "2.3.0" ··· 8028 dependencies: 8029 find-up "^3.0.0" 8030 8031 - pkg-dir@^4.1.0: 8032 version "4.2.0" 8033 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 8034 integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== ··· 8040 resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.2.3.tgz#7239c42a5ef6c30b8f328439d9b9ff71042490f8" 8041 integrity sha1-cjnEKl72wwuPMoQ52bn/cQQkkPg= 8042 8043 please-upgrade-node@^3.2.0: 8044 version "3.2.0" 8045 resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" ··· 8051 version "8.0.0" 8052 resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" 8053 integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== 8054 - 8055 - pn@^1.1.0: 8056 - version "1.1.0" 8057 - resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb" 8058 - integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA== 8059 - 8060 - pop-iterate@^1.0.1: 8061 - version "1.0.1" 8062 - resolved "https://registry.yarnpkg.com/pop-iterate/-/pop-iterate-1.0.1.tgz#ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3" 8063 - integrity sha1-zqz9q0q/NT16DyqqLB/Hs/lBO6M= 8064 8065 posix-character-classes@^0.1.0: 8066 version "0.1.1" ··· 8185 postcss "^7.0.0" 8186 postcss-selector-parser "^3.0.0" 8187 8188 - postcss-modules-extract-imports@^2.0.0: 8189 - version "2.0.0" 8190 - resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" 8191 - integrity sha512-LaYLDNS4SG8Q5WAWqIJgdHPJrDDr/Lv775rMBFUbgjTz6j34lUznACHcdRWroPvXANP2Vj7yNK57vp9eFqzLWQ== 8192 - dependencies: 8193 - postcss "^7.0.5" 8194 8195 - postcss-modules-local-by-default@^3.0.2: 8196 - version "3.0.3" 8197 - resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz#bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0" 8198 - integrity sha512-e3xDq+LotiGesympRlKNgaJ0PCzoUIdpH0dj47iWAui/kyTgh3CiAr1qP54uodmJhl6p9rN6BoNcdEDVJx9RDw== 8199 dependencies: 8200 - icss-utils "^4.1.1" 8201 - postcss "^7.0.32" 8202 postcss-selector-parser "^6.0.2" 8203 postcss-value-parser "^4.1.0" 8204 8205 - postcss-modules-scope@^2.2.0: 8206 - version "2.2.0" 8207 - resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz#385cae013cc7743f5a7d7602d1073a89eaae62ee" 8208 - integrity sha512-YyEgsTMRpNd+HmyC7H/mh3y+MeFWevy7V1evVhJWewmMbjDHIbZbOXICC2y+m1xI1UVfIT1HMW/O04Hxyu9oXQ== 8209 dependencies: 8210 - postcss "^7.0.6" 8211 - postcss-selector-parser "^6.0.0" 8212 8213 - postcss-modules-values@^3.0.0: 8214 - version "3.0.0" 8215 - resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz#5b5000d6ebae29b4255301b4a3a54574423e7f10" 8216 - integrity sha512-1//E5jCBrZ9DmRX+zCtmQtRSV6PV42Ix7Bzj9GbwJceduuf7IqP8MgeTXuRDHOWj2m0VzZD5+roFWDuU8RQjcg== 8217 dependencies: 8218 - icss-utils "^4.0.0" 8219 - postcss "^7.0.6" 8220 8221 postcss-normalize-charset@^4.0.1: 8222 version "4.0.1" ··· 8337 indexes-of "^1.0.1" 8338 uniq "^1.0.1" 8339 8340 - postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: 8341 - version "6.0.4" 8342 - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" 8343 - integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== 8344 dependencies: 8345 cssesc "^3.0.0" 8346 - indexes-of "^1.0.1" 8347 - uniq "^1.0.1" 8348 util-deprecate "^1.0.2" 8349 8350 - postcss-svgo@^4.0.2: 8351 - version "4.0.2" 8352 - resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258" 8353 - integrity sha512-C6wyjo3VwFm0QgBy+Fu7gCYOkCmgmClghO+pjcxvrcBKtiKt0uCF+hvbMO1fyv5BMImRK90SMb+dwUnfbGd+jw== 8354 dependencies: 8355 - is-svg "^3.0.0" 8356 postcss "^7.0.0" 8357 postcss-value-parser "^3.0.0" 8358 svgo "^1.0.0" ··· 8376 resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 8377 integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 8378 8379 - postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.14, postcss@^7.0.27, postcss@^7.0.32, postcss@^7.0.5, postcss@^7.0.6: 8380 version "7.0.35" 8381 resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" 8382 integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== ··· 8385 source-map "^0.6.1" 8386 supports-color "^6.1.0" 8387 8388 postgres-array@~2.0.0: 8389 version "2.0.0" 8390 resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" ··· 8412 resolved "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz#aa9591bcaa24923f1e0f4849d240f47efc1075ac" 8413 integrity sha1-qpWRvKokkj8eD0hJ0kD0fvwQdaw= 8414 8415 - prelude-ls@~1.1.2: 8416 - version "1.1.2" 8417 - resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 8418 - integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 8419 - 8420 - prepend-http@^1.0.0: 8421 - version "1.0.4" 8422 - resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" 8423 - integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= 8424 8425 preserve@^0.2.0: 8426 version "0.2.0" ··· 8472 resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 8473 integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 8474 8475 promise-inflight@^1.0.1: 8476 version "1.0.1" 8477 resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 8478 integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= 8479 8480 - proto-list@~1.2.1: 8481 - version "1.2.4" 8482 - resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 8483 - integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= 8484 - 8485 proxy-addr@~2.0.5: 8486 version "2.0.6" 8487 resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" ··· 8562 resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 8563 integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 8564 8565 - q@^2.0.3: 8566 - version "2.0.3" 8567 - resolved "https://registry.yarnpkg.com/q/-/q-2.0.3.tgz#75b8db0255a1a5af82f58c3f3aaa1efec7d0d134" 8568 - integrity sha1-dbjbAlWhpa+C9Yw/Oqoe/sfQ0TQ= 8569 - dependencies: 8570 - asap "^2.0.0" 8571 - pop-iterate "^1.0.1" 8572 - weak-map "^1.0.5" 8573 - 8574 qs@2.3.3: 8575 version "2.3.3" 8576 resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" ··· 8586 resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 8587 integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 8588 8589 - query-string@^4.1.0: 8590 - version "4.3.4" 8591 - resolved "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz#bbb693b9ca915c232515b228b1a02b609043dbeb" 8592 - integrity sha1-u7aTucqRXCMlFbIosaArYJBD2+s= 8593 - dependencies: 8594 - object-assign "^4.1.0" 8595 - strict-uri-encode "^1.0.0" 8596 - 8597 querystring-es3@^0.2.0: 8598 version "0.2.1" 8599 resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" ··· 8603 version "0.2.0" 8604 resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 8605 integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 8606 8607 random-bytes@~1.0.0: 8608 version "1.0.0" ··· 8692 normalize-package-data "^2.3.2" 8693 path-type "^2.0.0" 8694 8695 - "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.4, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@^2.3.7, readable-stream@~2.3.6: 8696 version "2.3.7" 8697 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 8698 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 8715 isarray "0.0.1" 8716 string_decoder "~0.10.x" 8717 8718 - "readable-stream@>=1.0.33-1 <1.1.0-0": 8719 - version "1.0.34" 8720 - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" 8721 - integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= 8722 - dependencies: 8723 - core-util-is "~1.0.0" 8724 - inherits "~2.0.1" 8725 - isarray "0.0.1" 8726 - string_decoder "~0.10.x" 8727 - 8728 - readable-stream@^3.0.0, readable-stream@^3.0.1, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: 8729 version "3.6.0" 8730 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 8731 integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== ··· 8782 resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b" 8783 integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw== 8784 8785 reduce-component@1.0.1: 8786 version "1.0.1" 8787 resolved "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz#e0c93542c574521bea13df0f9488ed82ab77c5da" 8788 integrity sha1-4Mk1QsV0UhvqE98PlIjtgqt3xdo= 8789 8790 - referrer-policy@1.2.0: 8791 - version "1.2.0" 8792 - resolved "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.2.0.tgz#b99cfb8b57090dc454895ef897a4cc35ef67a98e" 8793 - integrity sha512-LgQJIuS6nAy1Jd88DCQRemyE3mS+ispwlqMk3b0yjZ257fI1v9c+/p6SD5gP5FGyXUIgrNOAfmyioHwZtYv2VA== 8794 - 8795 regenerate@^1.2.1: 8796 version "1.4.2" 8797 resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" ··· 8831 extend-shallow "^3.0.2" 8832 safe-regex "^1.1.0" 8833 8834 - regexp.prototype.flags@^1.2.0: 8835 - version "1.3.0" 8836 - resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz#7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75" 8837 - integrity sha512-2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ== 8838 dependencies: 8839 define-properties "^1.1.3" 8840 - es-abstract "^1.17.0-next.1" 8841 8842 - regexpp@^2.0.1: 8843 - version "2.0.1" 8844 - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" 8845 - integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== 8846 8847 regexpu-core@^2.0.0: 8848 version "2.0.0" ··· 8870 resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 8871 integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= 8872 8873 - remark-cli@8.0.1: 8874 - version "8.0.1" 8875 - resolved "https://registry.yarnpkg.com/remark-cli/-/remark-cli-8.0.1.tgz#093e9f27c1d56a591f4c44c017de5749d4e79a08" 8876 - integrity sha512-UaYeFI5qUAzkthUd8/MLBQD5OKM6jLN8GRvF6v+KF7xO/i1jQ+X2VqUSQAxWFYxZ8R25gM56GVjeoKOZ0EIr8A== 8877 dependencies: 8878 markdown-extensions "^1.1.0" 8879 - remark "^12.0.0" 8880 unified-args "^8.0.0" 8881 8882 remark-lint-blockquote-indentation@^2.0.0: ··· 9030 unist-util-position "^3.0.0" 9031 unist-util-visit "^2.0.0" 9032 9033 - remark-lint-list-item-spacing@^2.0.0: 9034 - version "2.0.1" 9035 - resolved "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-2.0.1.tgz#864ddda464d5cd11f725c83f00bb240538661d50" 9036 - integrity sha512-T/aRHRNxiLC0v8gsb5ljFpjm/j/nHvlbCcmE5q7+LCiKLWsv7JoERrmMyx89KaBudLRPhaFHqt6u+dfWYmj6LA== 9037 dependencies: 9038 unified-lint-rule "^1.0.0" 9039 unist-util-generated "^1.1.0" ··· 9071 unist-util-position "^3.0.0" 9072 unist-util-visit "^2.0.0" 9073 9074 - remark-lint-no-blockquote-without-marker@^3.0.0: 9075 - version "3.0.1" 9076 - resolved "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-3.0.1.tgz#fb1d5a87ee6f21b731bb2ee52df55632c519a5eb" 9077 - integrity sha512-sM953+u0zN90SGd2V5hWcFbacbpaROUslS5Q5F7/aa66/2rAwh6zVnrXc4pf7fFOpj7I9Xa8Aw+uB+3RJWwdrQ== 9078 dependencies: 9079 unified-lint-rule "^1.0.0" 9080 - unist-util-generated "^1.1.0" 9081 unist-util-position "^3.0.0" 9082 unist-util-visit "^2.0.0" 9083 vfile-location "^3.0.0" 9084 9085 - remark-lint-no-consecutive-blank-lines@^2.0.0: 9086 - version "2.0.1" 9087 - resolved "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-2.0.1.tgz#4163fa21619fe69325333f83eed8a933ed32e7ec" 9088 - integrity sha512-CP34b9AOaK1iD8FDplWvF9cJ318izoOaPXb2nb7smf/NdVHBI7joDzXcD4ojHOb3DTZuQcZ2bVv36vTPi/mv0Q== 9089 dependencies: 9090 pluralize "^8.0.0" 9091 unified-lint-rule "^1.0.0" ··· 9159 unist-util-generated "^1.1.0" 9160 unist-util-visit "^2.0.0" 9161 9162 - remark-lint-no-inline-padding@^2.0.0: 9163 - version "2.0.1" 9164 - resolved "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-2.0.1.tgz#630b546566d34bde87943da318a80fc7ff856f1f" 9165 - integrity sha512-a36UlPvRrLCgxjjG3YZA9VCDvLBcoBtGNyM04VeCPz+d9hHe+5Fs1C/jL+DRLCH7nff90jJ5C/9b8/LTwhjaWA== 9166 dependencies: 9167 mdast-util-to-string "^1.0.2" 9168 unified-lint-rule "^1.0.0" ··· 9218 unist-util-generated "^1.1.0" 9219 unist-util-visit "^2.0.0" 9220 9221 - remark-lint-no-table-indentation@^2.0.0: 9222 - version "2.0.1" 9223 - resolved "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-2.0.1.tgz#67ef344389fa40be9c6017835cf58ca417c417d0" 9224 - integrity sha512-PnqIyg5qf+QbaIfolxXpakk/MR1RxZ0EdhKgVqsaEwv8+fka1LZYu7QO+ZFmrT82gVzvjRqHJkmxTskC/VP30w== 9225 dependencies: 9226 unified-lint-rule "^1.0.0" 9227 - unist-util-generated "^1.1.0" 9228 unist-util-position "^3.0.0" 9229 unist-util-visit "^2.0.0" 9230 9231 remark-lint-ordered-list-marker-style@^2.0.0: 9232 version "2.0.1" ··· 9268 unist-util-position "^3.0.0" 9269 unist-util-visit "^2.0.0" 9270 9271 - remark-lint-table-cell-padding@^2.0.0: 9272 - version "2.0.1" 9273 - resolved "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-2.0.1.tgz#b1e557ec44e1a33beb45578e97bf9441149379f6" 9274 - integrity sha512-vytUq4O1cg9UBXyeduANqpVqlbZpEtpXe/hYdvAObWgp1Jr7l74Zcvm+pn/ouaCuAsrxDVWeTa5Mg3V4OByw4g== 9275 dependencies: 9276 unified-lint-rule "^1.0.0" 9277 unist-util-generated "^1.1.0" ··· 9288 unist-util-position "^3.0.0" 9289 unist-util-visit "^2.0.0" 9290 9291 - remark-lint-table-pipes@^2.0.0: 9292 - version "2.0.1" 9293 - resolved "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-2.0.1.tgz#b8594394f65053a030e8a51baa8504e388139a19" 9294 - integrity sha512-ZdR9rj1BZYXHPXFk3Gnb4agwL+CtO/SojhHua4iRBx1WCQElCeZS3M9naRrE41+2QSNkKnytgGZJzyAlm2nFGQ== 9295 dependencies: 9296 unified-lint-rule "^1.0.0" 9297 unist-util-generated "^1.1.0" ··· 9308 unist-util-position "^3.0.0" 9309 unist-util-visit "^2.0.0" 9310 9311 - remark-lint@^7.0.0: 9312 - version "7.0.1" 9313 - resolved "https://registry.yarnpkg.com/remark-lint/-/remark-lint-7.0.1.tgz#665a5cbea9f7c95e64593f69bb6816ee8343ffdf" 9314 - integrity sha512-caZXo3qhuBxzvq9JSJFVQ/ERDq/6TJVgWn0KDwKOIJCGOuLXfQhby5XttUq+Rn7kLbNMtvwfWHJlte14LpaeXQ== 9315 dependencies: 9316 remark-message-control "^6.0.0" 9317 ··· 9323 mdast-comment-marker "^1.0.0" 9324 unified-message-control "^3.0.0" 9325 9326 - remark-parse@^8.0.0: 9327 - version "8.0.3" 9328 - resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz#9c62aa3b35b79a486454c690472906075f40c7e1" 9329 - integrity sha512-E1K9+QLGgggHxCQtLt++uXltxEprmWzNfg+MxpfHsZlrddKzZ/hZyWHDbK3/Ap8HJQqYJRXP+jHczdL6q6i85Q== 9330 dependencies: 9331 - ccount "^1.0.0" 9332 - collapse-white-space "^1.0.2" 9333 - is-alphabetical "^1.0.0" 9334 - is-decimal "^1.0.0" 9335 - is-whitespace-character "^1.0.0" 9336 - is-word-character "^1.0.0" 9337 - markdown-escapes "^1.0.0" 9338 - parse-entities "^2.0.0" 9339 - repeat-string "^1.5.4" 9340 - state-toggle "^1.0.0" 9341 - trim "0.0.1" 9342 - trim-trailing-lines "^1.0.0" 9343 - unherit "^1.0.4" 9344 - unist-util-remove-position "^2.0.0" 9345 - vfile-location "^3.0.0" 9346 - xtend "^4.0.1" 9347 9348 - remark-preset-lint-markdown-style-guide@3.0.1: 9349 - version "3.0.1" 9350 - resolved "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-3.0.1.tgz#7f160e2ded777bfb14d544e9f72c6873bdfb6da3" 9351 - integrity sha512-1C4s6TtYCPueZIkxXK8aJ6qz84WqsxA7vA11i1PBIwJuL9a254X+QlbzhhEVKp0GwV4M/YTAVcfbGWVuiNEynw== 9352 dependencies: 9353 - remark-lint "^7.0.0" 9354 remark-lint-blockquote-indentation "^2.0.0" 9355 remark-lint-code-block-style "^2.0.0" 9356 remark-lint-definition-case "^2.0.0" ··· 9366 remark-lint-link-title-style "^2.0.0" 9367 remark-lint-list-item-content-indent "^2.0.0" 9368 remark-lint-list-item-indent "^2.0.0" 9369 - remark-lint-list-item-spacing "^2.0.0" 9370 remark-lint-maximum-heading-length "^2.0.0" 9371 remark-lint-maximum-line-length "^2.0.0" 9372 remark-lint-no-auto-link-without-protocol "^2.0.0" 9373 - remark-lint-no-blockquote-without-marker "^3.0.0" 9374 - remark-lint-no-consecutive-blank-lines "^2.0.0" 9375 remark-lint-no-duplicate-headings "^2.0.0" 9376 remark-lint-no-emphasis-as-heading "^2.0.0" 9377 remark-lint-no-file-name-articles "^1.0.0" ··· 9380 remark-lint-no-file-name-mixed-case "^1.0.0" 9381 remark-lint-no-file-name-outer-dashes "^1.0.0" 9382 remark-lint-no-heading-punctuation "^2.0.0" 9383 - remark-lint-no-inline-padding "^2.0.0" 9384 remark-lint-no-literal-urls "^2.0.0" 9385 remark-lint-no-multiple-toplevel-headings "^2.0.0" 9386 remark-lint-no-shell-dollars "^2.0.0" 9387 remark-lint-no-shortcut-reference-image "^2.0.0" 9388 remark-lint-no-shortcut-reference-link "^2.0.0" 9389 - remark-lint-no-table-indentation "^2.0.0" 9390 remark-lint-ordered-list-marker-style "^2.0.0" 9391 remark-lint-ordered-list-marker-value "^2.0.0" 9392 remark-lint-rule-style "^2.0.0" 9393 remark-lint-strong-marker "^2.0.0" 9394 - remark-lint-table-cell-padding "^2.0.0" 9395 remark-lint-table-pipe-alignment "^2.0.0" 9396 - remark-lint-table-pipes "^2.0.0" 9397 remark-lint-unordered-list-marker-style "^2.0.0" 9398 9399 - remark-stringify@^8.0.0: 9400 - version "8.1.1" 9401 - resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-8.1.1.tgz#e2a9dc7a7bf44e46a155ec78996db896780d8ce5" 9402 - integrity sha512-q4EyPZT3PcA3Eq7vPpT6bIdokXzFGp9i85igjmhRyXWmPs0Y6/d2FYwUNotKAWyLch7g0ASZJn/KHHcHZQ163A== 9403 dependencies: 9404 - ccount "^1.0.0" 9405 - is-alphanumeric "^1.0.0" 9406 - is-decimal "^1.0.0" 9407 - is-whitespace-character "^1.0.0" 9408 - longest-streak "^2.0.1" 9409 - markdown-escapes "^1.0.0" 9410 - markdown-table "^2.0.0" 9411 - mdast-util-compact "^2.0.0" 9412 - parse-entities "^2.0.0" 9413 - repeat-string "^1.5.4" 9414 - state-toggle "^1.0.0" 9415 - stringify-entities "^3.0.0" 9416 - unherit "^1.0.4" 9417 - xtend "^4.0.1" 9418 9419 - remark@^12.0.0: 9420 - version "12.0.1" 9421 - resolved "https://registry.yarnpkg.com/remark/-/remark-12.0.1.tgz#f1ddf68db7be71ca2bad0a33cd3678b86b9c709f" 9422 - integrity sha512-gS7HDonkdIaHmmP/+shCPejCEEW+liMp/t/QwmF0Xt47Rpuhl32lLtDV1uKWvGoq+kxr5jSgg5oAIpGuyULjUw== 9423 dependencies: 9424 - remark-parse "^8.0.0" 9425 - remark-stringify "^8.0.0" 9426 - unified "^9.0.0" 9427 9428 remove-trailing-separator@^1.0.1: 9429 version "1.1.0" ··· 9442 strip-ansi "^3.0.0" 9443 9444 repeat-element@^1.1.2: 9445 - version "1.1.3" 9446 - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 9447 - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 9448 9449 - repeat-string@^1.0.0, repeat-string@^1.5.0, repeat-string@^1.5.2, repeat-string@^1.5.4, repeat-string@^1.6.1: 9450 version "1.6.1" 9451 resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 9452 integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= ··· 9458 dependencies: 9459 is-finite "^1.0.0" 9460 9461 - request-promise-core@1.1.4: 9462 - version "1.1.4" 9463 - resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz#3eedd4223208d419867b78ce815167d10593a22f" 9464 - integrity sha512-TTbAfBBRdWD7aNNOoVOBH4pN/KigV6LyapYNNlAPA8JwbovRti1E88m3sYAwsLi5ryhPKsE9APwnjFTgdUjTpw== 9465 - dependencies: 9466 - lodash "^4.17.19" 9467 - 9468 - request-promise-native@^1.0.5: 9469 - version "1.0.9" 9470 - resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" 9471 - integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== 9472 - dependencies: 9473 - request-promise-core "1.1.4" 9474 - stealthy-require "^1.1.1" 9475 - tough-cookie "^2.3.3" 9476 - 9477 - request@2.x, "request@>= 2.52.0", request@^2.83.0, request@^2.86.0, request@^2.87.0, request@^2.88.0, request@^2.88.2: 9478 version "2.88.2" 9479 resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 9480 integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== ··· 9505 resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 9506 integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 9507 9508 - require-main-filename@^2.0.0: 9509 - version "2.0.0" 9510 - resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz#d0b329ecc7cc0f61649f62215be69af54aa8989b" 9511 - integrity sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg== 9512 9513 - resolve-cwd@^2.0.0: 9514 - version "2.0.0" 9515 - resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" 9516 - integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= 9517 dependencies: 9518 - resolve-from "^3.0.0" 9519 - 9520 - resolve-dir@^1.0.0, resolve-dir@^1.0.1: 9521 - version "1.0.1" 9522 - resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" 9523 - integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= 9524 - dependencies: 9525 - expand-tilde "^2.0.0" 9526 - global-modules "^1.0.0" 9527 9528 resolve-from@^3.0.0: 9529 version "3.0.0" ··· 9545 resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 9546 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 9547 9548 - resolve@^1.10.0, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.5.0, resolve@^1.8.1: 9549 - version "1.19.0" 9550 - resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" 9551 - integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== 9552 dependencies: 9553 - is-core-module "^2.1.0" 9554 path-parse "^1.0.6" 9555 9556 - restore-cursor@^2.0.0: 9557 - version "2.0.0" 9558 - resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf" 9559 - integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368= 9560 - dependencies: 9561 - onetime "^2.0.0" 9562 - signal-exit "^3.0.2" 9563 - 9564 ret@~0.1.10: 9565 version "0.1.15" 9566 resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" ··· 9593 resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 9594 integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 9595 9596 - rimraf@2.6.3: 9597 - version "2.6.3" 9598 - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" 9599 - integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== 9600 - dependencies: 9601 - glob "^7.1.3" 9602 - 9603 - rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3, rimraf@^2.7.1: 9604 version "2.7.1" 9605 resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 9606 integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== ··· 9614 dependencies: 9615 glob "^7.1.3" 9616 9617 - rimraf@~2.4.0: 9618 - version "2.4.5" 9619 - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz#ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da" 9620 - integrity sha1-7nEM5dk6j9uFb7Xqj/Di11k0sto= 9621 - dependencies: 9622 - glob "^6.0.1" 9623 - 9624 ripemd160@^2.0.0, ripemd160@^2.0.1: 9625 version "2.0.2" 9626 resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" ··· 9629 hash-base "^3.0.0" 9630 inherits "^2.0.1" 9631 9632 - run-async@^2.2.0: 9633 - version "2.4.1" 9634 - resolved "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455" 9635 - integrity sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ== 9636 - 9637 run-parallel@^1.1.9: 9638 - version "1.1.10" 9639 - resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef" 9640 - integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== 9641 9642 run-queue@^1.0.0, run-queue@^1.0.3: 9643 version "1.0.3" ··· 9651 resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" 9652 integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= 9653 9654 - rxjs@^6.4.0: 9655 - version "6.6.3" 9656 - resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz#8ca84635c4daa900c0d3967a6ee7ac60271ee552" 9657 - integrity sha512-trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ== 9658 - dependencies: 9659 - tslib "^1.9.0" 9660 - 9661 safe-buffer@*, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: 9662 version "5.2.1" 9663 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" ··· 9672 version "5.2.0" 9673 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 9674 integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 9675 - 9676 - safe-json-stringify@~1: 9677 - version "1.2.0" 9678 - resolved "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz#356e44bc98f1f93ce45df14bcd7c01cda86e0afd" 9679 - integrity sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg== 9680 9681 safe-regex@^1.1.0: 9682 version "1.1.0" ··· 9714 ajv-errors "^1.0.0" 9715 ajv-keywords "^3.1.0" 9716 9717 - schema-utils@^2.5.0, schema-utils@^2.7.0: 9718 - version "2.7.1" 9719 - resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz#1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7" 9720 - integrity sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg== 9721 - dependencies: 9722 - "@types/json-schema" "^7.0.5" 9723 - ajv "^6.12.4" 9724 - ajv-keywords "^3.5.2" 9725 - 9726 schema-utils@^3.0.0: 9727 version "3.0.0" 9728 resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" ··· 9738 integrity sha512-UMNLEvgOAQuzK8ji8qIscM3GIrRCWN6MmMXGD4SD5l6cSycgGsCo0tX5xRnfQcoghqct0tjHjcykgI1PyBE2aA== 9739 dependencies: 9740 raw-loader "~0.5.1" 9741 - 9742 - scrypt-async@^2.0.1: 9743 - version "2.0.1" 9744 - resolved "https://registry.yarnpkg.com/scrypt-async/-/scrypt-async-2.0.1.tgz#4318dae48a8b7cc3b8fe05f75f4164a7d973d25d" 9745 - integrity sha512-wHR032jldwZNy7Tzrfu7RccOgGf8r5hyDMSP2uV6DpLiBUsR8JsDcx/in73o2UGVVrH5ivRFdNsFPcjtl3LErQ== 9746 9747 scrypt-kdf@^2.0.1: 9748 version "2.0.1" ··· 9764 resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 9765 integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 9766 9767 - "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0: 9768 version "5.7.1" 9769 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 9770 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 9771 9772 - semver@^6.0.0, semver@^6.3.0: 9773 version "6.3.0" 9774 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 9775 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 9776 9777 send@0.17.1: 9778 version "0.17.1" 9779 resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" ··· 9798 resolved "https://registry.yarnpkg.com/seq-queue/-/seq-queue-0.0.5.tgz#d56812e1c017a6e4e7c3e3a37a1da6d78dd3c93e" 9799 integrity sha1-1WgS4cAXpuTnw+Ojeh2m143TyT4= 9800 9801 - sequelize-cli@^5.5.1: 9802 - version "5.5.1" 9803 - resolved "https://registry.yarnpkg.com/sequelize-cli/-/sequelize-cli-5.5.1.tgz#0b9c2fc04d082cc8ae0a8fe270b96bb606152bab" 9804 - integrity sha512-ZM4kUZvY3y14y+Rq3cYxGH7YDJz11jWHcN2p2x7rhAIemouu4CEXr5ebw30lzTBtyXV4j2kTO+nUjZOqzG7k+Q== 9805 - dependencies: 9806 - bluebird "^3.5.3" 9807 - cli-color "^1.4.0" 9808 - fs-extra "^7.0.1" 9809 - js-beautify "^1.8.8" 9810 - lodash "^4.17.5" 9811 - resolve "^1.5.0" 9812 - umzug "^2.1.0" 9813 - yargs "^13.1.0" 9814 - 9815 sequelize-pool@^2.3.0: 9816 version "2.3.0" 9817 resolved "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-2.3.0.tgz#64f1fe8744228172c474f530604b6133be64993d" 9818 integrity sha512-Ibz08vnXvkZ8LJTiUOxRcj1Ckdn7qafNZ2t59jYHMX1VIebTAOYefWdRYFt6z6+hy52WGthAHAoLc9hvk3onqA== 9819 9820 sequelize@^5.21.1: 9821 - version "5.22.3" 9822 - resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-5.22.3.tgz#7e7a92ddd355d883c9eb11cdb106d874d0d2636f" 9823 - integrity sha512-+nxf4TzdrB+PRmoWhR05TP9ukLAurK7qtKcIFv5Vhxm5Z9v+d2PcTT6Ea3YAoIQVkZ47QlT9XWAIUevMT/3l8Q== 9824 dependencies: 9825 bluebird "^3.5.0" 9826 cls-bluebird "^2.1.0" ··· 9838 validator "^10.11.0" 9839 wkx "^0.4.8" 9840 9841 serialize-javascript@^4.0.0: 9842 version "4.0.0" 9843 resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 9844 integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 9845 - dependencies: 9846 - randombytes "^2.1.0" 9847 - 9848 - serialize-javascript@^5.0.1: 9849 - version "5.0.1" 9850 - resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" 9851 - integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== 9852 dependencies: 9853 randombytes "^2.1.0" 9854 ··· 9862 parseurl "~1.3.3" 9863 send "0.17.1" 9864 9865 - set-blocking@^2.0.0, set-blocking@~2.0.0: 9866 version "2.0.0" 9867 resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 9868 integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= ··· 9895 inherits "^2.0.1" 9896 safe-buffer "^5.0.1" 9897 9898 - shebang-command@^1.2.0: 9899 - version "1.2.0" 9900 - resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" 9901 - integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo= 9902 dependencies: 9903 - shebang-regex "^1.0.0" 9904 9905 - shebang-regex@^1.0.0: 9906 - version "1.0.0" 9907 - resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" 9908 - integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= 9909 9910 shimmer@^1.1.0: 9911 version "1.2.1" ··· 9919 dependencies: 9920 nanoid "^2.1.0" 9921 9922 - sigmund@^1.0.1: 9923 - version "1.0.1" 9924 - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" 9925 - integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA= 9926 9927 - signal-exit@^3.0.0, signal-exit@^3.0.2: 9928 version "3.0.3" 9929 resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 9930 integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== ··· 9946 resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 9947 integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 9948 9949 - slice-ansi@^2.1.0: 9950 - version "2.1.0" 9951 - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" 9952 - integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== 9953 dependencies: 9954 - ansi-styles "^3.2.0" 9955 - astral-regex "^1.0.0" 9956 - is-fullwidth-code-point "^2.0.0" 9957 9958 sliced@^1.0.1: 9959 version "1.0.1" ··· 10049 socket.io-client "2.4.0" 10050 socket.io-parser "~3.4.0" 10051 10052 - sort-keys@^1.0.0: 10053 - version "1.1.2" 10054 - resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad" 10055 - integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0= 10056 - dependencies: 10057 - is-plain-obj "^1.0.0" 10058 - 10059 source-list-map@^2.0.0: 10060 version "2.0.1" 10061 resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" ··· 10072 source-map-url "^0.4.0" 10073 urix "^0.1.0" 10074 10075 - source-map-support@^0.4.12, source-map-support@^0.4.15: 10076 version "0.4.18" 10077 resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 10078 integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== ··· 10088 source-map "^0.6.0" 10089 10090 source-map-url@^0.4.0: 10091 - version "0.4.0" 10092 - resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3" 10093 - integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM= 10094 10095 source-map@^0.5.6, source-map@^0.5.7: 10096 version "0.5.7" ··· 10133 resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 10134 integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 10135 10136 - spin.js@^2.3.2: 10137 - version "2.3.2" 10138 - resolved "https://registry.yarnpkg.com/spin.js/-/spin.js-2.3.2.tgz#6caa56d520673450fd5cfbc6971e6d0772c37a1a" 10139 - integrity sha1-bKpW1SBnNFD9XPvGlx5tB3LDeho= 10140 10141 split-string@^3.0.1, split-string@^3.0.2: 10142 version "3.1.0" ··· 10162 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 10163 integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 10164 10165 - sqlite3@^4.1.0: 10166 - version "4.2.0" 10167 - resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-4.2.0.tgz#49026d665e9fc4f922e56fb9711ba5b4c85c4901" 10168 - integrity sha512-roEOz41hxui2Q7uYnWsjMOTry6TcNUNmp8audCx18gF10P2NknwdpF+E+HKvz/F2NvPKGGBF4NGc+ZPQ+AABwg== 10169 dependencies: 10170 - nan "^2.12.1" 10171 node-pre-gyp "^0.11.0" 10172 10173 sqlstring@^2.3.2: 10174 version "2.3.2" ··· 10191 tweetnacl "~0.14.0" 10192 10193 ssri@^6.0.1: 10194 - version "6.0.1" 10195 - resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz#2a3c41b28dd45b62b63676ecb74001265ae9edd8" 10196 - integrity sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA== 10197 dependencies: 10198 figgy-pudding "^3.5.1" 10199 10200 - ssri@^8.0.0: 10201 - version "8.0.0" 10202 - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808" 10203 - integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA== 10204 dependencies: 10205 minipass "^3.1.1" 10206 ··· 10213 version "0.0.10" 10214 resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 10215 integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= 10216 - 10217 - state-toggle@^1.0.0: 10218 - version "1.0.3" 10219 - resolved "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz#e123b16a88e143139b09c6852221bc9815917dfe" 10220 - integrity sha512-d/5Z4/2iiCnHw6Xzghyhb+GcmF89bxwgXG60wjIiZaxnymbyOmI8Hk4VqHXiVVp6u2ysaskFfXg3ekCj4WNftQ== 10221 10222 static-extend@^0.1.1: 10223 version "0.1.2" ··· 10232 resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 10233 integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 10234 10235 - stealthy-require@^1.1.1: 10236 - version "1.1.1" 10237 - resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b" 10238 - integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 10239 - 10240 store@^2.0.12: 10241 version "2.0.12" 10242 resolved "https://registry.yarnpkg.com/store/-/store-2.0.12.tgz#8c534e2a0b831f72b75fc5f1119857c44ef5d593" ··· 10274 resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" 10275 integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== 10276 10277 - strict-uri-encode@^1.0.0: 10278 - version "1.1.0" 10279 - resolved "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713" 10280 - integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM= 10281 - 10282 string-loader@0.0.1: 10283 version "0.0.1" 10284 resolved "https://registry.yarnpkg.com/string-loader/-/string-loader-0.0.1.tgz#496f3cccc990213e0dd5411499f9ac6a6a6f2ff8" ··· 10298 is-fullwidth-code-point "^1.0.0" 10299 strip-ansi "^3.0.0" 10300 10301 - "string-width@^1.0.2 || 2", string-width@^2.1.0: 10302 version "2.1.1" 10303 resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 10304 integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== ··· 10306 is-fullwidth-code-point "^2.0.0" 10307 strip-ansi "^4.0.0" 10308 10309 - string-width@^3.0.0, string-width@^3.1.0: 10310 - version "3.1.0" 10311 - resolved "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz#22767be21b62af1081574306f69ac51b62203961" 10312 - integrity sha512-vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w== 10313 - dependencies: 10314 - emoji-regex "^7.0.1" 10315 - is-fullwidth-code-point "^2.0.0" 10316 - strip-ansi "^5.1.0" 10317 - 10318 - string-width@^4.0.0: 10319 - version "4.2.0" 10320 - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 10321 - integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 10322 dependencies: 10323 emoji-regex "^8.0.0" 10324 is-fullwidth-code-point "^3.0.0" 10325 strip-ansi "^6.0.0" 10326 10327 - string.prototype.trimend@^1.0.1: 10328 - version "1.0.3" 10329 - resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz#a22bd53cca5c7cf44d7c9d5c732118873d6cd18b" 10330 - integrity sha512-ayH0pB+uf0U28CtjlLvL7NaohvR1amUvVZk+y3DYb0Ey2PUV5zPkkKy9+U1ndVEIXO8hNg18eIv9Jntbii+dKw== 10331 dependencies: 10332 - call-bind "^1.0.0" 10333 define-properties "^1.1.3" 10334 10335 - string.prototype.trimstart@^1.0.1: 10336 - version "1.0.3" 10337 - resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz#9b4cb590e123bb36564401d59824298de50fd5aa" 10338 - integrity sha512-oBIBUy5lea5tt0ovtOFiEQaBkoBBkyJhZXzJYrSmDo5IUUqbOPvVezuRs/agBIdZ2p2Eo1FD6bD9USyBLfl3xg== 10339 dependencies: 10340 - call-bind "^1.0.0" 10341 define-properties "^1.1.3" 10342 10343 string@^3.3.3: ··· 10364 dependencies: 10365 safe-buffer "~5.1.0" 10366 10367 - stringify-entities@^3.0.0: 10368 - version "3.1.0" 10369 - resolved "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.1.0.tgz#b8d3feac256d9ffcc9fa1fefdcf3ca70576ee903" 10370 - integrity sha512-3FP+jGMmMV/ffZs86MoghGqAoqXAdxLrJP4GUdrDN1aIScYih5tuIO3eF4To5AJZ79KDZ8Fpdy7QJnK8SsL1Vg== 10371 - dependencies: 10372 - character-entities-html4 "^1.0.0" 10373 - character-entities-legacy "^1.0.0" 10374 - xtend "^4.0.0" 10375 - 10376 strip-ansi@^3.0.0, strip-ansi@^3.0.1: 10377 version "3.0.1" 10378 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" ··· 10387 dependencies: 10388 ansi-regex "^3.0.0" 10389 10390 - strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: 10391 - version "5.2.0" 10392 - resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae" 10393 - integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA== 10394 - dependencies: 10395 - ansi-regex "^4.1.0" 10396 - 10397 strip-ansi@^6.0.0: 10398 version "6.0.0" 10399 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" ··· 10411 resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 10412 integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 10413 10414 - strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: 10415 version "2.0.1" 10416 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 10417 integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= ··· 10456 readable-stream "1.0.27-1" 10457 reduce-component "1.0.1" 10458 10459 - supports-color@5.4.0: 10460 - version "5.4.0" 10461 - resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz#1c6b337402c2137605efe19f10fec390f6faab54" 10462 - integrity sha512-zjaXglF5nnWpsq470jSv6P9DwPvgLkuapYmfDm3JWOm0vkNTVF2tI4UrN2r6jH1qM/uc/WtxYY1hYoA2dOKj5w== 10463 dependencies: 10464 - has-flag "^3.0.0" 10465 10466 supports-color@^2.0.0: 10467 version "2.0.0" ··· 10508 unquote "~1.1.1" 10509 util.promisify "~1.0.0" 10510 10511 - symbol-tree@^3.2.2: 10512 - version "3.2.4" 10513 - resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 10514 - integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 10515 - 10516 - table@^5.2.3: 10517 - version "5.4.6" 10518 - resolved "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz#1292d19500ce3f86053b05f0e8e7e4a3bb21079e" 10519 - integrity sha512-wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug== 10520 dependencies: 10521 - ajv "^6.10.2" 10522 - lodash "^4.17.14" 10523 - slice-ansi "^2.1.0" 10524 - string-width "^3.0.0" 10525 10526 tapable@^1.0.0, tapable@^1.1.3: 10527 version "1.1.3" 10528 resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" 10529 integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== 10530 10531 - tar-stream@^2.1.4: 10532 version "2.2.0" 10533 resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 10534 integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== ··· 10538 fs-constants "^1.0.0" 10539 inherits "^2.0.3" 10540 readable-stream "^3.1.1" 10541 10542 tar@^4: 10543 version "4.4.13" ··· 10563 minizlib "^2.1.1" 10564 mkdirp "^1.0.3" 10565 yallist "^4.0.0" 10566 10567 tedious@^6.6.0: 10568 version "6.7.0" ··· 10615 resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 10616 integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 10617 10618 - through2@^0.6.5: 10619 - version "0.6.5" 10620 - resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" 10621 - integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= 10622 - dependencies: 10623 - readable-stream ">=1.0.33-1 <1.1.0-0" 10624 - xtend ">=4.0.0 <4.1.0-0" 10625 - 10626 through2@^2.0.0: 10627 version "2.0.5" 10628 resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" ··· 10631 readable-stream "~2.3.6" 10632 xtend "~4.0.1" 10633 10634 - through@^2.3.6: 10635 - version "2.3.8" 10636 - resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" 10637 - integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= 10638 10639 timers-browserify@^2.0.4: 10640 version "2.0.12" ··· 10643 dependencies: 10644 setimmediate "^1.0.4" 10645 10646 - timers-ext@^0.1.5, timers-ext@^0.1.7: 10647 - version "0.1.7" 10648 - resolved "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz#6f57ad8578e07a3fb9f91d9387d65647555e25c6" 10649 - integrity sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ== 10650 - dependencies: 10651 - es5-ext "~0.10.46" 10652 - next-tick "1" 10653 - 10654 timsort@^0.3.0: 10655 version "0.3.0" 10656 resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" ··· 10660 version "2.1.0" 10661 resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" 10662 integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== 10663 - 10664 - tmp@^0.0.33: 10665 - version "0.0.33" 10666 - resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9" 10667 - integrity sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw== 10668 - dependencies: 10669 - os-tmpdir "~1.0.2" 10670 10671 to-array@0.1.4: 10672 version "0.1.4" ··· 10746 resolved "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz#7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988" 10747 integrity sha1-f/0feMi+KMO6Rc1OGj9e4ZO9mYg= 10748 10749 - tough-cookie@^2.3.3, tough-cookie@^2.3.4, tough-cookie@^2.4.3, tough-cookie@~2.5.0: 10750 version "2.5.0" 10751 resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 10752 integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== ··· 10754 psl "^1.1.28" 10755 punycode "^2.1.1" 10756 10757 - tr46@^1.0.1: 10758 - version "1.0.1" 10759 - resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09" 10760 - integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk= 10761 - dependencies: 10762 - punycode "^2.1.0" 10763 - 10764 trim-right@^1.0.1: 10765 version "1.0.1" 10766 resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 10767 integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 10768 10769 - trim-trailing-lines@^1.0.0: 10770 - version "1.1.4" 10771 - resolved "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz#bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0" 10772 - integrity sha512-rjUWSqnfTNrjbB9NQWfPMH/xRK1deHeGsHoVfpxJ++XeYXE0d6B1En37AHfw3jtfTU7dzMzZL2jjpe8Qb5gLIQ== 10773 - 10774 - trim@0.0.1: 10775 - version "0.0.1" 10776 - resolved "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz#5858547f6b290757ee95cccc666fb50084c460dd" 10777 - integrity sha1-WFhUf2spB1fulczMZm+1AITEYN0= 10778 - 10779 triple-beam@^1.2.0, triple-beam@^1.3.0: 10780 version "1.3.0" 10781 resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" ··· 10806 minimist "^1.2.0" 10807 strip-bom "^3.0.0" 10808 10809 - tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.2: 10810 version "1.14.1" 10811 resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 10812 integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 10813 10814 - tslib@^2.0.3: 10815 - version "2.1.0" 10816 - resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" 10817 - integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== 10818 10819 tty-browserify@0.0.0: 10820 version "0.0.0" ··· 10833 resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 10834 integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 10835 10836 - turndown@^5.0.1: 10837 - version "5.0.3" 10838 - resolved "https://registry.yarnpkg.com/turndown/-/turndown-5.0.3.tgz#a1350b66155d7891f10e451432170b0f7cd7449a" 10839 - integrity sha512-popfGXEiedpq6F5saRIAThKxq/bbEPVFnsDnUdjaDGIre9f3/OL9Yi/yPbPcZ7RYUDpekghr666bBfZPrwNnhQ== 10840 dependencies: 10841 - jsdom "^11.9.0" 10842 10843 tweetnacl@^0.14.3, tweetnacl@~0.14.0: 10844 version "0.14.5" 10845 resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 10846 integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 10847 10848 - type-check@~0.3.2: 10849 - version "0.3.2" 10850 - resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 10851 - integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 10852 dependencies: 10853 - prelude-ls "~1.1.2" 10854 10855 type-is@~1.6.17, type-is@~1.6.18: 10856 version "1.6.18" ··· 10860 media-typer "0.3.0" 10861 mime-types "~2.1.24" 10862 10863 - type@^1.0.1: 10864 - version "1.2.0" 10865 - resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0" 10866 - integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg== 10867 - 10868 - type@^2.0.0: 10869 - version "2.1.0" 10870 - resolved "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz#9bdc22c648cf8cf86dd23d32336a41cfb6475e3f" 10871 - integrity sha512-G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA== 10872 - 10873 typedarray-to-buffer@^3.1.5: 10874 version "3.1.5" 10875 resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" ··· 10888 integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== 10889 10890 uglify-js@^3.1.4, uglify-js@^3.5.1: 10891 - version "3.12.4" 10892 - resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.4.tgz#93de48bb76bb3ec0fc36563f871ba46e2ee5c7ee" 10893 - integrity sha512-L5i5jg/SHkEqzN18gQMTWsZk3KelRsfD1wUVNqtq0kzqWQqcJjyL8yc1o8hJgRrWqrAl2mUFbhfznEIoi7zi2A== 10894 10895 uid-safe@~2.1.5: 10896 version "2.1.5" ··· 10904 resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 10905 integrity sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I= 10906 10907 - umzug@^2.1.0: 10908 version "2.3.0" 10909 resolved "https://registry.yarnpkg.com/umzug/-/umzug-2.3.0.tgz#0ef42b62df54e216b05dcaf627830a6a8b84a184" 10910 integrity sha512-Z274K+e8goZK8QJxmbRPhl89HPO1K+ORFtm6rySPhFKfKc5GHhqdzD0SGhSWHkzoXasqJuItdhorSvY7/Cgflw== 10911 dependencies: 10912 bluebird "^3.7.2" 10913 10914 underscore@1.11.x: 10915 version "1.11.0" 10916 resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.11.0.tgz#dd7c23a195db34267186044649870ff1bab5929e" 10917 integrity sha512-xY96SsN3NA461qIRKZ/+qox37YXPtSBswMGfiNptr+wrt6ds4HaMw23TP612fEyGekRE6LNRiLYr/aqbHXNedw== 10918 10919 "underscore@>= 1.3.1", underscore@^1.7.0: 10920 - version "1.12.0" 10921 - resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.12.0.tgz#4814940551fc80587cef7840d1ebb0f16453be97" 10922 - integrity sha512-21rQzss/XPMjolTiIezSu3JAjgagXKROtNrYFEOWK109qY1Uv2tVjPTZ1ci2HgvQDA16gHYSthQIJfB+XId/rQ== 10923 10924 underscore@~1.6.0: 10925 version "1.6.0" ··· 10931 resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" 10932 integrity sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI= 10933 10934 - unherit@^1.0.4: 10935 - version "1.1.3" 10936 - resolved "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz#6c9b503f2b41b262330c80e91c8614abdaa69c22" 10937 - integrity sha512-Ft16BJcnapDKp0+J/rqFC3Rrk6Y/Ng4nzsC028k2jdDII/rdZ7Wd3pPT/6+vIIxRagwRc9K0IUX0Ra4fKvw+WQ== 10938 - dependencies: 10939 - inherits "^2.0.0" 10940 - xtend "^4.0.0" 10941 - 10942 unified-args@^8.0.0: 10943 version "8.1.0" 10944 resolved "https://registry.yarnpkg.com/unified-args/-/unified-args-8.1.0.tgz#a27dbe996a49fbbf3d9f5c6a98008ab9b0ee6ae5" ··· 10954 unified-engine "^8.0.0" 10955 10956 unified-engine@^8.0.0: 10957 - version "8.0.0" 10958 - resolved "https://registry.yarnpkg.com/unified-engine/-/unified-engine-8.0.0.tgz#e3996ff6eaecc6ca3408af92b70e25691192d17d" 10959 - integrity sha512-vLUezxCnjzz+ya4pYouRQVMT8k82Rk4fIj406UidRnSFJdGXFaQyQklAnalsQHJrLqAlaYPkXPUa1upfVSHGCA== 10960 dependencies: 10961 concat-stream "^2.0.0" 10962 debug "^4.0.0" ··· 10984 wrapped "^1.0.1" 10985 10986 unified-message-control@^3.0.0: 10987 - version "3.0.2" 10988 - resolved "https://registry.yarnpkg.com/unified-message-control/-/unified-message-control-3.0.2.tgz#efa316c97f39f6f54bc74a4cf35807e615694033" 10989 - integrity sha512-lhF8fKjDo2cIPx1re5X1QinqUonl+AN6F0XfEaab8w/hjqX7FZAhzu4P8g6pmYp09ld+HSWFwdRJj+Y8xD0q7Q== 10990 dependencies: 10991 unist-util-visit "^2.0.0" 10992 vfile-location "^3.0.0" 10993 10994 - unified@^9.0.0: 10995 - version "9.2.0" 10996 - resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz#67a62c627c40589edebbf60f53edfd4d822027f8" 10997 - integrity sha512-vx2Z0vY+a3YoTj8+pttM3tiJHCwY5UFbYdiWrwBEbHmK8pvsPj2rtAX2BFfgXen8T39CJWblWRDT4L5WGXtDdg== 10998 dependencies: 10999 bail "^1.0.0" 11000 extend "^3.0.0" ··· 11037 dependencies: 11038 imurmurhash "^0.1.4" 11039 11040 - unist-util-generated@^1.1.0: 11041 version "1.1.6" 11042 resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b" 11043 integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== ··· 11050 is-empty "^1.0.0" 11051 11052 unist-util-is@^4.0.0: 11053 - version "4.0.4" 11054 - resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.4.tgz#3e9e8de6af2eb0039a59f50c9b3e99698a924f50" 11055 - integrity sha512-3dF39j/u423v4BBQrk1AQ2Ve1FxY5W3JKwXxVFzBODQ6WEvccguhgp802qQLKSnxPODE6WuRZtV+ohlUg4meBA== 11056 11057 unist-util-position@^3.0.0: 11058 version "3.1.0" 11059 resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" 11060 integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== 11061 11062 - unist-util-remove-position@^2.0.0: 11063 - version "2.0.1" 11064 - resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz#5d19ca79fdba712301999b2b73553ca8f3b352cc" 11065 - integrity sha512-fDZsLYIe2uT+oGFnuZmy73K6ZxOPG/Qcm+w7jbEjaFcJgbQ6cqjs/eSPzXhsmGpAsWPkqZM9pYjww5QTn3LHMA== 11066 - dependencies: 11067 - unist-util-visit "^2.0.0" 11068 - 11069 unist-util-stringify-position@^2.0.0: 11070 version "2.0.3" 11071 resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" ··· 11089 "@types/unist" "^2.0.0" 11090 unist-util-is "^4.0.0" 11091 unist-util-visit-parents "^3.0.0" 11092 - 11093 - universalify@^0.1.0: 11094 - version "0.1.2" 11095 - resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 11096 - integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 11097 11098 unpipe@1.0.0, unpipe@~1.0.0: 11099 version "1.0.0" ··· 11135 resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 11136 integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 11137 11138 - url-loader@2.3.0: 11139 - version "2.3.0" 11140 - resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-2.3.0.tgz#e0e2ef658f003efb8ca41b0f3ffbf76bab88658b" 11141 - integrity sha512-goSdg8VY+7nPZKUEChZSEtW5gjbS66USIGCeSJ1OVOJ7Yfuh/36YxCwMi5HVEJh6mqUYOoy3NJ0vlOMrWsSHog== 11142 dependencies: 11143 - loader-utils "^1.2.3" 11144 - mime "^2.4.4" 11145 - schema-utils "^2.5.0" 11146 11147 url@0.10.3: 11148 version "0.10.3" ··· 11171 integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA= 11172 11173 utf-8-validate@^5.0.1: 11174 - version "5.0.4" 11175 - resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.4.tgz#72a1735983ddf7a05a43a9c6b67c5ce1c910f9b8" 11176 - integrity sha512-MEF05cPSq3AwJ2C7B7sHAA6i53vONoZbMGX8My5auEVm6W+dJ2Jd/TZPyGJ5CH42V2XtbI5FD28HeHeqlPzZ3Q== 11177 dependencies: 11178 node-gyp-build "^4.2.0" 11179 ··· 11234 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 11235 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 11236 11237 - v8-compile-cache@^2.1.1: 11238 - version "2.2.0" 11239 - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" 11240 - integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== 11241 11242 v8flags@^2.1.1: 11243 version "2.1.1" ··· 11254 spdx-correct "^3.0.0" 11255 spdx-expression-parse "^3.0.0" 11256 11257 - validator@^10.11.0, validator@^10.4.0: 11258 version "10.11.0" 11259 resolved "https://registry.yarnpkg.com/validator/-/validator-10.11.0.tgz#003108ea6e9a9874d31ccc9e5006856ccd76b228" 11260 integrity sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw== 11261 11262 validator@~9.4.1: 11263 version "9.4.1" ··· 11269 resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 11270 integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 11271 11272 - vasync@^1.6.4: 11273 - version "1.6.4" 11274 - resolved "https://registry.yarnpkg.com/vasync/-/vasync-1.6.4.tgz#dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f" 11275 - integrity sha1-3+k2Fq0OeugBszKp2Iv8XNyOHR8= 11276 dependencies: 11277 - verror "1.6.0" 11278 11279 velocity-animate@^1.4.0: 11280 version "1.5.2" ··· 11294 assert-plus "^1.0.0" 11295 core-util-is "1.0.2" 11296 extsprintf "^1.2.0" 11297 - 11298 - verror@1.6.0: 11299 - version "1.6.0" 11300 - resolved "https://registry.yarnpkg.com/verror/-/verror-1.6.0.tgz#7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5" 11301 - integrity sha1-fROyex+swuLakEBetepuW90lLqU= 11302 - dependencies: 11303 - extsprintf "1.2.0" 11304 11305 vfile-location@^3.0.0: 11306 version "3.2.0" ··· 11347 unist-util-stringify-position "^2.0.0" 11348 vfile-message "^2.0.0" 11349 11350 - visibilityjs@^1.2.4: 11351 - version "1.2.8" 11352 - resolved "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-1.2.8.tgz#4ccdcebdaef0b34fb89219ab8e10e39c3a7cbfd8" 11353 - integrity sha512-Y+aL3OUX88b+/VSmkmC2ApuLbf0grzbNLpCfIDSw3BzTU6PqcPsdgIOaw8b+eZoy+DdQqnVN3y/Evow9vQq9Ig== 11354 11355 viz.js@^1.7.0: 11356 version "1.8.2" ··· 11362 resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" 11363 integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== 11364 11365 - w3c-hr-time@^1.0.1: 11366 - version "1.0.2" 11367 - resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 11368 - integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 11369 - dependencies: 11370 - browser-process-hrtime "^1.0.0" 11371 - 11372 watchpack-chokidar2@^2.0.1: 11373 version "2.0.1" 11374 resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957" ··· 11387 chokidar "^3.4.1" 11388 watchpack-chokidar2 "^2.0.1" 11389 11390 - weak-map@^1.0.5: 11391 - version "1.0.5" 11392 - resolved "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.5.tgz#79691584d98607f5070bd3b70a40e6bb22e401eb" 11393 - integrity sha1-eWkVhNmGB/UHC9O3CkDmuyLkAes= 11394 - 11395 webfontloader@~1.6.x: 11396 version "1.6.28" 11397 resolved "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae" 11398 integrity sha1-23hhKSU8tujq5UwvsF+HCvZnW64= 11399 11400 - webidl-conversions@^4.0.2: 11401 - version "4.0.2" 11402 - resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" 11403 - integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg== 11404 - 11405 - webpack-cli@3.3.12: 11406 - version "3.3.12" 11407 - resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz#94e9ada081453cd0aa609c99e500012fd3ad2d4a" 11408 - integrity sha512-NVWBaz9k839ZH/sinurM+HcDvJOTXwSjYp1ku+5XKeOC03z8v5QitnK/x+lAxGXFyhdayoIf/GOpv85z3/xPag== 11409 dependencies: 11410 - chalk "^2.4.2" 11411 - cross-spawn "^6.0.5" 11412 - enhanced-resolve "^4.1.1" 11413 - findup-sync "^3.0.0" 11414 - global-modules "^2.0.0" 11415 - import-local "^2.0.0" 11416 - interpret "^1.4.0" 11417 - loader-utils "^1.4.0" 11418 - supports-color "^6.1.0" 11419 - v8-compile-cache "^2.1.1" 11420 - yargs "^13.3.2" 11421 11422 - webpack-merge@4.2.2: 11423 - version "4.2.2" 11424 - resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz#a27c52ea783d1398afd2087f547d7b9d2f43634d" 11425 - integrity sha512-TUE1UGoTX2Cd42j3krGYqObZbOD+xF7u28WB7tfUordytSjbWTIjK/8V0amkBfTYN4/pB/GIDlJZZ657BGG19g== 11426 dependencies: 11427 - lodash "^4.17.15" 11428 11429 webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: 11430 version "1.4.3" ··· 11434 source-list-map "^2.0.0" 11435 source-map "~0.6.1" 11436 11437 - webpack@4.44.2: 11438 - version "4.44.2" 11439 - resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz#6bfe2b0af055c8b2d1e90ed2cd9363f841266b72" 11440 - integrity sha512-6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q== 11441 dependencies: 11442 "@webassemblyjs/ast" "1.9.0" 11443 "@webassemblyjs/helper-module-context" "1.9.0" ··· 11447 ajv "^6.10.2" 11448 ajv-keywords "^3.4.1" 11449 chrome-trace-event "^1.0.2" 11450 - enhanced-resolve "^4.3.0" 11451 eslint-scope "^4.0.3" 11452 json-parse-better-errors "^1.0.2" 11453 loader-runner "^2.4.0" ··· 11463 watchpack "^1.7.4" 11464 webpack-sources "^1.4.1" 11465 11466 - whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.3: 11467 - version "1.0.5" 11468 - resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 11469 - integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 11470 dependencies: 11471 - iconv-lite "0.4.24" 11472 11473 - whatwg-mimetype@^2.1.0, whatwg-mimetype@^2.2.0: 11474 - version "2.3.0" 11475 - resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 11476 - integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 11477 - 11478 - whatwg-url@^6.4.1: 11479 - version "6.5.0" 11480 - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz#f2df02bff176fd65070df74ad5ccbb5a199965a8" 11481 - integrity sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ== 11482 dependencies: 11483 - lodash.sortby "^4.7.0" 11484 - tr46 "^1.0.1" 11485 - webidl-conversions "^4.0.2" 11486 11487 - whatwg-url@^7.0.0: 11488 - version "7.1.0" 11489 - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06" 11490 - integrity sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg== 11491 dependencies: 11492 - lodash.sortby "^4.7.0" 11493 - tr46 "^1.0.1" 11494 - webidl-conversions "^4.0.2" 11495 11496 - which-module@^2.0.0: 11497 - version "2.0.0" 11498 - resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" 11499 - integrity sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho= 11500 - 11501 - which@^1.2.14, which@^1.2.9, which@^1.3.1: 11502 version "1.3.1" 11503 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 11504 integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 11505 dependencies: 11506 isexe "^2.0.0" 11507 11508 - wide-align@^1.1.0: 11509 version "1.1.3" 11510 resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 11511 integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 11512 dependencies: 11513 string-width "^1.0.2 || 2" 11514 11515 winston-transport@^4.4.0: 11516 version "4.4.0" ··· 11542 dependencies: 11543 "@types/node" "*" 11544 11545 - word-wrap@~1.2.3: 11546 version "1.2.3" 11547 resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 11548 integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== ··· 11559 dependencies: 11560 errno "~0.1.7" 11561 11562 - wrap-ansi@^5.1.0: 11563 - version "5.1.0" 11564 - resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz#1fd1f67235d5b6d0fee781056001bfb694c03b09" 11565 - integrity sha512-QC1/iN/2/RPVJ5jYK8BGttj5z83LmSKmvbvrXPNCLZSEb32KKVDJDl/MOt2N01qU2H/FkzEa9PKto1BqDjtd7Q== 11566 dependencies: 11567 - ansi-styles "^3.2.0" 11568 - string-width "^3.0.0" 11569 - strip-ansi "^5.0.0" 11570 11571 wrapped@^1.0.1: 11572 version "1.0.1" ··· 11581 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 11582 integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 11583 11584 - write@1.0.3: 11585 - version "1.0.3" 11586 - resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" 11587 - integrity sha512-/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig== 11588 - dependencies: 11589 - mkdirp "^0.5.1" 11590 - 11591 - ws@^5.2.0: 11592 - version "5.2.2" 11593 - resolved "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz#dffef14866b8e8dc9133582514d1befaf96e980f" 11594 - integrity sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA== 11595 - dependencies: 11596 - async-limiter "~1.0.0" 11597 - 11598 - ws@^6.0.0: 11599 - version "6.2.1" 11600 - resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb" 11601 - integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA== 11602 - dependencies: 11603 - async-limiter "~1.0.0" 11604 - 11605 - ws@~7.4.2: 11606 - version "7.4.2" 11607 - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.2.tgz#782100048e54eb36fe9843363ab1c68672b261dd" 11608 - integrity sha512-T4tewALS3+qsrpGI/8dqNMLIVdq/g/85U98HPMa6F0m6xTbvhXU6RCQLqPH3+SlomNV/LdY6RXEbBpMH6EOJnA== 11609 11610 wurl@^2.5.3: 11611 version "2.5.4" 11612 resolved "https://registry.yarnpkg.com/wurl/-/wurl-2.5.4.tgz#6af35a6c623296c4a0c607c4651d01b8f4e3fdec" 11613 integrity sha512-Vuo550m5YbqRcM/69zz3jVNsCUvFTWLRYQcYvnqNWQ4d0Bjg7aoaofbcsPTe4rM9A2/4xjd8uIf9viIUV9EMXQ== 11614 11615 - x-xss-protection@1.3.0: 11616 - version "1.3.0" 11617 - resolved "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.3.0.tgz#3e3a8dd638da80421b0e9fff11a2dbe168f6d52c" 11618 - integrity sha512-kpyBI9TlVipZO4diReZMAHWtS0MMa/7Kgx8hwG/EuZLiA6sg4Ah/4TRdASHhRRN3boobzcYgFRUFSgHRge6Qhg== 11619 - 11620 - xml-crypto@^2.0.0: 11621 - version "2.0.0" 11622 - resolved "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.0.0.tgz#54cd268ad9d31930afcf7092cbb664258ca9e826" 11623 - integrity sha512-/a04qr7RpONRZHOxROZ6iIHItdsQQjN3sj8lJkYDDss8tAkEaAs0VrFjb3tlhmS5snQru5lTs9/5ISSMdPDHlg== 11624 dependencies: 11625 - xmldom "0.1.27" 11626 - xpath "0.0.27" 11627 11628 - xml-encryption@1.2.1: 11629 - version "1.2.1" 11630 - resolved "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-1.2.1.tgz#e6d18817c4309fd07ca7793cca93c3fd06745baa" 11631 - integrity sha512-hn5w3l5p2+nGjlmM0CAhMChDzVGhW+M37jH35Z+GJIipXbn9PUlAIRZ6I5Wm7ynlqZjFrMAr83d/CIp9VZJMTA== 11632 dependencies: 11633 escape-html "^1.0.3" 11634 node-forge "^0.10.0" 11635 - xmldom "~0.1.15" 11636 - xpath "0.0.27" 11637 - 11638 - xml-name-validator@^3.0.0: 11639 - version "3.0.0" 11640 - resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 11641 - integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 11642 11643 xml2js@0.2.8: 11644 version "0.2.8" ··· 11655 sax ">=0.6.0" 11656 xmlbuilder "~9.0.1" 11657 11658 - xml2js@0.4.x, xml2js@^0.4.15, xml2js@^0.4.19: 11659 version "0.4.23" 11660 resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 11661 integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== ··· 11668 resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" 11669 integrity sha1-eLpyAgApxbyHuKgaPPzXS0ovweU= 11670 11671 - xmlbuilder@^11.0.0, xmlbuilder@~11.0.0: 11672 - version "11.0.1" 11673 - resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 11674 - integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 11675 11676 xmlbuilder@^9.0.7, xmlbuilder@~9.0.1: 11677 version "9.0.7" 11678 resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 11679 integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= 11680 11681 - xmldom@0.1.27: 11682 - version "0.1.27" 11683 - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9" 11684 - integrity sha1-1QH5ezvbQDr4757MIFcxh6rawOk= 11685 11686 - xmldom@0.1.x, xmldom@~0.1.15: 11687 version "0.1.31" 11688 resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" 11689 integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== 11690 11691 - "xmldom@>= 0.1.x": 11692 - version "0.4.0" 11693 - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.4.0.tgz#8771e482a333af44587e30ce026f0998c23f3830" 11694 - integrity sha512-2E93k08T30Ugs+34HBSTQLVtpi6mCddaY8uO+pMNk1pqSjV5vElzn4mmh6KLxN3hki8rNcHSYzILoh3TEWORvA== 11695 11696 xmlhttprequest-ssl@~1.5.4: 11697 version "1.5.5" ··· 11708 resolved "https://registry.yarnpkg.com/xpath.js/-/xpath.js-1.1.0.tgz#3816a44ed4bb352091083d002a383dd5104a5ff1" 11709 integrity sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ== 11710 11711 - xpath@0.0.27: 11712 - version "0.0.27" 11713 - resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.27.tgz#dd3421fbdcc5646ac32c48531b4d7e9d0c2cfa92" 11714 - integrity sha512-fg03WRxtkCV6ohClePNAECYsmpKKTv5L8y/X3Dn1hQrec3POx2jHZ/0P2qQ6HvsrU1BmeqXcof3NGGueG6LxwQ== 11715 11716 xss@^1.0.3: 11717 version "1.0.8" ··· 11721 commander "^2.20.3" 11722 cssfilter "0.0.10" 11723 11724 - "xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.0, xtend@^4.0.1, xtend@~4.0.1: 11725 version "4.0.2" 11726 resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 11727 integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== ··· 11734 xmldom "0.1.x" 11735 11736 y18n@^4.0.0: 11737 - version "4.0.1" 11738 - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" 11739 - integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== 11740 11741 yallist@^2.1.2: 11742 version "2.1.2" ··· 11753 resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 11754 integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 11755 11756 - yargs-parser@^13.1.2: 11757 - version "13.1.2" 11758 - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz#130f09702ebaeef2650d54ce6e3e5706f7a4fb38" 11759 - integrity sha512-3lbsNRf/j+A4QuSZfDRA7HRSfWrzO0YjqTJd5kjAq37Zep1CEgaYmrH9Q3GwPiB9cHyd1Y1UwggGhJGoxipbzg== 11760 dependencies: 11761 - camelcase "^5.0.0" 11762 - decamelize "^1.2.0" 11763 11764 - yargs@^13.1.0, yargs@^13.3.2: 11765 - version "13.3.2" 11766 - resolved "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz#ad7ffefec1aa59565ac915f82dccb38a9c31a2dd" 11767 - integrity sha512-AX3Zw5iPruN5ie6xGRIDgqkT+ZhnRlZMLMHAs8tg7nRruy2Nb+i5o9bwghAogtM08q1dpr2LVoS8KSTMYpWXUw== 11768 dependencies: 11769 - cliui "^5.0.0" 11770 - find-up "^3.0.0" 11771 - get-caller-file "^2.0.1" 11772 require-directory "^2.1.1" 11773 - require-main-filename "^2.0.0" 11774 - set-blocking "^2.0.0" 11775 - string-width "^3.0.0" 11776 - which-module "^2.0.0" 11777 - y18n "^4.0.0" 11778 - yargs-parser "^13.1.2" 11779 11780 yeast@0.1.2: 11781 version "0.1.2" ··· 11787 resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 11788 integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 11789 11790 - zip-stream@^4.0.4: 11791 - version "4.0.4" 11792 - resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.0.4.tgz#3a8f100b73afaa7d1ae9338d910b321dec77ff3a" 11793 - integrity sha512-a65wQ3h5gcQ/nQGWV1mSZCEzCML6EK/vyVPcrPNynySP1j3VBbQKh3nhC8CbORb+jfl2vXvh56Ul5odP1bAHqw== 11794 dependencies: 11795 archiver-utils "^2.1.0" 11796 - compress-commons "^4.0.2" 11797 readable-stream "^3.6.0"
··· 2 # yarn lockfile v1 3 4 5 + "@azure/abort-controller@^1.0.0": 6 + version "1.0.4" 7 + resolved "https://registry.yarnpkg.com/@azure/abort-controller/-/abort-controller-1.0.4.tgz#fd3c4d46c8ed67aace42498c8e2270960250eafd" 8 + integrity sha512-lNUmDRVGpanCsiUN3NWxFTdwmdFI53xwhkTFfHDGTYk46ca7Ind3nanJc+U6Zj9Tv+9nTCWRBscWEW1DyKOpTw== 9 + dependencies: 10 + tslib "^2.0.0" 11 + 12 + "@azure/core-auth@^1.1.4": 13 + version "1.3.0" 14 + resolved "https://registry.yarnpkg.com/@azure/core-auth/-/core-auth-1.3.0.tgz#0d55517cf0650aefe755669aca8a2f3724fcf536" 15 + integrity sha512-kSDSZBL6c0CYdhb+7KuutnKGf2geeT+bCJAgccB0DD7wmNJSsQPcF7TcuoZX83B7VK4tLz/u+8sOO/CnCsYp8A== 16 + dependencies: 17 + "@azure/abort-controller" "^1.0.0" 18 + tslib "^2.0.0" 19 + 20 "@azure/ms-rest-azure-env@^1.1.2": 21 version "1.1.2" 22 resolved "https://registry.yarnpkg.com/@azure/ms-rest-azure-env/-/ms-rest-azure-env-1.1.2.tgz#8505873afd4a1227ec040894a64fdd736b4a101f" 23 integrity sha512-l7z0DPCi2Hp88w12JhDTtx5d0Y3+vhfE7JKJb9O7sEz71Cwp053N8piTtTnnk/tUor9oZHgEKi/p3tQQmLPjvA== 24 25 "@azure/ms-rest-js@^1.8.7": 26 + version "1.11.2" 27 + resolved "https://registry.yarnpkg.com/@azure/ms-rest-js/-/ms-rest-js-1.11.2.tgz#e83d512b102c302425da5ff03a6d76adf2aa4ae6" 28 + integrity sha512-2AyQ1IKmLGKW7DU3/x3TsTBzZLcbC9YRI+yuDPuXAQrv3zar340K9wsxU413kHFIDjkWNCo9T0w5VtwcyWxhbQ== 29 dependencies: 30 + "@azure/core-auth" "^1.1.4" 31 axios "^0.21.1" 32 form-data "^2.3.2" 33 tough-cookie "^2.4.3" ··· 45 "@azure/ms-rest-js" "^1.8.7" 46 adal-node "^0.1.28" 47 48 + "@babel/code-frame@7.12.11": 49 version "7.12.11" 50 resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 51 integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 52 dependencies: 53 "@babel/highlight" "^7.10.4" 54 55 + "@babel/code-frame@^7.0.0": 56 + version "7.12.13" 57 + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" 58 + integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 59 + dependencies: 60 + "@babel/highlight" "^7.12.13" 61 + 62 + "@babel/helper-validator-identifier@^7.14.0": 63 + version "7.14.0" 64 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288" 65 + integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A== 66 67 + "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": 68 + version "7.14.0" 69 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf" 70 + integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg== 71 dependencies: 72 + "@babel/helper-validator-identifier" "^7.14.0" 73 chalk "^2.0.0" 74 js-tokens "^4.0.0" 75 ··· 87 enabled "2.0.x" 88 kuler "^2.0.0" 89 90 + "@discoveryjs/json-ext@^0.5.0": 91 + version "0.5.2" 92 + resolved "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz#8f03a22a04de437254e8ce8cc84ba39689288752" 93 + integrity sha512-HyYEUDeIj5rRQU2Hk5HTB2uHsbRQpF70nvMhVzi+VJR0X+xNEhjPui4/kBf3VeH/wqD28PT4sVOm8qqLjBrSZg== 94 + 95 + "@eslint/eslintrc@^0.4.0": 96 + version "0.4.0" 97 + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" 98 + integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== 99 + dependencies: 100 + ajv "^6.12.4" 101 + debug "^4.1.1" 102 + espree "^7.3.0" 103 + globals "^12.1.0" 104 + ignore "^4.0.6" 105 + import-fresh "^3.2.1" 106 + js-yaml "^3.13.1" 107 + minimatch "^3.0.4" 108 + strip-json-comments "^3.1.1" 109 + 110 "@nodelib/fs.scandir@2.1.4": 111 version "2.1.4" 112 resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" ··· 129 fastq "^1.6.0" 130 131 "@npmcli/move-file@^1.0.1": 132 + version "1.1.2" 133 + resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz#1a82c3e372f7cae9253eb66d72543d6b8685c674" 134 + integrity sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg== 135 dependencies: 136 mkdirp "^1.0.4" 137 + rimraf "^3.0.2" 138 139 "@passport-next/passport-openid@^1.0.0": 140 version "1.0.0" ··· 154 resolved "https://registry.yarnpkg.com/@tokenizer/token/-/token-0.1.1.tgz#f0d92c12f87079ddfd1b29f614758b9696bc29e3" 155 integrity sha512-XO6INPbZCxdprl+9qa/AAbFFOMzzwqYxpjPgLICrMD6C2FCw6qfJOPcBk6JqqPLSaZ/Qx87qn4rpPmPMwaAK6w== 156 157 + "@types/accepts@*": 158 + version "1.3.5" 159 + resolved "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz#c34bec115cfc746e04fe5a059df4ce7e7b391575" 160 + integrity sha512-jOdnI/3qTpHABjM5cx1Hc0sKsPoYCp+DP/GJRGtDlPd7fiV9oXGGIcjW/ZOxLIvjGz8MA+uMZI9metHlgqbgwQ== 161 + dependencies: 162 + "@types/node" "*" 163 + 164 "@types/anymatch@*": 165 version "1.3.1" 166 resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" ··· 181 dependencies: 182 "@types/node" "*" 183 184 + "@types/content-disposition@*": 185 + version "0.5.3" 186 + resolved "https://registry.yarnpkg.com/@types/content-disposition/-/content-disposition-0.5.3.tgz#0aa116701955c2faa0717fc69cd1596095e49d96" 187 + integrity sha512-P1bffQfhD3O4LW0ioENXUhZ9OIa0Zn+P7M+pWgkCKaT53wVLSq0mrKksCID/FGHpFhRSxRGhgrQmfhRuzwtKdg== 188 + 189 + "@types/cookies@*": 190 + version "0.7.6" 191 + resolved "https://registry.yarnpkg.com/@types/cookies/-/cookies-0.7.6.tgz#71212c5391a976d3bae57d4b09fac20fc6bda504" 192 + integrity sha512-FK4U5Qyn7/Sc5ih233OuHO0qAkOpEcD/eG6584yEiLKizTFRny86qHLe/rej3HFQrkBuUjF4whFliAdODbVN/w== 193 + dependencies: 194 + "@types/connect" "*" 195 + "@types/express" "*" 196 + "@types/keygrip" "*" 197 + "@types/node" "*" 198 + 199 "@types/debug@^4.1.5": 200 version "4.1.5" 201 resolved "https://registry.yarnpkg.com/@types/debug/-/debug-4.1.5.tgz#b14efa8852b7768d898906613c23f688713e02cd" 202 integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== 203 204 + "@types/express-serve-static-core@^4.17.12", "@types/express-serve-static-core@^4.17.18": 205 + version "4.17.19" 206 + resolved "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz#00acfc1632e729acac4f1530e9e16f6dd1508a1d" 207 + integrity sha512-DJOSHzX7pCiSElWaGR8kCprwibCB/3yW6vcT8VG3P0SJjnv19gnWG/AZMfM60Xj/YJIp/YCaDHyvzsFVeniARA== 208 dependencies: 209 "@types/node" "*" 210 "@types/qs" "*" 211 "@types/range-parser" "*" 212 213 + "@types/express@*", "@types/express@^4.17.8": 214 version "4.17.11" 215 resolved "https://registry.yarnpkg.com/@types/express/-/express-4.17.11.tgz#debe3caa6f8e5fcda96b47bd54e2f40c4ee59545" 216 integrity sha512-no+R6rW60JEc59977wIxreQVsIEOAYwgCqldrA/vkpCnbD7MqTefO97lmoBe4WE0F156bC4uLSP1XHDOySnChg== ··· 230 resolved "https://registry.yarnpkg.com/@types/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#3c9ee980f1a10d6021ae6632ca3e79ca2ec4fb50" 231 integrity sha512-giAlZwstKbmvMk1OO7WXSj4OZ0keXAcl2TQq4LWHiiPH2ByaH7WeUzng+Qej8UPxxv+8lRTuouo0iaNDBuzIBA== 232 233 + "@types/http-assert@*": 234 + version "1.5.1" 235 + resolved "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.5.1.tgz#d775e93630c2469c2f980fc27e3143240335db3b" 236 + integrity sha512-PGAK759pxyfXE78NbKxyfRcWYA/KwW17X290cNev/qAsn9eQIxkH4shoNBafH37wewhDG/0p1cHPbK6+SzZjWQ== 237 + 238 + "@types/http-errors@*": 239 + version "1.8.0" 240 + resolved "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.8.0.tgz#682477dbbbd07cd032731cb3b0e7eaee3d026b69" 241 + integrity sha512-2aoSC4UUbHDj2uCsCxcG/vRMXey/m17bC7UwitVm5hn22nI8O8Y9iDpA76Orc+DWkQ4zZrOKEshCqR/jSuXAHA== 242 + 243 + "@types/json-schema@^7.0.6": 244 + version "7.0.7" 245 + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz#98a993516c859eb0d5c4c8f098317a9ea68db9ad" 246 + integrity sha512-cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA== 247 248 "@types/json5@^0.0.29": 249 version "0.0.29" 250 resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" 251 integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4= 252 253 + "@types/keygrip@*": 254 + version "1.0.2" 255 + resolved "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz#513abfd256d7ad0bf1ee1873606317b33b1b2a72" 256 + integrity sha512-GJhpTepz2udxGexqos8wgaBx4I/zWIDPh/KOGEwAqtuGDkOUJu5eFvwmdBX4AmB8Odsr+9pHCQqiAqDL/yKMKw== 257 + 258 + "@types/koa-compose@*": 259 + version "3.2.5" 260 + resolved "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.5.tgz#85eb2e80ac50be95f37ccf8c407c09bbe3468e9d" 261 + integrity sha512-B8nG/OoE1ORZqCkBVsup/AKcvjdgoHnfi4pZMn5UwAPCbhk/96xyv284eBYW8JlQbQ7zDmnpFr68I/40mFoIBQ== 262 + dependencies: 263 + "@types/koa" "*" 264 + 265 + "@types/koa@*", "@types/koa@^2.11.4": 266 + version "2.13.1" 267 + resolved "https://registry.yarnpkg.com/@types/koa/-/koa-2.13.1.tgz#e29877a6b5ad3744ab1024f6ec75b8cbf6ec45db" 268 + integrity sha512-Qbno7FWom9nNqu0yHZ6A0+RWt4mrYBhw3wpBAQ3+IuzGcLlfeYkzZrnMq5wsxulN2np8M4KKeUpTodsOsSad5Q== 269 + dependencies: 270 + "@types/accepts" "*" 271 + "@types/content-disposition" "*" 272 + "@types/cookies" "*" 273 + "@types/http-assert" "*" 274 + "@types/http-errors" "*" 275 + "@types/keygrip" "*" 276 + "@types/koa-compose" "*" 277 + "@types/node" "*" 278 + 279 + "@types/ldapjs@^1.0.9": 280 + version "1.0.10" 281 + resolved "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.10.tgz#bac705c9e154b97d69496b5213cc28dbe9715a37" 282 + integrity sha512-AMkMxkK/wjYtWebNH2O+rARfo7scBpW3T23g6zmGCwDgbyDbR79XWpcSqhPWdU+fChaF+I3dVyl9X2dT1CyI9w== 283 dependencies: 284 "@types/node" "*" 285 286 + "@types/mdast@^3.0.0": 287 + version "3.0.3" 288 + resolved "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz#2d7d671b1cd1ea3deb306ea75036c2a0407d2deb" 289 + integrity sha512-SXPBMnFVQg1s00dlMCc/jCdvPqdE4mXaMMCeRlxLDmTAEoegHT53xKtkDnzDTOcmMHUfcjyf36/YYZ6SxRdnsw== 290 + dependencies: 291 + "@types/unist" "*" 292 + 293 + "@types/mime@^1": 294 + version "1.3.2" 295 + resolved "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz#93e25bf9ee75fe0fd80b594bc4feb0e862111b5a" 296 + integrity sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw== 297 298 + "@types/node@*": 299 + version "15.0.1" 300 + resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.1.tgz#ef34dea0881028d11398be5bf4e856743e3dc35a" 301 + integrity sha512-TMkXt0Ck1y0KKsGr9gJtWGjttxlZnnvDtphxUOSd0bfaR6Q1jle+sPvrzNR1urqYTWMinoKvjKfXUGsumaO1PA== 302 303 "@types/node@^12.12.17": 304 + version "12.20.11" 305 + resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.11.tgz#980832cd56efafff8c18aa148c4085eb02a483f4" 306 + integrity sha512-gema+apZ6qLQK7k7F0dGkGCWQYsL0qqKORWOQO6tq46q+x+1C0vbOiOqOwRVlh4RAdbQwV/j/ryr3u5NOG1fPQ== 307 + 308 + "@types/node@^14.14.28": 309 + version "14.14.43" 310 + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.43.tgz#26bcbb0595b305400e8ceaf9a127a7f905ae49c8" 311 + integrity sha512-3pwDJjp1PWacPTpH0LcfhgjvurQvrZFBrC6xxjaUEZ7ifUtT32jtjPxEMMblpqd2Mvx+k8haqQJLQxolyGN/cQ== 312 313 "@types/node@^8.0.47": 314 version "8.10.66" 315 resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.66.tgz#dd035d409df322acc83dff62a602f12a5783bbb3" 316 integrity sha512-tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw== 317 318 "@types/q@^1.5.1": 319 version "1.5.4" 320 resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24" 321 integrity sha512-1HcDas8SEj4z1Wc696tH56G8OlRaH/sqZOynNNB+HF0WOeXPaxTtbYzJY2oEfiUxjSKjhCKr+MvR7dCHcEelug== 322 323 "@types/qs@*": 324 + version "6.9.6" 325 + resolved "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz#df9c3c8b31a247ec315e6996566be3171df4b3b1" 326 + integrity sha512-0/HnwIfW4ki2D8L8c9GVcG5I72s9jP5GSLVF0VIXDW00kmIpA6O33G7a8n59Tmh7Nz0WUC3rSb7PTY/sdW2JzA== 327 328 "@types/range-parser@*": 329 version "1.2.3" ··· 339 safe-buffer "*" 340 341 "@types/serve-static@*": 342 + version "1.13.9" 343 + resolved "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz#aacf28a85a05ee29a11fb7c3ead935ac56f33e4e" 344 + integrity sha512-ZFqF6qa48XsPdjXV5Gsz0Zqmux2PerNd3a/ktL45mHpa19cuMi/cL8tcxdAx497yRh+QtYPuofjT9oWw9P7nkA== 345 dependencies: 346 + "@types/mime" "^1" 347 "@types/node" "*" 348 349 "@types/source-list-map@*": ··· 351 resolved "https://registry.yarnpkg.com/@types/source-list-map/-/source-list-map-0.1.2.tgz#0078836063ffaf17412349bba364087e0ac02ec9" 352 integrity sha512-K5K+yml8LTo9bWJI/rECfIPrGgxdpeNbj+d53lwN4QjW1MCwlkhUms+gtdzigTeUyBr09+u8BwOIY3MXvHdcsA== 353 354 + "@types/tapable@^1", "@types/tapable@^1.0.5": 355 + version "1.0.7" 356 + resolved "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz#545158342f949e8fd3bfd813224971ecddc3fac4" 357 + integrity sha512-0VBprVqfgFD7Ehb2vd8Lh9TG3jP98gvr8rgehQqzztZNI7o8zS8Ad4jyZneKELphpuE212D8J70LnSNQSyO6bQ== 358 359 "@types/uglify-js@*": 360 + version "3.13.0" 361 + resolved "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.0.tgz#1cad8df1fb0b143c5aba08de5712ea9d1ff71124" 362 + integrity sha512-EGkrJD5Uy+Pg0NUR8uA4bJ5WMfljyad0G+784vLCNUkD+QwOJXUbBYExXfVGf7YtyzdQp3L/XMYcliB987kL5Q== 363 dependencies: 364 source-map "^0.6.1" 365 366 + "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2": 367 version "2.0.3" 368 resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" 369 integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== ··· 378 source-map "^0.7.3" 379 380 "@types/webpack@^4.41.8": 381 + version "4.41.27" 382 + resolved "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.27.tgz#f47da488c8037e7f1b2dbf2714fbbacb61ec0ffc" 383 + integrity sha512-wK/oi5gcHi72VMTbOaQ70VcDxSQ1uX8S2tukBK9ARuGXrYM/+u4ou73roc7trXDNmCxCoerE8zruQqX/wuHszA== 384 dependencies: 385 "@types/anymatch" "*" 386 "@types/node" "*" 387 + "@types/tapable" "^1" 388 "@types/uglify-js" "*" 389 "@types/webpack-sources" "*" 390 source-map "^0.6.0" 391 + 392 + "@ungap/promise-all-settled@1.1.2": 393 + version "1.1.2" 394 + resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" 395 + integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== 396 397 "@webassemblyjs/ast@1.9.0": 398 version "1.9.0" ··· 539 "@webassemblyjs/wast-parser" "1.9.0" 540 "@xtuc/long" "4.2.2" 541 542 + "@webpack-cli/configtest@^1.0.2": 543 + version "1.0.2" 544 + resolved "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.0.2.tgz#2a20812bfb3a2ebb0b27ee26a52eeb3e3f000836" 545 + integrity sha512-3OBzV2fBGZ5TBfdW50cha1lHDVf9vlvRXnjpVbJBa20pSZQaSkMJZiwA8V2vD9ogyeXn8nU5s5A6mHyf5jhMzA== 546 + 547 + "@webpack-cli/info@^1.2.3": 548 + version "1.2.3" 549 + resolved "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.2.3.tgz#ef819d10ace2976b6d134c7c823a3e79ee31a92c" 550 + integrity sha512-lLek3/T7u40lTqzCGpC6CAbY6+vXhdhmwFRxZLMnRm6/sIF/7qMpT8MocXCRQfz0JAh63wpbXLMnsQ5162WS7Q== 551 + dependencies: 552 + envinfo "^7.7.3" 553 + 554 + "@webpack-cli/serve@^1.3.1": 555 + version "1.3.1" 556 + resolved "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.3.1.tgz#911d1b3ff4a843304b9c3bacf67bb34672418441" 557 + integrity sha512-0qXvpeYO6vaNoRBI52/UsbcaBydJCggoBBnIo/ovQQdn6fug0BgwsjorV1hVS7fMqGVTZGcVxv8334gjmbj5hw== 558 + 559 "@xtuc/ieee754@^1.2.0": 560 version "1.2.0" 561 resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790" ··· 568 569 "Idle.Js@git+https://github.com/shawnmclean/Idle.js": 570 version "0.0.1" 571 + uid db9beb3483a460ad638ec947867720f0ed066a62 572 resolved "git+https://github.com/shawnmclean/Idle.js#db9beb3483a460ad638ec947867720f0ed066a62" 573 574 JSV@^4.0.x: ··· 576 resolved "https://registry.yarnpkg.com/JSV/-/JSV-4.0.2.tgz#d077f6825571f82132f9dffaed587b4029feff57" 577 integrity sha1-0Hf2glVx+CEy+d/67Vh7QCn+/1c= 578 579 abbrev@1: 580 version "1.1.1" 581 resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" 582 integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== 583 584 + abstract-logging@^2.0.0: 585 + version "2.0.1" 586 + resolved "https://registry.yarnpkg.com/abstract-logging/-/abstract-logging-2.0.1.tgz#6b0c371df212db7129b57d2e7fcf282b8bf1c839" 587 + integrity sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA== 588 + 589 accepts@~1.3.4, accepts@~1.3.5, accepts@~1.3.7: 590 version "1.3.7" 591 resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd" ··· 594 mime-types "~2.1.24" 595 negotiator "0.6.2" 596 597 + acorn-jsx@^5.3.1: 598 version "5.3.1" 599 resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 600 integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 601 602 + acorn@^6.4.1: 603 version "6.4.2" 604 resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6" 605 integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ== 606 + 607 + acorn@^7.4.0: 608 + version "7.4.1" 609 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 610 + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 611 612 adal-node@^0.1.28: 613 version "0.1.28" ··· 647 resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" 648 integrity sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ== 649 650 + ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.3, ajv@^6.12.4, ajv@^6.12.5: 651 version "6.12.6" 652 resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 653 integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== ··· 657 json-schema-traverse "^0.4.1" 658 uri-js "^4.2.2" 659 660 + ajv@^8.0.1: 661 + version "8.2.0" 662 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.2.0.tgz#c89d3380a784ce81b2085f48811c4c101df4c602" 663 + integrity sha512-WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA== 664 + dependencies: 665 + fast-deep-equal "^3.1.1" 666 + json-schema-traverse "^1.0.0" 667 + require-from-string "^2.0.2" 668 + uri-js "^4.2.2" 669 + 670 alphanum-sort@^1.0.0: 671 version "1.0.2" 672 resolved "https://registry.yarnpkg.com/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3" 673 integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM= 674 675 + ansi-colors@4.1.1, ansi-colors@^4.1.1: 676 + version "4.1.1" 677 + resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 678 + integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 679 680 + ansi-regex@^2.0.0: 681 version "2.1.1" 682 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" 683 integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= ··· 686 version "3.0.0" 687 resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 688 integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 689 690 ansi-regex@^5.0.0: 691 version "5.0.0" ··· 697 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" 698 integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= 699 700 + ansi-styles@^3.2.1: 701 version "3.2.1" 702 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 703 integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 704 dependencies: 705 color-convert "^1.9.0" 706 707 + ansi-styles@^4.0.0, ansi-styles@^4.1.0: 708 version "4.3.0" 709 resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 710 integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== ··· 738 normalize-path "^2.1.1" 739 740 anymatch@~3.1.1: 741 + version "3.1.2" 742 + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 743 + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 744 dependencies: 745 normalize-path "^3.0.0" 746 picomatch "^2.0.4" ··· 767 readable-stream "^2.0.0" 768 769 archiver@^5.0.2: 770 + version "5.3.0" 771 + resolved "https://registry.yarnpkg.com/archiver/-/archiver-5.3.0.tgz#dd3e097624481741df626267564f7dd8640a45ba" 772 + integrity sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg== 773 dependencies: 774 archiver-utils "^2.1.0" 775 async "^3.2.0" 776 buffer-crc32 "^0.2.1" 777 readable-stream "^3.6.0" 778 readdir-glob "^1.0.0" 779 + tar-stream "^2.2.0" 780 + zip-stream "^4.1.0" 781 782 are-we-there-yet@~1.1.2: 783 version "1.1.5" ··· 793 integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 794 dependencies: 795 sprintf-js "~1.0.2" 796 + 797 + argparse@^2.0.1: 798 + version "2.0.1" 799 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 800 + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 801 802 arr-diff@^2.0.0: 803 version "2.0.0" ··· 821 resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4" 822 integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ= 823 824 + array-filter@^1.0.0: 825 version "1.0.0" 826 + resolved "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz#baf79e62e6ef4c2a4c0b831232daffec251f9d83" 827 + integrity sha1-uveeYubvTCpMC4MSMtr/7CUfnYM= 828 829 array-flatten@1.1.1: 830 version "1.1.1" ··· 832 integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= 833 834 array-includes@^3.1.1: 835 + version "3.1.3" 836 + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz#c7f619b382ad2afaf5326cddfdc0afc61af7690a" 837 + integrity sha512-gcem1KlBU7c9rB+Rq8/3PPKsK2kjqeEBa3bD5kkQo4nYlOHQCJqIJFqBXDEfwaRuYTT4E+FxA9xez7Gf/e3Q7A== 838 dependencies: 839 + call-bind "^1.0.2" 840 define-properties "^1.1.3" 841 + es-abstract "^1.18.0-next.2" 842 + get-intrinsic "^1.1.1" 843 is-string "^1.0.5" 844 845 array-union@^2.1.0: ··· 871 resolved "https://registry.yarnpkg.com/arraybuffer.slice/-/arraybuffer.slice-0.0.7.tgz#3bbc4275dd584cc1b10809b89d4e8b63a69e7675" 872 integrity sha512-wGUIVQXuehL5TCqQun8OW81jGzAWycqzFF8lFp+GOM5BXLYj3bKNsYC4daB7n6XjCqxQA/qgTJ+8ANR3acjrog== 873 874 asn1.js@^5.2.0: 875 version "5.4.1" 876 resolved "https://registry.yarnpkg.com/asn1.js/-/asn1.js-5.4.1.tgz#11a980b84ebb91781ce35b0fdc2ee294e3783f07" ··· 881 minimalistic-assert "^1.0.0" 882 safer-buffer "^2.1.0" 883 884 + asn1@^0.2.4, asn1@~0.2.3: 885 version "0.2.4" 886 resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" 887 integrity sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg== 888 dependencies: 889 safer-buffer "~2.1.0" 890 891 assert-plus@1.0.0, assert-plus@^1.0.0: 892 version "1.0.0" ··· 906 resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 907 integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 908 909 + astral-regex@^2.0.0: 910 + version "2.0.0" 911 + resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 912 + integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 913 914 async-each@^1.0.0, async-each@^1.0.1: 915 version "1.0.3" 916 resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf" 917 integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ== 918 919 + async@0.9.x: 920 + version "0.9.2" 921 + resolved "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz#aea74d5e61c1f899613bf64bda66d4c78f2fd17d" 922 + integrity sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0= 923 924 + async@>=0.6.0, async@^3.0.0, async@^3.1.0, async@^3.2.0: 925 version "3.2.0" 926 resolved "https://registry.yarnpkg.com/async/-/async-3.2.0.tgz#b3a2685c5ebb641d3de02d161002c60fc9f85720" 927 integrity sha512-TR2mEZFVOj2pLStYxLht7TyfuRzaydfpxr3k9RpHIzMgw7A64dzsdqCxH1WJyQdoe8T10nDXd9wnEigmiuHIZw== 928 929 + async@^1.4.0: 930 version "1.5.2" 931 resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a" 932 integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo= 933 934 asynckit@^0.4.0: 935 version "0.4.0" 936 resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" ··· 941 resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 942 integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 943 944 + available-typed-arrays@^1.0.2: 945 + version "1.0.2" 946 + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz#6b098ca9d8039079ee3f77f7b783c4480ba513f5" 947 + integrity sha512-XWX3OX8Onv97LMk/ftVyBibpGwY5a8SmuxZPzeOxqmuEqUCOM9ZE+uIaD1VNJ5QnvU2UQusvmKbuM1FR8QWGfQ== 948 + dependencies: 949 + array-filter "^1.0.0" 950 + 951 + aws-sdk@^2.888.0: 952 + version "2.898.0" 953 + resolved "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.898.0.tgz#fd07b9748d302fccc2d1e069ae313e911b526578" 954 + integrity sha512-6XxsKEDgDEQlLAVrPDNO01UgflCaKJlp6bYTSxv2z50ApTktadwSr/uJgpaBdAiZ8EKVlWN4UgM7vgOmrI/MPg== 955 dependencies: 956 buffer "4.9.2" 957 events "1.1.1" ··· 1573 integrity sha512-xFbRxM1tahm08yHBP16MMjVUAvDaBMD38zsM9EMAUN61omwLmKlOpB/Zku5QkjZ8TZ4vn53pj+t518cH0S03RQ== 1574 1575 balanced-match@^1.0.0: 1576 + version "1.0.2" 1577 + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1578 + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1579 1580 base64-arraybuffer@0.1.4: 1581 version "0.1.4" ··· 1651 dependencies: 1652 file-uri-to-path "1.0.0" 1653 1654 + bintrees@1.0.1: 1655 + version "1.0.1" 1656 + resolved "https://registry.yarnpkg.com/bintrees/-/bintrees-1.0.1.tgz#0e655c9b9c2435eaab68bf4027226d2b55a34524" 1657 + integrity sha1-DmVcm5wkNeqraL9AJyJtK1WjRSQ= 1658 + 1659 bl@^3.0.0: 1660 version "3.0.1" 1661 resolved "https://registry.yarnpkg.com/bl/-/bl-3.0.1.tgz#1cbb439299609e419b5a74d7fce2f8b37d8e5c6f" ··· 1664 readable-stream "^3.0.1" 1665 1666 bl@^4.0.3: 1667 + version "4.1.0" 1668 + resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" 1669 + integrity sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w== 1670 dependencies: 1671 buffer "^5.5.0" 1672 inherits "^2.0.4" ··· 1677 resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683" 1678 integrity sha512-gaqbzQPqOoamawKg0LGVd7SzLgXS+JH61oWprSLH+P+abTczqJbhTR8CmJ2u9/bUYNmHTGJx/UEmn6doAvvuig== 1679 1680 + block-stream2@^2.0.0: 1681 + version "2.1.0" 1682 + resolved "https://registry.yarnpkg.com/block-stream2/-/block-stream2-2.1.0.tgz#ac0c5ef4298b3857796e05be8ebed72196fa054b" 1683 + integrity sha512-suhjmLI57Ewpmq00qaygS8UgEq2ly2PCItenIyhMqVjo4t4pGzqMvfgJuX8iWTeSDdfSSqS6j38fL4ToNL7Pfg== 1684 dependencies: 1685 + readable-stream "^3.4.0" 1686 1687 + block-stream@*: 1688 + version "0.0.9" 1689 + resolved "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz#13ebfe778a03205cfe03751481ebb4b3300c126a" 1690 + integrity sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo= 1691 + dependencies: 1692 + inherits "~2.0.0" 1693 + 1694 + bluebird@^3.5.0, bluebird@^3.5.5, bluebird@^3.7.2: 1695 version "3.7.2" 1696 resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.7.2.tgz#9f229c15be272454ffa973ace0dbee79a1b0c36f" 1697 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 1698 1699 + bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.11.9: 1700 + version "4.12.0" 1701 + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz#775b3f278efbb9718eec7361f483fb36fbbfea88" 1702 + integrity sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA== 1703 1704 bn.js@^5.0.0, bn.js@^5.1.1: 1705 + version "5.2.0" 1706 + resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz#358860674396c6997771a9d051fcc1b57d4ae002" 1707 + integrity sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw== 1708 1709 body-parser@1.19.0, body-parser@^1.15.2: 1710 version "1.19.0" ··· 1736 version "3.4.1" 1737 resolved "https://registry.yarnpkg.com/bootstrap/-/bootstrap-3.4.1.tgz#c3a347d419e289ad11f4033e3c4132b87c081d72" 1738 integrity sha512-yN5oZVmRCwe5aKwzRj6736nSmKDX7pLYwsXiCj/EYmo16hODaBiT4En5btW/jhBF/seV+XMx3aYwukYC3A49DA== 1739 1740 brace-expansion@^1.1.7: 1741 version "1.1.11" ··· 1777 dependencies: 1778 fill-range "^7.0.1" 1779 1780 + brorand@^1.0.1, brorand@^1.1.0: 1781 version "1.1.0" 1782 resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f" 1783 integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8= 1784 1785 browser-stdout@1.3.1: 1786 version "1.3.1" 1787 resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" ··· 1862 electron-to-chromium "^1.3.47" 1863 1864 browserslist@^4.0.0: 1865 + version "4.16.6" 1866 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" 1867 + integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== 1868 dependencies: 1869 + caniuse-lite "^1.0.30001219" 1870 + colorette "^1.2.2" 1871 + electron-to-chromium "^1.3.723" 1872 escalade "^3.1.1" 1873 + node-releases "^1.1.71" 1874 1875 buffer-crc32@^0.2.1, buffer-crc32@^0.2.13: 1876 version "0.2.13" ··· 1926 resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" 1927 integrity sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug= 1928 1929 bytes@3.0.0: 1930 version "3.0.0" 1931 resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048" ··· 1958 y18n "^4.0.0" 1959 1960 cacache@^15.0.5: 1961 + version "15.0.6" 1962 + resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.6.tgz#65a8c580fda15b59150fb76bf3f3a8e45d583099" 1963 + integrity sha512-g1WYDMct/jzW+JdWEyjaX2zoBkZ6ZT9VpOyp2I/VMtDsNLffNat3kqPFfi1eDRSK9/SuKGyORDHcQMcPF8sQ/w== 1964 dependencies: 1965 "@npmcli/move-file" "^1.0.1" 1966 chownr "^2.0.0" ··· 1976 p-map "^4.0.0" 1977 promise-inflight "^1.0.1" 1978 rimraf "^3.0.2" 1979 + ssri "^8.0.1" 1980 tar "^6.0.2" 1981 unique-filename "^1.1.1" 1982 ··· 1995 union-value "^1.0.0" 1996 unset-value "^1.0.0" 1997 1998 + call-bind@^1.0.0, call-bind@^1.0.2: 1999 version "1.0.2" 2000 resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.2.tgz#b1d4e89e688119c3c9a903ad30abb2f6a919be3c" 2001 integrity sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA== ··· 2043 pascal-case "^3.1.2" 2044 tslib "^2.0.3" 2045 2046 + camelcase@^5.0.0: 2047 version "5.3.1" 2048 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 2049 integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 2050 2051 + camelcase@^6.0.0, camelcase@^6.2.0: 2052 + version "6.2.0" 2053 + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 2054 + integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 2055 2056 caniuse-api@^3.0.0: 2057 version "3.0.0" ··· 2063 lodash.memoize "^4.1.2" 2064 lodash.uniq "^4.5.0" 2065 2066 + caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30001219: 2067 + version "1.0.30001220" 2068 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001220.tgz#c080e1c8eefb99f6cc9685da6313840bdbaf4c36" 2069 + integrity sha512-pjC2T4DIDyGAKTL4dMvGUQaMUHRmhvPpAgNNTa14jaBWHu+bLQgvpFqElxh9L4829Fdx0PlKiMp3wnYldRtECA== 2070 2071 caseless@~0.12.0: 2072 version "0.12.0" 2073 resolved "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc" 2074 integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw= 2075 2076 chalk@^1.1.3: 2077 version "1.1.3" 2078 resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" ··· 2084 strip-ansi "^3.0.0" 2085 supports-color "^2.0.0" 2086 2087 + chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2: 2088 version "2.4.2" 2089 resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 2090 integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== ··· 2101 ansi-styles "^4.1.0" 2102 supports-color "^7.1.0" 2103 2104 + chalk@^4.0.0: 2105 + version "4.1.1" 2106 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 2107 + integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 2108 + dependencies: 2109 + ansi-styles "^4.1.0" 2110 + supports-color "^7.1.0" 2111 + 2112 chalk@~0.4.0: 2113 version "0.4.0" 2114 resolved "https://registry.yarnpkg.com/chalk/-/chalk-0.4.0.tgz#5199a3ddcd0c1efe23bc08c1b027b06176e0c64f" ··· 2123 resolved "https://registry.yarnpkg.com/chance/-/chance-1.1.7.tgz#e99dde5ac16681af787b5ba94c8277c090d6cfe8" 2124 integrity sha512-bua/2cZEfzS6qPm0vi3JEvGNbriDLcMj9lKxCQOjUcCJRcyjA7umP0zZm6bKWWlBN04vA0L99QGH/CZQawr0eg== 2125 2126 character-entities-legacy@^1.0.0: 2127 version "1.1.4" 2128 resolved "https://registry.yarnpkg.com/character-entities-legacy/-/character-entities-legacy-1.1.4.tgz#94bc1845dce70a5bb9d2ecc748725661293d8fc1" ··· 2137 version "1.1.4" 2138 resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.4.tgz#083329cda0eae272ab3dbbf37e9a382c13af1560" 2139 integrity sha512-mKKUkUbhPpQlCOfIuZkvSEgktjPFIsZKRRbC6KWVEMvlzblj3i3asQv5ODsrwt0N3pHAEvjP8KTQPHkp0+6jOg== 2140 2141 cheerio@^0.22.0: 2142 version "0.22.0" ··· 2160 lodash.reject "^4.4.0" 2161 lodash.some "^4.4.0" 2162 2163 + chokidar@3.5.1, chokidar@^3.0.0, chokidar@^3.4.1: 2164 + version "3.5.1" 2165 + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" 2166 + integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 2167 + dependencies: 2168 + anymatch "~3.1.1" 2169 + braces "~3.0.2" 2170 + glob-parent "~5.1.0" 2171 + is-binary-path "~2.1.0" 2172 + is-glob "~4.0.1" 2173 + normalize-path "~3.0.0" 2174 + readdirp "~3.5.0" 2175 + optionalDependencies: 2176 + fsevents "~2.3.1" 2177 + 2178 chokidar@^1.6.1: 2179 version "1.7.0" 2180 resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-1.7.0.tgz#798e689778151c8076b4b360e5edd28cda2bb468" ··· 2210 optionalDependencies: 2211 fsevents "^1.2.7" 2212 2213 chownr@^1.1.1: 2214 version "1.1.4" 2215 resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.4.tgz#6fc9d7b42d32a583596337666e7d08084da2cc6b" ··· 2221 integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== 2222 2223 chrome-trace-event@^1.0.2: 2224 + version "1.0.3" 2225 + resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz#1015eced4741e15d06664a957dbbf50d041e26ac" 2226 + integrity sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg== 2227 2228 cipher-base@^1.0.0, cipher-base@^1.0.1, cipher-base@^1.0.3: 2229 version "1.0.4" ··· 2255 resolved "https://registry.yarnpkg.com/clean-stack/-/clean-stack-2.2.0.tgz#ee8472dbb129e727b31e8a10a427dee9dfe4008b" 2256 integrity sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A== 2257 2258 clipboard@^2.0.0: 2259 + version "2.0.8" 2260 + resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.8.tgz#ffc6c103dd2967a83005f3f61976aa4655a4cdba" 2261 + integrity sha512-Y6WO0unAIQp5bLmk1zdThRhgJt/x3ks6f30s3oE3H1mgIEU33XyQjEf8gsf6DxC7NPX8Y1SsNWjUjL/ywLnnbQ== 2262 dependencies: 2263 good-listener "^1.2.2" 2264 select "^1.1.2" 2265 tiny-emitter "^2.0.0" 2266 2267 + cliui@^7.0.2: 2268 + version "7.0.4" 2269 + resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 2270 + integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 2271 dependencies: 2272 + string-width "^4.2.0" 2273 + strip-ansi "^6.0.0" 2274 + wrap-ansi "^7.0.0" 2275 2276 + clone-deep@^4.0.1: 2277 + version "4.0.1" 2278 + resolved "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz#c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387" 2279 + integrity sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ== 2280 + dependencies: 2281 + is-plain-object "^2.0.4" 2282 + kind-of "^6.0.2" 2283 + shallow-clone "^3.0.0" 2284 2285 cls-bluebird@^2.1.0: 2286 version "2.1.0" ··· 2311 2312 "codemirror@git+https://github.com/hedgedoc/CodeMirror.git": 2313 version "5.58.2" 2314 + uid f780b569b3717cdff4c8507538cc63101bfa02e1 2315 resolved "git+https://github.com/hedgedoc/CodeMirror.git#f780b569b3717cdff4c8507538cc63101bfa02e1" 2316 2317 collection-visit@^1.0.0: 2318 version "1.0.0" 2319 resolved "https://registry.yarnpkg.com/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0" ··· 2347 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 2348 2349 color-string@^1.5.2, color-string@^1.5.4: 2350 + version "1.5.5" 2351 + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz#65474a8f0e7439625f3d27a6a19d89fc45223014" 2352 + integrity sha512-jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg== 2353 dependencies: 2354 color-name "^1.0.0" 2355 simple-swizzle "^0.2.2" ··· 2370 color-convert "^1.9.1" 2371 color-string "^1.5.4" 2372 2373 + colorette@^1.2.1, colorette@^1.2.2: 2374 + version "1.2.2" 2375 + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 2376 + integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 2377 2378 colors@^1.2.1: 2379 version "1.4.0" ··· 2395 dependencies: 2396 delayed-stream "~1.0.0" 2397 2398 + commander@2, commander@^2.11.0, commander@^2.19.0, commander@^2.20.0, commander@^2.20.3: 2399 version "2.20.3" 2400 resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 2401 integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 2402 2403 commander@^4.1.1: 2404 version "4.1.1" 2405 resolved "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 2406 integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 2407 + 2408 + commander@^7.0.0: 2409 + version "7.2.0" 2410 + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" 2411 + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== 2412 2413 commondir@^1.0.1: 2414 version "1.0.1" ··· 2435 resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143" 2436 integrity sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM= 2437 2438 + compress-commons@^4.1.0: 2439 + version "4.1.0" 2440 + resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.1.0.tgz#25ec7a4528852ccd1d441a7d4353cd0ece11371b" 2441 + integrity sha512-ofaaLqfraD1YRTkrRKPCrGJ1pFeDG/MVCkVVV2FNGeWquSlqw5wOrwOfPQ1xF2u+blpeWASie5EubHz+vsNIgA== 2442 dependencies: 2443 buffer-crc32 "^0.2.13" 2444 crc32-stream "^4.0.1" ··· 2470 resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 2471 integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 2472 2473 + concat-stream@^1.5.0: 2474 version "1.6.2" 2475 resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" 2476 integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== ··· 2490 readable-stream "^3.0.2" 2491 typedarray "^0.0.6" 2492 2493 connect-flash@^0.1.1: 2494 version "0.1.1" 2495 resolved "https://registry.yarnpkg.com/connect-flash/-/connect-flash-0.1.1.tgz#d8630f26d95a7f851f9956b1e8cc6732f3b6aa30" 2496 integrity sha1-2GMPJtlaf4UfmVax6MxnMvO2qjA= 2497 2498 + connect-session-sequelize@^7.0.0: 2499 + version "7.1.1" 2500 + resolved "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-7.1.1.tgz#e96f33bb3f4560f286cc0e0aefec4f3d3c148fe5" 2501 + integrity sha512-sAygnRra0WrfpyHkKpw0uytuYKJO2PKHcregikkqcHaPWlaQsBB3LLBeNXdT9/BTJU20ZCPeiNschg6qW7u9Tw== 2502 dependencies: 2503 + debug "^4.1.1" 2504 + deep-equal "^2.0.3" 2505 2506 console-browserify@^1.1.0: 2507 version "1.2.0" ··· 2530 dependencies: 2531 safe-buffer "5.1.2" 2532 2533 content-type@~1.0.4: 2534 version "1.0.4" 2535 resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b" ··· 2571 integrity sha1-Cr81atANHFohnYjURRgEbdAmrP4= 2572 2573 copy-anything@^2.0.1: 2574 + version "2.0.3" 2575 + resolved "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.3.tgz#842407ba02466b0df844819bbe3baebbe5d45d87" 2576 + integrity sha512-GK6QUtisv4fNS+XcI7shX0Gx9ORg7QqIznyfho79JTnX1XhLiyZHfftvGiziqzRiEi/Bjhgpi+D2o7HxJFPnDQ== 2577 dependencies: 2578 + is-what "^3.12.0" 2579 2580 copy-concurrently@^1.0.0: 2581 version "1.0.5" ··· 2640 printj "~1.1.0" 2641 2642 crc32-stream@^4.0.1: 2643 + version "4.0.2" 2644 + resolved "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-4.0.2.tgz#c922ad22b38395abe9d3870f02fa8134ed709007" 2645 + integrity sha512-DxFZ/Hk473b/muq1VJ///PMNLj0ZMnzye9thBpmjpJKCc5eMgB95aK8zCGrGfQ90cWo561Te6HK9D+j4KPdM6w== 2646 dependencies: 2647 crc-32 "^1.2.0" 2648 readable-stream "^3.4.0" ··· 2678 safe-buffer "^5.0.1" 2679 sha.js "^2.4.8" 2680 2681 + cross-spawn@^7.0.2, cross-spawn@^7.0.3: 2682 + version "7.0.3" 2683 + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 2684 + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 2685 dependencies: 2686 + path-key "^3.1.0" 2687 + shebang-command "^2.0.0" 2688 + which "^2.0.1" 2689 2690 crypto-browserify@^3.11.0: 2691 version "3.12.0" ··· 2722 postcss "^7.0.1" 2723 timsort "^0.3.0" 2724 2725 + css-loader@5.2.4: 2726 + version "5.2.4" 2727 + resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.4.tgz#e985dcbce339812cb6104ef3670f08f9893a1536" 2728 + integrity sha512-OFYGyINCKkdQsTrSYxzGSFnGS4gNjcXkKkQgWxK138jgnPt+lepxdjSZNc8sHAl5vP3DhsJUxufWIjOwI8PMMw== 2729 dependencies: 2730 + camelcase "^6.2.0" 2731 + icss-utils "^5.1.0" 2732 + loader-utils "^2.0.0" 2733 + postcss "^8.2.10" 2734 + postcss-modules-extract-imports "^3.0.0" 2735 + postcss-modules-local-by-default "^4.0.0" 2736 + postcss-modules-scope "^3.0.0" 2737 + postcss-modules-values "^4.0.0" 2738 postcss-value-parser "^4.1.0" 2739 + schema-utils "^3.0.0" 2740 + semver "^7.3.5" 2741 2742 css-select-base-adapter@^0.1.1: 2743 version "0.1.1" ··· 2773 source-map "^0.6.1" 2774 2775 css-tree@^1.1.2: 2776 + version "1.1.3" 2777 + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" 2778 + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== 2779 dependencies: 2780 mdn-data "2.0.14" 2781 source-map "^0.6.1" ··· 2800 resolved "https://registry.yarnpkg.com/cssfilter/-/cssfilter-0.0.10.tgz#c6d2672632a2e5c83e013e6864a42ce8defd20ae" 2801 integrity sha1-xtJnJjKi5cg+AT5oZKQs6N79IK4= 2802 2803 + cssnano-preset-default@^4.0.8: 2804 + version "4.0.8" 2805 + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz#920622b1fc1e95a34e8838203f1397a504f2d3ff" 2806 + integrity sha512-LdAyHuq+VRyeVREFmuxUZR1TXjQm8QQU/ktoo/x7bz+SdOge1YKc5eMN6pRW7YWBmyq59CqYba1dJ5cUukEjLQ== 2807 dependencies: 2808 css-declaration-sorter "^4.0.1" 2809 cssnano-util-raw-cache "^4.0.1" ··· 2833 postcss-ordered-values "^4.1.2" 2834 postcss-reduce-initial "^4.0.3" 2835 postcss-reduce-transforms "^4.0.2" 2836 + postcss-svgo "^4.0.3" 2837 postcss-unique-selectors "^4.0.1" 2838 2839 cssnano-util-get-arguments@^4.0.0: ··· 2859 integrity sha512-WcKx5OY+KoSIAxBW6UBBRay1U6vkYheCdjyVNDm85zt5K9mHoGOfsOsqIszfAqrQQFIIKgjh2+FDgIj/zsl21Q== 2860 2861 cssnano@^4.1.10: 2862 + version "4.1.11" 2863 + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.11.tgz#c7b5f5b81da269cb1fd982cb960c1200910c9a99" 2864 + integrity sha512-6gZm2htn7xIPJOHY824ERgj8cNPgPxyCSnkXc4v7YvNW+TdVfzgngHcEhy/8D11kUWRUMbke+tC+AUcUsnMz2g== 2865 dependencies: 2866 cosmiconfig "^5.0.0" 2867 + cssnano-preset-default "^4.0.8" 2868 is-resolvable "^1.0.0" 2869 postcss "^7.0.0" 2870 ··· 2875 dependencies: 2876 css-tree "^1.1.2" 2877 2878 + cssom@0.3.x: 2879 version "0.3.8" 2880 resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 2881 integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== ··· 2884 version "0.2.5" 2885 resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz#2682709b5902e7212df529116ff788cd5b254894" 2886 integrity sha1-JoJwm1kC5yEt9SkRb/eIzVslSJQ= 2887 2888 cssstyle@~0.2.3: 2889 version "0.2.37" ··· 3145 d3-voronoi "1" 3146 d3-zoom "1" 3147 3148 dagre-d3@^0.6.4: 3149 version "0.6.4" 3150 resolved "https://registry.yarnpkg.com/dagre-d3/-/dagre-d3-0.6.4.tgz#0728d5ce7f177ca2337df141ceb60fbe6eeb7b29" ··· 3163 graphlib "^2.1.8" 3164 lodash "^4.17.15" 3165 3166 + dashdash@^1.12.0: 3167 version "1.14.1" 3168 resolved "https://registry.yarnpkg.com/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0" 3169 integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA= 3170 dependencies: 3171 assert-plus "^1.0.0" 3172 3173 date-utils@*: 3174 version "1.2.21" 3175 resolved "https://registry.yarnpkg.com/date-utils/-/date-utils-1.2.21.tgz#61fb16cdc1274b3c9acaaffe9fc69df8720a2b64" ··· 3189 dependencies: 3190 ms "2.0.0" 3191 3192 + debug@4.3.1, debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: 3193 version "4.3.1" 3194 resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 3195 integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 3196 dependencies: 3197 ms "2.1.2" 3198 3199 + debug@^3.2.6: 3200 + version "3.2.7" 3201 + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" 3202 + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== 3203 + dependencies: 3204 + ms "^2.1.1" 3205 + 3206 debug@~4.1.0: 3207 version "4.1.1" 3208 resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" ··· 3210 dependencies: 3211 ms "^2.1.1" 3212 3213 + decamelize@^4.0.0: 3214 + version "4.0.0" 3215 + resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" 3216 + integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== 3217 3218 decode-uri-component@^0.2.0: 3219 version "0.2.0" 3220 resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" 3221 integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= 3222 3223 + deep-equal@^2.0.3: 3224 + version "2.0.5" 3225 + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.0.5.tgz#55cd2fe326d83f9cbf7261ef0e060b3f724c5cb9" 3226 + integrity sha512-nPiRgmbAtm1a3JsnLCf6/SLfXcjyN5v8L1TXzdCmHrXJ4hx+gW/w1YCcn7z8gJtSiDArZCgYtbao3QqLm/N1Sw== 3227 dependencies: 3228 + call-bind "^1.0.0" 3229 + es-get-iterator "^1.1.1" 3230 + get-intrinsic "^1.0.1" 3231 is-arguments "^1.0.4" 3232 + is-date-object "^1.0.2" 3233 + is-regex "^1.1.1" 3234 + isarray "^2.0.5" 3235 + object-is "^1.1.4" 3236 object-keys "^1.1.1" 3237 + object.assign "^4.1.2" 3238 + regexp.prototype.flags "^1.3.0" 3239 + side-channel "^1.0.3" 3240 + which-boxed-primitive "^1.0.1" 3241 + which-collection "^1.0.1" 3242 + which-typed-array "^1.1.2" 3243 3244 deep-extend@^0.6.0: 3245 version "0.6.0" ··· 3251 resolved "https://registry.yarnpkg.com/deep-freeze/-/deep-freeze-0.0.1.tgz#3a0b0005de18672819dfd38cd31f91179c893e84" 3252 integrity sha1-OgsABd4YZygZ39OM0x+RF5yJPoQ= 3253 3254 + deep-is@^0.1.3: 3255 version "0.1.3" 3256 resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 3257 integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= ··· 3285 is-descriptor "^1.0.2" 3286 isobject "^3.0.1" 3287 3288 delayed-stream@~1.0.0: 3289 version "1.0.0" 3290 resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" ··· 3305 resolved "https://registry.yarnpkg.com/denque/-/denque-1.5.0.tgz#773de0686ff2d8ec2ff92914316a47b73b1c73de" 3306 integrity sha512-CYiCSgIF1p6EUByQPlGkKnP1M9g0ZV3qMIrqMqZqdwazygIA/YP2vrbcyl1h/WppKJTdl1F85cXIle+394iDAQ== 3307 3308 + depd@^2.0.0, depd@~2.0.0: 3309 version "2.0.0" 3310 resolved "https://registry.yarnpkg.com/depd/-/depd-2.0.0.tgz#b696163cc757560d09cf22cc8fad1571b79e76df" 3311 integrity sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw== ··· 3328 resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80" 3329 integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA= 3330 3331 detect-indent@^4.0.0: 3332 version "4.0.0" 3333 resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-4.0.0.tgz#f76d064352cdf43a1cb6ce619c4ee3a9475de208" ··· 3342 3343 "diff-match-patch@git+https://github.com/hackmdio/diff-match-patch.git": 3344 version "1.1.1" 3345 + uid c2f8fb9d69aa9490b764850aa86ba442c93ccf78 3346 resolved "git+https://github.com/hackmdio/diff-match-patch.git#c2f8fb9d69aa9490b764850aa86ba442c93ccf78" 3347 3348 + diff@5.0.0: 3349 + version "5.0.0" 3350 + resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" 3351 + integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== 3352 3353 diffie-hellman@^5.0.0: 3354 version "5.0.3" ··· 3415 integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== 3416 3417 domelementtype@^2.0.1: 3418 + version "2.2.0" 3419 + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz#9a0b6c2782ed6a1c7323d42267183df9bd8b1d57" 3420 + integrity sha512-DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A== 3421 3422 domhandler@^2.3.0: 3423 version "2.4.2" ··· 3425 integrity sha512-JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA== 3426 dependencies: 3427 domelementtype "1" 3428 + 3429 + domino@^2.1.6: 3430 + version "2.1.6" 3431 + resolved "https://registry.yarnpkg.com/domino/-/domino-2.1.6.tgz#fe4ace4310526e5e7b9d12c7de01b7f485a57ffe" 3432 + integrity sha512-3VdM/SXBZX2omc9JF9nOPCtDaYQ67BGp5CoLpIQlO2KCAPETs8TcDHacF26jXadGbvUteZzRTeos2fhID5+ucQ== 3433 3434 domutils@1.5.1: 3435 version "1.5.1" ··· 3447 dom-serializer "0" 3448 domelementtype "1" 3449 3450 dot-case@^3.0.4: 3451 version "3.0.4" 3452 resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" ··· 3467 resolved "https://registry.yarnpkg.com/dottie/-/dottie-2.0.2.tgz#cc91c0726ce3a054ebf11c55fbc92a7f266dd154" 3468 integrity sha512-fmrwR04lsniq/uSr8yikThDTrM7epXHBAAjH9TbeH3rEA8tdCO7mRzB9hdmdGyJCxF8KERo9CITcm3kGuoyMhg== 3469 3470 duplexify@^3.4.2, duplexify@^3.6.0: 3471 version "3.7.1" 3472 resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309" ··· 3492 dependencies: 3493 safe-buffer "^5.0.1" 3494 3495 ee-first@1.1.1: 3496 version "1.1.1" 3497 resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d" 3498 integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0= 3499 3500 + ejs@^3.0.0: 3501 + version "3.1.6" 3502 + resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz#5bfd0a0689743bb5268b3550cceeebbc1702822a" 3503 + integrity sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== 3504 + dependencies: 3505 + jake "^10.6.1" 3506 3507 + electron-to-chromium@^1.3.47, electron-to-chromium@^1.3.723: 3508 + version "1.3.725" 3509 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.725.tgz#04fc83f9189169aff50f0a00c6b4090b910cba85" 3510 + integrity sha512-2BbeAESz7kc6KBzs7WVrMc1BY5waUphk4D4DX5dSQXJhsc3tP5ZFaiyuL0AB7vUKzDYpIeYwTYlEfxyjsGUrhw== 3511 3512 elliptic@^6.5.3: 3513 + version "6.5.4" 3514 + resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz#da37cebd31e79a1367e941b592ed1fbebd58abbb" 3515 + integrity sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ== 3516 dependencies: 3517 + bn.js "^4.11.9" 3518 + brorand "^1.1.0" 3519 hash.js "^1.0.0" 3520 + hmac-drbg "^1.0.1" 3521 + inherits "^2.0.4" 3522 + minimalistic-assert "^1.0.1" 3523 + minimalistic-crypto-utils "^1.0.1" 3524 3525 emoji-regex@^8.0.0: 3526 version "8.0.0" ··· 3555 once "^1.4.0" 3556 3557 engine.io-client@~3.5.0: 3558 + version "3.5.1" 3559 + resolved "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.1.tgz#b500458a39c0cd197a921e0e759721a746d0bdb9" 3560 + integrity sha512-oVu9kBkGbcggulyVF0kz6BV3ganqUeqXvD79WOFKa+11oK692w1NyFkuEj4xrkFRpZhn92QOqTk4RQq5LiBXbQ== 3561 dependencies: 3562 component-emitter "~1.3.0" 3563 component-inherit "0.0.3" ··· 3594 engine.io-parser "~2.2.0" 3595 ws "~7.4.2" 3596 3597 + enhanced-resolve@^4.5.0: 3598 version "4.5.0" 3599 resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec" 3600 integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg== ··· 3603 memory-fs "^0.5.0" 3604 tapable "^1.0.0" 3605 3606 + enquirer@^2.3.5, enquirer@^2.3.6: 3607 + version "2.3.6" 3608 + resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 3609 + integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 3610 + dependencies: 3611 + ansi-colors "^4.1.1" 3612 + 3613 entities@^1.1.1, entities@~1.1.1: 3614 version "1.1.2" 3615 resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" 3616 integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== 3617 3618 entities@^2.0.0: 3619 + version "2.2.0" 3620 + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 3621 + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 3622 + 3623 + entities@~2.1.0: 3624 version "2.1.0" 3625 resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" 3626 integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== 3627 3628 entity-decode@^2.0.2: 3629 version "2.0.2" 3630 resolved "https://registry.yarnpkg.com/entity-decode/-/entity-decode-2.0.2.tgz#e4f807e52c3294246e9347d1f2b02b07fd5f92e7" ··· 3632 dependencies: 3633 he "^1.1.1" 3634 3635 + envinfo@^7.7.3: 3636 + version "7.8.1" 3637 + resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475" 3638 + integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw== 3639 + 3640 errno@^0.1.1, errno@^0.1.3, errno@~0.1.7: 3641 version "0.1.8" 3642 resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f" ··· 3651 dependencies: 3652 is-arrayish "^0.2.1" 3653 3654 + es-abstract@^1.17.2, es-abstract@^1.18.0-next.1, es-abstract@^1.18.0-next.2: 3655 + version "1.18.0" 3656 + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz#ab80b359eecb7ede4c298000390bc5ac3ec7b5a4" 3657 + integrity sha512-LJzK7MrQa8TS0ja2w3YNLzUgJCGPdPOV1yVvezjNnS89D+VR08+Szt2mz3YB2Dck/+w5tfIq/RoUAFqJJGM2yw== 3658 dependencies: 3659 + call-bind "^1.0.2" 3660 es-to-primitive "^1.2.1" 3661 function-bind "^1.1.1" 3662 + get-intrinsic "^1.1.1" 3663 has "^1.0.3" 3664 + has-symbols "^1.0.2" 3665 + is-callable "^1.2.3" 3666 + is-negative-zero "^2.0.1" 3667 + is-regex "^1.1.2" 3668 + is-string "^1.0.5" 3669 + object-inspect "^1.9.0" 3670 object-keys "^1.1.1" 3671 + object.assign "^4.1.2" 3672 + string.prototype.trimend "^1.0.4" 3673 + string.prototype.trimstart "^1.0.4" 3674 + unbox-primitive "^1.0.0" 3675 3676 + es-get-iterator@^1.1.1: 3677 + version "1.1.2" 3678 + resolved "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz#9234c54aba713486d7ebde0220864af5e2b283f7" 3679 + integrity sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ== 3680 dependencies: 3681 + call-bind "^1.0.2" 3682 + get-intrinsic "^1.1.0" 3683 has-symbols "^1.0.1" 3684 + is-arguments "^1.1.0" 3685 + is-map "^2.0.2" 3686 + is-set "^2.0.2" 3687 + is-string "^1.0.5" 3688 + isarray "^2.0.5" 3689 3690 es-to-primitive@^1.2.1: 3691 version "1.2.1" ··· 3696 is-date-object "^1.0.1" 3697 is-symbol "^1.0.2" 3698 3699 + es6-error@^4.1.1: 3700 + version "4.1.1" 3701 + resolved "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz#9e3af407459deed47e9a91f9b885a84eb05c561d" 3702 + integrity sha512-Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg== 3703 3704 escalade@^3.1.1: 3705 version "3.1.1" ··· 3711 resolved "https://registry.yarnpkg.com/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988" 3712 integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg= 3713 3714 + escape-string-regexp@4.0.0: 3715 + version "4.0.0" 3716 + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 3717 + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 3718 + 3719 + escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: 3720 version "1.0.5" 3721 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 3722 integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 3723 3724 + eslint-config-standard@16.0.2: 3725 + version "16.0.2" 3726 + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.2.tgz#71e91727ac7a203782d0a5ca4d1c462d14e234f6" 3727 + integrity sha512-fx3f1rJDsl9bY7qzyX8SAtP8GBSk6MfXFaTfaGgk12aAYW4gJSyRm7dM790L6cbXv63fvjY4XeSzXnb4WM+SKw== 3728 3729 eslint-import-resolver-node@^0.3.4: 3730 version "0.3.4" ··· 3742 debug "^2.6.9" 3743 pkg-dir "^2.0.0" 3744 3745 + eslint-plugin-es@^3.0.0: 3746 + version "3.0.1" 3747 + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz#75a7cdfdccddc0589934aeeb384175f221c57893" 3748 + integrity sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ== 3749 dependencies: 3750 + eslint-utils "^2.0.0" 3751 + regexpp "^3.0.0" 3752 3753 eslint-plugin-import@2.22.1: 3754 version "2.22.1" ··· 3769 resolve "^1.17.0" 3770 tsconfig-paths "^3.9.0" 3771 3772 + eslint-plugin-node@11.1.0: 3773 + version "11.1.0" 3774 + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz#c95544416ee4ada26740a30474eefc5402dc671d" 3775 + integrity sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g== 3776 dependencies: 3777 + eslint-plugin-es "^3.0.0" 3778 + eslint-utils "^2.0.0" 3779 + ignore "^5.1.1" 3780 minimatch "^3.0.4" 3781 + resolve "^1.10.1" 3782 + semver "^6.1.0" 3783 3784 + eslint-plugin-promise@5.1.0: 3785 + version "5.1.0" 3786 + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz#fb2188fb734e4557993733b41aa1a688f46c6f24" 3787 + integrity sha512-NGmI6BH5L12pl7ScQHbg7tvtk4wPxxj8yPHH47NvSmMtFneC077PSeY3huFj06ZWZvtbfxSPt3RuOQD5XcR4ng== 3788 3789 eslint-plugin-standard@4.1.0: 3790 version "4.1.0" ··· 3799 esrecurse "^4.1.0" 3800 estraverse "^4.1.1" 3801 3802 + eslint-scope@^5.1.1: 3803 + version "5.1.1" 3804 + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 3805 + integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 3806 + dependencies: 3807 + esrecurse "^4.3.0" 3808 + estraverse "^4.1.1" 3809 + 3810 + eslint-utils@^2.0.0, eslint-utils@^2.1.0: 3811 + version "2.1.0" 3812 + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 3813 + integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 3814 dependencies: 3815 eslint-visitor-keys "^1.1.0" 3816 3817 + eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 3818 version "1.3.0" 3819 resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 3820 integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 3821 3822 + eslint-visitor-keys@^2.0.0: 3823 + version "2.0.0" 3824 + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 3825 + integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 3826 + 3827 + eslint@7.25.0: 3828 + version "7.25.0" 3829 + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.25.0.tgz#1309e4404d94e676e3e831b3a3ad2b050031eb67" 3830 + integrity sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw== 3831 dependencies: 3832 + "@babel/code-frame" "7.12.11" 3833 + "@eslint/eslintrc" "^0.4.0" 3834 + ajv "^6.10.0" 3835 + chalk "^4.0.0" 3836 + cross-spawn "^7.0.2" 3837 debug "^4.0.1" 3838 doctrine "^3.0.0" 3839 + enquirer "^2.3.5" 3840 + eslint-scope "^5.1.1" 3841 + eslint-utils "^2.1.0" 3842 + eslint-visitor-keys "^2.0.0" 3843 + espree "^7.3.1" 3844 + esquery "^1.4.0" 3845 esutils "^2.0.2" 3846 + file-entry-cache "^6.0.1" 3847 functional-red-black-tree "^1.0.1" 3848 + glob-parent "^5.0.0" 3849 + globals "^13.6.0" 3850 ignore "^4.0.6" 3851 import-fresh "^3.0.0" 3852 imurmurhash "^0.1.4" 3853 + is-glob "^4.0.0" 3854 + js-yaml "^3.13.1" 3855 json-stable-stringify-without-jsonify "^1.0.1" 3856 + levn "^0.4.1" 3857 + lodash "^4.17.21" 3858 minimatch "^3.0.4" 3859 natural-compare "^1.4.0" 3860 + optionator "^0.9.1" 3861 progress "^2.0.0" 3862 + regexpp "^3.1.0" 3863 + semver "^7.2.1" 3864 + strip-ansi "^6.0.0" 3865 + strip-json-comments "^3.1.0" 3866 + table "^6.0.4" 3867 text-table "^0.2.0" 3868 + v8-compile-cache "^2.0.3" 3869 3870 + espree@^7.3.0, espree@^7.3.1: 3871 + version "7.3.1" 3872 + resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 3873 + integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 3874 dependencies: 3875 + acorn "^7.4.0" 3876 + acorn-jsx "^5.3.1" 3877 + eslint-visitor-keys "^1.3.0" 3878 3879 + esprima@^4.0.0: 3880 version "4.0.1" 3881 resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 3882 integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 3883 3884 + esquery@^1.4.0: 3885 + version "1.4.0" 3886 + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 3887 + integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 3888 dependencies: 3889 estraverse "^5.1.0" 3890 3891 + esrecurse@^4.1.0, esrecurse@^4.3.0: 3892 version "4.3.0" 3893 resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 3894 integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 3895 dependencies: 3896 estraverse "^5.2.0" 3897 3898 + estraverse@^4.1.1: 3899 version "4.3.0" 3900 resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 3901 integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== ··· 3925 resolved "https://registry.yarnpkg.com/eve/-/eve-0.5.4.tgz#67d080b9725291d7e389e34c26860dd97f1debaa" 3926 integrity sha1-Z9CAuXJSkdfjieNMJoYN2X8d66o= 3927 3928 events@1.1.1: 3929 version "1.1.1" 3930 resolved "https://registry.yarnpkg.com/events/-/events-1.1.1.tgz#9ebdb7635ad099c70dcc4c2a1f5004288e8bd924" 3931 integrity sha1-nr23Y1rQmccNzEwqH1AEKI6L2SQ= 3932 3933 events@^3.0.0: 3934 + version "3.3.0" 3935 + resolved "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz#31a95ad0a924e2d2c419a813aeb2c4e878ea7400" 3936 + integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q== 3937 3938 evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3: 3939 version "1.0.3" ··· 3943 md5.js "^1.3.4" 3944 safe-buffer "^5.1.1" 3945 3946 + execa@^5.0.0: 3947 + version "5.0.0" 3948 + resolved "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" 3949 + integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== 3950 + dependencies: 3951 + cross-spawn "^7.0.3" 3952 + get-stream "^6.0.0" 3953 + human-signals "^2.1.0" 3954 + is-stream "^2.0.0" 3955 + merge-stream "^2.0.0" 3956 + npm-run-path "^4.0.1" 3957 + onetime "^5.1.2" 3958 + signal-exit "^3.0.3" 3959 + strip-final-newline "^2.0.0" 3960 + 3961 exit-on-epipe@~1.0.1: 3962 version "1.0.1" 3963 resolved "https://registry.yarnpkg.com/exit-on-epipe/-/exit-on-epipe-1.0.1.tgz#0bdd92e87d5285d267daa8171d0eb06159689692" ··· 3990 dependencies: 3991 fill-range "^2.1.0" 3992 3993 + expose-loader@1.0.3: 3994 + version "1.0.3" 3995 + resolved "https://registry.yarnpkg.com/expose-loader/-/expose-loader-1.0.3.tgz#5686d3b78cac8831c4af11c3dc361563deb8a9c0" 3996 + integrity sha512-gP6hs3vYeWIqyoVfsApGQcgCEpbcI1xe+celwI31zeDhXz2q03ycBC1+75IlQUGaYvj6rAloFIe/NIBnEElLsQ== 3997 dependencies: 3998 + loader-utils "^2.0.0" 3999 + schema-utils "^3.0.0" 4000 4001 express-session@^1.14.2: 4002 version "1.17.1" ··· 4048 utils-merge "1.0.1" 4049 vary "~1.1.2" 4050 4051 extend-shallow@^2.0.1: 4052 version "2.0.1" 4053 resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" ··· 4073 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 4074 integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== 4075 4076 extglob@^0.3.1: 4077 version "0.3.2" 4078 resolved "https://registry.yarnpkg.com/extglob/-/extglob-0.3.2.tgz#2e18ff3d2f49ab2765cec9023f011daa8d8349a1" ··· 4094 snapdragon "^0.8.1" 4095 to-regex "^3.0.1" 4096 4097 extsprintf@1.3.0: 4098 version "1.3.0" 4099 resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05" ··· 4110 integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 4111 4112 fast-glob@^3.1.1, fast-glob@^3.2.4: 4113 + version "3.2.5" 4114 + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" 4115 + integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== 4116 dependencies: 4117 "@nodelib/fs.stat" "^2.0.2" 4118 "@nodelib/fs.walk" "^1.2.3" ··· 4126 resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 4127 integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 4128 4129 + fast-levenshtein@^2.0.6: 4130 version "2.0.6" 4131 resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 4132 integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= ··· 4136 resolved "https://registry.yarnpkg.com/fast-safe-stringify/-/fast-safe-stringify-2.0.7.tgz#124aa885899261f68aedb42a7c080de9da608743" 4137 integrity sha512-Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA== 4138 4139 + fast-xml-parser@^3.17.5, fast-xml-parser@^3.19.0: 4140 + version "3.19.0" 4141 + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" 4142 + integrity sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg== 4143 + 4144 + fastest-levenshtein@^1.0.12: 4145 + version "1.0.12" 4146 + resolved "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz#9990f7d3a88cc5a9ffd1f1745745251700d497e2" 4147 + integrity sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow== 4148 + 4149 fastq@^1.6.0: 4150 + version "1.11.0" 4151 + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz#bb9fb955a07130a918eb63c1f5161cc32a5d0858" 4152 + integrity sha512-7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g== 4153 dependencies: 4154 reusify "^1.0.4" 4155 ··· 4160 dependencies: 4161 format "^0.2.0" 4162 4163 fecha@^4.2.0: 4164 + version "4.2.1" 4165 + resolved "https://registry.yarnpkg.com/fecha/-/fecha-4.2.1.tgz#0a83ad8f86ef62a091e22bb5a039cd03d23eecce" 4166 + integrity sha512-MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q== 4167 4168 figgy-pudding@^3.5.1: 4169 version "3.5.2" 4170 resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.2.tgz#b4eee8148abb01dcf1d1ac34367d59e12fa61d6e" 4171 integrity sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw== 4172 4173 figures@^3.0.0: 4174 version "3.2.0" 4175 resolved "https://registry.yarnpkg.com/figures/-/figures-3.2.0.tgz#625c18bd293c604dc4a8ddb2febf0c88341746af" ··· 4177 dependencies: 4178 escape-string-regexp "^1.0.5" 4179 4180 + file-entry-cache@^6.0.1: 4181 + version "6.0.1" 4182 + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 4183 + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 4184 dependencies: 4185 + flat-cache "^3.0.4" 4186 4187 + file-loader@6.2.0: 4188 + version "6.2.0" 4189 + resolved "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz#baef7cf8e1840df325e4390b4484879480eebe4d" 4190 + integrity sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw== 4191 dependencies: 4192 + loader-utils "^2.0.0" 4193 + schema-utils "^3.0.0" 4194 4195 + file-saver@^2.0.0: 4196 + version "2.0.5" 4197 + resolved "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz#d61cfe2ce059f414d899e9dd6d4107ee25670c38" 4198 + integrity sha512-P9bmyZ3h/PRG+Nzga+rbdI4OEpNDzAVyy74uVO9ATgzLK6VtAsYybF/+TOCvrc0MO793d6+42lLyZTw7/ArVzA== 4199 4200 file-type@^16.1.0: 4201 + version "16.3.0" 4202 + resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.3.0.tgz#f03af91db30f92cc9a0b335c0644c46101522f6d" 4203 + integrity sha512-ZA0hV64611vJT42ltw0T9IDwHApQuxRdrmQZWTeDmeAUtZBBVSQW3nSQqhhW1cAgpXgqcJvm410BYHXJQ9AymA== 4204 dependencies: 4205 readable-web-to-node-stream "^3.0.0" 4206 strtok3 "^6.0.3" ··· 4211 version "1.0.0" 4212 resolved "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd" 4213 integrity sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw== 4214 + 4215 + filelist@^1.0.1: 4216 + version "1.0.2" 4217 + resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz#80202f21462d4d1c2e214119b1807c1bc0380e5b" 4218 + integrity sha512-z7O0IS8Plc39rTCq6i6iHxk43duYOn8uFJiWSewIq0Bww1RNybVHSCjahmcC87ZqAm4OTvFzlzeGu3XAzG1ctQ== 4219 + dependencies: 4220 + minimatch "^3.0.4" 4221 4222 filename-regex@^2.0.0: 4223 version "2.0.1" ··· 4292 make-dir "^3.0.2" 4293 pkg-dir "^4.1.0" 4294 4295 + find-up@5.0.0: 4296 + version "5.0.0" 4297 + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 4298 + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 4299 + dependencies: 4300 + locate-path "^6.0.0" 4301 + path-exists "^4.0.0" 4302 + 4303 find-up@^2.0.0, find-up@^2.1.0: 4304 version "2.1.0" 4305 resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" ··· 4322 locate-path "^5.0.0" 4323 path-exists "^4.0.0" 4324 4325 + flat-cache@^3.0.4: 4326 + version "3.0.4" 4327 + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 4328 + integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 4329 dependencies: 4330 + flatted "^3.1.0" 4331 + rimraf "^3.0.2" 4332 4333 + flat@^5.0.2: 4334 + version "5.0.2" 4335 + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" 4336 + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== 4337 4338 + flatted@^3.1.0: 4339 + version "3.1.1" 4340 + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" 4341 + integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== 4342 4343 flowchart.js@^1.6.4: 4344 version "1.15.0" ··· 4361 integrity sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw== 4362 4363 follow-redirects@^1.10.0: 4364 + version "1.14.0" 4365 + resolved "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.0.tgz#f5d260f95c5f8c105894491feee5dc8993b402fe" 4366 + integrity sha512-0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg== 4367 4368 for-in@^1.0.1, for-in@^1.0.2: 4369 version "1.0.2" ··· 4376 integrity sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4= 4377 dependencies: 4378 for-in "^1.0.1" 4379 + 4380 + foreach@^2.0.5: 4381 + version "2.0.5" 4382 + resolved "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz#0bee005018aeb260d0a3af3ae658dd0136ec1b99" 4383 + integrity sha1-C+4AUBiusmDQo6865ljdATbsG5k= 4384 4385 forever-agent@~0.6.1: 4386 version "0.6.1" ··· 4464 resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" 4465 integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== 4466 4467 fs-minipass@^1.2.5: 4468 version "1.2.7" 4469 resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.7.tgz#ccff8570841e7fe4265693da88936c55aed7f7c7" ··· 4507 nan "^2.12.1" 4508 4509 fsevents@~2.3.1: 4510 + version "2.3.2" 4511 + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 4512 + integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 4513 + 4514 + fstream@^1.0.0, fstream@^1.0.12: 4515 + version "1.0.12" 4516 + resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz#4e8ba8ee2d48be4f7d0de505455548eae5932045" 4517 + integrity sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg== 4518 + dependencies: 4519 + graceful-fs "^4.1.2" 4520 + inherits "~2.0.0" 4521 + mkdirp ">=0.5 0" 4522 + rimraf "2" 4523 4524 function-bind@^1.1.1: 4525 version "1.1.1" ··· 4557 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" 4558 integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== 4559 4560 + get-caller-file@^2.0.5: 4561 version "2.0.5" 4562 resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 4563 integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 4564 4565 + get-intrinsic@^1.0.1, get-intrinsic@^1.0.2, get-intrinsic@^1.1.0, get-intrinsic@^1.1.1: 4566 + version "1.1.1" 4567 + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz#15f59f376f855c446963948f0d24cd3637b4abc6" 4568 + integrity sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q== 4569 dependencies: 4570 function-bind "^1.1.1" 4571 has "^1.0.3" 4572 has-symbols "^1.0.1" 4573 + 4574 + get-stream@^6.0.0: 4575 + version "6.0.1" 4576 + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 4577 + integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 4578 4579 get-value@^2.0.3, get-value@^2.0.6: 4580 version "2.0.6" ··· 4616 is-glob "^3.1.0" 4617 path-dirname "^1.0.0" 4618 4619 + glob-parent@^5.0.0, glob-parent@^5.1.0, glob-parent@^5.1.1, glob-parent@~5.1.0: 4620 + version "5.1.2" 4621 + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 4622 + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 4623 dependencies: 4624 is-glob "^4.0.1" 4625 4626 + glob@7.1.6, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4: 4627 version "7.1.6" 4628 resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 4629 integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== ··· 4635 once "^1.3.0" 4636 path-is-absolute "^1.0.0" 4637 4638 + globals@^12.1.0: 4639 + version "12.4.0" 4640 + resolved "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz#a18813576a41b00a24a97e7f815918c2e19925f8" 4641 + integrity sha512-BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg== 4642 dependencies: 4643 + type-fest "^0.8.1" 4644 4645 + globals@^13.6.0: 4646 + version "13.8.0" 4647 + resolved "https://registry.yarnpkg.com/globals/-/globals-13.8.0.tgz#3e20f504810ce87a8d72e55aecf8435b50f4c1b3" 4648 + integrity sha512-rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q== 4649 dependencies: 4650 + type-fest "^0.20.2" 4651 4652 globals@^9.18.0: 4653 version "9.18.0" ··· 4655 integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== 4656 4657 globby@^11.0.1: 4658 + version "11.0.3" 4659 + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb" 4660 + integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg== 4661 dependencies: 4662 array-union "^2.1.0" 4663 dir-glob "^3.0.1" ··· 4673 dependencies: 4674 delegate "^3.1.2" 4675 4676 + graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.4, graceful-fs@^4.2.0: 4677 + version "4.2.6" 4678 + resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz#ff040b2b0853b23c3d31027523706f1885d76bee" 4679 + integrity sha512-nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ== 4680 4681 graphlib@^2.1.7, graphlib@^2.1.8: 4682 version "2.1.8" ··· 4691 integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 4692 4693 handlebars@^4.5.2: 4694 + version "4.7.7" 4695 + resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz#9ce33416aad02dbd6c8fafa8240d5d98004945a1" 4696 + integrity sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA== 4697 dependencies: 4698 minimist "^1.2.5" 4699 neo-async "^2.6.0" ··· 4722 dependencies: 4723 ansi-regex "^2.0.0" 4724 4725 + has-bigints@^1.0.1: 4726 + version "1.0.1" 4727 + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz#64fe6acb020673e3b78db035a5af69aa9d07b113" 4728 + integrity sha512-LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA== 4729 + 4730 has-binary2@~1.0.2: 4731 version "1.0.3" 4732 resolved "https://registry.yarnpkg.com/has-binary2/-/has-binary2-1.0.3.tgz#7776ac627f3ea77250cfc332dab7ddf5e4f5d11d" ··· 4754 resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 4755 integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 4756 4757 + has-symbols@^1.0.1, has-symbols@^1.0.2: 4758 + version "1.0.2" 4759 + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz#165d3070c00309752a1236a479331e3ac56f1423" 4760 + integrity sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw== 4761 4762 has-unicode@^2.0.0: 4763 version "2.0.1" ··· 4819 inherits "^2.0.3" 4820 minimalistic-assert "^1.0.1" 4821 4822 + he@1.2.0, he@^1.1.1, he@^1.2.0: 4823 version "1.2.0" 4824 resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 4825 integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 4826 4827 + helmet@^4.5.0: 4828 + version "4.6.0" 4829 + resolved "https://registry.yarnpkg.com/helmet/-/helmet-4.6.0.tgz#579971196ba93c5978eb019e4e8ec0e50076b4df" 4830 + integrity sha512-HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg== 4831 4832 hex-color-regex@^1.1.0: 4833 version "1.1.0" 4834 resolved "https://registry.yarnpkg.com/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e" 4835 integrity sha512-l9sfDFsuqtOqKDsQdqrMRk0U85RZc0RtOR9yPI7mRVOa4FsR/BVnZ0shmQRM96Ji99kYZP/7hn1cedc1+ApsTQ== 4836 4837 + highlight.js@^10.0.0: 4838 + version "10.7.2" 4839 + resolved "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.2.tgz#89319b861edc66c48854ed1e6da21ea89f847360" 4840 + integrity sha512-oFLl873u4usRM9K63j4ME9u3etNF0PLiJhSQ8rdfuL51Wn3zkD6drf9ZW0dOzjnZI22YYG24z30JcmfCZjMgYg== 4841 4842 + hmac-drbg@^1.0.1: 4843 version "1.0.1" 4844 resolved "https://registry.yarnpkg.com/hmac-drbg/-/hmac-drbg-1.0.1.tgz#d2745701025a6c775a6c545793ed502fc0c649a1" 4845 integrity sha1-0nRXAQJabHdabFRXk+1QL8DGSaE= ··· 4856 os-homedir "^1.0.0" 4857 os-tmpdir "^1.0.1" 4858 4859 hosted-git-info@^2.1.4: 4860 + version "2.8.9" 4861 + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 4862 + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 4863 4864 hsl-regex@^1.0.0: 4865 version "1.0.0" ··· 4871 resolved "https://registry.yarnpkg.com/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38" 4872 integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg= 4873 4874 html-minifier-terser@^5.0.1: 4875 version "5.1.1" 4876 resolved "https://registry.yarnpkg.com/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz#922e96f1f3bb60832c2634b79884096389b1f054" ··· 4897 relateurl "^0.2.7" 4898 uglify-js "^3.5.1" 4899 4900 + html-webpack-plugin@4.5.2: 4901 + version "4.5.2" 4902 + resolved "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz#76fc83fa1a0f12dd5f7da0404a54e2699666bc12" 4903 + integrity sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A== 4904 dependencies: 4905 "@types/html-minifier-terser" "^5.0.0" 4906 "@types/tapable" "^1.0.5" 4907 "@types/webpack" "^4.41.8" 4908 html-minifier-terser "^5.0.1" 4909 loader-utils "^1.2.3" 4910 + lodash "^4.17.20" 4911 pretty-error "^2.1.1" 4912 tapable "^1.1.3" 4913 util.promisify "1.0.0" ··· 4960 resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73" 4961 integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM= 4962 4963 + human-signals@^2.1.0: 4964 + version "2.1.0" 4965 + resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 4966 + integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 4967 + 4968 i18n@^0.13.0: 4969 version "0.13.2" 4970 resolved "https://registry.yarnpkg.com/i18n/-/i18n-0.13.2.tgz#3886678fe7cbbed45bac2ce53b8144c788a1c1b5" ··· 4977 mustache "^4.0.1" 4978 sprintf-js "^1.1.2" 4979 4980 + iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.4: 4981 version "0.4.24" 4982 resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 4983 integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== ··· 4998 dependencies: 4999 safer-buffer ">= 2.1.2 < 3.0.0" 5000 5001 + icss-utils@^5.0.0, icss-utils@^5.1.0: 5002 + version "5.1.0" 5003 + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" 5004 + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== 5005 5006 ieee754@1.1.13: 5007 version "1.1.13" ··· 5030 resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 5031 integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 5032 5033 + ignore@^5.0.0, ignore@^5.1.1, ignore@^5.1.4: 5034 version "5.1.8" 5035 resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 5036 integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== ··· 5040 resolved "https://registry.yarnpkg.com/image-size/-/image-size-0.5.5.tgz#09dfd4ab9d20e29eb1c3e80b8990378df9e3cb9c" 5041 integrity sha1-Cd/Uq50g4p6xw+gLiZA3jfnjy5w= 5042 5043 import-fresh@^2.0.0: 5044 version "2.0.0" 5045 resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546" ··· 5048 caller-path "^2.0.0" 5049 resolve-from "^3.0.0" 5050 5051 + import-fresh@^3.0.0, import-fresh@^3.2.1: 5052 version "3.3.0" 5053 resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 5054 integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== ··· 5056 parent-module "^1.0.0" 5057 resolve-from "^4.0.0" 5058 5059 + import-local@^3.0.2: 5060 + version "3.0.2" 5061 + resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz#a8cfd0431d1de4a2199703d003e3e62364fa6db6" 5062 + integrity sha512-vjL3+w0oulAVZ0hBHnxa/Nm5TAurf9YLQJDhqRZyqb+VKGOB6LU8t9H1Nr5CIo16vh9XfJTOoHwU0B71S557gA== 5063 dependencies: 5064 + pkg-dir "^4.2.0" 5065 + resolve-cwd "^3.0.0" 5066 5067 + imports-loader@1.2.0: 5068 + version "1.2.0" 5069 + resolved "https://registry.yarnpkg.com/imports-loader/-/imports-loader-1.2.0.tgz#b06823d0bb42e6f5ff89bc893829000eda46693f" 5070 + integrity sha512-zPvangKEgrrPeqeUqH0Uhc59YqK07JqZBi9a9cQ3v/EKUIqrbJHY4CvUrDus2lgQa5AmPyXuGrWP8JJTqzE5RQ== 5071 dependencies: 5072 + loader-utils "^2.0.0" 5073 + schema-utils "^3.0.0" 5074 source-map "^0.6.1" 5075 + strip-comments "^2.0.1" 5076 5077 imurmurhash@^0.1.4: 5078 version "0.1.4" ··· 5112 once "^1.3.0" 5113 wrappy "1" 5114 5115 + inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: 5116 version "2.0.4" 5117 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 5118 integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== ··· 5127 resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" 5128 integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= 5129 5130 + ini@^1.3.5, ini@~1.3.0: 5131 version "1.3.8" 5132 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 5133 integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 5134 5135 + interpret@^2.2.0: 5136 + version "2.2.0" 5137 + resolved "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz#1a78a0b5965c40a5416d007ad6f50ad27c417df9" 5138 + integrity sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw== 5139 5140 invariant@^2.2.2: 5141 version "2.2.4" ··· 5178 resolved "https://registry.yarnpkg.com/is-alphabetical/-/is-alphabetical-1.0.4.tgz#9e7d6b94916be22153745d184c298cbf986a686d" 5179 integrity sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg== 5180 5181 is-alphanumerical@^1.0.0: 5182 version "1.0.4" 5183 resolved "https://registry.yarnpkg.com/is-alphanumerical/-/is-alphanumerical-1.0.4.tgz#7eb9a2431f855f6b1ef1a78e326df515696c4dbf" ··· 5186 is-alphabetical "^1.0.0" 5187 is-decimal "^1.0.0" 5188 5189 + is-arguments@^1.0.4, is-arguments@^1.1.0: 5190 version "1.1.0" 5191 resolved "https://registry.yarnpkg.com/is-arguments/-/is-arguments-1.1.0.tgz#62353031dfbee07ceb34656a6bde59efecae8dd9" 5192 integrity sha512-1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg== ··· 5203 resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" 5204 integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== 5205 5206 + is-bigint@^1.0.1: 5207 + version "1.0.1" 5208 + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz#6923051dfcbc764278540b9ce0e6b3213aa5ebc2" 5209 + integrity sha512-J0ELF4yHFxHy0cmSxZuheDOz2luOdVvqjwmEcj8H/L1JHeuEDSDbeRP+Dk9kFVk5RTFzbucJ2Kb9F7ixY2QaCg== 5210 + 5211 is-binary-path@^1.0.0: 5212 version "1.0.1" 5213 resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" ··· 5226 version "1.0.2" 5227 resolved "https://registry.yarnpkg.com/is-bluebird/-/is-bluebird-1.0.2.tgz#096439060f4aa411abee19143a84d6a55346d6e2" 5228 integrity sha1-CWQ5Bg9KpBGr7hkUOoTWpVNG1uI= 5229 + 5230 + is-boolean-object@^1.1.0: 5231 + version "1.1.0" 5232 + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz#e2aaad3a3a8fca34c28f6eee135b156ed2587ff0" 5233 + integrity sha512-a7Uprx8UtD+HWdyYwnD1+ExtTgqQtD2k/1yJgtXP6wnMm8byhkoTZRl+95LLThpzNZJ5aEvi46cdH+ayMFRwmA== 5234 + dependencies: 5235 + call-bind "^1.0.0" 5236 5237 is-buffer@^1.1.5: 5238 version "1.1.6" ··· 5244 resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.5.tgz#ebc252e400d22ff8d77fa09888821a24a658c191" 5245 integrity sha512-i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ== 5246 5247 + is-callable@^1.1.4, is-callable@^1.2.3: 5248 + version "1.2.3" 5249 + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz#8b1e0500b73a1d76c70487636f368e519de8db8e" 5250 + integrity sha512-J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ== 5251 5252 is-color-stop@^1.0.0: 5253 version "1.1.0" ··· 5261 rgb-regex "^1.0.1" 5262 rgba-regex "^1.0.0" 5263 5264 + is-core-module@^2.2.0: 5265 + version "2.3.0" 5266 + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz#d341652e3408bca69c4671b79a0954a3d349f887" 5267 + integrity sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw== 5268 dependencies: 5269 has "^1.0.3" 5270 ··· 5282 dependencies: 5283 kind-of "^6.0.0" 5284 5285 + is-date-object@^1.0.1, is-date-object@^1.0.2: 5286 version "1.0.2" 5287 resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e" 5288 integrity sha512-USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g== ··· 5402 resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.4.tgz#cc35c97588da4bd49a8eedd6bc4082d44dcb23a7" 5403 integrity sha512-gyPJuv83bHMpocVYoqof5VDiZveEoGoFL8m3BXNb2VW8Xs+rz9kqO8LOQ5DH6EsuvilT1ApazU0pyl+ytbPtlw== 5404 5405 + is-map@^2.0.1, is-map@^2.0.2: 5406 + version "2.0.2" 5407 + resolved "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz#00922db8c9bf73e81b7a335827bc2a43f2b91127" 5408 + integrity sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg== 5409 + 5410 + is-negative-zero@^2.0.1: 5411 version "2.0.1" 5412 resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz#3de746c18dda2319241a53675908d8f766f11c24" 5413 integrity sha512-2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w== 5414 + 5415 + is-number-object@^1.0.4: 5416 + version "1.0.4" 5417 + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz#36ac95e741cf18b283fc1ddf5e83da798e3ec197" 5418 + integrity sha512-zohwelOAur+5uXtk8O3GPQ1eAcu4ZX3UwxQhUlfFFMNpUd83gXgjbhJh6HmB6LUNV/ieOLQuDwJO3dWJosUeMw== 5419 5420 is-number@^2.1.0: 5421 version "2.1.0" ··· 5446 resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982" 5447 integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 5448 5449 + is-plain-obj@^2.0.0, is-plain-obj@^2.1.0: 5450 version "2.1.0" 5451 resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 5452 integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== ··· 5468 resolved "https://registry.yarnpkg.com/is-primitive/-/is-primitive-2.0.0.tgz#207bab91638499c07b2adf240a41a87210034575" 5469 integrity sha1-IHurkWOEmcB7Kt8kCkGochADRXU= 5470 5471 is-property@^1.0.2: 5472 version "1.0.2" 5473 resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84" 5474 integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ= 5475 5476 + is-regex@^1.1.1, is-regex@^1.1.2: 5477 + version "1.1.2" 5478 + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz#81c8ebde4db142f2cf1c53fc86d6a45788266251" 5479 + integrity sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg== 5480 dependencies: 5481 + call-bind "^1.0.2" 5482 has-symbols "^1.0.1" 5483 5484 is-resolvable@^1.0.0: ··· 5486 resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" 5487 integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== 5488 5489 + is-set@^2.0.1, is-set@^2.0.2: 5490 + version "2.0.2" 5491 + resolved "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz#90755fa4c2562dc1c5d4024760d6119b94ca18ec" 5492 + integrity sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g== 5493 + 5494 is-stream@^2.0.0: 5495 version "2.0.0" 5496 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" ··· 5501 resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.5.tgz#40493ed198ef3ff477b8c7f92f644ec82a5cd3a6" 5502 integrity sha512-buY6VNRjhQMiF1qWDouloZlQbRhDPCebwxSjxMjxgemYT46YMd2NR0/H+fBhEfWX4A/w9TBJ+ol+okqJKFE6vQ== 5503 5504 + is-svg@^4.3.1: 5505 + version "4.3.1" 5506 + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-4.3.1.tgz#8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b" 5507 + integrity sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA== 5508 dependencies: 5509 + fast-xml-parser "^3.19.0" 5510 5511 + is-symbol@^1.0.2, is-symbol@^1.0.3: 5512 version "1.0.3" 5513 resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937" 5514 integrity sha512-OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ== 5515 dependencies: 5516 has-symbols "^1.0.1" 5517 5518 + is-typed-array@^1.1.3: 5519 + version "1.1.5" 5520 + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz#f32e6e096455e329eb7b423862456aa213f0eb4e" 5521 + integrity sha512-S+GRDgJlR3PyEbsX/Fobd9cqpZBuvUS+8asRqYDMLCb2qMzt1oz5m5oxQCxOgUDxiWsOVNi4yaF+/uvdlHlYug== 5522 + dependencies: 5523 + available-typed-arrays "^1.0.2" 5524 + call-bind "^1.0.2" 5525 + es-abstract "^1.18.0-next.2" 5526 + foreach "^2.0.5" 5527 + has-symbols "^1.0.1" 5528 + 5529 is-typedarray@^1.0.0, is-typedarray@~1.0.0: 5530 version "1.0.0" 5531 resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 5532 integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 5533 5534 + is-weakmap@^2.0.1: 5535 + version "2.0.1" 5536 + resolved "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz#5008b59bdc43b698201d18f62b37b2ca243e8cf2" 5537 + integrity sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA== 5538 5539 + is-weakset@^2.0.1: 5540 + version "2.0.1" 5541 + resolved "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz#e9a0af88dbd751589f5e50d80f4c98b780884f83" 5542 + integrity sha512-pi4vhbhVHGLxohUw7PhGsueT4vRGFoXhP7+RGN0jKIv9+8PWYCQTqtADngrxOm2g46hoH0+g8uZZBzMrvVGDmw== 5543 + 5544 + is-what@^3.12.0: 5545 + version "3.14.1" 5546 + resolved "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz#e1222f46ddda85dead0fd1c9df131760e77755c1" 5547 + integrity sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA== 5548 5549 + is-windows@^1.0.2: 5550 version "1.0.2" 5551 resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 5552 integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 5553 5554 is-wsl@^1.1.0: 5555 version "1.1.0" ··· 5571 resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.1.tgz#a37d94ed9cda2d59865c9f76fe596ee1f338741e" 5572 integrity sha1-o32U7ZzaLVmGXJ92/llu4fM4dB4= 5573 5574 + isarray@^2.0.5: 5575 + version "2.0.5" 5576 + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" 5577 + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== 5578 + 5579 isexe@^2.0.0: 5580 version "2.0.0" 5581 resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" ··· 5598 resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a" 5599 integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo= 5600 5601 + jake@^10.6.1: 5602 + version "10.8.2" 5603 + resolved "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz#ebc9de8558160a66d82d0eadc6a2e58fbc500a7b" 5604 + integrity sha512-eLpKyrfG3mzvGE2Du8VoPbeSkRry093+tyNjdYaBbJS9v17knImYGNXQCUV0gLxQtF82m3E8iRb/wdSQZLoq7A== 5605 + dependencies: 5606 + async "0.9.x" 5607 + chalk "^2.4.2" 5608 + filelist "^1.0.1" 5609 + minimatch "^3.0.4" 5610 + 5611 jmespath@0.15.0: 5612 version "0.15.0" 5613 resolved "https://registry.yarnpkg.com/jmespath/-/jmespath-0.15.0.tgz#a3f222a9aae9f966f5d27c796510e28091764217" ··· 5624 integrity sha1-vLQEXI3QU5wTS8FIjN0+dop6nlE= 5625 5626 jquery@^3.5.1: 5627 + version "3.6.0" 5628 + resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz#c72a09f15c1bdce142f49dbf1170bdf8adac2470" 5629 + integrity sha512-JVzAR/AjBvVt2BmYhxRCSYysDsPcssdmTFnzyLEts9qNwmjmu4JTAMYubEfwVOSwpQ1I1sKKFcxhZCI2buerfw== 5630 5631 js-cookie@^2.1.3: 5632 version "2.2.1" ··· 5635 5636 "js-sequence-diagrams@git+https://github.com/hedgedoc/js-sequence-diagrams.git": 5637 version "2.0.1" 5638 + uid bda0e49b6c2754f3c7158b1dfb9ccf26efc24b39 5639 resolved "git+https://github.com/hedgedoc/js-sequence-diagrams.git#bda0e49b6c2754f3c7158b1dfb9ccf26efc24b39" 5640 dependencies: 5641 lodash "4.17.x" ··· 5654 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" 5655 integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= 5656 5657 + js-yaml@4.0.0: 5658 + version "4.0.0" 5659 + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f" 5660 + integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q== 5661 + dependencies: 5662 + argparse "^2.0.1" 5663 + 5664 + js-yaml@^3.13.1, js-yaml@^3.6.1: 5665 version "3.14.1" 5666 resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 5667 integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== ··· 5669 argparse "^1.0.7" 5670 esprima "^4.0.0" 5671 5672 + js-yaml@~4.1.0: 5673 + version "4.1.0" 5674 + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 5675 + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 5676 + dependencies: 5677 + argparse "^2.0.1" 5678 + 5679 jsbi@^3.1.1: 5680 version "3.1.4" 5681 resolved "https://registry.yarnpkg.com/jsbi/-/jsbi-3.1.4.tgz#9654dd02207a66a4911b4e4bb74265bc2cbc9dd0" ··· 5698 request "2.x" 5699 xmlhttprequest ">=1.5.0" 5700 5701 jsesc@^1.3.0: 5702 version "1.3.0" 5703 resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b" ··· 5729 version "0.4.1" 5730 resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 5731 integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 5732 + 5733 + json-schema-traverse@^1.0.0: 5734 + version "1.0.0" 5735 + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 5736 + integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 5737 5738 json-schema@0.2.3: 5739 version "0.2.3" ··· 5768 minimist "^1.2.0" 5769 5770 json5@^2.0.0, json5@^2.1.2: 5771 + version "2.2.0" 5772 + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz#2dfefe720c6ba525d9ebd909950f0515316c89a3" 5773 + integrity sha512-f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA== 5774 dependencies: 5775 minimist "^1.2.5" 5776 5777 jsonlint@1.6.3: 5778 version "1.6.3" 5779 resolved "https://registry.yarnpkg.com/jsonlint/-/jsonlint-1.6.3.tgz#cb5e31efc0b78291d0d862fbef05900adf212988" ··· 5820 integrity sha1-4a5U0OqUiPn2C2a2aPAumhlGxus= 5821 5822 khroma@^1.1.0: 5823 + version "1.4.1" 5824 + resolved "https://registry.yarnpkg.com/khroma/-/khroma-1.4.1.tgz#ad6a5b6a972befc5112ce5129887a1a83af2c003" 5825 + integrity sha512-+GmxKvmiRuCcUYDgR7g5Ngo0JEDeOsGdNONdU2zsiBQaK4z19Y2NvXqfEDE0ZiIrg45GTZyAnPLVsLZZACYm3Q== 5826 5827 kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0: 5828 version "3.2.2" ··· 5848 resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd" 5849 integrity sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw== 5850 5851 + klona@^2.0.4: 5852 + version "2.0.4" 5853 + resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" 5854 + integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== 5855 + 5856 kuler@^2.0.0: 5857 version "2.0.0" 5858 resolved "https://registry.yarnpkg.com/kuler/-/kuler-2.0.0.tgz#e2c570a3800388fb44407e851531c1d670b061b3" ··· 5873 dependencies: 5874 readable-stream "^2.0.5" 5875 5876 + ldap-filter@^0.3.3: 5877 + version "0.3.3" 5878 + resolved "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.3.3.tgz#2b14c68a2a9d4104dbdbc910a1ca85fd189e9797" 5879 + integrity sha1-KxTGiiqdQQTb28kQocqF/Riel5c= 5880 dependencies: 5881 + assert-plus "^1.0.0" 5882 5883 + ldapauth-fork@^5.0.1: 5884 + version "5.0.1" 5885 + resolved "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-5.0.1.tgz#18779a9c30371c5bbea02e3b6aaadb60819ad29c" 5886 + integrity sha512-EdELQz8zgPruqV2y88PAuAiZCgTaMjex/kEA2PIcOlPYFt75C9QFt5HGZKVQo8Sf/3Mwnr1AtiThHKcq+pRtEg== 5887 dependencies: 5888 + "@types/ldapjs" "^1.0.9" 5889 bcryptjs "^2.4.0" 5890 + ldapjs "^2.2.1" 5891 + lru-cache "^6.0.0" 5892 5893 + ldapjs@^2.2.1: 5894 + version "2.2.4" 5895 + resolved "https://registry.yarnpkg.com/ldapjs/-/ldapjs-2.2.4.tgz#d4e3f4ae2277b6e760a83ebd61f7f5c4097c446b" 5896 + integrity sha512-OoeAXPNPPt4D6qva2/p6rkCIHknyYFd42Vp8JhSazBs9BbkEBmoajzj2F0ElD3vR+yAuzIVCjqh1W4uR8dfn0A== 5897 dependencies: 5898 + abstract-logging "^2.0.0" 5899 + asn1 "^0.2.4" 5900 assert-plus "^1.0.0" 5901 backoff "^2.5.0" 5902 + ldap-filter "^0.3.3" 5903 once "^1.4.0" 5904 + vasync "^2.2.0" 5905 verror "^1.8.1" 5906 5907 + less-loader@7.3.0: 5908 + version "7.3.0" 5909 + resolved "https://registry.yarnpkg.com/less-loader/-/less-loader-7.3.0.tgz#f9d6d36d18739d642067a05fb5bd70c8c61317e5" 5910 + integrity sha512-Mi8915g7NMaLlgi77mgTTQvK022xKRQBIVDSyfl3ErTuBhmZBQab0mjeJjNNqGbdR+qrfTleKXqbGI4uEFavxg== 5911 dependencies: 5912 + klona "^2.0.4" 5913 + loader-utils "^2.0.0" 5914 + schema-utils "^3.0.0" 5915 5916 + less@4.1.1: 5917 + version "4.1.1" 5918 + resolved "https://registry.yarnpkg.com/less/-/less-4.1.1.tgz#15bf253a9939791dc690888c3ff424f3e6c7edba" 5919 + integrity sha512-w09o8tZFPThBscl5d0Ggp3RcrKIouBoQscnOMgFH3n5V3kN/CXGHNfCkRPtxJk6nKryDXaV9aHLK55RXuH4sAw== 5920 dependencies: 5921 copy-anything "^2.0.1" 5922 + parse-node-version "^1.0.1" 5923 tslib "^1.10.0" 5924 optionalDependencies: 5925 errno "^0.1.1" ··· 5927 image-size "~0.5.0" 5928 make-dir "^2.1.0" 5929 mime "^1.4.1" 5930 + needle "^2.5.2" 5931 source-map "~0.6.0" 5932 5933 + levn@^0.4.1: 5934 + version "0.4.1" 5935 + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 5936 + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 5937 dependencies: 5938 + prelude-ls "^1.2.1" 5939 + type-check "~0.4.0" 5940 5941 libnpmconfig@^1.0.0: 5942 version "1.2.1" ··· 5952 resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 5953 integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 5954 5955 + linkify-it@^3.0.1: 5956 + version "3.0.2" 5957 + resolved "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.2.tgz#f55eeb8bc1d3ae754049e124ab3bb56d97797fb8" 5958 + integrity sha512-gDBO4aHNZS6coiZCKVhSNh43F9ioIL4JwRjLZPkoLIY4yZFwg264Y5lu2x6rb1Js42Gh6Yqm2f6L2AJcnkzinQ== 5959 dependencies: 5960 uc.micro "^1.0.1" 5961 5962 + list.js@^2.0.0: 5963 + version "2.3.1" 5964 + resolved "https://registry.yarnpkg.com/list.js/-/list.js-2.3.1.tgz#48961989ffe52b0505e352f7a521f819f51df7e7" 5965 + integrity sha512-jnmm7DYpKtH3DxtO1E2VNCC9Gp7Wrp/FWA2JxQrZUhVJ2RCQBd57pCN6W5w6jpsfWZV0PCAbTX2NOPgyFeeZZg== 5966 dependencies: 5967 string-natural-compare "^2.0.2" 5968 ··· 5989 resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357" 5990 integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw== 5991 5992 + loader-utils@^1.0.2, loader-utils@^1.2.3: 5993 version "1.4.0" 5994 resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613" 5995 integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA== ··· 6030 dependencies: 6031 p-locate "^4.1.0" 6032 6033 + locate-path@^6.0.0: 6034 + version "6.0.0" 6035 + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 6036 + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 6037 + dependencies: 6038 + p-locate "^5.0.0" 6039 + 6040 lodash.assignin@^4.0.9: 6041 version "4.2.0" 6042 resolved "https://registry.yarnpkg.com/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2" ··· 6046 version "4.2.1" 6047 resolved "https://registry.yarnpkg.com/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35" 6048 integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU= 6049 + 6050 + lodash.clonedeep@^4.5.0: 6051 + version "4.5.0" 6052 + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 6053 + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 6054 6055 lodash.defaults@^4.0.1, lodash.defaults@^4.2.0: 6056 version "4.2.0" ··· 6077 resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53" 6078 integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM= 6079 6080 + lodash.get@^4.4.2: 6081 + version "4.4.2" 6082 + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" 6083 + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= 6084 + 6085 lodash.isplainobject@^4.0.6: 6086 version "4.0.6" 6087 resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" ··· 6122 resolved "https://registry.yarnpkg.com/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d" 6123 integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0= 6124 6125 + lodash.truncate@^4.4.2: 6126 + version "4.4.2" 6127 + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" 6128 + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= 6129 6130 lodash.union@^4.6.0: 6131 version "4.6.0" ··· 6137 resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" 6138 integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M= 6139 6140 + lodash@4.17.x, lodash@^4.17.15, lodash@^4.17.20, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.17.5: 6141 + version "4.17.21" 6142 + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 6143 + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 6144 + 6145 + log-symbols@4.0.0: 6146 + version "4.0.0" 6147 + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" 6148 + integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== 6149 + dependencies: 6150 + chalk "^4.0.0" 6151 6152 logform@^2.2.0: 6153 version "2.2.0" ··· 6165 resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28" 6166 integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA== 6167 6168 + longest-streak@^2.0.0: 6169 version "2.0.4" 6170 resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4" 6171 integrity sha512-vM6rUVCVUJJt33bnmHiZEvr7wPT78ztX7rojL+LW51bHtLh6HTjx84LA5W4+oa6aKEJA7jJu5LR6vQRBpA5DVg== ··· 6189 dependencies: 6190 tslib "^2.0.3" 6191 6192 + lru-cache@^4.1.3: 6193 version "4.1.5" 6194 resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd" 6195 integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g== ··· 6211 dependencies: 6212 yallist "^4.0.0" 6213 6214 lutim@^1.0.2: 6215 version "1.0.3" 6216 resolved "https://registry.yarnpkg.com/lutim/-/lutim-1.0.3.tgz#3a29d0f2731eed7097f2d7367defeaa2ae45d820" ··· 6221 6222 "lz-string@git+https://github.com/hackmdio/lz-string.git": 6223 version "1.4.4" 6224 + uid efd1f64676264d6d8871b01f4f375fc6ef4f9022 6225 resolved "git+https://github.com/hackmdio/lz-string.git#efd1f64676264d6d8871b01f4f375fc6ef4f9022" 6226 6227 make-dir@^1.0.0: ··· 6271 object-visit "^1.0.0" 6272 6273 mariadb@^2.1.2: 6274 + version "2.5.3" 6275 + resolved "https://registry.yarnpkg.com/mariadb/-/mariadb-2.5.3.tgz#13a2267f7f1b572f9db997aaaa8c00f75d5a87e8" 6276 + integrity sha512-9ZbQ1zLqasLCQy6KDcPHtX7EUIMBlQ8p64gNR61+yfpCIWjPDji3aR56LvwbOz1QnQbVgYBOJ4J/pHoFN5MR+w== 6277 dependencies: 6278 "@types/geojson" "^7946.0.7" 6279 + "@types/node" "^14.14.28" 6280 denque "^1.4.1" 6281 iconv-lite "^0.6.2" 6282 long "^4.0.0" 6283 + moment-timezone "^0.5.33" 6284 please-upgrade-node "^3.2.0" 6285 6286 markdown-extensions@^1.1.0: 6287 version "1.1.1" 6288 resolved "https://registry.yarnpkg.com/markdown-extensions/-/markdown-extensions-1.1.1.tgz#fea03b539faeaee9b4ef02a3769b455b189f7fc3" ··· 6293 resolved "https://registry.yarnpkg.com/markdown-it-abbr/-/markdown-it-abbr-1.0.4.tgz#d66b5364521cbb3dd8aa59dadfba2fb6865c8fd8" 6294 integrity sha1-1mtTZFIcuz3Yqlna37ovtoZcj9g= 6295 6296 + markdown-it-container@^3.0.0: 6297 + version "3.0.0" 6298 + resolved "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz#1d19b06040a020f9a827577bb7dbf67aa5de9a5b" 6299 + integrity sha512-y6oKTq4BB9OQuY/KLfk/O3ysFhB3IMYoIWhGJEidXt1NQFocFK2sA2t0NYZAMyMShAGL6x5OPIbrmXPIqaN9rw== 6300 6301 markdown-it-deflist@^2.0.1: 6302 version "2.1.0" 6303 resolved "https://registry.yarnpkg.com/markdown-it-deflist/-/markdown-it-deflist-2.1.0.tgz#50d7a56b9544cd81252f7623bd785e28a8dcef5c" 6304 integrity sha512-3OuqoRUlSxJiuQYu0cWTLHNhhq2xtoSFqsZK8plANg91+RJQU1ziQ6lA2LzmFAEes18uPBsHZpcX6We5l76Nzg== 6305 6306 + markdown-it-emoji@^2.0.0: 6307 + version "2.0.0" 6308 + resolved "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-2.0.0.tgz#3164ad4c009efd946e98274f7562ad611089a231" 6309 + integrity sha512-39j7/9vP/CPCKbEI44oV8yoPJTpvfeReTn/COgRhSpNrjWF3PfP/JUxxB0hxV6ynOY8KH8Y8aX9NMDdo6z+6YQ== 6310 6311 markdown-it-footnote@^3.0.1: 6312 version "3.0.2" ··· 6318 resolved "https://registry.yarnpkg.com/markdown-it-imsize/-/markdown-it-imsize-2.0.1.tgz#cca0427905d05338a247cb9ca9d968c5cddd5170" 6319 integrity sha1-zKBCeQXQUziiR8ucqdloxc3dUXA= 6320 6321 + markdown-it-ins@^3.0.0: 6322 + version "3.0.1" 6323 + resolved "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-3.0.1.tgz#c09356b917cf1dbf73add0b275d67ab8c73d4b4d" 6324 + integrity sha512-32SSfZqSzqyAmmQ4SHvhxbFqSzPDqsZgMHDwxqPzp+v+t8RsmqsBZRG+RfRQskJko9PfKC2/oxyOs4Yg/CfiRw== 6325 6326 + markdown-it-mark@^3.0.0: 6327 + version "3.0.1" 6328 + resolved "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-3.0.1.tgz#51257db58787d78aaf46dc13418d99a9f3f0ebd3" 6329 + integrity sha512-HyxjAu6BRsdt6Xcv6TKVQnkz/E70TdGXEFHRYBGLncRE9lBFwDNLVtFojKxjJWgJ+5XxUwLaHXy+2sGBbDn+4A== 6330 6331 markdown-it-mathjax@^2.0.0: 6332 version "2.0.0" ··· 6348 resolved "https://registry.yarnpkg.com/markdown-it-sup/-/markdown-it-sup-1.0.0.tgz#cb9c9ff91a5255ac08f3fd3d63286e15df0a1fc3" 6349 integrity sha1-y5yf+RpSVawI8/09YyhuFd8KH8M= 6350 6351 + markdown-it@^12.0.0: 6352 + version "12.0.6" 6353 + resolved "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.0.6.tgz#adcc8e5fe020af292ccbdf161fe84f1961516138" 6354 + integrity sha512-qv3sVLl4lMT96LLtR7xeRJX11OUFjsaD5oVat2/SNBIb21bJXwal2+SklcRbTwGwqWpWH/HRtYavOoJE+seL8w== 6355 dependencies: 6356 + argparse "^2.0.1" 6357 + entities "~2.1.0" 6358 + linkify-it "^3.0.1" 6359 mdurl "^1.0.1" 6360 uc.micro "^1.0.5" 6361 6362 + marked@~2.0.0: 6363 + version "2.0.3" 6364 + resolved "https://registry.yarnpkg.com/marked/-/marked-2.0.3.tgz#3551c4958c4da36897bda2a16812ef1399c8d6b0" 6365 + integrity sha512-5otztIIcJfPc2qGTN8cVtOJEjNJZ0jwa46INMagrYfk0EvqtRuEHLsEe0LrFS0/q+ZRKT0+kXK7P2T1AN5lWRA== 6366 6367 math-interval-parser@^2.0.1: 6368 version "2.0.1" ··· 6408 resolved "https://registry.yarnpkg.com/mdast-comment-marker/-/mdast-comment-marker-1.1.2.tgz#5ad2e42cfcc41b92a10c1421a98c288d7b447a6d" 6409 integrity sha512-vTFXtmbbF3rgnTh3Zl3irso4LtvwUq/jaDvT2D1JqTGAwaipcS7RpTxzi6KjoRqI9n2yuAhzLDAC8xVTF3XYVQ== 6410 6411 + mdast-util-from-markdown@^0.8.0: 6412 + version "0.8.5" 6413 + resolved "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz#d1ef2ca42bc377ecb0463a987910dae89bd9a28c" 6414 + integrity sha512-2hkTXtYYnr+NubD/g6KGBS/0mFmBcifAsI0yIWRiRo0PjVs6SSOSOdtzbp6kSGnShDN6G5aWZpKQ2lWRy27mWQ== 6415 dependencies: 6416 + "@types/mdast" "^3.0.0" 6417 + mdast-util-to-string "^2.0.0" 6418 + micromark "~2.11.0" 6419 + parse-entities "^2.0.0" 6420 + unist-util-stringify-position "^2.0.0" 6421 6422 mdast-util-heading-style@^1.0.2: 6423 version "1.0.6" 6424 resolved "https://registry.yarnpkg.com/mdast-util-heading-style/-/mdast-util-heading-style-1.0.6.tgz#6410418926fd5673d40f519406b35d17da10e3c5" 6425 integrity sha512-8ZuuegRqS0KESgjAGW8zTx4tJ3VNIiIaGFNEzFpRSAQBavVc7AvOo9I4g3crcZBfYisHs4seYh0rAVimO6HyOw== 6426 6427 + mdast-util-to-markdown@^0.6.0: 6428 + version "0.6.5" 6429 + resolved "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz#b33f67ca820d69e6cc527a93d4039249b504bebe" 6430 + integrity sha512-XeV9sDE7ZlOQvs45C9UKMtfTcctcaj/pGwH8YLbMHoMOXNNCn2LsqVQOqrF1+/NU8lKDAqozme9SCXWyo9oAcQ== 6431 + dependencies: 6432 + "@types/unist" "^2.0.0" 6433 + longest-streak "^2.0.0" 6434 + mdast-util-to-string "^2.0.0" 6435 + parse-entities "^2.0.0" 6436 + repeat-string "^1.0.0" 6437 + zwitch "^1.0.0" 6438 + 6439 mdast-util-to-string@^1.0.2: 6440 version "1.1.0" 6441 resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz#27055500103f51637bd07d01da01eb1967a43527" 6442 integrity sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A== 6443 + 6444 + mdast-util-to-string@^2.0.0: 6445 + version "2.0.0" 6446 + resolved "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz#b8cfe6a713e1091cb5b728fc48885a4767f8b97b" 6447 + integrity sha512-AW4DRS3QbBayY/jJmD8437V1Gombjf8RSOUCMFBuo5iHi58AGEgVCKQ+ezHkZZDpAQS75hcBMpLqjpJTjtUL7w== 6448 6449 mdn-data@2.0.14: 6450 version "2.0.14" ··· 6466 resolved "https://registry.yarnpkg.com/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748" 6467 integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g= 6468 6469 memory-fs@^0.4.1: 6470 version "0.4.1" 6471 resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.4.1.tgz#3a9a20b8462523e447cfbc7e8bb80ed667bfc552" ··· 6487 resolved "https://registry.yarnpkg.com/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61" 6488 integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E= 6489 6490 + merge-stream@^2.0.0: 6491 + version "2.0.0" 6492 + resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 6493 + integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 6494 + 6495 merge2@^1.3.0: 6496 version "1.4.1" 6497 resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 6498 integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 6499 6500 mermaid@^8.5.1: 6501 + version "8.9.3" 6502 + resolved "https://registry.yarnpkg.com/mermaid/-/mermaid-8.9.3.tgz#24f682d26f757ed4cb5812b0a798eddcedcc9658" 6503 + integrity sha512-RH8B4+HEKmdpwDieh3hpKS4oUcpfcu8q4hr3nub7Y7okxOLhF9ynEvKKQ7Dx6H1ymNjTLYUHei5/4gTnaPyimA== 6504 dependencies: 6505 "@braintree/sanitize-url" "^3.1.0" 6506 d3 "^5.7.0" ··· 6535 6536 "meta-marked@git+https://github.com/hedgedoc/meta-marked": 6537 version "0.4.5" 6538 + uid "3002adae670a6de0a845f3da7a7223d458c20d76" 6539 + resolved "git+https://github.com/hedgedoc/meta-marked#3002adae670a6de0a845f3da7a7223d458c20d76" 6540 dependencies: 6541 + js-yaml "~4.1.0" 6542 + marked "~2.0.0" 6543 6544 + method-override@^3.0.0: 6545 + version "3.0.0" 6546 + resolved "https://registry.yarnpkg.com/method-override/-/method-override-3.0.0.tgz#6ab0d5d574e3208f15b0c9cf45ab52000468d7a2" 6547 + integrity sha512-IJ2NNN/mSl9w3kzWB92rcdHpz+HjkxhDJWNDBqSlas+zQdP8wBiJzITPg08M/k2uVvMow7Sk41atndNtt/PHSA== 6548 dependencies: 6549 + debug "3.1.0" 6550 methods "~1.1.2" 6551 parseurl "~1.3.2" 6552 vary "~1.1.2" ··· 6556 resolved "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee" 6557 integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4= 6558 6559 + micromark@~2.11.0: 6560 + version "2.11.4" 6561 + resolved "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz#d13436138eea826383e822449c9a5c50ee44665a" 6562 + integrity sha512-+WoovN/ppKolQOFIAajxi7Lu9kInbPxFuTBVEavFcL8eAfVstoc5MocPmqBeAdBOJV00uaVjegzH4+MA0DN/uA== 6563 + dependencies: 6564 + debug "^4.0.0" 6565 + parse-entities "^2.0.0" 6566 + 6567 micromatch@^2.1.5: 6568 version "2.3.11" 6569 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-2.3.11.tgz#86677c97d1720b363431d04d0d15293bd38c1565" ··· 6583 parse-glob "^3.0.4" 6584 regex-cache "^0.4.2" 6585 6586 + micromatch@^3.1.10, micromatch@^3.1.4: 6587 version "3.1.10" 6588 resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" 6589 integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== ··· 6603 to-regex "^3.0.2" 6604 6605 micromatch@^4.0.2: 6606 + version "4.0.4" 6607 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 6608 + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 6609 dependencies: 6610 braces "^3.0.1" 6611 + picomatch "^2.2.3" 6612 6613 miller-rabin@^4.0.0: 6614 version "4.0.1" ··· 6618 bn.js "^4.0.0" 6619 brorand "^1.0.1" 6620 6621 + mime-db@1.47.0, "mime-db@>= 1.43.0 < 2": 6622 + version "1.47.0" 6623 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" 6624 + integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw== 6625 6626 + mime-types@^2.1.12, mime-types@^2.1.14, mime-types@^2.1.27, mime-types@^2.1.3, mime-types@~2.1.19, mime-types@~2.1.24: 6627 + version "2.1.30" 6628 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d" 6629 + integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg== 6630 dependencies: 6631 + mime-db "1.47.0" 6632 6633 mime@1.3.4: 6634 version "1.3.4" ··· 6640 resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1" 6641 integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg== 6642 6643 + mimic-fn@^2.1.0: 6644 + version "2.1.0" 6645 + resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 6646 + integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 6647 6648 + mini-css-extract-plugin@1.6.0: 6649 + version "1.6.0" 6650 + resolved "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.0.tgz#b4db2525af2624899ed64a23b0016e0036411893" 6651 + integrity sha512-nPFKI7NSy6uONUo9yn2hIfb9vyYvkFu95qki0e21DQ9uaqNKDP15DGpK0KnV6wDroWxPHtExrdEwx/yDQ8nVRw== 6652 dependencies: 6653 + loader-utils "^2.0.0" 6654 + schema-utils "^3.0.0" 6655 webpack-sources "^1.1.0" 6656 6657 minify@^4.1.1: ··· 6672 resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7" 6673 integrity sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A== 6674 6675 + minimalistic-crypto-utils@^1.0.1: 6676 version "1.0.1" 6677 resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a" 6678 integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo= 6679 6680 + minimatch@3.0.4, minimatch@^3.0.2, minimatch@^3.0.4: 6681 version "3.0.4" 6682 resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 6683 integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 6684 dependencies: 6685 brace-expansion "^1.1.7" 6686 6687 minimist@^1.2.0, minimist@^1.2.5: 6688 version "1.2.5" 6689 resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 6690 integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 6691 6692 + minio@^7.0.0: 6693 + version "7.0.18" 6694 + resolved "https://registry.yarnpkg.com/minio/-/minio-7.0.18.tgz#a2a6dae52a4dde9e35ed47cdf2accc21df4a512d" 6695 + integrity sha512-jVRjkw8A5Spf+ETY5OXQUcQckHriuUA3u2+MAcX36btLT8EytlOVivxIseXvyFf9cNn3dy5w1F1UyjMvHU+nqg== 6696 dependencies: 6697 + async "^3.1.0" 6698 + block-stream2 "^2.0.0" 6699 + es6-error "^4.1.1" 6700 + fast-xml-parser "^3.17.5" 6701 json-stream "^1.0.0" 6702 + lodash "^4.17.20" 6703 mime-types "^2.1.14" 6704 mkdirp "^0.5.1" 6705 querystring "0.2.0" 6706 + through2 "^3.0.1" 6707 xml "^1.0.0" 6708 xml2js "^0.4.15" 6709 ··· 6782 for-in "^1.0.2" 6783 is-extendable "^1.0.1" 6784 6785 + "mkdirp@>=0.5 0", mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3, mkdirp@~0.5.1: 6786 version "0.5.5" 6787 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" 6788 integrity sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ== ··· 6794 resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" 6795 integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== 6796 6797 + mocha@8.3.2: 6798 + version "8.3.2" 6799 + resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.3.2.tgz#53406f195fa86fbdebe71f8b1c6fb23221d69fcc" 6800 + integrity sha512-UdmISwr/5w+uXLPKspgoV7/RXZwKRTiTjJ2/AC5ZiEztIoOYdfKb19+9jNmEInzx5pBsCyJQzarAxqIGBNYJhg== 6801 dependencies: 6802 + "@ungap/promise-all-settled" "1.1.2" 6803 + ansi-colors "4.1.1" 6804 browser-stdout "1.3.1" 6805 + chokidar "3.5.1" 6806 + debug "4.3.1" 6807 + diff "5.0.0" 6808 + escape-string-regexp "4.0.0" 6809 + find-up "5.0.0" 6810 + glob "7.1.6" 6811 growl "1.10.5" 6812 + he "1.2.0" 6813 + js-yaml "4.0.0" 6814 + log-symbols "4.0.0" 6815 minimatch "3.0.4" 6816 + ms "2.1.3" 6817 + nanoid "3.1.20" 6818 + serialize-javascript "5.0.1" 6819 + strip-json-comments "3.1.1" 6820 + supports-color "8.1.1" 6821 + which "2.0.2" 6822 + wide-align "1.1.3" 6823 + workerpool "6.1.0" 6824 + yargs "16.2.0" 6825 + yargs-parser "20.2.4" 6826 + yargs-unparser "2.0.0" 6827 6828 mock-require@3.0.3: 6829 version "3.0.3" ··· 6838 resolved "https://registry.yarnpkg.com/moment-mini/-/moment-mini-2.24.0.tgz#fa68d98f7fe93ae65bf1262f6abb5fb6983d8d18" 6839 integrity sha512-9ARkWHBs+6YJIvrIp0Ik5tyTTtP9PoV0Ssu2Ocq5y9v8+NOOpWiRshAp8c4rZVWTOe+157on/5G+zj5pwIQFEQ== 6840 6841 + moment-timezone@^0.5.21, moment-timezone@^0.5.33: 6842 + version "0.5.33" 6843 + resolved "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.33.tgz#b252fd6bb57f341c9b59a5ab61a8e51a73bbd22c" 6844 + integrity sha512-PTc2vcT8K9J5/9rDEPe5czSIKgLoGsH8UNpA4qZTVw0Vd/Uz19geE9abbIOQKaAQFcnQ3v5YEXrbSc5BpshH+w== 6845 dependencies: 6846 moment ">= 2.9.0" 6847 6848 + "moment@>= 2.9.0", moment@^2.17.1, moment@^2.24.0: 6849 version "2.29.1" 6850 resolved "https://registry.yarnpkg.com/moment/-/moment-2.29.1.tgz#b2be769fa31940be9eeea6469c075e35006fa3d3" 6851 integrity sha512-kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ== ··· 6888 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 6889 integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 6890 6891 + ms@2.1.3, ms@^2.1.1: 6892 version "2.1.3" 6893 resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 6894 integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 6895 6896 mustache@^4.0.1: 6897 + version "4.2.0" 6898 + resolved "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz#e5892324d60a12ec9c2a73359edca52972bf6f64" 6899 + integrity sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ== 6900 6901 mysql2@^2.0.0: 6902 version "2.2.5" ··· 6919 dependencies: 6920 lru-cache "^4.1.3" 6921 6922 + nan@^2.12.1: 6923 version "2.14.2" 6924 resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz#f5376400695168f4cc694ac9393d0c9585eeea19" 6925 integrity sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ== 6926 6927 + nanoid@3.1.20: 6928 + version "3.1.20" 6929 + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" 6930 + integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== 6931 + 6932 nanoid@^2.1.0: 6933 version "2.1.11" 6934 resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-2.1.11.tgz#ec24b8a758d591561531b4176a01e3ab4f0f0280" 6935 integrity sha512-s/snB+WGm6uwi0WjsZdaVcuf3KJXlfGl2LcxgwkEwJF0D/BWzVWAZW/XY4bFaiR7s0Jk3FPvlnepg1H1b1UwlA== 6936 6937 + nanoid@^3.1.22: 6938 + version "3.1.22" 6939 + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz#b35f8fb7d151990a8aebd5aa5015c03cf726f844" 6940 + integrity sha512-/2ZUaJX2ANuLtTvqTlgqBQNJoQO398KyJgZloL0PZkC0dpysjncRUPsFe3DUPzz/y3h+u7C46np8RMuvF3jsSQ== 6941 + 6942 nanomatch@^1.2.9: 6943 version "1.2.13" 6944 resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" ··· 6961 resolved "https://registry.yarnpkg.com/native-duplexpair/-/native-duplexpair-1.0.0.tgz#7899078e64bf3c8a3d732601b3d40ff05db58fa0" 6962 integrity sha1-eJkHjmS/PIo9cyYBs9QP8F21j6A= 6963 6964 natural-compare@^1.4.0: 6965 version "1.4.0" 6966 resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 6967 integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 6968 6969 + needle@^2.2.1, needle@^2.5.2: 6970 version "2.6.0" 6971 resolved "https://registry.yarnpkg.com/needle/-/needle-2.6.0.tgz#24dbb55f2509e2324b4a99d61f413982013ccdbe" 6972 integrity sha512-KKYdza4heMsEfSWD7VPUIz3zX2XDwOyX2d+geb4vrERZMT5RMU6ujjaD+I5Yr54uZxQ2w6XRTAhHBbSCyovZBg== ··· 6985 resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" 6986 integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== 6987 6988 no-case@^2.2.0: 6989 version "2.3.2" 6990 resolved "https://registry.yarnpkg.com/no-case/-/no-case-2.3.2.tgz#60b813396be39b3f1288a4c1ed5d1e7d28b464ac" ··· 7000 lower-case "^2.0.2" 7001 tslib "^2.0.3" 7002 7003 + node-addon-api@^3.0.0: 7004 + version "3.1.0" 7005 + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.1.0.tgz#98b21931557466c6729e51cb77cd39c965f42239" 7006 + integrity sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw== 7007 + 7008 + node-fetch@^2.6.1: 7009 + version "2.6.1" 7010 + resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" 7011 + integrity sha512-V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw== 7012 7013 node-forge@^0.10.0: 7014 version "0.10.0" ··· 7019 version "4.2.3" 7020 resolved "https://registry.yarnpkg.com/node-gyp-build/-/node-gyp-build-4.2.3.tgz#ce6277f853835f718829efb47db20f3e4d9c4739" 7021 integrity sha512-MN6ZpzmfNCRM+3t57PTJHgHyw/h4OWnZ6mR8P5j/uZtqQr46RRuDE/P+g3n0YR/AiYXeWixZZzaip77gdICfRg== 7022 + 7023 + node-gyp@3.x: 7024 + version "3.8.0" 7025 + resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" 7026 + integrity sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA== 7027 + dependencies: 7028 + fstream "^1.0.0" 7029 + glob "^7.0.3" 7030 + graceful-fs "^4.1.2" 7031 + mkdirp "^0.5.0" 7032 + nopt "2 || 3" 7033 + npmlog "0 || 1 || 2 || 3 || 4" 7034 + osenv "0" 7035 + request "^2.87.0" 7036 + rimraf "2" 7037 + semver "~5.3.0" 7038 + tar "^2.0.0" 7039 + which "1" 7040 7041 node-libs-browser@^2.2.1: 7042 version "2.2.1" ··· 7083 semver "^5.3.0" 7084 tar "^4" 7085 7086 + node-releases@^1.1.71: 7087 + version "1.1.71" 7088 + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" 7089 + integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== 7090 7091 nomnom@^1.5.x: 7092 version "1.8.1" ··· 7095 dependencies: 7096 chalk "~0.4.0" 7097 underscore "~1.6.0" 7098 + 7099 + "nopt@2 || 3": 7100 + version "3.0.6" 7101 + resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" 7102 + integrity sha1-xkZdvwirzU2zWTF/eaxopkayj/k= 7103 + dependencies: 7104 + abbrev "1" 7105 7106 nopt@^4.0.1: 7107 version "4.0.3" ··· 7111 abbrev "1" 7112 osenv "^0.1.4" 7113 7114 normalize-package-data@^2.3.2: 7115 version "2.5.0" 7116 resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" ··· 7133 resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 7134 integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 7135 7136 normalize-url@^3.0.0: 7137 version "3.3.0" 7138 resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" 7139 integrity sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg== 7140 7141 npm-bundled@^1.0.1: 7142 + version "1.1.2" 7143 + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz#944c78789bd739035b70baa2ca5cc32b8d860bc1" 7144 + integrity sha512-x5DHup0SuyQcmL3s7Rx/YQ8sbw/Hzg0rj48eN0dV7hf5cmQq5PXIeioroH3raV1QC1yh3uTYuMThvEQF3iKgGQ== 7145 dependencies: 7146 npm-normalize-package-bin "^1.0.1" 7147 ··· 7159 npm-bundled "^1.0.1" 7160 npm-normalize-package-bin "^1.0.1" 7161 7162 + npm-run-path@^4.0.1: 7163 + version "4.0.1" 7164 + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 7165 + integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 7166 + dependencies: 7167 + path-key "^3.0.0" 7168 + 7169 + "npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2: 7170 version "4.1.2" 7171 resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" 7172 integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== ··· 7193 resolved "https://registry.yarnpkg.com/nwmatcher/-/nwmatcher-1.3.9.tgz#8bab486ff7fa3dfd086656bbe8b17116d3692d2a" 7194 integrity sha1-i6tIb/f6Pf0IZla76LFxFtNpLSo= 7195 7196 oauth-sign@~0.9.0: 7197 version "0.9.0" 7198 resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" ··· 7203 resolved "https://registry.yarnpkg.com/oauth/-/oauth-0.9.15.tgz#bd1fefaf686c96b75475aed5196412ff60cfb9c1" 7204 integrity sha1-vR/vr2hslrdUda7VGWQS/2DPucE= 7205 7206 + object-assign@^4.1.0, object-assign@^4.1.1: 7207 version "4.1.1" 7208 resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 7209 integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= ··· 7217 define-property "^0.2.5" 7218 kind-of "^3.0.3" 7219 7220 + object-inspect@^1.9.0: 7221 + version "1.10.2" 7222 + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.2.tgz#b6385a3e2b7cae0b5eafcf90cddf85d128767f30" 7223 + integrity sha512-gz58rdPpadwztRrPjZE9DZLOABUpTGdcANUgOwBFO1C+HZZhePoP83M65WGDmbpwFYJSWqavbl4SgDn4k8RYTA== 7224 7225 + object-is@^1.1.4: 7226 + version "1.1.5" 7227 + resolved "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz#b9deeaa5fc7f1846a0faecdceec138e5778f53ac" 7228 + integrity sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw== 7229 dependencies: 7230 + call-bind "^1.0.2" 7231 define-properties "^1.1.3" 7232 7233 object-keys@^1.0.12, object-keys@^1.1.1: ··· 7242 dependencies: 7243 isobject "^3.0.0" 7244 7245 + object.assign@^4.1.2: 7246 version "4.1.2" 7247 resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940" 7248 integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ== ··· 7253 object-keys "^1.1.1" 7254 7255 object.getownpropertydescriptors@^2.0.3, object.getownpropertydescriptors@^2.1.0: 7256 + version "2.1.2" 7257 + resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz#1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7" 7258 + integrity sha512-WtxeKSzfBjlzL+F9b7M7hewDzMwy+C8NRssHd1YrNlzHzIDrXcXiNOMrezdAEM4UXixgV+vvnyBeN7Rygl2ttQ== 7259 dependencies: 7260 + call-bind "^1.0.2" 7261 define-properties "^1.1.3" 7262 + es-abstract "^1.18.0-next.2" 7263 7264 object.omit@^2.0.0: 7265 version "2.0.1" ··· 7277 isobject "^3.0.1" 7278 7279 object.values@^1.1.0, object.values@^1.1.1: 7280 + version "1.1.3" 7281 + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz#eaa8b1e17589f02f698db093f7c62ee1699742ee" 7282 + integrity sha512-nkF6PfDB9alkOUxpf1HNm/QlkeW3SReqL5WXeBLpEJJnlPSvRaDQpW3gQTksTN3fgJX4hL42RzKyOin6ff3tyw== 7283 dependencies: 7284 + call-bind "^1.0.2" 7285 define-properties "^1.1.3" 7286 + es-abstract "^1.18.0-next.2" 7287 has "^1.0.3" 7288 7289 on-finished@~2.3.0: ··· 7312 dependencies: 7313 fn.name "1.x.x" 7314 7315 + onetime@^5.1.2: 7316 + version "5.1.2" 7317 + resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 7318 + integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 7319 dependencies: 7320 + mimic-fn "^2.1.0" 7321 7322 openid@2.x.x: 7323 + version "2.0.8" 7324 + resolved "https://registry.yarnpkg.com/openid/-/openid-2.0.8.tgz#e3a09b55641101156ad086971721a98d0723c547" 7325 + integrity sha512-ljI4GE6p4RYn9dLftlXw6TvlA+untAkoWBRpj4qIB4AJQWcDZ2lOVOJQ2tq346ok38mtGDBYRBvp3Q+AsuCBnQ== 7326 dependencies: 7327 request "^2.88.2" 7328 ··· 7334 cssnano "^4.1.10" 7335 last-call-webpack-plugin "^3.0.0" 7336 7337 + optionator@^0.9.1: 7338 + version "0.9.1" 7339 + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 7340 + integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 7341 dependencies: 7342 + deep-is "^0.1.3" 7343 + fast-levenshtein "^2.0.6" 7344 + levn "^0.4.1" 7345 + prelude-ls "^1.2.1" 7346 + type-check "^0.4.0" 7347 + word-wrap "^1.2.3" 7348 7349 os-browserify@^0.3.0: 7350 version "0.3.0" ··· 7356 resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" 7357 integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M= 7358 7359 + os-tmpdir@^1.0.0, os-tmpdir@^1.0.1: 7360 version "1.0.2" 7361 resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" 7362 integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= 7363 7364 + osenv@0, osenv@^0.1.4: 7365 version "0.1.5" 7366 resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" 7367 integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== ··· 7420 dependencies: 7421 p-limit "^2.2.0" 7422 7423 + p-locate@^5.0.0: 7424 + version "5.0.0" 7425 + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 7426 + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 7427 + dependencies: 7428 + p-limit "^3.0.2" 7429 + 7430 p-map@^4.0.0: 7431 version "4.0.0" 7432 resolved "https://registry.yarnpkg.com/p-map/-/p-map-4.0.0.tgz#bb2f95a5eda2ec168ec9274e06a747c3e2904d2b" ··· 7534 json-parse-better-errors "^1.0.1" 7535 7536 parse-json@^5.0.0: 7537 + version "5.2.0" 7538 + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 7539 + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 7540 dependencies: 7541 "@babel/code-frame" "^7.0.0" 7542 error-ex "^1.3.1" 7543 json-parse-even-better-errors "^2.3.0" 7544 lines-and-columns "^1.1.6" 7545 7546 + parse-node-version@^1.0.1: 7547 + version "1.0.1" 7548 + resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" 7549 + integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== 7550 7551 parseqs@0.0.6: 7552 version "0.0.6" ··· 7584 passport-oauth "^1.0.0" 7585 pkginfo "^0.2.3" 7586 7587 + passport-facebook@^3.0.0: 7588 + version "3.0.0" 7589 + resolved "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-3.0.0.tgz#b16f7314128be55d020a2b75f574c194bd6d9805" 7590 + integrity sha512-K/qNzuFsFISYAyC1Nma4qgY/12V3RSLFdFVsPKXiKZt434wOvthFW1p7zKa1iQihQMRhaWorVE1o3Vi1o+ZgeQ== 7591 dependencies: 7592 passport-oauth2 "1.x.x" 7593 ··· 7598 dependencies: 7599 passport-oauth2 "1.x.x" 7600 7601 + passport-gitlab2@^5.0.0: 7602 + version "5.0.0" 7603 + resolved "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-5.0.0.tgz#ea37e5285321c026a02671e87469cac28cce9b69" 7604 + integrity sha512-cXQMgM6JQx9wHVh7JLH30D8fplfwjsDwRz+zS0pqC8JS+4bNmc1J04NGp5g2M4yfwylH9kQRrMN98GxMw7q7cg== 7605 dependencies: 7606 passport-oauth2 "^1.4.0" 7607 7608 + passport-google-oauth20@^2.0.0: 7609 + version "2.0.0" 7610 + resolved "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-2.0.0.tgz#0d241b2d21ebd3dc7f2b60669ec4d587e3a674ef" 7611 + integrity sha512-KSk6IJ15RoxuGq7D1UKK/8qKhNfzbLeLrG3gkLZ7p4A6DBCcv7xpyQwuXtWdpyR0+E0mwkpjY1VfPOhxQrKzdQ== 7612 dependencies: 7613 passport-oauth2 "1.x.x" 7614 7615 + passport-ldapauth@^3.0.0: 7616 + version "3.0.1" 7617 + resolved "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-3.0.1.tgz#1432e8469de18bd46b5b39a46a866b416c1ddded" 7618 + integrity sha512-TRRx3BHi8GC8MfCT9wmghjde/EGeKjll7zqHRRfGRxXbLcaDce2OftbQrFG7/AWaeFhR6zpZHtBQ/IkINdLVjQ== 7619 dependencies: 7620 + ldapauth-fork "^5.0.1" 7621 passport-strategy "^1.0.0" 7622 7623 passport-local@^1.0.0: ··· 7655 passport-oauth1 "1.x.x" 7656 passport-oauth2 "1.x.x" 7657 7658 + passport-saml@^2.0.0: 7659 + version "2.2.0" 7660 + resolved "https://registry.yarnpkg.com/passport-saml/-/passport-saml-2.2.0.tgz#dbea6743cf06644cfb3f0d486e43d3c8812b150a" 7661 + integrity sha512-Qkr9WbhGY1AAAgslJ4yFn7ObQp/cLu2L1bubwXvl8vsvXQujPemKYhD3SwdilEIllZ/EPTlHgld+4wiPRYxd8Q== 7662 dependencies: 7663 + debug "^4.3.1" 7664 passport-strategy "*" 7665 + xml-crypto "^2.1.1" 7666 + xml-encryption "^1.2.3" 7667 + xml2js "^0.4.23" 7668 + xmlbuilder "^15.1.1" 7669 + xmldom "0.5.x" 7670 7671 passport-strategy@*, passport-strategy@1.x.x, passport-strategy@^1.0.0: 7672 version "1.0.0" ··· 7721 resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 7722 integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 7723 7724 + path-key@^3.0.0, path-key@^3.1.0: 7725 + version "3.1.1" 7726 + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 7727 + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 7728 7729 path-parse@^1.0.6: 7730 version "1.0.6" ··· 7754 integrity sha1-HUCLP9t2kjuVQ9lvtMnf1TXZy10= 7755 7756 pbkdf2@^3.0.3: 7757 + version "3.1.2" 7758 + resolved "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz#dd822aa0887580e52f1a039dc3eda108efae3075" 7759 + integrity sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA== 7760 dependencies: 7761 create-hash "^1.1.2" 7762 create-hmac "^1.1.4" ··· 7765 sha.js "^2.4.8" 7766 7767 pdfobject@^2.0.201604172: 7768 + version "2.2.5" 7769 + resolved "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.2.5.tgz#3e79dae8925a68f60c79423f56737bfd2d7e8a0b" 7770 + integrity sha512-B301nc24w02BMqrJoDOUBGRfHBqGtLztsdUyyhYsZaxD3R1DyNKtkDcilo+A4FYSW82k/LXAiXVREkYoqU2G4g== 7771 7772 peek-readable@^3.1.3: 7773 version "3.1.3" ··· 7779 resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 7780 integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 7781 7782 + pg-connection-string@^2.5.0: 7783 + version "2.5.0" 7784 + resolved "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.5.0.tgz#538cadd0f7e603fc09a12590f3b8a452c2c0cf34" 7785 + integrity sha512-r5o/V/ORTA6TmUnyWZR9nCj1klXCO2CEKNRlVuJptZe85QuhFayC7WeMic7ndayT5IRIR0S0xFxFi2ousartlQ== 7786 7787 pg-hstore@^2.3.3: 7788 version "2.3.3" ··· 7796 resolved "https://registry.yarnpkg.com/pg-int8/-/pg-int8-1.0.1.tgz#943bd463bf5b71b4170115f80f8efc9a0c0eb78c" 7797 integrity sha512-WCtabS6t3c8SkpDBUlb1kjOs7l66xsGdKpIPZsg4wR+B3+u9UAum2odSsF9tnvxg80h4ZxLWMy4pRjOsFIqQpw== 7798 7799 + pg-pool@^3.3.0: 7800 + version "3.3.0" 7801 + resolved "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.3.0.tgz#12d5c7f65ea18a6e99ca9811bd18129071e562fc" 7802 + integrity sha512-0O5huCql8/D6PIRFAlmccjphLYWC+JIzvUhSzXSpGaf+tjTZc4nn+Lr7mLXBbFJfvwbP0ywDv73EiaBsxn7zdg== 7803 7804 + pg-protocol@^1.5.0: 7805 + version "1.5.0" 7806 + resolved "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.5.0.tgz#b5dd452257314565e2d54ab3c132adc46565a6a0" 7807 + integrity sha512-muRttij7H8TqRNu/DxrAJQITO4Ac7RmX3Klyr/9mJEOBeIpgnF8f9jAfRz5d3XwQZl5qBjF9gLsUtMPJE0vezQ== 7808 7809 pg-types@^2.1.0: 7810 version "2.2.0" ··· 7818 postgres-interval "^1.1.0" 7819 7820 pg@^8.2.1: 7821 + version "8.6.0" 7822 + resolved "https://registry.yarnpkg.com/pg/-/pg-8.6.0.tgz#e222296b0b079b280cce106ea991703335487db2" 7823 + integrity sha512-qNS9u61lqljTDFvmk/N66EeGq3n6Ujzj0FFyNMGQr6XuEv4tgNTXvJQTfJdcvGit5p5/DWPu+wj920hAJFI+QQ== 7824 dependencies: 7825 buffer-writer "2.0.0" 7826 packet-reader "1.0.0" 7827 + pg-connection-string "^2.5.0" 7828 + pg-pool "^3.3.0" 7829 + pg-protocol "^1.5.0" 7830 pg-types "^2.1.0" 7831 pgpass "1.x" 7832 ··· 7837 dependencies: 7838 split2 "^3.1.1" 7839 7840 + picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: 7841 + version "2.2.3" 7842 + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" 7843 + integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== 7844 7845 pify@^2.0.0: 7846 version "2.3.0" ··· 7871 dependencies: 7872 find-up "^3.0.0" 7873 7874 + pkg-dir@^4.1.0, pkg-dir@^4.2.0: 7875 version "4.2.0" 7876 resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 7877 integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== ··· 7883 resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.2.3.tgz#7239c42a5ef6c30b8f328439d9b9ff71042490f8" 7884 integrity sha1-cjnEKl72wwuPMoQ52bn/cQQkkPg= 7885 7886 + pkginfo@^0.4.1: 7887 + version "0.4.1" 7888 + resolved "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz#b5418ef0439de5425fc4995042dced14fb2a84ff" 7889 + integrity sha1-tUGO8EOd5UJfxJlQQtztFPsqhP8= 7890 + 7891 please-upgrade-node@^3.2.0: 7892 version "3.2.0" 7893 resolved "https://registry.yarnpkg.com/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz#aeddd3f994c933e4ad98b99d9a556efa0e2fe942" ··· 7899 version "8.0.0" 7900 resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" 7901 integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== 7902 7903 posix-character-classes@^0.1.0: 7904 version "0.1.1" ··· 8023 postcss "^7.0.0" 8024 postcss-selector-parser "^3.0.0" 8025 8026 + postcss-modules-extract-imports@^3.0.0: 8027 + version "3.0.0" 8028 + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" 8029 + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== 8030 8031 + postcss-modules-local-by-default@^4.0.0: 8032 + version "4.0.0" 8033 + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz#ebbb54fae1598eecfdf691a02b3ff3b390a5a51c" 8034 + integrity sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ== 8035 dependencies: 8036 + icss-utils "^5.0.0" 8037 postcss-selector-parser "^6.0.2" 8038 postcss-value-parser "^4.1.0" 8039 8040 + postcss-modules-scope@^3.0.0: 8041 + version "3.0.0" 8042 + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz#9ef3151456d3bbfa120ca44898dfca6f2fa01f06" 8043 + integrity sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg== 8044 dependencies: 8045 + postcss-selector-parser "^6.0.4" 8046 8047 + postcss-modules-values@^4.0.0: 8048 + version "4.0.0" 8049 + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" 8050 + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== 8051 dependencies: 8052 + icss-utils "^5.0.0" 8053 8054 postcss-normalize-charset@^4.0.1: 8055 version "4.0.1" ··· 8170 indexes-of "^1.0.1" 8171 uniq "^1.0.1" 8172 8173 + postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4: 8174 + version "6.0.5" 8175 + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz#042d74e137db83e6f294712096cb413f5aa612c4" 8176 + integrity sha512-aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg== 8177 dependencies: 8178 cssesc "^3.0.0" 8179 util-deprecate "^1.0.2" 8180 8181 + postcss-svgo@^4.0.3: 8182 + version "4.0.3" 8183 + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz#343a2cdbac9505d416243d496f724f38894c941e" 8184 + integrity sha512-NoRbrcMWTtUghzuKSoIm6XV+sJdvZ7GZSc3wdBN0W19FTtp2ko8NqLsgoh/m9CzNhU3KLPvQmjIwtaNFkaFTvw== 8185 dependencies: 8186 postcss "^7.0.0" 8187 postcss-value-parser "^3.0.0" 8188 svgo "^1.0.0" ··· 8206 resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" 8207 integrity sha512-97DXOFbQJhk71ne5/Mt6cOu6yxsSfM0QGQyl0L25Gca4yGWEGJaig7l7gbCX623VqTBNGLRLaVUCnNkcedlRSQ== 8208 8209 + postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.27: 8210 version "7.0.35" 8211 resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" 8212 integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== ··· 8215 source-map "^0.6.1" 8216 supports-color "^6.1.0" 8217 8218 + postcss@^8.2.10: 8219 + version "8.2.13" 8220 + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.13.tgz#dbe043e26e3c068e45113b1ed6375d2d37e2129f" 8221 + integrity sha512-FCE5xLH+hjbzRdpbRb1IMCvPv9yZx2QnDarBEYSN0N0HYk+TcXsEhwdFcFb+SRWOKzKGErhIEbBK2ogyLdTtfQ== 8222 + dependencies: 8223 + colorette "^1.2.2" 8224 + nanoid "^3.1.22" 8225 + source-map "^0.6.1" 8226 + 8227 postgres-array@~2.0.0: 8228 version "2.0.0" 8229 resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" ··· 8251 resolved "https://registry.yarnpkg.com/precond/-/precond-0.2.3.tgz#aa9591bcaa24923f1e0f4849d240f47efc1075ac" 8252 integrity sha1-qpWRvKokkj8eD0hJ0kD0fvwQdaw= 8253 8254 + prelude-ls@^1.2.1: 8255 + version "1.2.1" 8256 + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 8257 + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 8258 8259 preserve@^0.2.0: 8260 version "0.2.0" ··· 8306 resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 8307 integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 8308 8309 + prom-client@^13.1.0: 8310 + version "13.1.0" 8311 + resolved "https://registry.yarnpkg.com/prom-client/-/prom-client-13.1.0.tgz#1185caffd8691e28d32e373972e662964e3dba45" 8312 + integrity sha512-jT9VccZCWrJWXdyEtQddCDszYsiuWj5T0ekrPszi/WEegj3IZy6Mm09iOOVM86A4IKMWq8hZkT2dD9MaSe+sng== 8313 + dependencies: 8314 + tdigest "^0.1.1" 8315 + 8316 + prometheus-api-metrics@^3.2.0: 8317 + version "3.2.0" 8318 + resolved "https://registry.yarnpkg.com/prometheus-api-metrics/-/prometheus-api-metrics-3.2.0.tgz#3af90989271abb55b7e0405bdfcb161f403a361c" 8319 + integrity sha512-JekPhtIBLGX8HxD2EndvBsLU6ZQ1JVVqyHWVfm5CposUOqgBHXnUVFW6x5Ux2gykpdej/5LLM3dU9V8Ma7GfkA== 8320 + dependencies: 8321 + "@types/express" "^4.17.8" 8322 + "@types/express-serve-static-core" "^4.17.12" 8323 + "@types/koa" "^2.11.4" 8324 + debug "^3.2.6" 8325 + lodash.get "^4.4.2" 8326 + pkginfo "^0.4.1" 8327 + 8328 promise-inflight@^1.0.1: 8329 version "1.0.1" 8330 resolved "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz#98472870bf228132fcbdd868129bad12c3c029e3" 8331 integrity sha1-mEcocL8igTL8vdhoEputEsPAKeM= 8332 8333 proxy-addr@~2.0.5: 8334 version "2.0.6" 8335 resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf" ··· 8410 resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7" 8411 integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc= 8412 8413 qs@2.3.3: 8414 version "2.3.3" 8415 resolved "https://registry.yarnpkg.com/qs/-/qs-2.3.3.tgz#e9e85adbe75da0bbe4c8e0476a086290f863b404" ··· 8425 resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36" 8426 integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA== 8427 8428 querystring-es3@^0.2.0: 8429 version "0.2.1" 8430 resolved "https://registry.yarnpkg.com/querystring-es3/-/querystring-es3-0.2.1.tgz#9ec61f79049875707d69414596fd907a4d711e73" ··· 8434 version "0.2.0" 8435 resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" 8436 integrity sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA= 8437 + 8438 + queue-microtask@^1.2.2: 8439 + version "1.2.3" 8440 + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 8441 + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 8442 8443 random-bytes@~1.0.0: 8444 version "1.0.0" ··· 8528 normalize-package-data "^2.3.2" 8529 path-type "^2.0.0" 8530 8531 + "readable-stream@1 || 2", readable-stream@^2.0.0, readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.5, readable-stream@^2.0.6, readable-stream@^2.1.5, readable-stream@^2.2.2, readable-stream@^2.3.3, readable-stream@^2.3.6, readable-stream@^2.3.7, readable-stream@~2.3.6: 8532 version "2.3.7" 8533 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57" 8534 integrity sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw== ··· 8551 isarray "0.0.1" 8552 string_decoder "~0.10.x" 8553 8554 + "readable-stream@2 || 3", readable-stream@^3.0.0, readable-stream@^3.0.1, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0: 8555 version "3.6.0" 8556 resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" 8557 integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== ··· 8608 resolved "https://registry.yarnpkg.com/readline-sync/-/readline-sync-1.4.10.tgz#41df7fbb4b6312d673011594145705bf56d8873b" 8609 integrity sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw== 8610 8611 + rechoir@^0.7.0: 8612 + version "0.7.0" 8613 + resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.0.tgz#32650fd52c21ab252aa5d65b19310441c7e03aca" 8614 + integrity sha512-ADsDEH2bvbjltXEP+hTIAmeFekTFK0V2BTxMkok6qILyAJEXV0AFfoWcAq4yfll5VdIMd/RVXq0lR+wQi5ZU3Q== 8615 + dependencies: 8616 + resolve "^1.9.0" 8617 + 8618 reduce-component@1.0.1: 8619 version "1.0.1" 8620 resolved "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz#e0c93542c574521bea13df0f9488ed82ab77c5da" 8621 integrity sha1-4Mk1QsV0UhvqE98PlIjtgqt3xdo= 8622 8623 regenerate@^1.2.1: 8624 version "1.4.2" 8625 resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.2.tgz#b9346d8827e8f5a32f7ba29637d398b69014848a" ··· 8659 extend-shallow "^3.0.2" 8660 safe-regex "^1.1.0" 8661 8662 + regexp.prototype.flags@^1.3.0: 8663 + version "1.3.1" 8664 + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz#7ef352ae8d159e758c0eadca6f8fcb4eef07be26" 8665 + integrity sha512-JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA== 8666 dependencies: 8667 + call-bind "^1.0.2" 8668 define-properties "^1.1.3" 8669 8670 + regexpp@^3.0.0, regexpp@^3.1.0: 8671 + version "3.1.0" 8672 + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 8673 + integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 8674 8675 regexpu-core@^2.0.0: 8676 version "2.0.0" ··· 8698 resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" 8699 integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= 8700 8701 + remark-cli@9.0.0: 8702 + version "9.0.0" 8703 + resolved "https://registry.yarnpkg.com/remark-cli/-/remark-cli-9.0.0.tgz#6f7951e7a72217535f2e32b7a6d3f638fe182f86" 8704 + integrity sha512-y6kCXdwZoMoh0Wo4Och1tDW50PmMc86gW6GpF08v9d+xUCEJE2wwXdQ+TnTaUamRnfFdU+fE+eNf2PJ53cyq8g== 8705 dependencies: 8706 markdown-extensions "^1.1.0" 8707 + remark "^13.0.0" 8708 unified-args "^8.0.0" 8709 8710 remark-lint-blockquote-indentation@^2.0.0: ··· 8858 unist-util-position "^3.0.0" 8859 unist-util-visit "^2.0.0" 8860 8861 + remark-lint-list-item-spacing@^3.0.0: 8862 + version "3.0.0" 8863 + resolved "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-3.0.0.tgz#14c18fe8c0f19231edb5cf94abda748bb773110b" 8864 + integrity sha512-SRUVonwdN3GOSFb6oIYs4IfJxIVR+rD0nynkX66qEO49/qDDT1PPvkndis6Nyew5+t+2V/Db9vqllL6SWbnEtw== 8865 dependencies: 8866 unified-lint-rule "^1.0.0" 8867 unist-util-generated "^1.1.0" ··· 8899 unist-util-position "^3.0.0" 8900 unist-util-visit "^2.0.0" 8901 8902 + remark-lint-no-blockquote-without-marker@^4.0.0: 8903 + version "4.0.0" 8904 + resolved "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-4.0.0.tgz#856fb64dd038fa8fc27928163caa24a30ff4d790" 8905 + integrity sha512-Y59fMqdygRVFLk1gpx2Qhhaw5IKOR9T38Wf7pjR07bEFBGUNfcoNVIFMd1TCJfCPQxUyJzzSqfZz/KT7KdUuiQ== 8906 dependencies: 8907 unified-lint-rule "^1.0.0" 8908 + unist-util-generated "^1.0.0" 8909 unist-util-position "^3.0.0" 8910 unist-util-visit "^2.0.0" 8911 vfile-location "^3.0.0" 8912 8913 + remark-lint-no-consecutive-blank-lines@^3.0.0: 8914 + version "3.0.0" 8915 + resolved "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-3.0.0.tgz#c8fe11095b8f031a1406da273722bd4a9174bf41" 8916 + integrity sha512-kmzLlOLrapBKEngwYFTdCZDmeOaze6adFPB7G0EdymD9V1mpAlnneINuOshRLEDKK5fAhXKiZXxdGIaMPkiXrA== 8917 dependencies: 8918 pluralize "^8.0.0" 8919 unified-lint-rule "^1.0.0" ··· 8987 unist-util-generated "^1.1.0" 8988 unist-util-visit "^2.0.0" 8989 8990 + remark-lint-no-inline-padding@^3.0.0: 8991 + version "3.0.0" 8992 + resolved "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-3.0.0.tgz#14c2722bcddc648297a54298107a922171faf6eb" 8993 + integrity sha512-3s9uW3Yux9RFC0xV81MQX3bsYs+UY7nPnRuMxeIxgcVwxQ4E/mTJd9QjXUwBhU9kdPtJ5AalngdmOW2Tgar8Cg== 8994 dependencies: 8995 mdast-util-to-string "^1.0.2" 8996 unified-lint-rule "^1.0.0" ··· 9046 unist-util-generated "^1.1.0" 9047 unist-util-visit "^2.0.0" 9048 9049 + remark-lint-no-table-indentation@^3.0.0: 9050 + version "3.0.0" 9051 + resolved "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-3.0.0.tgz#f3c3fc24375069ec8e510f43050600fb22436731" 9052 + integrity sha512-+l7GovI6T+3LhnTtz/SmSRyOb6Fxy6tmaObKHrwb/GAebI/4MhFS1LVo3vbiP/RpPYtyQoFbbuXI55hqBG4ibQ== 9053 dependencies: 9054 unified-lint-rule "^1.0.0" 9055 unist-util-position "^3.0.0" 9056 unist-util-visit "^2.0.0" 9057 + vfile-location "^3.0.0" 9058 9059 remark-lint-ordered-list-marker-style@^2.0.0: 9060 version "2.0.1" ··· 9096 unist-util-position "^3.0.0" 9097 unist-util-visit "^2.0.0" 9098 9099 + remark-lint-table-cell-padding@^3.0.0: 9100 + version "3.0.0" 9101 + resolved "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-3.0.0.tgz#a769ba1999984ff5f90294fb6ccb8aead7e8a12f" 9102 + integrity sha512-sEKrbyFZPZpxI39R8/r+CwUrin9YtyRwVn0SQkNQEZWZcIpylK+bvoKIldvLIXQPob+ZxklL0GPVRzotQMwuWQ== 9103 dependencies: 9104 unified-lint-rule "^1.0.0" 9105 unist-util-generated "^1.1.0" ··· 9116 unist-util-position "^3.0.0" 9117 unist-util-visit "^2.0.0" 9118 9119 + remark-lint-table-pipes@^3.0.0: 9120 + version "3.0.0" 9121 + resolved "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-3.0.0.tgz#b30b055d594cae782667eec91c6c5b35928ab259" 9122 + integrity sha512-QPokSazEdl0Y8ayUV9UB0Ggn3Jos/RAQwIo0z1KDGnJlGDiF80Jc6iU9RgDNUOjlpQffSLIfSVxH5VVYF/K3uQ== 9123 dependencies: 9124 unified-lint-rule "^1.0.0" 9125 unist-util-generated "^1.1.0" ··· 9136 unist-util-position "^3.0.0" 9137 unist-util-visit "^2.0.0" 9138 9139 + remark-lint@^8.0.0: 9140 + version "8.0.0" 9141 + resolved "https://registry.yarnpkg.com/remark-lint/-/remark-lint-8.0.0.tgz#6e40894f4a39eaea31fc4dd45abfaba948bf9a09" 9142 + integrity sha512-ESI8qJQ/TIRjABDnqoFsTiZntu+FRifZ5fJ77yX63eIDijl/arvmDvT+tAf75/Nm5BFL4R2JFUtkHRGVjzYUsg== 9143 dependencies: 9144 remark-message-control "^6.0.0" 9145 ··· 9151 mdast-comment-marker "^1.0.0" 9152 unified-message-control "^3.0.0" 9153 9154 + remark-parse@^9.0.0: 9155 + version "9.0.0" 9156 + resolved "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz#4d20a299665880e4f4af5d90b7c7b8a935853640" 9157 + integrity sha512-geKatMwSzEXKHuzBNU1z676sGcDcFoChMK38TgdHJNAYfFtsfHDQG7MoJAjs6sgYMqyLduCYWDIWZIxiPeafEw== 9158 dependencies: 9159 + mdast-util-from-markdown "^0.8.0" 9160 9161 + remark-preset-lint-markdown-style-guide@4.0.0: 9162 + version "4.0.0" 9163 + resolved "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-4.0.0.tgz#976b6ffd7f37aa90868e081a69241fcde3a297d4" 9164 + integrity sha512-gczDlfZ28Fz0IN/oddy0AH4CiTu9S8d3pJWUsrnwFiafjhJjPGobGE1OD3bksi53md1Bp4K0fzo99YYfvB4Sjw== 9165 dependencies: 9166 + remark-lint "^8.0.0" 9167 remark-lint-blockquote-indentation "^2.0.0" 9168 remark-lint-code-block-style "^2.0.0" 9169 remark-lint-definition-case "^2.0.0" ··· 9179 remark-lint-link-title-style "^2.0.0" 9180 remark-lint-list-item-content-indent "^2.0.0" 9181 remark-lint-list-item-indent "^2.0.0" 9182 + remark-lint-list-item-spacing "^3.0.0" 9183 remark-lint-maximum-heading-length "^2.0.0" 9184 remark-lint-maximum-line-length "^2.0.0" 9185 remark-lint-no-auto-link-without-protocol "^2.0.0" 9186 + remark-lint-no-blockquote-without-marker "^4.0.0" 9187 + remark-lint-no-consecutive-blank-lines "^3.0.0" 9188 remark-lint-no-duplicate-headings "^2.0.0" 9189 remark-lint-no-emphasis-as-heading "^2.0.0" 9190 remark-lint-no-file-name-articles "^1.0.0" ··· 9193 remark-lint-no-file-name-mixed-case "^1.0.0" 9194 remark-lint-no-file-name-outer-dashes "^1.0.0" 9195 remark-lint-no-heading-punctuation "^2.0.0" 9196 + remark-lint-no-inline-padding "^3.0.0" 9197 remark-lint-no-literal-urls "^2.0.0" 9198 remark-lint-no-multiple-toplevel-headings "^2.0.0" 9199 remark-lint-no-shell-dollars "^2.0.0" 9200 remark-lint-no-shortcut-reference-image "^2.0.0" 9201 remark-lint-no-shortcut-reference-link "^2.0.0" 9202 + remark-lint-no-table-indentation "^3.0.0" 9203 remark-lint-ordered-list-marker-style "^2.0.0" 9204 remark-lint-ordered-list-marker-value "^2.0.0" 9205 remark-lint-rule-style "^2.0.0" 9206 remark-lint-strong-marker "^2.0.0" 9207 + remark-lint-table-cell-padding "^3.0.0" 9208 remark-lint-table-pipe-alignment "^2.0.0" 9209 + remark-lint-table-pipes "^3.0.0" 9210 remark-lint-unordered-list-marker-style "^2.0.0" 9211 9212 + remark-stringify@^9.0.0: 9213 + version "9.0.1" 9214 + resolved "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-9.0.1.tgz#576d06e910548b0a7191a71f27b33f1218862894" 9215 + integrity sha512-mWmNg3ZtESvZS8fv5PTvaPckdL4iNlCHTt8/e/8oN08nArHRHjNZMKzA/YW3+p7/lYqIw4nx1XsjCBo/AxNChg== 9216 dependencies: 9217 + mdast-util-to-markdown "^0.6.0" 9218 9219 + remark@^13.0.0: 9220 + version "13.0.0" 9221 + resolved "https://registry.yarnpkg.com/remark/-/remark-13.0.0.tgz#d15d9bf71a402f40287ebe36067b66d54868e425" 9222 + integrity sha512-HDz1+IKGtOyWN+QgBiAT0kn+2s6ovOxHyPAFGKVE81VSzJ+mq7RwHFledEvB5F1p4iJvOah/LOKdFuzvRnNLCA== 9223 dependencies: 9224 + remark-parse "^9.0.0" 9225 + remark-stringify "^9.0.0" 9226 + unified "^9.1.0" 9227 9228 remove-trailing-separator@^1.0.1: 9229 version "1.1.0" ··· 9242 strip-ansi "^3.0.0" 9243 9244 repeat-element@^1.1.2: 9245 + version "1.1.4" 9246 + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" 9247 + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== 9248 9249 + repeat-string@^1.0.0, repeat-string@^1.5.0, repeat-string@^1.5.2, repeat-string@^1.6.1: 9250 version "1.6.1" 9251 resolved "https://registry.yarnpkg.com/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637" 9252 integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc= ··· 9258 dependencies: 9259 is-finite "^1.0.0" 9260 9261 + request@2.x, "request@>= 2.52.0", request@^2.86.0, request@^2.87.0, request@^2.88.0, request@^2.88.2: 9262 version "2.88.2" 9263 resolved "https://registry.yarnpkg.com/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3" 9264 integrity sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw== ··· 9289 resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 9290 integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 9291 9292 + require-from-string@^2.0.2: 9293 + version "2.0.2" 9294 + resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 9295 + integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 9296 9297 + resolve-cwd@^3.0.0: 9298 + version "3.0.0" 9299 + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 9300 + integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 9301 dependencies: 9302 + resolve-from "^5.0.0" 9303 9304 resolve-from@^3.0.0: 9305 version "3.0.0" ··· 9321 resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 9322 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 9323 9324 + resolve@^1.10.0, resolve@^1.10.1, resolve@^1.13.1, resolve@^1.17.0, resolve@^1.9.0: 9325 + version "1.20.0" 9326 + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 9327 + integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 9328 dependencies: 9329 + is-core-module "^2.2.0" 9330 path-parse "^1.0.6" 9331 9332 ret@~0.1.10: 9333 version "0.1.15" 9334 resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" ··· 9361 resolved "https://registry.yarnpkg.com/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3" 9362 integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM= 9363 9364 + rimraf@2, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.3: 9365 version "2.7.1" 9366 resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec" 9367 integrity sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w== ··· 9375 dependencies: 9376 glob "^7.1.3" 9377 9378 ripemd160@^2.0.0, ripemd160@^2.0.1: 9379 version "2.0.2" 9380 resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c" ··· 9383 hash-base "^3.0.0" 9384 inherits "^2.0.1" 9385 9386 run-parallel@^1.1.9: 9387 + version "1.2.0" 9388 + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 9389 + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 9390 + dependencies: 9391 + queue-microtask "^1.2.2" 9392 9393 run-queue@^1.0.0, run-queue@^1.0.3: 9394 version "1.0.3" ··· 9402 resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" 9403 integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= 9404 9405 safe-buffer@*, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@^5.2.0, safe-buffer@~5.2.0: 9406 version "5.2.1" 9407 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" ··· 9416 version "5.2.0" 9417 resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519" 9418 integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg== 9419 9420 safe-regex@^1.1.0: 9421 version "1.1.0" ··· 9453 ajv-errors "^1.0.0" 9454 ajv-keywords "^3.1.0" 9455 9456 schema-utils@^3.0.0: 9457 version "3.0.0" 9458 resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" ··· 9468 integrity sha512-UMNLEvgOAQuzK8ji8qIscM3GIrRCWN6MmMXGD4SD5l6cSycgGsCo0tX5xRnfQcoghqct0tjHjcykgI1PyBE2aA== 9469 dependencies: 9470 raw-loader "~0.5.1" 9471 9472 scrypt-kdf@^2.0.1: 9473 version "2.0.1" ··· 9489 resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" 9490 integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= 9491 9492 + "semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.6.0: 9493 version "5.7.1" 9494 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 9495 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 9496 9497 + semver@^6.0.0, semver@^6.1.0, semver@^6.3.0: 9498 version "6.3.0" 9499 resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 9500 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 9501 9502 + semver@^7.2.1, semver@^7.3.5: 9503 + version "7.3.5" 9504 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 9505 + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 9506 + dependencies: 9507 + lru-cache "^6.0.0" 9508 + 9509 + semver@~5.3.0: 9510 + version "5.3.0" 9511 + resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" 9512 + integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= 9513 + 9514 send@0.17.1: 9515 version "0.17.1" 9516 resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8" ··· 9535 resolved "https://registry.yarnpkg.com/seq-queue/-/seq-queue-0.0.5.tgz#d56812e1c017a6e4e7c3e3a37a1da6d78dd3c93e" 9536 integrity sha1-1WgS4cAXpuTnw+Ojeh2m143TyT4= 9537 9538 sequelize-pool@^2.3.0: 9539 version "2.3.0" 9540 resolved "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-2.3.0.tgz#64f1fe8744228172c474f530604b6133be64993d" 9541 integrity sha512-Ibz08vnXvkZ8LJTiUOxRcj1Ckdn7qafNZ2t59jYHMX1VIebTAOYefWdRYFt6z6+hy52WGthAHAoLc9hvk3onqA== 9542 9543 sequelize@^5.21.1: 9544 + version "5.22.4" 9545 + resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-5.22.4.tgz#4dbd8a1a735e98150880d43a95d45e9f46d151fa" 9546 + integrity sha512-xFQQ38HPg7EyDRDA+NdzMSRWbo9m6Z/RxpjnkBl3ggyQG+jRrup48x0jaw4Ox42h56wFnXOBC2NZOkTJfZeWCw== 9547 dependencies: 9548 bluebird "^3.5.0" 9549 cls-bluebird "^2.1.0" ··· 9561 validator "^10.11.0" 9562 wkx "^0.4.8" 9563 9564 + serialize-javascript@5.0.1, serialize-javascript@^5.0.1: 9565 + version "5.0.1" 9566 + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" 9567 + integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== 9568 + dependencies: 9569 + randombytes "^2.1.0" 9570 + 9571 serialize-javascript@^4.0.0: 9572 version "4.0.0" 9573 resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 9574 integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 9575 dependencies: 9576 randombytes "^2.1.0" 9577 ··· 9585 parseurl "~1.3.3" 9586 send "0.17.1" 9587 9588 + set-blocking@~2.0.0: 9589 version "2.0.0" 9590 resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" 9591 integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc= ··· 9618 inherits "^2.0.1" 9619 safe-buffer "^5.0.1" 9620 9621 + shallow-clone@^3.0.0: 9622 + version "3.0.1" 9623 + resolved "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz#8f2981ad92531f55035b01fb230769a40e02efa3" 9624 + integrity sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA== 9625 + dependencies: 9626 + kind-of "^6.0.2" 9627 + 9628 + shebang-command@^2.0.0: 9629 + version "2.0.0" 9630 + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 9631 + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 9632 dependencies: 9633 + shebang-regex "^3.0.0" 9634 9635 + shebang-regex@^3.0.0: 9636 + version "3.0.0" 9637 + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 9638 + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 9639 9640 shimmer@^1.1.0: 9641 version "1.2.1" ··· 9649 dependencies: 9650 nanoid "^2.1.0" 9651 9652 + side-channel@^1.0.3: 9653 + version "1.0.4" 9654 + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz#efce5c8fdc104ee751b25c58d4290011fa5ea2cf" 9655 + integrity sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw== 9656 + dependencies: 9657 + call-bind "^1.0.0" 9658 + get-intrinsic "^1.0.2" 9659 + object-inspect "^1.9.0" 9660 9661 + signal-exit@^3.0.0, signal-exit@^3.0.3: 9662 version "3.0.3" 9663 resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 9664 integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== ··· 9680 resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 9681 integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 9682 9683 + slice-ansi@^4.0.0: 9684 + version "4.0.0" 9685 + resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 9686 + integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 9687 dependencies: 9688 + ansi-styles "^4.0.0" 9689 + astral-regex "^2.0.0" 9690 + is-fullwidth-code-point "^3.0.0" 9691 9692 sliced@^1.0.1: 9693 version "1.0.1" ··· 9783 socket.io-client "2.4.0" 9784 socket.io-parser "~3.4.0" 9785 9786 source-list-map@^2.0.0: 9787 version "2.0.1" 9788 resolved "https://registry.yarnpkg.com/source-list-map/-/source-list-map-2.0.1.tgz#3993bd873bfc48479cca9ea3a547835c7c154b34" ··· 9799 source-map-url "^0.4.0" 9800 urix "^0.1.0" 9801 9802 + source-map-support@^0.4.15: 9803 version "0.4.18" 9804 resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.4.18.tgz#0286a6de8be42641338594e97ccea75f0a2c585f" 9805 integrity sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA== ··· 9815 source-map "^0.6.0" 9816 9817 source-map-url@^0.4.0: 9818 + version "0.4.1" 9819 + resolved "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz#0af66605a745a5a2f91cf1bbf8a7afbc283dec56" 9820 + integrity sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw== 9821 9822 source-map@^0.5.6, source-map@^0.5.7: 9823 version "0.5.7" ··· 9860 resolved "https://registry.yarnpkg.com/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz#e9c18a410e5ed7e12442a549fbd8afa767038d65" 9861 integrity sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ== 9862 9863 + spin.js@^4.0.0: 9864 + version "4.1.0" 9865 + resolved "https://registry.yarnpkg.com/spin.js/-/spin.js-4.1.0.tgz#afcf12738fafd5f6aa0a385a5b4cec45c86a3555" 9866 + integrity sha512-WI8O1OdJlKjialIhB9Z5RfFFM4pI7Hohik76bB3N4Ep3N/vTDPZiRU8QeefyLbmpI5n2bFQXgticl2g+/KiKYA== 9867 9868 split-string@^3.0.1, split-string@^3.0.2: 9869 version "3.1.0" ··· 9889 resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 9890 integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 9891 9892 + sqlite3@^5.0.0: 9893 + version "5.0.2" 9894 + resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.0.2.tgz#00924adcc001c17686e0a6643b6cbbc2d3965083" 9895 + integrity sha512-1SdTNo+BVU211Xj1csWa8lV6KM0CtucDwRyA0VHl91wEH1Mgh7RxUpI4rVvG7OhHrzCSGaVyW5g8vKvlrk9DJA== 9896 dependencies: 9897 + node-addon-api "^3.0.0" 9898 node-pre-gyp "^0.11.0" 9899 + optionalDependencies: 9900 + node-gyp "3.x" 9901 9902 sqlstring@^2.3.2: 9903 version "2.3.2" ··· 9920 tweetnacl "~0.14.0" 9921 9922 ssri@^6.0.1: 9923 + version "6.0.2" 9924 + resolved "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz#157939134f20464e7301ddba3e90ffa8f7728ac5" 9925 + integrity sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q== 9926 dependencies: 9927 figgy-pudding "^3.5.1" 9928 9929 + ssri@^8.0.1: 9930 + version "8.0.1" 9931 + resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz#638e4e439e2ffbd2cd289776d5ca457c4f51a2af" 9932 + integrity sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ== 9933 dependencies: 9934 minipass "^3.1.1" 9935 ··· 9942 version "0.0.10" 9943 resolved "https://registry.yarnpkg.com/stack-trace/-/stack-trace-0.0.10.tgz#547c70b347e8d32b4e108ea1a2a159e5fdde19c0" 9944 integrity sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA= 9945 9946 static-extend@^0.1.1: 9947 version "0.1.2" ··· 9956 resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c" 9957 integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow= 9958 9959 store@^2.0.12: 9960 version "2.0.12" 9961 resolved "https://registry.yarnpkg.com/store/-/store-2.0.12.tgz#8c534e2a0b831f72b75fc5f1119857c44ef5d593" ··· 9993 resolved "https://registry.yarnpkg.com/stream-shift/-/stream-shift-1.0.1.tgz#d7088281559ab2778424279b0877da3c392d5a3d" 9994 integrity sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ== 9995 9996 string-loader@0.0.1: 9997 version "0.0.1" 9998 resolved "https://registry.yarnpkg.com/string-loader/-/string-loader-0.0.1.tgz#496f3cccc990213e0dd5411499f9ac6a6a6f2ff8" ··· 10012 is-fullwidth-code-point "^1.0.0" 10013 strip-ansi "^3.0.0" 10014 10015 + "string-width@^1.0.2 || 2": 10016 version "2.1.1" 10017 resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 10018 integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== ··· 10020 is-fullwidth-code-point "^2.0.0" 10021 strip-ansi "^4.0.0" 10022 10023 + string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: 10024 + version "4.2.2" 10025 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 10026 + integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 10027 dependencies: 10028 emoji-regex "^8.0.0" 10029 is-fullwidth-code-point "^3.0.0" 10030 strip-ansi "^6.0.0" 10031 10032 + string.prototype.trimend@^1.0.4: 10033 + version "1.0.4" 10034 + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz#e75ae90c2942c63504686c18b287b4a0b1a45f80" 10035 + integrity sha512-y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A== 10036 dependencies: 10037 + call-bind "^1.0.2" 10038 define-properties "^1.1.3" 10039 10040 + string.prototype.trimstart@^1.0.4: 10041 + version "1.0.4" 10042 + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz#b36399af4ab2999b4c9c648bd7a3fb2bb26feeed" 10043 + integrity sha512-jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw== 10044 dependencies: 10045 + call-bind "^1.0.2" 10046 define-properties "^1.1.3" 10047 10048 string@^3.3.3: ··· 10069 dependencies: 10070 safe-buffer "~5.1.0" 10071 10072 strip-ansi@^3.0.0, strip-ansi@^3.0.1: 10073 version "3.0.1" 10074 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" ··· 10083 dependencies: 10084 ansi-regex "^3.0.0" 10085 10086 strip-ansi@^6.0.0: 10087 version "6.0.0" 10088 resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" ··· 10100 resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" 10101 integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= 10102 10103 + strip-comments@^2.0.1: 10104 + version "2.0.1" 10105 + resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz#4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b" 10106 + integrity sha512-ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw== 10107 + 10108 + strip-final-newline@^2.0.0: 10109 + version "2.0.0" 10110 + resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 10111 + integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 10112 + 10113 + strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 10114 + version "3.1.1" 10115 + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 10116 + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 10117 + 10118 + strip-json-comments@~2.0.1: 10119 version "2.0.1" 10120 resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" 10121 integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= ··· 10160 readable-stream "1.0.27-1" 10161 reduce-component "1.0.1" 10162 10163 + supports-color@8.1.1: 10164 + version "8.1.1" 10165 + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 10166 + integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 10167 dependencies: 10168 + has-flag "^4.0.0" 10169 10170 supports-color@^2.0.0: 10171 version "2.0.0" ··· 10212 unquote "~1.1.1" 10213 util.promisify "~1.0.0" 10214 10215 + table@^6.0.4: 10216 + version "6.6.0" 10217 + resolved "https://registry.yarnpkg.com/table/-/table-6.6.0.tgz#905654b79df98d9e9a973de1dd58682532c40e8e" 10218 + integrity sha512-iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg== 10219 dependencies: 10220 + ajv "^8.0.1" 10221 + lodash.clonedeep "^4.5.0" 10222 + lodash.flatten "^4.4.0" 10223 + lodash.truncate "^4.4.2" 10224 + slice-ansi "^4.0.0" 10225 + string-width "^4.2.0" 10226 + strip-ansi "^6.0.0" 10227 10228 tapable@^1.0.0, tapable@^1.1.3: 10229 version "1.1.3" 10230 resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2" 10231 integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA== 10232 10233 + tar-stream@^2.2.0: 10234 version "2.2.0" 10235 resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 10236 integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== ··· 10240 fs-constants "^1.0.0" 10241 inherits "^2.0.3" 10242 readable-stream "^3.1.1" 10243 + 10244 + tar@^2.0.0: 10245 + version "2.2.2" 10246 + resolved "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz#0ca8848562c7299b8b446ff6a4d60cdbb23edc40" 10247 + integrity sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA== 10248 + dependencies: 10249 + block-stream "*" 10250 + fstream "^1.0.12" 10251 + inherits "2" 10252 10253 tar@^4: 10254 version "4.4.13" ··· 10274 minizlib "^2.1.1" 10275 mkdirp "^1.0.3" 10276 yallist "^4.0.0" 10277 + 10278 + tdigest@^0.1.1: 10279 + version "0.1.1" 10280 + resolved "https://registry.yarnpkg.com/tdigest/-/tdigest-0.1.1.tgz#2e3cb2c39ea449e55d1e6cd91117accca4588021" 10281 + integrity sha1-Ljyyw56kSeVdHmzZEReszKRYgCE= 10282 + dependencies: 10283 + bintrees "1.0.1" 10284 10285 tedious@^6.6.0: 10286 version "6.7.0" ··· 10333 resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 10334 integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 10335 10336 through2@^2.0.0: 10337 version "2.0.5" 10338 resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" ··· 10341 readable-stream "~2.3.6" 10342 xtend "~4.0.1" 10343 10344 + through2@^3.0.1: 10345 + version "3.0.2" 10346 + resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz#99f88931cfc761ec7678b41d5d7336b5b6a07bf4" 10347 + integrity sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ== 10348 + dependencies: 10349 + inherits "^2.0.4" 10350 + readable-stream "2 || 3" 10351 10352 timers-browserify@^2.0.4: 10353 version "2.0.12" ··· 10356 dependencies: 10357 setimmediate "^1.0.4" 10358 10359 timsort@^0.3.0: 10360 version "0.3.0" 10361 resolved "https://registry.yarnpkg.com/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4" ··· 10365 version "2.1.0" 10366 resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423" 10367 integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q== 10368 10369 to-array@0.1.4: 10370 version "0.1.4" ··· 10444 resolved "https://registry.yarnpkg.com/toposort-class/-/toposort-class-1.0.1.tgz#7ffd1f78c8be28c3ba45cd4e1a3f5ee193bd9988" 10445 integrity sha1-f/0feMi+KMO6Rc1OGj9e4ZO9mYg= 10446 10447 + tough-cookie@^2.4.3, tough-cookie@~2.5.0: 10448 version "2.5.0" 10449 resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" 10450 integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== ··· 10452 psl "^1.1.28" 10453 punycode "^2.1.1" 10454 10455 trim-right@^1.0.1: 10456 version "1.0.1" 10457 resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" 10458 integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= 10459 10460 triple-beam@^1.2.0, triple-beam@^1.3.0: 10461 version "1.3.0" 10462 resolved "https://registry.yarnpkg.com/triple-beam/-/triple-beam-1.3.0.tgz#a595214c7298db8339eeeee083e4d10bd8cb8dd9" ··· 10487 minimist "^1.2.0" 10488 strip-bom "^3.0.0" 10489 10490 + tslib@^1.10.0, tslib@^1.9.2: 10491 version "1.14.1" 10492 resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" 10493 integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== 10494 10495 + tslib@^2.0.0, tslib@^2.0.3: 10496 + version "2.2.0" 10497 + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz#fb2c475977e35e241311ede2693cee1ec6698f5c" 10498 + integrity sha512-gS9GVHRU+RGn5KQM2rllAlR3dU6m7AcpJKdtH8gFvQiC4Otgk98XnmMU+nZenHt/+VhnBPWwgrJsyrdcw6i23w== 10499 10500 tty-browserify@0.0.0: 10501 version "0.0.0" ··· 10514 resolved "https://registry.yarnpkg.com/tunnel/-/tunnel-0.0.6.tgz#72f1314b34a5b192db012324df2cc587ca47f92c" 10515 integrity sha512-1h/Lnq9yajKY2PEbBadPXj3VxsDDu844OnaAo52UVmIzIvwwtBPIuNvkjuzBlTWpfJyUbG3ez0KSBibQkj4ojg== 10516 10517 + turndown@^7.0.0: 10518 + version "7.0.0" 10519 + resolved "https://registry.yarnpkg.com/turndown/-/turndown-7.0.0.tgz#19b2a6a2d1d700387a1e07665414e4af4fec5225" 10520 + integrity sha512-G1FfxfR0mUNMeGjszLYl3kxtopC4O9DRRiMlMDDVHvU1jaBkGFg4qxIyjIk2aiKLHyDyZvZyu4qBO2guuYBy3Q== 10521 dependencies: 10522 + domino "^2.1.6" 10523 10524 tweetnacl@^0.14.3, tweetnacl@~0.14.0: 10525 version "0.14.5" 10526 resolved "https://registry.yarnpkg.com/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64" 10527 integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q= 10528 10529 + type-check@^0.4.0, type-check@~0.4.0: 10530 + version "0.4.0" 10531 + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 10532 + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 10533 dependencies: 10534 + prelude-ls "^1.2.1" 10535 + 10536 + type-fest@^0.20.2: 10537 + version "0.20.2" 10538 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 10539 + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 10540 + 10541 + type-fest@^0.8.1: 10542 + version "0.8.1" 10543 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz#09e249ebde851d3b1e48d27c105444667f17b83d" 10544 + integrity sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA== 10545 10546 type-is@~1.6.17, type-is@~1.6.18: 10547 version "1.6.18" ··· 10551 media-typer "0.3.0" 10552 mime-types "~2.1.24" 10553 10554 typedarray-to-buffer@^3.1.5: 10555 version "3.1.5" 10556 resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" ··· 10569 integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA== 10570 10571 uglify-js@^3.1.4, uglify-js@^3.5.1: 10572 + version "3.13.5" 10573 + resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.5.tgz#5d71d6dbba64cf441f32929b1efce7365bb4f113" 10574 + integrity sha512-xtB8yEqIkn7zmOyS2zUNBsYCBRhDkvlNxMMY2smuJ/qA8NCHeQvKCF3i9Z4k8FJH4+PJvZRtMrPynfZ75+CSZw== 10575 10576 uid-safe@~2.1.5: 10577 version "2.1.5" ··· 10585 resolved "https://registry.yarnpkg.com/uid2/-/uid2-0.0.3.tgz#483126e11774df2f71b8b639dcd799c376162b82" 10586 integrity sha1-SDEm4Rd03y9xuLY53NeZw3YWK4I= 10587 10588 + umzug@^2.3.0: 10589 version "2.3.0" 10590 resolved "https://registry.yarnpkg.com/umzug/-/umzug-2.3.0.tgz#0ef42b62df54e216b05dcaf627830a6a8b84a184" 10591 integrity sha512-Z274K+e8goZK8QJxmbRPhl89HPO1K+ORFtm6rySPhFKfKc5GHhqdzD0SGhSWHkzoXasqJuItdhorSvY7/Cgflw== 10592 dependencies: 10593 bluebird "^3.7.2" 10594 10595 + unbox-primitive@^1.0.0: 10596 + version "1.0.1" 10597 + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz#085e215625ec3162574dc8859abee78a59b14471" 10598 + integrity sha512-tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw== 10599 + dependencies: 10600 + function-bind "^1.1.1" 10601 + has-bigints "^1.0.1" 10602 + has-symbols "^1.0.2" 10603 + which-boxed-primitive "^1.0.2" 10604 + 10605 underscore@1.11.x: 10606 version "1.11.0" 10607 resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.11.0.tgz#dd7c23a195db34267186044649870ff1bab5929e" 10608 integrity sha512-xY96SsN3NA461qIRKZ/+qox37YXPtSBswMGfiNptr+wrt6ds4HaMw23TP612fEyGekRE6LNRiLYr/aqbHXNedw== 10609 10610 "underscore@>= 1.3.1", underscore@^1.7.0: 10611 + version "1.13.1" 10612 + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz#0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1" 10613 + integrity sha512-hzSoAVtJF+3ZtiFX0VgfFPHEDRm7Y/QPjGyNo4TVdnDTdft3tr8hEkD25a1jC+TjTuE7tkHGKkhwCgs9dgBB2g== 10614 10615 underscore@~1.6.0: 10616 version "1.6.0" ··· 10622 resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.8.3.tgz#4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022" 10623 integrity sha1-Tz+1OxBuYJf8+ctBCfKl6b36UCI= 10624 10625 unified-args@^8.0.0: 10626 version "8.1.0" 10627 resolved "https://registry.yarnpkg.com/unified-args/-/unified-args-8.1.0.tgz#a27dbe996a49fbbf3d9f5c6a98008ab9b0ee6ae5" ··· 10637 unified-engine "^8.0.0" 10638 10639 unified-engine@^8.0.0: 10640 + version "8.1.0" 10641 + resolved "https://registry.yarnpkg.com/unified-engine/-/unified-engine-8.1.0.tgz#a846e11705fb8589d1250cd27500b56021d8a3e2" 10642 + integrity sha512-ptXTWUf9HZ2L9xto7tre+hSdSN7M9S0rypUpMAcFhiDYjrXLrND4If+8AZOtPFySKI/Zhfxf7GVAR34BqixDUA== 10643 dependencies: 10644 concat-stream "^2.0.0" 10645 debug "^4.0.0" ··· 10667 wrapped "^1.0.1" 10668 10669 unified-message-control@^3.0.0: 10670 + version "3.0.3" 10671 + resolved "https://registry.yarnpkg.com/unified-message-control/-/unified-message-control-3.0.3.tgz#d08c4564092a507668de71451a33c0d80e734bbd" 10672 + integrity sha512-oY5z2n8ugjpNHXOmcgrw0pQeJzavHS0VjPBP21tOcm7rc2C+5Q+kW9j5+gqtf8vfW/8sabbsK5+P+9QPwwEHDA== 10673 dependencies: 10674 unist-util-visit "^2.0.0" 10675 vfile-location "^3.0.0" 10676 10677 + unified@^9.1.0: 10678 + version "9.2.1" 10679 + resolved "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz#ae18d5674c114021bfdbdf73865ca60f410215a3" 10680 + integrity sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA== 10681 dependencies: 10682 bail "^1.0.0" 10683 extend "^3.0.0" ··· 10720 dependencies: 10721 imurmurhash "^0.1.4" 10722 10723 + unist-util-generated@^1.0.0, unist-util-generated@^1.1.0: 10724 version "1.1.6" 10725 resolved "https://registry.yarnpkg.com/unist-util-generated/-/unist-util-generated-1.1.6.tgz#5ab51f689e2992a472beb1b35f2ce7ff2f324d4b" 10726 integrity sha512-cln2Mm1/CZzN5ttGK7vkoGw+RZ8VcUH6BtGbq98DDtRGquAAOXig1mrBQYelOwMXYS8rK+vZDyyojSjp7JX+Lg== ··· 10733 is-empty "^1.0.0" 10734 10735 unist-util-is@^4.0.0: 10736 + version "4.1.0" 10737 + resolved "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz#976e5f462a7a5de73d94b706bac1b90671b57797" 10738 + integrity sha512-ZOQSsnce92GrxSqlnEEseX0gi7GH9zTJZ0p9dtu87WRb/37mMPO2Ilx1s/t9vBHrFhbgweUwb+t7cIn5dxPhZg== 10739 10740 unist-util-position@^3.0.0: 10741 version "3.1.0" 10742 resolved "https://registry.yarnpkg.com/unist-util-position/-/unist-util-position-3.1.0.tgz#1c42ee6301f8d52f47d14f62bbdb796571fa2d47" 10743 integrity sha512-w+PkwCbYSFw8vpgWD0v7zRCl1FpY3fjDSQ3/N/wNd9Ffa4gPi8+4keqt99N3XW6F99t/mUzp2xAhNmfKWp95QA== 10744 10745 unist-util-stringify-position@^2.0.0: 10746 version "2.0.3" 10747 resolved "https://registry.yarnpkg.com/unist-util-stringify-position/-/unist-util-stringify-position-2.0.3.tgz#cce3bfa1cdf85ba7375d1d5b17bdc4cada9bd9da" ··· 10765 "@types/unist" "^2.0.0" 10766 unist-util-is "^4.0.0" 10767 unist-util-visit-parents "^3.0.0" 10768 10769 unpipe@1.0.0, unpipe@~1.0.0: 10770 version "1.0.0" ··· 10806 resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" 10807 integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= 10808 10809 + url-loader@4.1.1: 10810 + version "4.1.1" 10811 + resolved "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz#28505e905cae158cf07c92ca622d7f237e70a4e2" 10812 + integrity sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA== 10813 dependencies: 10814 + loader-utils "^2.0.0" 10815 + mime-types "^2.1.27" 10816 + schema-utils "^3.0.0" 10817 10818 url@0.10.3: 10819 version "0.10.3" ··· 10842 integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA= 10843 10844 utf-8-validate@^5.0.1: 10845 + version "5.0.5" 10846 + resolved "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.5.tgz#dd32c2e82c72002dc9f02eb67ba6761f43456ca1" 10847 + integrity sha512-+pnxRYsS/axEpkrrEpzYfNZGXp0IjC/9RIxwM5gntY4Koi8SHmUGSfxfWqxZdRxrtaoVstuOzUp/rbs3JSPELQ== 10848 dependencies: 10849 node-gyp-build "^4.2.0" 10850 ··· 10905 resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee" 10906 integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A== 10907 10908 + uuid@^8.0.0: 10909 + version "8.3.2" 10910 + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2" 10911 + integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 10912 + 10913 + v8-compile-cache@^2.0.3, v8-compile-cache@^2.2.0: 10914 + version "2.3.0" 10915 + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 10916 + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 10917 10918 v8flags@^2.1.1: 10919 version "2.1.1" ··· 10930 spdx-correct "^3.0.0" 10931 spdx-expression-parse "^3.0.0" 10932 10933 + validator@^10.11.0: 10934 version "10.11.0" 10935 resolved "https://registry.yarnpkg.com/validator/-/validator-10.11.0.tgz#003108ea6e9a9874d31ccc9e5006856ccd76b228" 10936 integrity sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw== 10937 + 10938 + validator@^13.0.0: 10939 + version "13.6.0" 10940 + resolved "https://registry.yarnpkg.com/validator/-/validator-13.6.0.tgz#1e71899c14cdc7b2068463cb24c1cc16f6ec7059" 10941 + integrity sha512-gVgKbdbHgtxpRyR8K0O6oFZPhhB5tT1jeEHZR0Znr9Svg03U0+r9DXWMrnRAB+HtCStDQKlaIZm42tVsVjqtjg== 10942 10943 validator@~9.4.1: 10944 version "9.4.1" ··· 10950 resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc" 10951 integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw= 10952 10953 + vasync@^2.2.0: 10954 + version "2.2.0" 10955 + resolved "https://registry.yarnpkg.com/vasync/-/vasync-2.2.0.tgz#cfde751860a15822db3b132bc59b116a4adaf01b" 10956 + integrity sha1-z951GGChWCLbOxMrxZsRakra8Bs= 10957 dependencies: 10958 + verror "1.10.0" 10959 10960 velocity-animate@^1.4.0: 10961 version "1.5.2" ··· 10975 assert-plus "^1.0.0" 10976 core-util-is "1.0.2" 10977 extsprintf "^1.2.0" 10978 10979 vfile-location@^3.0.0: 10980 version "3.2.0" ··· 11021 unist-util-stringify-position "^2.0.0" 11022 vfile-message "^2.0.0" 11023 11024 + visibilityjs@^2.0.0: 11025 + version "2.0.2" 11026 + resolved "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-2.0.2.tgz#d7c466e922024bb6c413d2136d5567e71f5fdc2f" 11027 + integrity sha512-y5sN5oGvuXXcK6s8WupOymRcqEss7kusojpScRqkT+cTCIFjul+06uSMDPMByN9DIBv/sUUnvV8BplKjqelAfw== 11028 11029 viz.js@^1.7.0: 11030 version "1.8.2" ··· 11036 resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.2.tgz#78641c488b8e6ca91a75f511e7a3b32a86e5dda0" 11037 integrity sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ== 11038 11039 watchpack-chokidar2@^2.0.1: 11040 version "2.0.1" 11041 resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz#38500072ee6ece66f3769936950ea1771be1c957" ··· 11054 chokidar "^3.4.1" 11055 watchpack-chokidar2 "^2.0.1" 11056 11057 webfontloader@~1.6.x: 11058 version "1.6.28" 11059 resolved "https://registry.yarnpkg.com/webfontloader/-/webfontloader-1.6.28.tgz#db786129253cb6e8eae54c2fb05f870af6675bae" 11060 integrity sha1-23hhKSU8tujq5UwvsF+HCvZnW64= 11061 11062 + webpack-cli@4.6.0: 11063 + version "4.6.0" 11064 + resolved "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.6.0.tgz#27ae86bfaec0cf393fcfd58abdc5a229ad32fd16" 11065 + integrity sha512-9YV+qTcGMjQFiY7Nb1kmnupvb1x40lfpj8pwdO/bom+sQiP4OBMKjHq29YQrlDWDPZO9r/qWaRRywKaRDKqBTA== 11066 dependencies: 11067 + "@discoveryjs/json-ext" "^0.5.0" 11068 + "@webpack-cli/configtest" "^1.0.2" 11069 + "@webpack-cli/info" "^1.2.3" 11070 + "@webpack-cli/serve" "^1.3.1" 11071 + colorette "^1.2.1" 11072 + commander "^7.0.0" 11073 + enquirer "^2.3.6" 11074 + execa "^5.0.0" 11075 + fastest-levenshtein "^1.0.12" 11076 + import-local "^3.0.2" 11077 + interpret "^2.2.0" 11078 + rechoir "^0.7.0" 11079 + v8-compile-cache "^2.2.0" 11080 + webpack-merge "^5.7.3" 11081 11082 + webpack-merge@5.7.3, webpack-merge@^5.7.3: 11083 + version "5.7.3" 11084 + resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz#2a0754e1877a25a8bbab3d2475ca70a052708213" 11085 + integrity sha512-6/JUQv0ELQ1igjGDzHkXbVDRxkfA57Zw7PfiupdLFJYrgFqY5ZP8xxbpp2lU3EPwYx89ht5Z/aDkD40hFCm5AA== 11086 dependencies: 11087 + clone-deep "^4.0.1" 11088 + wildcard "^2.0.0" 11089 11090 webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack-sources@^1.4.1, webpack-sources@^1.4.3: 11091 version "1.4.3" ··· 11095 source-list-map "^2.0.0" 11096 source-map "~0.6.1" 11097 11098 + webpack@4.46.0: 11099 + version "4.46.0" 11100 + resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" 11101 + integrity sha512-6jJuJjg8znb/xRItk7bkT0+Q7AHCYjjFnvKIWQPkNIOyRqoCGvkOs0ipeQzrqz4l5FtN5ZI/ukEHroeX/o1/5Q== 11102 dependencies: 11103 "@webassemblyjs/ast" "1.9.0" 11104 "@webassemblyjs/helper-module-context" "1.9.0" ··· 11108 ajv "^6.10.2" 11109 ajv-keywords "^3.4.1" 11110 chrome-trace-event "^1.0.2" 11111 + enhanced-resolve "^4.5.0" 11112 eslint-scope "^4.0.3" 11113 json-parse-better-errors "^1.0.2" 11114 loader-runner "^2.4.0" ··· 11124 watchpack "^1.7.4" 11125 webpack-sources "^1.4.1" 11126 11127 + which-boxed-primitive@^1.0.1, which-boxed-primitive@^1.0.2: 11128 + version "1.0.2" 11129 + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" 11130 + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== 11131 dependencies: 11132 + is-bigint "^1.0.1" 11133 + is-boolean-object "^1.1.0" 11134 + is-number-object "^1.0.4" 11135 + is-string "^1.0.5" 11136 + is-symbol "^1.0.3" 11137 11138 + which-collection@^1.0.1: 11139 + version "1.0.1" 11140 + resolved "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz#70eab71ebbbd2aefaf32f917082fc62cdcb70906" 11141 + integrity sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A== 11142 dependencies: 11143 + is-map "^2.0.1" 11144 + is-set "^2.0.1" 11145 + is-weakmap "^2.0.1" 11146 + is-weakset "^2.0.1" 11147 11148 + which-typed-array@^1.1.2: 11149 + version "1.1.4" 11150 + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz#8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff" 11151 + integrity sha512-49E0SpUe90cjpoc7BOJwyPHRqSAd12c10Qm2amdEZrJPCY2NDxaW01zHITrem+rnETY3dwrbH3UUrUwagfCYDA== 11152 dependencies: 11153 + available-typed-arrays "^1.0.2" 11154 + call-bind "^1.0.0" 11155 + es-abstract "^1.18.0-next.1" 11156 + foreach "^2.0.5" 11157 + function-bind "^1.1.1" 11158 + has-symbols "^1.0.1" 11159 + is-typed-array "^1.1.3" 11160 11161 + which@1: 11162 version "1.3.1" 11163 resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" 11164 integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== 11165 dependencies: 11166 isexe "^2.0.0" 11167 11168 + which@2.0.2, which@^2.0.1: 11169 + version "2.0.2" 11170 + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 11171 + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 11172 + dependencies: 11173 + isexe "^2.0.0" 11174 + 11175 + wide-align@1.1.3, wide-align@^1.1.0: 11176 version "1.1.3" 11177 resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 11178 integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 11179 dependencies: 11180 string-width "^1.0.2 || 2" 11181 + 11182 + wildcard@^2.0.0: 11183 + version "2.0.0" 11184 + resolved "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz#a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec" 11185 + integrity sha512-JcKqAHLPxcdb9KM49dufGXn2x3ssnfjbcaQdLlfZsL9rH9wgDQjUtDxbo8NE0F6SFvydeu1VhZe7hZuHsB2/pw== 11186 11187 winston-transport@^4.4.0: 11188 version "4.4.0" ··· 11214 dependencies: 11215 "@types/node" "*" 11216 11217 + word-wrap@^1.2.3: 11218 version "1.2.3" 11219 resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 11220 integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== ··· 11231 dependencies: 11232 errno "~0.1.7" 11233 11234 + workerpool@6.1.0: 11235 + version "6.1.0" 11236 + resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz#a8e038b4c94569596852de7a8ea4228eefdeb37b" 11237 + integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg== 11238 + 11239 + wrap-ansi@^7.0.0: 11240 + version "7.0.0" 11241 + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 11242 + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 11243 dependencies: 11244 + ansi-styles "^4.0.0" 11245 + string-width "^4.1.0" 11246 + strip-ansi "^6.0.0" 11247 11248 wrapped@^1.0.1: 11249 version "1.0.1" ··· 11258 resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 11259 integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 11260 11261 + ws@^7.4.4, ws@~7.4.2: 11262 + version "7.4.5" 11263 + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" 11264 + integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== 11265 11266 wurl@^2.5.3: 11267 version "2.5.4" 11268 resolved "https://registry.yarnpkg.com/wurl/-/wurl-2.5.4.tgz#6af35a6c623296c4a0c607c4651d01b8f4e3fdec" 11269 integrity sha512-Vuo550m5YbqRcM/69zz3jVNsCUvFTWLRYQcYvnqNWQ4d0Bjg7aoaofbcsPTe4rM9A2/4xjd8uIf9viIUV9EMXQ== 11270 11271 + xml-crypto@^2.1.1: 11272 + version "2.1.2" 11273 + resolved "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.1.2.tgz#501506d42e466f6cd908c5a03182217231b4e4b8" 11274 + integrity sha512-DBhZXtBjENtLwJmeJhLUBwUm9YWNjCRvAx6ESP4VJyM9PDuKqZu2Fp5Y5HKqcdJT7vV7eI25Z4UBMezji6QloQ== 11275 dependencies: 11276 + xmldom "^0.6.0" 11277 + xpath "0.0.32" 11278 11279 + xml-encryption@^1.2.3: 11280 + version "1.2.4" 11281 + resolved "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-1.2.4.tgz#767d13f9ff2f979ff5657b93bd72aa729d34b66c" 11282 + integrity sha512-+4aSBIv/lwmv5PntfYsZyelOnCcyDmCt/MNxXUukRGlcWW8DObJ26obbVX3iXYRdqkLqbv3AKk8ntNCGKIq/UQ== 11283 dependencies: 11284 escape-html "^1.0.3" 11285 node-forge "^0.10.0" 11286 + xmldom "~0.6.0" 11287 + xpath "0.0.32" 11288 11289 xml2js@0.2.8: 11290 version "0.2.8" ··· 11301 sax ">=0.6.0" 11302 xmlbuilder "~9.0.1" 11303 11304 + xml2js@^0.4.15, xml2js@^0.4.19, xml2js@^0.4.23: 11305 version "0.4.23" 11306 resolved "https://registry.yarnpkg.com/xml2js/-/xml2js-0.4.23.tgz#a0c69516752421eb2ac758ee4d4ccf58843eac66" 11307 integrity sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug== ··· 11314 resolved "https://registry.yarnpkg.com/xml/-/xml-1.0.1.tgz#78ba72020029c5bc87b8a81a3cfcd74b4a2fc1e5" 11315 integrity sha1-eLpyAgApxbyHuKgaPPzXS0ovweU= 11316 11317 + xmlbuilder@^15.1.1: 11318 + version "15.1.1" 11319 + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz#9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5" 11320 + integrity sha512-yMqGBqtXyeN1e3TGYvgNgDVZ3j84W4cwkOXQswghol6APgZWaff9lnbvN7MHYJOiXsvGPXtjTYJEiC9J2wv9Eg== 11321 11322 xmlbuilder@^9.0.7, xmlbuilder@~9.0.1: 11323 version "9.0.7" 11324 resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-9.0.7.tgz#132ee63d2ec5565c557e20f4c22df9aca686b10d" 11325 integrity sha1-Ey7mPS7FVlxVfiD0wi35rKaGsQ0= 11326 11327 + xmlbuilder@~11.0.0: 11328 + version "11.0.1" 11329 + resolved "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz#be9bae1c8a046e76b31127726347d0ad7002beb3" 11330 + integrity sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA== 11331 11332 + xmldom@0.1.x: 11333 version "0.1.31" 11334 resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" 11335 integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== 11336 11337 + xmldom@0.5.x: 11338 + version "0.5.0" 11339 + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz#193cb96b84aa3486127ea6272c4596354cb4962e" 11340 + integrity sha512-Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA== 11341 + 11342 + "xmldom@>= 0.1.x", xmldom@^0.6.0, xmldom@~0.6.0: 11343 + version "0.6.0" 11344 + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.6.0.tgz#43a96ecb8beece991cef382c08397d82d4d0c46f" 11345 + integrity sha512-iAcin401y58LckRZ0TkI4k0VSM1Qg0KGSc3i8rU+xrxe19A/BN1zHyVSJY7uoutVlaTSzYyk/v5AmkewAP7jtg== 11346 11347 xmlhttprequest-ssl@~1.5.4: 11348 version "1.5.5" ··· 11359 resolved "https://registry.yarnpkg.com/xpath.js/-/xpath.js-1.1.0.tgz#3816a44ed4bb352091083d002a383dd5104a5ff1" 11360 integrity sha512-jg+qkfS4K8E7965sqaUl8mRngXiKb3WZGfONgE18pr03FUQiuSV6G+Ej4tS55B+rIQSFEIw3phdVAQ4pPqNWfQ== 11361 11362 + xpath@0.0.32: 11363 + version "0.0.32" 11364 + resolved "https://registry.yarnpkg.com/xpath/-/xpath-0.0.32.tgz#1b73d3351af736e17ec078d6da4b8175405c48af" 11365 + integrity sha512-rxMJhSIoiO8vXcWvSifKqhvV96GjiD5wYb8/QHdoRyQvraTpp4IEv944nhGausZZ3u7dhQXteZuZbaqfpB7uYw== 11366 11367 xss@^1.0.3: 11368 version "1.0.8" ··· 11372 commander "^2.20.3" 11373 cssfilter "0.0.10" 11374 11375 + xtend@^4.0.0, xtend@~4.0.1: 11376 version "4.0.2" 11377 resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 11378 integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== ··· 11385 xmldom "0.1.x" 11386 11387 y18n@^4.0.0: 11388 + version "4.0.3" 11389 + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" 11390 + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 11391 + 11392 + y18n@^5.0.5: 11393 + version "5.0.8" 11394 + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 11395 + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 11396 11397 yallist@^2.1.2: 11398 version "2.1.2" ··· 11409 resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 11410 integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 11411 11412 + yargs-parser@20.2.4: 11413 + version "20.2.4" 11414 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 11415 + integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 11416 + 11417 + yargs-parser@^20.2.2: 11418 + version "20.2.7" 11419 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" 11420 + integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== 11421 + 11422 + yargs-unparser@2.0.0: 11423 + version "2.0.0" 11424 + resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" 11425 + integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== 11426 dependencies: 11427 + camelcase "^6.0.0" 11428 + decamelize "^4.0.0" 11429 + flat "^5.0.2" 11430 + is-plain-obj "^2.1.0" 11431 11432 + yargs@16.2.0: 11433 + version "16.2.0" 11434 + resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 11435 + integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 11436 dependencies: 11437 + cliui "^7.0.2" 11438 + escalade "^3.1.1" 11439 + get-caller-file "^2.0.5" 11440 require-directory "^2.1.1" 11441 + string-width "^4.2.0" 11442 + y18n "^5.0.5" 11443 + yargs-parser "^20.2.2" 11444 11445 yeast@0.1.2: 11446 version "0.1.2" ··· 11452 resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 11453 integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 11454 11455 + zip-stream@^4.1.0: 11456 + version "4.1.0" 11457 + resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz#51dd326571544e36aa3f756430b313576dc8fc79" 11458 + integrity sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A== 11459 dependencies: 11460 archiver-utils "^2.1.0" 11461 + compress-commons "^4.1.0" 11462 readable-stream "^3.6.0" 11463 + 11464 + zwitch@^1.0.0: 11465 + version "1.0.5" 11466 + resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" 11467 + integrity sha512-V50KMwwzqJV0NpZIZFwfOD5/lyny3WlSzRiXgA0G7VUnRlqttta1L6UQIHzd6EuBY/cHGfwTIck7w1yH6Q5zUw==
+1758 -2102
pkgs/servers/web-apps/hedgedoc/yarn.nix
··· 2 offline_cache = linkFarm "offline" packages; 3 packages = [ 4 { 5 name = "_azure_ms_rest_azure_env___ms_rest_azure_env_1.1.2.tgz"; 6 path = fetchurl { 7 name = "_azure_ms_rest_azure_env___ms_rest_azure_env_1.1.2.tgz"; ··· 10 }; 11 } 12 { 13 - name = "_azure_ms_rest_js___ms_rest_js_1.9.1.tgz"; 14 path = fetchurl { 15 - name = "_azure_ms_rest_js___ms_rest_js_1.9.1.tgz"; 16 - url = "https://registry.yarnpkg.com/@azure/ms-rest-js/-/ms-rest-js-1.9.1.tgz"; 17 - sha1 = "93aef111b00bfdcc470a6bcb4520a13b36f21788"; 18 }; 19 } 20 { ··· 34 }; 35 } 36 { 37 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; 38 path = fetchurl { 39 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; 40 - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 41 - sha1 = "c9a1f021917dcb5ccf0d4e453e399022981fc9ed"; 42 }; 43 } 44 { 45 - name = "_babel_highlight___highlight_7.10.4.tgz"; 46 path = fetchurl { 47 - name = "_babel_highlight___highlight_7.10.4.tgz"; 48 - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.10.4.tgz"; 49 - sha1 = "7d1bdfd65753538fabe6c38596cdb76d9ac60143"; 50 }; 51 } 52 { ··· 66 }; 67 } 68 { 69 name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; 70 path = fetchurl { 71 name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; ··· 90 }; 91 } 92 { 93 - name = "_npmcli_move_file___move_file_1.1.0.tgz"; 94 path = fetchurl { 95 - name = "_npmcli_move_file___move_file_1.1.0.tgz"; 96 - url = "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.0.tgz"; 97 - sha1 = "4ef8a53d727b9e43facf35404caf55ebf92cfec8"; 98 }; 99 } 100 { ··· 122 }; 123 } 124 { 125 name = "_types_anymatch___anymatch_1.3.1.tgz"; 126 path = fetchurl { 127 name = "_types_anymatch___anymatch_1.3.1.tgz"; ··· 146 }; 147 } 148 { 149 name = "_types_debug___debug_4.1.5.tgz"; 150 path = fetchurl { 151 name = "_types_debug___debug_4.1.5.tgz"; ··· 154 }; 155 } 156 { 157 - name = "_types_express_serve_static_core___express_serve_static_core_4.17.18.tgz"; 158 path = fetchurl { 159 - name = "_types_express_serve_static_core___express_serve_static_core_4.17.18.tgz"; 160 - url = "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.18.tgz"; 161 - sha1 = "8371e260f40e0e1ca0c116a9afcd9426fa094c40"; 162 }; 163 } 164 { ··· 186 }; 187 } 188 { 189 - name = "_types_json_schema___json_schema_7.0.6.tgz"; 190 path = fetchurl { 191 - name = "_types_json_schema___json_schema_7.0.6.tgz"; 192 - url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz"; 193 - sha1 = "f4c7ec43e81b319a9815115031709f26987891f0"; 194 }; 195 } 196 { ··· 202 }; 203 } 204 { 205 - name = "_types_ldapjs___ldapjs_1.0.9.tgz"; 206 path = fetchurl { 207 - name = "_types_ldapjs___ldapjs_1.0.9.tgz"; 208 - url = "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.9.tgz"; 209 - sha1 = "1224192d14cc5ab5218fcea72ebb04489c52cb95"; 210 }; 211 } 212 { 213 - name = "_types_mime___mime_2.0.3.tgz"; 214 path = fetchurl { 215 - name = "_types_mime___mime_2.0.3.tgz"; 216 - url = "https://registry.yarnpkg.com/@types/mime/-/mime-2.0.3.tgz"; 217 - sha1 = "c893b73721db73699943bfc3653b1deb7faa4a3a"; 218 }; 219 } 220 { 221 - name = "_types_node___node_14.14.21.tgz"; 222 path = fetchurl { 223 - name = "_types_node___node_14.14.21.tgz"; 224 - url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.21.tgz"; 225 - sha1 = "d934aacc22424fe9622ebf6857370c052eae464e"; 226 }; 227 } 228 { 229 - name = "_types_node___node_12.19.14.tgz"; 230 path = fetchurl { 231 - name = "_types_node___node_12.19.14.tgz"; 232 - url = "https://registry.yarnpkg.com/@types/node/-/node-12.19.14.tgz"; 233 - sha1 = "59e5029a3c2aea34f68b717955381692fd47cafb"; 234 }; 235 } 236 { ··· 242 }; 243 } 244 { 245 - name = "_types_passport___passport_1.0.5.tgz"; 246 - path = fetchurl { 247 - name = "_types_passport___passport_1.0.5.tgz"; 248 - url = "https://registry.yarnpkg.com/@types/passport/-/passport-1.0.5.tgz"; 249 - sha1 = "1ff54ec3e30fa6480c5e8b8de949c6dc40ddfa2a"; 250 - }; 251 - } 252 - { 253 name = "_types_q___q_1.5.4.tgz"; 254 path = fetchurl { 255 name = "_types_q___q_1.5.4.tgz"; ··· 258 }; 259 } 260 { 261 - name = "_types_qs___qs_6.9.5.tgz"; 262 path = fetchurl { 263 - name = "_types_qs___qs_6.9.5.tgz"; 264 - url = "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.5.tgz"; 265 - sha1 = "434711bdd49eb5ee69d90c1d67c354a9a8ecb18b"; 266 }; 267 } 268 { ··· 282 }; 283 } 284 { 285 - name = "_types_serve_static___serve_static_1.13.8.tgz"; 286 path = fetchurl { 287 - name = "_types_serve_static___serve_static_1.13.8.tgz"; 288 - url = "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.8.tgz"; 289 - sha1 = "851129d434433c7082148574ffec263d58309c46"; 290 }; 291 } 292 { ··· 298 }; 299 } 300 { 301 - name = "_types_tapable___tapable_1.0.6.tgz"; 302 path = fetchurl { 303 - name = "_types_tapable___tapable_1.0.6.tgz"; 304 - url = "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.6.tgz"; 305 - sha1 = "a9ca4b70a18b270ccb2bc0aaafefd1d486b7ea74"; 306 }; 307 } 308 { 309 - name = "_types_tunnel___tunnel_0.0.0.tgz"; 310 path = fetchurl { 311 - name = "_types_tunnel___tunnel_0.0.0.tgz"; 312 - url = "https://registry.yarnpkg.com/@types/tunnel/-/tunnel-0.0.0.tgz"; 313 - sha1 = "c2a42943ee63c90652a5557b8c4e56cda77f944e"; 314 - }; 315 - } 316 - { 317 - name = "_types_uglify_js___uglify_js_3.11.1.tgz"; 318 - path = fetchurl { 319 - name = "_types_uglify_js___uglify_js_3.11.1.tgz"; 320 - url = "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.11.1.tgz"; 321 - sha1 = "97ff30e61a0aa6876c270b5f538737e2d6ab8ceb"; 322 }; 323 } 324 { ··· 338 }; 339 } 340 { 341 - name = "_types_webpack___webpack_4.41.26.tgz"; 342 path = fetchurl { 343 - name = "_types_webpack___webpack_4.41.26.tgz"; 344 - url = "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.26.tgz"; 345 - sha1 = "27a30d7d531e16489f9c7607c747be6bc1a459ef"; 346 }; 347 } 348 { ··· 490 }; 491 } 492 { 493 name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; 494 path = fetchurl { 495 name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; ··· 530 }; 531 } 532 { 533 - name = "abab___abab_2.0.5.tgz"; 534 path = fetchurl { 535 - name = "abab___abab_2.0.5.tgz"; 536 - url = "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz"; 537 - sha1 = "c0b678fb32d60fc1219c784d6a826fe385aeb79a"; 538 }; 539 } 540 { 541 - name = "abbrev___abbrev_1.1.1.tgz"; 542 path = fetchurl { 543 - name = "abbrev___abbrev_1.1.1.tgz"; 544 - url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 545 - sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; 546 }; 547 } 548 { ··· 554 }; 555 } 556 { 557 - name = "acorn_globals___acorn_globals_4.3.4.tgz"; 558 - path = fetchurl { 559 - name = "acorn_globals___acorn_globals_4.3.4.tgz"; 560 - url = "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.4.tgz"; 561 - sha1 = "9fa1926addc11c97308c4e66d7add0d40c3272e7"; 562 - }; 563 - } 564 - { 565 name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 566 path = fetchurl { 567 name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; ··· 570 }; 571 } 572 { 573 - name = "acorn_walk___acorn_walk_6.2.0.tgz"; 574 - path = fetchurl { 575 - name = "acorn_walk___acorn_walk_6.2.0.tgz"; 576 - url = "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz"; 577 - sha1 = "123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"; 578 - }; 579 - } 580 - { 581 - name = "acorn___acorn_5.7.4.tgz"; 582 - path = fetchurl { 583 - name = "acorn___acorn_5.7.4.tgz"; 584 - url = "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz"; 585 - sha1 = "3e8d8a9947d0599a1796d10225d7432f4a4acf5e"; 586 - }; 587 - } 588 - { 589 name = "acorn___acorn_6.4.2.tgz"; 590 path = fetchurl { 591 name = "acorn___acorn_6.4.2.tgz"; ··· 594 }; 595 } 596 { 597 name = "adal_node___adal_node_0.1.28.tgz"; 598 path = fetchurl { 599 name = "adal_node___adal_node_0.1.28.tgz"; ··· 642 }; 643 } 644 { 645 name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; 646 path = fetchurl { 647 name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; ··· 650 }; 651 } 652 { 653 - name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 654 path = fetchurl { 655 - name = "ansi_escapes___ansi_escapes_3.2.0.tgz"; 656 - url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz"; 657 - sha1 = "8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"; 658 }; 659 } 660 { ··· 671 name = "ansi_regex___ansi_regex_3.0.0.tgz"; 672 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; 673 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 674 - }; 675 - } 676 - { 677 - name = "ansi_regex___ansi_regex_4.1.0.tgz"; 678 - path = fetchurl { 679 - name = "ansi_regex___ansi_regex_4.1.0.tgz"; 680 - url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-4.1.0.tgz"; 681 - sha1 = "8b9f8f08cf1acb843756a839ca8c7e3168c51997"; 682 }; 683 } 684 { ··· 746 }; 747 } 748 { 749 - name = "anymatch___anymatch_3.1.1.tgz"; 750 path = fetchurl { 751 - name = "anymatch___anymatch_3.1.1.tgz"; 752 - url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz"; 753 - sha1 = "c55ecf02185e2469259399310c173ce31233b142"; 754 }; 755 } 756 { ··· 770 }; 771 } 772 { 773 - name = "archiver___archiver_5.2.0.tgz"; 774 path = fetchurl { 775 - name = "archiver___archiver_5.2.0.tgz"; 776 - url = "https://registry.yarnpkg.com/archiver/-/archiver-5.2.0.tgz"; 777 - sha1 = "25aa1b3d9febf7aec5b0f296e77e69960c26db94"; 778 }; 779 } 780 { ··· 794 }; 795 } 796 { 797 name = "arr_diff___arr_diff_2.0.0.tgz"; 798 path = fetchurl { 799 name = "arr_diff___arr_diff_2.0.0.tgz"; ··· 826 }; 827 } 828 { 829 - name = "array_equal___array_equal_1.0.0.tgz"; 830 path = fetchurl { 831 - name = "array_equal___array_equal_1.0.0.tgz"; 832 - url = "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz"; 833 - sha1 = "8c2a5ef2472fd9ea742b04c77a75093ba2757c93"; 834 }; 835 } 836 { ··· 842 }; 843 } 844 { 845 - name = "array_includes___array_includes_3.1.2.tgz"; 846 path = fetchurl { 847 - name = "array_includes___array_includes_3.1.2.tgz"; 848 - url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.2.tgz"; 849 - sha1 = "a8db03e0b88c8c6aeddc49cb132f9bcab4ebf9c8"; 850 }; 851 } 852 { ··· 890 }; 891 } 892 { 893 - name = "asap___asap_2.0.6.tgz"; 894 - path = fetchurl { 895 - name = "asap___asap_2.0.6.tgz"; 896 - url = "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz"; 897 - sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 898 - }; 899 - } 900 - { 901 name = "asn1.js___asn1.js_5.4.1.tgz"; 902 path = fetchurl { 903 name = "asn1.js___asn1.js_5.4.1.tgz"; ··· 906 }; 907 } 908 { 909 - name = "asn1___asn1_0.2.3.tgz"; 910 - path = fetchurl { 911 - name = "asn1___asn1_0.2.3.tgz"; 912 - url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.3.tgz"; 913 - sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86"; 914 - }; 915 - } 916 - { 917 name = "asn1___asn1_0.2.4.tgz"; 918 path = fetchurl { 919 name = "asn1___asn1_0.2.4.tgz"; 920 url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; 921 sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; 922 - }; 923 - } 924 - { 925 - name = "assert_plus___assert_plus_0.1.5.tgz"; 926 - path = fetchurl { 927 - name = "assert_plus___assert_plus_0.1.5.tgz"; 928 - url = "https://registry.yarnpkg.com/assert-plus/-/assert-plus-0.1.5.tgz"; 929 - sha1 = "ee74009413002d84cec7219c6ac811812e723160"; 930 }; 931 } 932 { ··· 954 }; 955 } 956 { 957 - name = "astral_regex___astral_regex_1.0.0.tgz"; 958 path = fetchurl { 959 - name = "astral_regex___astral_regex_1.0.0.tgz"; 960 - url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz"; 961 - sha1 = "6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"; 962 }; 963 } 964 { ··· 970 }; 971 } 972 { 973 - name = "async_limiter___async_limiter_1.0.1.tgz"; 974 path = fetchurl { 975 - name = "async_limiter___async_limiter_1.0.1.tgz"; 976 - url = "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.1.tgz"; 977 - sha1 = "dd379e94f0db8310b08291f9d64c3209766617fd"; 978 }; 979 } 980 { ··· 994 }; 995 } 996 { 997 - name = "async___async_2.6.3.tgz"; 998 - path = fetchurl { 999 - name = "async___async_2.6.3.tgz"; 1000 - url = "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz"; 1001 - sha1 = "d72625e2344a3656e3a3ad4fa749fa83299d82ff"; 1002 - }; 1003 - } 1004 - { 1005 name = "asynckit___asynckit_0.4.0.tgz"; 1006 path = fetchurl { 1007 name = "asynckit___asynckit_0.4.0.tgz"; ··· 1018 }; 1019 } 1020 { 1021 - name = "aws_sdk___aws_sdk_2.828.0.tgz"; 1022 path = fetchurl { 1023 - name = "aws_sdk___aws_sdk_2.828.0.tgz"; 1024 - url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.828.0.tgz"; 1025 - sha1 = "6aa599c3582f219568f41fb287eb65753e4a9234"; 1026 }; 1027 } 1028 { ··· 1538 }; 1539 } 1540 { 1541 - name = "balanced_match___balanced_match_1.0.0.tgz"; 1542 path = fetchurl { 1543 - name = "balanced_match___balanced_match_1.0.0.tgz"; 1544 - url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 1545 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 1546 }; 1547 } 1548 { ··· 1642 }; 1643 } 1644 { 1645 name = "bl___bl_3.0.1.tgz"; 1646 path = fetchurl { 1647 name = "bl___bl_3.0.1.tgz"; ··· 1650 }; 1651 } 1652 { 1653 - name = "bl___bl_4.0.3.tgz"; 1654 path = fetchurl { 1655 - name = "bl___bl_4.0.3.tgz"; 1656 - url = "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz"; 1657 - sha1 = "12d6287adc29080e22a705e5764b2a9522cdc489"; 1658 }; 1659 } 1660 { ··· 1666 }; 1667 } 1668 { 1669 - name = "block_stream2___block_stream2_1.1.0.tgz"; 1670 path = fetchurl { 1671 - name = "block_stream2___block_stream2_1.1.0.tgz"; 1672 - url = "https://registry.yarnpkg.com/block-stream2/-/block-stream2-1.1.0.tgz"; 1673 - sha1 = "c738e3a91ba977ebb5e1fef431e13ca11d8639e2"; 1674 }; 1675 } 1676 { ··· 1682 }; 1683 } 1684 { 1685 - name = "bn.js___bn.js_4.11.9.tgz"; 1686 path = fetchurl { 1687 - name = "bn.js___bn.js_4.11.9.tgz"; 1688 - url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.9.tgz"; 1689 - sha1 = "26d556829458f9d1e81fc48952493d0ba3507828"; 1690 }; 1691 } 1692 { 1693 - name = "bn.js___bn.js_5.1.3.tgz"; 1694 path = fetchurl { 1695 - name = "bn.js___bn.js_5.1.3.tgz"; 1696 - url = "https://registry.yarnpkg.com/bn.js/-/bn.js-5.1.3.tgz"; 1697 - sha1 = "beca005408f642ebebea80b042b4d18d2ac0ee6b"; 1698 }; 1699 } 1700 { ··· 1730 }; 1731 } 1732 { 1733 - name = "bowser___bowser_2.9.0.tgz"; 1734 - path = fetchurl { 1735 - name = "bowser___bowser_2.9.0.tgz"; 1736 - url = "https://registry.yarnpkg.com/bowser/-/bowser-2.9.0.tgz"; 1737 - sha1 = "3bed854233b419b9a7422d9ee3e85504373821c9"; 1738 - }; 1739 - } 1740 - { 1741 name = "brace_expansion___brace_expansion_1.1.11.tgz"; 1742 path = fetchurl { 1743 name = "brace_expansion___brace_expansion_1.1.11.tgz"; ··· 1778 }; 1779 } 1780 { 1781 - name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz"; 1782 - path = fetchurl { 1783 - name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz"; 1784 - url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"; 1785 - sha1 = "3c9b4b7d782c8121e56f10106d84c0d0ffc94626"; 1786 - }; 1787 - } 1788 - { 1789 name = "browser_stdout___browser_stdout_1.3.1.tgz"; 1790 path = fetchurl { 1791 name = "browser_stdout___browser_stdout_1.3.1.tgz"; ··· 1858 }; 1859 } 1860 { 1861 - name = "browserslist___browserslist_4.16.1.tgz"; 1862 path = fetchurl { 1863 - name = "browserslist___browserslist_4.16.1.tgz"; 1864 - url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.1.tgz"; 1865 - sha1 = "bf757a2da376b3447b800a16f0f1c96358138766"; 1866 }; 1867 } 1868 { ··· 1938 }; 1939 } 1940 { 1941 - name = "bunyan___bunyan_1.8.15.tgz"; 1942 - path = fetchurl { 1943 - name = "bunyan___bunyan_1.8.15.tgz"; 1944 - url = "https://registry.yarnpkg.com/bunyan/-/bunyan-1.8.15.tgz"; 1945 - sha1 = "8ce34ca908a17d0776576ca1b2f6cbd916e93b46"; 1946 - }; 1947 - } 1948 - { 1949 name = "bytes___bytes_3.0.0.tgz"; 1950 path = fetchurl { 1951 name = "bytes___bytes_3.0.0.tgz"; ··· 1970 }; 1971 } 1972 { 1973 - name = "cacache___cacache_15.0.5.tgz"; 1974 path = fetchurl { 1975 - name = "cacache___cacache_15.0.5.tgz"; 1976 - url = "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz"; 1977 - sha1 = "69162833da29170d6732334643c60e005f5f17d0"; 1978 }; 1979 } 1980 { ··· 2050 }; 2051 } 2052 { 2053 - name = "camelize___camelize_1.0.0.tgz"; 2054 path = fetchurl { 2055 - name = "camelize___camelize_1.0.0.tgz"; 2056 - url = "https://registry.yarnpkg.com/camelize/-/camelize-1.0.0.tgz"; 2057 - sha1 = "164a5483e630fa4321e5af07020e531831b2609b"; 2058 }; 2059 } 2060 { ··· 2066 }; 2067 } 2068 { 2069 - name = "caniuse_lite___caniuse_lite_1.0.30001177.tgz"; 2070 path = fetchurl { 2071 - name = "caniuse_lite___caniuse_lite_1.0.30001177.tgz"; 2072 - url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001177.tgz"; 2073 - sha1 = "2c3b384933aafda03e29ccca7bb3d8c3389e1ece"; 2074 }; 2075 } 2076 { ··· 2079 name = "caseless___caseless_0.12.0.tgz"; 2080 url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; 2081 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 2082 - }; 2083 - } 2084 - { 2085 - name = "ccount___ccount_1.1.0.tgz"; 2086 - path = fetchurl { 2087 - name = "ccount___ccount_1.1.0.tgz"; 2088 - url = "https://registry.yarnpkg.com/ccount/-/ccount-1.1.0.tgz"; 2089 - sha1 = "246687debb6014735131be8abab2d93898f8d043"; 2090 }; 2091 } 2092 { ··· 2114 }; 2115 } 2116 { 2117 name = "chalk___chalk_0.4.0.tgz"; 2118 path = fetchurl { 2119 name = "chalk___chalk_0.4.0.tgz"; ··· 2127 name = "chance___chance_1.1.7.tgz"; 2128 url = "https://registry.yarnpkg.com/chance/-/chance-1.1.7.tgz"; 2129 sha1 = "e99dde5ac16681af787b5ba94c8277c090d6cfe8"; 2130 - }; 2131 - } 2132 - { 2133 - name = "character_entities_html4___character_entities_html4_1.1.4.tgz"; 2134 - path = fetchurl { 2135 - name = "character_entities_html4___character_entities_html4_1.1.4.tgz"; 2136 - url = "https://registry.yarnpkg.com/character-entities-html4/-/character-entities-html4-1.1.4.tgz"; 2137 - sha1 = "0e64b0a3753ddbf1fdc044c5fd01d0199a02e125"; 2138 }; 2139 } 2140 { ··· 2162 }; 2163 } 2164 { 2165 - name = "chardet___chardet_0.7.0.tgz"; 2166 path = fetchurl { 2167 - name = "chardet___chardet_0.7.0.tgz"; 2168 - url = "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz"; 2169 - sha1 = "90094849f0937f2eedc2425d0d28a9e5f0cbad9e"; 2170 }; 2171 } 2172 { 2173 - name = "cheerio___cheerio_0.22.0.tgz"; 2174 path = fetchurl { 2175 - name = "cheerio___cheerio_0.22.0.tgz"; 2176 - url = "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz"; 2177 - sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; 2178 }; 2179 } 2180 { ··· 2194 }; 2195 } 2196 { 2197 - name = "chokidar___chokidar_3.5.0.tgz"; 2198 - path = fetchurl { 2199 - name = "chokidar___chokidar_3.5.0.tgz"; 2200 - url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.0.tgz"; 2201 - sha1 = "458a4816a415e9d3b3caa4faec2b96a6935a9e65"; 2202 - }; 2203 - } 2204 - { 2205 name = "chownr___chownr_1.1.4.tgz"; 2206 path = fetchurl { 2207 name = "chownr___chownr_1.1.4.tgz"; ··· 2218 }; 2219 } 2220 { 2221 - name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; 2222 path = fetchurl { 2223 - name = "chrome_trace_event___chrome_trace_event_1.0.2.tgz"; 2224 - url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz"; 2225 - sha1 = "234090ee97c7d4ad1a2c4beae27505deffc608a4"; 2226 }; 2227 } 2228 { ··· 2258 }; 2259 } 2260 { 2261 - name = "cli_color___cli_color_1.4.0.tgz"; 2262 - path = fetchurl { 2263 - name = "cli_color___cli_color_1.4.0.tgz"; 2264 - url = "https://registry.yarnpkg.com/cli-color/-/cli-color-1.4.0.tgz"; 2265 - sha1 = "7d10738f48526824f8fe7da51857cb0f572fe01f"; 2266 - }; 2267 - } 2268 - { 2269 - name = "cli_cursor___cli_cursor_2.1.0.tgz"; 2270 - path = fetchurl { 2271 - name = "cli_cursor___cli_cursor_2.1.0.tgz"; 2272 - url = "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz"; 2273 - sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 2274 - }; 2275 - } 2276 - { 2277 - name = "cli_width___cli_width_2.2.1.tgz"; 2278 path = fetchurl { 2279 - name = "cli_width___cli_width_2.2.1.tgz"; 2280 - url = "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.1.tgz"; 2281 - sha1 = "b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"; 2282 - }; 2283 - } 2284 - { 2285 - name = "clipboard___clipboard_2.0.6.tgz"; 2286 - path = fetchurl { 2287 - name = "clipboard___clipboard_2.0.6.tgz"; 2288 - url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.6.tgz"; 2289 - sha1 = "52921296eec0fdf77ead1749421b21c968647376"; 2290 }; 2291 } 2292 { 2293 - name = "cliui___cliui_5.0.0.tgz"; 2294 path = fetchurl { 2295 - name = "cliui___cliui_5.0.0.tgz"; 2296 - url = "https://registry.yarnpkg.com/cliui/-/cliui-5.0.0.tgz"; 2297 - sha1 = "deefcfdb2e800784aa34f46fa08e06851c7bbbc5"; 2298 }; 2299 } 2300 { 2301 - name = "clone___clone_2.1.2.tgz"; 2302 path = fetchurl { 2303 - name = "clone___clone_2.1.2.tgz"; 2304 - url = "https://registry.yarnpkg.com/clone/-/clone-2.1.2.tgz"; 2305 - sha1 = "1b7f4b9f591f1e8f83670401600345a02887435f"; 2306 }; 2307 } 2308 { ··· 2354 ''; 2355 } 2356 { 2357 - name = "collapse_white_space___collapse_white_space_1.0.6.tgz"; 2358 - path = fetchurl { 2359 - name = "collapse_white_space___collapse_white_space_1.0.6.tgz"; 2360 - url = "https://registry.yarnpkg.com/collapse-white-space/-/collapse-white-space-1.0.6.tgz"; 2361 - sha1 = "e63629c0016665792060dbbeb79c42239d2c5287"; 2362 - }; 2363 - } 2364 - { 2365 name = "collection_visit___collection_visit_1.0.0.tgz"; 2366 path = fetchurl { 2367 name = "collection_visit___collection_visit_1.0.0.tgz"; ··· 2402 }; 2403 } 2404 { 2405 - name = "color_string___color_string_1.5.4.tgz"; 2406 path = fetchurl { 2407 - name = "color_string___color_string_1.5.4.tgz"; 2408 - url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz"; 2409 - sha1 = "dd51cd25cfee953d138fe4002372cc3d0e504cb6"; 2410 }; 2411 } 2412 { ··· 2426 }; 2427 } 2428 { 2429 - name = "colorette___colorette_1.2.1.tgz"; 2430 path = fetchurl { 2431 - name = "colorette___colorette_1.2.1.tgz"; 2432 - url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz"; 2433 - sha1 = "4d0b921325c14faf92633086a536db6e89564b1b"; 2434 }; 2435 } 2436 { ··· 2466 }; 2467 } 2468 { 2469 - name = "commander___commander_2.15.1.tgz"; 2470 - path = fetchurl { 2471 - name = "commander___commander_2.15.1.tgz"; 2472 - url = "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz"; 2473 - sha1 = "df46e867d0fc2aec66a34662b406a9ccafff5b0f"; 2474 - }; 2475 - } 2476 - { 2477 name = "commander___commander_4.1.1.tgz"; 2478 path = fetchurl { 2479 name = "commander___commander_4.1.1.tgz"; 2480 url = "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz"; 2481 sha1 = "9fd602bd936294e9e9ef46a3f4d6964044b18068"; 2482 }; 2483 } 2484 { ··· 2522 }; 2523 } 2524 { 2525 - name = "compress_commons___compress_commons_4.0.2.tgz"; 2526 path = fetchurl { 2527 - name = "compress_commons___compress_commons_4.0.2.tgz"; 2528 - url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.0.2.tgz"; 2529 - sha1 = "d6896be386e52f37610cef9e6fa5defc58c31bd7"; 2530 }; 2531 } 2532 { ··· 2570 }; 2571 } 2572 { 2573 - name = "config_chain___config_chain_1.1.12.tgz"; 2574 - path = fetchurl { 2575 - name = "config_chain___config_chain_1.1.12.tgz"; 2576 - url = "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz"; 2577 - sha1 = "0fde8d091200eb5e808caf25fe618c02f48e4efa"; 2578 - }; 2579 - } 2580 - { 2581 name = "connect_flash___connect_flash_0.1.1.tgz"; 2582 path = fetchurl { 2583 name = "connect_flash___connect_flash_0.1.1.tgz"; ··· 2586 }; 2587 } 2588 { 2589 - name = "connect_session_sequelize___connect_session_sequelize_6.1.1.tgz"; 2590 path = fetchurl { 2591 - name = "connect_session_sequelize___connect_session_sequelize_6.1.1.tgz"; 2592 - url = "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-6.1.1.tgz"; 2593 - sha1 = "0155d01fbffc67352df795aa53b7ab397ab95094"; 2594 }; 2595 } 2596 { ··· 2631 name = "content_disposition___content_disposition_0.5.3.tgz"; 2632 url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; 2633 sha1 = "e130caf7e7279087c5616c2007d0485698984fbd"; 2634 - }; 2635 - } 2636 - { 2637 - name = "content_security_policy_builder___content_security_policy_builder_2.1.0.tgz"; 2638 - path = fetchurl { 2639 - name = "content_security_policy_builder___content_security_policy_builder_2.1.0.tgz"; 2640 - url = "https://registry.yarnpkg.com/content-security-policy-builder/-/content-security-policy-builder-2.1.0.tgz"; 2641 - sha1 = "0a2364d769a3d7014eec79ff7699804deb8cfcbb"; 2642 }; 2643 } 2644 { ··· 2698 }; 2699 } 2700 { 2701 - name = "copy_anything___copy_anything_2.0.1.tgz"; 2702 path = fetchurl { 2703 - name = "copy_anything___copy_anything_2.0.1.tgz"; 2704 - url = "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.1.tgz"; 2705 - sha1 = "2afbce6da684bdfcbec93752fa762819cb480d9a"; 2706 }; 2707 } 2708 { ··· 2762 }; 2763 } 2764 { 2765 - name = "crc32_stream___crc32_stream_4.0.1.tgz"; 2766 path = fetchurl { 2767 - name = "crc32_stream___crc32_stream_4.0.1.tgz"; 2768 - url = "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-4.0.1.tgz"; 2769 - sha1 = "0f047d74041737f8a55e86837a1b826bd8ab0067"; 2770 }; 2771 } 2772 { ··· 2794 }; 2795 } 2796 { 2797 - name = "cross_spawn___cross_spawn_6.0.5.tgz"; 2798 path = fetchurl { 2799 - name = "cross_spawn___cross_spawn_6.0.5.tgz"; 2800 - url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz"; 2801 - sha1 = "4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"; 2802 }; 2803 } 2804 { ··· 2834 }; 2835 } 2836 { 2837 - name = "css_loader___css_loader_3.6.0.tgz"; 2838 path = fetchurl { 2839 - name = "css_loader___css_loader_3.6.0.tgz"; 2840 - url = "https://registry.yarnpkg.com/css-loader/-/css-loader-3.6.0.tgz"; 2841 - sha1 = "2e4b2c7e6e2d27f8c8f28f61bffcd2e6c91ef645"; 2842 }; 2843 } 2844 { ··· 2874 }; 2875 } 2876 { 2877 - name = "css_tree___css_tree_1.1.2.tgz"; 2878 path = fetchurl { 2879 - name = "css_tree___css_tree_1.1.2.tgz"; 2880 - url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.2.tgz"; 2881 - sha1 = "9ae393b5dafd7dae8a622475caec78d3d8fbd7b5"; 2882 }; 2883 } 2884 { ··· 2914 }; 2915 } 2916 { 2917 - name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz"; 2918 path = fetchurl { 2919 - name = "cssnano_preset_default___cssnano_preset_default_4.0.7.tgz"; 2920 - url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz"; 2921 - sha1 = "51ec662ccfca0f88b396dcd9679cdb931be17f76"; 2922 }; 2923 } 2924 { ··· 2954 }; 2955 } 2956 { 2957 - name = "cssnano___cssnano_4.1.10.tgz"; 2958 path = fetchurl { 2959 - name = "cssnano___cssnano_4.1.10.tgz"; 2960 - url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.10.tgz"; 2961 - sha1 = "0ac41f0b13d13d465487e111b778d42da631b8b2"; 2962 }; 2963 } 2964 { ··· 2983 name = "cssom___cssom_0.2.5.tgz"; 2984 url = "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz"; 2985 sha1 = "2682709b5902e7212df529116ff788cd5b254894"; 2986 - }; 2987 - } 2988 - { 2989 - name = "cssstyle___cssstyle_1.4.0.tgz"; 2990 - path = fetchurl { 2991 - name = "cssstyle___cssstyle_1.4.0.tgz"; 2992 - url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz"; 2993 - sha1 = "9d31328229d3c565c61e586b02041a28fccdccf1"; 2994 }; 2995 } 2996 { ··· 3266 }; 3267 } 3268 { 3269 - name = "d___d_1.0.1.tgz"; 3270 - path = fetchurl { 3271 - name = "d___d_1.0.1.tgz"; 3272 - url = "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz"; 3273 - sha1 = "8698095372d58dbee346ffd0c7093f99f8f9eb5a"; 3274 - }; 3275 - } 3276 - { 3277 name = "dagre_d3___dagre_d3_0.6.4.tgz"; 3278 path = fetchurl { 3279 name = "dagre_d3___dagre_d3_0.6.4.tgz"; ··· 3298 }; 3299 } 3300 { 3301 - name = "dasherize___dasherize_2.0.0.tgz"; 3302 - path = fetchurl { 3303 - name = "dasherize___dasherize_2.0.0.tgz"; 3304 - url = "https://registry.yarnpkg.com/dasherize/-/dasherize-2.0.0.tgz"; 3305 - sha1 = "6d809c9cd0cf7bb8952d80fc84fa13d47ddb1308"; 3306 - }; 3307 - } 3308 - { 3309 - name = "data_urls___data_urls_1.1.0.tgz"; 3310 - path = fetchurl { 3311 - name = "data_urls___data_urls_1.1.0.tgz"; 3312 - url = "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz"; 3313 - sha1 = "15ee0582baa5e22bb59c77140da8f9c76963bbfe"; 3314 - }; 3315 - } 3316 - { 3317 name = "date_utils___date_utils_1.2.21.tgz"; 3318 path = fetchurl { 3319 name = "date_utils___date_utils_1.2.21.tgz"; ··· 3338 }; 3339 } 3340 { 3341 name = "debug___debug_3.2.7.tgz"; 3342 path = fetchurl { 3343 name = "debug___debug_3.2.7.tgz"; ··· 3346 }; 3347 } 3348 { 3349 - name = "debug___debug_4.3.1.tgz"; 3350 - path = fetchurl { 3351 - name = "debug___debug_4.3.1.tgz"; 3352 - url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; 3353 - sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; 3354 - }; 3355 - } 3356 - { 3357 name = "debug___debug_4.1.1.tgz"; 3358 path = fetchurl { 3359 name = "debug___debug_4.1.1.tgz"; ··· 3362 }; 3363 } 3364 { 3365 - name = "decamelize___decamelize_1.2.0.tgz"; 3366 path = fetchurl { 3367 - name = "decamelize___decamelize_1.2.0.tgz"; 3368 - url = "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz"; 3369 - sha1 = "f6534d15148269b20352e7bee26f501f9a191290"; 3370 }; 3371 } 3372 { ··· 3378 }; 3379 } 3380 { 3381 - name = "deep_equal___deep_equal_1.1.1.tgz"; 3382 path = fetchurl { 3383 - name = "deep_equal___deep_equal_1.1.1.tgz"; 3384 - url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.1.1.tgz"; 3385 - sha1 = "b5c98c942ceffaf7cb051e24e1434a25a2e6076a"; 3386 }; 3387 } 3388 { ··· 3442 }; 3443 } 3444 { 3445 - name = "defined___defined_1.0.0.tgz"; 3446 - path = fetchurl { 3447 - name = "defined___defined_1.0.0.tgz"; 3448 - url = "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz"; 3449 - sha1 = "c98d9bcef75674188e110969151199e39b1fa693"; 3450 - }; 3451 - } 3452 - { 3453 name = "delayed_stream___delayed_stream_1.0.0.tgz"; 3454 path = fetchurl { 3455 name = "delayed_stream___delayed_stream_1.0.0.tgz"; ··· 3514 }; 3515 } 3516 { 3517 - name = "detect_file___detect_file_1.0.0.tgz"; 3518 - path = fetchurl { 3519 - name = "detect_file___detect_file_1.0.0.tgz"; 3520 - url = "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz"; 3521 - sha1 = "f0d66d03672a825cb1b73bdb3fe62310c8e552b7"; 3522 - }; 3523 - } 3524 - { 3525 name = "detect_indent___detect_indent_4.0.0.tgz"; 3526 path = fetchurl { 3527 name = "detect_indent___detect_indent_4.0.0.tgz"; ··· 3554 ''; 3555 } 3556 { 3557 - name = "diff___diff_3.5.0.tgz"; 3558 path = fetchurl { 3559 - name = "diff___diff_3.5.0.tgz"; 3560 - url = "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz"; 3561 - sha1 = "800c0dd1e0a8bfbc95835c202ad220fe317e5a12"; 3562 }; 3563 } 3564 { ··· 3634 }; 3635 } 3636 { 3637 - name = "domelementtype___domelementtype_2.1.0.tgz"; 3638 - path = fetchurl { 3639 - name = "domelementtype___domelementtype_2.1.0.tgz"; 3640 - url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz"; 3641 - sha1 = "a851c080a6d1c3d94344aed151d99f669edf585e"; 3642 - }; 3643 - } 3644 - { 3645 - name = "domexception___domexception_1.0.1.tgz"; 3646 path = fetchurl { 3647 - name = "domexception___domexception_1.0.1.tgz"; 3648 - url = "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz"; 3649 - sha1 = "937442644ca6a31261ef36e3ec677fe805582c90"; 3650 }; 3651 } 3652 { ··· 3655 name = "domhandler___domhandler_2.4.2.tgz"; 3656 url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz"; 3657 sha1 = "8805097e933d65e85546f726d60f5eb88b44f803"; 3658 }; 3659 } 3660 { ··· 3674 }; 3675 } 3676 { 3677 - name = "dont_sniff_mimetype___dont_sniff_mimetype_1.1.0.tgz"; 3678 - path = fetchurl { 3679 - name = "dont_sniff_mimetype___dont_sniff_mimetype_1.1.0.tgz"; 3680 - url = "https://registry.yarnpkg.com/dont-sniff-mimetype/-/dont-sniff-mimetype-1.1.0.tgz"; 3681 - sha1 = "c7d0427f8bcb095762751252af59d148b0a623b2"; 3682 - }; 3683 - } 3684 - { 3685 name = "dot_case___dot_case_3.0.4.tgz"; 3686 path = fetchurl { 3687 name = "dot_case___dot_case_3.0.4.tgz"; ··· 3706 }; 3707 } 3708 { 3709 - name = "dtrace_provider___dtrace_provider_0.8.8.tgz"; 3710 - path = fetchurl { 3711 - name = "dtrace_provider___dtrace_provider_0.8.8.tgz"; 3712 - url = "https://registry.yarnpkg.com/dtrace-provider/-/dtrace-provider-0.8.8.tgz"; 3713 - sha1 = "2996d5490c37e1347be263b423ed7b297fb0d97e"; 3714 - }; 3715 - } 3716 - { 3717 name = "duplexify___duplexify_3.7.1.tgz"; 3718 path = fetchurl { 3719 name = "duplexify___duplexify_3.7.1.tgz"; ··· 3738 }; 3739 } 3740 { 3741 - name = "editorconfig___editorconfig_0.15.3.tgz"; 3742 - path = fetchurl { 3743 - name = "editorconfig___editorconfig_0.15.3.tgz"; 3744 - url = "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz"; 3745 - sha1 = "bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"; 3746 - }; 3747 - } 3748 - { 3749 name = "ee_first___ee_first_1.1.1.tgz"; 3750 path = fetchurl { 3751 name = "ee_first___ee_first_1.1.1.tgz"; ··· 3754 }; 3755 } 3756 { 3757 - name = "ejs___ejs_2.7.4.tgz"; 3758 - path = fetchurl { 3759 - name = "ejs___ejs_2.7.4.tgz"; 3760 - url = "https://registry.yarnpkg.com/ejs/-/ejs-2.7.4.tgz"; 3761 - sha1 = "48661287573dcc53e366c7a1ae52c3a120eec9ba"; 3762 - }; 3763 - } 3764 - { 3765 - name = "electron_to_chromium___electron_to_chromium_1.3.639.tgz"; 3766 path = fetchurl { 3767 - name = "electron_to_chromium___electron_to_chromium_1.3.639.tgz"; 3768 - url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.639.tgz"; 3769 - sha1 = "0a27e3018ae3acf438a14a1dd4e41db4b8ab764e"; 3770 }; 3771 } 3772 { 3773 - name = "elliptic___elliptic_6.5.3.tgz"; 3774 path = fetchurl { 3775 - name = "elliptic___elliptic_6.5.3.tgz"; 3776 - url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.3.tgz"; 3777 - sha1 = "cb59eb2efdaf73a0bd78ccd7015a62ad6e0f93d6"; 3778 }; 3779 } 3780 { 3781 - name = "emoji_regex___emoji_regex_7.0.3.tgz"; 3782 path = fetchurl { 3783 - name = "emoji_regex___emoji_regex_7.0.3.tgz"; 3784 - url = "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz"; 3785 - sha1 = "933a04052860c85e83c122479c4748a8e4c72156"; 3786 }; 3787 } 3788 { ··· 3834 }; 3835 } 3836 { 3837 - name = "engine.io_client___engine.io_client_3.5.0.tgz"; 3838 path = fetchurl { 3839 - name = "engine.io_client___engine.io_client_3.5.0.tgz"; 3840 - url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.0.tgz"; 3841 - sha1 = "fc1b4d9616288ce4f2daf06dcf612413dec941c7"; 3842 }; 3843 } 3844 { ··· 3866 }; 3867 } 3868 { 3869 name = "entities___entities_1.1.2.tgz"; 3870 path = fetchurl { 3871 name = "entities___entities_1.1.2.tgz"; ··· 3874 }; 3875 } 3876 { 3877 name = "entities___entities_2.1.0.tgz"; 3878 path = fetchurl { 3879 name = "entities___entities_2.1.0.tgz"; ··· 3882 }; 3883 } 3884 { 3885 - name = "entities___entities_2.0.3.tgz"; 3886 - path = fetchurl { 3887 - name = "entities___entities_2.0.3.tgz"; 3888 - url = "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz"; 3889 - sha1 = "5c487e5742ab93c15abb5da22759b8590ec03b7f"; 3890 - }; 3891 - } 3892 - { 3893 name = "entity_decode___entity_decode_2.0.2.tgz"; 3894 path = fetchurl { 3895 name = "entity_decode___entity_decode_2.0.2.tgz"; ··· 3898 }; 3899 } 3900 { 3901 name = "errno___errno_0.1.8.tgz"; 3902 path = fetchurl { 3903 name = "errno___errno_0.1.8.tgz"; ··· 3914 }; 3915 } 3916 { 3917 - name = "es_abstract___es_abstract_1.17.7.tgz"; 3918 path = fetchurl { 3919 - name = "es_abstract___es_abstract_1.17.7.tgz"; 3920 - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.17.7.tgz"; 3921 - sha1 = "a4de61b2f66989fc7421676c1cb9787573ace54c"; 3922 }; 3923 } 3924 { 3925 - name = "es_abstract___es_abstract_1.18.0_next.1.tgz"; 3926 path = fetchurl { 3927 - name = "es_abstract___es_abstract_1.18.0_next.1.tgz"; 3928 - url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0-next.1.tgz"; 3929 - sha1 = "6e3a0a4bda717e5023ab3b8e90bec36108d22c68"; 3930 }; 3931 } 3932 { ··· 3938 }; 3939 } 3940 { 3941 - name = "es5_ext___es5_ext_0.10.53.tgz"; 3942 - path = fetchurl { 3943 - name = "es5_ext___es5_ext_0.10.53.tgz"; 3944 - url = "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.53.tgz"; 3945 - sha1 = "93c5a3acfdbef275220ad72644ad02ee18368de1"; 3946 - }; 3947 - } 3948 - { 3949 - name = "es6_error___es6_error_2.1.1.tgz"; 3950 - path = fetchurl { 3951 - name = "es6_error___es6_error_2.1.1.tgz"; 3952 - url = "https://registry.yarnpkg.com/es6-error/-/es6-error-2.1.1.tgz"; 3953 - sha1 = "91384301ec5ed1c9a7247d1128247216f03547cd"; 3954 - }; 3955 - } 3956 - { 3957 - name = "es6_iterator___es6_iterator_2.0.3.tgz"; 3958 - path = fetchurl { 3959 - name = "es6_iterator___es6_iterator_2.0.3.tgz"; 3960 - url = "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz"; 3961 - sha1 = "a7de889141a05a94b0854403b2d0a0fbfa98f3b7"; 3962 - }; 3963 - } 3964 - { 3965 - name = "es6_symbol___es6_symbol_3.1.3.tgz"; 3966 path = fetchurl { 3967 - name = "es6_symbol___es6_symbol_3.1.3.tgz"; 3968 - url = "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz"; 3969 - sha1 = "bad5d3c1bcdac28269f4cb331e431c78ac705d18"; 3970 - }; 3971 - } 3972 - { 3973 - name = "es6_weak_map___es6_weak_map_2.0.3.tgz"; 3974 - path = fetchurl { 3975 - name = "es6_weak_map___es6_weak_map_2.0.3.tgz"; 3976 - url = "https://registry.yarnpkg.com/es6-weak-map/-/es6-weak-map-2.0.3.tgz"; 3977 - sha1 = "b6da1f16cc2cc0d9be43e6bdbfc5e7dfcdf31d53"; 3978 }; 3979 } 3980 { ··· 3994 }; 3995 } 3996 { 3997 - name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 3998 path = fetchurl { 3999 - name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 4000 - url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 4001 - sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 4002 }; 4003 } 4004 { 4005 - name = "escodegen___escodegen_1.14.3.tgz"; 4006 path = fetchurl { 4007 - name = "escodegen___escodegen_1.14.3.tgz"; 4008 - url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz"; 4009 - sha1 = "4e7b81fba61581dc97582ed78cab7f0e8d63f503"; 4010 }; 4011 } 4012 { 4013 - name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; 4014 path = fetchurl { 4015 - name = "eslint_config_standard___eslint_config_standard_12.0.0.tgz"; 4016 - url = "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-12.0.0.tgz"; 4017 - sha1 = "638b4c65db0bd5a41319f96bba1f15ddad2107d9"; 4018 }; 4019 } 4020 { ··· 4034 }; 4035 } 4036 { 4037 - name = "eslint_plugin_es___eslint_plugin_es_1.4.1.tgz"; 4038 path = fetchurl { 4039 - name = "eslint_plugin_es___eslint_plugin_es_1.4.1.tgz"; 4040 - url = "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz"; 4041 - sha1 = "12acae0f4953e76ba444bfd1b2271081ac620998"; 4042 }; 4043 } 4044 { ··· 4050 }; 4051 } 4052 { 4053 - name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; 4054 path = fetchurl { 4055 - name = "eslint_plugin_node___eslint_plugin_node_8.0.1.tgz"; 4056 - url = "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz"; 4057 - sha1 = "55ae3560022863d141fa7a11799532340a685964"; 4058 }; 4059 } 4060 { 4061 - name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz"; 4062 path = fetchurl { 4063 - name = "eslint_plugin_promise___eslint_plugin_promise_4.2.1.tgz"; 4064 - url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.2.1.tgz"; 4065 - sha1 = "845fd8b2260ad8f82564c1222fce44ad71d9418a"; 4066 }; 4067 } 4068 { ··· 4082 }; 4083 } 4084 { 4085 - name = "eslint_utils___eslint_utils_1.4.3.tgz"; 4086 path = fetchurl { 4087 - name = "eslint_utils___eslint_utils_1.4.3.tgz"; 4088 - url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz"; 4089 - sha1 = "74fec7c54d0776b6f67e0251040b5806564e981f"; 4090 }; 4091 } 4092 { ··· 4098 }; 4099 } 4100 { 4101 - name = "eslint___eslint_5.16.0.tgz"; 4102 path = fetchurl { 4103 - name = "eslint___eslint_5.16.0.tgz"; 4104 - url = "https://registry.yarnpkg.com/eslint/-/eslint-5.16.0.tgz"; 4105 - sha1 = "a1e3ac1aae4a3fbd8296fcf8f7ab7314cbb6abea"; 4106 }; 4107 } 4108 { 4109 - name = "espree___espree_5.0.1.tgz"; 4110 path = fetchurl { 4111 - name = "espree___espree_5.0.1.tgz"; 4112 - url = "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz"; 4113 - sha1 = "5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a"; 4114 }; 4115 } 4116 { ··· 4122 }; 4123 } 4124 { 4125 - name = "esquery___esquery_1.3.1.tgz"; 4126 path = fetchurl { 4127 - name = "esquery___esquery_1.3.1.tgz"; 4128 - url = "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz"; 4129 - sha1 = "b78b5828aa8e214e29fb74c4d5b752e1c033da57"; 4130 }; 4131 } 4132 { ··· 4186 }; 4187 } 4188 { 4189 - name = "event_emitter___event_emitter_0.3.5.tgz"; 4190 - path = fetchurl { 4191 - name = "event_emitter___event_emitter_0.3.5.tgz"; 4192 - url = "https://registry.yarnpkg.com/event-emitter/-/event-emitter-0.3.5.tgz"; 4193 - sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39"; 4194 - }; 4195 - } 4196 - { 4197 name = "events___events_1.1.1.tgz"; 4198 path = fetchurl { 4199 name = "events___events_1.1.1.tgz"; ··· 4202 }; 4203 } 4204 { 4205 - name = "events___events_3.2.0.tgz"; 4206 path = fetchurl { 4207 - name = "events___events_3.2.0.tgz"; 4208 - url = "https://registry.yarnpkg.com/events/-/events-3.2.0.tgz"; 4209 - sha1 = "93b87c18f8efcd4202a461aec4dfc0556b639379"; 4210 }; 4211 } 4212 { ··· 4215 name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; 4216 url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; 4217 sha1 = "7fcbdb198dc71959432efe13842684e0525acb02"; 4218 }; 4219 } 4220 { ··· 4250 }; 4251 } 4252 { 4253 - name = "expand_tilde___expand_tilde_2.0.2.tgz"; 4254 path = fetchurl { 4255 - name = "expand_tilde___expand_tilde_2.0.2.tgz"; 4256 - url = "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz"; 4257 - sha1 = "97e801aa052df02454de46b02bf621642cdc8502"; 4258 - }; 4259 - } 4260 - { 4261 - name = "expose_loader___expose_loader_0.7.5.tgz"; 4262 - path = fetchurl { 4263 - name = "expose_loader___expose_loader_0.7.5.tgz"; 4264 - url = "https://registry.yarnpkg.com/expose-loader/-/expose-loader-0.7.5.tgz"; 4265 - sha1 = "e29ea2d9aeeed3254a3faa1b35f502db9f9c3f6f"; 4266 }; 4267 } 4268 { ··· 4279 name = "express___express_4.17.1.tgz"; 4280 url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; 4281 sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134"; 4282 - }; 4283 - } 4284 - { 4285 - name = "ext___ext_1.4.0.tgz"; 4286 - path = fetchurl { 4287 - name = "ext___ext_1.4.0.tgz"; 4288 - url = "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz"; 4289 - sha1 = "89ae7a07158f79d35517882904324077e4379244"; 4290 }; 4291 } 4292 { ··· 4322 }; 4323 } 4324 { 4325 - name = "external_editor___external_editor_3.1.0.tgz"; 4326 - path = fetchurl { 4327 - name = "external_editor___external_editor_3.1.0.tgz"; 4328 - url = "https://registry.yarnpkg.com/external-editor/-/external-editor-3.1.0.tgz"; 4329 - sha1 = "cb03f740befae03ea4d283caed2741a83f335495"; 4330 - }; 4331 - } 4332 - { 4333 name = "extglob___extglob_0.3.2.tgz"; 4334 path = fetchurl { 4335 name = "extglob___extglob_0.3.2.tgz"; ··· 4343 name = "extglob___extglob_2.0.4.tgz"; 4344 url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; 4345 sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; 4346 - }; 4347 - } 4348 - { 4349 - name = "extsprintf___extsprintf_1.2.0.tgz"; 4350 - path = fetchurl { 4351 - name = "extsprintf___extsprintf_1.2.0.tgz"; 4352 - url = "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.2.0.tgz"; 4353 - sha1 = "5ad946c22f5b32ba7f8cd7426711c6e8a3fc2529"; 4354 }; 4355 } 4356 { ··· 4378 }; 4379 } 4380 { 4381 - name = "fast_glob___fast_glob_3.2.4.tgz"; 4382 path = fetchurl { 4383 - name = "fast_glob___fast_glob_3.2.4.tgz"; 4384 - url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz"; 4385 - sha1 = "d20aefbf99579383e7f3cc66529158c9b98554d3"; 4386 }; 4387 } 4388 { ··· 4410 }; 4411 } 4412 { 4413 - name = "fastq___fastq_1.10.0.tgz"; 4414 path = fetchurl { 4415 - name = "fastq___fastq_1.10.0.tgz"; 4416 - url = "https://registry.yarnpkg.com/fastq/-/fastq-1.10.0.tgz"; 4417 - sha1 = "74dbefccade964932cdf500473ef302719c652bb"; 4418 }; 4419 } 4420 { ··· 4426 }; 4427 } 4428 { 4429 - name = "feature_policy___feature_policy_0.3.0.tgz"; 4430 path = fetchurl { 4431 - name = "feature_policy___feature_policy_0.3.0.tgz"; 4432 - url = "https://registry.yarnpkg.com/feature-policy/-/feature-policy-0.3.0.tgz"; 4433 - sha1 = "7430e8e54a40da01156ca30aaec1a381ce536069"; 4434 - }; 4435 - } 4436 - { 4437 - name = "fecha___fecha_4.2.0.tgz"; 4438 - path = fetchurl { 4439 - name = "fecha___fecha_4.2.0.tgz"; 4440 - url = "https://registry.yarnpkg.com/fecha/-/fecha-4.2.0.tgz"; 4441 - sha1 = "3ffb6395453e3f3efff850404f0a59b6747f5f41"; 4442 }; 4443 } 4444 { ··· 4450 }; 4451 } 4452 { 4453 - name = "figures___figures_2.0.0.tgz"; 4454 - path = fetchurl { 4455 - name = "figures___figures_2.0.0.tgz"; 4456 - url = "https://registry.yarnpkg.com/figures/-/figures-2.0.0.tgz"; 4457 - sha1 = "3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"; 4458 - }; 4459 - } 4460 - { 4461 name = "figures___figures_3.2.0.tgz"; 4462 path = fetchurl { 4463 name = "figures___figures_3.2.0.tgz"; ··· 4466 }; 4467 } 4468 { 4469 - name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 4470 path = fetchurl { 4471 - name = "file_entry_cache___file_entry_cache_5.0.1.tgz"; 4472 - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 4473 - sha1 = "ca0f6efa6dd3d561333fb14515065c2fafdf439c"; 4474 }; 4475 } 4476 { 4477 - name = "file_loader___file_loader_4.3.0.tgz"; 4478 path = fetchurl { 4479 - name = "file_loader___file_loader_4.3.0.tgz"; 4480 - url = "https://registry.yarnpkg.com/file-loader/-/file-loader-4.3.0.tgz"; 4481 - sha1 = "780f040f729b3d18019f20605f723e844b8a58af"; 4482 }; 4483 } 4484 { 4485 - name = "file_saver___file_saver_1.3.8.tgz"; 4486 path = fetchurl { 4487 - name = "file_saver___file_saver_1.3.8.tgz"; 4488 - url = "https://registry.yarnpkg.com/file-saver/-/file-saver-1.3.8.tgz"; 4489 - sha1 = "e68a30c7cb044e2fb362b428469feb291c2e09d8"; 4490 }; 4491 } 4492 { 4493 - name = "file_type___file_type_16.2.0.tgz"; 4494 path = fetchurl { 4495 - name = "file_type___file_type_16.2.0.tgz"; 4496 - url = "https://registry.yarnpkg.com/file-type/-/file-type-16.2.0.tgz"; 4497 - sha1 = "d4f1da71ddda758db7f15f93adfaed09ce9e2715"; 4498 }; 4499 } 4500 { ··· 4503 name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 4504 url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 4505 sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd"; 4506 }; 4507 } 4508 { ··· 4570 }; 4571 } 4572 { 4573 name = "find_up___find_up_2.1.0.tgz"; 4574 path = fetchurl { 4575 name = "find_up___find_up_2.1.0.tgz"; ··· 4594 }; 4595 } 4596 { 4597 - name = "findup_sync___findup_sync_3.0.0.tgz"; 4598 path = fetchurl { 4599 - name = "findup_sync___findup_sync_3.0.0.tgz"; 4600 - url = "https://registry.yarnpkg.com/findup-sync/-/findup-sync-3.0.0.tgz"; 4601 - sha1 = "17b108f9ee512dfb7a5c7f3c8b27ea9e1a9c08d1"; 4602 }; 4603 } 4604 { 4605 - name = "flat_cache___flat_cache_2.0.1.tgz"; 4606 path = fetchurl { 4607 - name = "flat_cache___flat_cache_2.0.1.tgz"; 4608 - url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz"; 4609 - sha1 = "5d296d6f04bda44a4630a301413bdbc2ec085ec0"; 4610 }; 4611 } 4612 { 4613 - name = "flatted___flatted_2.0.2.tgz"; 4614 path = fetchurl { 4615 - name = "flatted___flatted_2.0.2.tgz"; 4616 - url = "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz"; 4617 - sha1 = "4575b21e2bcee7434aa9be662f4b7b5f9c2b5138"; 4618 }; 4619 } 4620 { ··· 4642 }; 4643 } 4644 { 4645 - name = "follow_redirects___follow_redirects_1.13.1.tgz"; 4646 path = fetchurl { 4647 - name = "follow_redirects___follow_redirects_1.13.1.tgz"; 4648 - url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.13.1.tgz"; 4649 - sha1 = "5f69b813376cee4fd0474a3aba835df04ab763b7"; 4650 }; 4651 } 4652 { ··· 4666 }; 4667 } 4668 { 4669 name = "forever_agent___forever_agent_0.6.1.tgz"; 4670 path = fetchurl { 4671 name = "forever_agent___forever_agent_0.6.1.tgz"; ··· 4770 }; 4771 } 4772 { 4773 - name = "fs_extra___fs_extra_7.0.1.tgz"; 4774 - path = fetchurl { 4775 - name = "fs_extra___fs_extra_7.0.1.tgz"; 4776 - url = "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz"; 4777 - sha1 = "4f189c44aa123b895f722804f55ea23eadc348e9"; 4778 - }; 4779 - } 4780 - { 4781 name = "fs_minipass___fs_minipass_1.2.7.tgz"; 4782 path = fetchurl { 4783 name = "fs_minipass___fs_minipass_1.2.7.tgz"; ··· 4826 }; 4827 } 4828 { 4829 - name = "fsevents___fsevents_2.3.1.tgz"; 4830 path = fetchurl { 4831 - name = "fsevents___fsevents_2.3.1.tgz"; 4832 - url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.1.tgz"; 4833 - sha1 = "b209ab14c61012636c8863507edf7fb68cc54e9f"; 4834 }; 4835 } 4836 { ··· 4882 }; 4883 } 4884 { 4885 - name = "get_intrinsic___get_intrinsic_1.0.2.tgz"; 4886 path = fetchurl { 4887 - name = "get_intrinsic___get_intrinsic_1.0.2.tgz"; 4888 - url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.2.tgz"; 4889 - sha1 = "6820da226e50b24894e08859469dc68361545d49"; 4890 }; 4891 } 4892 { ··· 4938 }; 4939 } 4940 { 4941 - name = "glob_parent___glob_parent_5.1.1.tgz"; 4942 - path = fetchurl { 4943 - name = "glob_parent___glob_parent_5.1.1.tgz"; 4944 - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz"; 4945 - sha1 = "b6c1ef417c4e5663ea498f1c45afac6916bbc229"; 4946 - }; 4947 - } 4948 - { 4949 - name = "glob___glob_7.1.2.tgz"; 4950 - path = fetchurl { 4951 - name = "glob___glob_7.1.2.tgz"; 4952 - url = "https://registry.yarnpkg.com/glob/-/glob-7.1.2.tgz"; 4953 - sha1 = "c19c9df9a028702d678612384a6552404c636d15"; 4954 - }; 4955 - } 4956 - { 4957 - name = "glob___glob_6.0.4.tgz"; 4958 path = fetchurl { 4959 - name = "glob___glob_6.0.4.tgz"; 4960 - url = "https://registry.yarnpkg.com/glob/-/glob-6.0.4.tgz"; 4961 - sha1 = "0f08860f6a155127b2fadd4f9ce24b1aab6e4d22"; 4962 }; 4963 } 4964 { ··· 4970 }; 4971 } 4972 { 4973 - name = "global_modules___global_modules_1.0.0.tgz"; 4974 path = fetchurl { 4975 - name = "global_modules___global_modules_1.0.0.tgz"; 4976 - url = "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz"; 4977 - sha1 = "6d770f0eb523ac78164d72b5e71a8877265cc3ea"; 4978 }; 4979 } 4980 { 4981 - name = "global_modules___global_modules_2.0.0.tgz"; 4982 - path = fetchurl { 4983 - name = "global_modules___global_modules_2.0.0.tgz"; 4984 - url = "https://registry.yarnpkg.com/global-modules/-/global-modules-2.0.0.tgz"; 4985 - sha1 = "997605ad2345f27f51539bea26574421215c7780"; 4986 - }; 4987 - } 4988 - { 4989 - name = "global_prefix___global_prefix_1.0.2.tgz"; 4990 path = fetchurl { 4991 - name = "global_prefix___global_prefix_1.0.2.tgz"; 4992 - url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz"; 4993 - sha1 = "dbf743c6c14992593c655568cb66ed32c0122ebe"; 4994 - }; 4995 - } 4996 - { 4997 - name = "global_prefix___global_prefix_3.0.0.tgz"; 4998 - path = fetchurl { 4999 - name = "global_prefix___global_prefix_3.0.0.tgz"; 5000 - url = "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz"; 5001 - sha1 = "fc85f73064df69f50421f47f883fe5b913ba9b97"; 5002 - }; 5003 - } 5004 - { 5005 - name = "globals___globals_11.12.0.tgz"; 5006 - path = fetchurl { 5007 - name = "globals___globals_11.12.0.tgz"; 5008 - url = "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz"; 5009 - sha1 = "ab8795338868a0babd8525758018c2a7eb95c42e"; 5010 }; 5011 } 5012 { ··· 5018 }; 5019 } 5020 { 5021 - name = "globby___globby_11.0.2.tgz"; 5022 path = fetchurl { 5023 - name = "globby___globby_11.0.2.tgz"; 5024 - url = "https://registry.yarnpkg.com/globby/-/globby-11.0.2.tgz"; 5025 - sha1 = "1af538b766a3b540ebfb58a32b2e2d5897321d83"; 5026 }; 5027 } 5028 { ··· 5034 }; 5035 } 5036 { 5037 - name = "graceful_fs___graceful_fs_4.2.4.tgz"; 5038 path = fetchurl { 5039 - name = "graceful_fs___graceful_fs_4.2.4.tgz"; 5040 - url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.4.tgz"; 5041 - sha1 = "2256bde14d3632958c465ebc96dc467ca07a29fb"; 5042 }; 5043 } 5044 { ··· 5058 }; 5059 } 5060 { 5061 - name = "handlebars___handlebars_4.7.6.tgz"; 5062 path = fetchurl { 5063 - name = "handlebars___handlebars_4.7.6.tgz"; 5064 - url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.6.tgz"; 5065 - sha1 = "d4c05c1baf90e9945f77aa68a7a219aa4a7df74e"; 5066 }; 5067 } 5068 { ··· 5090 }; 5091 } 5092 { 5093 name = "has_binary2___has_binary2_1.0.3.tgz"; 5094 path = fetchurl { 5095 name = "has_binary2___has_binary2_1.0.3.tgz"; ··· 5130 }; 5131 } 5132 { 5133 - name = "has_symbols___has_symbols_1.0.1.tgz"; 5134 path = fetchurl { 5135 - name = "has_symbols___has_symbols_1.0.1.tgz"; 5136 - url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.1.tgz"; 5137 - sha1 = "9f5214758a44196c406d9bd76cebf81ec2dd31e8"; 5138 }; 5139 } 5140 { ··· 5202 }; 5203 } 5204 { 5205 - name = "he___he_1.1.1.tgz"; 5206 - path = fetchurl { 5207 - name = "he___he_1.1.1.tgz"; 5208 - url = "https://registry.yarnpkg.com/he/-/he-1.1.1.tgz"; 5209 - sha1 = "93410fd21b009735151f8868c2f271f3427e23fd"; 5210 - }; 5211 - } 5212 - { 5213 name = "he___he_1.2.0.tgz"; 5214 path = fetchurl { 5215 name = "he___he_1.2.0.tgz"; ··· 5218 }; 5219 } 5220 { 5221 - name = "helmet_crossdomain___helmet_crossdomain_0.4.0.tgz"; 5222 - path = fetchurl { 5223 - name = "helmet_crossdomain___helmet_crossdomain_0.4.0.tgz"; 5224 - url = "https://registry.yarnpkg.com/helmet-crossdomain/-/helmet-crossdomain-0.4.0.tgz"; 5225 - sha1 = "5f1fe5a836d0325f1da0a78eaa5fd8429078894e"; 5226 - }; 5227 - } 5228 - { 5229 - name = "helmet_csp___helmet_csp_2.10.0.tgz"; 5230 - path = fetchurl { 5231 - name = "helmet_csp___helmet_csp_2.10.0.tgz"; 5232 - url = "https://registry.yarnpkg.com/helmet-csp/-/helmet-csp-2.10.0.tgz"; 5233 - sha1 = "685dde1747bc16c5e28ad9d91e229a69f0a85e84"; 5234 - }; 5235 - } 5236 - { 5237 - name = "helmet___helmet_3.23.3.tgz"; 5238 path = fetchurl { 5239 - name = "helmet___helmet_3.23.3.tgz"; 5240 - url = "https://registry.yarnpkg.com/helmet/-/helmet-3.23.3.tgz"; 5241 - sha1 = "5ba30209c5f73ded4ab65746a3a11bedd4579ab7"; 5242 }; 5243 } 5244 { ··· 5250 }; 5251 } 5252 { 5253 - name = "hide_powered_by___hide_powered_by_1.1.0.tgz"; 5254 - path = fetchurl { 5255 - name = "hide_powered_by___hide_powered_by_1.1.0.tgz"; 5256 - url = "https://registry.yarnpkg.com/hide-powered-by/-/hide-powered-by-1.1.0.tgz"; 5257 - sha1 = "be3ea9cab4bdb16f8744be873755ca663383fa7a"; 5258 - }; 5259 - } 5260 - { 5261 - name = "highlight.js___highlight.js_9.18.5.tgz"; 5262 path = fetchurl { 5263 - name = "highlight.js___highlight.js_9.18.5.tgz"; 5264 - url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-9.18.5.tgz"; 5265 - sha1 = "d18a359867f378c138d6819edfc2a8acd5f29825"; 5266 }; 5267 } 5268 { ··· 5282 }; 5283 } 5284 { 5285 - name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz"; 5286 path = fetchurl { 5287 - name = "homedir_polyfill___homedir_polyfill_1.0.3.tgz"; 5288 - url = "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz"; 5289 - sha1 = "743298cef4e5af3e194161fbadcc2151d3a058e8"; 5290 - }; 5291 - } 5292 - { 5293 - name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 5294 - path = fetchurl { 5295 - name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 5296 - url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz"; 5297 - sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488"; 5298 - }; 5299 - } 5300 - { 5301 - name = "hpkp___hpkp_2.0.0.tgz"; 5302 - path = fetchurl { 5303 - name = "hpkp___hpkp_2.0.0.tgz"; 5304 - url = "https://registry.yarnpkg.com/hpkp/-/hpkp-2.0.0.tgz"; 5305 - sha1 = "10e142264e76215a5d30c44ec43de64dee6d1672"; 5306 }; 5307 } 5308 { ··· 5322 }; 5323 } 5324 { 5325 - name = "hsts___hsts_2.2.0.tgz"; 5326 - path = fetchurl { 5327 - name = "hsts___hsts_2.2.0.tgz"; 5328 - url = "https://registry.yarnpkg.com/hsts/-/hsts-2.2.0.tgz"; 5329 - sha1 = "09119d42f7a8587035d027dda4522366fe75d964"; 5330 - }; 5331 - } 5332 - { 5333 - name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; 5334 - path = fetchurl { 5335 - name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; 5336 - url = "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz"; 5337 - sha1 = "97d4688aeb5c81886a364faa0cad1dda14d433a7"; 5338 - }; 5339 - } 5340 - { 5341 - name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; 5342 - path = fetchurl { 5343 - name = "html_encoding_sniffer___html_encoding_sniffer_1.0.2.tgz"; 5344 - url = "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz"; 5345 - sha1 = "e70d84b94da53aa375e11fe3a351be6642ca46f8"; 5346 - }; 5347 - } 5348 - { 5349 name = "html_minifier_terser___html_minifier_terser_5.1.1.tgz"; 5350 path = fetchurl { 5351 name = "html_minifier_terser___html_minifier_terser_5.1.1.tgz"; ··· 5362 }; 5363 } 5364 { 5365 - name = "html_webpack_plugin___html_webpack_plugin_4.5.0.tgz"; 5366 path = fetchurl { 5367 - name = "html_webpack_plugin___html_webpack_plugin_4.5.0.tgz"; 5368 - url = "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.0.tgz"; 5369 - sha1 = "625097650886b97ea5dae331c320e3238f6c121c"; 5370 }; 5371 } 5372 { ··· 5410 }; 5411 } 5412 { 5413 name = "i18n___i18n_0.13.2.tgz"; 5414 path = fetchurl { 5415 name = "i18n___i18n_0.13.2.tgz"; ··· 5442 }; 5443 } 5444 { 5445 - name = "icss_utils___icss_utils_4.1.1.tgz"; 5446 path = fetchurl { 5447 - name = "icss_utils___icss_utils_4.1.1.tgz"; 5448 - url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-4.1.1.tgz"; 5449 - sha1 = "21170b53789ee27447c2f47dd683081403f9a467"; 5450 }; 5451 } 5452 { ··· 5506 }; 5507 } 5508 { 5509 - name = "node-imgur.git"; 5510 - path = 5511 - let 5512 - repo = fetchgit { 5513 - url = "https://github.com/hackmdio/node-imgur.git"; 5514 - rev = "de0a7a1f1eb2cb6628385fedb990ad396a190573"; 5515 - sha256 = "11m1wyh6l3ngfgc3qdxa5drlagvniz82fi7c191nb27d3s0lcfmd"; 5516 - }; 5517 - in 5518 - runCommandNoCC "node-imgur.git" { buildInputs = [gnutar]; } '' 5519 - # Set u+w because tar-fs can't unpack archives with read-only dirs 5520 - # https://github.com/mafintosh/tar-fs/issues/79 5521 - tar cf $out --mode u+w -C ${repo} . 5522 - ''; 5523 - } 5524 - { 5525 name = "import_fresh___import_fresh_2.0.0.tgz"; 5526 path = fetchurl { 5527 name = "import_fresh___import_fresh_2.0.0.tgz"; ··· 5538 }; 5539 } 5540 { 5541 - name = "import_local___import_local_2.0.0.tgz"; 5542 path = fetchurl { 5543 - name = "import_local___import_local_2.0.0.tgz"; 5544 - url = "https://registry.yarnpkg.com/import-local/-/import-local-2.0.0.tgz"; 5545 - sha1 = "55070be38a5993cf18ef6db7e961f5bee5c5a09d"; 5546 }; 5547 } 5548 { 5549 - name = "imports_loader___imports_loader_0.8.0.tgz"; 5550 path = fetchurl { 5551 - name = "imports_loader___imports_loader_0.8.0.tgz"; 5552 - url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-0.8.0.tgz"; 5553 - sha1 = "030ea51b8ca05977c40a3abfd9b4088fe0be9a69"; 5554 }; 5555 } 5556 { ··· 5642 }; 5643 } 5644 { 5645 - name = "inquirer___inquirer_6.5.2.tgz"; 5646 - path = fetchurl { 5647 - name = "inquirer___inquirer_6.5.2.tgz"; 5648 - url = "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.2.tgz"; 5649 - sha1 = "ad50942375d036d327ff528c08bd5fab089928ca"; 5650 - }; 5651 - } 5652 - { 5653 - name = "interpret___interpret_1.4.0.tgz"; 5654 path = fetchurl { 5655 - name = "interpret___interpret_1.4.0.tgz"; 5656 - url = "https://registry.yarnpkg.com/interpret/-/interpret-1.4.0.tgz"; 5657 - sha1 = "665ab8bc4da27a774a40584e812e3e0fa45b1a1e"; 5658 }; 5659 } 5660 { ··· 5714 }; 5715 } 5716 { 5717 - name = "is_alphanumeric___is_alphanumeric_1.0.0.tgz"; 5718 - path = fetchurl { 5719 - name = "is_alphanumeric___is_alphanumeric_1.0.0.tgz"; 5720 - url = "https://registry.yarnpkg.com/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz"; 5721 - sha1 = "4a9cef71daf4c001c1d81d63d140cf53fd6889f4"; 5722 - }; 5723 - } 5724 - { 5725 name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz"; 5726 path = fetchurl { 5727 name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz"; ··· 5754 }; 5755 } 5756 { 5757 name = "is_binary_path___is_binary_path_1.0.1.tgz"; 5758 path = fetchurl { 5759 name = "is_binary_path___is_binary_path_1.0.1.tgz"; ··· 5778 }; 5779 } 5780 { 5781 name = "is_buffer___is_buffer_1.1.6.tgz"; 5782 path = fetchurl { 5783 name = "is_buffer___is_buffer_1.1.6.tgz"; ··· 5794 }; 5795 } 5796 { 5797 - name = "is_callable___is_callable_1.2.2.tgz"; 5798 path = fetchurl { 5799 - name = "is_callable___is_callable_1.2.2.tgz"; 5800 - url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.2.tgz"; 5801 - sha1 = "c7c6715cd22d4ddb48d3e19970223aceabb080d9"; 5802 }; 5803 } 5804 { ··· 5810 }; 5811 } 5812 { 5813 - name = "is_core_module___is_core_module_2.2.0.tgz"; 5814 path = fetchurl { 5815 - name = "is_core_module___is_core_module_2.2.0.tgz"; 5816 - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz"; 5817 - sha1 = "97037ef3d52224d85163f5597b2b63d9afed981a"; 5818 }; 5819 } 5820 { ··· 5994 }; 5995 } 5996 { 5997 name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; 5998 path = fetchurl { 5999 name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; 6000 url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz"; 6001 sha1 = "3de746c18dda2319241a53675908d8f766f11c24"; 6002 }; 6003 } 6004 { ··· 6042 }; 6043 } 6044 { 6045 - name = "is_plain_obj___is_plain_obj_1.1.0.tgz"; 6046 - path = fetchurl { 6047 - name = "is_plain_obj___is_plain_obj_1.1.0.tgz"; 6048 - url = "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz"; 6049 - sha1 = "71a50c8429dfca773c92a390a4a03b39fcd51d3e"; 6050 - }; 6051 - } 6052 - { 6053 name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; 6054 path = fetchurl { 6055 name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; ··· 6082 }; 6083 } 6084 { 6085 - name = "is_promise___is_promise_2.2.2.tgz"; 6086 - path = fetchurl { 6087 - name = "is_promise___is_promise_2.2.2.tgz"; 6088 - url = "https://registry.yarnpkg.com/is-promise/-/is-promise-2.2.2.tgz"; 6089 - sha1 = "39ab959ccbf9a774cf079f7b40c7a26f763135f1"; 6090 - }; 6091 - } 6092 - { 6093 name = "is_property___is_property_1.0.2.tgz"; 6094 path = fetchurl { 6095 name = "is_property___is_property_1.0.2.tgz"; ··· 6098 }; 6099 } 6100 { 6101 - name = "is_regex___is_regex_1.1.1.tgz"; 6102 path = fetchurl { 6103 - name = "is_regex___is_regex_1.1.1.tgz"; 6104 - url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.1.tgz"; 6105 - sha1 = "c6f98aacc546f6cec5468a07b7b153ab564a57b9"; 6106 }; 6107 } 6108 { ··· 6114 }; 6115 } 6116 { 6117 name = "is_stream___is_stream_2.0.0.tgz"; 6118 path = fetchurl { 6119 name = "is_stream___is_stream_2.0.0.tgz"; ··· 6130 }; 6131 } 6132 { 6133 - name = "is_svg___is_svg_3.0.0.tgz"; 6134 path = fetchurl { 6135 - name = "is_svg___is_svg_3.0.0.tgz"; 6136 - url = "https://registry.yarnpkg.com/is-svg/-/is-svg-3.0.0.tgz"; 6137 - sha1 = "9321dbd29c212e5ca99c4fa9794c714bcafa2f75"; 6138 }; 6139 } 6140 { ··· 6146 }; 6147 } 6148 { 6149 name = "is_typedarray___is_typedarray_1.0.0.tgz"; 6150 path = fetchurl { 6151 name = "is_typedarray___is_typedarray_1.0.0.tgz"; ··· 6154 }; 6155 } 6156 { 6157 - name = "is_what___is_what_3.12.0.tgz"; 6158 path = fetchurl { 6159 - name = "is_what___is_what_3.12.0.tgz"; 6160 - url = "https://registry.yarnpkg.com/is-what/-/is-what-3.12.0.tgz"; 6161 - sha1 = "f4405ce4bd6dd420d3ced51a026fb90e03705e55"; 6162 }; 6163 } 6164 { 6165 - name = "is_whitespace_character___is_whitespace_character_1.0.4.tgz"; 6166 path = fetchurl { 6167 - name = "is_whitespace_character___is_whitespace_character_1.0.4.tgz"; 6168 - url = "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.4.tgz"; 6169 - sha1 = "0858edd94a95594c7c9dd0b5c174ec6e45ee4aa7"; 6170 }; 6171 } 6172 { ··· 6175 name = "is_windows___is_windows_1.0.2.tgz"; 6176 url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; 6177 sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; 6178 - }; 6179 - } 6180 - { 6181 - name = "is_word_character___is_word_character_1.0.4.tgz"; 6182 - path = fetchurl { 6183 - name = "is_word_character___is_word_character_1.0.4.tgz"; 6184 - url = "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.4.tgz"; 6185 - sha1 = "ce0e73216f98599060592f62ff31354ddbeb0230"; 6186 }; 6187 } 6188 { ··· 6218 }; 6219 } 6220 { 6221 name = "isexe___isexe_2.0.0.tgz"; 6222 path = fetchurl { 6223 name = "isexe___isexe_2.0.0.tgz"; ··· 6247 name = "isstream___isstream_0.1.2.tgz"; 6248 url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; 6249 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 6250 }; 6251 } 6252 { ··· 6274 }; 6275 } 6276 { 6277 - name = "jquery___jquery_3.5.1.tgz"; 6278 - path = fetchurl { 6279 - name = "jquery___jquery_3.5.1.tgz"; 6280 - url = "https://registry.yarnpkg.com/jquery/-/jquery-3.5.1.tgz"; 6281 - sha1 = "d7b4d08e1bfdb86ad2f1a3d039ea17304717abb5"; 6282 - }; 6283 - } 6284 - { 6285 - name = "js_beautify___js_beautify_1.13.4.tgz"; 6286 path = fetchurl { 6287 - name = "js_beautify___js_beautify_1.13.4.tgz"; 6288 - url = "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.13.4.tgz"; 6289 - sha1 = "1cad80b9e89cfc455b3a14f0eaf4dc10b6ae1206"; 6290 }; 6291 } 6292 { ··· 6330 }; 6331 } 6332 { 6333 name = "js_yaml___js_yaml_3.14.1.tgz"; 6334 path = fetchurl { 6335 name = "js_yaml___js_yaml_3.14.1.tgz"; ··· 6338 }; 6339 } 6340 { 6341 name = "jsbi___jsbi_3.1.4.tgz"; 6342 path = fetchurl { 6343 name = "jsbi___jsbi_3.1.4.tgz"; ··· 6359 name = "jsdom_nogyp___jsdom_nogyp_0.8.3.tgz"; 6360 url = "https://registry.yarnpkg.com/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz"; 6361 sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc"; 6362 - }; 6363 - } 6364 - { 6365 - name = "jsdom___jsdom_11.12.0.tgz"; 6366 - path = fetchurl { 6367 - name = "jsdom___jsdom_11.12.0.tgz"; 6368 - url = "https://registry.yarnpkg.com/jsdom/-/jsdom-11.12.0.tgz"; 6369 - sha1 = "1a80d40ddd378a1de59656e9e6dc5a3ba8657bc8"; 6370 }; 6371 } 6372 { ··· 6418 }; 6419 } 6420 { 6421 name = "json_schema___json_schema_0.2.3.tgz"; 6422 path = fetchurl { 6423 name = "json_schema___json_schema_0.2.3.tgz"; ··· 6466 }; 6467 } 6468 { 6469 - name = "json5___json5_2.1.3.tgz"; 6470 - path = fetchurl { 6471 - name = "json5___json5_2.1.3.tgz"; 6472 - url = "https://registry.yarnpkg.com/json5/-/json5-2.1.3.tgz"; 6473 - sha1 = "c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"; 6474 - }; 6475 - } 6476 - { 6477 - name = "jsonfile___jsonfile_4.0.0.tgz"; 6478 path = fetchurl { 6479 - name = "jsonfile___jsonfile_4.0.0.tgz"; 6480 - url = "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz"; 6481 - sha1 = "8771aae0799b64076b76640fca058f9c10e33ecb"; 6482 }; 6483 } 6484 { ··· 6530 }; 6531 } 6532 { 6533 - name = "khroma___khroma_1.2.0.tgz"; 6534 path = fetchurl { 6535 - name = "khroma___khroma_1.2.0.tgz"; 6536 - url = "https://registry.yarnpkg.com/khroma/-/khroma-1.2.0.tgz"; 6537 - sha1 = "46dcc9d7533923c228b51724db108f11fec108d8"; 6538 }; 6539 } 6540 { ··· 6570 }; 6571 } 6572 { 6573 name = "kuler___kuler_2.0.0.tgz"; 6574 path = fetchurl { 6575 name = "kuler___kuler_2.0.0.tgz"; ··· 6594 }; 6595 } 6596 { 6597 - name = "ldap_filter___ldap_filter_0.2.2.tgz"; 6598 - path = fetchurl { 6599 - name = "ldap_filter___ldap_filter_0.2.2.tgz"; 6600 - url = "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.2.2.tgz"; 6601 - sha1 = "f2b842be0b86da3352798505b31ebcae590d77d0"; 6602 - }; 6603 - } 6604 - { 6605 - name = "ldapauth_fork___ldapauth_fork_4.3.3.tgz"; 6606 path = fetchurl { 6607 - name = "ldapauth_fork___ldapauth_fork_4.3.3.tgz"; 6608 - url = "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-4.3.3.tgz"; 6609 - sha1 = "d62c8f18a5035fd47a572f2ac7aa8c8227b3f4c2"; 6610 }; 6611 } 6612 { 6613 - name = "ldapjs___ldapjs_1.0.2.tgz"; 6614 path = fetchurl { 6615 - name = "ldapjs___ldapjs_1.0.2.tgz"; 6616 - url = "https://registry.yarnpkg.com/ldapjs/-/ldapjs-1.0.2.tgz"; 6617 - sha1 = "544ff7032b7b83c68f0701328d9297aa694340f9"; 6618 }; 6619 } 6620 { 6621 - name = "left_pad___left_pad_1.3.0.tgz"; 6622 path = fetchurl { 6623 - name = "left_pad___left_pad_1.3.0.tgz"; 6624 - url = "https://registry.yarnpkg.com/left-pad/-/left-pad-1.3.0.tgz"; 6625 - sha1 = "5b8a3a7765dfe001261dde915589e782f8c94d1e"; 6626 }; 6627 } 6628 { 6629 - name = "less_loader___less_loader_5.0.0.tgz"; 6630 path = fetchurl { 6631 - name = "less_loader___less_loader_5.0.0.tgz"; 6632 - url = "https://registry.yarnpkg.com/less-loader/-/less-loader-5.0.0.tgz"; 6633 - sha1 = "498dde3a6c6c4f887458ee9ed3f086a12ad1b466"; 6634 }; 6635 } 6636 { 6637 - name = "less___less_3.13.1.tgz"; 6638 path = fetchurl { 6639 - name = "less___less_3.13.1.tgz"; 6640 - url = "https://registry.yarnpkg.com/less/-/less-3.13.1.tgz"; 6641 - sha1 = "0ebc91d2a0e9c0c6735b83d496b0ab0583077909"; 6642 }; 6643 } 6644 { 6645 - name = "levn___levn_0.3.0.tgz"; 6646 path = fetchurl { 6647 - name = "levn___levn_0.3.0.tgz"; 6648 - url = "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz"; 6649 - sha1 = "3b09924edf9f083c0490fdd4c0bc4421e04764ee"; 6650 }; 6651 } 6652 { ··· 6666 }; 6667 } 6668 { 6669 - name = "linkify_it___linkify_it_2.2.0.tgz"; 6670 path = fetchurl { 6671 - name = "linkify_it___linkify_it_2.2.0.tgz"; 6672 - url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-2.2.0.tgz"; 6673 - sha1 = "e3b54697e78bf915c70a38acd78fd09e0058b1cf"; 6674 }; 6675 } 6676 { 6677 - name = "list.js___list.js_1.5.0.tgz"; 6678 path = fetchurl { 6679 - name = "list.js___list.js_1.5.0.tgz"; 6680 - url = "https://registry.yarnpkg.com/list.js/-/list.js-1.5.0.tgz"; 6681 - sha1 = "a4cbfc8281ddefc02fdb2d30c8748bfae25fbcda"; 6682 }; 6683 } 6684 { ··· 6746 }; 6747 } 6748 { 6749 name = "lodash.assignin___lodash.assignin_4.2.0.tgz"; 6750 path = fetchurl { 6751 name = "lodash.assignin___lodash.assignin_4.2.0.tgz"; ··· 6762 }; 6763 } 6764 { 6765 name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; 6766 path = fetchurl { 6767 name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; ··· 6799 name = "lodash.foreach___lodash.foreach_4.5.0.tgz"; 6800 url = "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; 6801 sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53"; 6802 }; 6803 } 6804 { ··· 6866 }; 6867 } 6868 { 6869 - name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; 6870 path = fetchurl { 6871 - name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; 6872 - url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; 6873 - sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; 6874 }; 6875 } 6876 { ··· 6890 }; 6891 } 6892 { 6893 - name = "lodash___lodash_4.17.20.tgz"; 6894 path = fetchurl { 6895 - name = "lodash___lodash_4.17.20.tgz"; 6896 - url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz"; 6897 - sha1 = "b44a9b6297bcb698f1c51a3545a2b3b368d59c52"; 6898 }; 6899 } 6900 { ··· 6967 name = "lru_cache___lru_cache_6.0.0.tgz"; 6968 url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; 6969 sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"; 6970 - }; 6971 - } 6972 - { 6973 - name = "lru_queue___lru_queue_0.1.0.tgz"; 6974 - path = fetchurl { 6975 - name = "lru_queue___lru_queue_0.1.0.tgz"; 6976 - url = "https://registry.yarnpkg.com/lru-queue/-/lru-queue-0.1.0.tgz"; 6977 - sha1 = "2738bd9f0d3cf4f84490c5736c48699ac632cda3"; 6978 }; 6979 } 6980 { ··· 7058 }; 7059 } 7060 { 7061 - name = "mariadb___mariadb_2.5.2.tgz"; 7062 - path = fetchurl { 7063 - name = "mariadb___mariadb_2.5.2.tgz"; 7064 - url = "https://registry.yarnpkg.com/mariadb/-/mariadb-2.5.2.tgz"; 7065 - sha1 = "0046331541589a9c0405507d91d79bcc972b3f5e"; 7066 - }; 7067 - } 7068 - { 7069 - name = "markdown_escapes___markdown_escapes_1.0.4.tgz"; 7070 path = fetchurl { 7071 - name = "markdown_escapes___markdown_escapes_1.0.4.tgz"; 7072 - url = "https://registry.yarnpkg.com/markdown-escapes/-/markdown-escapes-1.0.4.tgz"; 7073 - sha1 = "c95415ef451499d7602b91095f3c8e8975f78535"; 7074 }; 7075 } 7076 { ··· 7090 }; 7091 } 7092 { 7093 - name = "markdown_it_container___markdown_it_container_2.0.0.tgz"; 7094 path = fetchurl { 7095 - name = "markdown_it_container___markdown_it_container_2.0.0.tgz"; 7096 - url = "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-2.0.0.tgz"; 7097 - sha1 = "0019b43fd02eefece2f1960a2895fba81a404695"; 7098 }; 7099 } 7100 { ··· 7106 }; 7107 } 7108 { 7109 - name = "markdown_it_emoji___markdown_it_emoji_1.4.0.tgz"; 7110 path = fetchurl { 7111 - name = "markdown_it_emoji___markdown_it_emoji_1.4.0.tgz"; 7112 - url = "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-1.4.0.tgz"; 7113 - sha1 = "9bee0e9a990a963ba96df6980c4fddb05dfb4dcc"; 7114 }; 7115 } 7116 { ··· 7130 }; 7131 } 7132 { 7133 - name = "markdown_it_ins___markdown_it_ins_2.0.0.tgz"; 7134 path = fetchurl { 7135 - name = "markdown_it_ins___markdown_it_ins_2.0.0.tgz"; 7136 - url = "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-2.0.0.tgz"; 7137 - sha1 = "a5aa6a30f1e2f71e9497567cfdff40f1fde67483"; 7138 }; 7139 } 7140 { 7141 - name = "markdown_it_mark___markdown_it_mark_2.0.0.tgz"; 7142 path = fetchurl { 7143 - name = "markdown_it_mark___markdown_it_mark_2.0.0.tgz"; 7144 - url = "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-2.0.0.tgz"; 7145 - sha1 = "46a1aa947105aed8188978e0a016179e404f42c7"; 7146 }; 7147 } 7148 { ··· 7178 }; 7179 } 7180 { 7181 - name = "markdown_it___markdown_it_10.0.0.tgz"; 7182 path = fetchurl { 7183 - name = "markdown_it___markdown_it_10.0.0.tgz"; 7184 - url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-10.0.0.tgz"; 7185 - sha1 = "abfc64f141b1722d663402044e43927f1f50a8dc"; 7186 }; 7187 } 7188 { 7189 - name = "markdown_table___markdown_table_2.0.0.tgz"; 7190 path = fetchurl { 7191 - name = "markdown_table___markdown_table_2.0.0.tgz"; 7192 - url = "https://registry.yarnpkg.com/markdown-table/-/markdown-table-2.0.0.tgz"; 7193 - sha1 = "194a90ced26d31fe753d8b9434430214c011865b"; 7194 - }; 7195 - } 7196 - { 7197 - name = "marked___marked_1.2.7.tgz"; 7198 - path = fetchurl { 7199 - name = "marked___marked_1.2.7.tgz"; 7200 - url = "https://registry.yarnpkg.com/marked/-/marked-1.2.7.tgz"; 7201 - sha1 = "6e14b595581d2319cdcf033a24caaf41455a01fb"; 7202 }; 7203 } 7204 { ··· 7258 }; 7259 } 7260 { 7261 - name = "mdast_util_compact___mdast_util_compact_2.0.1.tgz"; 7262 path = fetchurl { 7263 - name = "mdast_util_compact___mdast_util_compact_2.0.1.tgz"; 7264 - url = "https://registry.yarnpkg.com/mdast-util-compact/-/mdast-util-compact-2.0.1.tgz"; 7265 - sha1 = "cabc69a2f43103628326f35b1acf735d55c99490"; 7266 }; 7267 } 7268 { ··· 7274 }; 7275 } 7276 { 7277 name = "mdast_util_to_string___mdast_util_to_string_1.1.0.tgz"; 7278 path = fetchurl { 7279 name = "mdast_util_to_string___mdast_util_to_string_1.1.0.tgz"; ··· 7282 }; 7283 } 7284 { 7285 name = "mdn_data___mdn_data_2.0.14.tgz"; 7286 path = fetchurl { 7287 name = "mdn_data___mdn_data_2.0.14.tgz"; ··· 7314 }; 7315 } 7316 { 7317 - name = "memoizee___memoizee_0.4.15.tgz"; 7318 - path = fetchurl { 7319 - name = "memoizee___memoizee_0.4.15.tgz"; 7320 - url = "https://registry.yarnpkg.com/memoizee/-/memoizee-0.4.15.tgz"; 7321 - sha1 = "e6f3d2da863f318d02225391829a6c5956555b72"; 7322 - }; 7323 - } 7324 - { 7325 name = "memory_fs___memory_fs_0.4.1.tgz"; 7326 path = fetchurl { 7327 name = "memory_fs___memory_fs_0.4.1.tgz"; ··· 7346 }; 7347 } 7348 { 7349 name = "merge2___merge2_1.4.1.tgz"; 7350 path = fetchurl { 7351 name = "merge2___merge2_1.4.1.tgz"; ··· 7354 }; 7355 } 7356 { 7357 - name = "mermaid___mermaid_8.8.4.tgz"; 7358 path = fetchurl { 7359 - name = "mermaid___mermaid_8.8.4.tgz"; 7360 - url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.8.4.tgz"; 7361 - sha1 = "5ea699bcfa1ef848d78b2ce8efb1e0118f30d9f7"; 7362 }; 7363 } 7364 { ··· 7391 let 7392 repo = fetchgit { 7393 url = "https://github.com/hedgedoc/meta-marked"; 7394 - rev = "4fb5cb5a204969cc91e66eee92c0211188e69a2b"; 7395 - sha256 = "05fi7p37zqqbrrk929pp6945prg4qb27q0rm81ginw3aqawps33c"; 7396 }; 7397 in 7398 runCommandNoCC "meta-marked" { buildInputs = [gnutar]; } '' ··· 7402 ''; 7403 } 7404 { 7405 - name = "method_override___method_override_2.3.10.tgz"; 7406 path = fetchurl { 7407 - name = "method_override___method_override_2.3.10.tgz"; 7408 - url = "https://registry.yarnpkg.com/method-override/-/method-override-2.3.10.tgz"; 7409 - sha1 = "e3daf8d5dee10dd2dce7d4ae88d62bbee77476b4"; 7410 }; 7411 } 7412 { ··· 7415 name = "methods___methods_1.1.2.tgz"; 7416 url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; 7417 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 7418 }; 7419 } 7420 { ··· 7434 }; 7435 } 7436 { 7437 - name = "micromatch___micromatch_4.0.2.tgz"; 7438 path = fetchurl { 7439 - name = "micromatch___micromatch_4.0.2.tgz"; 7440 - url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz"; 7441 - sha1 = "4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"; 7442 }; 7443 } 7444 { ··· 7450 }; 7451 } 7452 { 7453 - name = "mime_db___mime_db_1.45.0.tgz"; 7454 path = fetchurl { 7455 - name = "mime_db___mime_db_1.45.0.tgz"; 7456 - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz"; 7457 - sha1 = "cceeda21ccd7c3a745eba2decd55d4b73e7879ea"; 7458 }; 7459 } 7460 { 7461 - name = "mime_types___mime_types_2.1.28.tgz"; 7462 path = fetchurl { 7463 - name = "mime_types___mime_types_2.1.28.tgz"; 7464 - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz"; 7465 - sha1 = "1160c4757eab2c5363888e005273ecf79d2a0ecd"; 7466 }; 7467 } 7468 { ··· 7482 }; 7483 } 7484 { 7485 - name = "mime___mime_2.4.7.tgz"; 7486 path = fetchurl { 7487 - name = "mime___mime_2.4.7.tgz"; 7488 - url = "https://registry.yarnpkg.com/mime/-/mime-2.4.7.tgz"; 7489 - sha1 = "962aed9be0ed19c91fd7dc2ece5d7f4e89a90d74"; 7490 }; 7491 } 7492 { 7493 - name = "mimic_fn___mimic_fn_1.2.0.tgz"; 7494 path = fetchurl { 7495 - name = "mimic_fn___mimic_fn_1.2.0.tgz"; 7496 - url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz"; 7497 - sha1 = "820c86a39334640e99516928bd03fca88057d022"; 7498 - }; 7499 - } 7500 - { 7501 - name = "mini_css_extract_plugin___mini_css_extract_plugin_0.12.0.tgz"; 7502 - path = fetchurl { 7503 - name = "mini_css_extract_plugin___mini_css_extract_plugin_0.12.0.tgz"; 7504 - url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-0.12.0.tgz"; 7505 - sha1 = "ddeb74fd6304ca9f99c1db74acc7d5b507705454"; 7506 }; 7507 } 7508 { ··· 7538 }; 7539 } 7540 { 7541 - name = "minimist___minimist_0.0.8.tgz"; 7542 - path = fetchurl { 7543 - name = "minimist___minimist_0.0.8.tgz"; 7544 - url = "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz"; 7545 - sha1 = "857fcabfc3397d2625b8228262e86aa7a011b05d"; 7546 - }; 7547 - } 7548 - { 7549 name = "minimist___minimist_1.2.5.tgz"; 7550 path = fetchurl { 7551 name = "minimist___minimist_1.2.5.tgz"; ··· 7554 }; 7555 } 7556 { 7557 - name = "minio___minio_6.0.0.tgz"; 7558 path = fetchurl { 7559 - name = "minio___minio_6.0.0.tgz"; 7560 - url = "https://registry.yarnpkg.com/minio/-/minio-6.0.0.tgz"; 7561 - sha1 = "7e514d38eaacf2264556b232f1c2c063cc6ca7ba"; 7562 }; 7563 } 7564 { ··· 7634 }; 7635 } 7636 { 7637 - name = "mkdirp___mkdirp_0.5.1.tgz"; 7638 - path = fetchurl { 7639 - name = "mkdirp___mkdirp_0.5.1.tgz"; 7640 - url = "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz"; 7641 - sha1 = "30057438eac6cf7f8c4767f38648d6697d75c903"; 7642 - }; 7643 - } 7644 - { 7645 name = "mkdirp___mkdirp_0.5.5.tgz"; 7646 path = fetchurl { 7647 name = "mkdirp___mkdirp_0.5.5.tgz"; ··· 7658 }; 7659 } 7660 { 7661 - name = "mocha___mocha_5.2.0.tgz"; 7662 path = fetchurl { 7663 - name = "mocha___mocha_5.2.0.tgz"; 7664 - url = "https://registry.yarnpkg.com/mocha/-/mocha-5.2.0.tgz"; 7665 - sha1 = "6d8ae508f59167f940f2b5b3c4a612ae50c90ae6"; 7666 }; 7667 } 7668 { ··· 7682 }; 7683 } 7684 { 7685 - name = "moment_timezone___moment_timezone_0.5.32.tgz"; 7686 path = fetchurl { 7687 - name = "moment_timezone___moment_timezone_0.5.32.tgz"; 7688 - url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.32.tgz"; 7689 - sha1 = "db7677cc3cc680fd30303ebd90b0da1ca0dfecc2"; 7690 }; 7691 } 7692 { ··· 7746 }; 7747 } 7748 { 7749 - name = "mustache___mustache_4.1.0.tgz"; 7750 path = fetchurl { 7751 - name = "mustache___mustache_4.1.0.tgz"; 7752 - url = "https://registry.yarnpkg.com/mustache/-/mustache-4.1.0.tgz"; 7753 - sha1 = "8c1b042238a982d2eb2d30efc6c14296ae3f699d"; 7754 - }; 7755 - } 7756 - { 7757 - name = "mute_stream___mute_stream_0.0.7.tgz"; 7758 - path = fetchurl { 7759 - name = "mute_stream___mute_stream_0.0.7.tgz"; 7760 - url = "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz"; 7761 - sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"; 7762 - }; 7763 - } 7764 - { 7765 - name = "mv___mv_2.1.1.tgz"; 7766 - path = fetchurl { 7767 - name = "mv___mv_2.1.1.tgz"; 7768 - url = "https://registry.yarnpkg.com/mv/-/mv-2.1.1.tgz"; 7769 - sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2"; 7770 }; 7771 } 7772 { ··· 7791 name = "nan___nan_2.14.2.tgz"; 7792 url = "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz"; 7793 sha1 = "f5376400695168f4cc694ac9393d0c9585eeea19"; 7794 }; 7795 } 7796 { ··· 7802 }; 7803 } 7804 { 7805 name = "nanomatch___nanomatch_1.2.13.tgz"; 7806 path = fetchurl { 7807 name = "nanomatch___nanomatch_1.2.13.tgz"; ··· 7818 }; 7819 } 7820 { 7821 - name = "native_request___native_request_1.0.8.tgz"; 7822 - path = fetchurl { 7823 - name = "native_request___native_request_1.0.8.tgz"; 7824 - url = "https://registry.yarnpkg.com/native-request/-/native-request-1.0.8.tgz"; 7825 - sha1 = "8f66bf606e0f7ea27c0e5995eb2f5d03e33ae6fb"; 7826 - }; 7827 - } 7828 - { 7829 name = "natural_compare___natural_compare_1.4.0.tgz"; 7830 path = fetchurl { 7831 name = "natural_compare___natural_compare_1.4.0.tgz"; 7832 url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; 7833 sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 7834 - }; 7835 - } 7836 - { 7837 - name = "ncp___ncp_2.0.0.tgz"; 7838 - path = fetchurl { 7839 - name = "ncp___ncp_2.0.0.tgz"; 7840 - url = "https://registry.yarnpkg.com/ncp/-/ncp-2.0.0.tgz"; 7841 - sha1 = "195a21d6c46e361d2fb1281ba38b91e9df7bdbb3"; 7842 }; 7843 } 7844 { ··· 7866 }; 7867 } 7868 { 7869 - name = "next_tick___next_tick_1.1.0.tgz"; 7870 - path = fetchurl { 7871 - name = "next_tick___next_tick_1.1.0.tgz"; 7872 - url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz"; 7873 - sha1 = "1836ee30ad56d67ef281b22bd199f709449b35eb"; 7874 - }; 7875 - } 7876 - { 7877 - name = "next_tick___next_tick_1.0.0.tgz"; 7878 - path = fetchurl { 7879 - name = "next_tick___next_tick_1.0.0.tgz"; 7880 - url = "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz"; 7881 - sha1 = "ca86d1fe8828169b0120208e3dc8424b9db8342c"; 7882 - }; 7883 - } 7884 - { 7885 - name = "nice_try___nice_try_1.0.5.tgz"; 7886 - path = fetchurl { 7887 - name = "nice_try___nice_try_1.0.5.tgz"; 7888 - url = "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz"; 7889 - sha1 = "a3378a7696ce7d223e88fc9b764bd7ef1089e366"; 7890 - }; 7891 - } 7892 - { 7893 name = "no_case___no_case_2.3.2.tgz"; 7894 path = fetchurl { 7895 name = "no_case___no_case_2.3.2.tgz"; ··· 7906 }; 7907 } 7908 { 7909 - name = "nocache___nocache_2.1.0.tgz"; 7910 path = fetchurl { 7911 - name = "nocache___nocache_2.1.0.tgz"; 7912 - url = "https://registry.yarnpkg.com/nocache/-/nocache-2.1.0.tgz"; 7913 - sha1 = "120c9ffec43b5729b1d5de88cd71aa75a0ba491f"; 7914 }; 7915 } 7916 { ··· 7930 }; 7931 } 7932 { 7933 name = "node_libs_browser___node_libs_browser_2.2.1.tgz"; 7934 path = fetchurl { 7935 name = "node_libs_browser___node_libs_browser_2.2.1.tgz"; ··· 7946 }; 7947 } 7948 { 7949 - name = "node_releases___node_releases_1.1.69.tgz"; 7950 path = fetchurl { 7951 - name = "node_releases___node_releases_1.1.69.tgz"; 7952 - url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.69.tgz"; 7953 - sha1 = "3149dbde53b781610cd8b486d62d86e26c3725f6"; 7954 }; 7955 } 7956 { ··· 7962 }; 7963 } 7964 { 7965 - name = "nopt___nopt_4.0.3.tgz"; 7966 path = fetchurl { 7967 - name = "nopt___nopt_4.0.3.tgz"; 7968 - url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz"; 7969 - sha1 = "a375cad9d02fd921278d954c2254d5aa57e15e48"; 7970 }; 7971 } 7972 { 7973 - name = "nopt___nopt_5.0.0.tgz"; 7974 path = fetchurl { 7975 - name = "nopt___nopt_5.0.0.tgz"; 7976 - url = "https://registry.yarnpkg.com/nopt/-/nopt-5.0.0.tgz"; 7977 - sha1 = "530942bb58a512fccafe53fe210f13a25355dc88"; 7978 }; 7979 } 7980 { ··· 8002 }; 8003 } 8004 { 8005 - name = "normalize_url___normalize_url_1.9.1.tgz"; 8006 - path = fetchurl { 8007 - name = "normalize_url___normalize_url_1.9.1.tgz"; 8008 - url = "https://registry.yarnpkg.com/normalize-url/-/normalize-url-1.9.1.tgz"; 8009 - sha1 = "2cc0d66b31ea23036458436e3620d85954c66c3c"; 8010 - }; 8011 - } 8012 - { 8013 name = "normalize_url___normalize_url_3.3.0.tgz"; 8014 path = fetchurl { 8015 name = "normalize_url___normalize_url_3.3.0.tgz"; ··· 8018 }; 8019 } 8020 { 8021 - name = "npm_bundled___npm_bundled_1.1.1.tgz"; 8022 path = fetchurl { 8023 - name = "npm_bundled___npm_bundled_1.1.1.tgz"; 8024 - url = "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.1.tgz"; 8025 - sha1 = "1edd570865a94cdb1bc8220775e29466c9fb234b"; 8026 }; 8027 } 8028 { ··· 8039 name = "npm_packlist___npm_packlist_1.4.8.tgz"; 8040 url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz"; 8041 sha1 = "56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e"; 8042 }; 8043 } 8044 { ··· 8074 }; 8075 } 8076 { 8077 - name = "nwsapi___nwsapi_2.2.0.tgz"; 8078 - path = fetchurl { 8079 - name = "nwsapi___nwsapi_2.2.0.tgz"; 8080 - url = "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz"; 8081 - sha1 = "204879a9e3d068ff2a55139c2c772780681a38b7"; 8082 - }; 8083 - } 8084 - { 8085 name = "oauth_sign___oauth_sign_0.9.0.tgz"; 8086 path = fetchurl { 8087 name = "oauth_sign___oauth_sign_0.9.0.tgz"; ··· 8114 }; 8115 } 8116 { 8117 - name = "object_inspect___object_inspect_1.9.0.tgz"; 8118 path = fetchurl { 8119 - name = "object_inspect___object_inspect_1.9.0.tgz"; 8120 - url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.9.0.tgz"; 8121 - sha1 = "c90521d74e1127b67266ded3394ad6116986533a"; 8122 }; 8123 } 8124 { 8125 - name = "object_is___object_is_1.1.4.tgz"; 8126 path = fetchurl { 8127 - name = "object_is___object_is_1.1.4.tgz"; 8128 - url = "https://registry.yarnpkg.com/object-is/-/object-is-1.1.4.tgz"; 8129 - sha1 = "63d6c83c00a43f4cbc9434eb9757c8a5b8565068"; 8130 }; 8131 } 8132 { ··· 8154 }; 8155 } 8156 { 8157 - name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.1.tgz"; 8158 path = fetchurl { 8159 - name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.1.tgz"; 8160 - url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.1.tgz"; 8161 - sha1 = "0dfda8d108074d9c563e80490c883b6661091544"; 8162 }; 8163 } 8164 { ··· 8178 }; 8179 } 8180 { 8181 - name = "object.values___object.values_1.1.2.tgz"; 8182 path = fetchurl { 8183 - name = "object.values___object.values_1.1.2.tgz"; 8184 - url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.2.tgz"; 8185 - sha1 = "7a2015e06fcb0f546bd652486ce8583a4731c731"; 8186 }; 8187 } 8188 { ··· 8218 }; 8219 } 8220 { 8221 - name = "onetime___onetime_2.0.1.tgz"; 8222 path = fetchurl { 8223 - name = "onetime___onetime_2.0.1.tgz"; 8224 - url = "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz"; 8225 - sha1 = "067428230fd67443b2794b22bba528b6867962d4"; 8226 }; 8227 } 8228 { 8229 - name = "openid___openid_2.0.7.tgz"; 8230 path = fetchurl { 8231 - name = "openid___openid_2.0.7.tgz"; 8232 - url = "https://registry.yarnpkg.com/openid/-/openid-2.0.7.tgz"; 8233 - sha1 = "37bf50af2aa692623364c004de35d41fd399c6e4"; 8234 }; 8235 } 8236 { ··· 8242 }; 8243 } 8244 { 8245 - name = "optionator___optionator_0.8.3.tgz"; 8246 path = fetchurl { 8247 - name = "optionator___optionator_0.8.3.tgz"; 8248 - url = "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz"; 8249 - sha1 = "84fa1d036fe9d3c7e21d99884b601167ec8fb495"; 8250 }; 8251 } 8252 { ··· 8335 name = "p_locate___p_locate_4.1.0.tgz"; 8336 url = "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz"; 8337 sha1 = "a3428bb7088b3a60292f66919278b7c297ad4f07"; 8338 }; 8339 } 8340 { ··· 8450 }; 8451 } 8452 { 8453 - name = "parse_json___parse_json_5.1.0.tgz"; 8454 - path = fetchurl { 8455 - name = "parse_json___parse_json_5.1.0.tgz"; 8456 - url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz"; 8457 - sha1 = "f96088cdf24a8faa9aea9a009f2d9d942c999646"; 8458 - }; 8459 - } 8460 - { 8461 - name = "parse_passwd___parse_passwd_1.0.0.tgz"; 8462 path = fetchurl { 8463 - name = "parse_passwd___parse_passwd_1.0.0.tgz"; 8464 - url = "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz"; 8465 - sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6"; 8466 }; 8467 } 8468 { 8469 - name = "parse5___parse5_4.0.0.tgz"; 8470 path = fetchurl { 8471 - name = "parse5___parse5_4.0.0.tgz"; 8472 - url = "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz"; 8473 - sha1 = "6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"; 8474 }; 8475 } 8476 { ··· 8522 }; 8523 } 8524 { 8525 - name = "passport_facebook___passport_facebook_2.1.1.tgz"; 8526 path = fetchurl { 8527 - name = "passport_facebook___passport_facebook_2.1.1.tgz"; 8528 - url = "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-2.1.1.tgz"; 8529 - sha1 = "c39d0b52ae4d59163245a4e21a7b9b6321303311"; 8530 }; 8531 } 8532 { ··· 8538 }; 8539 } 8540 { 8541 - name = "passport_gitlab2___passport_gitlab2_4.0.0.tgz"; 8542 path = fetchurl { 8543 - name = "passport_gitlab2___passport_gitlab2_4.0.0.tgz"; 8544 - url = "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-4.0.0.tgz"; 8545 - sha1 = "08de8b54d58cbe6f22f577f977f7874df3c26efb"; 8546 }; 8547 } 8548 { 8549 - name = "passport_google_oauth20___passport_google_oauth20_1.0.0.tgz"; 8550 path = fetchurl { 8551 - name = "passport_google_oauth20___passport_google_oauth20_1.0.0.tgz"; 8552 - url = "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-1.0.0.tgz"; 8553 - sha1 = "3b960e8a1d70d1dbe794615c827c68c40392a5d0"; 8554 }; 8555 } 8556 { 8557 - name = "passport_ldapauth___passport_ldapauth_2.1.4.tgz"; 8558 path = fetchurl { 8559 - name = "passport_ldapauth___passport_ldapauth_2.1.4.tgz"; 8560 - url = "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-2.1.4.tgz"; 8561 - sha1 = "2259e4e5d2d9c2b3d50a04f6640a941effda8da9"; 8562 }; 8563 } 8564 { ··· 8594 }; 8595 } 8596 { 8597 - name = "passport_saml___passport_saml_1.5.0.tgz"; 8598 path = fetchurl { 8599 - name = "passport_saml___passport_saml_1.5.0.tgz"; 8600 - url = "https://registry.yarnpkg.com/passport-saml/-/passport-saml-1.5.0.tgz"; 8601 - sha1 = "4f22526b577987fb2304219c29e05d2172fca5cf"; 8602 }; 8603 } 8604 { ··· 8674 }; 8675 } 8676 { 8677 - name = "path_is_inside___path_is_inside_1.0.2.tgz"; 8678 - path = fetchurl { 8679 - name = "path_is_inside___path_is_inside_1.0.2.tgz"; 8680 - url = "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz"; 8681 - sha1 = "365417dede44430d1c11af61027facf074bdfc53"; 8682 - }; 8683 - } 8684 - { 8685 - name = "path_key___path_key_2.0.1.tgz"; 8686 path = fetchurl { 8687 - name = "path_key___path_key_2.0.1.tgz"; 8688 - url = "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz"; 8689 - sha1 = "411cadb574c5a140d3a4b1910d40d80cc9f40b40"; 8690 }; 8691 } 8692 { ··· 8730 }; 8731 } 8732 { 8733 - name = "pbkdf2___pbkdf2_3.1.1.tgz"; 8734 path = fetchurl { 8735 - name = "pbkdf2___pbkdf2_3.1.1.tgz"; 8736 - url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.1.tgz"; 8737 - sha1 = "cb8724b0fada984596856d1a6ebafd3584654b94"; 8738 }; 8739 } 8740 { 8741 - name = "pdfobject___pdfobject_2.2.4.tgz"; 8742 path = fetchurl { 8743 - name = "pdfobject___pdfobject_2.2.4.tgz"; 8744 - url = "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.2.4.tgz"; 8745 - sha1 = "ccb3c191129298a471e9ccb59c88a3ee0b7c7530"; 8746 }; 8747 } 8748 { ··· 8762 }; 8763 } 8764 { 8765 - name = "pg_connection_string___pg_connection_string_2.4.0.tgz"; 8766 path = fetchurl { 8767 - name = "pg_connection_string___pg_connection_string_2.4.0.tgz"; 8768 - url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.4.0.tgz"; 8769 - sha1 = "c979922eb47832999a204da5dbe1ebf2341b6a10"; 8770 }; 8771 } 8772 { ··· 8786 }; 8787 } 8788 { 8789 - name = "pg_pool___pg_pool_3.2.2.tgz"; 8790 path = fetchurl { 8791 - name = "pg_pool___pg_pool_3.2.2.tgz"; 8792 - url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.2.2.tgz"; 8793 - sha1 = "a560e433443ed4ad946b84d774b3f22452694dff"; 8794 }; 8795 } 8796 { 8797 - name = "pg_protocol___pg_protocol_1.4.0.tgz"; 8798 path = fetchurl { 8799 - name = "pg_protocol___pg_protocol_1.4.0.tgz"; 8800 - url = "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.4.0.tgz"; 8801 - sha1 = "43a71a92f6fe3ac559952555aa3335c8cb4908be"; 8802 }; 8803 } 8804 { ··· 8810 }; 8811 } 8812 { 8813 - name = "pg___pg_8.5.1.tgz"; 8814 path = fetchurl { 8815 - name = "pg___pg_8.5.1.tgz"; 8816 - url = "https://registry.yarnpkg.com/pg/-/pg-8.5.1.tgz"; 8817 - sha1 = "34dcb15f6db4a29c702bf5031ef2e1e25a06a120"; 8818 }; 8819 } 8820 { ··· 8826 }; 8827 } 8828 { 8829 - name = "picomatch___picomatch_2.2.2.tgz"; 8830 path = fetchurl { 8831 - name = "picomatch___picomatch_2.2.2.tgz"; 8832 - url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz"; 8833 - sha1 = "21f333e9b6b8eaff02468f5146ea406d345f4dad"; 8834 }; 8835 } 8836 { ··· 8890 }; 8891 } 8892 { 8893 name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz"; 8894 path = fetchurl { 8895 name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz"; ··· 8906 }; 8907 } 8908 { 8909 - name = "pn___pn_1.1.0.tgz"; 8910 - path = fetchurl { 8911 - name = "pn___pn_1.1.0.tgz"; 8912 - url = "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz"; 8913 - sha1 = "e2f4cef0e219f463c179ab37463e4e1ecdccbafb"; 8914 - }; 8915 - } 8916 - { 8917 - name = "pop_iterate___pop_iterate_1.0.1.tgz"; 8918 - path = fetchurl { 8919 - name = "pop_iterate___pop_iterate_1.0.1.tgz"; 8920 - url = "https://registry.yarnpkg.com/pop-iterate/-/pop-iterate-1.0.1.tgz"; 8921 - sha1 = "ceacfdab4abf353d7a0f2aaa2c1fc7b3f9413ba3"; 8922 - }; 8923 - } 8924 - { 8925 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 8926 path = fetchurl { 8927 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; ··· 9034 }; 9035 } 9036 { 9037 - name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz"; 9038 path = fetchurl { 9039 - name = "postcss_modules_extract_imports___postcss_modules_extract_imports_2.0.0.tgz"; 9040 - url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz"; 9041 - sha1 = "818719a1ae1da325f9832446b01136eeb493cd7e"; 9042 }; 9043 } 9044 { 9045 - name = "postcss_modules_local_by_default___postcss_modules_local_by_default_3.0.3.tgz"; 9046 path = fetchurl { 9047 - name = "postcss_modules_local_by_default___postcss_modules_local_by_default_3.0.3.tgz"; 9048 - url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-3.0.3.tgz"; 9049 - sha1 = "bb14e0cc78279d504dbdcbfd7e0ca28993ffbbb0"; 9050 }; 9051 } 9052 { 9053 - name = "postcss_modules_scope___postcss_modules_scope_2.2.0.tgz"; 9054 path = fetchurl { 9055 - name = "postcss_modules_scope___postcss_modules_scope_2.2.0.tgz"; 9056 - url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-2.2.0.tgz"; 9057 - sha1 = "385cae013cc7743f5a7d7602d1073a89eaae62ee"; 9058 }; 9059 } 9060 { 9061 - name = "postcss_modules_values___postcss_modules_values_3.0.0.tgz"; 9062 path = fetchurl { 9063 - name = "postcss_modules_values___postcss_modules_values_3.0.0.tgz"; 9064 - url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-3.0.0.tgz"; 9065 - sha1 = "5b5000d6ebae29b4255301b4a3a54574423e7f10"; 9066 }; 9067 } 9068 { ··· 9170 }; 9171 } 9172 { 9173 - name = "postcss_selector_parser___postcss_selector_parser_6.0.4.tgz"; 9174 path = fetchurl { 9175 - name = "postcss_selector_parser___postcss_selector_parser_6.0.4.tgz"; 9176 - url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz"; 9177 - sha1 = "56075a1380a04604c38b063ea7767a129af5c2b3"; 9178 }; 9179 } 9180 { 9181 - name = "postcss_svgo___postcss_svgo_4.0.2.tgz"; 9182 path = fetchurl { 9183 - name = "postcss_svgo___postcss_svgo_4.0.2.tgz"; 9184 - url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.2.tgz"; 9185 - sha1 = "17b997bc711b333bab143aaed3b8d3d6e3d38258"; 9186 }; 9187 } 9188 { ··· 9218 }; 9219 } 9220 { 9221 name = "postgres_array___postgres_array_2.0.0.tgz"; 9222 path = fetchurl { 9223 name = "postgres_array___postgres_array_2.0.0.tgz"; ··· 9258 }; 9259 } 9260 { 9261 - name = "prelude_ls___prelude_ls_1.1.2.tgz"; 9262 - path = fetchurl { 9263 - name = "prelude_ls___prelude_ls_1.1.2.tgz"; 9264 - url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz"; 9265 - sha1 = "21932a549f5e52ffd9a827f570e04be62a97da54"; 9266 - }; 9267 - } 9268 - { 9269 - name = "prepend_http___prepend_http_1.0.4.tgz"; 9270 path = fetchurl { 9271 - name = "prepend_http___prepend_http_1.0.4.tgz"; 9272 - url = "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz"; 9273 - sha1 = "d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"; 9274 }; 9275 } 9276 { ··· 9346 }; 9347 } 9348 { 9349 - name = "promise_inflight___promise_inflight_1.0.1.tgz"; 9350 path = fetchurl { 9351 - name = "promise_inflight___promise_inflight_1.0.1.tgz"; 9352 - url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz"; 9353 - sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 9354 }; 9355 } 9356 { 9357 - name = "proto_list___proto_list_1.2.4.tgz"; 9358 path = fetchurl { 9359 - name = "proto_list___proto_list_1.2.4.tgz"; 9360 - url = "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz"; 9361 - sha1 = "212d5bfe1318306a420f6402b8e26ff39647a849"; 9362 }; 9363 } 9364 { ··· 9458 }; 9459 } 9460 { 9461 - name = "q___q_2.0.3.tgz"; 9462 - path = fetchurl { 9463 - name = "q___q_2.0.3.tgz"; 9464 - url = "https://registry.yarnpkg.com/q/-/q-2.0.3.tgz"; 9465 - sha1 = "75b8db0255a1a5af82f58c3f3aaa1efec7d0d134"; 9466 - }; 9467 - } 9468 - { 9469 name = "qs___qs_2.3.3.tgz"; 9470 path = fetchurl { 9471 name = "qs___qs_2.3.3.tgz"; ··· 9490 }; 9491 } 9492 { 9493 - name = "query_string___query_string_4.3.4.tgz"; 9494 - path = fetchurl { 9495 - name = "query_string___query_string_4.3.4.tgz"; 9496 - url = "https://registry.yarnpkg.com/query-string/-/query-string-4.3.4.tgz"; 9497 - sha1 = "bbb693b9ca915c232515b228b1a02b609043dbeb"; 9498 - }; 9499 - } 9500 - { 9501 name = "querystring_es3___querystring_es3_0.2.1.tgz"; 9502 path = fetchurl { 9503 name = "querystring_es3___querystring_es3_0.2.1.tgz"; ··· 9514 }; 9515 } 9516 { 9517 name = "random_bytes___random_bytes_1.0.0.tgz"; 9518 path = fetchurl { 9519 name = "random_bytes___random_bytes_1.0.0.tgz"; ··· 9626 }; 9627 } 9628 { 9629 - name = "readable_stream___readable_stream_1.0.34.tgz"; 9630 - path = fetchurl { 9631 - name = "readable_stream___readable_stream_1.0.34.tgz"; 9632 - url = "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz"; 9633 - sha1 = "125820e34bc842d2f2aaafafe4c2916ee32c157c"; 9634 - }; 9635 - } 9636 - { 9637 name = "readable_stream___readable_stream_3.6.0.tgz"; 9638 path = fetchurl { 9639 name = "readable_stream___readable_stream_3.6.0.tgz"; ··· 9690 }; 9691 } 9692 { 9693 - name = "reduce_component___reduce_component_1.0.1.tgz"; 9694 path = fetchurl { 9695 - name = "reduce_component___reduce_component_1.0.1.tgz"; 9696 - url = "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz"; 9697 - sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da"; 9698 }; 9699 } 9700 { 9701 - name = "referrer_policy___referrer_policy_1.2.0.tgz"; 9702 path = fetchurl { 9703 - name = "referrer_policy___referrer_policy_1.2.0.tgz"; 9704 - url = "https://registry.yarnpkg.com/referrer-policy/-/referrer-policy-1.2.0.tgz"; 9705 - sha1 = "b99cfb8b57090dc454895ef897a4cc35ef67a98e"; 9706 }; 9707 } 9708 { ··· 9754 }; 9755 } 9756 { 9757 - name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz"; 9758 path = fetchurl { 9759 - name = "regexp.prototype.flags___regexp.prototype.flags_1.3.0.tgz"; 9760 - url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz"; 9761 - sha1 = "7aba89b3c13a64509dabcf3ca8d9fbb9bdf5cb75"; 9762 }; 9763 } 9764 { 9765 - name = "regexpp___regexpp_2.0.1.tgz"; 9766 path = fetchurl { 9767 - name = "regexpp___regexpp_2.0.1.tgz"; 9768 - url = "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz"; 9769 - sha1 = "8d19d31cf632482b589049f8281f93dbcba4d07f"; 9770 }; 9771 } 9772 { ··· 9802 }; 9803 } 9804 { 9805 - name = "remark_cli___remark_cli_8.0.1.tgz"; 9806 path = fetchurl { 9807 - name = "remark_cli___remark_cli_8.0.1.tgz"; 9808 - url = "https://registry.yarnpkg.com/remark-cli/-/remark-cli-8.0.1.tgz"; 9809 - sha1 = "093e9f27c1d56a591f4c44c017de5749d4e79a08"; 9810 }; 9811 } 9812 { ··· 9930 }; 9931 } 9932 { 9933 - name = "remark_lint_list_item_spacing___remark_lint_list_item_spacing_2.0.1.tgz"; 9934 path = fetchurl { 9935 - name = "remark_lint_list_item_spacing___remark_lint_list_item_spacing_2.0.1.tgz"; 9936 - url = "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-2.0.1.tgz"; 9937 - sha1 = "864ddda464d5cd11f725c83f00bb240538661d50"; 9938 }; 9939 } 9940 { ··· 9962 }; 9963 } 9964 { 9965 - name = "remark_lint_no_blockquote_without_marker___remark_lint_no_blockquote_without_marker_3.0.1.tgz"; 9966 path = fetchurl { 9967 - name = "remark_lint_no_blockquote_without_marker___remark_lint_no_blockquote_without_marker_3.0.1.tgz"; 9968 - url = "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-3.0.1.tgz"; 9969 - sha1 = "fb1d5a87ee6f21b731bb2ee52df55632c519a5eb"; 9970 }; 9971 } 9972 { 9973 - name = "remark_lint_no_consecutive_blank_lines___remark_lint_no_consecutive_blank_lines_2.0.1.tgz"; 9974 path = fetchurl { 9975 - name = "remark_lint_no_consecutive_blank_lines___remark_lint_no_consecutive_blank_lines_2.0.1.tgz"; 9976 - url = "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-2.0.1.tgz"; 9977 - sha1 = "4163fa21619fe69325333f83eed8a933ed32e7ec"; 9978 }; 9979 } 9980 { ··· 10042 }; 10043 } 10044 { 10045 - name = "remark_lint_no_inline_padding___remark_lint_no_inline_padding_2.0.1.tgz"; 10046 path = fetchurl { 10047 - name = "remark_lint_no_inline_padding___remark_lint_no_inline_padding_2.0.1.tgz"; 10048 - url = "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-2.0.1.tgz"; 10049 - sha1 = "630b546566d34bde87943da318a80fc7ff856f1f"; 10050 }; 10051 } 10052 { ··· 10090 }; 10091 } 10092 { 10093 - name = "remark_lint_no_table_indentation___remark_lint_no_table_indentation_2.0.1.tgz"; 10094 path = fetchurl { 10095 - name = "remark_lint_no_table_indentation___remark_lint_no_table_indentation_2.0.1.tgz"; 10096 - url = "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-2.0.1.tgz"; 10097 - sha1 = "67ef344389fa40be9c6017835cf58ca417c417d0"; 10098 }; 10099 } 10100 { ··· 10130 }; 10131 } 10132 { 10133 - name = "remark_lint_table_cell_padding___remark_lint_table_cell_padding_2.0.1.tgz"; 10134 path = fetchurl { 10135 - name = "remark_lint_table_cell_padding___remark_lint_table_cell_padding_2.0.1.tgz"; 10136 - url = "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-2.0.1.tgz"; 10137 - sha1 = "b1e557ec44e1a33beb45578e97bf9441149379f6"; 10138 }; 10139 } 10140 { ··· 10146 }; 10147 } 10148 { 10149 - name = "remark_lint_table_pipes___remark_lint_table_pipes_2.0.1.tgz"; 10150 path = fetchurl { 10151 - name = "remark_lint_table_pipes___remark_lint_table_pipes_2.0.1.tgz"; 10152 - url = "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-2.0.1.tgz"; 10153 - sha1 = "b8594394f65053a030e8a51baa8504e388139a19"; 10154 }; 10155 } 10156 { ··· 10162 }; 10163 } 10164 { 10165 - name = "remark_lint___remark_lint_7.0.1.tgz"; 10166 path = fetchurl { 10167 - name = "remark_lint___remark_lint_7.0.1.tgz"; 10168 - url = "https://registry.yarnpkg.com/remark-lint/-/remark-lint-7.0.1.tgz"; 10169 - sha1 = "665a5cbea9f7c95e64593f69bb6816ee8343ffdf"; 10170 }; 10171 } 10172 { ··· 10178 }; 10179 } 10180 { 10181 - name = "remark_parse___remark_parse_8.0.3.tgz"; 10182 path = fetchurl { 10183 - name = "remark_parse___remark_parse_8.0.3.tgz"; 10184 - url = "https://registry.yarnpkg.com/remark-parse/-/remark-parse-8.0.3.tgz"; 10185 - sha1 = "9c62aa3b35b79a486454c690472906075f40c7e1"; 10186 }; 10187 } 10188 { 10189 - name = "remark_preset_lint_markdown_style_guide___remark_preset_lint_markdown_style_guide_3.0.1.tgz"; 10190 path = fetchurl { 10191 - name = "remark_preset_lint_markdown_style_guide___remark_preset_lint_markdown_style_guide_3.0.1.tgz"; 10192 - url = "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-3.0.1.tgz"; 10193 - sha1 = "7f160e2ded777bfb14d544e9f72c6873bdfb6da3"; 10194 }; 10195 } 10196 { 10197 - name = "remark_stringify___remark_stringify_8.1.1.tgz"; 10198 path = fetchurl { 10199 - name = "remark_stringify___remark_stringify_8.1.1.tgz"; 10200 - url = "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-8.1.1.tgz"; 10201 - sha1 = "e2a9dc7a7bf44e46a155ec78996db896780d8ce5"; 10202 }; 10203 } 10204 { 10205 - name = "remark___remark_12.0.1.tgz"; 10206 path = fetchurl { 10207 - name = "remark___remark_12.0.1.tgz"; 10208 - url = "https://registry.yarnpkg.com/remark/-/remark-12.0.1.tgz"; 10209 - sha1 = "f1ddf68db7be71ca2bad0a33cd3678b86b9c709f"; 10210 }; 10211 } 10212 { ··· 10226 }; 10227 } 10228 { 10229 - name = "repeat_element___repeat_element_1.1.3.tgz"; 10230 path = fetchurl { 10231 - name = "repeat_element___repeat_element_1.1.3.tgz"; 10232 - url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; 10233 - sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; 10234 }; 10235 } 10236 { ··· 10250 }; 10251 } 10252 { 10253 - name = "request_promise_core___request_promise_core_1.1.4.tgz"; 10254 - path = fetchurl { 10255 - name = "request_promise_core___request_promise_core_1.1.4.tgz"; 10256 - url = "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.4.tgz"; 10257 - sha1 = "3eedd4223208d419867b78ce815167d10593a22f"; 10258 - }; 10259 - } 10260 - { 10261 - name = "request_promise_native___request_promise_native_1.0.9.tgz"; 10262 - path = fetchurl { 10263 - name = "request_promise_native___request_promise_native_1.0.9.tgz"; 10264 - url = "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz"; 10265 - sha1 = "e407120526a5efdc9a39b28a5679bf47b9d9dc28"; 10266 - }; 10267 - } 10268 - { 10269 name = "request___request_2.88.2.tgz"; 10270 path = fetchurl { 10271 name = "request___request_2.88.2.tgz"; ··· 10282 }; 10283 } 10284 { 10285 - name = "require_main_filename___require_main_filename_2.0.0.tgz"; 10286 path = fetchurl { 10287 - name = "require_main_filename___require_main_filename_2.0.0.tgz"; 10288 - url = "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-2.0.0.tgz"; 10289 - sha1 = "d0b329ecc7cc0f61649f62215be69af54aa8989b"; 10290 }; 10291 } 10292 { 10293 - name = "resolve_cwd___resolve_cwd_2.0.0.tgz"; 10294 - path = fetchurl { 10295 - name = "resolve_cwd___resolve_cwd_2.0.0.tgz"; 10296 - url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz"; 10297 - sha1 = "00a9f7387556e27038eae232caa372a6a59b665a"; 10298 - }; 10299 - } 10300 - { 10301 - name = "resolve_dir___resolve_dir_1.0.1.tgz"; 10302 path = fetchurl { 10303 - name = "resolve_dir___resolve_dir_1.0.1.tgz"; 10304 - url = "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz"; 10305 - sha1 = "79a40644c362be82f26effe739c9bb5382046f43"; 10306 }; 10307 } 10308 { ··· 10338 }; 10339 } 10340 { 10341 - name = "resolve___resolve_1.19.0.tgz"; 10342 - path = fetchurl { 10343 - name = "resolve___resolve_1.19.0.tgz"; 10344 - url = "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz"; 10345 - sha1 = "1af5bf630409734a067cae29318aac7fa29a267c"; 10346 - }; 10347 - } 10348 - { 10349 - name = "restore_cursor___restore_cursor_2.0.0.tgz"; 10350 path = fetchurl { 10351 - name = "restore_cursor___restore_cursor_2.0.0.tgz"; 10352 - url = "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-2.0.0.tgz"; 10353 - sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf"; 10354 }; 10355 } 10356 { ··· 10402 }; 10403 } 10404 { 10405 - name = "rimraf___rimraf_2.6.3.tgz"; 10406 - path = fetchurl { 10407 - name = "rimraf___rimraf_2.6.3.tgz"; 10408 - url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz"; 10409 - sha1 = "b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"; 10410 - }; 10411 - } 10412 - { 10413 name = "rimraf___rimraf_2.7.1.tgz"; 10414 path = fetchurl { 10415 name = "rimraf___rimraf_2.7.1.tgz"; ··· 10426 }; 10427 } 10428 { 10429 - name = "rimraf___rimraf_2.4.5.tgz"; 10430 - path = fetchurl { 10431 - name = "rimraf___rimraf_2.4.5.tgz"; 10432 - url = "https://registry.yarnpkg.com/rimraf/-/rimraf-2.4.5.tgz"; 10433 - sha1 = "ee710ce5d93a8fdb856fb5ea8ff0e2d75934b2da"; 10434 - }; 10435 - } 10436 - { 10437 name = "ripemd160___ripemd160_2.0.2.tgz"; 10438 path = fetchurl { 10439 name = "ripemd160___ripemd160_2.0.2.tgz"; ··· 10442 }; 10443 } 10444 { 10445 - name = "run_async___run_async_2.4.1.tgz"; 10446 path = fetchurl { 10447 - name = "run_async___run_async_2.4.1.tgz"; 10448 - url = "https://registry.yarnpkg.com/run-async/-/run-async-2.4.1.tgz"; 10449 - sha1 = "8440eccf99ea3e70bd409d49aab88e10c189a455"; 10450 - }; 10451 - } 10452 - { 10453 - name = "run_parallel___run_parallel_1.1.10.tgz"; 10454 - path = fetchurl { 10455 - name = "run_parallel___run_parallel_1.1.10.tgz"; 10456 - url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.1.10.tgz"; 10457 - sha1 = "60a51b2ae836636c81377df16cb107351bcd13ef"; 10458 }; 10459 } 10460 { ··· 10474 }; 10475 } 10476 { 10477 - name = "rxjs___rxjs_6.6.3.tgz"; 10478 - path = fetchurl { 10479 - name = "rxjs___rxjs_6.6.3.tgz"; 10480 - url = "https://registry.yarnpkg.com/rxjs/-/rxjs-6.6.3.tgz"; 10481 - sha1 = "8ca84635c4daa900c0d3967a6ee7ac60271ee552"; 10482 - }; 10483 - } 10484 - { 10485 name = "safe_buffer___safe_buffer_5.2.1.tgz"; 10486 path = fetchurl { 10487 name = "safe_buffer___safe_buffer_5.2.1.tgz"; ··· 10506 }; 10507 } 10508 { 10509 - name = "safe_json_stringify___safe_json_stringify_1.2.0.tgz"; 10510 - path = fetchurl { 10511 - name = "safe_json_stringify___safe_json_stringify_1.2.0.tgz"; 10512 - url = "https://registry.yarnpkg.com/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; 10513 - sha1 = "356e44bc98f1f93ce45df14bcd7c01cda86e0afd"; 10514 - }; 10515 - } 10516 - { 10517 name = "safe_regex___safe_regex_1.1.0.tgz"; 10518 path = fetchurl { 10519 name = "safe_regex___safe_regex_1.1.0.tgz"; ··· 10562 }; 10563 } 10564 { 10565 - name = "schema_utils___schema_utils_2.7.1.tgz"; 10566 - path = fetchurl { 10567 - name = "schema_utils___schema_utils_2.7.1.tgz"; 10568 - url = "https://registry.yarnpkg.com/schema-utils/-/schema-utils-2.7.1.tgz"; 10569 - sha1 = "1ca4f32d1b24c590c203b8e7a50bf0ea4cd394d7"; 10570 - }; 10571 - } 10572 - { 10573 name = "schema_utils___schema_utils_3.0.0.tgz"; 10574 path = fetchurl { 10575 name = "schema_utils___schema_utils_3.0.0.tgz"; ··· 10586 }; 10587 } 10588 { 10589 - name = "scrypt_async___scrypt_async_2.0.1.tgz"; 10590 - path = fetchurl { 10591 - name = "scrypt_async___scrypt_async_2.0.1.tgz"; 10592 - url = "https://registry.yarnpkg.com/scrypt-async/-/scrypt-async-2.0.1.tgz"; 10593 - sha1 = "4318dae48a8b7cc3b8fe05f75f4164a7d973d25d"; 10594 - }; 10595 - } 10596 - { 10597 name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz"; 10598 path = fetchurl { 10599 name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz"; ··· 10642 }; 10643 } 10644 { 10645 name = "send___send_0.17.1.tgz"; 10646 path = fetchurl { 10647 name = "send___send_0.17.1.tgz"; ··· 10658 }; 10659 } 10660 { 10661 - name = "sequelize_cli___sequelize_cli_5.5.1.tgz"; 10662 path = fetchurl { 10663 - name = "sequelize_cli___sequelize_cli_5.5.1.tgz"; 10664 - url = "https://registry.yarnpkg.com/sequelize-cli/-/sequelize-cli-5.5.1.tgz"; 10665 - sha1 = "0b9c2fc04d082cc8ae0a8fe270b96bb606152bab"; 10666 }; 10667 } 10668 { 10669 - name = "sequelize_pool___sequelize_pool_2.3.0.tgz"; 10670 path = fetchurl { 10671 - name = "sequelize_pool___sequelize_pool_2.3.0.tgz"; 10672 - url = "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-2.3.0.tgz"; 10673 - sha1 = "64f1fe8744228172c474f530604b6133be64993d"; 10674 }; 10675 } 10676 { 10677 - name = "sequelize___sequelize_5.22.3.tgz"; 10678 path = fetchurl { 10679 - name = "sequelize___sequelize_5.22.3.tgz"; 10680 - url = "https://registry.yarnpkg.com/sequelize/-/sequelize-5.22.3.tgz"; 10681 - sha1 = "7e7a92ddd355d883c9eb11cdb106d874d0d2636f"; 10682 }; 10683 } 10684 { ··· 10687 name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; 10688 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"; 10689 sha1 = "b525e1238489a5ecfc42afacc3fe99e666f4b1aa"; 10690 - }; 10691 - } 10692 - { 10693 - name = "serialize_javascript___serialize_javascript_5.0.1.tgz"; 10694 - path = fetchurl { 10695 - name = "serialize_javascript___serialize_javascript_5.0.1.tgz"; 10696 - url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 10697 - sha1 = "7886ec848049a462467a97d3d918ebb2aaf934f4"; 10698 }; 10699 } 10700 { ··· 10746 }; 10747 } 10748 { 10749 - name = "shebang_command___shebang_command_1.2.0.tgz"; 10750 path = fetchurl { 10751 - name = "shebang_command___shebang_command_1.2.0.tgz"; 10752 - url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz"; 10753 - sha1 = "44aac65b695b03398968c39f363fee5deafdf1ea"; 10754 }; 10755 } 10756 { 10757 - name = "shebang_regex___shebang_regex_1.0.0.tgz"; 10758 path = fetchurl { 10759 - name = "shebang_regex___shebang_regex_1.0.0.tgz"; 10760 - url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz"; 10761 - sha1 = "da42f49740c0b42db2ca9728571cb190c98efea3"; 10762 }; 10763 } 10764 { ··· 10778 }; 10779 } 10780 { 10781 - name = "sigmund___sigmund_1.0.1.tgz"; 10782 path = fetchurl { 10783 - name = "sigmund___sigmund_1.0.1.tgz"; 10784 - url = "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz"; 10785 - sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; 10786 }; 10787 } 10788 { ··· 10818 }; 10819 } 10820 { 10821 - name = "slice_ansi___slice_ansi_2.1.0.tgz"; 10822 path = fetchurl { 10823 - name = "slice_ansi___slice_ansi_2.1.0.tgz"; 10824 - url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz"; 10825 - sha1 = "cacd7693461a637a5788d92a7dd4fba068e81636"; 10826 }; 10827 } 10828 { ··· 10906 }; 10907 } 10908 { 10909 - name = "sort_keys___sort_keys_1.1.2.tgz"; 10910 - path = fetchurl { 10911 - name = "sort_keys___sort_keys_1.1.2.tgz"; 10912 - url = "https://registry.yarnpkg.com/sort-keys/-/sort-keys-1.1.2.tgz"; 10913 - sha1 = "441b6d4d346798f1b4e49e8920adfba0e543f9ad"; 10914 - }; 10915 - } 10916 - { 10917 name = "source_list_map___source_list_map_2.0.1.tgz"; 10918 path = fetchurl { 10919 name = "source_list_map___source_list_map_2.0.1.tgz"; ··· 10946 }; 10947 } 10948 { 10949 - name = "source_map_url___source_map_url_0.4.0.tgz"; 10950 path = fetchurl { 10951 - name = "source_map_url___source_map_url_0.4.0.tgz"; 10952 - url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.0.tgz"; 10953 - sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; 10954 }; 10955 } 10956 { ··· 11010 }; 11011 } 11012 { 11013 - name = "spin.js___spin.js_2.3.2.tgz"; 11014 path = fetchurl { 11015 - name = "spin.js___spin.js_2.3.2.tgz"; 11016 - url = "https://registry.yarnpkg.com/spin.js/-/spin.js-2.3.2.tgz"; 11017 - sha1 = "6caa56d520673450fd5cfbc6971e6d0772c37a1a"; 11018 }; 11019 } 11020 { ··· 11050 }; 11051 } 11052 { 11053 - name = "sqlite3___sqlite3_4.2.0.tgz"; 11054 path = fetchurl { 11055 - name = "sqlite3___sqlite3_4.2.0.tgz"; 11056 - url = "https://registry.yarnpkg.com/sqlite3/-/sqlite3-4.2.0.tgz"; 11057 - sha1 = "49026d665e9fc4f922e56fb9711ba5b4c85c4901"; 11058 }; 11059 } 11060 { ··· 11074 }; 11075 } 11076 { 11077 - name = "ssri___ssri_6.0.1.tgz"; 11078 path = fetchurl { 11079 - name = "ssri___ssri_6.0.1.tgz"; 11080 - url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.1.tgz"; 11081 - sha1 = "2a3c41b28dd45b62b63676ecb74001265ae9edd8"; 11082 }; 11083 } 11084 { 11085 - name = "ssri___ssri_8.0.0.tgz"; 11086 path = fetchurl { 11087 - name = "ssri___ssri_8.0.0.tgz"; 11088 - url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz"; 11089 - sha1 = "79ca74e21f8ceaeddfcb4b90143c458b8d988808"; 11090 }; 11091 } 11092 { ··· 11106 }; 11107 } 11108 { 11109 - name = "state_toggle___state_toggle_1.0.3.tgz"; 11110 - path = fetchurl { 11111 - name = "state_toggle___state_toggle_1.0.3.tgz"; 11112 - url = "https://registry.yarnpkg.com/state-toggle/-/state-toggle-1.0.3.tgz"; 11113 - sha1 = "e123b16a88e143139b09c6852221bc9815917dfe"; 11114 - }; 11115 - } 11116 - { 11117 name = "static_extend___static_extend_0.1.2.tgz"; 11118 path = fetchurl { 11119 name = "static_extend___static_extend_0.1.2.tgz"; ··· 11130 }; 11131 } 11132 { 11133 - name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11134 - path = fetchurl { 11135 - name = "stealthy_require___stealthy_require_1.1.1.tgz"; 11136 - url = "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz"; 11137 - sha1 = "35b09875b4ff49f26a777e509b3090a3226bf24b"; 11138 - }; 11139 - } 11140 - { 11141 name = "store___store_2.0.12.tgz"; 11142 path = fetchurl { 11143 name = "store___store_2.0.12.tgz"; ··· 11178 }; 11179 } 11180 { 11181 - name = "strict_uri_encode___strict_uri_encode_1.1.0.tgz"; 11182 - path = fetchurl { 11183 - name = "strict_uri_encode___strict_uri_encode_1.1.0.tgz"; 11184 - url = "https://registry.yarnpkg.com/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz"; 11185 - sha1 = "279b225df1d582b1f54e65addd4352e18faa0713"; 11186 - }; 11187 - } 11188 - { 11189 name = "string_loader___string_loader_0.0.1.tgz"; 11190 path = fetchurl { 11191 name = "string_loader___string_loader_0.0.1.tgz"; ··· 11218 }; 11219 } 11220 { 11221 - name = "string_width___string_width_3.1.0.tgz"; 11222 path = fetchurl { 11223 - name = "string_width___string_width_3.1.0.tgz"; 11224 - url = "https://registry.yarnpkg.com/string-width/-/string-width-3.1.0.tgz"; 11225 - sha1 = "22767be21b62af1081574306f69ac51b62203961"; 11226 - }; 11227 - } 11228 - { 11229 - name = "string_width___string_width_4.2.0.tgz"; 11230 - path = fetchurl { 11231 - name = "string_width___string_width_4.2.0.tgz"; 11232 - url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz"; 11233 - sha1 = "952182c46cc7b2c313d1596e623992bd163b72b5"; 11234 }; 11235 } 11236 { 11237 - name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz"; 11238 path = fetchurl { 11239 - name = "string.prototype.trimend___string.prototype.trimend_1.0.3.tgz"; 11240 - url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.3.tgz"; 11241 - sha1 = "a22bd53cca5c7cf44d7c9d5c732118873d6cd18b"; 11242 }; 11243 } 11244 { 11245 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz"; 11246 path = fetchurl { 11247 - name = "string.prototype.trimstart___string.prototype.trimstart_1.0.3.tgz"; 11248 - url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.3.tgz"; 11249 - sha1 = "9b4cb590e123bb36564401d59824298de50fd5aa"; 11250 }; 11251 } 11252 { ··· 11282 }; 11283 } 11284 { 11285 - name = "stringify_entities___stringify_entities_3.1.0.tgz"; 11286 - path = fetchurl { 11287 - name = "stringify_entities___stringify_entities_3.1.0.tgz"; 11288 - url = "https://registry.yarnpkg.com/stringify-entities/-/stringify-entities-3.1.0.tgz"; 11289 - sha1 = "b8d3feac256d9ffcc9fa1fefdcf3ca70576ee903"; 11290 - }; 11291 - } 11292 - { 11293 name = "strip_ansi___strip_ansi_3.0.1.tgz"; 11294 path = fetchurl { 11295 name = "strip_ansi___strip_ansi_3.0.1.tgz"; ··· 11306 }; 11307 } 11308 { 11309 - name = "strip_ansi___strip_ansi_5.2.0.tgz"; 11310 - path = fetchurl { 11311 - name = "strip_ansi___strip_ansi_5.2.0.tgz"; 11312 - url = "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz"; 11313 - sha1 = "8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"; 11314 - }; 11315 - } 11316 - { 11317 name = "strip_ansi___strip_ansi_6.0.0.tgz"; 11318 path = fetchurl { 11319 name = "strip_ansi___strip_ansi_6.0.0.tgz"; ··· 11338 }; 11339 } 11340 { 11341 name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 11342 path = fetchurl { 11343 name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; ··· 11378 }; 11379 } 11380 { 11381 - name = "supports_color___supports_color_5.4.0.tgz"; 11382 path = fetchurl { 11383 - name = "supports_color___supports_color_5.4.0.tgz"; 11384 - url = "https://registry.yarnpkg.com/supports-color/-/supports-color-5.4.0.tgz"; 11385 - sha1 = "1c6b337402c2137605efe19f10fec390f6faab54"; 11386 }; 11387 } 11388 { ··· 11426 }; 11427 } 11428 { 11429 - name = "symbol_tree___symbol_tree_3.2.4.tgz"; 11430 path = fetchurl { 11431 - name = "symbol_tree___symbol_tree_3.2.4.tgz"; 11432 - url = "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz"; 11433 - sha1 = "430637d248ba77e078883951fb9aa0eed7c63fa2"; 11434 - }; 11435 - } 11436 - { 11437 - name = "table___table_5.4.6.tgz"; 11438 - path = fetchurl { 11439 - name = "table___table_5.4.6.tgz"; 11440 - url = "https://registry.yarnpkg.com/table/-/table-5.4.6.tgz"; 11441 - sha1 = "1292d19500ce3f86053b05f0e8e7e4a3bb21079e"; 11442 }; 11443 } 11444 { ··· 11458 }; 11459 } 11460 { 11461 name = "tar___tar_4.4.13.tgz"; 11462 path = fetchurl { 11463 name = "tar___tar_4.4.13.tgz"; ··· 11474 }; 11475 } 11476 { 11477 name = "tedious___tedious_6.7.0.tgz"; 11478 path = fetchurl { 11479 name = "tedious___tedious_6.7.0.tgz"; ··· 11514 }; 11515 } 11516 { 11517 - name = "through2___through2_0.6.5.tgz"; 11518 - path = fetchurl { 11519 - name = "through2___through2_0.6.5.tgz"; 11520 - url = "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz"; 11521 - sha1 = "41ab9c67b29d57209071410e1d7a7a968cd3ad48"; 11522 - }; 11523 - } 11524 - { 11525 name = "through2___through2_2.0.5.tgz"; 11526 path = fetchurl { 11527 name = "through2___through2_2.0.5.tgz"; ··· 11530 }; 11531 } 11532 { 11533 - name = "through___through_2.3.8.tgz"; 11534 path = fetchurl { 11535 - name = "through___through_2.3.8.tgz"; 11536 - url = "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz"; 11537 - sha1 = "0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"; 11538 }; 11539 } 11540 { ··· 11543 name = "timers_browserify___timers_browserify_2.0.12.tgz"; 11544 url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz"; 11545 sha1 = "44a45c11fbf407f34f97bccd1577c652361b00ee"; 11546 - }; 11547 - } 11548 - { 11549 - name = "timers_ext___timers_ext_0.1.7.tgz"; 11550 - path = fetchurl { 11551 - name = "timers_ext___timers_ext_0.1.7.tgz"; 11552 - url = "https://registry.yarnpkg.com/timers-ext/-/timers-ext-0.1.7.tgz"; 11553 - sha1 = "6f57ad8578e07a3fb9f91d9387d65647555e25c6"; 11554 }; 11555 } 11556 { ··· 11570 }; 11571 } 11572 { 11573 - name = "tmp___tmp_0.0.33.tgz"; 11574 - path = fetchurl { 11575 - name = "tmp___tmp_0.0.33.tgz"; 11576 - url = "https://registry.yarnpkg.com/tmp/-/tmp-0.0.33.tgz"; 11577 - sha1 = "6d34335889768d21b2bcda0aa277ced3b1bfadf9"; 11578 - }; 11579 - } 11580 - { 11581 name = "to_array___to_array_0.1.4.tgz"; 11582 path = fetchurl { 11583 name = "to_array___to_array_0.1.4.tgz"; ··· 11682 }; 11683 } 11684 { 11685 - name = "tr46___tr46_1.0.1.tgz"; 11686 - path = fetchurl { 11687 - name = "tr46___tr46_1.0.1.tgz"; 11688 - url = "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz"; 11689 - sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; 11690 - }; 11691 - } 11692 - { 11693 name = "trim_right___trim_right_1.0.1.tgz"; 11694 path = fetchurl { 11695 name = "trim_right___trim_right_1.0.1.tgz"; ··· 11698 }; 11699 } 11700 { 11701 - name = "trim_trailing_lines___trim_trailing_lines_1.1.4.tgz"; 11702 - path = fetchurl { 11703 - name = "trim_trailing_lines___trim_trailing_lines_1.1.4.tgz"; 11704 - url = "https://registry.yarnpkg.com/trim-trailing-lines/-/trim-trailing-lines-1.1.4.tgz"; 11705 - sha1 = "bd4abbec7cc880462f10b2c8b5ce1d8d1ec7c2c0"; 11706 - }; 11707 - } 11708 - { 11709 - name = "trim___trim_0.0.1.tgz"; 11710 - path = fetchurl { 11711 - name = "trim___trim_0.0.1.tgz"; 11712 - url = "https://registry.yarnpkg.com/trim/-/trim-0.0.1.tgz"; 11713 - sha1 = "5858547f6b290757ee95cccc666fb50084c460dd"; 11714 - }; 11715 - } 11716 - { 11717 name = "triple_beam___triple_beam_1.3.0.tgz"; 11718 path = fetchurl { 11719 name = "triple_beam___triple_beam_1.3.0.tgz"; ··· 11762 }; 11763 } 11764 { 11765 - name = "tslib___tslib_2.1.0.tgz"; 11766 path = fetchurl { 11767 - name = "tslib___tslib_2.1.0.tgz"; 11768 - url = "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz"; 11769 - sha1 = "da60860f1c2ecaa5703ab7d39bc05b6bf988b97a"; 11770 }; 11771 } 11772 { ··· 11794 }; 11795 } 11796 { 11797 - name = "turndown___turndown_5.0.3.tgz"; 11798 path = fetchurl { 11799 - name = "turndown___turndown_5.0.3.tgz"; 11800 - url = "https://registry.yarnpkg.com/turndown/-/turndown-5.0.3.tgz"; 11801 - sha1 = "a1350b66155d7891f10e451432170b0f7cd7449a"; 11802 }; 11803 } 11804 { ··· 11810 }; 11811 } 11812 { 11813 - name = "type_check___type_check_0.3.2.tgz"; 11814 path = fetchurl { 11815 - name = "type_check___type_check_0.3.2.tgz"; 11816 - url = "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz"; 11817 - sha1 = "5884cab512cf1d355e3fb784f30804b2b520db72"; 11818 }; 11819 } 11820 { 11821 - name = "type_is___type_is_1.6.18.tgz"; 11822 path = fetchurl { 11823 - name = "type_is___type_is_1.6.18.tgz"; 11824 - url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; 11825 - sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; 11826 }; 11827 } 11828 { 11829 - name = "type___type_1.2.0.tgz"; 11830 path = fetchurl { 11831 - name = "type___type_1.2.0.tgz"; 11832 - url = "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz"; 11833 - sha1 = "848dd7698dafa3e54a6c479e759c4bc3f18847a0"; 11834 }; 11835 } 11836 { 11837 - name = "type___type_2.1.0.tgz"; 11838 path = fetchurl { 11839 - name = "type___type_2.1.0.tgz"; 11840 - url = "https://registry.yarnpkg.com/type/-/type-2.1.0.tgz"; 11841 - sha1 = "9bdc22c648cf8cf86dd23d32336a41cfb6475e3f"; 11842 }; 11843 } 11844 { ··· 11866 }; 11867 } 11868 { 11869 - name = "uglify_js___uglify_js_3.12.4.tgz"; 11870 path = fetchurl { 11871 - name = "uglify_js___uglify_js_3.12.4.tgz"; 11872 - url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.12.4.tgz"; 11873 - sha1 = "93de48bb76bb3ec0fc36563f871ba46e2ee5c7ee"; 11874 }; 11875 } 11876 { ··· 11898 }; 11899 } 11900 { 11901 name = "underscore___underscore_1.11.0.tgz"; 11902 path = fetchurl { 11903 name = "underscore___underscore_1.11.0.tgz"; ··· 11906 }; 11907 } 11908 { 11909 - name = "underscore___underscore_1.12.0.tgz"; 11910 path = fetchurl { 11911 - name = "underscore___underscore_1.12.0.tgz"; 11912 - url = "https://registry.yarnpkg.com/underscore/-/underscore-1.12.0.tgz"; 11913 - sha1 = "4814940551fc80587cef7840d1ebb0f16453be97"; 11914 }; 11915 } 11916 { ··· 11930 }; 11931 } 11932 { 11933 - name = "unherit___unherit_1.1.3.tgz"; 11934 - path = fetchurl { 11935 - name = "unherit___unherit_1.1.3.tgz"; 11936 - url = "https://registry.yarnpkg.com/unherit/-/unherit-1.1.3.tgz"; 11937 - sha1 = "6c9b503f2b41b262330c80e91c8614abdaa69c22"; 11938 - }; 11939 - } 11940 - { 11941 name = "unified_args___unified_args_8.1.0.tgz"; 11942 path = fetchurl { 11943 name = "unified_args___unified_args_8.1.0.tgz"; ··· 11946 }; 11947 } 11948 { 11949 - name = "unified_engine___unified_engine_8.0.0.tgz"; 11950 path = fetchurl { 11951 - name = "unified_engine___unified_engine_8.0.0.tgz"; 11952 - url = "https://registry.yarnpkg.com/unified-engine/-/unified-engine-8.0.0.tgz"; 11953 - sha1 = "e3996ff6eaecc6ca3408af92b70e25691192d17d"; 11954 }; 11955 } 11956 { ··· 11962 }; 11963 } 11964 { 11965 - name = "unified_message_control___unified_message_control_3.0.2.tgz"; 11966 path = fetchurl { 11967 - name = "unified_message_control___unified_message_control_3.0.2.tgz"; 11968 - url = "https://registry.yarnpkg.com/unified-message-control/-/unified-message-control-3.0.2.tgz"; 11969 - sha1 = "efa316c97f39f6f54bc74a4cf35807e615694033"; 11970 }; 11971 } 11972 { 11973 - name = "unified___unified_9.2.0.tgz"; 11974 path = fetchurl { 11975 - name = "unified___unified_9.2.0.tgz"; 11976 - url = "https://registry.yarnpkg.com/unified/-/unified-9.2.0.tgz"; 11977 - sha1 = "67a62c627c40589edebbf60f53edfd4d822027f8"; 11978 }; 11979 } 11980 { ··· 12034 }; 12035 } 12036 { 12037 - name = "unist_util_is___unist_util_is_4.0.4.tgz"; 12038 path = fetchurl { 12039 - name = "unist_util_is___unist_util_is_4.0.4.tgz"; 12040 - url = "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.0.4.tgz"; 12041 - sha1 = "3e9e8de6af2eb0039a59f50c9b3e99698a924f50"; 12042 }; 12043 } 12044 { ··· 12050 }; 12051 } 12052 { 12053 - name = "unist_util_remove_position___unist_util_remove_position_2.0.1.tgz"; 12054 - path = fetchurl { 12055 - name = "unist_util_remove_position___unist_util_remove_position_2.0.1.tgz"; 12056 - url = "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-2.0.1.tgz"; 12057 - sha1 = "5d19ca79fdba712301999b2b73553ca8f3b352cc"; 12058 - }; 12059 - } 12060 - { 12061 name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz"; 12062 path = fetchurl { 12063 name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz"; ··· 12079 name = "unist_util_visit___unist_util_visit_2.0.3.tgz"; 12080 url = "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz"; 12081 sha1 = "c3703893146df47203bb8a9795af47d7b971208c"; 12082 - }; 12083 - } 12084 - { 12085 - name = "universalify___universalify_0.1.2.tgz"; 12086 - path = fetchurl { 12087 - name = "universalify___universalify_0.1.2.tgz"; 12088 - url = "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz"; 12089 - sha1 = "b646f69be3942dabcecc9d6639c80dc105efaa66"; 12090 }; 12091 } 12092 { ··· 12146 }; 12147 } 12148 { 12149 - name = "url_loader___url_loader_2.3.0.tgz"; 12150 path = fetchurl { 12151 - name = "url_loader___url_loader_2.3.0.tgz"; 12152 - url = "https://registry.yarnpkg.com/url-loader/-/url-loader-2.3.0.tgz"; 12153 - sha1 = "e0e2ef658f003efb8ca41b0f3ffbf76bab88658b"; 12154 }; 12155 } 12156 { ··· 12186 }; 12187 } 12188 { 12189 - name = "utf_8_validate___utf_8_validate_5.0.4.tgz"; 12190 path = fetchurl { 12191 - name = "utf_8_validate___utf_8_validate_5.0.4.tgz"; 12192 - url = "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.4.tgz"; 12193 - sha1 = "72a1735983ddf7a05a43a9c6b67c5ce1c910f9b8"; 12194 }; 12195 } 12196 { ··· 12266 }; 12267 } 12268 { 12269 - name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 12270 path = fetchurl { 12271 - name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 12272 - url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 12273 - sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"; 12274 }; 12275 } 12276 { ··· 12298 }; 12299 } 12300 { 12301 name = "validator___validator_9.4.1.tgz"; 12302 path = fetchurl { 12303 name = "validator___validator_9.4.1.tgz"; ··· 12314 }; 12315 } 12316 { 12317 - name = "vasync___vasync_1.6.4.tgz"; 12318 path = fetchurl { 12319 - name = "vasync___vasync_1.6.4.tgz"; 12320 - url = "https://registry.yarnpkg.com/vasync/-/vasync-1.6.4.tgz"; 12321 - sha1 = "dfe93616ad0e7ae801b332a9d88bfc5cdc8e1d1f"; 12322 }; 12323 } 12324 { ··· 12346 }; 12347 } 12348 { 12349 - name = "verror___verror_1.6.0.tgz"; 12350 - path = fetchurl { 12351 - name = "verror___verror_1.6.0.tgz"; 12352 - url = "https://registry.yarnpkg.com/verror/-/verror-1.6.0.tgz"; 12353 - sha1 = "7d13b27b1facc2e2da90405eb5ea6e5bdd252ea5"; 12354 - }; 12355 - } 12356 - { 12357 name = "vfile_location___vfile_location_3.2.0.tgz"; 12358 path = fetchurl { 12359 name = "vfile_location___vfile_location_3.2.0.tgz"; ··· 12402 }; 12403 } 12404 { 12405 - name = "visibilityjs___visibilityjs_1.2.8.tgz"; 12406 path = fetchurl { 12407 - name = "visibilityjs___visibilityjs_1.2.8.tgz"; 12408 - url = "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-1.2.8.tgz"; 12409 - sha1 = "4ccdcebdaef0b34fb89219ab8e10e39c3a7cbfd8"; 12410 }; 12411 } 12412 { ··· 12426 }; 12427 } 12428 { 12429 - name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz"; 12430 - path = fetchurl { 12431 - name = "w3c_hr_time___w3c_hr_time_1.0.2.tgz"; 12432 - url = "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz"; 12433 - sha1 = "0a89cdf5cc15822df9c360543676963e0cc308cd"; 12434 - }; 12435 - } 12436 - { 12437 name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 12438 path = fetchurl { 12439 name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; ··· 12450 }; 12451 } 12452 { 12453 - name = "weak_map___weak_map_1.0.5.tgz"; 12454 - path = fetchurl { 12455 - name = "weak_map___weak_map_1.0.5.tgz"; 12456 - url = "https://registry.yarnpkg.com/weak-map/-/weak-map-1.0.5.tgz"; 12457 - sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; 12458 - }; 12459 - } 12460 - { 12461 name = "webfontloader___webfontloader_1.6.28.tgz"; 12462 path = fetchurl { 12463 name = "webfontloader___webfontloader_1.6.28.tgz"; ··· 12466 }; 12467 } 12468 { 12469 - name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; 12470 path = fetchurl { 12471 - name = "webidl_conversions___webidl_conversions_4.0.2.tgz"; 12472 - url = "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; 12473 - sha1 = "a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"; 12474 - }; 12475 - } 12476 - { 12477 - name = "webpack_cli___webpack_cli_3.3.12.tgz"; 12478 - path = fetchurl { 12479 - name = "webpack_cli___webpack_cli_3.3.12.tgz"; 12480 - url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-3.3.12.tgz"; 12481 - sha1 = "94e9ada081453cd0aa609c99e500012fd3ad2d4a"; 12482 }; 12483 } 12484 { 12485 - name = "webpack_merge___webpack_merge_4.2.2.tgz"; 12486 path = fetchurl { 12487 - name = "webpack_merge___webpack_merge_4.2.2.tgz"; 12488 - url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-4.2.2.tgz"; 12489 - sha1 = "a27c52ea783d1398afd2087f547d7b9d2f43634d"; 12490 }; 12491 } 12492 { ··· 12498 }; 12499 } 12500 { 12501 - name = "webpack___webpack_4.44.2.tgz"; 12502 - path = fetchurl { 12503 - name = "webpack___webpack_4.44.2.tgz"; 12504 - url = "https://registry.yarnpkg.com/webpack/-/webpack-4.44.2.tgz"; 12505 - sha1 = "6bfe2b0af055c8b2d1e90ed2cd9363f841266b72"; 12506 - }; 12507 - } 12508 - { 12509 - name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; 12510 path = fetchurl { 12511 - name = "whatwg_encoding___whatwg_encoding_1.0.5.tgz"; 12512 - url = "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz"; 12513 - sha1 = "5abacf777c32166a51d085d6b4f3e7d27113ddb0"; 12514 }; 12515 } 12516 { 12517 - name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; 12518 path = fetchurl { 12519 - name = "whatwg_mimetype___whatwg_mimetype_2.3.0.tgz"; 12520 - url = "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz"; 12521 - sha1 = "3d4b1e0312d2079879f826aff18dbeeca5960fbf"; 12522 }; 12523 } 12524 { 12525 - name = "whatwg_url___whatwg_url_6.5.0.tgz"; 12526 path = fetchurl { 12527 - name = "whatwg_url___whatwg_url_6.5.0.tgz"; 12528 - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-6.5.0.tgz"; 12529 - sha1 = "f2df02bff176fd65070df74ad5ccbb5a199965a8"; 12530 }; 12531 } 12532 { 12533 - name = "whatwg_url___whatwg_url_7.1.0.tgz"; 12534 path = fetchurl { 12535 - name = "whatwg_url___whatwg_url_7.1.0.tgz"; 12536 - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.1.0.tgz"; 12537 - sha1 = "c2c492f1eca612988efd3d2266be1b9fc6170d06"; 12538 - }; 12539 - } 12540 - { 12541 - name = "which_module___which_module_2.0.0.tgz"; 12542 - path = fetchurl { 12543 - name = "which_module___which_module_2.0.0.tgz"; 12544 - url = "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz"; 12545 - sha1 = "d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"; 12546 }; 12547 } 12548 { ··· 12554 }; 12555 } 12556 { 12557 name = "wide_align___wide_align_1.1.3.tgz"; 12558 path = fetchurl { 12559 name = "wide_align___wide_align_1.1.3.tgz"; 12560 url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz"; 12561 sha1 = "ae074e6bdc0c14a431e804e624549c633b000457"; 12562 }; 12563 } 12564 { ··· 12610 }; 12611 } 12612 { 12613 - name = "wrap_ansi___wrap_ansi_5.1.0.tgz"; 12614 path = fetchurl { 12615 - name = "wrap_ansi___wrap_ansi_5.1.0.tgz"; 12616 - url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-5.1.0.tgz"; 12617 - sha1 = "1fd1f67235d5b6d0fee781056001bfb694c03b09"; 12618 }; 12619 } 12620 { ··· 12634 }; 12635 } 12636 { 12637 - name = "write___write_1.0.3.tgz"; 12638 - path = fetchurl { 12639 - name = "write___write_1.0.3.tgz"; 12640 - url = "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz"; 12641 - sha1 = "0800e14523b923a387e415123c865616aae0f5c3"; 12642 - }; 12643 - } 12644 - { 12645 - name = "ws___ws_5.2.2.tgz"; 12646 - path = fetchurl { 12647 - name = "ws___ws_5.2.2.tgz"; 12648 - url = "https://registry.yarnpkg.com/ws/-/ws-5.2.2.tgz"; 12649 - sha1 = "dffef14866b8e8dc9133582514d1befaf96e980f"; 12650 - }; 12651 - } 12652 - { 12653 - name = "ws___ws_6.2.1.tgz"; 12654 - path = fetchurl { 12655 - name = "ws___ws_6.2.1.tgz"; 12656 - url = "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz"; 12657 - sha1 = "442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"; 12658 - }; 12659 - } 12660 - { 12661 - name = "ws___ws_7.4.2.tgz"; 12662 path = fetchurl { 12663 - name = "ws___ws_7.4.2.tgz"; 12664 - url = "https://registry.yarnpkg.com/ws/-/ws-7.4.2.tgz"; 12665 - sha1 = "782100048e54eb36fe9843363ab1c68672b261dd"; 12666 }; 12667 } 12668 { ··· 12674 }; 12675 } 12676 { 12677 - name = "x_xss_protection___x_xss_protection_1.3.0.tgz"; 12678 path = fetchurl { 12679 - name = "x_xss_protection___x_xss_protection_1.3.0.tgz"; 12680 - url = "https://registry.yarnpkg.com/x-xss-protection/-/x-xss-protection-1.3.0.tgz"; 12681 - sha1 = "3e3a8dd638da80421b0e9fff11a2dbe168f6d52c"; 12682 }; 12683 } 12684 { 12685 - name = "xml_crypto___xml_crypto_2.0.0.tgz"; 12686 path = fetchurl { 12687 - name = "xml_crypto___xml_crypto_2.0.0.tgz"; 12688 - url = "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.0.0.tgz"; 12689 - sha1 = "54cd268ad9d31930afcf7092cbb664258ca9e826"; 12690 - }; 12691 - } 12692 - { 12693 - name = "xml_encryption___xml_encryption_1.2.1.tgz"; 12694 - path = fetchurl { 12695 - name = "xml_encryption___xml_encryption_1.2.1.tgz"; 12696 - url = "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-1.2.1.tgz"; 12697 - sha1 = "e6d18817c4309fd07ca7793cca93c3fd06745baa"; 12698 - }; 12699 - } 12700 - { 12701 - name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; 12702 - path = fetchurl { 12703 - name = "xml_name_validator___xml_name_validator_3.0.0.tgz"; 12704 - url = "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz"; 12705 - sha1 = "6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"; 12706 }; 12707 } 12708 { ··· 12738 }; 12739 } 12740 { 12741 - name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; 12742 path = fetchurl { 12743 - name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; 12744 - url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; 12745 - sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3"; 12746 }; 12747 } 12748 { ··· 12754 }; 12755 } 12756 { 12757 - name = "xmldom___xmldom_0.1.27.tgz"; 12758 path = fetchurl { 12759 - name = "xmldom___xmldom_0.1.27.tgz"; 12760 - url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz"; 12761 - sha1 = "d501f97b3bdb403af8ef9ecc20573187aadac0e9"; 12762 }; 12763 } 12764 { ··· 12770 }; 12771 } 12772 { 12773 - name = "xmldom___xmldom_0.4.0.tgz"; 12774 path = fetchurl { 12775 - name = "xmldom___xmldom_0.4.0.tgz"; 12776 - url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.4.0.tgz"; 12777 - sha1 = "8771e482a333af44587e30ce026f0998c23f3830"; 12778 }; 12779 } 12780 { ··· 12802 }; 12803 } 12804 { 12805 - name = "xpath___xpath_0.0.27.tgz"; 12806 path = fetchurl { 12807 - name = "xpath___xpath_0.0.27.tgz"; 12808 - url = "https://registry.yarnpkg.com/xpath/-/xpath-0.0.27.tgz"; 12809 - sha1 = "dd3421fbdcc5646ac32c48531b4d7e9d0c2cfa92"; 12810 }; 12811 } 12812 { ··· 12834 }; 12835 } 12836 { 12837 - name = "y18n___y18n_4.0.1.tgz"; 12838 path = fetchurl { 12839 - name = "y18n___y18n_4.0.1.tgz"; 12840 - url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz"; 12841 - sha1 = "8db2b83c31c5d75099bb890b23f3094891e247d4"; 12842 }; 12843 } 12844 { ··· 12866 }; 12867 } 12868 { 12869 - name = "yargs_parser___yargs_parser_13.1.2.tgz"; 12870 path = fetchurl { 12871 - name = "yargs_parser___yargs_parser_13.1.2.tgz"; 12872 - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-13.1.2.tgz"; 12873 - sha1 = "130f09702ebaeef2650d54ce6e3e5706f7a4fb38"; 12874 }; 12875 } 12876 { 12877 - name = "yargs___yargs_13.3.2.tgz"; 12878 path = fetchurl { 12879 - name = "yargs___yargs_13.3.2.tgz"; 12880 - url = "https://registry.yarnpkg.com/yargs/-/yargs-13.3.2.tgz"; 12881 - sha1 = "ad7ffefec1aa59565ac915f82dccb38a9c31a2dd"; 12882 }; 12883 } 12884 { ··· 12898 }; 12899 } 12900 { 12901 - name = "zip_stream___zip_stream_4.0.4.tgz"; 12902 path = fetchurl { 12903 - name = "zip_stream___zip_stream_4.0.4.tgz"; 12904 - url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.0.4.tgz"; 12905 - sha1 = "3a8f100b73afaa7d1ae9338d910b321dec77ff3a"; 12906 }; 12907 } 12908 ];
··· 2 offline_cache = linkFarm "offline" packages; 3 packages = [ 4 { 5 + name = "_azure_abort_controller___abort_controller_1.0.4.tgz"; 6 + path = fetchurl { 7 + name = "_azure_abort_controller___abort_controller_1.0.4.tgz"; 8 + url = "https://registry.yarnpkg.com/@azure/abort-controller/-/abort-controller-1.0.4.tgz"; 9 + sha1 = "fd3c4d46c8ed67aace42498c8e2270960250eafd"; 10 + }; 11 + } 12 + { 13 + name = "_azure_core_auth___core_auth_1.3.0.tgz"; 14 + path = fetchurl { 15 + name = "_azure_core_auth___core_auth_1.3.0.tgz"; 16 + url = "https://registry.yarnpkg.com/@azure/core-auth/-/core-auth-1.3.0.tgz"; 17 + sha1 = "0d55517cf0650aefe755669aca8a2f3724fcf536"; 18 + }; 19 + } 20 + { 21 name = "_azure_ms_rest_azure_env___ms_rest_azure_env_1.1.2.tgz"; 22 path = fetchurl { 23 name = "_azure_ms_rest_azure_env___ms_rest_azure_env_1.1.2.tgz"; ··· 26 }; 27 } 28 { 29 + name = "_azure_ms_rest_js___ms_rest_js_1.11.2.tgz"; 30 path = fetchurl { 31 + name = "_azure_ms_rest_js___ms_rest_js_1.11.2.tgz"; 32 + url = "https://registry.yarnpkg.com/@azure/ms-rest-js/-/ms-rest-js-1.11.2.tgz"; 33 + sha1 = "e83d512b102c302425da5ff03a6d76adf2aa4ae6"; 34 }; 35 } 36 { ··· 50 }; 51 } 52 { 53 + name = "_babel_code_frame___code_frame_7.12.13.tgz"; 54 + path = fetchurl { 55 + name = "_babel_code_frame___code_frame_7.12.13.tgz"; 56 + url = "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz"; 57 + sha1 = "dcfc826beef65e75c50e21d3837d7d95798dd658"; 58 + }; 59 + } 60 + { 61 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.0.tgz"; 62 path = fetchurl { 63 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.0.tgz"; 64 + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz"; 65 + sha1 = "d26cad8a47c65286b15df1547319a5d0bcf27288"; 66 }; 67 } 68 { 69 + name = "_babel_highlight___highlight_7.14.0.tgz"; 70 path = fetchurl { 71 + name = "_babel_highlight___highlight_7.14.0.tgz"; 72 + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz"; 73 + sha1 = "3197e375711ef6bf834e67d0daec88e4f46113cf"; 74 }; 75 } 76 { ··· 90 }; 91 } 92 { 93 + name = "_discoveryjs_json_ext___json_ext_0.5.2.tgz"; 94 + path = fetchurl { 95 + name = "_discoveryjs_json_ext___json_ext_0.5.2.tgz"; 96 + url = "https://registry.yarnpkg.com/@discoveryjs/json-ext/-/json-ext-0.5.2.tgz"; 97 + sha1 = "8f03a22a04de437254e8ce8cc84ba39689288752"; 98 + }; 99 + } 100 + { 101 + name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; 102 + path = fetchurl { 103 + name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; 104 + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 105 + sha1 = "99cc0a0584d72f1df38b900fb062ba995f395547"; 106 + }; 107 + } 108 + { 109 name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; 110 path = fetchurl { 111 name = "_nodelib_fs.scandir___fs.scandir_2.1.4.tgz"; ··· 130 }; 131 } 132 { 133 + name = "_npmcli_move_file___move_file_1.1.2.tgz"; 134 path = fetchurl { 135 + name = "_npmcli_move_file___move_file_1.1.2.tgz"; 136 + url = "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.1.2.tgz"; 137 + sha1 = "1a82c3e372f7cae9253eb66d72543d6b8685c674"; 138 }; 139 } 140 { ··· 162 }; 163 } 164 { 165 + name = "_types_accepts___accepts_1.3.5.tgz"; 166 + path = fetchurl { 167 + name = "_types_accepts___accepts_1.3.5.tgz"; 168 + url = "https://registry.yarnpkg.com/@types/accepts/-/accepts-1.3.5.tgz"; 169 + sha1 = "c34bec115cfc746e04fe5a059df4ce7e7b391575"; 170 + }; 171 + } 172 + { 173 name = "_types_anymatch___anymatch_1.3.1.tgz"; 174 path = fetchurl { 175 name = "_types_anymatch___anymatch_1.3.1.tgz"; ··· 194 }; 195 } 196 { 197 + name = "_types_content_disposition___content_disposition_0.5.3.tgz"; 198 + path = fetchurl { 199 + name = "_types_content_disposition___content_disposition_0.5.3.tgz"; 200 + url = "https://registry.yarnpkg.com/@types/content-disposition/-/content-disposition-0.5.3.tgz"; 201 + sha1 = "0aa116701955c2faa0717fc69cd1596095e49d96"; 202 + }; 203 + } 204 + { 205 + name = "_types_cookies___cookies_0.7.6.tgz"; 206 + path = fetchurl { 207 + name = "_types_cookies___cookies_0.7.6.tgz"; 208 + url = "https://registry.yarnpkg.com/@types/cookies/-/cookies-0.7.6.tgz"; 209 + sha1 = "71212c5391a976d3bae57d4b09fac20fc6bda504"; 210 + }; 211 + } 212 + { 213 name = "_types_debug___debug_4.1.5.tgz"; 214 path = fetchurl { 215 name = "_types_debug___debug_4.1.5.tgz"; ··· 218 }; 219 } 220 { 221 + name = "_types_express_serve_static_core___express_serve_static_core_4.17.19.tgz"; 222 path = fetchurl { 223 + name = "_types_express_serve_static_core___express_serve_static_core_4.17.19.tgz"; 224 + url = "https://registry.yarnpkg.com/@types/express-serve-static-core/-/express-serve-static-core-4.17.19.tgz"; 225 + sha1 = "00acfc1632e729acac4f1530e9e16f6dd1508a1d"; 226 }; 227 } 228 { ··· 250 }; 251 } 252 { 253 + name = "_types_http_assert___http_assert_1.5.1.tgz"; 254 path = fetchurl { 255 + name = "_types_http_assert___http_assert_1.5.1.tgz"; 256 + url = "https://registry.yarnpkg.com/@types/http-assert/-/http-assert-1.5.1.tgz"; 257 + sha1 = "d775e93630c2469c2f980fc27e3143240335db3b"; 258 + }; 259 + } 260 + { 261 + name = "_types_http_errors___http_errors_1.8.0.tgz"; 262 + path = fetchurl { 263 + name = "_types_http_errors___http_errors_1.8.0.tgz"; 264 + url = "https://registry.yarnpkg.com/@types/http-errors/-/http-errors-1.8.0.tgz"; 265 + sha1 = "682477dbbbd07cd032731cb3b0e7eaee3d026b69"; 266 + }; 267 + } 268 + { 269 + name = "_types_json_schema___json_schema_7.0.7.tgz"; 270 + path = fetchurl { 271 + name = "_types_json_schema___json_schema_7.0.7.tgz"; 272 + url = "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.7.tgz"; 273 + sha1 = "98a993516c859eb0d5c4c8f098317a9ea68db9ad"; 274 }; 275 } 276 { ··· 282 }; 283 } 284 { 285 + name = "_types_keygrip___keygrip_1.0.2.tgz"; 286 + path = fetchurl { 287 + name = "_types_keygrip___keygrip_1.0.2.tgz"; 288 + url = "https://registry.yarnpkg.com/@types/keygrip/-/keygrip-1.0.2.tgz"; 289 + sha1 = "513abfd256d7ad0bf1ee1873606317b33b1b2a72"; 290 + }; 291 + } 292 + { 293 + name = "_types_koa_compose___koa_compose_3.2.5.tgz"; 294 + path = fetchurl { 295 + name = "_types_koa_compose___koa_compose_3.2.5.tgz"; 296 + url = "https://registry.yarnpkg.com/@types/koa-compose/-/koa-compose-3.2.5.tgz"; 297 + sha1 = "85eb2e80ac50be95f37ccf8c407c09bbe3468e9d"; 298 + }; 299 + } 300 + { 301 + name = "_types_koa___koa_2.13.1.tgz"; 302 + path = fetchurl { 303 + name = "_types_koa___koa_2.13.1.tgz"; 304 + url = "https://registry.yarnpkg.com/@types/koa/-/koa-2.13.1.tgz"; 305 + sha1 = "e29877a6b5ad3744ab1024f6ec75b8cbf6ec45db"; 306 + }; 307 + } 308 + { 309 + name = "_types_ldapjs___ldapjs_1.0.10.tgz"; 310 path = fetchurl { 311 + name = "_types_ldapjs___ldapjs_1.0.10.tgz"; 312 + url = "https://registry.yarnpkg.com/@types/ldapjs/-/ldapjs-1.0.10.tgz"; 313 + sha1 = "bac705c9e154b97d69496b5213cc28dbe9715a37"; 314 }; 315 } 316 { 317 + name = "_types_mdast___mdast_3.0.3.tgz"; 318 path = fetchurl { 319 + name = "_types_mdast___mdast_3.0.3.tgz"; 320 + url = "https://registry.yarnpkg.com/@types/mdast/-/mdast-3.0.3.tgz"; 321 + sha1 = "2d7d671b1cd1ea3deb306ea75036c2a0407d2deb"; 322 + }; 323 + } 324 + { 325 + name = "_types_mime___mime_1.3.2.tgz"; 326 + path = fetchurl { 327 + name = "_types_mime___mime_1.3.2.tgz"; 328 + url = "https://registry.yarnpkg.com/@types/mime/-/mime-1.3.2.tgz"; 329 + sha1 = "93e25bf9ee75fe0fd80b594bc4feb0e862111b5a"; 330 + }; 331 + } 332 + { 333 + name = "_types_node___node_15.0.1.tgz"; 334 + path = fetchurl { 335 + name = "_types_node___node_15.0.1.tgz"; 336 + url = "https://registry.yarnpkg.com/@types/node/-/node-15.0.1.tgz"; 337 + sha1 = "ef34dea0881028d11398be5bf4e856743e3dc35a"; 338 }; 339 } 340 { 341 + name = "_types_node___node_12.20.11.tgz"; 342 path = fetchurl { 343 + name = "_types_node___node_12.20.11.tgz"; 344 + url = "https://registry.yarnpkg.com/@types/node/-/node-12.20.11.tgz"; 345 + sha1 = "980832cd56efafff8c18aa148c4085eb02a483f4"; 346 }; 347 } 348 { 349 + name = "_types_node___node_14.14.43.tgz"; 350 path = fetchurl { 351 + name = "_types_node___node_14.14.43.tgz"; 352 + url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.43.tgz"; 353 + sha1 = "26bcbb0595b305400e8ceaf9a127a7f905ae49c8"; 354 }; 355 } 356 { ··· 362 }; 363 } 364 { 365 name = "_types_q___q_1.5.4.tgz"; 366 path = fetchurl { 367 name = "_types_q___q_1.5.4.tgz"; ··· 370 }; 371 } 372 { 373 + name = "_types_qs___qs_6.9.6.tgz"; 374 path = fetchurl { 375 + name = "_types_qs___qs_6.9.6.tgz"; 376 + url = "https://registry.yarnpkg.com/@types/qs/-/qs-6.9.6.tgz"; 377 + sha1 = "df9c3c8b31a247ec315e6996566be3171df4b3b1"; 378 }; 379 } 380 { ··· 394 }; 395 } 396 { 397 + name = "_types_serve_static___serve_static_1.13.9.tgz"; 398 path = fetchurl { 399 + name = "_types_serve_static___serve_static_1.13.9.tgz"; 400 + url = "https://registry.yarnpkg.com/@types/serve-static/-/serve-static-1.13.9.tgz"; 401 + sha1 = "aacf28a85a05ee29a11fb7c3ead935ac56f33e4e"; 402 }; 403 } 404 { ··· 410 }; 411 } 412 { 413 + name = "_types_tapable___tapable_1.0.7.tgz"; 414 path = fetchurl { 415 + name = "_types_tapable___tapable_1.0.7.tgz"; 416 + url = "https://registry.yarnpkg.com/@types/tapable/-/tapable-1.0.7.tgz"; 417 + sha1 = "545158342f949e8fd3bfd813224971ecddc3fac4"; 418 }; 419 } 420 { 421 + name = "_types_uglify_js___uglify_js_3.13.0.tgz"; 422 path = fetchurl { 423 + name = "_types_uglify_js___uglify_js_3.13.0.tgz"; 424 + url = "https://registry.yarnpkg.com/@types/uglify-js/-/uglify-js-3.13.0.tgz"; 425 + sha1 = "1cad8df1fb0b143c5aba08de5712ea9d1ff71124"; 426 }; 427 } 428 { ··· 442 }; 443 } 444 { 445 + name = "_types_webpack___webpack_4.41.27.tgz"; 446 path = fetchurl { 447 + name = "_types_webpack___webpack_4.41.27.tgz"; 448 + url = "https://registry.yarnpkg.com/@types/webpack/-/webpack-4.41.27.tgz"; 449 + sha1 = "f47da488c8037e7f1b2dbf2714fbbacb61ec0ffc"; 450 + }; 451 + } 452 + { 453 + name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz"; 454 + path = fetchurl { 455 + name = "_ungap_promise_all_settled___promise_all_settled_1.1.2.tgz"; 456 + url = "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz"; 457 + sha1 = "aa58042711d6e3275dd37dc597e5d31e8c290a44"; 458 }; 459 } 460 { ··· 602 }; 603 } 604 { 605 + name = "_webpack_cli_configtest___configtest_1.0.2.tgz"; 606 + path = fetchurl { 607 + name = "_webpack_cli_configtest___configtest_1.0.2.tgz"; 608 + url = "https://registry.yarnpkg.com/@webpack-cli/configtest/-/configtest-1.0.2.tgz"; 609 + sha1 = "2a20812bfb3a2ebb0b27ee26a52eeb3e3f000836"; 610 + }; 611 + } 612 + { 613 + name = "_webpack_cli_info___info_1.2.3.tgz"; 614 + path = fetchurl { 615 + name = "_webpack_cli_info___info_1.2.3.tgz"; 616 + url = "https://registry.yarnpkg.com/@webpack-cli/info/-/info-1.2.3.tgz"; 617 + sha1 = "ef819d10ace2976b6d134c7c823a3e79ee31a92c"; 618 + }; 619 + } 620 + { 621 + name = "_webpack_cli_serve___serve_1.3.1.tgz"; 622 + path = fetchurl { 623 + name = "_webpack_cli_serve___serve_1.3.1.tgz"; 624 + url = "https://registry.yarnpkg.com/@webpack-cli/serve/-/serve-1.3.1.tgz"; 625 + sha1 = "911d1b3ff4a843304b9c3bacf67bb34672418441"; 626 + }; 627 + } 628 + { 629 name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; 630 path = fetchurl { 631 name = "_xtuc_ieee754___ieee754_1.2.0.tgz"; ··· 666 }; 667 } 668 { 669 + name = "abbrev___abbrev_1.1.1.tgz"; 670 path = fetchurl { 671 + name = "abbrev___abbrev_1.1.1.tgz"; 672 + url = "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz"; 673 + sha1 = "f8f2c887ad10bf67f634f005b6987fed3179aac8"; 674 }; 675 } 676 { 677 + name = "abstract_logging___abstract_logging_2.0.1.tgz"; 678 path = fetchurl { 679 + name = "abstract_logging___abstract_logging_2.0.1.tgz"; 680 + url = "https://registry.yarnpkg.com/abstract-logging/-/abstract-logging-2.0.1.tgz"; 681 + sha1 = "6b0c371df212db7129b57d2e7fcf282b8bf1c839"; 682 }; 683 } 684 { ··· 690 }; 691 } 692 { 693 name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; 694 path = fetchurl { 695 name = "acorn_jsx___acorn_jsx_5.3.1.tgz"; ··· 698 }; 699 } 700 { 701 name = "acorn___acorn_6.4.2.tgz"; 702 path = fetchurl { 703 name = "acorn___acorn_6.4.2.tgz"; ··· 706 }; 707 } 708 { 709 + name = "acorn___acorn_7.4.1.tgz"; 710 + path = fetchurl { 711 + name = "acorn___acorn_7.4.1.tgz"; 712 + url = "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz"; 713 + sha1 = "feaed255973d2e77555b83dbc08851a6c63520fa"; 714 + }; 715 + } 716 + { 717 name = "adal_node___adal_node_0.1.28.tgz"; 718 path = fetchurl { 719 name = "adal_node___adal_node_0.1.28.tgz"; ··· 762 }; 763 } 764 { 765 + name = "ajv___ajv_8.2.0.tgz"; 766 + path = fetchurl { 767 + name = "ajv___ajv_8.2.0.tgz"; 768 + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.2.0.tgz"; 769 + sha1 = "c89d3380a784ce81b2085f48811c4c101df4c602"; 770 + }; 771 + } 772 + { 773 name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; 774 path = fetchurl { 775 name = "alphanum_sort___alphanum_sort_1.0.2.tgz"; ··· 778 }; 779 } 780 { 781 + name = "ansi_colors___ansi_colors_4.1.1.tgz"; 782 path = fetchurl { 783 + name = "ansi_colors___ansi_colors_4.1.1.tgz"; 784 + url = "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz"; 785 + sha1 = "cbb9ae256bf750af1eab344f229aa27fe94ba348"; 786 }; 787 } 788 { ··· 799 name = "ansi_regex___ansi_regex_3.0.0.tgz"; 800 url = "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz"; 801 sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 802 }; 803 } 804 { ··· 866 }; 867 } 868 { 869 + name = "anymatch___anymatch_3.1.2.tgz"; 870 path = fetchurl { 871 + name = "anymatch___anymatch_3.1.2.tgz"; 872 + url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz"; 873 + sha1 = "c0557c096af32f106198f4f4e2a383537e378716"; 874 }; 875 } 876 { ··· 890 }; 891 } 892 { 893 + name = "archiver___archiver_5.3.0.tgz"; 894 path = fetchurl { 895 + name = "archiver___archiver_5.3.0.tgz"; 896 + url = "https://registry.yarnpkg.com/archiver/-/archiver-5.3.0.tgz"; 897 + sha1 = "dd3e097624481741df626267564f7dd8640a45ba"; 898 }; 899 } 900 { ··· 914 }; 915 } 916 { 917 + name = "argparse___argparse_2.0.1.tgz"; 918 + path = fetchurl { 919 + name = "argparse___argparse_2.0.1.tgz"; 920 + url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; 921 + sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"; 922 + }; 923 + } 924 + { 925 name = "arr_diff___arr_diff_2.0.0.tgz"; 926 path = fetchurl { 927 name = "arr_diff___arr_diff_2.0.0.tgz"; ··· 954 }; 955 } 956 { 957 + name = "array_filter___array_filter_1.0.0.tgz"; 958 path = fetchurl { 959 + name = "array_filter___array_filter_1.0.0.tgz"; 960 + url = "https://registry.yarnpkg.com/array-filter/-/array-filter-1.0.0.tgz"; 961 + sha1 = "baf79e62e6ef4c2a4c0b831232daffec251f9d83"; 962 }; 963 } 964 { ··· 970 }; 971 } 972 { 973 + name = "array_includes___array_includes_3.1.3.tgz"; 974 path = fetchurl { 975 + name = "array_includes___array_includes_3.1.3.tgz"; 976 + url = "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.3.tgz"; 977 + sha1 = "c7f619b382ad2afaf5326cddfdc0afc61af7690a"; 978 }; 979 } 980 { ··· 1018 }; 1019 } 1020 { 1021 name = "asn1.js___asn1.js_5.4.1.tgz"; 1022 path = fetchurl { 1023 name = "asn1.js___asn1.js_5.4.1.tgz"; ··· 1026 }; 1027 } 1028 { 1029 name = "asn1___asn1_0.2.4.tgz"; 1030 path = fetchurl { 1031 name = "asn1___asn1_0.2.4.tgz"; 1032 url = "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz"; 1033 sha1 = "8d2475dfab553bb33e77b54e59e880bb8ce23136"; 1034 }; 1035 } 1036 { ··· 1058 }; 1059 } 1060 { 1061 + name = "astral_regex___astral_regex_2.0.0.tgz"; 1062 path = fetchurl { 1063 + name = "astral_regex___astral_regex_2.0.0.tgz"; 1064 + url = "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz"; 1065 + sha1 = "483143c567aeed4785759c0865786dc77d7d2e31"; 1066 }; 1067 } 1068 { ··· 1074 }; 1075 } 1076 { 1077 + name = "async___async_0.9.2.tgz"; 1078 path = fetchurl { 1079 + name = "async___async_0.9.2.tgz"; 1080 + url = "https://registry.yarnpkg.com/async/-/async-0.9.2.tgz"; 1081 + sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; 1082 }; 1083 } 1084 { ··· 1098 }; 1099 } 1100 { 1101 name = "asynckit___asynckit_0.4.0.tgz"; 1102 path = fetchurl { 1103 name = "asynckit___asynckit_0.4.0.tgz"; ··· 1114 }; 1115 } 1116 { 1117 + name = "available_typed_arrays___available_typed_arrays_1.0.2.tgz"; 1118 + path = fetchurl { 1119 + name = "available_typed_arrays___available_typed_arrays_1.0.2.tgz"; 1120 + url = "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.2.tgz"; 1121 + sha1 = "6b098ca9d8039079ee3f77f7b783c4480ba513f5"; 1122 + }; 1123 + } 1124 + { 1125 + name = "aws_sdk___aws_sdk_2.898.0.tgz"; 1126 path = fetchurl { 1127 + name = "aws_sdk___aws_sdk_2.898.0.tgz"; 1128 + url = "https://registry.yarnpkg.com/aws-sdk/-/aws-sdk-2.898.0.tgz"; 1129 + sha1 = "fd07b9748d302fccc2d1e069ae313e911b526578"; 1130 }; 1131 } 1132 { ··· 1642 }; 1643 } 1644 { 1645 + name = "balanced_match___balanced_match_1.0.2.tgz"; 1646 path = fetchurl { 1647 + name = "balanced_match___balanced_match_1.0.2.tgz"; 1648 + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; 1649 + sha1 = "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"; 1650 }; 1651 } 1652 { ··· 1746 }; 1747 } 1748 { 1749 + name = "bintrees___bintrees_1.0.1.tgz"; 1750 + path = fetchurl { 1751 + name = "bintrees___bintrees_1.0.1.tgz"; 1752 + url = "https://registry.yarnpkg.com/bintrees/-/bintrees-1.0.1.tgz"; 1753 + sha1 = "0e655c9b9c2435eaab68bf4027226d2b55a34524"; 1754 + }; 1755 + } 1756 + { 1757 name = "bl___bl_3.0.1.tgz"; 1758 path = fetchurl { 1759 name = "bl___bl_3.0.1.tgz"; ··· 1762 }; 1763 } 1764 { 1765 + name = "bl___bl_4.1.0.tgz"; 1766 path = fetchurl { 1767 + name = "bl___bl_4.1.0.tgz"; 1768 + url = "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz"; 1769 + sha1 = "451535264182bec2fbbc83a62ab98cf11d9f7b3a"; 1770 }; 1771 } 1772 { ··· 1778 }; 1779 } 1780 { 1781 + name = "block_stream2___block_stream2_2.1.0.tgz"; 1782 path = fetchurl { 1783 + name = "block_stream2___block_stream2_2.1.0.tgz"; 1784 + url = "https://registry.yarnpkg.com/block-stream2/-/block-stream2-2.1.0.tgz"; 1785 + sha1 = "ac0c5ef4298b3857796e05be8ebed72196fa054b"; 1786 + }; 1787 + } 1788 + { 1789 + name = "block_stream___block_stream_0.0.9.tgz"; 1790 + path = fetchurl { 1791 + name = "block_stream___block_stream_0.0.9.tgz"; 1792 + url = "https://registry.yarnpkg.com/block-stream/-/block-stream-0.0.9.tgz"; 1793 + sha1 = "13ebfe778a03205cfe03751481ebb4b3300c126a"; 1794 }; 1795 } 1796 { ··· 1802 }; 1803 } 1804 { 1805 + name = "bn.js___bn.js_4.12.0.tgz"; 1806 path = fetchurl { 1807 + name = "bn.js___bn.js_4.12.0.tgz"; 1808 + url = "https://registry.yarnpkg.com/bn.js/-/bn.js-4.12.0.tgz"; 1809 + sha1 = "775b3f278efbb9718eec7361f483fb36fbbfea88"; 1810 }; 1811 } 1812 { 1813 + name = "bn.js___bn.js_5.2.0.tgz"; 1814 path = fetchurl { 1815 + name = "bn.js___bn.js_5.2.0.tgz"; 1816 + url = "https://registry.yarnpkg.com/bn.js/-/bn.js-5.2.0.tgz"; 1817 + sha1 = "358860674396c6997771a9d051fcc1b57d4ae002"; 1818 }; 1819 } 1820 { ··· 1850 }; 1851 } 1852 { 1853 name = "brace_expansion___brace_expansion_1.1.11.tgz"; 1854 path = fetchurl { 1855 name = "brace_expansion___brace_expansion_1.1.11.tgz"; ··· 1890 }; 1891 } 1892 { 1893 name = "browser_stdout___browser_stdout_1.3.1.tgz"; 1894 path = fetchurl { 1895 name = "browser_stdout___browser_stdout_1.3.1.tgz"; ··· 1962 }; 1963 } 1964 { 1965 + name = "browserslist___browserslist_4.16.6.tgz"; 1966 path = fetchurl { 1967 + name = "browserslist___browserslist_4.16.6.tgz"; 1968 + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz"; 1969 + sha1 = "d7901277a5a88e554ed305b183ec9b0c08f66fa2"; 1970 }; 1971 } 1972 { ··· 2042 }; 2043 } 2044 { 2045 name = "bytes___bytes_3.0.0.tgz"; 2046 path = fetchurl { 2047 name = "bytes___bytes_3.0.0.tgz"; ··· 2066 }; 2067 } 2068 { 2069 + name = "cacache___cacache_15.0.6.tgz"; 2070 path = fetchurl { 2071 + name = "cacache___cacache_15.0.6.tgz"; 2072 + url = "https://registry.yarnpkg.com/cacache/-/cacache-15.0.6.tgz"; 2073 + sha1 = "65a8c580fda15b59150fb76bf3f3a8e45d583099"; 2074 }; 2075 } 2076 { ··· 2146 }; 2147 } 2148 { 2149 + name = "camelcase___camelcase_6.2.0.tgz"; 2150 path = fetchurl { 2151 + name = "camelcase___camelcase_6.2.0.tgz"; 2152 + url = "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz"; 2153 + sha1 = "924af881c9d525ac9d87f40d964e5cea982a1809"; 2154 }; 2155 } 2156 { ··· 2162 }; 2163 } 2164 { 2165 + name = "caniuse_lite___caniuse_lite_1.0.30001220.tgz"; 2166 path = fetchurl { 2167 + name = "caniuse_lite___caniuse_lite_1.0.30001220.tgz"; 2168 + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001220.tgz"; 2169 + sha1 = "c080e1c8eefb99f6cc9685da6313840bdbaf4c36"; 2170 }; 2171 } 2172 { ··· 2175 name = "caseless___caseless_0.12.0.tgz"; 2176 url = "https://registry.yarnpkg.com/caseless/-/caseless-0.12.0.tgz"; 2177 sha1 = "1b681c21ff84033c826543090689420d187151dc"; 2178 }; 2179 } 2180 { ··· 2202 }; 2203 } 2204 { 2205 + name = "chalk___chalk_4.1.1.tgz"; 2206 + path = fetchurl { 2207 + name = "chalk___chalk_4.1.1.tgz"; 2208 + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz"; 2209 + sha1 = "c80b3fab28bf6371e6863325eee67e618b77e6ad"; 2210 + }; 2211 + } 2212 + { 2213 name = "chalk___chalk_0.4.0.tgz"; 2214 path = fetchurl { 2215 name = "chalk___chalk_0.4.0.tgz"; ··· 2223 name = "chance___chance_1.1.7.tgz"; 2224 url = "https://registry.yarnpkg.com/chance/-/chance-1.1.7.tgz"; 2225 sha1 = "e99dde5ac16681af787b5ba94c8277c090d6cfe8"; 2226 }; 2227 } 2228 { ··· 2250 }; 2251 } 2252 { 2253 + name = "cheerio___cheerio_0.22.0.tgz"; 2254 path = fetchurl { 2255 + name = "cheerio___cheerio_0.22.0.tgz"; 2256 + url = "https://registry.yarnpkg.com/cheerio/-/cheerio-0.22.0.tgz"; 2257 + sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e"; 2258 }; 2259 } 2260 { 2261 + name = "chokidar___chokidar_3.5.1.tgz"; 2262 path = fetchurl { 2263 + name = "chokidar___chokidar_3.5.1.tgz"; 2264 + url = "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz"; 2265 + sha1 = "ee9ce7bbebd2b79f49f304799d5468e31e14e68a"; 2266 }; 2267 } 2268 { ··· 2282 }; 2283 } 2284 { 2285 name = "chownr___chownr_1.1.4.tgz"; 2286 path = fetchurl { 2287 name = "chownr___chownr_1.1.4.tgz"; ··· 2298 }; 2299 } 2300 { 2301 + name = "chrome_trace_event___chrome_trace_event_1.0.3.tgz"; 2302 path = fetchurl { 2303 + name = "chrome_trace_event___chrome_trace_event_1.0.3.tgz"; 2304 + url = "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz"; 2305 + sha1 = "1015eced4741e15d06664a957dbbf50d041e26ac"; 2306 }; 2307 } 2308 { ··· 2338 }; 2339 } 2340 { 2341 + name = "clipboard___clipboard_2.0.8.tgz"; 2342 path = fetchurl { 2343 + name = "clipboard___clipboard_2.0.8.tgz"; 2344 + url = "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.8.tgz"; 2345 + sha1 = "ffc6c103dd2967a83005f3f61976aa4655a4cdba"; 2346 }; 2347 } 2348 { 2349 + name = "cliui___cliui_7.0.4.tgz"; 2350 path = fetchurl { 2351 + name = "cliui___cliui_7.0.4.tgz"; 2352 + url = "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz"; 2353 + sha1 = "a0265ee655476fc807aea9df3df8df7783808b4f"; 2354 }; 2355 } 2356 { 2357 + name = "clone_deep___clone_deep_4.0.1.tgz"; 2358 path = fetchurl { 2359 + name = "clone_deep___clone_deep_4.0.1.tgz"; 2360 + url = "https://registry.yarnpkg.com/clone-deep/-/clone-deep-4.0.1.tgz"; 2361 + sha1 = "c19fd9bdbbf85942b4fd979c84dcf7d5f07c2387"; 2362 }; 2363 } 2364 { ··· 2410 ''; 2411 } 2412 { 2413 name = "collection_visit___collection_visit_1.0.0.tgz"; 2414 path = fetchurl { 2415 name = "collection_visit___collection_visit_1.0.0.tgz"; ··· 2450 }; 2451 } 2452 { 2453 + name = "color_string___color_string_1.5.5.tgz"; 2454 path = fetchurl { 2455 + name = "color_string___color_string_1.5.5.tgz"; 2456 + url = "https://registry.yarnpkg.com/color-string/-/color-string-1.5.5.tgz"; 2457 + sha1 = "65474a8f0e7439625f3d27a6a19d89fc45223014"; 2458 }; 2459 } 2460 { ··· 2474 }; 2475 } 2476 { 2477 + name = "colorette___colorette_1.2.2.tgz"; 2478 path = fetchurl { 2479 + name = "colorette___colorette_1.2.2.tgz"; 2480 + url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz"; 2481 + sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"; 2482 }; 2483 } 2484 { ··· 2514 }; 2515 } 2516 { 2517 name = "commander___commander_4.1.1.tgz"; 2518 path = fetchurl { 2519 name = "commander___commander_4.1.1.tgz"; 2520 url = "https://registry.yarnpkg.com/commander/-/commander-4.1.1.tgz"; 2521 sha1 = "9fd602bd936294e9e9ef46a3f4d6964044b18068"; 2522 + }; 2523 + } 2524 + { 2525 + name = "commander___commander_7.2.0.tgz"; 2526 + path = fetchurl { 2527 + name = "commander___commander_7.2.0.tgz"; 2528 + url = "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz"; 2529 + sha1 = "a36cb57d0b501ce108e4d20559a150a391d97ab7"; 2530 }; 2531 } 2532 { ··· 2570 }; 2571 } 2572 { 2573 + name = "compress_commons___compress_commons_4.1.0.tgz"; 2574 path = fetchurl { 2575 + name = "compress_commons___compress_commons_4.1.0.tgz"; 2576 + url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.1.0.tgz"; 2577 + sha1 = "25ec7a4528852ccd1d441a7d4353cd0ece11371b"; 2578 }; 2579 } 2580 { ··· 2618 }; 2619 } 2620 { 2621 name = "connect_flash___connect_flash_0.1.1.tgz"; 2622 path = fetchurl { 2623 name = "connect_flash___connect_flash_0.1.1.tgz"; ··· 2626 }; 2627 } 2628 { 2629 + name = "connect_session_sequelize___connect_session_sequelize_7.1.1.tgz"; 2630 path = fetchurl { 2631 + name = "connect_session_sequelize___connect_session_sequelize_7.1.1.tgz"; 2632 + url = "https://registry.yarnpkg.com/connect-session-sequelize/-/connect-session-sequelize-7.1.1.tgz"; 2633 + sha1 = "e96f33bb3f4560f286cc0e0aefec4f3d3c148fe5"; 2634 }; 2635 } 2636 { ··· 2671 name = "content_disposition___content_disposition_0.5.3.tgz"; 2672 url = "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz"; 2673 sha1 = "e130caf7e7279087c5616c2007d0485698984fbd"; 2674 }; 2675 } 2676 { ··· 2730 }; 2731 } 2732 { 2733 + name = "copy_anything___copy_anything_2.0.3.tgz"; 2734 path = fetchurl { 2735 + name = "copy_anything___copy_anything_2.0.3.tgz"; 2736 + url = "https://registry.yarnpkg.com/copy-anything/-/copy-anything-2.0.3.tgz"; 2737 + sha1 = "842407ba02466b0df844819bbe3baebbe5d45d87"; 2738 }; 2739 } 2740 { ··· 2794 }; 2795 } 2796 { 2797 + name = "crc32_stream___crc32_stream_4.0.2.tgz"; 2798 path = fetchurl { 2799 + name = "crc32_stream___crc32_stream_4.0.2.tgz"; 2800 + url = "https://registry.yarnpkg.com/crc32-stream/-/crc32-stream-4.0.2.tgz"; 2801 + sha1 = "c922ad22b38395abe9d3870f02fa8134ed709007"; 2802 }; 2803 } 2804 { ··· 2826 }; 2827 } 2828 { 2829 + name = "cross_spawn___cross_spawn_7.0.3.tgz"; 2830 path = fetchurl { 2831 + name = "cross_spawn___cross_spawn_7.0.3.tgz"; 2832 + url = "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz"; 2833 + sha1 = "f73a85b9d5d41d045551c177e2882d4ac85728a6"; 2834 }; 2835 } 2836 { ··· 2866 }; 2867 } 2868 { 2869 + name = "css_loader___css_loader_5.2.4.tgz"; 2870 path = fetchurl { 2871 + name = "css_loader___css_loader_5.2.4.tgz"; 2872 + url = "https://registry.yarnpkg.com/css-loader/-/css-loader-5.2.4.tgz"; 2873 + sha1 = "e985dcbce339812cb6104ef3670f08f9893a1536"; 2874 }; 2875 } 2876 { ··· 2906 }; 2907 } 2908 { 2909 + name = "css_tree___css_tree_1.1.3.tgz"; 2910 path = fetchurl { 2911 + name = "css_tree___css_tree_1.1.3.tgz"; 2912 + url = "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz"; 2913 + sha1 = "eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d"; 2914 }; 2915 } 2916 { ··· 2946 }; 2947 } 2948 { 2949 + name = "cssnano_preset_default___cssnano_preset_default_4.0.8.tgz"; 2950 path = fetchurl { 2951 + name = "cssnano_preset_default___cssnano_preset_default_4.0.8.tgz"; 2952 + url = "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-4.0.8.tgz"; 2953 + sha1 = "920622b1fc1e95a34e8838203f1397a504f2d3ff"; 2954 }; 2955 } 2956 { ··· 2986 }; 2987 } 2988 { 2989 + name = "cssnano___cssnano_4.1.11.tgz"; 2990 path = fetchurl { 2991 + name = "cssnano___cssnano_4.1.11.tgz"; 2992 + url = "https://registry.yarnpkg.com/cssnano/-/cssnano-4.1.11.tgz"; 2993 + sha1 = "c7b5f5b81da269cb1fd982cb960c1200910c9a99"; 2994 }; 2995 } 2996 { ··· 3015 name = "cssom___cssom_0.2.5.tgz"; 3016 url = "https://registry.yarnpkg.com/cssom/-/cssom-0.2.5.tgz"; 3017 sha1 = "2682709b5902e7212df529116ff788cd5b254894"; 3018 }; 3019 } 3020 { ··· 3290 }; 3291 } 3292 { 3293 name = "dagre_d3___dagre_d3_0.6.4.tgz"; 3294 path = fetchurl { 3295 name = "dagre_d3___dagre_d3_0.6.4.tgz"; ··· 3314 }; 3315 } 3316 { 3317 name = "date_utils___date_utils_1.2.21.tgz"; 3318 path = fetchurl { 3319 name = "date_utils___date_utils_1.2.21.tgz"; ··· 3338 }; 3339 } 3340 { 3341 + name = "debug___debug_4.3.1.tgz"; 3342 + path = fetchurl { 3343 + name = "debug___debug_4.3.1.tgz"; 3344 + url = "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz"; 3345 + sha1 = "f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee"; 3346 + }; 3347 + } 3348 + { 3349 name = "debug___debug_3.2.7.tgz"; 3350 path = fetchurl { 3351 name = "debug___debug_3.2.7.tgz"; ··· 3354 }; 3355 } 3356 { 3357 name = "debug___debug_4.1.1.tgz"; 3358 path = fetchurl { 3359 name = "debug___debug_4.1.1.tgz"; ··· 3362 }; 3363 } 3364 { 3365 + name = "decamelize___decamelize_4.0.0.tgz"; 3366 path = fetchurl { 3367 + name = "decamelize___decamelize_4.0.0.tgz"; 3368 + url = "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz"; 3369 + sha1 = "aa472d7bf660eb15f3494efd531cab7f2a709837"; 3370 }; 3371 } 3372 { ··· 3378 }; 3379 } 3380 { 3381 + name = "deep_equal___deep_equal_2.0.5.tgz"; 3382 path = fetchurl { 3383 + name = "deep_equal___deep_equal_2.0.5.tgz"; 3384 + url = "https://registry.yarnpkg.com/deep-equal/-/deep-equal-2.0.5.tgz"; 3385 + sha1 = "55cd2fe326d83f9cbf7261ef0e060b3f724c5cb9"; 3386 }; 3387 } 3388 { ··· 3442 }; 3443 } 3444 { 3445 name = "delayed_stream___delayed_stream_1.0.0.tgz"; 3446 path = fetchurl { 3447 name = "delayed_stream___delayed_stream_1.0.0.tgz"; ··· 3506 }; 3507 } 3508 { 3509 name = "detect_indent___detect_indent_4.0.0.tgz"; 3510 path = fetchurl { 3511 name = "detect_indent___detect_indent_4.0.0.tgz"; ··· 3538 ''; 3539 } 3540 { 3541 + name = "diff___diff_5.0.0.tgz"; 3542 path = fetchurl { 3543 + name = "diff___diff_5.0.0.tgz"; 3544 + url = "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz"; 3545 + sha1 = "7ed6ad76d859d030787ec35855f5b1daf31d852b"; 3546 }; 3547 } 3548 { ··· 3618 }; 3619 } 3620 { 3621 + name = "domelementtype___domelementtype_2.2.0.tgz"; 3622 path = fetchurl { 3623 + name = "domelementtype___domelementtype_2.2.0.tgz"; 3624 + url = "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.2.0.tgz"; 3625 + sha1 = "9a0b6c2782ed6a1c7323d42267183df9bd8b1d57"; 3626 }; 3627 } 3628 { ··· 3631 name = "domhandler___domhandler_2.4.2.tgz"; 3632 url = "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz"; 3633 sha1 = "8805097e933d65e85546f726d60f5eb88b44f803"; 3634 + }; 3635 + } 3636 + { 3637 + name = "domino___domino_2.1.6.tgz"; 3638 + path = fetchurl { 3639 + name = "domino___domino_2.1.6.tgz"; 3640 + url = "https://registry.yarnpkg.com/domino/-/domino-2.1.6.tgz"; 3641 + sha1 = "fe4ace4310526e5e7b9d12c7de01b7f485a57ffe"; 3642 }; 3643 } 3644 { ··· 3658 }; 3659 } 3660 { 3661 name = "dot_case___dot_case_3.0.4.tgz"; 3662 path = fetchurl { 3663 name = "dot_case___dot_case_3.0.4.tgz"; ··· 3682 }; 3683 } 3684 { 3685 name = "duplexify___duplexify_3.7.1.tgz"; 3686 path = fetchurl { 3687 name = "duplexify___duplexify_3.7.1.tgz"; ··· 3706 }; 3707 } 3708 { 3709 name = "ee_first___ee_first_1.1.1.tgz"; 3710 path = fetchurl { 3711 name = "ee_first___ee_first_1.1.1.tgz"; ··· 3714 }; 3715 } 3716 { 3717 + name = "ejs___ejs_3.1.6.tgz"; 3718 path = fetchurl { 3719 + name = "ejs___ejs_3.1.6.tgz"; 3720 + url = "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz"; 3721 + sha1 = "5bfd0a0689743bb5268b3550cceeebbc1702822a"; 3722 }; 3723 } 3724 { 3725 + name = "electron_to_chromium___electron_to_chromium_1.3.725.tgz"; 3726 path = fetchurl { 3727 + name = "electron_to_chromium___electron_to_chromium_1.3.725.tgz"; 3728 + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.725.tgz"; 3729 + sha1 = "04fc83f9189169aff50f0a00c6b4090b910cba85"; 3730 }; 3731 } 3732 { 3733 + name = "elliptic___elliptic_6.5.4.tgz"; 3734 path = fetchurl { 3735 + name = "elliptic___elliptic_6.5.4.tgz"; 3736 + url = "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.4.tgz"; 3737 + sha1 = "da37cebd31e79a1367e941b592ed1fbebd58abbb"; 3738 }; 3739 } 3740 { ··· 3786 }; 3787 } 3788 { 3789 + name = "engine.io_client___engine.io_client_3.5.1.tgz"; 3790 path = fetchurl { 3791 + name = "engine.io_client___engine.io_client_3.5.1.tgz"; 3792 + url = "https://registry.yarnpkg.com/engine.io-client/-/engine.io-client-3.5.1.tgz"; 3793 + sha1 = "b500458a39c0cd197a921e0e759721a746d0bdb9"; 3794 }; 3795 } 3796 { ··· 3818 }; 3819 } 3820 { 3821 + name = "enquirer___enquirer_2.3.6.tgz"; 3822 + path = fetchurl { 3823 + name = "enquirer___enquirer_2.3.6.tgz"; 3824 + url = "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz"; 3825 + sha1 = "2a7fe5dd634a1e4125a975ec994ff5456dc3734d"; 3826 + }; 3827 + } 3828 + { 3829 name = "entities___entities_1.1.2.tgz"; 3830 path = fetchurl { 3831 name = "entities___entities_1.1.2.tgz"; ··· 3834 }; 3835 } 3836 { 3837 + name = "entities___entities_2.2.0.tgz"; 3838 + path = fetchurl { 3839 + name = "entities___entities_2.2.0.tgz"; 3840 + url = "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz"; 3841 + sha1 = "098dc90ebb83d8dffa089d55256b351d34c4da55"; 3842 + }; 3843 + } 3844 + { 3845 name = "entities___entities_2.1.0.tgz"; 3846 path = fetchurl { 3847 name = "entities___entities_2.1.0.tgz"; ··· 3850 }; 3851 } 3852 { 3853 name = "entity_decode___entity_decode_2.0.2.tgz"; 3854 path = fetchurl { 3855 name = "entity_decode___entity_decode_2.0.2.tgz"; ··· 3858 }; 3859 } 3860 { 3861 + name = "envinfo___envinfo_7.8.1.tgz"; 3862 + path = fetchurl { 3863 + name = "envinfo___envinfo_7.8.1.tgz"; 3864 + url = "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz"; 3865 + sha1 = "06377e3e5f4d379fea7ac592d5ad8927e0c4d475"; 3866 + }; 3867 + } 3868 + { 3869 name = "errno___errno_0.1.8.tgz"; 3870 path = fetchurl { 3871 name = "errno___errno_0.1.8.tgz"; ··· 3882 }; 3883 } 3884 { 3885 + name = "es_abstract___es_abstract_1.18.0.tgz"; 3886 path = fetchurl { 3887 + name = "es_abstract___es_abstract_1.18.0.tgz"; 3888 + url = "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.18.0.tgz"; 3889 + sha1 = "ab80b359eecb7ede4c298000390bc5ac3ec7b5a4"; 3890 }; 3891 } 3892 { 3893 + name = "es_get_iterator___es_get_iterator_1.1.2.tgz"; 3894 path = fetchurl { 3895 + name = "es_get_iterator___es_get_iterator_1.1.2.tgz"; 3896 + url = "https://registry.yarnpkg.com/es-get-iterator/-/es-get-iterator-1.1.2.tgz"; 3897 + sha1 = "9234c54aba713486d7ebde0220864af5e2b283f7"; 3898 }; 3899 } 3900 { ··· 3906 }; 3907 } 3908 { 3909 + name = "es6_error___es6_error_4.1.1.tgz"; 3910 path = fetchurl { 3911 + name = "es6_error___es6_error_4.1.1.tgz"; 3912 + url = "https://registry.yarnpkg.com/es6-error/-/es6-error-4.1.1.tgz"; 3913 + sha1 = "9e3af407459deed47e9a91f9b885a84eb05c561d"; 3914 }; 3915 } 3916 { ··· 3930 }; 3931 } 3932 { 3933 + name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; 3934 path = fetchurl { 3935 + name = "escape_string_regexp___escape_string_regexp_4.0.0.tgz"; 3936 + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz"; 3937 + sha1 = "14ba83a5d373e3d311e5afca29cf5bfad965bf34"; 3938 }; 3939 } 3940 { 3941 + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 3942 path = fetchurl { 3943 + name = "escape_string_regexp___escape_string_regexp_1.0.5.tgz"; 3944 + url = "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz"; 3945 + sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"; 3946 }; 3947 } 3948 { 3949 + name = "eslint_config_standard___eslint_config_standard_16.0.2.tgz"; 3950 path = fetchurl { 3951 + name = "eslint_config_standard___eslint_config_standard_16.0.2.tgz"; 3952 + url = "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-16.0.2.tgz"; 3953 + sha1 = "71e91727ac7a203782d0a5ca4d1c462d14e234f6"; 3954 }; 3955 } 3956 { ··· 3970 }; 3971 } 3972 { 3973 + name = "eslint_plugin_es___eslint_plugin_es_3.0.1.tgz"; 3974 path = fetchurl { 3975 + name = "eslint_plugin_es___eslint_plugin_es_3.0.1.tgz"; 3976 + url = "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-3.0.1.tgz"; 3977 + sha1 = "75a7cdfdccddc0589934aeeb384175f221c57893"; 3978 }; 3979 } 3980 { ··· 3986 }; 3987 } 3988 { 3989 + name = "eslint_plugin_node___eslint_plugin_node_11.1.0.tgz"; 3990 path = fetchurl { 3991 + name = "eslint_plugin_node___eslint_plugin_node_11.1.0.tgz"; 3992 + url = "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-11.1.0.tgz"; 3993 + sha1 = "c95544416ee4ada26740a30474eefc5402dc671d"; 3994 }; 3995 } 3996 { 3997 + name = "eslint_plugin_promise___eslint_plugin_promise_5.1.0.tgz"; 3998 path = fetchurl { 3999 + name = "eslint_plugin_promise___eslint_plugin_promise_5.1.0.tgz"; 4000 + url = "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-5.1.0.tgz"; 4001 + sha1 = "fb2188fb734e4557993733b41aa1a688f46c6f24"; 4002 }; 4003 } 4004 { ··· 4018 }; 4019 } 4020 { 4021 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 4022 path = fetchurl { 4023 + name = "eslint_scope___eslint_scope_5.1.1.tgz"; 4024 + url = "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz"; 4025 + sha1 = "e786e59a66cb92b3f6c1fb0d508aab174848f48c"; 4026 + }; 4027 + } 4028 + { 4029 + name = "eslint_utils___eslint_utils_2.1.0.tgz"; 4030 + path = fetchurl { 4031 + name = "eslint_utils___eslint_utils_2.1.0.tgz"; 4032 + url = "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz"; 4033 + sha1 = "d2de5e03424e707dc10c74068ddedae708741b27"; 4034 }; 4035 } 4036 { ··· 4042 }; 4043 } 4044 { 4045 + name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz"; 4046 + path = fetchurl { 4047 + name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz"; 4048 + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"; 4049 + sha1 = "21fdc8fbcd9c795cc0321f0563702095751511a8"; 4050 + }; 4051 + } 4052 + { 4053 + name = "eslint___eslint_7.25.0.tgz"; 4054 path = fetchurl { 4055 + name = "eslint___eslint_7.25.0.tgz"; 4056 + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.25.0.tgz"; 4057 + sha1 = "1309e4404d94e676e3e831b3a3ad2b050031eb67"; 4058 }; 4059 } 4060 { 4061 + name = "espree___espree_7.3.1.tgz"; 4062 path = fetchurl { 4063 + name = "espree___espree_7.3.1.tgz"; 4064 + url = "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz"; 4065 + sha1 = "f2df330b752c6f55019f8bd89b7660039c1bbbb6"; 4066 }; 4067 } 4068 { ··· 4074 }; 4075 } 4076 { 4077 + name = "esquery___esquery_1.4.0.tgz"; 4078 path = fetchurl { 4079 + name = "esquery___esquery_1.4.0.tgz"; 4080 + url = "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz"; 4081 + sha1 = "2148ffc38b82e8c7057dfed48425b3e61f0f24a5"; 4082 }; 4083 } 4084 { ··· 4138 }; 4139 } 4140 { 4141 name = "events___events_1.1.1.tgz"; 4142 path = fetchurl { 4143 name = "events___events_1.1.1.tgz"; ··· 4146 }; 4147 } 4148 { 4149 + name = "events___events_3.3.0.tgz"; 4150 path = fetchurl { 4151 + name = "events___events_3.3.0.tgz"; 4152 + url = "https://registry.yarnpkg.com/events/-/events-3.3.0.tgz"; 4153 + sha1 = "31a95ad0a924e2d2c419a813aeb2c4e878ea7400"; 4154 }; 4155 } 4156 { ··· 4159 name = "evp_bytestokey___evp_bytestokey_1.0.3.tgz"; 4160 url = "https://registry.yarnpkg.com/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz"; 4161 sha1 = "7fcbdb198dc71959432efe13842684e0525acb02"; 4162 + }; 4163 + } 4164 + { 4165 + name = "execa___execa_5.0.0.tgz"; 4166 + path = fetchurl { 4167 + name = "execa___execa_5.0.0.tgz"; 4168 + url = "https://registry.yarnpkg.com/execa/-/execa-5.0.0.tgz"; 4169 + sha1 = "4029b0007998a841fbd1032e5f4de86a3c1e3376"; 4170 }; 4171 } 4172 { ··· 4202 }; 4203 } 4204 { 4205 + name = "expose_loader___expose_loader_1.0.3.tgz"; 4206 path = fetchurl { 4207 + name = "expose_loader___expose_loader_1.0.3.tgz"; 4208 + url = "https://registry.yarnpkg.com/expose-loader/-/expose-loader-1.0.3.tgz"; 4209 + sha1 = "5686d3b78cac8831c4af11c3dc361563deb8a9c0"; 4210 }; 4211 } 4212 { ··· 4223 name = "express___express_4.17.1.tgz"; 4224 url = "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz"; 4225 sha1 = "4491fc38605cf51f8629d39c2b5d026f98a4c134"; 4226 }; 4227 } 4228 { ··· 4258 }; 4259 } 4260 { 4261 name = "extglob___extglob_0.3.2.tgz"; 4262 path = fetchurl { 4263 name = "extglob___extglob_0.3.2.tgz"; ··· 4271 name = "extglob___extglob_2.0.4.tgz"; 4272 url = "https://registry.yarnpkg.com/extglob/-/extglob-2.0.4.tgz"; 4273 sha1 = "ad00fe4dc612a9232e8718711dc5cb5ab0285543"; 4274 }; 4275 } 4276 { ··· 4298 }; 4299 } 4300 { 4301 + name = "fast_glob___fast_glob_3.2.5.tgz"; 4302 path = fetchurl { 4303 + name = "fast_glob___fast_glob_3.2.5.tgz"; 4304 + url = "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz"; 4305 + sha1 = "7939af2a656de79a4f1901903ee8adcaa7cb9661"; 4306 }; 4307 } 4308 { ··· 4330 }; 4331 } 4332 { 4333 + name = "fast_xml_parser___fast_xml_parser_3.19.0.tgz"; 4334 path = fetchurl { 4335 + name = "fast_xml_parser___fast_xml_parser_3.19.0.tgz"; 4336 + url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz"; 4337 + sha1 = "cb637ec3f3999f51406dd8ff0e6fc4d83e520d01"; 4338 + }; 4339 + } 4340 + { 4341 + name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz"; 4342 + path = fetchurl { 4343 + name = "fastest_levenshtein___fastest_levenshtein_1.0.12.tgz"; 4344 + url = "https://registry.yarnpkg.com/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz"; 4345 + sha1 = "9990f7d3a88cc5a9ffd1f1745745251700d497e2"; 4346 + }; 4347 + } 4348 + { 4349 + name = "fastq___fastq_1.11.0.tgz"; 4350 + path = fetchurl { 4351 + name = "fastq___fastq_1.11.0.tgz"; 4352 + url = "https://registry.yarnpkg.com/fastq/-/fastq-1.11.0.tgz"; 4353 + sha1 = "bb9fb955a07130a918eb63c1f5161cc32a5d0858"; 4354 }; 4355 } 4356 { ··· 4362 }; 4363 } 4364 { 4365 + name = "fecha___fecha_4.2.1.tgz"; 4366 path = fetchurl { 4367 + name = "fecha___fecha_4.2.1.tgz"; 4368 + url = "https://registry.yarnpkg.com/fecha/-/fecha-4.2.1.tgz"; 4369 + sha1 = "0a83ad8f86ef62a091e22bb5a039cd03d23eecce"; 4370 }; 4371 } 4372 { ··· 4378 }; 4379 } 4380 { 4381 name = "figures___figures_3.2.0.tgz"; 4382 path = fetchurl { 4383 name = "figures___figures_3.2.0.tgz"; ··· 4386 }; 4387 } 4388 { 4389 + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 4390 path = fetchurl { 4391 + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 4392 + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 4393 + sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027"; 4394 }; 4395 } 4396 { 4397 + name = "file_loader___file_loader_6.2.0.tgz"; 4398 path = fetchurl { 4399 + name = "file_loader___file_loader_6.2.0.tgz"; 4400 + url = "https://registry.yarnpkg.com/file-loader/-/file-loader-6.2.0.tgz"; 4401 + sha1 = "baef7cf8e1840df325e4390b4484879480eebe4d"; 4402 }; 4403 } 4404 { 4405 + name = "file_saver___file_saver_2.0.5.tgz"; 4406 path = fetchurl { 4407 + name = "file_saver___file_saver_2.0.5.tgz"; 4408 + url = "https://registry.yarnpkg.com/file-saver/-/file-saver-2.0.5.tgz"; 4409 + sha1 = "d61cfe2ce059f414d899e9dd6d4107ee25670c38"; 4410 }; 4411 } 4412 { 4413 + name = "file_type___file_type_16.3.0.tgz"; 4414 path = fetchurl { 4415 + name = "file_type___file_type_16.3.0.tgz"; 4416 + url = "https://registry.yarnpkg.com/file-type/-/file-type-16.3.0.tgz"; 4417 + sha1 = "f03af91db30f92cc9a0b335c0644c46101522f6d"; 4418 }; 4419 } 4420 { ··· 4423 name = "file_uri_to_path___file_uri_to_path_1.0.0.tgz"; 4424 url = "https://registry.yarnpkg.com/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz"; 4425 sha1 = "553a7b8446ff6f684359c445f1e37a05dacc33dd"; 4426 + }; 4427 + } 4428 + { 4429 + name = "filelist___filelist_1.0.2.tgz"; 4430 + path = fetchurl { 4431 + name = "filelist___filelist_1.0.2.tgz"; 4432 + url = "https://registry.yarnpkg.com/filelist/-/filelist-1.0.2.tgz"; 4433 + sha1 = "80202f21462d4d1c2e214119b1807c1bc0380e5b"; 4434 }; 4435 } 4436 { ··· 4498 }; 4499 } 4500 { 4501 + name = "find_up___find_up_5.0.0.tgz"; 4502 + path = fetchurl { 4503 + name = "find_up___find_up_5.0.0.tgz"; 4504 + url = "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz"; 4505 + sha1 = "4c92819ecb7083561e4f4a240a86be5198f536fc"; 4506 + }; 4507 + } 4508 + { 4509 name = "find_up___find_up_2.1.0.tgz"; 4510 path = fetchurl { 4511 name = "find_up___find_up_2.1.0.tgz"; ··· 4530 }; 4531 } 4532 { 4533 + name = "flat_cache___flat_cache_3.0.4.tgz"; 4534 path = fetchurl { 4535 + name = "flat_cache___flat_cache_3.0.4.tgz"; 4536 + url = "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz"; 4537 + sha1 = "61b0338302b2fe9f957dcc32fc2a87f1c3048b11"; 4538 }; 4539 } 4540 { 4541 + name = "flat___flat_5.0.2.tgz"; 4542 path = fetchurl { 4543 + name = "flat___flat_5.0.2.tgz"; 4544 + url = "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz"; 4545 + sha1 = "8ca6fe332069ffa9d324c327198c598259ceb241"; 4546 }; 4547 } 4548 { 4549 + name = "flatted___flatted_3.1.1.tgz"; 4550 path = fetchurl { 4551 + name = "flatted___flatted_3.1.1.tgz"; 4552 + url = "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz"; 4553 + sha1 = "c4b489e80096d9df1dfc97c79871aea7c617c469"; 4554 }; 4555 } 4556 { ··· 4578 }; 4579 } 4580 { 4581 + name = "follow_redirects___follow_redirects_1.14.0.tgz"; 4582 path = fetchurl { 4583 + name = "follow_redirects___follow_redirects_1.14.0.tgz"; 4584 + url = "https://registry.yarnpkg.com/follow-redirects/-/follow-redirects-1.14.0.tgz"; 4585 + sha1 = "f5d260f95c5f8c105894491feee5dc8993b402fe"; 4586 }; 4587 } 4588 { ··· 4602 }; 4603 } 4604 { 4605 + name = "foreach___foreach_2.0.5.tgz"; 4606 + path = fetchurl { 4607 + name = "foreach___foreach_2.0.5.tgz"; 4608 + url = "https://registry.yarnpkg.com/foreach/-/foreach-2.0.5.tgz"; 4609 + sha1 = "0bee005018aeb260d0a3af3ae658dd0136ec1b99"; 4610 + }; 4611 + } 4612 + { 4613 name = "forever_agent___forever_agent_0.6.1.tgz"; 4614 path = fetchurl { 4615 name = "forever_agent___forever_agent_0.6.1.tgz"; ··· 4714 }; 4715 } 4716 { 4717 name = "fs_minipass___fs_minipass_1.2.7.tgz"; 4718 path = fetchurl { 4719 name = "fs_minipass___fs_minipass_1.2.7.tgz"; ··· 4762 }; 4763 } 4764 { 4765 + name = "fsevents___fsevents_2.3.2.tgz"; 4766 path = fetchurl { 4767 + name = "fsevents___fsevents_2.3.2.tgz"; 4768 + url = "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz"; 4769 + sha1 = "8a526f78b8fdf4623b709e0b975c52c24c02fd1a"; 4770 + }; 4771 + } 4772 + { 4773 + name = "fstream___fstream_1.0.12.tgz"; 4774 + path = fetchurl { 4775 + name = "fstream___fstream_1.0.12.tgz"; 4776 + url = "https://registry.yarnpkg.com/fstream/-/fstream-1.0.12.tgz"; 4777 + sha1 = "4e8ba8ee2d48be4f7d0de505455548eae5932045"; 4778 }; 4779 } 4780 { ··· 4826 }; 4827 } 4828 { 4829 + name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; 4830 path = fetchurl { 4831 + name = "get_intrinsic___get_intrinsic_1.1.1.tgz"; 4832 + url = "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; 4833 + sha1 = "15f59f376f855c446963948f0d24cd3637b4abc6"; 4834 + }; 4835 + } 4836 + { 4837 + name = "get_stream___get_stream_6.0.1.tgz"; 4838 + path = fetchurl { 4839 + name = "get_stream___get_stream_6.0.1.tgz"; 4840 + url = "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz"; 4841 + sha1 = "a262d8eef67aced57c2852ad6167526a43cbf7b7"; 4842 }; 4843 } 4844 { ··· 4890 }; 4891 } 4892 { 4893 + name = "glob_parent___glob_parent_5.1.2.tgz"; 4894 path = fetchurl { 4895 + name = "glob_parent___glob_parent_5.1.2.tgz"; 4896 + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz"; 4897 + sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4"; 4898 }; 4899 } 4900 { ··· 4906 }; 4907 } 4908 { 4909 + name = "globals___globals_12.4.0.tgz"; 4910 path = fetchurl { 4911 + name = "globals___globals_12.4.0.tgz"; 4912 + url = "https://registry.yarnpkg.com/globals/-/globals-12.4.0.tgz"; 4913 + sha1 = "a18813576a41b00a24a97e7f815918c2e19925f8"; 4914 }; 4915 } 4916 { 4917 + name = "globals___globals_13.8.0.tgz"; 4918 path = fetchurl { 4919 + name = "globals___globals_13.8.0.tgz"; 4920 + url = "https://registry.yarnpkg.com/globals/-/globals-13.8.0.tgz"; 4921 + sha1 = "3e20f504810ce87a8d72e55aecf8435b50f4c1b3"; 4922 }; 4923 } 4924 { ··· 4930 }; 4931 } 4932 { 4933 + name = "globby___globby_11.0.3.tgz"; 4934 path = fetchurl { 4935 + name = "globby___globby_11.0.3.tgz"; 4936 + url = "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz"; 4937 + sha1 = "9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"; 4938 }; 4939 } 4940 { ··· 4946 }; 4947 } 4948 { 4949 + name = "graceful_fs___graceful_fs_4.2.6.tgz"; 4950 path = fetchurl { 4951 + name = "graceful_fs___graceful_fs_4.2.6.tgz"; 4952 + url = "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.6.tgz"; 4953 + sha1 = "ff040b2b0853b23c3d31027523706f1885d76bee"; 4954 }; 4955 } 4956 { ··· 4970 }; 4971 } 4972 { 4973 + name = "handlebars___handlebars_4.7.7.tgz"; 4974 path = fetchurl { 4975 + name = "handlebars___handlebars_4.7.7.tgz"; 4976 + url = "https://registry.yarnpkg.com/handlebars/-/handlebars-4.7.7.tgz"; 4977 + sha1 = "9ce33416aad02dbd6c8fafa8240d5d98004945a1"; 4978 }; 4979 } 4980 { ··· 5002 }; 5003 } 5004 { 5005 + name = "has_bigints___has_bigints_1.0.1.tgz"; 5006 + path = fetchurl { 5007 + name = "has_bigints___has_bigints_1.0.1.tgz"; 5008 + url = "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.1.tgz"; 5009 + sha1 = "64fe6acb020673e3b78db035a5af69aa9d07b113"; 5010 + }; 5011 + } 5012 + { 5013 name = "has_binary2___has_binary2_1.0.3.tgz"; 5014 path = fetchurl { 5015 name = "has_binary2___has_binary2_1.0.3.tgz"; ··· 5050 }; 5051 } 5052 { 5053 + name = "has_symbols___has_symbols_1.0.2.tgz"; 5054 path = fetchurl { 5055 + name = "has_symbols___has_symbols_1.0.2.tgz"; 5056 + url = "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.2.tgz"; 5057 + sha1 = "165d3070c00309752a1236a479331e3ac56f1423"; 5058 }; 5059 } 5060 { ··· 5122 }; 5123 } 5124 { 5125 name = "he___he_1.2.0.tgz"; 5126 path = fetchurl { 5127 name = "he___he_1.2.0.tgz"; ··· 5130 }; 5131 } 5132 { 5133 + name = "helmet___helmet_4.6.0.tgz"; 5134 path = fetchurl { 5135 + name = "helmet___helmet_4.6.0.tgz"; 5136 + url = "https://registry.yarnpkg.com/helmet/-/helmet-4.6.0.tgz"; 5137 + sha1 = "579971196ba93c5978eb019e4e8ec0e50076b4df"; 5138 }; 5139 } 5140 { ··· 5146 }; 5147 } 5148 { 5149 + name = "highlight.js___highlight.js_10.7.2.tgz"; 5150 path = fetchurl { 5151 + name = "highlight.js___highlight.js_10.7.2.tgz"; 5152 + url = "https://registry.yarnpkg.com/highlight.js/-/highlight.js-10.7.2.tgz"; 5153 + sha1 = "89319b861edc66c48854ed1e6da21ea89f847360"; 5154 }; 5155 } 5156 { ··· 5170 }; 5171 } 5172 { 5173 + name = "hosted_git_info___hosted_git_info_2.8.9.tgz"; 5174 path = fetchurl { 5175 + name = "hosted_git_info___hosted_git_info_2.8.9.tgz"; 5176 + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz"; 5177 + sha1 = "dffc0bf9a21c02209090f2aa69429e1414daf3f9"; 5178 }; 5179 } 5180 { ··· 5194 }; 5195 } 5196 { 5197 name = "html_minifier_terser___html_minifier_terser_5.1.1.tgz"; 5198 path = fetchurl { 5199 name = "html_minifier_terser___html_minifier_terser_5.1.1.tgz"; ··· 5210 }; 5211 } 5212 { 5213 + name = "html_webpack_plugin___html_webpack_plugin_4.5.2.tgz"; 5214 path = fetchurl { 5215 + name = "html_webpack_plugin___html_webpack_plugin_4.5.2.tgz"; 5216 + url = "https://registry.yarnpkg.com/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz"; 5217 + sha1 = "76fc83fa1a0f12dd5f7da0404a54e2699666bc12"; 5218 }; 5219 } 5220 { ··· 5258 }; 5259 } 5260 { 5261 + name = "human_signals___human_signals_2.1.0.tgz"; 5262 + path = fetchurl { 5263 + name = "human_signals___human_signals_2.1.0.tgz"; 5264 + url = "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz"; 5265 + sha1 = "dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0"; 5266 + }; 5267 + } 5268 + { 5269 name = "i18n___i18n_0.13.2.tgz"; 5270 path = fetchurl { 5271 name = "i18n___i18n_0.13.2.tgz"; ··· 5298 }; 5299 } 5300 { 5301 + name = "icss_utils___icss_utils_5.1.0.tgz"; 5302 path = fetchurl { 5303 + name = "icss_utils___icss_utils_5.1.0.tgz"; 5304 + url = "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz"; 5305 + sha1 = "c6be6858abd013d768e98366ae47e25d5887b1ae"; 5306 }; 5307 } 5308 { ··· 5362 }; 5363 } 5364 { 5365 name = "import_fresh___import_fresh_2.0.0.tgz"; 5366 path = fetchurl { 5367 name = "import_fresh___import_fresh_2.0.0.tgz"; ··· 5378 }; 5379 } 5380 { 5381 + name = "import_local___import_local_3.0.2.tgz"; 5382 path = fetchurl { 5383 + name = "import_local___import_local_3.0.2.tgz"; 5384 + url = "https://registry.yarnpkg.com/import-local/-/import-local-3.0.2.tgz"; 5385 + sha1 = "a8cfd0431d1de4a2199703d003e3e62364fa6db6"; 5386 }; 5387 } 5388 { 5389 + name = "imports_loader___imports_loader_1.2.0.tgz"; 5390 path = fetchurl { 5391 + name = "imports_loader___imports_loader_1.2.0.tgz"; 5392 + url = "https://registry.yarnpkg.com/imports-loader/-/imports-loader-1.2.0.tgz"; 5393 + sha1 = "b06823d0bb42e6f5ff89bc893829000eda46693f"; 5394 }; 5395 } 5396 { ··· 5482 }; 5483 } 5484 { 5485 + name = "interpret___interpret_2.2.0.tgz"; 5486 path = fetchurl { 5487 + name = "interpret___interpret_2.2.0.tgz"; 5488 + url = "https://registry.yarnpkg.com/interpret/-/interpret-2.2.0.tgz"; 5489 + sha1 = "1a78a0b5965c40a5416d007ad6f50ad27c417df9"; 5490 }; 5491 } 5492 { ··· 5546 }; 5547 } 5548 { 5549 name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz"; 5550 path = fetchurl { 5551 name = "is_alphanumerical___is_alphanumerical_1.0.4.tgz"; ··· 5578 }; 5579 } 5580 { 5581 + name = "is_bigint___is_bigint_1.0.1.tgz"; 5582 + path = fetchurl { 5583 + name = "is_bigint___is_bigint_1.0.1.tgz"; 5584 + url = "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.1.tgz"; 5585 + sha1 = "6923051dfcbc764278540b9ce0e6b3213aa5ebc2"; 5586 + }; 5587 + } 5588 + { 5589 name = "is_binary_path___is_binary_path_1.0.1.tgz"; 5590 path = fetchurl { 5591 name = "is_binary_path___is_binary_path_1.0.1.tgz"; ··· 5610 }; 5611 } 5612 { 5613 + name = "is_boolean_object___is_boolean_object_1.1.0.tgz"; 5614 + path = fetchurl { 5615 + name = "is_boolean_object___is_boolean_object_1.1.0.tgz"; 5616 + url = "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.0.tgz"; 5617 + sha1 = "e2aaad3a3a8fca34c28f6eee135b156ed2587ff0"; 5618 + }; 5619 + } 5620 + { 5621 name = "is_buffer___is_buffer_1.1.6.tgz"; 5622 path = fetchurl { 5623 name = "is_buffer___is_buffer_1.1.6.tgz"; ··· 5634 }; 5635 } 5636 { 5637 + name = "is_callable___is_callable_1.2.3.tgz"; 5638 path = fetchurl { 5639 + name = "is_callable___is_callable_1.2.3.tgz"; 5640 + url = "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.3.tgz"; 5641 + sha1 = "8b1e0500b73a1d76c70487636f368e519de8db8e"; 5642 }; 5643 } 5644 { ··· 5650 }; 5651 } 5652 { 5653 + name = "is_core_module___is_core_module_2.3.0.tgz"; 5654 path = fetchurl { 5655 + name = "is_core_module___is_core_module_2.3.0.tgz"; 5656 + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz"; 5657 + sha1 = "d341652e3408bca69c4671b79a0954a3d349f887"; 5658 }; 5659 } 5660 { ··· 5834 }; 5835 } 5836 { 5837 + name = "is_map___is_map_2.0.2.tgz"; 5838 + path = fetchurl { 5839 + name = "is_map___is_map_2.0.2.tgz"; 5840 + url = "https://registry.yarnpkg.com/is-map/-/is-map-2.0.2.tgz"; 5841 + sha1 = "00922db8c9bf73e81b7a335827bc2a43f2b91127"; 5842 + }; 5843 + } 5844 + { 5845 name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; 5846 path = fetchurl { 5847 name = "is_negative_zero___is_negative_zero_2.0.1.tgz"; 5848 url = "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.1.tgz"; 5849 sha1 = "3de746c18dda2319241a53675908d8f766f11c24"; 5850 + }; 5851 + } 5852 + { 5853 + name = "is_number_object___is_number_object_1.0.4.tgz"; 5854 + path = fetchurl { 5855 + name = "is_number_object___is_number_object_1.0.4.tgz"; 5856 + url = "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.4.tgz"; 5857 + sha1 = "36ac95e741cf18b283fc1ddf5e83da798e3ec197"; 5858 }; 5859 } 5860 { ··· 5898 }; 5899 } 5900 { 5901 name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; 5902 path = fetchurl { 5903 name = "is_plain_obj___is_plain_obj_2.1.0.tgz"; ··· 5930 }; 5931 } 5932 { 5933 name = "is_property___is_property_1.0.2.tgz"; 5934 path = fetchurl { 5935 name = "is_property___is_property_1.0.2.tgz"; ··· 5938 }; 5939 } 5940 { 5941 + name = "is_regex___is_regex_1.1.2.tgz"; 5942 path = fetchurl { 5943 + name = "is_regex___is_regex_1.1.2.tgz"; 5944 + url = "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.2.tgz"; 5945 + sha1 = "81c8ebde4db142f2cf1c53fc86d6a45788266251"; 5946 }; 5947 } 5948 { ··· 5954 }; 5955 } 5956 { 5957 + name = "is_set___is_set_2.0.2.tgz"; 5958 + path = fetchurl { 5959 + name = "is_set___is_set_2.0.2.tgz"; 5960 + url = "https://registry.yarnpkg.com/is-set/-/is-set-2.0.2.tgz"; 5961 + sha1 = "90755fa4c2562dc1c5d4024760d6119b94ca18ec"; 5962 + }; 5963 + } 5964 + { 5965 name = "is_stream___is_stream_2.0.0.tgz"; 5966 path = fetchurl { 5967 name = "is_stream___is_stream_2.0.0.tgz"; ··· 5978 }; 5979 } 5980 { 5981 + name = "is_svg___is_svg_4.3.1.tgz"; 5982 path = fetchurl { 5983 + name = "is_svg___is_svg_4.3.1.tgz"; 5984 + url = "https://registry.yarnpkg.com/is-svg/-/is-svg-4.3.1.tgz"; 5985 + sha1 = "8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b"; 5986 }; 5987 } 5988 { ··· 5994 }; 5995 } 5996 { 5997 + name = "is_typed_array___is_typed_array_1.1.5.tgz"; 5998 + path = fetchurl { 5999 + name = "is_typed_array___is_typed_array_1.1.5.tgz"; 6000 + url = "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.5.tgz"; 6001 + sha1 = "f32e6e096455e329eb7b423862456aa213f0eb4e"; 6002 + }; 6003 + } 6004 + { 6005 name = "is_typedarray___is_typedarray_1.0.0.tgz"; 6006 path = fetchurl { 6007 name = "is_typedarray___is_typedarray_1.0.0.tgz"; ··· 6010 }; 6011 } 6012 { 6013 + name = "is_weakmap___is_weakmap_2.0.1.tgz"; 6014 path = fetchurl { 6015 + name = "is_weakmap___is_weakmap_2.0.1.tgz"; 6016 + url = "https://registry.yarnpkg.com/is-weakmap/-/is-weakmap-2.0.1.tgz"; 6017 + sha1 = "5008b59bdc43b698201d18f62b37b2ca243e8cf2"; 6018 + }; 6019 + } 6020 + { 6021 + name = "is_weakset___is_weakset_2.0.1.tgz"; 6022 + path = fetchurl { 6023 + name = "is_weakset___is_weakset_2.0.1.tgz"; 6024 + url = "https://registry.yarnpkg.com/is-weakset/-/is-weakset-2.0.1.tgz"; 6025 + sha1 = "e9a0af88dbd751589f5e50d80f4c98b780884f83"; 6026 }; 6027 } 6028 { 6029 + name = "is_what___is_what_3.14.1.tgz"; 6030 path = fetchurl { 6031 + name = "is_what___is_what_3.14.1.tgz"; 6032 + url = "https://registry.yarnpkg.com/is-what/-/is-what-3.14.1.tgz"; 6033 + sha1 = "e1222f46ddda85dead0fd1c9df131760e77755c1"; 6034 }; 6035 } 6036 { ··· 6039 name = "is_windows___is_windows_1.0.2.tgz"; 6040 url = "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz"; 6041 sha1 = "d1850eb9791ecd18e6182ce12a30f396634bb19d"; 6042 }; 6043 } 6044 { ··· 6074 }; 6075 } 6076 { 6077 + name = "isarray___isarray_2.0.5.tgz"; 6078 + path = fetchurl { 6079 + name = "isarray___isarray_2.0.5.tgz"; 6080 + url = "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz"; 6081 + sha1 = "8af1e4c1221244cc62459faf38940d4e644a5723"; 6082 + }; 6083 + } 6084 + { 6085 name = "isexe___isexe_2.0.0.tgz"; 6086 path = fetchurl { 6087 name = "isexe___isexe_2.0.0.tgz"; ··· 6111 name = "isstream___isstream_0.1.2.tgz"; 6112 url = "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz"; 6113 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 6114 + }; 6115 + } 6116 + { 6117 + name = "jake___jake_10.8.2.tgz"; 6118 + path = fetchurl { 6119 + name = "jake___jake_10.8.2.tgz"; 6120 + url = "https://registry.yarnpkg.com/jake/-/jake-10.8.2.tgz"; 6121 + sha1 = "ebc9de8558160a66d82d0eadc6a2e58fbc500a7b"; 6122 }; 6123 } 6124 { ··· 6146 }; 6147 } 6148 { 6149 + name = "jquery___jquery_3.6.0.tgz"; 6150 path = fetchurl { 6151 + name = "jquery___jquery_3.6.0.tgz"; 6152 + url = "https://registry.yarnpkg.com/jquery/-/jquery-3.6.0.tgz"; 6153 + sha1 = "c72a09f15c1bdce142f49dbf1170bdf8adac2470"; 6154 }; 6155 } 6156 { ··· 6194 }; 6195 } 6196 { 6197 + name = "js_yaml___js_yaml_4.0.0.tgz"; 6198 + path = fetchurl { 6199 + name = "js_yaml___js_yaml_4.0.0.tgz"; 6200 + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz"; 6201 + sha1 = "f426bc0ff4b4051926cd588c71113183409a121f"; 6202 + }; 6203 + } 6204 + { 6205 name = "js_yaml___js_yaml_3.14.1.tgz"; 6206 path = fetchurl { 6207 name = "js_yaml___js_yaml_3.14.1.tgz"; ··· 6210 }; 6211 } 6212 { 6213 + name = "js_yaml___js_yaml_4.1.0.tgz"; 6214 + path = fetchurl { 6215 + name = "js_yaml___js_yaml_4.1.0.tgz"; 6216 + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz"; 6217 + sha1 = "c1fb65f8f5017901cdd2c951864ba18458a10602"; 6218 + }; 6219 + } 6220 + { 6221 name = "jsbi___jsbi_3.1.4.tgz"; 6222 path = fetchurl { 6223 name = "jsbi___jsbi_3.1.4.tgz"; ··· 6239 name = "jsdom_nogyp___jsdom_nogyp_0.8.3.tgz"; 6240 url = "https://registry.yarnpkg.com/jsdom-nogyp/-/jsdom-nogyp-0.8.3.tgz"; 6241 sha1 = "924b3f03cfe487dfcdf6375e6324252ceb80d0cc"; 6242 }; 6243 } 6244 { ··· 6290 }; 6291 } 6292 { 6293 + name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; 6294 + path = fetchurl { 6295 + name = "json_schema_traverse___json_schema_traverse_1.0.0.tgz"; 6296 + url = "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 6297 + sha1 = "ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2"; 6298 + }; 6299 + } 6300 + { 6301 name = "json_schema___json_schema_0.2.3.tgz"; 6302 path = fetchurl { 6303 name = "json_schema___json_schema_0.2.3.tgz"; ··· 6346 }; 6347 } 6348 { 6349 + name = "json5___json5_2.2.0.tgz"; 6350 path = fetchurl { 6351 + name = "json5___json5_2.2.0.tgz"; 6352 + url = "https://registry.yarnpkg.com/json5/-/json5-2.2.0.tgz"; 6353 + sha1 = "2dfefe720c6ba525d9ebd909950f0515316c89a3"; 6354 }; 6355 } 6356 { ··· 6402 }; 6403 } 6404 { 6405 + name = "khroma___khroma_1.4.1.tgz"; 6406 path = fetchurl { 6407 + name = "khroma___khroma_1.4.1.tgz"; 6408 + url = "https://registry.yarnpkg.com/khroma/-/khroma-1.4.1.tgz"; 6409 + sha1 = "ad6a5b6a972befc5112ce5129887a1a83af2c003"; 6410 }; 6411 } 6412 { ··· 6442 }; 6443 } 6444 { 6445 + name = "klona___klona_2.0.4.tgz"; 6446 + path = fetchurl { 6447 + name = "klona___klona_2.0.4.tgz"; 6448 + url = "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz"; 6449 + sha1 = "7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0"; 6450 + }; 6451 + } 6452 + { 6453 name = "kuler___kuler_2.0.0.tgz"; 6454 path = fetchurl { 6455 name = "kuler___kuler_2.0.0.tgz"; ··· 6474 }; 6475 } 6476 { 6477 + name = "ldap_filter___ldap_filter_0.3.3.tgz"; 6478 path = fetchurl { 6479 + name = "ldap_filter___ldap_filter_0.3.3.tgz"; 6480 + url = "https://registry.yarnpkg.com/ldap-filter/-/ldap-filter-0.3.3.tgz"; 6481 + sha1 = "2b14c68a2a9d4104dbdbc910a1ca85fd189e9797"; 6482 }; 6483 } 6484 { 6485 + name = "ldapauth_fork___ldapauth_fork_5.0.1.tgz"; 6486 path = fetchurl { 6487 + name = "ldapauth_fork___ldapauth_fork_5.0.1.tgz"; 6488 + url = "https://registry.yarnpkg.com/ldapauth-fork/-/ldapauth-fork-5.0.1.tgz"; 6489 + sha1 = "18779a9c30371c5bbea02e3b6aaadb60819ad29c"; 6490 }; 6491 } 6492 { 6493 + name = "ldapjs___ldapjs_2.2.4.tgz"; 6494 path = fetchurl { 6495 + name = "ldapjs___ldapjs_2.2.4.tgz"; 6496 + url = "https://registry.yarnpkg.com/ldapjs/-/ldapjs-2.2.4.tgz"; 6497 + sha1 = "d4e3f4ae2277b6e760a83ebd61f7f5c4097c446b"; 6498 }; 6499 } 6500 { 6501 + name = "less_loader___less_loader_7.3.0.tgz"; 6502 path = fetchurl { 6503 + name = "less_loader___less_loader_7.3.0.tgz"; 6504 + url = "https://registry.yarnpkg.com/less-loader/-/less-loader-7.3.0.tgz"; 6505 + sha1 = "f9d6d36d18739d642067a05fb5bd70c8c61317e5"; 6506 }; 6507 } 6508 { 6509 + name = "less___less_4.1.1.tgz"; 6510 path = fetchurl { 6511 + name = "less___less_4.1.1.tgz"; 6512 + url = "https://registry.yarnpkg.com/less/-/less-4.1.1.tgz"; 6513 + sha1 = "15bf253a9939791dc690888c3ff424f3e6c7edba"; 6514 }; 6515 } 6516 { 6517 + name = "levn___levn_0.4.1.tgz"; 6518 path = fetchurl { 6519 + name = "levn___levn_0.4.1.tgz"; 6520 + url = "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz"; 6521 + sha1 = "ae4562c007473b932a6200d403268dd2fffc6ade"; 6522 }; 6523 } 6524 { ··· 6538 }; 6539 } 6540 { 6541 + name = "linkify_it___linkify_it_3.0.2.tgz"; 6542 path = fetchurl { 6543 + name = "linkify_it___linkify_it_3.0.2.tgz"; 6544 + url = "https://registry.yarnpkg.com/linkify-it/-/linkify-it-3.0.2.tgz"; 6545 + sha1 = "f55eeb8bc1d3ae754049e124ab3bb56d97797fb8"; 6546 }; 6547 } 6548 { 6549 + name = "list.js___list.js_2.3.1.tgz"; 6550 path = fetchurl { 6551 + name = "list.js___list.js_2.3.1.tgz"; 6552 + url = "https://registry.yarnpkg.com/list.js/-/list.js-2.3.1.tgz"; 6553 + sha1 = "48961989ffe52b0505e352f7a521f819f51df7e7"; 6554 }; 6555 } 6556 { ··· 6618 }; 6619 } 6620 { 6621 + name = "locate_path___locate_path_6.0.0.tgz"; 6622 + path = fetchurl { 6623 + name = "locate_path___locate_path_6.0.0.tgz"; 6624 + url = "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz"; 6625 + sha1 = "55321eb309febbc59c4801d931a72452a681d286"; 6626 + }; 6627 + } 6628 + { 6629 name = "lodash.assignin___lodash.assignin_4.2.0.tgz"; 6630 path = fetchurl { 6631 name = "lodash.assignin___lodash.assignin_4.2.0.tgz"; ··· 6642 }; 6643 } 6644 { 6645 + name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz"; 6646 + path = fetchurl { 6647 + name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz"; 6648 + url = "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; 6649 + sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; 6650 + }; 6651 + } 6652 + { 6653 name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; 6654 path = fetchurl { 6655 name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; ··· 6687 name = "lodash.foreach___lodash.foreach_4.5.0.tgz"; 6688 url = "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-4.5.0.tgz"; 6689 sha1 = "1a6a35eace401280c7f06dddec35165ab27e3e53"; 6690 + }; 6691 + } 6692 + { 6693 + name = "lodash.get___lodash.get_4.4.2.tgz"; 6694 + path = fetchurl { 6695 + name = "lodash.get___lodash.get_4.4.2.tgz"; 6696 + url = "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz"; 6697 + sha1 = "2d177f652fa31e939b4438d5341499dfa3825e99"; 6698 }; 6699 } 6700 { ··· 6762 }; 6763 } 6764 { 6765 + name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; 6766 path = fetchurl { 6767 + name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; 6768 + url = "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 6769 + sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193"; 6770 }; 6771 } 6772 { ··· 6786 }; 6787 } 6788 { 6789 + name = "lodash___lodash_4.17.21.tgz"; 6790 path = fetchurl { 6791 + name = "lodash___lodash_4.17.21.tgz"; 6792 + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz"; 6793 + sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c"; 6794 + }; 6795 + } 6796 + { 6797 + name = "log_symbols___log_symbols_4.0.0.tgz"; 6798 + path = fetchurl { 6799 + name = "log_symbols___log_symbols_4.0.0.tgz"; 6800 + url = "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz"; 6801 + sha1 = "69b3cc46d20f448eccdb75ea1fa733d9e821c920"; 6802 }; 6803 } 6804 { ··· 6871 name = "lru_cache___lru_cache_6.0.0.tgz"; 6872 url = "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz"; 6873 sha1 = "6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94"; 6874 }; 6875 } 6876 { ··· 6954 }; 6955 } 6956 { 6957 + name = "mariadb___mariadb_2.5.3.tgz"; 6958 path = fetchurl { 6959 + name = "mariadb___mariadb_2.5.3.tgz"; 6960 + url = "https://registry.yarnpkg.com/mariadb/-/mariadb-2.5.3.tgz"; 6961 + sha1 = "13a2267f7f1b572f9db997aaaa8c00f75d5a87e8"; 6962 }; 6963 } 6964 { ··· 6978 }; 6979 } 6980 { 6981 + name = "markdown_it_container___markdown_it_container_3.0.0.tgz"; 6982 path = fetchurl { 6983 + name = "markdown_it_container___markdown_it_container_3.0.0.tgz"; 6984 + url = "https://registry.yarnpkg.com/markdown-it-container/-/markdown-it-container-3.0.0.tgz"; 6985 + sha1 = "1d19b06040a020f9a827577bb7dbf67aa5de9a5b"; 6986 }; 6987 } 6988 { ··· 6994 }; 6995 } 6996 { 6997 + name = "markdown_it_emoji___markdown_it_emoji_2.0.0.tgz"; 6998 path = fetchurl { 6999 + name = "markdown_it_emoji___markdown_it_emoji_2.0.0.tgz"; 7000 + url = "https://registry.yarnpkg.com/markdown-it-emoji/-/markdown-it-emoji-2.0.0.tgz"; 7001 + sha1 = "3164ad4c009efd946e98274f7562ad611089a231"; 7002 }; 7003 } 7004 { ··· 7018 }; 7019 } 7020 { 7021 + name = "markdown_it_ins___markdown_it_ins_3.0.1.tgz"; 7022 path = fetchurl { 7023 + name = "markdown_it_ins___markdown_it_ins_3.0.1.tgz"; 7024 + url = "https://registry.yarnpkg.com/markdown-it-ins/-/markdown-it-ins-3.0.1.tgz"; 7025 + sha1 = "c09356b917cf1dbf73add0b275d67ab8c73d4b4d"; 7026 }; 7027 } 7028 { 7029 + name = "markdown_it_mark___markdown_it_mark_3.0.1.tgz"; 7030 path = fetchurl { 7031 + name = "markdown_it_mark___markdown_it_mark_3.0.1.tgz"; 7032 + url = "https://registry.yarnpkg.com/markdown-it-mark/-/markdown-it-mark-3.0.1.tgz"; 7033 + sha1 = "51257db58787d78aaf46dc13418d99a9f3f0ebd3"; 7034 }; 7035 } 7036 { ··· 7066 }; 7067 } 7068 { 7069 + name = "markdown_it___markdown_it_12.0.6.tgz"; 7070 path = fetchurl { 7071 + name = "markdown_it___markdown_it_12.0.6.tgz"; 7072 + url = "https://registry.yarnpkg.com/markdown-it/-/markdown-it-12.0.6.tgz"; 7073 + sha1 = "adcc8e5fe020af292ccbdf161fe84f1961516138"; 7074 }; 7075 } 7076 { 7077 + name = "marked___marked_2.0.3.tgz"; 7078 path = fetchurl { 7079 + name = "marked___marked_2.0.3.tgz"; 7080 + url = "https://registry.yarnpkg.com/marked/-/marked-2.0.3.tgz"; 7081 + sha1 = "3551c4958c4da36897bda2a16812ef1399c8d6b0"; 7082 }; 7083 } 7084 { ··· 7138 }; 7139 } 7140 { 7141 + name = "mdast_util_from_markdown___mdast_util_from_markdown_0.8.5.tgz"; 7142 path = fetchurl { 7143 + name = "mdast_util_from_markdown___mdast_util_from_markdown_0.8.5.tgz"; 7144 + url = "https://registry.yarnpkg.com/mdast-util-from-markdown/-/mdast-util-from-markdown-0.8.5.tgz"; 7145 + sha1 = "d1ef2ca42bc377ecb0463a987910dae89bd9a28c"; 7146 }; 7147 } 7148 { ··· 7154 }; 7155 } 7156 { 7157 + name = "mdast_util_to_markdown___mdast_util_to_markdown_0.6.5.tgz"; 7158 + path = fetchurl { 7159 + name = "mdast_util_to_markdown___mdast_util_to_markdown_0.6.5.tgz"; 7160 + url = "https://registry.yarnpkg.com/mdast-util-to-markdown/-/mdast-util-to-markdown-0.6.5.tgz"; 7161 + sha1 = "b33f67ca820d69e6cc527a93d4039249b504bebe"; 7162 + }; 7163 + } 7164 + { 7165 name = "mdast_util_to_string___mdast_util_to_string_1.1.0.tgz"; 7166 path = fetchurl { 7167 name = "mdast_util_to_string___mdast_util_to_string_1.1.0.tgz"; ··· 7170 }; 7171 } 7172 { 7173 + name = "mdast_util_to_string___mdast_util_to_string_2.0.0.tgz"; 7174 + path = fetchurl { 7175 + name = "mdast_util_to_string___mdast_util_to_string_2.0.0.tgz"; 7176 + url = "https://registry.yarnpkg.com/mdast-util-to-string/-/mdast-util-to-string-2.0.0.tgz"; 7177 + sha1 = "b8cfe6a713e1091cb5b728fc48885a4767f8b97b"; 7178 + }; 7179 + } 7180 + { 7181 name = "mdn_data___mdn_data_2.0.14.tgz"; 7182 path = fetchurl { 7183 name = "mdn_data___mdn_data_2.0.14.tgz"; ··· 7210 }; 7211 } 7212 { 7213 name = "memory_fs___memory_fs_0.4.1.tgz"; 7214 path = fetchurl { 7215 name = "memory_fs___memory_fs_0.4.1.tgz"; ··· 7234 }; 7235 } 7236 { 7237 + name = "merge_stream___merge_stream_2.0.0.tgz"; 7238 + path = fetchurl { 7239 + name = "merge_stream___merge_stream_2.0.0.tgz"; 7240 + url = "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz"; 7241 + sha1 = "52823629a14dd00c9770fb6ad47dc6310f2c1f60"; 7242 + }; 7243 + } 7244 + { 7245 name = "merge2___merge2_1.4.1.tgz"; 7246 path = fetchurl { 7247 name = "merge2___merge2_1.4.1.tgz"; ··· 7250 }; 7251 } 7252 { 7253 + name = "mermaid___mermaid_8.9.3.tgz"; 7254 path = fetchurl { 7255 + name = "mermaid___mermaid_8.9.3.tgz"; 7256 + url = "https://registry.yarnpkg.com/mermaid/-/mermaid-8.9.3.tgz"; 7257 + sha1 = "24f682d26f757ed4cb5812b0a798eddcedcc9658"; 7258 }; 7259 } 7260 { ··· 7287 let 7288 repo = fetchgit { 7289 url = "https://github.com/hedgedoc/meta-marked"; 7290 + rev = "3002adae670a6de0a845f3da7a7223d458c20d76"; 7291 + sha256 = "1rgmap95akwf9z72msxpqcfy95h8pqz9c8vn9xvvibfb5jf46lv0"; 7292 }; 7293 in 7294 runCommandNoCC "meta-marked" { buildInputs = [gnutar]; } '' ··· 7298 ''; 7299 } 7300 { 7301 + name = "method_override___method_override_3.0.0.tgz"; 7302 path = fetchurl { 7303 + name = "method_override___method_override_3.0.0.tgz"; 7304 + url = "https://registry.yarnpkg.com/method-override/-/method-override-3.0.0.tgz"; 7305 + sha1 = "6ab0d5d574e3208f15b0c9cf45ab52000468d7a2"; 7306 }; 7307 } 7308 { ··· 7311 name = "methods___methods_1.1.2.tgz"; 7312 url = "https://registry.yarnpkg.com/methods/-/methods-1.1.2.tgz"; 7313 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 7314 + }; 7315 + } 7316 + { 7317 + name = "micromark___micromark_2.11.4.tgz"; 7318 + path = fetchurl { 7319 + name = "micromark___micromark_2.11.4.tgz"; 7320 + url = "https://registry.yarnpkg.com/micromark/-/micromark-2.11.4.tgz"; 7321 + sha1 = "d13436138eea826383e822449c9a5c50ee44665a"; 7322 }; 7323 } 7324 { ··· 7338 }; 7339 } 7340 { 7341 + name = "micromatch___micromatch_4.0.4.tgz"; 7342 path = fetchurl { 7343 + name = "micromatch___micromatch_4.0.4.tgz"; 7344 + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz"; 7345 + sha1 = "896d519dfe9db25fce94ceb7a500919bf881ebf9"; 7346 }; 7347 } 7348 { ··· 7354 }; 7355 } 7356 { 7357 + name = "mime_db___mime_db_1.47.0.tgz"; 7358 path = fetchurl { 7359 + name = "mime_db___mime_db_1.47.0.tgz"; 7360 + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz"; 7361 + sha1 = "8cb313e59965d3c05cfbf898915a267af46a335c"; 7362 }; 7363 } 7364 { 7365 + name = "mime_types___mime_types_2.1.30.tgz"; 7366 path = fetchurl { 7367 + name = "mime_types___mime_types_2.1.30.tgz"; 7368 + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz"; 7369 + sha1 = "6e7be8b4c479825f85ed6326695db73f9305d62d"; 7370 }; 7371 } 7372 { ··· 7386 }; 7387 } 7388 { 7389 + name = "mimic_fn___mimic_fn_2.1.0.tgz"; 7390 path = fetchurl { 7391 + name = "mimic_fn___mimic_fn_2.1.0.tgz"; 7392 + url = "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz"; 7393 + sha1 = "7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b"; 7394 }; 7395 } 7396 { 7397 + name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.0.tgz"; 7398 path = fetchurl { 7399 + name = "mini_css_extract_plugin___mini_css_extract_plugin_1.6.0.tgz"; 7400 + url = "https://registry.yarnpkg.com/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.0.tgz"; 7401 + sha1 = "b4db2525af2624899ed64a23b0016e0036411893"; 7402 }; 7403 } 7404 { ··· 7434 }; 7435 } 7436 { 7437 name = "minimist___minimist_1.2.5.tgz"; 7438 path = fetchurl { 7439 name = "minimist___minimist_1.2.5.tgz"; ··· 7442 }; 7443 } 7444 { 7445 + name = "minio___minio_7.0.18.tgz"; 7446 path = fetchurl { 7447 + name = "minio___minio_7.0.18.tgz"; 7448 + url = "https://registry.yarnpkg.com/minio/-/minio-7.0.18.tgz"; 7449 + sha1 = "a2a6dae52a4dde9e35ed47cdf2accc21df4a512d"; 7450 }; 7451 } 7452 { ··· 7522 }; 7523 } 7524 { 7525 name = "mkdirp___mkdirp_0.5.5.tgz"; 7526 path = fetchurl { 7527 name = "mkdirp___mkdirp_0.5.5.tgz"; ··· 7538 }; 7539 } 7540 { 7541 + name = "mocha___mocha_8.3.2.tgz"; 7542 path = fetchurl { 7543 + name = "mocha___mocha_8.3.2.tgz"; 7544 + url = "https://registry.yarnpkg.com/mocha/-/mocha-8.3.2.tgz"; 7545 + sha1 = "53406f195fa86fbdebe71f8b1c6fb23221d69fcc"; 7546 }; 7547 } 7548 { ··· 7562 }; 7563 } 7564 { 7565 + name = "moment_timezone___moment_timezone_0.5.33.tgz"; 7566 path = fetchurl { 7567 + name = "moment_timezone___moment_timezone_0.5.33.tgz"; 7568 + url = "https://registry.yarnpkg.com/moment-timezone/-/moment-timezone-0.5.33.tgz"; 7569 + sha1 = "b252fd6bb57f341c9b59a5ab61a8e51a73bbd22c"; 7570 }; 7571 } 7572 { ··· 7626 }; 7627 } 7628 { 7629 + name = "mustache___mustache_4.2.0.tgz"; 7630 path = fetchurl { 7631 + name = "mustache___mustache_4.2.0.tgz"; 7632 + url = "https://registry.yarnpkg.com/mustache/-/mustache-4.2.0.tgz"; 7633 + sha1 = "e5892324d60a12ec9c2a73359edca52972bf6f64"; 7634 }; 7635 } 7636 { ··· 7655 name = "nan___nan_2.14.2.tgz"; 7656 url = "https://registry.yarnpkg.com/nan/-/nan-2.14.2.tgz"; 7657 sha1 = "f5376400695168f4cc694ac9393d0c9585eeea19"; 7658 + }; 7659 + } 7660 + { 7661 + name = "nanoid___nanoid_3.1.20.tgz"; 7662 + path = fetchurl { 7663 + name = "nanoid___nanoid_3.1.20.tgz"; 7664 + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz"; 7665 + sha1 = "badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788"; 7666 }; 7667 } 7668 { ··· 7674 }; 7675 } 7676 { 7677 + name = "nanoid___nanoid_3.1.22.tgz"; 7678 + path = fetchurl { 7679 + name = "nanoid___nanoid_3.1.22.tgz"; 7680 + url = "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.22.tgz"; 7681 + sha1 = "b35f8fb7d151990a8aebd5aa5015c03cf726f844"; 7682 + }; 7683 + } 7684 + { 7685 name = "nanomatch___nanomatch_1.2.13.tgz"; 7686 path = fetchurl { 7687 name = "nanomatch___nanomatch_1.2.13.tgz"; ··· 7698 }; 7699 } 7700 { 7701 name = "natural_compare___natural_compare_1.4.0.tgz"; 7702 path = fetchurl { 7703 name = "natural_compare___natural_compare_1.4.0.tgz"; 7704 url = "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz"; 7705 sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 7706 }; 7707 } 7708 { ··· 7730 }; 7731 } 7732 { 7733 name = "no_case___no_case_2.3.2.tgz"; 7734 path = fetchurl { 7735 name = "no_case___no_case_2.3.2.tgz"; ··· 7746 }; 7747 } 7748 { 7749 + name = "node_addon_api___node_addon_api_3.1.0.tgz"; 7750 path = fetchurl { 7751 + name = "node_addon_api___node_addon_api_3.1.0.tgz"; 7752 + url = "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.1.0.tgz"; 7753 + sha1 = "98b21931557466c6729e51cb77cd39c965f42239"; 7754 + }; 7755 + } 7756 + { 7757 + name = "node_fetch___node_fetch_2.6.1.tgz"; 7758 + path = fetchurl { 7759 + name = "node_fetch___node_fetch_2.6.1.tgz"; 7760 + url = "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz"; 7761 + sha1 = "045bd323631f76ed2e2b55573394416b639a0052"; 7762 }; 7763 } 7764 { ··· 7778 }; 7779 } 7780 { 7781 + name = "node_gyp___node_gyp_3.8.0.tgz"; 7782 + path = fetchurl { 7783 + name = "node_gyp___node_gyp_3.8.0.tgz"; 7784 + url = "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz"; 7785 + sha1 = "540304261c330e80d0d5edce253a68cb3964218c"; 7786 + }; 7787 + } 7788 + { 7789 name = "node_libs_browser___node_libs_browser_2.2.1.tgz"; 7790 path = fetchurl { 7791 name = "node_libs_browser___node_libs_browser_2.2.1.tgz"; ··· 7802 }; 7803 } 7804 { 7805 + name = "node_releases___node_releases_1.1.71.tgz"; 7806 path = fetchurl { 7807 + name = "node_releases___node_releases_1.1.71.tgz"; 7808 + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz"; 7809 + sha1 = "cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"; 7810 }; 7811 } 7812 { ··· 7818 }; 7819 } 7820 { 7821 + name = "nopt___nopt_3.0.6.tgz"; 7822 path = fetchurl { 7823 + name = "nopt___nopt_3.0.6.tgz"; 7824 + url = "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz"; 7825 + sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9"; 7826 }; 7827 } 7828 { 7829 + name = "nopt___nopt_4.0.3.tgz"; 7830 path = fetchurl { 7831 + name = "nopt___nopt_4.0.3.tgz"; 7832 + url = "https://registry.yarnpkg.com/nopt/-/nopt-4.0.3.tgz"; 7833 + sha1 = "a375cad9d02fd921278d954c2254d5aa57e15e48"; 7834 }; 7835 } 7836 { ··· 7858 }; 7859 } 7860 { 7861 name = "normalize_url___normalize_url_3.3.0.tgz"; 7862 path = fetchurl { 7863 name = "normalize_url___normalize_url_3.3.0.tgz"; ··· 7866 }; 7867 } 7868 { 7869 + name = "npm_bundled___npm_bundled_1.1.2.tgz"; 7870 path = fetchurl { 7871 + name = "npm_bundled___npm_bundled_1.1.2.tgz"; 7872 + url = "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.1.2.tgz"; 7873 + sha1 = "944c78789bd739035b70baa2ca5cc32b8d860bc1"; 7874 }; 7875 } 7876 { ··· 7887 name = "npm_packlist___npm_packlist_1.4.8.tgz"; 7888 url = "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.8.tgz"; 7889 sha1 = "56ee6cc135b9f98ad3d51c1c95da22bbb9b2ef3e"; 7890 + }; 7891 + } 7892 + { 7893 + name = "npm_run_path___npm_run_path_4.0.1.tgz"; 7894 + path = fetchurl { 7895 + name = "npm_run_path___npm_run_path_4.0.1.tgz"; 7896 + url = "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz"; 7897 + sha1 = "b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"; 7898 }; 7899 } 7900 { ··· 7930 }; 7931 } 7932 { 7933 name = "oauth_sign___oauth_sign_0.9.0.tgz"; 7934 path = fetchurl { 7935 name = "oauth_sign___oauth_sign_0.9.0.tgz"; ··· 7962 }; 7963 } 7964 { 7965 + name = "object_inspect___object_inspect_1.10.2.tgz"; 7966 path = fetchurl { 7967 + name = "object_inspect___object_inspect_1.10.2.tgz"; 7968 + url = "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.10.2.tgz"; 7969 + sha1 = "b6385a3e2b7cae0b5eafcf90cddf85d128767f30"; 7970 }; 7971 } 7972 { 7973 + name = "object_is___object_is_1.1.5.tgz"; 7974 path = fetchurl { 7975 + name = "object_is___object_is_1.1.5.tgz"; 7976 + url = "https://registry.yarnpkg.com/object-is/-/object-is-1.1.5.tgz"; 7977 + sha1 = "b9deeaa5fc7f1846a0faecdceec138e5778f53ac"; 7978 }; 7979 } 7980 { ··· 8002 }; 8003 } 8004 { 8005 + name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz"; 8006 path = fetchurl { 8007 + name = "object.getownpropertydescriptors___object.getownpropertydescriptors_2.1.2.tgz"; 8008 + url = "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.2.tgz"; 8009 + sha1 = "1bd63aeacf0d5d2d2f31b5e393b03a7c601a23f7"; 8010 }; 8011 } 8012 { ··· 8026 }; 8027 } 8028 { 8029 + name = "object.values___object.values_1.1.3.tgz"; 8030 path = fetchurl { 8031 + name = "object.values___object.values_1.1.3.tgz"; 8032 + url = "https://registry.yarnpkg.com/object.values/-/object.values-1.1.3.tgz"; 8033 + sha1 = "eaa8b1e17589f02f698db093f7c62ee1699742ee"; 8034 }; 8035 } 8036 { ··· 8066 }; 8067 } 8068 { 8069 + name = "onetime___onetime_5.1.2.tgz"; 8070 path = fetchurl { 8071 + name = "onetime___onetime_5.1.2.tgz"; 8072 + url = "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz"; 8073 + sha1 = "d0e96ebb56b07476df1dd9c4806e5237985ca45e"; 8074 }; 8075 } 8076 { 8077 + name = "openid___openid_2.0.8.tgz"; 8078 path = fetchurl { 8079 + name = "openid___openid_2.0.8.tgz"; 8080 + url = "https://registry.yarnpkg.com/openid/-/openid-2.0.8.tgz"; 8081 + sha1 = "e3a09b55641101156ad086971721a98d0723c547"; 8082 }; 8083 } 8084 { ··· 8090 }; 8091 } 8092 { 8093 + name = "optionator___optionator_0.9.1.tgz"; 8094 path = fetchurl { 8095 + name = "optionator___optionator_0.9.1.tgz"; 8096 + url = "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz"; 8097 + sha1 = "4f236a6373dae0566a6d43e1326674f50c291499"; 8098 }; 8099 } 8100 { ··· 8183 name = "p_locate___p_locate_4.1.0.tgz"; 8184 url = "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz"; 8185 sha1 = "a3428bb7088b3a60292f66919278b7c297ad4f07"; 8186 + }; 8187 + } 8188 + { 8189 + name = "p_locate___p_locate_5.0.0.tgz"; 8190 + path = fetchurl { 8191 + name = "p_locate___p_locate_5.0.0.tgz"; 8192 + url = "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz"; 8193 + sha1 = "83c8315c6785005e3bd021839411c9e110e6d834"; 8194 }; 8195 } 8196 { ··· 8306 }; 8307 } 8308 { 8309 + name = "parse_json___parse_json_5.2.0.tgz"; 8310 path = fetchurl { 8311 + name = "parse_json___parse_json_5.2.0.tgz"; 8312 + url = "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz"; 8313 + sha1 = "c76fc66dee54231c962b22bcc8a72cf2f99753cd"; 8314 }; 8315 } 8316 { 8317 + name = "parse_node_version___parse_node_version_1.0.1.tgz"; 8318 path = fetchurl { 8319 + name = "parse_node_version___parse_node_version_1.0.1.tgz"; 8320 + url = "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz"; 8321 + sha1 = "e2b5dbede00e7fa9bc363607f53327e8b073189b"; 8322 }; 8323 } 8324 { ··· 8370 }; 8371 } 8372 { 8373 + name = "passport_facebook___passport_facebook_3.0.0.tgz"; 8374 path = fetchurl { 8375 + name = "passport_facebook___passport_facebook_3.0.0.tgz"; 8376 + url = "https://registry.yarnpkg.com/passport-facebook/-/passport-facebook-3.0.0.tgz"; 8377 + sha1 = "b16f7314128be55d020a2b75f574c194bd6d9805"; 8378 }; 8379 } 8380 { ··· 8386 }; 8387 } 8388 { 8389 + name = "passport_gitlab2___passport_gitlab2_5.0.0.tgz"; 8390 path = fetchurl { 8391 + name = "passport_gitlab2___passport_gitlab2_5.0.0.tgz"; 8392 + url = "https://registry.yarnpkg.com/passport-gitlab2/-/passport-gitlab2-5.0.0.tgz"; 8393 + sha1 = "ea37e5285321c026a02671e87469cac28cce9b69"; 8394 }; 8395 } 8396 { 8397 + name = "passport_google_oauth20___passport_google_oauth20_2.0.0.tgz"; 8398 path = fetchurl { 8399 + name = "passport_google_oauth20___passport_google_oauth20_2.0.0.tgz"; 8400 + url = "https://registry.yarnpkg.com/passport-google-oauth20/-/passport-google-oauth20-2.0.0.tgz"; 8401 + sha1 = "0d241b2d21ebd3dc7f2b60669ec4d587e3a674ef"; 8402 }; 8403 } 8404 { 8405 + name = "passport_ldapauth___passport_ldapauth_3.0.1.tgz"; 8406 path = fetchurl { 8407 + name = "passport_ldapauth___passport_ldapauth_3.0.1.tgz"; 8408 + url = "https://registry.yarnpkg.com/passport-ldapauth/-/passport-ldapauth-3.0.1.tgz"; 8409 + sha1 = "1432e8469de18bd46b5b39a46a866b416c1ddded"; 8410 }; 8411 } 8412 { ··· 8442 }; 8443 } 8444 { 8445 + name = "passport_saml___passport_saml_2.2.0.tgz"; 8446 path = fetchurl { 8447 + name = "passport_saml___passport_saml_2.2.0.tgz"; 8448 + url = "https://registry.yarnpkg.com/passport-saml/-/passport-saml-2.2.0.tgz"; 8449 + sha1 = "dbea6743cf06644cfb3f0d486e43d3c8812b150a"; 8450 }; 8451 } 8452 { ··· 8522 }; 8523 } 8524 { 8525 + name = "path_key___path_key_3.1.1.tgz"; 8526 path = fetchurl { 8527 + name = "path_key___path_key_3.1.1.tgz"; 8528 + url = "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz"; 8529 + sha1 = "581f6ade658cbba65a0d3380de7753295054f375"; 8530 }; 8531 } 8532 { ··· 8570 }; 8571 } 8572 { 8573 + name = "pbkdf2___pbkdf2_3.1.2.tgz"; 8574 path = fetchurl { 8575 + name = "pbkdf2___pbkdf2_3.1.2.tgz"; 8576 + url = "https://registry.yarnpkg.com/pbkdf2/-/pbkdf2-3.1.2.tgz"; 8577 + sha1 = "dd822aa0887580e52f1a039dc3eda108efae3075"; 8578 }; 8579 } 8580 { 8581 + name = "pdfobject___pdfobject_2.2.5.tgz"; 8582 path = fetchurl { 8583 + name = "pdfobject___pdfobject_2.2.5.tgz"; 8584 + url = "https://registry.yarnpkg.com/pdfobject/-/pdfobject-2.2.5.tgz"; 8585 + sha1 = "3e79dae8925a68f60c79423f56737bfd2d7e8a0b"; 8586 }; 8587 } 8588 { ··· 8602 }; 8603 } 8604 { 8605 + name = "pg_connection_string___pg_connection_string_2.5.0.tgz"; 8606 path = fetchurl { 8607 + name = "pg_connection_string___pg_connection_string_2.5.0.tgz"; 8608 + url = "https://registry.yarnpkg.com/pg-connection-string/-/pg-connection-string-2.5.0.tgz"; 8609 + sha1 = "538cadd0f7e603fc09a12590f3b8a452c2c0cf34"; 8610 }; 8611 } 8612 { ··· 8626 }; 8627 } 8628 { 8629 + name = "pg_pool___pg_pool_3.3.0.tgz"; 8630 path = fetchurl { 8631 + name = "pg_pool___pg_pool_3.3.0.tgz"; 8632 + url = "https://registry.yarnpkg.com/pg-pool/-/pg-pool-3.3.0.tgz"; 8633 + sha1 = "12d5c7f65ea18a6e99ca9811bd18129071e562fc"; 8634 }; 8635 } 8636 { 8637 + name = "pg_protocol___pg_protocol_1.5.0.tgz"; 8638 path = fetchurl { 8639 + name = "pg_protocol___pg_protocol_1.5.0.tgz"; 8640 + url = "https://registry.yarnpkg.com/pg-protocol/-/pg-protocol-1.5.0.tgz"; 8641 + sha1 = "b5dd452257314565e2d54ab3c132adc46565a6a0"; 8642 }; 8643 } 8644 { ··· 8650 }; 8651 } 8652 { 8653 + name = "pg___pg_8.6.0.tgz"; 8654 path = fetchurl { 8655 + name = "pg___pg_8.6.0.tgz"; 8656 + url = "https://registry.yarnpkg.com/pg/-/pg-8.6.0.tgz"; 8657 + sha1 = "e222296b0b079b280cce106ea991703335487db2"; 8658 }; 8659 } 8660 { ··· 8666 }; 8667 } 8668 { 8669 + name = "picomatch___picomatch_2.2.3.tgz"; 8670 path = fetchurl { 8671 + name = "picomatch___picomatch_2.2.3.tgz"; 8672 + url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz"; 8673 + sha1 = "465547f359ccc206d3c48e46a1bcb89bf7ee619d"; 8674 }; 8675 } 8676 { ··· 8730 }; 8731 } 8732 { 8733 + name = "pkginfo___pkginfo_0.4.1.tgz"; 8734 + path = fetchurl { 8735 + name = "pkginfo___pkginfo_0.4.1.tgz"; 8736 + url = "https://registry.yarnpkg.com/pkginfo/-/pkginfo-0.4.1.tgz"; 8737 + sha1 = "b5418ef0439de5425fc4995042dced14fb2a84ff"; 8738 + }; 8739 + } 8740 + { 8741 name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz"; 8742 path = fetchurl { 8743 name = "please_upgrade_node___please_upgrade_node_3.2.0.tgz"; ··· 8754 }; 8755 } 8756 { 8757 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; 8758 path = fetchurl { 8759 name = "posix_character_classes___posix_character_classes_0.1.1.tgz"; ··· 8866 }; 8867 } 8868 { 8869 + name = "postcss_modules_extract_imports___postcss_modules_extract_imports_3.0.0.tgz"; 8870 path = fetchurl { 8871 + name = "postcss_modules_extract_imports___postcss_modules_extract_imports_3.0.0.tgz"; 8872 + url = "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz"; 8873 + sha1 = "cda1f047c0ae80c97dbe28c3e76a43b88025741d"; 8874 }; 8875 } 8876 { 8877 + name = "postcss_modules_local_by_default___postcss_modules_local_by_default_4.0.0.tgz"; 8878 path = fetchurl { 8879 + name = "postcss_modules_local_by_default___postcss_modules_local_by_default_4.0.0.tgz"; 8880 + url = "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz"; 8881 + sha1 = "ebbb54fae1598eecfdf691a02b3ff3b390a5a51c"; 8882 }; 8883 } 8884 { 8885 + name = "postcss_modules_scope___postcss_modules_scope_3.0.0.tgz"; 8886 path = fetchurl { 8887 + name = "postcss_modules_scope___postcss_modules_scope_3.0.0.tgz"; 8888 + url = "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz"; 8889 + sha1 = "9ef3151456d3bbfa120ca44898dfca6f2fa01f06"; 8890 }; 8891 } 8892 { 8893 + name = "postcss_modules_values___postcss_modules_values_4.0.0.tgz"; 8894 path = fetchurl { 8895 + name = "postcss_modules_values___postcss_modules_values_4.0.0.tgz"; 8896 + url = "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz"; 8897 + sha1 = "d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c"; 8898 }; 8899 } 8900 { ··· 9002 }; 9003 } 9004 { 9005 + name = "postcss_selector_parser___postcss_selector_parser_6.0.5.tgz"; 9006 path = fetchurl { 9007 + name = "postcss_selector_parser___postcss_selector_parser_6.0.5.tgz"; 9008 + url = "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz"; 9009 + sha1 = "042d74e137db83e6f294712096cb413f5aa612c4"; 9010 }; 9011 } 9012 { 9013 + name = "postcss_svgo___postcss_svgo_4.0.3.tgz"; 9014 path = fetchurl { 9015 + name = "postcss_svgo___postcss_svgo_4.0.3.tgz"; 9016 + url = "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-4.0.3.tgz"; 9017 + sha1 = "343a2cdbac9505d416243d496f724f38894c941e"; 9018 }; 9019 } 9020 { ··· 9050 }; 9051 } 9052 { 9053 + name = "postcss___postcss_8.2.13.tgz"; 9054 + path = fetchurl { 9055 + name = "postcss___postcss_8.2.13.tgz"; 9056 + url = "https://registry.yarnpkg.com/postcss/-/postcss-8.2.13.tgz"; 9057 + sha1 = "dbe043e26e3c068e45113b1ed6375d2d37e2129f"; 9058 + }; 9059 + } 9060 + { 9061 name = "postgres_array___postgres_array_2.0.0.tgz"; 9062 path = fetchurl { 9063 name = "postgres_array___postgres_array_2.0.0.tgz"; ··· 9098 }; 9099 } 9100 { 9101 + name = "prelude_ls___prelude_ls_1.2.1.tgz"; 9102 path = fetchurl { 9103 + name = "prelude_ls___prelude_ls_1.2.1.tgz"; 9104 + url = "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz"; 9105 + sha1 = "debc6489d7a6e6b0e7611888cec880337d316396"; 9106 }; 9107 } 9108 { ··· 9178 }; 9179 } 9180 { 9181 + name = "prom_client___prom_client_13.1.0.tgz"; 9182 path = fetchurl { 9183 + name = "prom_client___prom_client_13.1.0.tgz"; 9184 + url = "https://registry.yarnpkg.com/prom-client/-/prom-client-13.1.0.tgz"; 9185 + sha1 = "1185caffd8691e28d32e373972e662964e3dba45"; 9186 }; 9187 } 9188 { 9189 + name = "prometheus_api_metrics___prometheus_api_metrics_3.2.0.tgz"; 9190 path = fetchurl { 9191 + name = "prometheus_api_metrics___prometheus_api_metrics_3.2.0.tgz"; 9192 + url = "https://registry.yarnpkg.com/prometheus-api-metrics/-/prometheus-api-metrics-3.2.0.tgz"; 9193 + sha1 = "3af90989271abb55b7e0405bdfcb161f403a361c"; 9194 + }; 9195 + } 9196 + { 9197 + name = "promise_inflight___promise_inflight_1.0.1.tgz"; 9198 + path = fetchurl { 9199 + name = "promise_inflight___promise_inflight_1.0.1.tgz"; 9200 + url = "https://registry.yarnpkg.com/promise-inflight/-/promise-inflight-1.0.1.tgz"; 9201 + sha1 = "98472870bf228132fcbdd868129bad12c3c029e3"; 9202 }; 9203 } 9204 { ··· 9298 }; 9299 } 9300 { 9301 name = "qs___qs_2.3.3.tgz"; 9302 path = fetchurl { 9303 name = "qs___qs_2.3.3.tgz"; ··· 9322 }; 9323 } 9324 { 9325 name = "querystring_es3___querystring_es3_0.2.1.tgz"; 9326 path = fetchurl { 9327 name = "querystring_es3___querystring_es3_0.2.1.tgz"; ··· 9338 }; 9339 } 9340 { 9341 + name = "queue_microtask___queue_microtask_1.2.3.tgz"; 9342 + path = fetchurl { 9343 + name = "queue_microtask___queue_microtask_1.2.3.tgz"; 9344 + url = "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz"; 9345 + sha1 = "4929228bbc724dfac43e0efb058caf7b6cfb6243"; 9346 + }; 9347 + } 9348 + { 9349 name = "random_bytes___random_bytes_1.0.0.tgz"; 9350 path = fetchurl { 9351 name = "random_bytes___random_bytes_1.0.0.tgz"; ··· 9458 }; 9459 } 9460 { 9461 name = "readable_stream___readable_stream_3.6.0.tgz"; 9462 path = fetchurl { 9463 name = "readable_stream___readable_stream_3.6.0.tgz"; ··· 9514 }; 9515 } 9516 { 9517 + name = "rechoir___rechoir_0.7.0.tgz"; 9518 path = fetchurl { 9519 + name = "rechoir___rechoir_0.7.0.tgz"; 9520 + url = "https://registry.yarnpkg.com/rechoir/-/rechoir-0.7.0.tgz"; 9521 + sha1 = "32650fd52c21ab252aa5d65b19310441c7e03aca"; 9522 }; 9523 } 9524 { 9525 + name = "reduce_component___reduce_component_1.0.1.tgz"; 9526 path = fetchurl { 9527 + name = "reduce_component___reduce_component_1.0.1.tgz"; 9528 + url = "https://registry.yarnpkg.com/reduce-component/-/reduce-component-1.0.1.tgz"; 9529 + sha1 = "e0c93542c574521bea13df0f9488ed82ab77c5da"; 9530 }; 9531 } 9532 { ··· 9578 }; 9579 } 9580 { 9581 + name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz"; 9582 path = fetchurl { 9583 + name = "regexp.prototype.flags___regexp.prototype.flags_1.3.1.tgz"; 9584 + url = "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz"; 9585 + sha1 = "7ef352ae8d159e758c0eadca6f8fcb4eef07be26"; 9586 }; 9587 } 9588 { 9589 + name = "regexpp___regexpp_3.1.0.tgz"; 9590 path = fetchurl { 9591 + name = "regexpp___regexpp_3.1.0.tgz"; 9592 + url = "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz"; 9593 + sha1 = "206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2"; 9594 }; 9595 } 9596 { ··· 9626 }; 9627 } 9628 { 9629 + name = "remark_cli___remark_cli_9.0.0.tgz"; 9630 path = fetchurl { 9631 + name = "remark_cli___remark_cli_9.0.0.tgz"; 9632 + url = "https://registry.yarnpkg.com/remark-cli/-/remark-cli-9.0.0.tgz"; 9633 + sha1 = "6f7951e7a72217535f2e32b7a6d3f638fe182f86"; 9634 }; 9635 } 9636 { ··· 9754 }; 9755 } 9756 { 9757 + name = "remark_lint_list_item_spacing___remark_lint_list_item_spacing_3.0.0.tgz"; 9758 path = fetchurl { 9759 + name = "remark_lint_list_item_spacing___remark_lint_list_item_spacing_3.0.0.tgz"; 9760 + url = "https://registry.yarnpkg.com/remark-lint-list-item-spacing/-/remark-lint-list-item-spacing-3.0.0.tgz"; 9761 + sha1 = "14c18fe8c0f19231edb5cf94abda748bb773110b"; 9762 }; 9763 } 9764 { ··· 9786 }; 9787 } 9788 { 9789 + name = "remark_lint_no_blockquote_without_marker___remark_lint_no_blockquote_without_marker_4.0.0.tgz"; 9790 path = fetchurl { 9791 + name = "remark_lint_no_blockquote_without_marker___remark_lint_no_blockquote_without_marker_4.0.0.tgz"; 9792 + url = "https://registry.yarnpkg.com/remark-lint-no-blockquote-without-marker/-/remark-lint-no-blockquote-without-marker-4.0.0.tgz"; 9793 + sha1 = "856fb64dd038fa8fc27928163caa24a30ff4d790"; 9794 }; 9795 } 9796 { 9797 + name = "remark_lint_no_consecutive_blank_lines___remark_lint_no_consecutive_blank_lines_3.0.0.tgz"; 9798 path = fetchurl { 9799 + name = "remark_lint_no_consecutive_blank_lines___remark_lint_no_consecutive_blank_lines_3.0.0.tgz"; 9800 + url = "https://registry.yarnpkg.com/remark-lint-no-consecutive-blank-lines/-/remark-lint-no-consecutive-blank-lines-3.0.0.tgz"; 9801 + sha1 = "c8fe11095b8f031a1406da273722bd4a9174bf41"; 9802 }; 9803 } 9804 { ··· 9866 }; 9867 } 9868 { 9869 + name = "remark_lint_no_inline_padding___remark_lint_no_inline_padding_3.0.0.tgz"; 9870 path = fetchurl { 9871 + name = "remark_lint_no_inline_padding___remark_lint_no_inline_padding_3.0.0.tgz"; 9872 + url = "https://registry.yarnpkg.com/remark-lint-no-inline-padding/-/remark-lint-no-inline-padding-3.0.0.tgz"; 9873 + sha1 = "14c2722bcddc648297a54298107a922171faf6eb"; 9874 }; 9875 } 9876 { ··· 9914 }; 9915 } 9916 { 9917 + name = "remark_lint_no_table_indentation___remark_lint_no_table_indentation_3.0.0.tgz"; 9918 path = fetchurl { 9919 + name = "remark_lint_no_table_indentation___remark_lint_no_table_indentation_3.0.0.tgz"; 9920 + url = "https://registry.yarnpkg.com/remark-lint-no-table-indentation/-/remark-lint-no-table-indentation-3.0.0.tgz"; 9921 + sha1 = "f3c3fc24375069ec8e510f43050600fb22436731"; 9922 }; 9923 } 9924 { ··· 9954 }; 9955 } 9956 { 9957 + name = "remark_lint_table_cell_padding___remark_lint_table_cell_padding_3.0.0.tgz"; 9958 path = fetchurl { 9959 + name = "remark_lint_table_cell_padding___remark_lint_table_cell_padding_3.0.0.tgz"; 9960 + url = "https://registry.yarnpkg.com/remark-lint-table-cell-padding/-/remark-lint-table-cell-padding-3.0.0.tgz"; 9961 + sha1 = "a769ba1999984ff5f90294fb6ccb8aead7e8a12f"; 9962 }; 9963 } 9964 { ··· 9970 }; 9971 } 9972 { 9973 + name = "remark_lint_table_pipes___remark_lint_table_pipes_3.0.0.tgz"; 9974 path = fetchurl { 9975 + name = "remark_lint_table_pipes___remark_lint_table_pipes_3.0.0.tgz"; 9976 + url = "https://registry.yarnpkg.com/remark-lint-table-pipes/-/remark-lint-table-pipes-3.0.0.tgz"; 9977 + sha1 = "b30b055d594cae782667eec91c6c5b35928ab259"; 9978 }; 9979 } 9980 { ··· 9986 }; 9987 } 9988 { 9989 + name = "remark_lint___remark_lint_8.0.0.tgz"; 9990 path = fetchurl { 9991 + name = "remark_lint___remark_lint_8.0.0.tgz"; 9992 + url = "https://registry.yarnpkg.com/remark-lint/-/remark-lint-8.0.0.tgz"; 9993 + sha1 = "6e40894f4a39eaea31fc4dd45abfaba948bf9a09"; 9994 }; 9995 } 9996 { ··· 10002 }; 10003 } 10004 { 10005 + name = "remark_parse___remark_parse_9.0.0.tgz"; 10006 path = fetchurl { 10007 + name = "remark_parse___remark_parse_9.0.0.tgz"; 10008 + url = "https://registry.yarnpkg.com/remark-parse/-/remark-parse-9.0.0.tgz"; 10009 + sha1 = "4d20a299665880e4f4af5d90b7c7b8a935853640"; 10010 }; 10011 } 10012 { 10013 + name = "remark_preset_lint_markdown_style_guide___remark_preset_lint_markdown_style_guide_4.0.0.tgz"; 10014 path = fetchurl { 10015 + name = "remark_preset_lint_markdown_style_guide___remark_preset_lint_markdown_style_guide_4.0.0.tgz"; 10016 + url = "https://registry.yarnpkg.com/remark-preset-lint-markdown-style-guide/-/remark-preset-lint-markdown-style-guide-4.0.0.tgz"; 10017 + sha1 = "976b6ffd7f37aa90868e081a69241fcde3a297d4"; 10018 }; 10019 } 10020 { 10021 + name = "remark_stringify___remark_stringify_9.0.1.tgz"; 10022 path = fetchurl { 10023 + name = "remark_stringify___remark_stringify_9.0.1.tgz"; 10024 + url = "https://registry.yarnpkg.com/remark-stringify/-/remark-stringify-9.0.1.tgz"; 10025 + sha1 = "576d06e910548b0a7191a71f27b33f1218862894"; 10026 }; 10027 } 10028 { 10029 + name = "remark___remark_13.0.0.tgz"; 10030 path = fetchurl { 10031 + name = "remark___remark_13.0.0.tgz"; 10032 + url = "https://registry.yarnpkg.com/remark/-/remark-13.0.0.tgz"; 10033 + sha1 = "d15d9bf71a402f40287ebe36067b66d54868e425"; 10034 }; 10035 } 10036 { ··· 10050 }; 10051 } 10052 { 10053 + name = "repeat_element___repeat_element_1.1.4.tgz"; 10054 path = fetchurl { 10055 + name = "repeat_element___repeat_element_1.1.4.tgz"; 10056 + url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz"; 10057 + sha1 = "be681520847ab58c7568ac75fbfad28ed42d39e9"; 10058 }; 10059 } 10060 { ··· 10074 }; 10075 } 10076 { 10077 name = "request___request_2.88.2.tgz"; 10078 path = fetchurl { 10079 name = "request___request_2.88.2.tgz"; ··· 10090 }; 10091 } 10092 { 10093 + name = "require_from_string___require_from_string_2.0.2.tgz"; 10094 path = fetchurl { 10095 + name = "require_from_string___require_from_string_2.0.2.tgz"; 10096 + url = "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz"; 10097 + sha1 = "89a7fdd938261267318eafe14f9c32e598c36909"; 10098 }; 10099 } 10100 { 10101 + name = "resolve_cwd___resolve_cwd_3.0.0.tgz"; 10102 path = fetchurl { 10103 + name = "resolve_cwd___resolve_cwd_3.0.0.tgz"; 10104 + url = "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz"; 10105 + sha1 = "0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d"; 10106 }; 10107 } 10108 { ··· 10138 }; 10139 } 10140 { 10141 + name = "resolve___resolve_1.20.0.tgz"; 10142 path = fetchurl { 10143 + name = "resolve___resolve_1.20.0.tgz"; 10144 + url = "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz"; 10145 + sha1 = "629a013fb3f70755d6f0b7935cc1c2c5378b1975"; 10146 }; 10147 } 10148 { ··· 10194 }; 10195 } 10196 { 10197 name = "rimraf___rimraf_2.7.1.tgz"; 10198 path = fetchurl { 10199 name = "rimraf___rimraf_2.7.1.tgz"; ··· 10210 }; 10211 } 10212 { 10213 name = "ripemd160___ripemd160_2.0.2.tgz"; 10214 path = fetchurl { 10215 name = "ripemd160___ripemd160_2.0.2.tgz"; ··· 10218 }; 10219 } 10220 { 10221 + name = "run_parallel___run_parallel_1.2.0.tgz"; 10222 path = fetchurl { 10223 + name = "run_parallel___run_parallel_1.2.0.tgz"; 10224 + url = "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz"; 10225 + sha1 = "66d1368da7bdf921eb9d95bd1a9229e7f21a43ee"; 10226 }; 10227 } 10228 { ··· 10242 }; 10243 } 10244 { 10245 name = "safe_buffer___safe_buffer_5.2.1.tgz"; 10246 path = fetchurl { 10247 name = "safe_buffer___safe_buffer_5.2.1.tgz"; ··· 10266 }; 10267 } 10268 { 10269 name = "safe_regex___safe_regex_1.1.0.tgz"; 10270 path = fetchurl { 10271 name = "safe_regex___safe_regex_1.1.0.tgz"; ··· 10314 }; 10315 } 10316 { 10317 name = "schema_utils___schema_utils_3.0.0.tgz"; 10318 path = fetchurl { 10319 name = "schema_utils___schema_utils_3.0.0.tgz"; ··· 10330 }; 10331 } 10332 { 10333 name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz"; 10334 path = fetchurl { 10335 name = "scrypt_kdf___scrypt_kdf_2.0.1.tgz"; ··· 10378 }; 10379 } 10380 { 10381 + name = "semver___semver_7.3.5.tgz"; 10382 + path = fetchurl { 10383 + name = "semver___semver_7.3.5.tgz"; 10384 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz"; 10385 + sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7"; 10386 + }; 10387 + } 10388 + { 10389 + name = "semver___semver_5.3.0.tgz"; 10390 + path = fetchurl { 10391 + name = "semver___semver_5.3.0.tgz"; 10392 + url = "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz"; 10393 + sha1 = "9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"; 10394 + }; 10395 + } 10396 + { 10397 name = "send___send_0.17.1.tgz"; 10398 path = fetchurl { 10399 name = "send___send_0.17.1.tgz"; ··· 10410 }; 10411 } 10412 { 10413 + name = "sequelize_pool___sequelize_pool_2.3.0.tgz"; 10414 path = fetchurl { 10415 + name = "sequelize_pool___sequelize_pool_2.3.0.tgz"; 10416 + url = "https://registry.yarnpkg.com/sequelize-pool/-/sequelize-pool-2.3.0.tgz"; 10417 + sha1 = "64f1fe8744228172c474f530604b6133be64993d"; 10418 }; 10419 } 10420 { 10421 + name = "sequelize___sequelize_5.22.4.tgz"; 10422 path = fetchurl { 10423 + name = "sequelize___sequelize_5.22.4.tgz"; 10424 + url = "https://registry.yarnpkg.com/sequelize/-/sequelize-5.22.4.tgz"; 10425 + sha1 = "4dbd8a1a735e98150880d43a95d45e9f46d151fa"; 10426 }; 10427 } 10428 { 10429 + name = "serialize_javascript___serialize_javascript_5.0.1.tgz"; 10430 path = fetchurl { 10431 + name = "serialize_javascript___serialize_javascript_5.0.1.tgz"; 10432 + url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz"; 10433 + sha1 = "7886ec848049a462467a97d3d918ebb2aaf934f4"; 10434 }; 10435 } 10436 { ··· 10439 name = "serialize_javascript___serialize_javascript_4.0.0.tgz"; 10440 url = "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz"; 10441 sha1 = "b525e1238489a5ecfc42afacc3fe99e666f4b1aa"; 10442 }; 10443 } 10444 { ··· 10490 }; 10491 } 10492 { 10493 + name = "shallow_clone___shallow_clone_3.0.1.tgz"; 10494 path = fetchurl { 10495 + name = "shallow_clone___shallow_clone_3.0.1.tgz"; 10496 + url = "https://registry.yarnpkg.com/shallow-clone/-/shallow-clone-3.0.1.tgz"; 10497 + sha1 = "8f2981ad92531f55035b01fb230769a40e02efa3"; 10498 }; 10499 } 10500 { 10501 + name = "shebang_command___shebang_command_2.0.0.tgz"; 10502 path = fetchurl { 10503 + name = "shebang_command___shebang_command_2.0.0.tgz"; 10504 + url = "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz"; 10505 + sha1 = "ccd0af4f8835fbdc265b82461aaf0c36663f34ea"; 10506 + }; 10507 + } 10508 + { 10509 + name = "shebang_regex___shebang_regex_3.0.0.tgz"; 10510 + path = fetchurl { 10511 + name = "shebang_regex___shebang_regex_3.0.0.tgz"; 10512 + url = "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz"; 10513 + sha1 = "ae16f1644d873ecad843b0307b143362d4c42172"; 10514 }; 10515 } 10516 { ··· 10530 }; 10531 } 10532 { 10533 + name = "side_channel___side_channel_1.0.4.tgz"; 10534 path = fetchurl { 10535 + name = "side_channel___side_channel_1.0.4.tgz"; 10536 + url = "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.4.tgz"; 10537 + sha1 = "efce5c8fdc104ee751b25c58d4290011fa5ea2cf"; 10538 }; 10539 } 10540 { ··· 10570 }; 10571 } 10572 { 10573 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 10574 path = fetchurl { 10575 + name = "slice_ansi___slice_ansi_4.0.0.tgz"; 10576 + url = "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz"; 10577 + sha1 = "500e8dd0fd55b05815086255b3195adf2a45fe6b"; 10578 }; 10579 } 10580 { ··· 10658 }; 10659 } 10660 { 10661 name = "source_list_map___source_list_map_2.0.1.tgz"; 10662 path = fetchurl { 10663 name = "source_list_map___source_list_map_2.0.1.tgz"; ··· 10690 }; 10691 } 10692 { 10693 + name = "source_map_url___source_map_url_0.4.1.tgz"; 10694 path = fetchurl { 10695 + name = "source_map_url___source_map_url_0.4.1.tgz"; 10696 + url = "https://registry.yarnpkg.com/source-map-url/-/source-map-url-0.4.1.tgz"; 10697 + sha1 = "0af66605a745a5a2f91cf1bbf8a7afbc283dec56"; 10698 }; 10699 } 10700 { ··· 10754 }; 10755 } 10756 { 10757 + name = "spin.js___spin.js_4.1.0.tgz"; 10758 path = fetchurl { 10759 + name = "spin.js___spin.js_4.1.0.tgz"; 10760 + url = "https://registry.yarnpkg.com/spin.js/-/spin.js-4.1.0.tgz"; 10761 + sha1 = "afcf12738fafd5f6aa0a385a5b4cec45c86a3555"; 10762 }; 10763 } 10764 { ··· 10794 }; 10795 } 10796 { 10797 + name = "sqlite3___sqlite3_5.0.2.tgz"; 10798 path = fetchurl { 10799 + name = "sqlite3___sqlite3_5.0.2.tgz"; 10800 + url = "https://registry.yarnpkg.com/sqlite3/-/sqlite3-5.0.2.tgz"; 10801 + sha1 = "00924adcc001c17686e0a6643b6cbbc2d3965083"; 10802 }; 10803 } 10804 { ··· 10818 }; 10819 } 10820 { 10821 + name = "ssri___ssri_6.0.2.tgz"; 10822 path = fetchurl { 10823 + name = "ssri___ssri_6.0.2.tgz"; 10824 + url = "https://registry.yarnpkg.com/ssri/-/ssri-6.0.2.tgz"; 10825 + sha1 = "157939134f20464e7301ddba3e90ffa8f7728ac5"; 10826 }; 10827 } 10828 { 10829 + name = "ssri___ssri_8.0.1.tgz"; 10830 path = fetchurl { 10831 + name = "ssri___ssri_8.0.1.tgz"; 10832 + url = "https://registry.yarnpkg.com/ssri/-/ssri-8.0.1.tgz"; 10833 + sha1 = "638e4e439e2ffbd2cd289776d5ca457c4f51a2af"; 10834 }; 10835 } 10836 { ··· 10850 }; 10851 } 10852 { 10853 name = "static_extend___static_extend_0.1.2.tgz"; 10854 path = fetchurl { 10855 name = "static_extend___static_extend_0.1.2.tgz"; ··· 10866 }; 10867 } 10868 { 10869 name = "store___store_2.0.12.tgz"; 10870 path = fetchurl { 10871 name = "store___store_2.0.12.tgz"; ··· 10906 }; 10907 } 10908 { 10909 name = "string_loader___string_loader_0.0.1.tgz"; 10910 path = fetchurl { 10911 name = "string_loader___string_loader_0.0.1.tgz"; ··· 10938 }; 10939 } 10940 { 10941 + name = "string_width___string_width_4.2.2.tgz"; 10942 path = fetchurl { 10943 + name = "string_width___string_width_4.2.2.tgz"; 10944 + url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz"; 10945 + sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"; 10946 }; 10947 } 10948 { 10949 + name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz"; 10950 path = fetchurl { 10951 + name = "string.prototype.trimend___string.prototype.trimend_1.0.4.tgz"; 10952 + url = "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz"; 10953 + sha1 = "e75ae90c2942c63504686c18b287b4a0b1a45f80"; 10954 }; 10955 } 10956 { 10957 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz"; 10958 path = fetchurl { 10959 + name = "string.prototype.trimstart___string.prototype.trimstart_1.0.4.tgz"; 10960 + url = "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz"; 10961 + sha1 = "b36399af4ab2999b4c9c648bd7a3fb2bb26feeed"; 10962 }; 10963 } 10964 { ··· 10994 }; 10995 } 10996 { 10997 name = "strip_ansi___strip_ansi_3.0.1.tgz"; 10998 path = fetchurl { 10999 name = "strip_ansi___strip_ansi_3.0.1.tgz"; ··· 11010 }; 11011 } 11012 { 11013 name = "strip_ansi___strip_ansi_6.0.0.tgz"; 11014 path = fetchurl { 11015 name = "strip_ansi___strip_ansi_6.0.0.tgz"; ··· 11034 }; 11035 } 11036 { 11037 + name = "strip_comments___strip_comments_2.0.1.tgz"; 11038 + path = fetchurl { 11039 + name = "strip_comments___strip_comments_2.0.1.tgz"; 11040 + url = "https://registry.yarnpkg.com/strip-comments/-/strip-comments-2.0.1.tgz"; 11041 + sha1 = "4ad11c3fbcac177a67a40ac224ca339ca1c1ba9b"; 11042 + }; 11043 + } 11044 + { 11045 + name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; 11046 + path = fetchurl { 11047 + name = "strip_final_newline___strip_final_newline_2.0.0.tgz"; 11048 + url = "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz"; 11049 + sha1 = "89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad"; 11050 + }; 11051 + } 11052 + { 11053 + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 11054 + path = fetchurl { 11055 + name = "strip_json_comments___strip_json_comments_3.1.1.tgz"; 11056 + url = "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz"; 11057 + sha1 = "31f1281b3832630434831c310c01cccda8cbe006"; 11058 + }; 11059 + } 11060 + { 11061 name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; 11062 path = fetchurl { 11063 name = "strip_json_comments___strip_json_comments_2.0.1.tgz"; ··· 11098 }; 11099 } 11100 { 11101 + name = "supports_color___supports_color_8.1.1.tgz"; 11102 path = fetchurl { 11103 + name = "supports_color___supports_color_8.1.1.tgz"; 11104 + url = "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz"; 11105 + sha1 = "cd6fc17e28500cff56c1b86c0a7fd4a54a73005c"; 11106 }; 11107 } 11108 { ··· 11146 }; 11147 } 11148 { 11149 + name = "table___table_6.6.0.tgz"; 11150 path = fetchurl { 11151 + name = "table___table_6.6.0.tgz"; 11152 + url = "https://registry.yarnpkg.com/table/-/table-6.6.0.tgz"; 11153 + sha1 = "905654b79df98d9e9a973de1dd58682532c40e8e"; 11154 }; 11155 } 11156 { ··· 11170 }; 11171 } 11172 { 11173 + name = "tar___tar_2.2.2.tgz"; 11174 + path = fetchurl { 11175 + name = "tar___tar_2.2.2.tgz"; 11176 + url = "https://registry.yarnpkg.com/tar/-/tar-2.2.2.tgz"; 11177 + sha1 = "0ca8848562c7299b8b446ff6a4d60cdbb23edc40"; 11178 + }; 11179 + } 11180 + { 11181 name = "tar___tar_4.4.13.tgz"; 11182 path = fetchurl { 11183 name = "tar___tar_4.4.13.tgz"; ··· 11194 }; 11195 } 11196 { 11197 + name = "tdigest___tdigest_0.1.1.tgz"; 11198 + path = fetchurl { 11199 + name = "tdigest___tdigest_0.1.1.tgz"; 11200 + url = "https://registry.yarnpkg.com/tdigest/-/tdigest-0.1.1.tgz"; 11201 + sha1 = "2e3cb2c39ea449e55d1e6cd91117accca4588021"; 11202 + }; 11203 + } 11204 + { 11205 name = "tedious___tedious_6.7.0.tgz"; 11206 path = fetchurl { 11207 name = "tedious___tedious_6.7.0.tgz"; ··· 11242 }; 11243 } 11244 { 11245 name = "through2___through2_2.0.5.tgz"; 11246 path = fetchurl { 11247 name = "through2___through2_2.0.5.tgz"; ··· 11250 }; 11251 } 11252 { 11253 + name = "through2___through2_3.0.2.tgz"; 11254 path = fetchurl { 11255 + name = "through2___through2_3.0.2.tgz"; 11256 + url = "https://registry.yarnpkg.com/through2/-/through2-3.0.2.tgz"; 11257 + sha1 = "99f88931cfc761ec7678b41d5d7336b5b6a07bf4"; 11258 }; 11259 } 11260 { ··· 11263 name = "timers_browserify___timers_browserify_2.0.12.tgz"; 11264 url = "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.12.tgz"; 11265 sha1 = "44a45c11fbf407f34f97bccd1577c652361b00ee"; 11266 }; 11267 } 11268 { ··· 11282 }; 11283 } 11284 { 11285 name = "to_array___to_array_0.1.4.tgz"; 11286 path = fetchurl { 11287 name = "to_array___to_array_0.1.4.tgz"; ··· 11386 }; 11387 } 11388 { 11389 name = "trim_right___trim_right_1.0.1.tgz"; 11390 path = fetchurl { 11391 name = "trim_right___trim_right_1.0.1.tgz"; ··· 11394 }; 11395 } 11396 { 11397 name = "triple_beam___triple_beam_1.3.0.tgz"; 11398 path = fetchurl { 11399 name = "triple_beam___triple_beam_1.3.0.tgz"; ··· 11442 }; 11443 } 11444 { 11445 + name = "tslib___tslib_2.2.0.tgz"; 11446 path = fetchurl { 11447 + name = "tslib___tslib_2.2.0.tgz"; 11448 + url = "https://registry.yarnpkg.com/tslib/-/tslib-2.2.0.tgz"; 11449 + sha1 = "fb2c475977e35e241311ede2693cee1ec6698f5c"; 11450 }; 11451 } 11452 { ··· 11474 }; 11475 } 11476 { 11477 + name = "turndown___turndown_7.0.0.tgz"; 11478 path = fetchurl { 11479 + name = "turndown___turndown_7.0.0.tgz"; 11480 + url = "https://registry.yarnpkg.com/turndown/-/turndown-7.0.0.tgz"; 11481 + sha1 = "19b2a6a2d1d700387a1e07665414e4af4fec5225"; 11482 }; 11483 } 11484 { ··· 11490 }; 11491 } 11492 { 11493 + name = "type_check___type_check_0.4.0.tgz"; 11494 path = fetchurl { 11495 + name = "type_check___type_check_0.4.0.tgz"; 11496 + url = "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz"; 11497 + sha1 = "07b8203bfa7056c0657050e3ccd2c37730bab8f1"; 11498 }; 11499 } 11500 { 11501 + name = "type_fest___type_fest_0.20.2.tgz"; 11502 path = fetchurl { 11503 + name = "type_fest___type_fest_0.20.2.tgz"; 11504 + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; 11505 + sha1 = "1bf207f4b28f91583666cb5fbd327887301cd5f4"; 11506 }; 11507 } 11508 { 11509 + name = "type_fest___type_fest_0.8.1.tgz"; 11510 path = fetchurl { 11511 + name = "type_fest___type_fest_0.8.1.tgz"; 11512 + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.8.1.tgz"; 11513 + sha1 = "09e249ebde851d3b1e48d27c105444667f17b83d"; 11514 }; 11515 } 11516 { 11517 + name = "type_is___type_is_1.6.18.tgz"; 11518 path = fetchurl { 11519 + name = "type_is___type_is_1.6.18.tgz"; 11520 + url = "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz"; 11521 + sha1 = "4e552cd05df09467dcbc4ef739de89f2cf37c131"; 11522 }; 11523 } 11524 { ··· 11546 }; 11547 } 11548 { 11549 + name = "uglify_js___uglify_js_3.13.5.tgz"; 11550 path = fetchurl { 11551 + name = "uglify_js___uglify_js_3.13.5.tgz"; 11552 + url = "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.13.5.tgz"; 11553 + sha1 = "5d71d6dbba64cf441f32929b1efce7365bb4f113"; 11554 }; 11555 } 11556 { ··· 11578 }; 11579 } 11580 { 11581 + name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; 11582 + path = fetchurl { 11583 + name = "unbox_primitive___unbox_primitive_1.0.1.tgz"; 11584 + url = "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.1.tgz"; 11585 + sha1 = "085e215625ec3162574dc8859abee78a59b14471"; 11586 + }; 11587 + } 11588 + { 11589 name = "underscore___underscore_1.11.0.tgz"; 11590 path = fetchurl { 11591 name = "underscore___underscore_1.11.0.tgz"; ··· 11594 }; 11595 } 11596 { 11597 + name = "underscore___underscore_1.13.1.tgz"; 11598 path = fetchurl { 11599 + name = "underscore___underscore_1.13.1.tgz"; 11600 + url = "https://registry.yarnpkg.com/underscore/-/underscore-1.13.1.tgz"; 11601 + sha1 = "0c1c6bd2df54b6b69f2314066d65b6cde6fcf9d1"; 11602 }; 11603 } 11604 { ··· 11618 }; 11619 } 11620 { 11621 name = "unified_args___unified_args_8.1.0.tgz"; 11622 path = fetchurl { 11623 name = "unified_args___unified_args_8.1.0.tgz"; ··· 11626 }; 11627 } 11628 { 11629 + name = "unified_engine___unified_engine_8.1.0.tgz"; 11630 path = fetchurl { 11631 + name = "unified_engine___unified_engine_8.1.0.tgz"; 11632 + url = "https://registry.yarnpkg.com/unified-engine/-/unified-engine-8.1.0.tgz"; 11633 + sha1 = "a846e11705fb8589d1250cd27500b56021d8a3e2"; 11634 }; 11635 } 11636 { ··· 11642 }; 11643 } 11644 { 11645 + name = "unified_message_control___unified_message_control_3.0.3.tgz"; 11646 path = fetchurl { 11647 + name = "unified_message_control___unified_message_control_3.0.3.tgz"; 11648 + url = "https://registry.yarnpkg.com/unified-message-control/-/unified-message-control-3.0.3.tgz"; 11649 + sha1 = "d08c4564092a507668de71451a33c0d80e734bbd"; 11650 }; 11651 } 11652 { 11653 + name = "unified___unified_9.2.1.tgz"; 11654 path = fetchurl { 11655 + name = "unified___unified_9.2.1.tgz"; 11656 + url = "https://registry.yarnpkg.com/unified/-/unified-9.2.1.tgz"; 11657 + sha1 = "ae18d5674c114021bfdbdf73865ca60f410215a3"; 11658 }; 11659 } 11660 { ··· 11714 }; 11715 } 11716 { 11717 + name = "unist_util_is___unist_util_is_4.1.0.tgz"; 11718 path = fetchurl { 11719 + name = "unist_util_is___unist_util_is_4.1.0.tgz"; 11720 + url = "https://registry.yarnpkg.com/unist-util-is/-/unist-util-is-4.1.0.tgz"; 11721 + sha1 = "976e5f462a7a5de73d94b706bac1b90671b57797"; 11722 }; 11723 } 11724 { ··· 11730 }; 11731 } 11732 { 11733 name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz"; 11734 path = fetchurl { 11735 name = "unist_util_stringify_position___unist_util_stringify_position_2.0.3.tgz"; ··· 11751 name = "unist_util_visit___unist_util_visit_2.0.3.tgz"; 11752 url = "https://registry.yarnpkg.com/unist-util-visit/-/unist-util-visit-2.0.3.tgz"; 11753 sha1 = "c3703893146df47203bb8a9795af47d7b971208c"; 11754 }; 11755 } 11756 { ··· 11810 }; 11811 } 11812 { 11813 + name = "url_loader___url_loader_4.1.1.tgz"; 11814 path = fetchurl { 11815 + name = "url_loader___url_loader_4.1.1.tgz"; 11816 + url = "https://registry.yarnpkg.com/url-loader/-/url-loader-4.1.1.tgz"; 11817 + sha1 = "28505e905cae158cf07c92ca622d7f237e70a4e2"; 11818 }; 11819 } 11820 { ··· 11850 }; 11851 } 11852 { 11853 + name = "utf_8_validate___utf_8_validate_5.0.5.tgz"; 11854 path = fetchurl { 11855 + name = "utf_8_validate___utf_8_validate_5.0.5.tgz"; 11856 + url = "https://registry.yarnpkg.com/utf-8-validate/-/utf-8-validate-5.0.5.tgz"; 11857 + sha1 = "dd32c2e82c72002dc9f02eb67ba6761f43456ca1"; 11858 }; 11859 } 11860 { ··· 11930 }; 11931 } 11932 { 11933 + name = "uuid___uuid_8.3.2.tgz"; 11934 path = fetchurl { 11935 + name = "uuid___uuid_8.3.2.tgz"; 11936 + url = "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz"; 11937 + sha1 = "80d5b5ced271bb9af6c445f21a1a04c606cefbe2"; 11938 + }; 11939 + } 11940 + { 11941 + name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz"; 11942 + path = fetchurl { 11943 + name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz"; 11944 + url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 11945 + sha1 = "2de19618c66dc247dcfb6f99338035d8245a2cee"; 11946 }; 11947 } 11948 { ··· 11970 }; 11971 } 11972 { 11973 + name = "validator___validator_13.6.0.tgz"; 11974 + path = fetchurl { 11975 + name = "validator___validator_13.6.0.tgz"; 11976 + url = "https://registry.yarnpkg.com/validator/-/validator-13.6.0.tgz"; 11977 + sha1 = "1e71899c14cdc7b2068463cb24c1cc16f6ec7059"; 11978 + }; 11979 + } 11980 + { 11981 name = "validator___validator_9.4.1.tgz"; 11982 path = fetchurl { 11983 name = "validator___validator_9.4.1.tgz"; ··· 11994 }; 11995 } 11996 { 11997 + name = "vasync___vasync_2.2.0.tgz"; 11998 path = fetchurl { 11999 + name = "vasync___vasync_2.2.0.tgz"; 12000 + url = "https://registry.yarnpkg.com/vasync/-/vasync-2.2.0.tgz"; 12001 + sha1 = "cfde751860a15822db3b132bc59b116a4adaf01b"; 12002 }; 12003 } 12004 { ··· 12026 }; 12027 } 12028 { 12029 name = "vfile_location___vfile_location_3.2.0.tgz"; 12030 path = fetchurl { 12031 name = "vfile_location___vfile_location_3.2.0.tgz"; ··· 12074 }; 12075 } 12076 { 12077 + name = "visibilityjs___visibilityjs_2.0.2.tgz"; 12078 path = fetchurl { 12079 + name = "visibilityjs___visibilityjs_2.0.2.tgz"; 12080 + url = "https://registry.yarnpkg.com/visibilityjs/-/visibilityjs-2.0.2.tgz"; 12081 + sha1 = "d7c466e922024bb6c413d2136d5567e71f5fdc2f"; 12082 }; 12083 } 12084 { ··· 12098 }; 12099 } 12100 { 12101 name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; 12102 path = fetchurl { 12103 name = "watchpack_chokidar2___watchpack_chokidar2_2.0.1.tgz"; ··· 12114 }; 12115 } 12116 { 12117 name = "webfontloader___webfontloader_1.6.28.tgz"; 12118 path = fetchurl { 12119 name = "webfontloader___webfontloader_1.6.28.tgz"; ··· 12122 }; 12123 } 12124 { 12125 + name = "webpack_cli___webpack_cli_4.6.0.tgz"; 12126 path = fetchurl { 12127 + name = "webpack_cli___webpack_cli_4.6.0.tgz"; 12128 + url = "https://registry.yarnpkg.com/webpack-cli/-/webpack-cli-4.6.0.tgz"; 12129 + sha1 = "27ae86bfaec0cf393fcfd58abdc5a229ad32fd16"; 12130 }; 12131 } 12132 { 12133 + name = "webpack_merge___webpack_merge_5.7.3.tgz"; 12134 path = fetchurl { 12135 + name = "webpack_merge___webpack_merge_5.7.3.tgz"; 12136 + url = "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.7.3.tgz"; 12137 + sha1 = "2a0754e1877a25a8bbab3d2475ca70a052708213"; 12138 }; 12139 } 12140 { ··· 12146 }; 12147 } 12148 { 12149 + name = "webpack___webpack_4.46.0.tgz"; 12150 path = fetchurl { 12151 + name = "webpack___webpack_4.46.0.tgz"; 12152 + url = "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz"; 12153 + sha1 = "bf9b4404ea20a073605e0a011d188d77cb6ad542"; 12154 }; 12155 } 12156 { 12157 + name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz"; 12158 path = fetchurl { 12159 + name = "which_boxed_primitive___which_boxed_primitive_1.0.2.tgz"; 12160 + url = "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz"; 12161 + sha1 = "13757bc89b209b049fe5d86430e21cf40a89a8e6"; 12162 }; 12163 } 12164 { 12165 + name = "which_collection___which_collection_1.0.1.tgz"; 12166 path = fetchurl { 12167 + name = "which_collection___which_collection_1.0.1.tgz"; 12168 + url = "https://registry.yarnpkg.com/which-collection/-/which-collection-1.0.1.tgz"; 12169 + sha1 = "70eab71ebbbd2aefaf32f917082fc62cdcb70906"; 12170 }; 12171 } 12172 { 12173 + name = "which_typed_array___which_typed_array_1.1.4.tgz"; 12174 path = fetchurl { 12175 + name = "which_typed_array___which_typed_array_1.1.4.tgz"; 12176 + url = "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.4.tgz"; 12177 + sha1 = "8fcb7d3ee5adf2d771066fba7cf37e32fe8711ff"; 12178 }; 12179 } 12180 { ··· 12186 }; 12187 } 12188 { 12189 + name = "which___which_2.0.2.tgz"; 12190 + path = fetchurl { 12191 + name = "which___which_2.0.2.tgz"; 12192 + url = "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz"; 12193 + sha1 = "7c6a8dd0a636a0327e10b59c9286eee93f3f51b1"; 12194 + }; 12195 + } 12196 + { 12197 name = "wide_align___wide_align_1.1.3.tgz"; 12198 path = fetchurl { 12199 name = "wide_align___wide_align_1.1.3.tgz"; 12200 url = "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz"; 12201 sha1 = "ae074e6bdc0c14a431e804e624549c633b000457"; 12202 + }; 12203 + } 12204 + { 12205 + name = "wildcard___wildcard_2.0.0.tgz"; 12206 + path = fetchurl { 12207 + name = "wildcard___wildcard_2.0.0.tgz"; 12208 + url = "https://registry.yarnpkg.com/wildcard/-/wildcard-2.0.0.tgz"; 12209 + sha1 = "a77d20e5200c6faaac979e4b3aadc7b3dd7f8fec"; 12210 }; 12211 } 12212 { ··· 12258 }; 12259 } 12260 { 12261 + name = "workerpool___workerpool_6.1.0.tgz"; 12262 + path = fetchurl { 12263 + name = "workerpool___workerpool_6.1.0.tgz"; 12264 + url = "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz"; 12265 + sha1 = "a8e038b4c94569596852de7a8ea4228eefdeb37b"; 12266 + }; 12267 + } 12268 + { 12269 + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; 12270 path = fetchurl { 12271 + name = "wrap_ansi___wrap_ansi_7.0.0.tgz"; 12272 + url = "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz"; 12273 + sha1 = "67e145cff510a6a6984bdf1152911d69d2eb9e43"; 12274 }; 12275 } 12276 { ··· 12290 }; 12291 } 12292 { 12293 + name = "ws___ws_7.4.5.tgz"; 12294 path = fetchurl { 12295 + name = "ws___ws_7.4.5.tgz"; 12296 + url = "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz"; 12297 + sha1 = "a484dd851e9beb6fdb420027e3885e8ce48986c1"; 12298 }; 12299 } 12300 { ··· 12306 }; 12307 } 12308 { 12309 + name = "xml_crypto___xml_crypto_2.1.2.tgz"; 12310 path = fetchurl { 12311 + name = "xml_crypto___xml_crypto_2.1.2.tgz"; 12312 + url = "https://registry.yarnpkg.com/xml-crypto/-/xml-crypto-2.1.2.tgz"; 12313 + sha1 = "501506d42e466f6cd908c5a03182217231b4e4b8"; 12314 }; 12315 } 12316 { 12317 + name = "xml_encryption___xml_encryption_1.2.4.tgz"; 12318 path = fetchurl { 12319 + name = "xml_encryption___xml_encryption_1.2.4.tgz"; 12320 + url = "https://registry.yarnpkg.com/xml-encryption/-/xml-encryption-1.2.4.tgz"; 12321 + sha1 = "767d13f9ff2f979ff5657b93bd72aa729d34b66c"; 12322 }; 12323 } 12324 { ··· 12354 }; 12355 } 12356 { 12357 + name = "xmlbuilder___xmlbuilder_15.1.1.tgz"; 12358 path = fetchurl { 12359 + name = "xmlbuilder___xmlbuilder_15.1.1.tgz"; 12360 + url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-15.1.1.tgz"; 12361 + sha1 = "9dcdce49eea66d8d10b42cae94a79c3c8d0c2ec5"; 12362 }; 12363 } 12364 { ··· 12370 }; 12371 } 12372 { 12373 + name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; 12374 path = fetchurl { 12375 + name = "xmlbuilder___xmlbuilder_11.0.1.tgz"; 12376 + url = "https://registry.yarnpkg.com/xmlbuilder/-/xmlbuilder-11.0.1.tgz"; 12377 + sha1 = "be9bae1c8a046e76b31127726347d0ad7002beb3"; 12378 }; 12379 } 12380 { ··· 12386 }; 12387 } 12388 { 12389 + name = "xmldom___xmldom_0.5.0.tgz"; 12390 path = fetchurl { 12391 + name = "xmldom___xmldom_0.5.0.tgz"; 12392 + url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz"; 12393 + sha1 = "193cb96b84aa3486127ea6272c4596354cb4962e"; 12394 + }; 12395 + } 12396 + { 12397 + name = "xmldom___xmldom_0.6.0.tgz"; 12398 + path = fetchurl { 12399 + name = "xmldom___xmldom_0.6.0.tgz"; 12400 + url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.6.0.tgz"; 12401 + sha1 = "43a96ecb8beece991cef382c08397d82d4d0c46f"; 12402 }; 12403 } 12404 { ··· 12426 }; 12427 } 12428 { 12429 + name = "xpath___xpath_0.0.32.tgz"; 12430 path = fetchurl { 12431 + name = "xpath___xpath_0.0.32.tgz"; 12432 + url = "https://registry.yarnpkg.com/xpath/-/xpath-0.0.32.tgz"; 12433 + sha1 = "1b73d3351af736e17ec078d6da4b8175405c48af"; 12434 }; 12435 } 12436 { ··· 12458 }; 12459 } 12460 { 12461 + name = "y18n___y18n_4.0.3.tgz"; 12462 path = fetchurl { 12463 + name = "y18n___y18n_4.0.3.tgz"; 12464 + url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz"; 12465 + sha1 = "b5f259c82cd6e336921efd7bfd8bf560de9eeedf"; 12466 + }; 12467 + } 12468 + { 12469 + name = "y18n___y18n_5.0.8.tgz"; 12470 + path = fetchurl { 12471 + name = "y18n___y18n_5.0.8.tgz"; 12472 + url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz"; 12473 + sha1 = "7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"; 12474 }; 12475 } 12476 { ··· 12498 }; 12499 } 12500 { 12501 + name = "yargs_parser___yargs_parser_20.2.4.tgz"; 12502 path = fetchurl { 12503 + name = "yargs_parser___yargs_parser_20.2.4.tgz"; 12504 + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz"; 12505 + sha1 = "b42890f14566796f85ae8e3a25290d205f154a54"; 12506 }; 12507 } 12508 { 12509 + name = "yargs_parser___yargs_parser_20.2.7.tgz"; 12510 path = fetchurl { 12511 + name = "yargs_parser___yargs_parser_20.2.7.tgz"; 12512 + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz"; 12513 + sha1 = "61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"; 12514 + }; 12515 + } 12516 + { 12517 + name = "yargs_unparser___yargs_unparser_2.0.0.tgz"; 12518 + path = fetchurl { 12519 + name = "yargs_unparser___yargs_unparser_2.0.0.tgz"; 12520 + url = "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz"; 12521 + sha1 = "f131f9226911ae5d9ad38c432fe809366c2325eb"; 12522 + }; 12523 + } 12524 + { 12525 + name = "yargs___yargs_16.2.0.tgz"; 12526 + path = fetchurl { 12527 + name = "yargs___yargs_16.2.0.tgz"; 12528 + url = "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz"; 12529 + sha1 = "1c82bf0f6b6a66eafce7ef30e376f49a12477f66"; 12530 }; 12531 } 12532 { ··· 12546 }; 12547 } 12548 { 12549 + name = "zip_stream___zip_stream_4.1.0.tgz"; 12550 path = fetchurl { 12551 + name = "zip_stream___zip_stream_4.1.0.tgz"; 12552 + url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz"; 12553 + sha1 = "51dd326571544e36aa3f756430b313576dc8fc79"; 12554 + }; 12555 + } 12556 + { 12557 + name = "zwitch___zwitch_1.0.5.tgz"; 12558 + path = fetchurl { 12559 + name = "zwitch___zwitch_1.0.5.tgz"; 12560 + url = "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz"; 12561 + sha1 = "d11d7381ffed16b742f6af7b3f223d5cd9fe9920"; 12562 }; 12563 } 12564 ];
+57 -56
pkgs/test/texlive/default.nix
··· 1 - { runCommandNoCC, fetchurl, file, texlive, writeShellScript }: 2 3 { 4 chktex = runCommandNoCC "texlive-test-chktex" { ··· 16 grep "One warning printed" "$out" 17 ''; 18 19 - # https://github.com/NixOS/nixpkgs/issues/75605 20 - dvipng.basic = runCommandNoCC "texlive-test-dvipng-basic" { 21 - nativeBuildInputs = [ file texlive.combined.scheme-medium ]; 22 - input = fetchurl { 23 - name = "test_dvipng.tex"; 24 - url = "http://git.savannah.nongnu.org/cgit/dvipng.git/plain/test_dvipng.tex?id=b872753590a18605260078f56cbd6f28d39dc035"; 25 - sha256 = "1pjpf1jvwj2pv5crzdgcrzvbmn7kfmgxa39pcvskl4pa0c9hl88n"; 26 - }; 27 - } '' 28 - cp "$input" ./document.tex 29 30 - latex document.tex 31 - dvipng -T tight -strict -picky document.dvi 32 - for f in document*.png; do 33 - file "$f" | tee output 34 - grep PNG output 35 - done 36 37 - mkdir "$out" 38 - mv document*.png "$out"/ 39 - ''; 40 - 41 - # test dvipng's limited capability to render postscript specials via GS 42 - dvipng.ghostscript = runCommandNoCC "texlive-test-ghostscript" { 43 - nativeBuildInputs = [ file (with texlive; combine { inherit scheme-small dvipng; }) ]; 44 - input = builtins.toFile "postscript-sample.tex" '' 45 - \documentclass{minimal} 46 - \begin{document} 47 - Ni 48 - \special{ps: 49 - newpath 50 - 0 0 moveto 51 - 7 7 rlineto 52 - 0 7 moveto 53 - 7 -7 rlineto 54 - stroke 55 - showpage 56 - } 57 - \end{document} 58 ''; 59 - gs_trap = writeShellScript "gs_trap.sh" '' 60 - exit 1 61 - ''; 62 - } '' 63 - cp "$gs_trap" ./gs 64 - export PATH=$PWD:$PATH 65 - # check that the trap works 66 - gs && exit 1 67 68 - cp "$input" ./document.tex 69 70 - latex document.tex 71 - dvipng -T 1in,1in -strict -picky document.dvi 72 - for f in document*.png; do 73 - file "$f" | tee output 74 - grep PNG output 75 - done 76 77 - mkdir "$out" 78 - mv document*.png "$out"/ 79 - ''; 80 81 82 # https://github.com/NixOS/nixpkgs/issues/75070 83 dvisvgm = runCommandNoCC "texlive-test-dvisvgm" {
··· 1 + { lib, runCommandNoCC, fetchurl, file, texlive, writeShellScript }: 2 3 { 4 chktex = runCommandNoCC "texlive-test-chktex" { ··· 16 grep "One warning printed" "$out" 17 ''; 18 19 + dvipng = lib.recurseIntoAttrs { 20 + # https://github.com/NixOS/nixpkgs/issues/75605 21 + basic = runCommandNoCC "texlive-test-dvipng-basic" { 22 + nativeBuildInputs = [ file texlive.combined.scheme-medium ]; 23 + input = fetchurl { 24 + name = "test_dvipng.tex"; 25 + url = "http://git.savannah.nongnu.org/cgit/dvipng.git/plain/test_dvipng.tex?id=b872753590a18605260078f56cbd6f28d39dc035"; 26 + sha256 = "1pjpf1jvwj2pv5crzdgcrzvbmn7kfmgxa39pcvskl4pa0c9hl88n"; 27 + }; 28 + } '' 29 + cp "$input" ./document.tex 30 31 + latex document.tex 32 + dvipng -T tight -strict -picky document.dvi 33 + for f in document*.png; do 34 + file "$f" | tee output 35 + grep PNG output 36 + done 37 38 + mkdir "$out" 39 + mv document*.png "$out"/ 40 ''; 41 42 + # test dvipng's limited capability to render postscript specials via GS 43 + ghostscript = runCommandNoCC "texlive-test-ghostscript" { 44 + nativeBuildInputs = [ file (with texlive; combine { inherit scheme-small dvipng; }) ]; 45 + input = builtins.toFile "postscript-sample.tex" '' 46 + \documentclass{minimal} 47 + \begin{document} 48 + Ni 49 + \special{ps: 50 + newpath 51 + 0 0 moveto 52 + 7 7 rlineto 53 + 0 7 moveto 54 + 7 -7 rlineto 55 + stroke 56 + showpage 57 + } 58 + \end{document} 59 + ''; 60 + gs_trap = writeShellScript "gs_trap.sh" '' 61 + exit 1 62 + ''; 63 + } '' 64 + cp "$gs_trap" ./gs 65 + export PATH=$PWD:$PATH 66 + # check that the trap works 67 + gs && exit 1 68 69 + cp "$input" ./document.tex 70 71 + latex document.tex 72 + dvipng -T 1in,1in -strict -picky document.dvi 73 + for f in document*.png; do 74 + file "$f" | tee output 75 + grep PNG output 76 + done 77 78 + mkdir "$out" 79 + mv document*.png "$out"/ 80 + ''; 81 + }; 82 83 # https://github.com/NixOS/nixpkgs/issues/75070 84 dvisvgm = runCommandNoCC "texlive-test-dvisvgm" {
+2 -2
pkgs/tools/misc/entr/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "entr"; 5 - version = "4.8"; 6 7 src = fetchurl { 8 url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz"; 9 - sha256 = "1bi5fhr93n72pkap4mqsjd1pwnqjf6czg359c5xwczavfk6mamgh"; 10 }; 11 12 postPatch = ''
··· 2 3 stdenv.mkDerivation rec { 4 pname = "entr"; 5 + version = "4.9"; 6 7 src = fetchurl { 8 url = "https://eradman.com/entrproject/code/${pname}-${version}.tar.gz"; 9 + sha256 = "sha256-4lak0vvkb2EyRggzukR+ZdfzW6nQsmXnxBUDl8xEBaI="; 10 }; 11 12 postPatch = ''
+1 -1
pkgs/tools/misc/esphome/default.nix
··· 49 description = "Make creating custom firmwares for ESP32/ESP8266 super easy"; 50 homepage = "https://esphome.io/"; 51 license = licenses.mit; 52 - maintainers = with maintainers; [ dotlambda globin elseym ]; 53 }; 54 }
··· 49 description = "Make creating custom firmwares for ESP32/ESP8266 super easy"; 50 homepage = "https://esphome.io/"; 51 license = licenses.mit; 52 + maintainers = with maintainers; [ globin elseym hexa ]; 53 }; 54 }
-1
pkgs/top-level/aliases.nix
··· 800 torch-repl = throw "torch-repl has been removed, as the upstream project has been abandoned"; # added 2020-03-28 801 torchPackages = throw "torchPackages has been removed, as the upstream project has been abandoned"; # added 2020-03-28 802 trang = jing-trang; # added 2018-04-25 803 - transcribe = throw "transcribe has been removed after being marked a broken for over a year"; # added 2020-09-16 804 transmission_gtk = transmission-gtk; # added 2018-01-06 805 transmission_remote_gtk = transmission-remote-gtk; # added 2018-01-06 806 transmission-remote-cli = "transmission-remote-cli has been removed, as the upstream project has been abandoned. Please use tremc instead"; # added 2020-10-14
··· 800 torch-repl = throw "torch-repl has been removed, as the upstream project has been abandoned"; # added 2020-03-28 801 torchPackages = throw "torchPackages has been removed, as the upstream project has been abandoned"; # added 2020-03-28 802 trang = jing-trang; # added 2018-04-25 803 transmission_gtk = transmission-gtk; # added 2018-01-06 804 transmission_remote_gtk = transmission-remote-gtk; # added 2018-01-06 805 transmission-remote-cli = "transmission-remote-cli has been removed, as the upstream project has been abandoned. Please use tremc instead"; # added 2020-10-14
+7 -1
pkgs/top-level/all-packages.nix
··· 2999 3000 remarkable-mouse = python3Packages.callPackage ../applications/misc/remarkable/remarkable-mouse { }; 3001 3002 ryujinx = callPackage ../misc/emulators/ryujinx { }; 3003 3004 scour = with python3Packages; toPythonApplication scour; ··· 13495 sconsPackages = dontRecurseIntoAttrs (callPackage ../development/tools/build-managers/scons { }); 13496 scons = sconsPackages.scons_latest; 13497 13498 - mill = callPackage ../development/tools/build-managers/mill { }; 13499 13500 sbt = callPackage ../development/tools/build-managers/sbt { }; 13501 sbt-with-scala-native = callPackage ../development/tools/build-managers/sbt/scala-native.nix { }; ··· 26465 trustedqsl = tqsl; # Alias added 2019-02-10 26466 26467 transcode = callPackage ../applications/audio/transcode { }; 26468 26469 transmission = callPackage ../applications/networking/p2p/transmission { }; 26470 libtransmission = transmission.override {
··· 2999 3000 remarkable-mouse = python3Packages.callPackage ../applications/misc/remarkable/remarkable-mouse { }; 3001 3002 + restream = callPackage ../applications/misc/remarkable/restream { }; 3003 + 3004 ryujinx = callPackage ../misc/emulators/ryujinx { }; 3005 3006 scour = with python3Packages; toPythonApplication scour; ··· 13497 sconsPackages = dontRecurseIntoAttrs (callPackage ../development/tools/build-managers/scons { }); 13498 scons = sconsPackages.scons_latest; 13499 13500 + mill = callPackage ../development/tools/build-managers/mill { 13501 + jre = jre8; 13502 + }; 13503 13504 sbt = callPackage ../development/tools/build-managers/sbt { }; 13505 sbt-with-scala-native = callPackage ../development/tools/build-managers/sbt/scala-native.nix { }; ··· 26469 trustedqsl = tqsl; # Alias added 2019-02-10 26470 26471 transcode = callPackage ../applications/audio/transcode { }; 26472 + 26473 + transcribe = callPackage ../applications/audio/transcribe { }; 26474 26475 transmission = callPackage ../applications/networking/p2p/transmission { }; 26476 libtransmission = transmission.override {