lol

Merge master into staging-next

authored by

github-actions[bot] and committed by
GitHub
3bf92ca4 bc845e51

+1865 -3425
+1
nixos/modules/services/monitoring/prometheus/exporters.nix
··· 43 43 "nginx" 44 44 "nginxlog" 45 45 "node" 46 + "openldap" 46 47 "openvpn" 47 48 "postfix" 48 49 "postgres"
+67
nixos/modules/services/monitoring/prometheus/exporters/openldap.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.prometheus.exporters.openldap; 7 + in { 8 + port = 9330; 9 + extraOpts = { 10 + ldapCredentialFile = mkOption { 11 + type = types.path; 12 + example = "/run/keys/ldap_pass"; 13 + description = '' 14 + Environment file to contain the credentials to authenticate against 15 + <package>openldap</package>. 16 + 17 + The file should look like this: 18 + <programlisting> 19 + --- 20 + ldapUser: "cn=monitoring,cn=Monitor" 21 + ldapPass: "secret" 22 + </programlisting> 23 + ''; 24 + }; 25 + protocol = mkOption { 26 + default = "tcp"; 27 + example = "udp"; 28 + type = types.str; 29 + description = '' 30 + Which protocol to use to connect against <package>openldap</package>. 31 + ''; 32 + }; 33 + ldapAddr = mkOption { 34 + default = "localhost:389"; 35 + type = types.str; 36 + description = '' 37 + Address of the <package>openldap</package>-instance. 38 + ''; 39 + }; 40 + metricsPath = mkOption { 41 + default = "/metrics"; 42 + type = types.str; 43 + description = '' 44 + URL path where metrics should be exposed. 45 + ''; 46 + }; 47 + interval = mkOption { 48 + default = "30s"; 49 + type = types.str; 50 + example = "1m"; 51 + description = '' 52 + Scrape interval of the exporter. 53 + ''; 54 + }; 55 + }; 56 + serviceOpts.serviceConfig = { 57 + ExecStart = '' 58 + ${pkgs.prometheus-openldap-exporter}/bin/openldap_exporter \ 59 + --promAddr ${cfg.listenAddress}:${toString cfg.port} \ 60 + --metrPath ${cfg.metricsPath} \ 61 + --ldapNet ${cfg.protocol} \ 62 + --interval ${cfg.interval} \ 63 + --config ${cfg.ldapCredentialFile} \ 64 + ${concatStringsSep " \\\n " cfg.extraFlags} 65 + ''; 66 + }; 67 + }
+60
nixos/tests/prometheus-exporters.nix
··· 603 603 ''; 604 604 }; 605 605 606 + openldap = { 607 + exporterConfig = { 608 + enable = true; 609 + ldapCredentialFile = "${pkgs.writeText "exporter.yml" '' 610 + ldapUser: "cn=root,dc=example" 611 + ldapPass: "notapassword" 612 + ''}"; 613 + }; 614 + metricProvider = { 615 + services.openldap = { 616 + enable = true; 617 + settings.children = { 618 + "cn=schema".includes = [ 619 + "${pkgs.openldap}/etc/schema/core.ldif" 620 + "${pkgs.openldap}/etc/schema/cosine.ldif" 621 + "${pkgs.openldap}/etc/schema/inetorgperson.ldif" 622 + "${pkgs.openldap}/etc/schema/nis.ldif" 623 + ]; 624 + "olcDatabase={1}mdb" = { 625 + attrs = { 626 + objectClass = [ "olcDatabaseConfig" "olcMdbConfig" ]; 627 + olcDatabase = "{1}mdb"; 628 + olcDbDirectory = "/var/db/openldap"; 629 + olcSuffix = "dc=example"; 630 + olcRootDN = { 631 + # cn=root,dc=example 632 + base64 = "Y249cm9vdCxkYz1leGFtcGxl"; 633 + }; 634 + olcRootPW = { 635 + path = "${pkgs.writeText "rootpw" "notapassword"}"; 636 + }; 637 + }; 638 + }; 639 + "olcDatabase={2}monitor".attrs = { 640 + objectClass = [ "olcDatabaseConfig" ]; 641 + olcDatabase = "{2}monitor"; 642 + olcAccess = [ "to dn.subtree=cn=monitor by users read" ]; 643 + }; 644 + }; 645 + declarativeContents."dc=example" = '' 646 + dn: dc=example 647 + objectClass: domain 648 + dc: example 649 + 650 + dn: ou=users,dc=example 651 + objectClass: organizationalUnit 652 + ou: users 653 + ''; 654 + }; 655 + }; 656 + exporterTest = '' 657 + wait_for_unit("prometheus-openldap-exporter.service") 658 + wait_for_open_port(389) 659 + wait_for_open_port(9330) 660 + wait_until_succeeds( 661 + "curl -sSf http://localhost:9330/metrics | grep -q 'openldap_scrape{result=\"ok\"} 1'" 662 + ) 663 + ''; 664 + }; 665 + 606 666 openvpn = { 607 667 exporterConfig = { 608 668 enable = true;
+3 -3
pkgs/applications/audio/gtklick/default.nix
··· 1 - { lib, fetchurl, pythonPackages, gettext, klick}: 1 + { lib, fetchurl, python2Packages, gettext, klick}: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 pname = "gtklick"; 5 5 version = "0.6.4"; 6 6 ··· 9 9 sha256 = "7799d884126ccc818678aed79d58057f8cf3528e9f1be771c3fa5b694d9d0137"; 10 10 }; 11 11 12 - pythonPath = with pythonPackages; [ 12 + pythonPath = with python2Packages; [ 13 13 pyliblo 14 14 pyGtkGlade 15 15 ];
+10 -13
pkgs/applications/audio/ingen/default.nix
··· 1 1 { lib, stdenv, fetchgit, boost, ganv, glibmm, gtkmm2, libjack2, lilv 2 - , lv2, makeWrapper, pkg-config, python, raul, rdflib, serd, sord, sratom 2 + , lv2, makeWrapper, pkg-config, python3, raul, serd, sord, sratom 3 3 , wafHook 4 4 , suil 5 5 }: ··· 16 16 deepClone = true; 17 17 }; 18 18 19 - nativeBuildInputs = [ pkg-config wafHook ]; 19 + nativeBuildInputs = [ pkg-config wafHook python3 python3.pkgs.wrapPython ]; 20 20 buildInputs = [ 21 - boost ganv glibmm gtkmm2 libjack2 lilv lv2 makeWrapper 22 - python raul serd sord sratom suil 21 + boost ganv glibmm gtkmm2 libjack2 lilv lv2 22 + python3 raul serd sord sratom suil 23 23 ]; 24 24 25 - preConfigure = '' 26 - sed -e "s@{PYTHONDIR}/'@out/'@" -i wscript 27 - ''; 25 + strictDeps = true; 28 26 29 - propagatedBuildInputs = [ rdflib ]; 27 + pythonPath = [ 28 + python3 29 + python3.pkgs.rdflib 30 + ]; 30 31 31 32 postInstall = '' 32 - for program in ingenams ingenish 33 - do 34 - wrapProgram $out/bin/$program \ 35 - --prefix PYTHONPATH : $out/${python.sitePackages}:$PYTHONPATH 36 - done 33 + wrapPythonProgramsIn "$out/bin" "$out $pythonPath" 37 34 ''; 38 35 39 36 meta = with lib; {
+2 -2
pkgs/applications/audio/jalv/default.nix
··· 1 - { lib, stdenv, fetchurl, gtk2, libjack2, lilv, lv2, pkg-config, python 1 + { lib, stdenv, fetchurl, gtk2, libjack2, lilv, lv2, pkg-config, python3 2 2 , serd, sord , sratom, suil, wafHook }: 3 3 4 4 stdenv.mkDerivation rec { ··· 12 12 13 13 nativeBuildInputs = [ pkg-config wafHook ]; 14 14 buildInputs = [ 15 - gtk2 libjack2 lilv lv2 python serd sord sratom suil 15 + gtk2 libjack2 lilv lv2 python3 serd sord sratom suil 16 16 ]; 17 17 18 18 meta = with lib; {
+2 -2
pkgs/applications/audio/lastfmsubmitd/default.nix
··· 1 - { lib, fetchurl, pythonPackages }: 1 + { lib, fetchurl, python2Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 pname = "lastfmsubmitd"; 5 5 version = "1.0.6"; 6 6
+1 -2
pkgs/applications/editors/jetbrains/default.nix
··· 1 1 { lib, stdenv, callPackage, fetchurl 2 - , python 3 2 , jdk, cmake, libxml2, zlib, python3, ncurses5 4 3 , dotnet-sdk_3 5 4 , vmopts ? null ··· 199 198 platforms = platforms.linux; 200 199 }; 201 200 }).override { 202 - propagatedUserEnvPkgs = [ python ]; 201 + propagatedUserEnvPkgs = [ python3 ]; 203 202 }; 204 203 205 204 buildRider = { name, version, src, license, description, wmClass, ... }:
+2 -2
pkgs/applications/kde/kcachegrind.nix
··· 1 1 { 2 2 mkDerivation, lib, 3 3 extra-cmake-modules, kdoctools, 4 - karchive, ki18n, kio, perl, python, php, qttools 4 + karchive, ki18n, kio, perl, python3, php, qttools 5 5 , kdbusaddons 6 6 }: 7 7 ··· 12 12 maintainers = with lib.maintainers; [ orivej ]; 13 13 }; 14 14 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 15 - buildInputs = [ karchive ki18n kio perl python php qttools kdbusaddons ]; 15 + buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ]; 16 16 }
+2 -2
pkgs/applications/kde/kdebugsettings.nix
··· 3 3 extra-cmake-modules, kdoctools, 4 4 gettext, 5 5 kcoreaddons, kconfig, kdbusaddons, kwidgetsaddons, kitemviews, kcompletion, 6 - qtbase, python 6 + qtbase, python3 7 7 }: 8 8 9 9 mkDerivation { ··· 15 15 }; 16 16 nativeBuildInputs = [ extra-cmake-modules kdoctools ]; 17 17 buildInputs = [ 18 - gettext kcoreaddons kconfig kdbusaddons kwidgetsaddons kitemviews kcompletion python 18 + gettext kcoreaddons kconfig kdbusaddons kwidgetsaddons kitemviews kcompletion python3 19 19 ]; 20 20 propagatedUserEnvPkgs = [ ]; 21 21 }
+2 -2
pkgs/applications/kde/minuet.nix
··· 1 1 { mkDerivation, qtbase 2 - , lib, extra-cmake-modules, gettext, python 2 + , lib, extra-cmake-modules, gettext, python3 3 3 , drumstick, fluidsynth 4 4 , kcoreaddons, kcrash, kdoctools 5 5 , qtquickcontrols2, qtsvg, qttools, qtdeclarative ··· 13 13 broken = lib.versionOlder qtbase.version "5.14"; 14 14 }; 15 15 16 - nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python qtdeclarative ]; 16 + nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 qtdeclarative ]; 17 17 18 18 propagatedBuildInputs = [ 19 19 drumstick fluidsynth
+12 -11
pkgs/applications/misc/blender/darwin.patch
··· 1 - diff a/build_files/cmake/platform/platform_apple.cmake b/build_files/cmake/platform/platform_apple.cmake 1 + diff --git a/build_files/cmake/platform/platform_apple.cmake b/build_files/cmake/platform/platform_apple.cmake 2 + index 31da529..90308aa 100644 2 3 --- a/build_files/cmake/platform/platform_apple.cmake 3 4 +++ b/build_files/cmake/platform/platform_apple.cmake 4 - @@ -80,7 +80,6 @@ else() 5 + @@ -77,7 +77,6 @@ else() 5 6 message(STATUS "Using pre-compiled LIBDIR: ${LIBDIR}") 6 7 endif() 7 8 if(NOT EXISTS "${LIBDIR}/") 8 9 - message(FATAL_ERROR "Mac OSX requires pre-compiled libs at: '${LIBDIR}'") 9 10 endif() 10 11 11 - # ------------------------------------------------------------------------- 12 - @@ -112,10 +111,6 @@ if(WITH_CODEC_SNDFILE) 12 + # Prefer lib directory paths 13 + @@ -113,10 +112,6 @@ if(WITH_CODEC_SNDFILE) 13 14 find_library(_sndfile_VORBIS_LIBRARY NAMES vorbis HINTS ${LIBDIR}/ffmpeg/lib) 14 15 find_library(_sndfile_VORBISENC_LIBRARY NAMES vorbisenc HINTS ${LIBDIR}/ffmpeg/lib) 15 16 list(APPEND LIBSNDFILE_LIBRARIES ··· 20 21 ) 21 22 22 23 print_found_status("SndFile libraries" "${LIBSNDFILE_LIBRARIES}") 23 - @@ -132,7 +127,7 @@ if(WITH_PYTHON) 24 + @@ -133,7 +128,7 @@ if(WITH_PYTHON) 24 25 # normally cached but not since we include them with blender 25 26 set(PYTHON_INCLUDE_DIR "${LIBDIR}/python/include/python${PYTHON_VERSION}m") 26 27 set(PYTHON_EXECUTABLE "${LIBDIR}/python/bin/python${PYTHON_VERSION}m") ··· 29 30 set(PYTHON_LIBPATH "${LIBDIR}/python/lib/python${PYTHON_VERSION}") 30 31 # set(PYTHON_LINKFLAGS "-u _PyMac_Error") # won't build with this enabled 31 32 else() 32 - @@ -173,9 +168,7 @@ endif() 33 + @@ -174,9 +169,7 @@ endif() 33 34 if(WITH_CODEC_FFMPEG) 34 35 set(FFMPEG_FIND_COMPONENTS 35 36 avcodec avdevice avformat avutil ··· 40 41 find_package(FFmpeg) 41 42 endif() 42 43 43 - @@ -266,7 +259,6 @@ if(WITH_BOOST) 44 + @@ -267,7 +260,6 @@ if(WITH_BOOST) 44 45 endif() 45 46 46 47 if(WITH_INTERNATIONAL OR WITH_CODEC_FFMPEG) 47 - - set(PLATFORM_LINKFLAGS "${PLATFORM_LINKFLAGS} -liconv") # boost_locale and ffmpeg needs it ! 48 + - string(APPEND PLATFORM_LINKFLAGS " -liconv") # boost_locale and ffmpeg needs it ! 48 49 endif() 49 50 50 - if(WITH_OPENIMAGEIO) 51 - @@ -439,7 +431,7 @@ else() 51 + if(WITH_PUGIXML) 52 + @@ -451,7 +443,7 @@ else() 52 53 set(CMAKE_CXX_FLAGS_RELEASE "-O2 -mdynamic-no-pic") 53 54 endif() 54 55 55 56 -if(${XCODE_VERSION} VERSION_EQUAL 5 OR ${XCODE_VERSION} VERSION_GREATER 5) 56 57 +if(FALSE) 57 58 # Xcode 5 is always using CLANG, which has too low template depth of 128 for libmv 58 - set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ftemplate-depth=1024") 59 + string(APPEND CMAKE_CXX_FLAGS " -ftemplate-depth=1024") 59 60 endif()
+3 -3
pkgs/applications/misc/klayout/default.nix
··· 1 1 { lib, mkDerivation, fetchFromGitHub, fetchpatch 2 - , python, ruby, qtbase, qtmultimedia, qttools, qtxmlpatterns 2 + , python3, ruby, qtbase, qtmultimedia, qttools, qtxmlpatterns 3 3 , which, perl, makeWrapper 4 4 }: 5 5 ··· 21 21 22 22 nativeBuildInputs = [ 23 23 which 24 + python3 25 + ruby 24 26 ]; 25 27 26 28 buildInputs = [ 27 - python 28 - ruby 29 29 qtbase 30 30 qtmultimedia 31 31 qttools
+3 -3
pkgs/applications/networking/cluster/fluxctl/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "fluxctl"; 5 - version = "1.22.0"; 5 + version = "1.22.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "weaveworks"; 9 9 repo = "flux"; 10 10 rev = version; 11 - sha256 = "sha256-7uS8704YZ7lQTSSnbVvc6T5iadl02TeVpwVPf2uS9L4="; 11 + sha256 = "sha256-SaDO3a50CLhgLafCdgKEfHpuHdIweSy5L/TUgEUv5CM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-oqfJaQA8ybh0UNWYJ2ukoWkwdgORwvXzRCquGstwA4M="; 14 + vendorSha256 = "sha256-4uSw/9lI/rdDqy78jNC9eHYW/v/sMFb+sQvwYG6GZks="; 15 15 16 16 nativeBuildInputs = [ installShellFiles ]; 17 17
+3 -3
pkgs/applications/networking/cluster/kubeval/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "kubeval"; 5 - version = "0.15.0"; 5 + version = "0.16.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "instrumenta"; 9 9 repo = "kubeval"; 10 10 rev = version; 11 - sha256 = "05li0qv4q7fy2lr50r6c1r8dhx00jb1g01qmgc72a9zqp378yiq0"; 11 + sha256 = "sha256-c5UESyWK1rfnD0etOuIroBUSqZQuu57jio7/ArItMP0="; 12 12 }; 13 13 14 - vendorSha256 = "1kpwvi84i3h1yjprd6m6hn8l9j235931871y3qk9cl0g8q0hv9ja"; 14 + vendorSha256 = "sha256-SqYNAUYPUJYmHj4cFEYqQ8hEkYWmmpav9AGOSFDc/M4="; 15 15 16 16 doCheck = false; 17 17
+2 -2
pkgs/applications/science/logic/lean2/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, cmake, gmp, mpfr, python 1 + { lib, stdenv, fetchFromGitHub, cmake, gmp, mpfr, python2 2 2 , gperftools, ninja, makeWrapper }: 3 3 4 4 stdenv.mkDerivation { ··· 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake makeWrapper ninja ]; 16 - buildInputs = [ gmp mpfr python gperftools ]; 16 + buildInputs = [ gmp mpfr python2 gperftools ]; 17 17 18 18 preConfigure = '' 19 19 patchShebangs bin/leantags
+4 -2
pkgs/applications/science/logic/poly/default.nix
··· 1 - {lib, stdenv, fetchFromGitHub, gmp, cmake, python}: 1 + {lib, stdenv, fetchFromGitHub, gmp, cmake, python3}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libpoly"; ··· 14 14 15 15 nativeBuildInputs = [ cmake ]; 16 16 17 - buildInputs = [ gmp python ]; 17 + buildInputs = [ gmp python3 ]; 18 + 19 + strictDeps = true; 18 20 19 21 meta = with lib; { 20 22 homepage = "https://github.com/SRI-CSL/libpoly";
+4 -2
pkgs/applications/science/math/ginac/default.nix
··· 1 - { lib, stdenv, fetchurl, cln, pkg-config, readline, gmp, python }: 1 + { lib, stdenv, fetchurl, cln, pkg-config, readline, gmp, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "ginac-1.8.0"; ··· 12 12 13 13 buildInputs = [ readline ] ++ lib.optional stdenv.isDarwin gmp; 14 14 15 - nativeBuildInputs = [ pkg-config python ]; 15 + nativeBuildInputs = [ pkg-config python3 ]; 16 + 17 + strictDeps = true; 16 18 17 19 preConfigure = "patchShebangs ginsh"; 18 20
+4 -2
pkgs/applications/science/math/gurobi/default.nix
··· 1 - { stdenv, lib, fetchurl, autoPatchelfHook, python }: 1 + { stdenv, lib, fetchurl, autoPatchelfHook, python2 }: 2 2 3 3 let 4 4 majorVersion = "8.1"; ··· 14 14 sourceRoot = "gurobi${builtins.replaceStrings ["."] [""] version}/linux64"; 15 15 16 16 nativeBuildInputs = [ autoPatchelfHook ]; 17 - buildInputs = [ (python.withPackages (ps: [ ps.gurobipy ])) ]; 17 + buildInputs = [ (python2.withPackages (ps: [ ps.gurobipy ])) ]; 18 + 19 + strictDeps = true; 18 20 19 21 buildPhase = '' 20 22 cd src/build
+23 -5
pkgs/applications/terminal-emulators/foot/default.nix
··· 18 18 , pkg-config 19 19 , allowPgo ? true 20 20 , python3 # for PGO 21 + # for clang stdenv check 22 + , foot 23 + , llvmPackages 24 + , llvmPackages_latest 21 25 }: 22 26 23 27 let 24 - version = "1.7.0"; 28 + version = "1.7.1"; 25 29 26 30 # build stimuli file for PGO build and the script to generate it 27 31 # independently of the foot's build, so we can cache the result ··· 67 71 68 72 # https://codeberg.org/dnkl/foot/src/branch/master/INSTALL.md#performance-optimized-pgo 69 73 pgoCflags = { 70 - "clang" = "-O3 -Wno-ignored-optimization-argument -Wno-profile-instr-out-of-date -Wno-profile-instr-unprofiled"; 71 - "gcc" = "-O3 -Wno-missing-profile"; 74 + "clang" = "-O3 -Wno-ignored-optimization-argument"; 75 + "gcc" = "-O3"; 72 76 }."${compilerName}"; 73 77 74 78 # ar with lto support ··· 89 93 90 94 src = fetchzip { 91 95 url = "https://codeberg.org/dnkl/${pname}/archive/${version}.tar.gz"; 92 - sha256 = "0w07fw7y31g891335ji3fm783r4dsk5py82qp0zx6z3rfr07paby"; 96 + sha256 = "1x6nyhlp0zynnbdjx87c4ybfx6fyr0r53vypkfima56dwbfh98ka"; 93 97 }; 94 98 95 99 nativeBuildInputs = [ ··· 130 134 preBuild = lib.optionalString doPgo '' 131 135 meson configure -Db_pgo=generate 132 136 ninja 137 + # make sure there is _some_ profiling data on all binaries 138 + ./footclient --version 139 + ./foot --version 140 + # generate pgo data of wayland independent code 133 141 ./pgo ${stimuliFile} ${stimuliFile} ${stimuliFile} 134 142 meson configure -Db_pgo=use 135 - '' + lib.optionalString (doPgo && stdenv.cc.cc.pname == "clang") '' 143 + '' + lib.optionalString (doPgo && compilerName == "clang") '' 136 144 llvm-profdata merge default_*profraw --output=default.profdata 137 145 ''; 146 + 147 + passthru.tests = { 148 + clang-default-compilation = foot.override { 149 + inherit (llvmPackages) stdenv; 150 + }; 151 + 152 + clang-latest-compilation = foot.override { 153 + inherit (llvmPackages_latest) stdenv; 154 + }; 155 + }; 138 156 139 157 meta = with lib; { 140 158 homepage = "https://codeberg.org/dnkl/foot/";
+4 -4
pkgs/applications/version-management/git-and-tools/git-bz/default.nix
··· 1 1 { lib, stdenv, fetchgit 2 2 , asciidoc, docbook_xml_dtd_45, docbook_xsl, libxslt, makeWrapper, xmlto 3 - , pythonPackages }: 3 + , python2Packages }: 4 4 5 5 stdenv.mkDerivation { 6 6 pname = "git-bz"; ··· 16 16 asciidoc docbook_xml_dtd_45 docbook_xsl libxslt makeWrapper xmlto 17 17 ]; 18 18 buildInputs = [] 19 - ++ (with pythonPackages; [ python pysqlite ]); 19 + ++ (with python2Packages; [ python pysqlite ]); 20 20 21 21 postPatch = '' 22 22 patchShebangs configure ··· 27 27 28 28 postInstall = '' 29 29 wrapProgram $out/bin/git-bz \ 30 - --prefix PYTHONPATH : "$(toPythonPath "${pythonPackages.pycrypto}")" \ 31 - --prefix PYTHONPATH : "$(toPythonPath "${pythonPackages.pysqlite}")" 30 + --prefix PYTHONPATH : "$(toPythonPath "${python2Packages.pycrypto}")" \ 31 + --prefix PYTHONPATH : "$(toPythonPath "${python2Packages.pysqlite}")" 32 32 ''; 33 33 34 34 meta = with lib; {
+3 -3
pkgs/applications/version-management/git-crecord/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 1 + { lib, fetchFromGitHub, python2Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python2Packages.buildPythonApplication rec { 4 4 pname = "git-crecord"; 5 5 version = "20161216.0"; 6 6 ··· 11 11 sha256 = "0v3y90zi43myyi4k7q3892dcrbyi9dn2q6xgk12nw9db9zil269i"; 12 12 }; 13 13 14 - propagatedBuildInputs = with pythonPackages; [ docutils ]; 14 + propagatedBuildInputs = with python2Packages; [ docutils ]; 15 15 16 16 meta = { 17 17 homepage = "https://github.com/andrewshadura/git-crecord";
+6 -2
pkgs/applications/version-management/gitstats/default.nix
··· 1 - { lib, stdenv, fetchzip, perl, python, gnuplot, coreutils, gnugrep }: 1 + { lib, stdenv, fetchzip, perl, python2, gnuplot, coreutils, gnugrep }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gitstats"; ··· 11 11 name = "${pname}-${version}" + "-src"; 12 12 }; 13 13 14 - buildInputs = [ perl python ]; 14 + nativeBuildInputs = [ perl ]; 15 + 16 + buildInputs = [ python2 ]; 17 + 18 + strictDeps = true; 15 19 16 20 postPatch = '' 17 21 sed -e "s|gnuplot_cmd = .*|gnuplot_cmd = '${gnuplot}/bin/gnuplot'|" \
+2 -2
pkgs/desktops/plasma-5/discover.nix
··· 3 3 , extra-cmake-modules 4 4 , gettext 5 5 , kdoctools 6 - , python 6 + , python3 7 7 , appstream-qt 8 8 , discount 9 9 , flatpak ··· 34 34 mkDerivation { 35 35 name = "discover"; 36 36 meta.broken = lib.versionOlder qtbase.version "5.15.0"; 37 - nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python ]; 37 + nativeBuildInputs = [ extra-cmake-modules gettext kdoctools python3 ]; 38 38 buildInputs = [ 39 39 # discount is needed for libmarkdown 40 40 appstream-qt
+3 -3
pkgs/development/compilers/bluespec/default.nix
··· 27 27 ghcWithPackages = ghc.withPackages (g: (with g; [old-time regex-compat syb split ])); 28 28 in stdenv.mkDerivation rec { 29 29 pname = "bluespec"; 30 - version = "unstable-2021.02.14"; 30 + version = "unstable-2021.03.29"; 31 31 32 32 src = fetchFromGitHub { 33 33 owner = "B-Lang-org"; 34 34 repo = "bsc"; 35 - rev = "c085ecd807d85f31d102d8bec71f5c28dc96b31d"; 36 - sha256 = "0c86gwhrarw78cr9c9slb9vij6kcwx3x281kbqji96qqzs0dfb32"; 35 + rev = "00185f7960bd1bd5554a1167be9f37e1f18ac454"; 36 + sha256 = "1bcdhql4cla137d8xr8m2h21dyxv0jpjpalpr5mgj2jxqfsmkbrn"; 37 37 }; 38 38 39 39 enableParallelBuilding = true;
+5 -3
pkgs/development/compilers/intel-graphics-compiler/default.nix
··· 7 7 , flex 8 8 , llvmPackages_8 9 9 , opencl-clang 10 - , python 10 + , python3 11 11 , spirv-llvm-translator 12 12 13 13 , buildWithPatches ? true ··· 33 33 sha256 = "1jp3c67ppl1x4pazr5nzy52615cpx0kyckaridhc0fsmrkgilyxq"; 34 34 }; 35 35 36 - nativeBuildInputs = [ clang cmake bison flex llvm python ]; 36 + nativeBuildInputs = [ clang cmake bison flex python3 ]; 37 37 38 - buildInputs = [ clang opencl-clang spirv-llvm-translator ]; 38 + buildInputs = [ clang opencl-clang spirv-llvm-translator llvm ]; 39 + 40 + strictDeps = true; 39 41 40 42 # checkInputs = [ lit pythonPackages.nose ]; 41 43
+5 -3
pkgs/development/libraries/audio/raul/default.nix
··· 1 - { lib, stdenv, fetchgit, boost, gtk2, pkg-config, python, wafHook }: 1 + { lib, stdenv, fetchgit, boost, gtk2, pkg-config, python3, wafHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "raul"; ··· 12 12 sha256 = "1z37jb6ghc13b8nv8a8hcg669gl8vh4ni9djvfgga9vcz8rmcg8l"; 13 13 }; 14 14 15 - nativeBuildInputs = [ pkg-config wafHook ]; 16 - buildInputs = [ boost gtk2 python ]; 15 + nativeBuildInputs = [ pkg-config wafHook python3 ]; 16 + buildInputs = [ boost gtk2 ]; 17 + 18 + strictDeps = true; 17 19 18 20 meta = with lib; { 19 21 description = "A C++ utility library primarily aimed at audio/musical applications";
+5 -3
pkgs/development/libraries/audio/suil/default.nix
··· 1 - { stdenv, lib, fetchurl, gtk2, lv2, pkg-config, python, serd, sord, sratom 1 + { stdenv, lib, fetchurl, gtk2, lv2, pkg-config, python3, serd, sord, sratom 2 2 , wafHook 3 3 , withQt4 ? true, qt4 ? null 4 4 , withQt5 ? false, qt5 ? null }: ··· 17 17 sha256 = "0z4v01pjw4wh65x38w6icn28wdwxz13ayl8hvn4p1g9kmamp1z06"; 18 18 }; 19 19 20 - nativeBuildInputs = [ pkg-config wafHook ]; 21 - buildInputs = [ gtk2 lv2 python serd sord sratom ] 20 + nativeBuildInputs = [ pkg-config wafHook python3 ]; 21 + buildInputs = [ gtk2 lv2 serd sord sratom ] 22 22 ++ (lib.optionals withQt4 [ qt4 ]) 23 23 ++ (lib.optionals withQt5 (with qt5; [ qtbase qttools ])); 24 24 25 25 dontWrapQtApps = true; 26 + 27 + strictDeps = true; 26 28 27 29 meta = with lib; { 28 30 homepage = "http://drobilla.net/software/suil";
+2 -2
pkgs/development/libraries/gdal/2.4.nix
··· 1 1 { lib, stdenv, fetchurl, unzip, libjpeg, libtiff, zlib 2 - , postgresql, libmysqlclient, libgeotiff, pythonPackages, proj, geos, openssl 2 + , postgresql, libmysqlclient, libgeotiff, python2Packages, proj, geos, openssl 3 3 , libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat 4 4 , libiconv, libxml2 5 5 , netcdfSupport ? true, netcdf, hdf5, curl ··· 19 19 nativeBuildInputs = [ unzip ]; 20 20 buildInputs = [ libjpeg libtiff libgeotiff libpng proj openssl sqlite 21 21 libspatialite poppler hdf4 qhull giflib expat libxml2 proj ] 22 - ++ (with pythonPackages; [ python numpy wrapPython ]) 22 + ++ (with python2Packages; [ python numpy wrapPython ]) 23 23 ++ lib.optional stdenv.isDarwin libiconv 24 24 ++ lib.optionals netcdfSupport [ netcdf hdf5 curl ]; 25 25
-67
pkgs/development/libraries/gdal/gdal-1_11.nix
··· 1 - { lib, stdenv, fetchurl, unzip, libjpeg, libtiff, zlib 2 - , postgresql, mysql57, libgeotiff, python, pythonPackages, proj, geos, openssl 3 - , libpng }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "gdal"; 7 - version = "1.11.5"; 8 - 9 - src = fetchurl { 10 - url = "https://download.osgeo.org/gdal/${version}/${pname}-${version}.tar.xz"; 11 - sha256 = "0hphxzvy23v3vqxx1y22hhhg4cypihrb8555y12nb4mrhzlw7zfl"; 12 - }; 13 - 14 - nativeBuildInputs = [ unzip ]; 15 - buildInputs = [ libjpeg libtiff libgeotiff libpng python pythonPackages.numpy proj openssl ]; 16 - 17 - patches = [ 18 - # This ensures that the python package is installed into gdal's prefix, 19 - # rather than trying to install into python's prefix. 20 - ./python.patch 21 - ]; 22 - 23 - hardeningDisable = [ "format" "fortify" ]; 24 - 25 - # Don't use optimization for gcc >= 4.3. That's said to be causing segfaults. 26 - # Unset CC and CXX as they confuse libtool. 27 - preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX"; 28 - 29 - configureFlags = [ 30 - "--with-jpeg=${libjpeg.dev}" 31 - "--with-libtiff=${libtiff.dev}" # optional (without largetiff support) 32 - "--with-libpng=${libpng.dev}" # optional 33 - "--with-libz=${zlib.dev}" # optional 34 - 35 - "--with-pg=${postgresql}/bin/pg_config" 36 - "--with-mysql=${mysql57.connector-c}/bin/mysql_config" 37 - "--with-geotiff=${libgeotiff.dev}" 38 - "--with-python" # optional 39 - "--with-static-proj4=${proj}" # optional 40 - "--with-geos=${geos}/bin/geos-config"# optional 41 - ]; 42 - 43 - # Allow use of old proj_api.h 44 - NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H=1"; 45 - 46 - # Prevent this: 47 - # 48 - # Checking .pth file support in /nix/store/xkrmb8xnvqxzjwsdmasqmsdh1a5y2y99-gdal-1.11.2/lib/python2.7/site-packages/ 49 - # /nix/store/pbi1lgank10fy0xpjckbdpgacqw34dsz-python-2.7.9/bin/python -E -c pass 50 - # TEST FAILED: /nix/store/xkrmb8xnvqxzjwsdmasqmsdh1a5y2y99-gdal-1.11.2/lib/python2.7/site-packages/ does NOT support .pth files 51 - # error: bad install directory or PYTHONPATH 52 - preBuild = '' 53 - pythonInstallDir=$out/lib/${python.libPrefix}/site-packages 54 - mkdir -p $pythonInstallDir 55 - export PYTHONPATH=''${PYTHONPATH:+''${PYTHONPATH}:}$pythonInstallDir 56 - ''; 57 - 58 - enableParallelBuilding = true; 59 - 60 - meta = { 61 - description = "Translator library for raster geospatial data formats"; 62 - homepage = "https://www.gdal.org/"; 63 - license = lib.licenses.mit; 64 - maintainers = [ lib.maintainers.marcweber ]; 65 - platforms = with lib.platforms; linux ++ darwin; 66 - }; 67 - }
-17
pkgs/development/libraries/gdal/python.patch
··· 1 - diff --git a/swig/python/GNUmakefile.old b/swig/python/GNUmakefile 2 - index b4d5e90..2160b83 100644 3 - --- a/swig/python/GNUmakefile 4 - +++ b/swig/python/GNUmakefile 5 - @@ -67,11 +67,7 @@ egg: 6 - 7 - install: 8 - 9 - -ifeq ($(PY_HAVE_SETUPTOOLS),1) 10 - - $(PYTHON) setup.py install 11 - -else 12 - $(PYTHON) setup.py install --prefix=$(DESTDIR)$(prefix) 13 - -endif 14 - 15 - for f in $(SCRIPTS) ; do $(INSTALL) ./scripts/$$f $(DESTDIR)$(INST_BIN) ; done 16 - 17 -
+1 -1
pkgs/development/libraries/grib-api/default.nix
··· 1 1 { fetchurl, fetchpatch, lib, stdenv, 2 2 cmake, netcdf, gfortran, libpng, openjpeg, 3 - enablePython ? false, pythonPackages }: 3 + enablePython ? false, pythonPackages ? null }: 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "grib-api";
+4 -2
pkgs/development/libraries/hpx/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python }: 1 + { lib, stdenv, fetchFromGitHub, boost, cmake, hwloc, gperftools, pkg-config, python3 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "hpx"; ··· 12 12 }; 13 13 14 14 buildInputs = [ boost hwloc gperftools ]; 15 - nativeBuildInputs = [ cmake pkg-config python ]; 15 + nativeBuildInputs = [ cmake pkg-config python3 ]; 16 + 17 + strictDeps = true; 16 18 17 19 meta = { 18 20 description = "C++ standard library for concurrency and parallelism";
+2 -2
pkgs/development/libraries/kde-frameworks/kapidox.nix
··· 1 - { mkDerivation, lib, extra-cmake-modules, python }: 1 + { mkDerivation, lib, extra-cmake-modules, python3 }: 2 2 3 3 mkDerivation { 4 4 name = "kapidox"; 5 5 meta = { maintainers = [ lib.maintainers.ttuegel ]; }; 6 - nativeBuildInputs = [ extra-cmake-modules python ]; 6 + nativeBuildInputs = [ extra-cmake-modules python3 python3.pkgs.setuptools ]; 7 7 postFixup = '' 8 8 moveToOutput bin $bin 9 9 '';
+3 -2
pkgs/development/libraries/kmsxx/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, pkg-config, libdrm 2 - , withPython ? false, python }: 2 + , withPython ? false, python ? null }: 3 3 4 4 stdenv.mkDerivation { 5 5 pname = "kmsxx"; ··· 16 16 cmakeFlags = lib.optional (!withPython) "-DKMSXX_ENABLE_PYTHON=OFF"; 17 17 18 18 nativeBuildInputs = [ cmake pkg-config ]; 19 - buildInputs = [ libdrm python ]; 19 + buildInputs = [ libdrm ] ++ lib.optionals withPython [ python ]; 20 20 21 21 meta = with lib; { 22 22 description = "C++11 library, utilities and python bindings for Linux kernel mode setting"; ··· 24 24 license = licenses.mpl20; 25 25 maintainers = with maintainers; [ gnidorah ]; 26 26 platforms = platforms.linux; 27 + broken = true; # marked broken 2021-03-26 27 28 }; 28 29 }
+4 -2
pkgs/development/libraries/libcint/default.nix
··· 4 4 , cmake 5 5 , blas 6 6 # Check Inputs 7 - , python 7 + , python3 8 8 }: 9 9 10 10 stdenv.mkDerivation rec { ··· 26 26 "-DCMAKE_INSTALL_PREFIX=" # ends up double-adding /nix/store/... prefix, this avoids issue 27 27 ]; 28 28 29 + strictDeps = true; 30 + 29 31 doCheck = true; 30 - checkInputs = [ python.pkgs.numpy ]; 32 + checkInputs = [ python3.pkgs.numpy ]; 31 33 32 34 meta = with lib; { 33 35 description = "General GTO integrals for quantum chemistry";
+5 -4
pkgs/development/libraries/libclc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, llvmPackages }: 1 + { lib, stdenv, fetchFromGitHub, python3, llvmPackages }: 2 2 3 3 let 4 4 llvm = llvmPackages.llvm; ··· 16 16 sha256 = "03l9frx3iw3qdsb9rrscgzdwm6872gv6mkssvn027ndf9y321xk7"; 17 17 }; 18 18 19 - nativeBuildInputs = [ python ]; 20 - buildInputs = [ llvm clang clang-unwrapped ]; 19 + nativeBuildInputs = [ python3 llvm ]; 20 + 21 + strictDeps = true; 21 22 22 23 postPatch = '' 23 24 sed -i 's,llvm_clang =.*,llvm_clang = "${clang-unwrapped}/bin/clang",' configure.py ··· 25 26 ''; 26 27 27 28 configurePhase = '' 28 - ${python.interpreter} ./configure.py --prefix=$out 29 + ${python3.interpreter} ./configure.py --prefix=$out 29 30 ''; 30 31 31 32 enableParallelBuilding = true;
+4 -2
pkgs/development/libraries/libinjection/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub 2 - , python 2 + , python2 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { ··· 13 13 sha256 = "0chsgam5dqr9vjfhdcp8cgk7la6nf3lq44zs6z6si98cq743550g"; 14 14 }; 15 15 16 - nativeBuildInputs = [ python ]; 16 + nativeBuildInputs = [ python2 ]; 17 + 18 + strictDeps = true; 17 19 18 20 patchPhase = '' 19 21 patchShebangs src
+2
pkgs/development/libraries/liblinphone/default.nix
··· 111 111 pkg-config 112 112 ]; 113 113 114 + strictDeps = true; 115 + 114 116 # Some grammar files needed to be copied too from some dependencies. I suppose 115 117 # if one define a dependency in such a way that its share directory is found, 116 118 # then this copying would be unnecessary. Instead of actually copying these
+1 -1
pkgs/development/libraries/libplist/default.nix
··· 1 - { lib, stdenv, autoreconfHook, fetchFromGitHub, pkg-config, enablePython ? false, python, glib }: 1 + { lib, stdenv, autoreconfHook, fetchFromGitHub, pkg-config, enablePython ? false, python ? null, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "libplist";
+1 -1
pkgs/development/libraries/libredwg/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, texinfo, pcre2 2 - , enablePython ? false, python, swig, libxml2, ncurses 2 + , enablePython ? false, python ? null, swig, libxml2, ncurses 3 3 }: 4 4 let 5 5 isPython3 = enablePython && python.pythonAtLeast "3";
+2 -2
pkgs/development/libraries/libzen/default.nix
··· 1 1 { lib, stdenv, fetchurl, autoreconfHook }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.4.38"; 4 + version = "0.4.39"; 5 5 pname = "libzen"; 6 6 src = fetchurl { 7 7 url = "https://mediaarea.net/download/source/libzen/${version}/libzen_${version}.tar.bz2"; 8 - sha256 = "1nkygc17sndznpcf71fdrhwpm8z9a3hc9csqlafwswh49axhfkjr"; 8 + sha256 = "1rwaxmid9iv65n0y6xlcyxxydsvihjni9ldxpg6pbqz43amp49xx"; 9 9 }; 10 10 11 11 nativeBuildInputs = [ autoreconfHook ];
+4 -2
pkgs/development/libraries/mbedtls/default.nix
··· 4 4 , cmake 5 5 , ninja 6 6 , perl # Project uses Perl for scripting and testing 7 - , python 7 + , python3 8 8 9 9 , enableThreading ? true # Threading can be disabled to increase security https://tls.mbed.org/kb/development/thread-safety-and-multi-threading 10 10 }: ··· 20 20 sha256 = "0mz7n373b8d287crwi6kq2hb8ryyi228j38h25744lqai23qj5cf"; 21 21 }; 22 22 23 - nativeBuildInputs = [ cmake ninja perl python ]; 23 + nativeBuildInputs = [ cmake ninja perl python3 ]; 24 + 25 + strictDeps = true; 24 26 25 27 postConfigure = lib.optionals enableThreading '' 26 28 perl scripts/config.pl set MBEDTLS_THREADING_C # Threading abstraction layer
+2
pkgs/development/libraries/mediastreamer/default.nix
··· 87 87 srtp 88 88 ]; 89 89 90 + strictDeps = true; 91 + 90 92 # Do not build static libraries 91 93 cmakeFlags = [ "-DENABLE_STATIC=NO" ]; 92 94
+7
pkgs/development/libraries/thrift/0.10.nix
··· 35 35 license = licenses.asl20; 36 36 platforms = platforms.linux ++ platforms.darwin; 37 37 maintainers = [ maintainers.bjornfor ]; 38 + knownVulnerabilities = [ 39 + "CVE-2018-1320" 40 + "CVE-2018-11798" 41 + "CVE-2019-0205" 42 + "CVE-2019-0210" 43 + "CVE-2020-13949" 44 + ]; 38 45 }; 39 46 }
+3
pkgs/development/libraries/thrift/default.nix
··· 56 56 license = licenses.asl20; 57 57 platforms = platforms.linux ++ platforms.darwin; 58 58 maintainers = [ maintainers.bjornfor ]; 59 + knownVulnerabilities = [ 60 + "CVE-2020-13949" 61 + ]; 59 62 }; 60 63 }
+2 -2
pkgs/development/python-modules/aioshelly/default.nix
··· 7 7 8 8 buildPythonPackage rec { 9 9 pname = "aioshelly"; 10 - version = "0.6.1"; 10 + version = "0.6.2"; 11 11 12 12 src = fetchFromGitHub { 13 13 owner = "home-assistant-libs"; 14 14 repo = pname; 15 15 rev = version; 16 - sha256 = "sha256-2igN5mmkXyYpQeAoPAYzhirictuionVMbqifNigEYdw="; 16 + sha256 = "sha256-vlIon+VAHeJiaSIVMEKEpwQC4gXA52vxfEkiQMC9yiw="; 17 17 }; 18 18 19 19 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/axis/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "axis"; 12 - version = "43"; 12 + version = "44"; 13 13 14 14 src = fetchFromGitHub { 15 15 owner = "Kane610"; 16 16 repo = pname; 17 17 rev = "v${version}"; 18 - sha256 = "1p9yfixsrkw7rxbvgybcb653rbqv0x18wzqkh620g193snm9sgm2"; 18 + sha256 = "sha256-GC8GiDP/QHU+8swe60VFPRx8kSMMHuXjIPEKCja8HPE="; 19 19 }; 20 20 21 21 propagatedBuildInputs = [
+12 -7
pkgs/development/python-modules/httpsig/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , setuptools_scm 4 + , setuptools-scm 5 5 , pycryptodome 6 6 , requests 7 + , six 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 15 16 sha256 = "1rkc3zwsq53rjsmc47335m4viljiwdbmw3y2zry4z70j8q1dbmki"; 16 17 }; 17 18 18 - buildInputs = [ setuptools_scm ]; 19 - propagatedBuildInputs = [ pycryptodome requests ]; 19 + buildInputs = [ 20 + setuptools-scm 21 + ]; 22 + 23 + propagatedBuildInputs = [ 24 + pycryptodome 25 + requests 26 + six 27 + ]; 20 28 21 - # Jailbreak pycryptodome 22 - preBuild = '' 23 - substituteInPlace setup.py --replace "==3.4.7" "" 24 - ''; 29 + pythonImportsCheck = [ "httpsig" ]; 25 30 26 31 meta = with lib; { 27 32 description = "Sign HTTP requests with secure signatures";
+14 -6
pkgs/development/python-modules/pynetdicom/default.nix
··· 10 10 11 11 buildPythonPackage rec { 12 12 pname = "pynetdicom"; 13 - version = "1.5.5"; 13 + version = "1.5.6"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "pydicom"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "0zjpscxdhlcv99py7jx5r6dw32nzbcr49isrzkdr6g3zwyxwzbfm"; 19 + sha256 = "sha256-xYwnv30I0+CAx4QODSeMNhdlM2NuM8v4J3rx99NdYCc="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ ··· 32 32 disabledTests = [ 33 33 # Some tests needs network capabilities 34 34 "test_str_types_empty" 35 + "test_associate_reject" 35 36 "TestEchoSCP" 36 37 "TestEchoSCPCLI" 38 + "TestFindSCP" 39 + "TestFindSCPCLI" 40 + "TestGetSCP" 41 + "TestGetSCPCLI" 42 + "TestMoveSCP" 43 + "TestMoveSCPCLI" 44 + "TestQRGetServiceClass" 45 + "TestQRMoveServiceClass" 37 46 "TestStoreSCP" 38 47 "TestStoreSCPCLI" 39 48 "TestStoreSCU" 40 49 "TestStoreSCUCLI" 41 - "TestQRGetServiceClass" 42 - "TestQRMoveServiceClass" 50 + "TestState" 43 51 ]; 44 52 45 53 pythonImportsCheck = [ "pynetdicom" ]; ··· 49 57 homepage = "https://github.com/pydicom/pynetdicom"; 50 58 license = with licenses; [ mit ]; 51 59 maintainers = with maintainers; [ fab ]; 52 - # Tests are not passing on Darwin, thus it's assumed that it doesn't work 53 - broken = stdenv.isDarwin; 60 + # Tests are not passing on Darwin/Aarch64, thus it's assumed that it doesn't work 61 + broken = stdenv.isDarwin || stdenv.isAarch64; 54 62 }; 55 63 }
+2 -1
pkgs/development/python-modules/python-miio/default.nix
··· 36 36 postPatch = '' 37 37 substituteInPlace pyproject.toml \ 38 38 --replace 'croniter = "^0"' 'croniter = "*"' \ 39 - --replace 'defusedxml = "^0.6"' 'defusedxml = "*"' 39 + --replace 'defusedxml = "^0.6"' 'defusedxml = "*"' \ 40 + --replace 'zeroconf = "^0.28"' 'zeroconf = "*"' 40 41 ''; 41 42 42 43 nativeBuildInputs = [
+8 -8
pkgs/development/python-modules/zeroconf/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchPypi 5 5 , ifaddr 6 - , typing 7 - , isPy27 8 6 , pythonOlder 9 7 , pytestCheckHook 10 8 }: 11 9 12 10 buildPythonPackage rec { 13 11 pname = "zeroconf"; 14 - version = "0.28.8"; 15 - disabled = isPy27; 12 + version = "0.29.0"; 13 + disabled = pythonOlder "3.6"; 16 14 17 15 src = fetchPypi { 18 16 inherit pname version; 19 - sha256 = "0narq8haa3b375vfblbyil77n8bw0wxqnanl91pl0wwwm884mqjb"; 17 + sha256 = "sha256-eu+7ZYtFKx/X5REkNk+TjG9eQtbqiT+iVXvqjAbFQK8="; 20 18 }; 21 19 22 - propagatedBuildInputs = [ ifaddr ] 23 - ++ lib.optionals (pythonOlder "3.5") [ typing ]; 20 + propagatedBuildInputs = [ ifaddr ]; 24 21 25 22 checkInputs = [ pytestCheckHook ]; 23 + 26 24 pytestFlagsArray = [ "zeroconf/test.py" ]; 25 + 27 26 disabledTests = [ 28 27 # disable tests that expect some sort of networking in the build container 29 28 "test_launch_and_close" ··· 33 32 ] ++ lib.optionals stdenv.isDarwin [ 34 33 "test_lots_of_names" 35 34 ]; 35 + 36 36 __darwinAllowLocalNetworking = true; 37 37 38 38 pythonImportsCheck = [ "zeroconf" ]; ··· 40 40 meta = with lib; { 41 41 description = "Python implementation of multicast DNS service discovery"; 42 42 homepage = "https://github.com/jstasiak/python-zeroconf"; 43 - license = licenses.lgpl21; 43 + license = licenses.lgpl21Only; 44 44 maintainers = with maintainers; [ abbradar ]; 45 45 }; 46 46 }
+5 -3
pkgs/development/tools/analysis/kcov/default.nix
··· 1 - {lib, stdenv, fetchFromGitHub, cmake, pkg-config, zlib, curl, elfutils, python, libiberty, libopcodes}: 1 + {lib, stdenv, fetchFromGitHub, cmake, pkg-config, zlib, curl, elfutils, python3, libiberty, libopcodes}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "kcov"; ··· 12 12 }; 13 13 14 14 preConfigure = "patchShebangs src/bin-to-c-source.py"; 15 - nativeBuildInputs = [ cmake pkg-config ]; 15 + nativeBuildInputs = [ cmake pkg-config python3 ]; 16 16 17 - buildInputs = [ zlib curl elfutils python libiberty libopcodes ]; 17 + buildInputs = [ curl zlib elfutils libiberty libopcodes ]; 18 + 19 + strictDeps = true; 18 20 19 21 meta = with lib; { 20 22 description = "Code coverage tester for compiled programs, Python scripts and shell scripts";
+4 -2
pkgs/development/tools/build-managers/gup/default.nix
··· 1 - { stdenv, fetchFromGitHub, nix-update-source, lib, python 1 + { stdenv, fetchFromGitHub, nix-update-source, lib, python3 2 2 , which, runtimeShell, pychecker ? null }: 3 3 stdenv.mkDerivation rec { 4 4 version = "0.7.0"; ··· 9 9 sha256 = "1pwnmlq2pgkkln9sgz4wlb9dqlqw83bkf105qljnlvggc21zm3pv"; 10 10 }; 11 11 pname = "gup"; 12 - buildInputs = lib.remove null [ python which pychecker ]; 12 + nativeBuildInputs = [ python3 which pychecker ]; 13 + buildInputs = [ python3 ]; 14 + strictDeps = true; 13 15 SKIP_PYCHECKER = pychecker == null; 14 16 buildPhase = "make python"; 15 17 installPhase = ''
+2 -1
pkgs/development/tools/cmake-format/default.nix
··· 6 6 , jinja2 7 7 , pylint 8 8 , pyyaml 9 + , six 9 10 }: 10 11 11 12 buildPythonApplication rec { ··· 21 22 sha256 = "0kmggnfbv6bba75l3zfzqwk0swi90brjka307m2kcz2w35kr8jvn"; 22 23 }; 23 24 24 - propagatedBuildInputs = [ autopep8 flake8 jinja2 pylint pyyaml ]; 25 + propagatedBuildInputs = [ autopep8 flake8 jinja2 pylint pyyaml six ]; 25 26 26 27 doCheck = false; 27 28
+6 -3
pkgs/development/tools/grabserial/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 1 + { lib, fetchFromGitHub, python3Packages }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "grabserial"; 5 5 version = "2.0.2"; 6 6 ··· 11 11 sha256 = "0ryk4w8q6zfmia71nwnk5b7xaxw0sf45dw9q50xp7k76i3k5f9f3"; 12 12 }; 13 13 14 - propagatedBuildInputs = [ pythonPackages.pyserial ]; 14 + propagatedBuildInputs = [ python3Packages.pyserial ]; 15 + 16 + # no usable tests 17 + doCheck = false; 15 18 16 19 meta = with lib; { 17 20 description = "Python based serial dump and timing program";
+4 -3
pkgs/development/tools/hexio/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, python, pcsclite, pth }: 1 + { lib, stdenv, fetchFromGitHub, pcsclite, pth, python2 }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "hexio"; ··· 11 11 repo = "hexio"; 12 12 }; 13 13 14 - propagatedBuildInputs = [ python ]; 15 - buildInputs = [ pcsclite pth ]; 14 + strictDeps = true; 15 + 16 + buildInputs = [ pcsclite pth python2 ]; 16 17 17 18 patchPhase = '' 18 19 substituteInPlace Makefile \
+4 -2
pkgs/development/tools/misc/gede/default.nix
··· 1 - { mkDerivation, lib, fetchurl, makeWrapper, python, qmake, ctags, gdb }: 1 + { mkDerivation, lib, fetchurl, makeWrapper, python3, qmake, ctags, gdb }: 2 2 3 3 mkDerivation rec { 4 4 pname = "gede"; ··· 9 9 sha256 = "0hbsy2ymzgl8xd9mnh43gxdfncy7g6czxfvfyh7zp3ij8yiwf8x3"; 10 10 }; 11 11 12 - nativeBuildInputs = [ qmake makeWrapper python ]; 12 + nativeBuildInputs = [ qmake makeWrapper python3 ]; 13 13 14 14 buildInputs = [ ctags ]; 15 + 16 + strictDeps = true; 15 17 16 18 dontUseQmakeConfigure = true; 17 19
+7 -5
pkgs/development/tools/misc/global/default.nix
··· 1 1 { fetchurl, lib, stdenv, libtool, makeWrapper 2 - , coreutils, ctags, ncurses, pythonPackages, sqlite, universal-ctags 2 + , coreutils, ctags, ncurses, python3Packages, sqlite, universal-ctags 3 3 }: 4 4 5 - stdenv.mkDerivation rec { 5 + let 6 + pygments = python3Packages.pygments; 7 + in stdenv.mkDerivation rec { 6 8 pname = "global"; 7 9 version = "6.6.5"; 8 10 ··· 15 17 16 18 buildInputs = [ ncurses ]; 17 19 18 - propagatedBuildInputs = [ pythonPackages.pygments ]; 20 + propagatedBuildInputs = [ pygments ]; 19 21 20 22 configureFlags = [ 21 23 "--with-ltdl-include=${libtool}/include" ··· 34 36 cp -v *.el "$out/share/emacs/site-lisp" 35 37 36 38 wrapProgram $out/bin/gtags \ 37 - --prefix PYTHONPATH : "$(toPythonPath ${pythonPackages.pygments})" 39 + --prefix PYTHONPATH : "$(toPythonPath ${pygments})" 38 40 wrapProgram $out/bin/global \ 39 - --prefix PYTHONPATH : "$(toPythonPath ${pythonPackages.pygments})" 41 + --prefix PYTHONPATH : "$(toPythonPath ${pygments})" 40 42 ''; 41 43 42 44 meta = with lib; {
+4 -3
pkgs/development/tools/misc/jscoverage/default.nix
··· 1 - { autoconf, fetchurl, makedepend, perl, python, lib, stdenv, unzip, zip }: 1 + { autoconf, fetchurl, makedepend, perl, python3, lib, stdenv, unzip, zip }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "jscoverage-0.5.1"; ··· 12 12 ./jsfalse_to_null.patch 13 13 ]; 14 14 15 - nativeBuildInputs = [ unzip ]; 16 - buildInputs = [ autoconf makedepend perl python zip ]; 15 + nativeBuildInputs = [ unzip perl python3 zip ]; 16 + 17 + strictDeps = true; 17 18 18 19 # It works without MOZ_FIX_LINK_PATHS, circumventing an impurity 19 20 # issue. Maybe we could kick js/ (spidermonkey) completely and
+5 -7
pkgs/development/tools/misc/kconfig-frontends/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, bison, flex, gperf, ncurses, pythonPackages }: 1 + { lib, stdenv, fetchurl, pkg-config, bison, flex, gperf, ncurses, python3, bash }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 basename = "kconfig-frontends"; ··· 10 10 url = "http://ymorin.is-a-geek.org/download/${basename}/${name}.tar.xz"; 11 11 }; 12 12 13 - nativeBuildInputs = [ pkg-config ]; 14 - buildInputs = [ bison flex gperf ncurses pythonPackages.python pythonPackages.wrapPython ]; 13 + nativeBuildInputs = [ bison flex gperf pkg-config ]; 14 + buildInputs = [ bash ncurses python3 ]; 15 + 16 + strictDeps = true; 15 17 16 18 configureFlags = [ 17 19 "--enable-frontends=conf,mconf,nconf" 18 20 ]; 19 - 20 - postInstall = '' 21 - wrapPythonPrograms 22 - ''; 23 21 24 22 NIX_CFLAGS_COMPILE = lib.optionalString stdenv.cc.isClang "-Wno-error=format-security"; 25 23
-2
pkgs/development/tools/parsing/tree-sitter/default.nix
··· 135 135 ''; 136 136 license = licenses.mit; 137 137 maintainers = with maintainers; [ Profpatsch ]; 138 - # Aarch has test failures with how tree-sitter compiles the generated C files 139 - broken = stdenv.isAarch64; 140 138 }; 141 139 }
+2 -2
pkgs/games/gemrb/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake 2 - , freetype, SDL2, SDL2_mixer, openal, zlib, libpng, python, libvorbis 2 + , freetype, SDL2, SDL2_mixer, openal, zlib, libpng, python2, libvorbis 3 3 , libiconv }: 4 4 5 5 stdenv.mkDerivation rec { ··· 15 15 16 16 # TODO: make libpng, libvorbis, sdl_mixer, freetype, vlc, glew (and other gl 17 17 # reqs) optional 18 - buildInputs = [ freetype python openal SDL2 SDL2_mixer zlib libpng libvorbis libiconv ]; 18 + buildInputs = [ freetype python2 openal SDL2 SDL2_mixer zlib libpng libvorbis libiconv ]; 19 19 20 20 nativeBuildInputs = [ cmake ]; 21 21
+5 -3
pkgs/games/gnubg/default.nix
··· 1 - { lib, stdenv, fetchurl, pkg-config, glib, python, gtk2, readline }: 1 + { lib, stdenv, fetchurl, pkg-config, glib, python3, gtk2, readline }: 2 2 3 3 let version = "1.06.002"; in 4 4 stdenv.mkDerivation { ··· 9 9 sha256 = "11xwhcli1h12k6rnhhyq4jphzrhfik7i8ah3k32pqw803460n6yf"; 10 10 }; 11 11 12 - nativeBuildInputs = [ pkg-config ]; 13 - buildInputs = [ python glib gtk2 readline ]; 12 + nativeBuildInputs = [ pkg-config python3 glib ]; 13 + buildInputs = [ gtk2 readline ]; 14 + 15 + strictDeps = true; 14 16 15 17 configureFlags = [ "--with-gtk" "--with--board3d" ]; 16 18
+2 -2
pkgs/misc/gnuk/generic.nix
··· 1 1 { lib, stdenv, gcc-arm-embedded, binutils-arm-embedded, makeWrapper 2 - , python, pythonPackages 2 + , python2Packages 3 3 4 4 # Extra options 5 5 , device ? "fsij", vid ? "234b", pid ? "0000" ··· 15 15 inherit src; 16 16 17 17 nativeBuildInputs = [ gcc-arm-embedded binutils-arm-embedded makeWrapper ]; 18 - buildInputs = [ python ] ++ (with pythonPackages; [ pyusb colorama ]); 18 + buildInputs = with python2Packages; [ python pyusb colorama ]; 19 19 20 20 configurePhase = '' 21 21 cd src
+2 -2
pkgs/os-specific/linux/libnl/default.nix
··· 1 1 { stdenv, file, lib, fetchFromGitHub, autoreconfHook, bison, flex, pkg-config 2 - , pythonSupport ? false, swig ? null, python}: 2 + , pythonSupport ? false, swig ? null, python ? null}: 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "libnl"; ··· 21 21 22 22 postBuild = lib.optionalString (pythonSupport) '' 23 23 cd python 24 - ${python}/bin/python setup.py install --prefix=../pythonlib 24 + ${python.interpreter} setup.py install --prefix=../pythonlib 25 25 cd - 26 26 ''; 27 27
+1
pkgs/servers/home-assistant/default.nix
··· 182 182 "api" 183 183 "auth" 184 184 "automation" 185 + "axis" 185 186 "bayesian" 186 187 "binary_sensor" 187 188 "caldav"
+4 -2
pkgs/servers/irker/default.nix
··· 1 - { lib, stdenv, fetchFromGitLab, python, pkg-config 1 + { lib, stdenv, fetchFromGitLab, python3, pkg-config 2 2 , xmlto, docbook2x, docbook_xsl, docbook_xml_dtd_412 }: 3 3 4 4 stdenv.mkDerivation { ··· 15 15 nativeBuildInputs = [ pkg-config xmlto docbook2x docbook_xsl docbook_xml_dtd_412 ]; 16 16 17 17 buildInputs = [ 18 - python 18 + python3 19 19 # Needed for proxy support I believe, which I haven't tested. 20 20 # Probably needs to be propagated and some wrapPython magic 21 21 # python.pkgs.pysocks 22 22 ]; 23 + 24 + strictDeps = true; 23 25 24 26 postPatch = '' 25 27 substituteInPlace Makefile \
-100
pkgs/servers/kippo/default.nix
··· 1 - # This is the installation portion of kippo. 2 - # This is somewhat jumbled together. There is no "easy_install" for kippo, 3 - # and there isn't a way to regenerate the twistd plugin cache. 4 - # 5 - # Use the services.kippo options to properly configure if on NixOS. 6 - # On other platforms there is a problem with hardcoded paths. 7 - # Your best bet is to change kippo source to customise 8 - # or manually copy the proper filesystems. 9 - # At a minimum the following are required in /var/lib/kippo: 10 - # honeyfs/ 11 - # fs.pickle 12 - # data/ 13 - # txtcmds/ 14 - # 15 - # There is also benefit in preparing /var/log/kippo 16 - # tty/ 17 - # dl/ 18 - # 19 - # Most of these files need read/write permissions. 20 - # 21 - # Read only files: kippo.tac and kippo.cfg 22 - # 23 - # Execution may look like this: 24 - # twistd -y kippo.tac --syslog --pidfile=kippo.pid 25 - # 26 - # Use this package at your own risk. 27 - 28 - {lib, stdenv, fetchurl, pythonPackages }: 29 - 30 - let 31 - 32 - twisted_13 = pythonPackages.buildPythonPackage rec { 33 - # NOTE: When updating please check if new versions still cause issues 34 - # to packages like carbon (http://stackoverflow.com/questions/19894708/cant-start-carbon-12-04-python-error-importerror-cannot-import-name-daem) 35 - disabled = pythonPackages.isPy3k; 36 - 37 - name = "Twisted-13.2.0"; 38 - src = fetchurl { 39 - url = "mirror://pypi/T/Twisted/${name}.tar.bz2"; 40 - sha256 = "1wrcqv5lvgwk2aq83qb2s2ng2vx14hbjjk2gc30cg6h1iiipal89"; 41 - }; 42 - 43 - propagatedBuildInputs = with pythonPackages; [ zope_interface ]; 44 - 45 - # Generate Twisted's plug-in cache. Twited users must do it as well. See 46 - # http://twistedmatrix.com/documents/current/core/howto/plugin.html#auto3 47 - # and http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=477103 for 48 - # details. 49 - postInstall = "$out/bin/twistd --help > /dev/null"; 50 - 51 - meta = with lib; { 52 - homepage = "https://twistedmatrix.com/"; 53 - description = "Twisted, an event-driven networking engine written in Python"; 54 - longDescription = '' 55 - Twisted is an event-driven networking engine written in Python 56 - and licensed under the MIT license. 57 - ''; 58 - license = licenses.mit; 59 - }; 60 - }; 61 - 62 - in stdenv.mkDerivation rec { 63 - pname = "kippo"; 64 - version = "0.8"; 65 - src = fetchurl { 66 - url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/kippo/${pname}-${version}.tar.gz"; 67 - sha256 = "0rd2mk36d02qd24z8s4xyy64fy54rzpar4379iq4dcjwg7l7f63d"; 68 - }; 69 - buildInputs = with pythonPackages; [ pycrypto pyasn1 twisted_13 ]; 70 - installPhase = '' 71 - substituteInPlace ./kippo.tac --replace "kippo.cfg" "$out/src/kippo.cfg" 72 - substituteInPlace ./kippo.cfg --replace "log_path = log" "log_path = /var/log/kippo" \ 73 - --replace "download_path = dl" "download_path = /var/log/kippo/dl" \ 74 - --replace "contents_path = honeyfs" "filesystem_file = /var/lib/kippo/honeyfs" \ 75 - --replace "filesystem_file = fs.pickle" "filesystem_file = /var/lib/kippo/fs.pickle" \ 76 - --replace "data_path = data" "data_path = /var/lib/kippo/data" \ 77 - --replace "txtcmds_path = txtcmds" "txtcmds_path = /var/lib/kippo/txtcmds" \ 78 - --replace "public_key = public.key" "public_key = /var/lib/kippo/keys/public.key" \ 79 - --replace "private_key = private.key" "private_key = /var/lib/kippo/keys/private.key" 80 - mkdir -p $out/bin 81 - mkdir -p $out/src 82 - mv ./* $out/src 83 - mv $out/src/utils/* $out/bin 84 - ''; 85 - 86 - passthru.twisted = twisted_13; 87 - 88 - meta = with lib; { 89 - homepage = "https://github.com/desaster/kippo"; 90 - description = "SSH Honeypot"; 91 - longDescription = '' 92 - Default port is 2222. Recommend using something like this for port redirection to default SSH port: 93 - networking.firewall.extraCommands = ''' 94 - iptables -t nat -A PREROUTING -i IN_IFACE -p tcp --dport 22 -j REDIRECT --to-port 2222''' ''; 95 - license = licenses.bsd3; 96 - platforms = platforms.linux; 97 - maintainers = with maintainers; [ tomberek ]; 98 - broken = true; # 2018-09-12, failed on hydra since 2017-12-11 99 - }; 100 - }
+29
pkgs/servers/monitoring/prometheus/openldap-exporter.nix
··· 1 + { buildGoPackage, lib, fetchFromGitHub }: 2 + 3 + buildGoPackage rec { 4 + pname = "openldap_exporter"; 5 + version = "2.1"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "tomcz"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "sha256-Di1GiyVp/hGCFhqxhlqJSucGZK7f/FDDUFtJRaiAZu4="; 12 + }; 13 + 14 + buildFlagsArray = '' 15 + -ldflags= 16 + -s -w 17 + -X github.com/tomcz/openldap_exporter.tag=v${version} 18 + -X github.com/tomcz/openldap_exporter.commit=unknown 19 + ''; 20 + 21 + goPackagePath = "github.com/tomcz/openldap_exporter"; 22 + 23 + meta = with lib; { 24 + homepage = "https://github.com/tomcz/openldap_exporter"; 25 + description = " Simple service that scrapes metrics from OpenLDAP and exports them via HTTP for Prometheus consumption"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ ma27 ]; 28 + }; 29 + }
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 3 package = (import ./node.nix { inherit pkgs system; }).package; 4 4 in 5 5 package.override rec { 6 - version = "1.18.2"; 6 + version = "1.16.2"; 7 7 reconstructLock = true; 8 8 9 9 src = pkgs.fetchFromGitHub { 10 10 owner = "Koenkk"; 11 11 repo = "zigbee2mqtt"; 12 12 rev = version; 13 - sha256 = "sha256-95RhoJ0aqprzMNOUw9UbLosBwBtQvudKOQaBvBJohn8="; 13 + sha256 = "0rpmm4pwm8s4i9fl26ql0czg5kijv42k9wwik7jb3ppi5jzxrakd"; 14 14 }; 15 15 16 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+1338 -3017
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.8.0. Do not edit! 2 2 3 - {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 3 + {nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: 4 4 5 5 let 6 6 sources = { 7 - "@babel/cli-7.13.0" = { 7 + "@babel/cli-7.12.1" = { 8 8 name = "_at_babel_slash_cli"; 9 9 packageName = "@babel/cli"; 10 - version = "7.13.0"; 10 + version = "7.12.1"; 11 11 src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.13.0.tgz"; 13 - sha512 = "y5AohgeVhU+wO5kU1WGMLdocFj83xCxVjsVFa2ilII8NEwmBZvx7Ambq621FbFIK68loYJ9p43nfoi6es+rzSA=="; 12 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.1.tgz"; 13 + sha512 = "eRJREyrfAJ2r42Iaxe8h3v6yyj1wu9OyosaUHW6UImjGf9ahGL9nsFNh7OCopvtcPL8WnEo7tp78wrZaZ6vG9g=="; 14 14 }; 15 15 }; 16 - "@babel/code-frame-7.12.11" = { 16 + "@babel/code-frame-7.10.4" = { 17 17 name = "_at_babel_slash_code-frame"; 18 18 packageName = "@babel/code-frame"; 19 - version = "7.12.11"; 19 + version = "7.10.4"; 20 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"; 22 - sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 21 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz"; 22 + sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="; 23 23 }; 24 24 }; 25 - "@babel/code-frame-7.12.13" = { 26 - name = "_at_babel_slash_code-frame"; 27 - packageName = "@babel/code-frame"; 28 - version = "7.12.13"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz"; 31 - sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g=="; 32 - }; 33 - }; 34 - "@babel/compat-data-7.13.12" = { 25 + "@babel/compat-data-7.12.5" = { 35 26 name = "_at_babel_slash_compat-data"; 36 27 packageName = "@babel/compat-data"; 37 - version = "7.13.12"; 28 + version = "7.12.5"; 38 29 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.12.tgz"; 40 - sha512 = "3eJJ841uKxeV8dcN/2yGEUy+RfgQspPEgQat85umsE1rotuquQ2AbIub4S6j7c50a2d+4myc+zSlnXeIHrOnhQ=="; 30 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz"; 31 + sha512 = "DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="; 41 32 }; 42 33 }; 43 - "@babel/compat-data-7.13.8" = { 44 - name = "_at_babel_slash_compat-data"; 45 - packageName = "@babel/compat-data"; 46 - version = "7.13.8"; 47 - src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.13.8.tgz"; 49 - sha512 = "EaI33z19T4qN3xLXsGf48M2cDqa6ei9tPZlfLdb2HC+e/cFtREiRd8hdSqDbwdLB0/+gLwqJmCYASH0z2bUdog=="; 50 - }; 51 - }; 52 - "@babel/core-7.13.13" = { 34 + "@babel/core-7.12.3" = { 53 35 name = "_at_babel_slash_core"; 54 36 packageName = "@babel/core"; 55 - version = "7.13.13"; 37 + version = "7.12.3"; 56 38 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/core/-/core-7.13.13.tgz"; 58 - sha512 = "1xEs9jZAyKIouOoCmpsgk/I26PoKyvzQ2ixdRpRzfbcp1fL+ozw7TUgdDgwonbTovqRaTfRh50IXuw4QrWO0GA=="; 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz"; 40 + sha512 = "0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g=="; 59 41 }; 60 42 }; 61 - "@babel/core-7.13.8" = { 43 + "@babel/core-7.12.9" = { 62 44 name = "_at_babel_slash_core"; 63 45 packageName = "@babel/core"; 64 - version = "7.13.8"; 46 + version = "7.12.9"; 65 47 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/core/-/core-7.13.8.tgz"; 67 - sha512 = "oYapIySGw1zGhEFRd6lzWNLWFX2s5dA/jm+Pw/+59ZdXtjyIuwlXbrId22Md0rgZVop+aVoqow2riXhBLNyuQg=="; 48 + url = "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz"; 49 + sha512 = "gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ=="; 68 50 }; 69 51 }; 70 - "@babel/generator-7.13.9" = { 52 + "@babel/generator-7.12.5" = { 71 53 name = "_at_babel_slash_generator"; 72 54 packageName = "@babel/generator"; 73 - version = "7.13.9"; 55 + version = "7.12.5"; 74 56 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.13.9.tgz"; 76 - sha512 = "mHOOmY0Axl/JCTkxTU6Lf5sWOg/v8nUa+Xkt4zMTftX0wqmb6Sh7J8gvcehBw7q0AhrhAR+FDacKjCZ2X8K+Sw=="; 57 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz"; 58 + sha512 = "m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A=="; 77 59 }; 78 60 }; 79 - "@babel/helper-annotate-as-pure-7.12.13" = { 61 + "@babel/helper-annotate-as-pure-7.10.4" = { 80 62 name = "_at_babel_slash_helper-annotate-as-pure"; 81 63 packageName = "@babel/helper-annotate-as-pure"; 82 - version = "7.12.13"; 64 + version = "7.10.4"; 83 65 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz"; 85 - sha512 = "7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw=="; 66 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz"; 67 + sha512 = "XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA=="; 86 68 }; 87 69 }; 88 - "@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" = { 70 + "@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" = { 89 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 90 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 91 - version = "7.12.13"; 92 - src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz"; 94 - sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA=="; 95 - }; 96 - }; 97 - "@babel/helper-compilation-targets-7.13.13" = { 98 - name = "_at_babel_slash_helper-compilation-targets"; 99 - packageName = "@babel/helper-compilation-targets"; 100 - version = "7.13.13"; 73 + version = "7.10.4"; 101 74 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.13.tgz"; 103 - sha512 = "q1kcdHNZehBwD9jYPh3WyXcsFERi39X4I59I3NadciWtNDyZ6x+GboOxncFK0kXlKIv6BJm5acncehXWUjWQMQ=="; 75 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz"; 76 + sha512 = "L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg=="; 104 77 }; 105 78 }; 106 - "@babel/helper-compilation-targets-7.13.8" = { 79 + "@babel/helper-compilation-targets-7.12.5" = { 107 80 name = "_at_babel_slash_helper-compilation-targets"; 108 81 packageName = "@babel/helper-compilation-targets"; 109 - version = "7.13.8"; 82 + version = "7.12.5"; 110 83 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.8.tgz"; 112 - sha512 = "pBljUGC1y3xKLn1nrx2eAhurLMA8OqBtBP/JwG4U8skN7kf8/aqwwxpV1N6T0e7r6+7uNitIa/fUxPFagSXp3A=="; 84 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz"; 85 + sha512 = "+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw=="; 113 86 }; 114 87 }; 115 - "@babel/helper-create-class-features-plugin-7.13.8" = { 88 + "@babel/helper-create-class-features-plugin-7.12.1" = { 116 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 117 90 packageName = "@babel/helper-create-class-features-plugin"; 118 - version = "7.13.8"; 91 + version = "7.12.1"; 119 92 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.13.8.tgz"; 121 - sha512 = "qioaRrKHQbn4hkRKDHbnuQ6kAxmmOF+kzKGnIfxPK4j2rckSJCpKzr/SSTlohSCiE3uAQpNDJ9FIh4baeE8W+w=="; 93 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz"; 94 + sha512 = "hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w=="; 122 95 }; 123 96 }; 124 - "@babel/helper-create-regexp-features-plugin-7.12.17" = { 97 + "@babel/helper-create-regexp-features-plugin-7.12.1" = { 125 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 126 99 packageName = "@babel/helper-create-regexp-features-plugin"; 127 - version = "7.12.17"; 100 + version = "7.12.1"; 128 101 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.17.tgz"; 130 - sha512 = "p2VGmBu9oefLZ2nQpgnEnG0ZlRPvL8gAGvPUMQwUdaE8k49rOMuZpOwdQoy5qJf6K8jL3bcAMhVUlHAjIgJHUg=="; 102 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz"; 103 + sha512 = "rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA=="; 131 104 }; 132 105 }; 133 - "@babel/helper-define-polyfill-provider-0.1.5" = { 134 - name = "_at_babel_slash_helper-define-polyfill-provider"; 135 - packageName = "@babel/helper-define-polyfill-provider"; 136 - version = "0.1.5"; 106 + "@babel/helper-define-map-7.10.5" = { 107 + name = "_at_babel_slash_helper-define-map"; 108 + packageName = "@babel/helper-define-map"; 109 + version = "7.10.5"; 137 110 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.1.5.tgz"; 139 - sha512 = "nXuzCSwlJ/WKr8qxzW816gwyT6VZgiJG17zR40fou70yfAcqjoNyTLl/DQ+FExw5Hx5KNqshmN8Ldl/r2N7cTg=="; 111 + url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz"; 112 + sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ=="; 140 113 }; 141 114 }; 142 - "@babel/helper-explode-assignable-expression-7.13.0" = { 115 + "@babel/helper-explode-assignable-expression-7.12.1" = { 143 116 name = "_at_babel_slash_helper-explode-assignable-expression"; 144 117 packageName = "@babel/helper-explode-assignable-expression"; 145 - version = "7.13.0"; 118 + version = "7.12.1"; 146 119 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.13.0.tgz"; 148 - sha512 = "qS0peLTDP8kOisG1blKbaoBg/o9OSa1qoumMjTK5pM+KDTtpxpsiubnCGP34vK8BXGcb2M9eigwgvoJryrzwWA=="; 120 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz"; 121 + sha512 = "dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA=="; 149 122 }; 150 123 }; 151 - "@babel/helper-function-name-7.12.13" = { 124 + "@babel/helper-function-name-7.10.4" = { 152 125 name = "_at_babel_slash_helper-function-name"; 153 126 packageName = "@babel/helper-function-name"; 154 - version = "7.12.13"; 127 + version = "7.10.4"; 155 128 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz"; 157 - sha512 = "TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA=="; 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz"; 130 + sha512 = "YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ=="; 158 131 }; 159 132 }; 160 - "@babel/helper-get-function-arity-7.12.13" = { 133 + "@babel/helper-get-function-arity-7.10.4" = { 161 134 name = "_at_babel_slash_helper-get-function-arity"; 162 135 packageName = "@babel/helper-get-function-arity"; 163 - version = "7.12.13"; 136 + version = "7.10.4"; 164 137 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz"; 166 - sha512 = "DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg=="; 138 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz"; 139 + sha512 = "EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A=="; 167 140 }; 168 141 }; 169 - "@babel/helper-hoist-variables-7.13.0" = { 142 + "@babel/helper-hoist-variables-7.10.4" = { 170 143 name = "_at_babel_slash_helper-hoist-variables"; 171 144 packageName = "@babel/helper-hoist-variables"; 172 - version = "7.13.0"; 145 + version = "7.10.4"; 173 146 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.13.0.tgz"; 175 - sha512 = "0kBzvXiIKfsCA0y6cFEIJf4OdzfpRuNk4+YTeHZpGGc666SATFKTz6sRncwFnQk7/ugJ4dSrCj6iJuvW4Qwr2g=="; 147 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz"; 148 + sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA=="; 176 149 }; 177 150 }; 178 - "@babel/helper-member-expression-to-functions-7.13.0" = { 151 + "@babel/helper-member-expression-to-functions-7.12.1" = { 179 152 name = "_at_babel_slash_helper-member-expression-to-functions"; 180 153 packageName = "@babel/helper-member-expression-to-functions"; 181 - version = "7.13.0"; 154 + version = "7.12.1"; 182 155 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.0.tgz"; 184 - sha512 = "yvRf8Ivk62JwisqV1rFRMxiSMDGnN6KH1/mDMmIrij4jztpQNRoHqqMG3U6apYbGRPJpgPalhva9Yd06HlUxJQ=="; 156 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz"; 157 + sha512 = "k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ=="; 185 158 }; 186 159 }; 187 - "@babel/helper-member-expression-to-functions-7.13.12" = { 160 + "@babel/helper-member-expression-to-functions-7.12.7" = { 188 161 name = "_at_babel_slash_helper-member-expression-to-functions"; 189 162 packageName = "@babel/helper-member-expression-to-functions"; 190 - version = "7.13.12"; 163 + version = "7.12.7"; 191 164 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"; 193 - sha512 = "48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw=="; 194 - }; 195 - }; 196 - "@babel/helper-module-imports-7.12.13" = { 197 - name = "_at_babel_slash_helper-module-imports"; 198 - packageName = "@babel/helper-module-imports"; 199 - version = "7.12.13"; 200 - src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"; 202 - sha512 = "NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g=="; 165 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz"; 166 + sha512 = "DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw=="; 203 167 }; 204 168 }; 205 - "@babel/helper-module-imports-7.13.12" = { 169 + "@babel/helper-module-imports-7.12.5" = { 206 170 name = "_at_babel_slash_helper-module-imports"; 207 171 packageName = "@babel/helper-module-imports"; 208 - version = "7.13.12"; 172 + version = "7.12.5"; 209 173 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 211 - sha512 = "4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA=="; 174 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz"; 175 + sha512 = "SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA=="; 212 176 }; 213 177 }; 214 - "@babel/helper-module-transforms-7.13.0" = { 178 + "@babel/helper-module-transforms-7.12.1" = { 215 179 name = "_at_babel_slash_helper-module-transforms"; 216 180 packageName = "@babel/helper-module-transforms"; 217 - version = "7.13.0"; 181 + version = "7.12.1"; 218 182 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.0.tgz"; 220 - sha512 = "Ls8/VBwH577+pw7Ku1QkUWIyRRNHpYlts7+qSqBBFCW3I8QteB9DxfcZ5YJpOwH6Ihe/wn8ch7fMGOP1OhEIvw=="; 183 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz"; 184 + sha512 = "QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w=="; 221 185 }; 222 186 }; 223 - "@babel/helper-module-transforms-7.13.12" = { 224 - name = "_at_babel_slash_helper-module-transforms"; 225 - packageName = "@babel/helper-module-transforms"; 226 - version = "7.13.12"; 187 + "@babel/helper-optimise-call-expression-7.10.4" = { 188 + name = "_at_babel_slash_helper-optimise-call-expression"; 189 + packageName = "@babel/helper-optimise-call-expression"; 190 + version = "7.10.4"; 227 191 src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.13.12.tgz"; 229 - sha512 = "7zVQqMO3V+K4JOOj40kxiCrMf6xlQAkewBB0eu2b03OO/Q21ZutOzjpfD79A5gtE/2OWi1nv625MrDlGlkbknQ=="; 192 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz"; 193 + sha512 = "n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg=="; 230 194 }; 231 195 }; 232 - "@babel/helper-optimise-call-expression-7.12.13" = { 196 + "@babel/helper-optimise-call-expression-7.12.7" = { 233 197 name = "_at_babel_slash_helper-optimise-call-expression"; 234 198 packageName = "@babel/helper-optimise-call-expression"; 235 - version = "7.12.13"; 199 + version = "7.12.7"; 236 200 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz"; 238 - sha512 = "BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA=="; 201 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz"; 202 + sha512 = "I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw=="; 239 203 }; 240 204 }; 241 - "@babel/helper-plugin-utils-7.13.0" = { 205 + "@babel/helper-plugin-utils-7.10.4" = { 242 206 name = "_at_babel_slash_helper-plugin-utils"; 243 207 packageName = "@babel/helper-plugin-utils"; 244 - version = "7.13.0"; 208 + version = "7.10.4"; 245 209 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"; 247 - sha512 = "ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ=="; 210 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz"; 211 + sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="; 248 212 }; 249 213 }; 250 - "@babel/helper-remap-async-to-generator-7.13.0" = { 251 - name = "_at_babel_slash_helper-remap-async-to-generator"; 252 - packageName = "@babel/helper-remap-async-to-generator"; 253 - version = "7.13.0"; 214 + "@babel/helper-regex-7.10.5" = { 215 + name = "_at_babel_slash_helper-regex"; 216 + packageName = "@babel/helper-regex"; 217 + version = "7.10.5"; 254 218 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.13.0.tgz"; 256 - sha512 = "pUQpFBE9JvC9lrQbpX0TmeNIy5s7GnZjna2lhhcHC7DzgBs6fWn722Y5cfwgrtrqc7NAJwMvOa0mKhq6XaE4jg=="; 219 + url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz"; 220 + sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg=="; 257 221 }; 258 222 }; 259 - "@babel/helper-replace-supers-7.13.0" = { 260 - name = "_at_babel_slash_helper-replace-supers"; 261 - packageName = "@babel/helper-replace-supers"; 262 - version = "7.13.0"; 223 + "@babel/helper-remap-async-to-generator-7.12.1" = { 224 + name = "_at_babel_slash_helper-remap-async-to-generator"; 225 + packageName = "@babel/helper-remap-async-to-generator"; 226 + version = "7.12.1"; 263 227 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.0.tgz"; 265 - sha512 = "Segd5me1+Pz+rmN/NFBOplMbZG3SqRJOBlY+mA0SxAv6rjj7zJqr1AVr3SfzUVTLCv7ZLU5FycOM/SBGuLPbZw=="; 228 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz"; 229 + sha512 = "9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A=="; 266 230 }; 267 231 }; 268 - "@babel/helper-replace-supers-7.13.12" = { 232 + "@babel/helper-replace-supers-7.12.5" = { 269 233 name = "_at_babel_slash_helper-replace-supers"; 270 234 packageName = "@babel/helper-replace-supers"; 271 - version = "7.13.12"; 235 + version = "7.12.5"; 272 236 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"; 274 - sha512 = "Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw=="; 237 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz"; 238 + sha512 = "5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA=="; 275 239 }; 276 240 }; 277 - "@babel/helper-simple-access-7.12.13" = { 241 + "@babel/helper-simple-access-7.12.1" = { 278 242 name = "_at_babel_slash_helper-simple-access"; 279 243 packageName = "@babel/helper-simple-access"; 280 - version = "7.12.13"; 244 + version = "7.12.1"; 281 245 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"; 283 - sha512 = "0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA=="; 284 - }; 285 - }; 286 - "@babel/helper-simple-access-7.13.12" = { 287 - name = "_at_babel_slash_helper-simple-access"; 288 - packageName = "@babel/helper-simple-access"; 289 - version = "7.13.12"; 290 - src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 292 - sha512 = "7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA=="; 246 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz"; 247 + sha512 = "OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA=="; 293 248 }; 294 249 }; 295 250 "@babel/helper-skip-transparent-expression-wrappers-7.12.1" = { ··· 301 256 sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA=="; 302 257 }; 303 258 }; 304 - "@babel/helper-split-export-declaration-7.12.13" = { 259 + "@babel/helper-split-export-declaration-7.11.0" = { 305 260 name = "_at_babel_slash_helper-split-export-declaration"; 306 261 packageName = "@babel/helper-split-export-declaration"; 307 - version = "7.12.13"; 262 + version = "7.11.0"; 308 263 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz"; 310 - sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg=="; 264 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz"; 265 + sha512 = "74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg=="; 311 266 }; 312 267 }; 313 - "@babel/helper-validator-identifier-7.12.11" = { 268 + "@babel/helper-validator-identifier-7.10.4" = { 314 269 name = "_at_babel_slash_helper-validator-identifier"; 315 270 packageName = "@babel/helper-validator-identifier"; 316 - version = "7.12.11"; 271 + version = "7.10.4"; 317 272 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 319 - sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 273 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz"; 274 + sha512 = "3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="; 320 275 }; 321 276 }; 322 - "@babel/helper-validator-option-7.12.17" = { 277 + "@babel/helper-validator-option-7.12.1" = { 323 278 name = "_at_babel_slash_helper-validator-option"; 324 279 packageName = "@babel/helper-validator-option"; 325 - version = "7.12.17"; 280 + version = "7.12.1"; 326 281 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"; 328 - sha512 = "TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw=="; 282 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz"; 283 + sha512 = "YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A=="; 329 284 }; 330 285 }; 331 - "@babel/helper-wrap-function-7.13.0" = { 286 + "@babel/helper-wrap-function-7.12.3" = { 332 287 name = "_at_babel_slash_helper-wrap-function"; 333 288 packageName = "@babel/helper-wrap-function"; 334 - version = "7.13.0"; 289 + version = "7.12.3"; 335 290 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.13.0.tgz"; 337 - sha512 = "1UX9F7K3BS42fI6qd2A4BjKzgGjToscyZTdp1DjknHLCIvpgne6918io+aL5LXFcER/8QWiwpoY902pVEqgTXA=="; 291 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz"; 292 + sha512 = "Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow=="; 338 293 }; 339 294 }; 340 - "@babel/helpers-7.13.0" = { 341 - name = "_at_babel_slash_helpers"; 342 - packageName = "@babel/helpers"; 343 - version = "7.13.0"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.0.tgz"; 346 - sha512 = "aan1MeFPxFacZeSz6Ld7YZo5aPuqnKlD7+HZY75xQsueczFccP9A7V05+oe0XpLwHK3oLorPe9eaAUljL7WEaQ=="; 347 - }; 348 - }; 349 - "@babel/helpers-7.13.10" = { 295 + "@babel/helpers-7.12.5" = { 350 296 name = "_at_babel_slash_helpers"; 351 297 packageName = "@babel/helpers"; 352 - version = "7.13.10"; 298 + version = "7.12.5"; 353 299 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.13.10.tgz"; 355 - sha512 = "4VO883+MWPDUVRF3PhiLBUFHoX/bsLTGFpFK/HqvvfBZz2D57u9XzPVNFVBTc0PW/CWR9BXTOKt8NF4DInUHcQ=="; 300 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz"; 301 + sha512 = "lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA=="; 356 302 }; 357 303 }; 358 - "@babel/highlight-7.13.10" = { 359 - name = "_at_babel_slash_highlight"; 360 - packageName = "@babel/highlight"; 361 - version = "7.13.10"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.10.tgz"; 364 - sha512 = "5aPpe5XQPzflQrFwL1/QoeHkP2MsA4JCntcXHRhEsdsfPVkvPi2w7Qix4iV7t5S/oC9OodGrggd8aco1g3SZFg=="; 365 - }; 366 - }; 367 - "@babel/highlight-7.13.8" = { 304 + "@babel/highlight-7.10.4" = { 368 305 name = "_at_babel_slash_highlight"; 369 306 packageName = "@babel/highlight"; 370 - version = "7.13.8"; 307 + version = "7.10.4"; 371 308 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.13.8.tgz"; 373 - sha512 = "4vrIhfJyfNf+lCtXC2ck1rKSzDwciqF7IWFhXXrSOUC2O5DrVp+w4c6ed4AllTxhTkUP5x2tYj41VaxdVMMRDw=="; 309 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz"; 310 + sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 374 311 }; 375 312 }; 376 - "@babel/parser-7.13.13" = { 313 + "@babel/parser-7.12.5" = { 377 314 name = "_at_babel_slash_parser"; 378 315 packageName = "@babel/parser"; 379 - version = "7.13.13"; 316 + version = "7.12.5"; 380 317 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.13.tgz"; 382 - sha512 = "OhsyMrqygfk5v8HmWwOzlYjJrtLaFhF34MrfG/Z73DgYCI6ojNUTUp2TYbtnjo8PegeJp12eamsNettCQjKjVw=="; 318 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz"; 319 + sha512 = "FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="; 383 320 }; 384 321 }; 385 - "@babel/parser-7.13.9" = { 322 + "@babel/parser-7.12.7" = { 386 323 name = "_at_babel_slash_parser"; 387 324 packageName = "@babel/parser"; 388 - version = "7.13.9"; 325 + version = "7.12.7"; 389 326 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.13.9.tgz"; 391 - sha512 = "nEUfRiARCcaVo3ny3ZQjURjHQZUo/JkEw7rLlSZy/psWGnvwXFtPcr6jb7Yb41DVW5LTe6KRq9LGleRNsg1Frw=="; 327 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz"; 328 + sha512 = "oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg=="; 392 329 }; 393 330 }; 394 - "@babel/plugin-proposal-async-generator-functions-7.13.8" = { 331 + "@babel/plugin-proposal-async-generator-functions-7.12.1" = { 395 332 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 396 333 packageName = "@babel/plugin-proposal-async-generator-functions"; 397 - version = "7.13.8"; 334 + version = "7.12.1"; 398 335 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.8.tgz"; 400 - sha512 = "rPBnhj+WgoSmgq+4gQUtXx/vOcU+UYtjy1AA/aeD61Hwj410fwYyqfUcRP3lR8ucgliVJL/G7sXcNUecC75IXA=="; 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz"; 337 + sha512 = "d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A=="; 401 338 }; 402 339 }; 403 - "@babel/plugin-proposal-class-properties-7.13.0" = { 340 + "@babel/plugin-proposal-class-properties-7.12.1" = { 404 341 name = "_at_babel_slash_plugin-proposal-class-properties"; 405 342 packageName = "@babel/plugin-proposal-class-properties"; 406 - version = "7.13.0"; 343 + version = "7.12.1"; 407 344 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.13.0.tgz"; 409 - sha512 = "KnTDjFNC1g+45ka0myZNvSBFLhNCLN+GeGYLDEA8Oq7MZ6yMgfLoIRh86GRT0FjtJhZw8JyUskP9uvj5pHM9Zg=="; 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz"; 346 + sha512 = "cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w=="; 410 347 }; 411 348 }; 412 - "@babel/plugin-proposal-dynamic-import-7.13.8" = { 349 + "@babel/plugin-proposal-dynamic-import-7.12.1" = { 413 350 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 414 351 packageName = "@babel/plugin-proposal-dynamic-import"; 415 - version = "7.13.8"; 352 + version = "7.12.1"; 416 353 src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz"; 418 - sha512 = "ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ=="; 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.12.1.tgz"; 355 + sha512 = "a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ=="; 419 356 }; 420 357 }; 421 - "@babel/plugin-proposal-export-namespace-from-7.12.13" = { 358 + "@babel/plugin-proposal-export-namespace-from-7.12.1" = { 422 359 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 423 360 packageName = "@babel/plugin-proposal-export-namespace-from"; 424 - version = "7.12.13"; 361 + version = "7.12.1"; 425 362 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz"; 427 - sha512 = "INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw=="; 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz"; 364 + sha512 = "6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw=="; 428 365 }; 429 366 }; 430 - "@babel/plugin-proposal-json-strings-7.13.8" = { 367 + "@babel/plugin-proposal-json-strings-7.12.1" = { 431 368 name = "_at_babel_slash_plugin-proposal-json-strings"; 432 369 packageName = "@babel/plugin-proposal-json-strings"; 433 - version = "7.13.8"; 370 + version = "7.12.1"; 434 371 src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz"; 436 - sha512 = "w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q=="; 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz"; 373 + sha512 = "GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw=="; 437 374 }; 438 375 }; 439 - "@babel/plugin-proposal-logical-assignment-operators-7.13.8" = { 376 + "@babel/plugin-proposal-logical-assignment-operators-7.12.1" = { 440 377 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 441 378 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 442 - version = "7.13.8"; 379 + version = "7.12.1"; 443 380 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz"; 445 - sha512 = "aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A=="; 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz"; 382 + sha512 = "k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA=="; 446 383 }; 447 384 }; 448 - "@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" = { 385 + "@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" = { 449 386 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 450 387 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 451 - version = "7.13.8"; 388 + version = "7.12.1"; 452 389 src = fetchurl { 453 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz"; 454 - sha512 = "iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A=="; 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz"; 391 + sha512 = "nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg=="; 455 392 }; 456 393 }; 457 - "@babel/plugin-proposal-numeric-separator-7.12.13" = { 394 + "@babel/plugin-proposal-numeric-separator-7.12.5" = { 458 395 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 459 396 packageName = "@babel/plugin-proposal-numeric-separator"; 460 - version = "7.12.13"; 397 + version = "7.12.5"; 461 398 src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz"; 463 - sha512 = "O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w=="; 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz"; 400 + sha512 = "UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g=="; 464 401 }; 465 402 }; 466 - "@babel/plugin-proposal-object-rest-spread-7.13.8" = { 403 + "@babel/plugin-proposal-object-rest-spread-7.12.1" = { 467 404 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 468 405 packageName = "@babel/plugin-proposal-object-rest-spread"; 469 - version = "7.13.8"; 406 + version = "7.12.1"; 470 407 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz"; 472 - sha512 = "DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g=="; 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz"; 409 + sha512 = "s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA=="; 473 410 }; 474 411 }; 475 - "@babel/plugin-proposal-optional-catch-binding-7.13.8" = { 412 + "@babel/plugin-proposal-optional-catch-binding-7.12.1" = { 476 413 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 477 414 packageName = "@babel/plugin-proposal-optional-catch-binding"; 478 - version = "7.13.8"; 415 + version = "7.12.1"; 479 416 src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz"; 481 - sha512 = "0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA=="; 417 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz"; 418 + sha512 = "hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g=="; 482 419 }; 483 420 }; 484 - "@babel/plugin-proposal-optional-chaining-7.13.8" = { 421 + "@babel/plugin-proposal-optional-chaining-7.12.1" = { 485 422 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 486 423 packageName = "@babel/plugin-proposal-optional-chaining"; 487 - version = "7.13.8"; 424 + version = "7.12.1"; 488 425 src = fetchurl { 489 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.8.tgz"; 490 - sha512 = "hpbBwbTgd7Cz1QryvwJZRo1U0k1q8uyBmeXOSQUjdg/A2TASkhR/rz7AyqZ/kS8kbpsNA80rOYbxySBJAqmhhQ=="; 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz"; 427 + sha512 = "c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw=="; 491 428 }; 492 429 }; 493 - "@babel/plugin-proposal-private-methods-7.13.0" = { 430 + "@babel/plugin-proposal-private-methods-7.12.1" = { 494 431 name = "_at_babel_slash_plugin-proposal-private-methods"; 495 432 packageName = "@babel/plugin-proposal-private-methods"; 496 - version = "7.13.0"; 433 + version = "7.12.1"; 497 434 src = fetchurl { 498 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.13.0.tgz"; 499 - sha512 = "MXyyKQd9inhx1kDYPkFRVOBXQ20ES8Pto3T7UZ92xj2mY0EVD8oAVzeyYuVfy/mxAdTSIayOvg+aVzcHV2bn6Q=="; 435 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz"; 436 + sha512 = "mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w=="; 500 437 }; 501 438 }; 502 - "@babel/plugin-proposal-unicode-property-regex-7.12.13" = { 439 + "@babel/plugin-proposal-unicode-property-regex-7.12.1" = { 503 440 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 504 441 packageName = "@babel/plugin-proposal-unicode-property-regex"; 505 - version = "7.12.13"; 442 + version = "7.12.1"; 506 443 src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz"; 508 - sha512 = "XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg=="; 444 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz"; 445 + sha512 = "MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w=="; 509 446 }; 510 447 }; 511 448 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 526 463 sha512 = "wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg=="; 527 464 }; 528 465 }; 529 - "@babel/plugin-syntax-class-properties-7.12.13" = { 466 + "@babel/plugin-syntax-class-properties-7.12.1" = { 530 467 name = "_at_babel_slash_plugin-syntax-class-properties"; 531 468 packageName = "@babel/plugin-syntax-class-properties"; 532 - version = "7.12.13"; 469 + version = "7.12.1"; 533 470 src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz"; 535 - sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA=="; 471 + url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz"; 472 + sha512 = "U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA=="; 536 473 }; 537 474 }; 538 475 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 625 562 sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg=="; 626 563 }; 627 564 }; 628 - "@babel/plugin-syntax-top-level-await-7.12.13" = { 565 + "@babel/plugin-syntax-top-level-await-7.12.1" = { 629 566 name = "_at_babel_slash_plugin-syntax-top-level-await"; 630 567 packageName = "@babel/plugin-syntax-top-level-await"; 631 - version = "7.12.13"; 568 + version = "7.12.1"; 632 569 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz"; 634 - sha512 = "A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ=="; 570 + url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz"; 571 + sha512 = "i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A=="; 635 572 }; 636 573 }; 637 - "@babel/plugin-syntax-typescript-7.12.13" = { 574 + "@babel/plugin-syntax-typescript-7.12.1" = { 638 575 name = "_at_babel_slash_plugin-syntax-typescript"; 639 576 packageName = "@babel/plugin-syntax-typescript"; 640 - version = "7.12.13"; 577 + version = "7.12.1"; 641 578 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.13.tgz"; 643 - sha512 = "cHP3u1JiUiG2LFDKbXnwVad81GvfyIOmCD6HIEId6ojrY0Drfy2q1jw7BwN7dE84+kTnBjLkXoL3IEy/3JPu2w=="; 579 + url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.12.1.tgz"; 580 + sha512 = "UZNEcCY+4Dp9yYRCAHrHDU+9ZXLYaY9MgBXSRLkB9WjYFRR6quJBumfVrEkUxrePPBwFcpWfNKXqVRQQtm7mMA=="; 644 581 }; 645 582 }; 646 - "@babel/plugin-transform-arrow-functions-7.13.0" = { 583 + "@babel/plugin-transform-arrow-functions-7.12.1" = { 647 584 name = "_at_babel_slash_plugin-transform-arrow-functions"; 648 585 packageName = "@babel/plugin-transform-arrow-functions"; 649 - version = "7.13.0"; 586 + version = "7.12.1"; 650 587 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.13.0.tgz"; 652 - sha512 = "96lgJagobeVmazXFaDrbmCLQxBysKu7U6Do3mLsx27gf5Dk85ezysrs2BZUpXD703U/Su1xTBDxxar2oa4jAGg=="; 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz"; 589 + sha512 = "5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A=="; 653 590 }; 654 591 }; 655 - "@babel/plugin-transform-async-to-generator-7.13.0" = { 592 + "@babel/plugin-transform-async-to-generator-7.12.1" = { 656 593 name = "_at_babel_slash_plugin-transform-async-to-generator"; 657 594 packageName = "@babel/plugin-transform-async-to-generator"; 658 - version = "7.13.0"; 595 + version = "7.12.1"; 659 596 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.13.0.tgz"; 661 - sha512 = "3j6E004Dx0K3eGmhxVJxwwI89CTJrce7lg3UrtFuDAVQ/2+SJ/h/aSFOeE6/n0WB1GsOffsJp6MnPQNQ8nmwhg=="; 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz"; 598 + sha512 = "SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A=="; 662 599 }; 663 600 }; 664 - "@babel/plugin-transform-block-scoped-functions-7.12.13" = { 601 + "@babel/plugin-transform-block-scoped-functions-7.12.1" = { 665 602 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 666 603 packageName = "@babel/plugin-transform-block-scoped-functions"; 667 - version = "7.12.13"; 604 + version = "7.12.1"; 668 605 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz"; 670 - sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg=="; 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz"; 607 + sha512 = "5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA=="; 671 608 }; 672 609 }; 673 - "@babel/plugin-transform-block-scoping-7.12.13" = { 610 + "@babel/plugin-transform-block-scoping-7.12.1" = { 674 611 name = "_at_babel_slash_plugin-transform-block-scoping"; 675 612 packageName = "@babel/plugin-transform-block-scoping"; 676 - version = "7.12.13"; 613 + version = "7.12.1"; 677 614 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz"; 679 - sha512 = "Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ=="; 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz"; 616 + sha512 = "zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w=="; 680 617 }; 681 618 }; 682 - "@babel/plugin-transform-classes-7.13.0" = { 619 + "@babel/plugin-transform-classes-7.12.1" = { 683 620 name = "_at_babel_slash_plugin-transform-classes"; 684 621 packageName = "@babel/plugin-transform-classes"; 685 - version = "7.13.0"; 622 + version = "7.12.1"; 686 623 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz"; 688 - sha512 = "9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g=="; 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz"; 625 + sha512 = "/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog=="; 689 626 }; 690 627 }; 691 - "@babel/plugin-transform-computed-properties-7.13.0" = { 628 + "@babel/plugin-transform-computed-properties-7.12.1" = { 692 629 name = "_at_babel_slash_plugin-transform-computed-properties"; 693 630 packageName = "@babel/plugin-transform-computed-properties"; 694 - version = "7.13.0"; 631 + version = "7.12.1"; 695 632 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.13.0.tgz"; 697 - sha512 = "RRqTYTeZkZAz8WbieLTvKUEUxZlUTdmL5KGMyZj7FnMfLNKV4+r5549aORG/mgojRmFlQMJDUupwAMiF2Q7OUg=="; 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz"; 634 + sha512 = "vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg=="; 698 635 }; 699 636 }; 700 - "@babel/plugin-transform-destructuring-7.13.0" = { 637 + "@babel/plugin-transform-destructuring-7.12.1" = { 701 638 name = "_at_babel_slash_plugin-transform-destructuring"; 702 639 packageName = "@babel/plugin-transform-destructuring"; 703 - version = "7.13.0"; 640 + version = "7.12.1"; 704 641 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.13.0.tgz"; 706 - sha512 = "zym5em7tePoNT9s964c0/KU3JPPnuq7VhIxPRefJ4/s82cD+q1mgKfuGRDMCPL0HTyKz4dISuQlCusfgCJ86HA=="; 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz"; 643 + sha512 = "fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw=="; 707 644 }; 708 645 }; 709 - "@babel/plugin-transform-dotall-regex-7.12.13" = { 646 + "@babel/plugin-transform-dotall-regex-7.12.1" = { 710 647 name = "_at_babel_slash_plugin-transform-dotall-regex"; 711 648 packageName = "@babel/plugin-transform-dotall-regex"; 712 - version = "7.12.13"; 649 + version = "7.12.1"; 713 650 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz"; 715 - sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ=="; 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz"; 652 + sha512 = "B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA=="; 716 653 }; 717 654 }; 718 - "@babel/plugin-transform-duplicate-keys-7.12.13" = { 655 + "@babel/plugin-transform-duplicate-keys-7.12.1" = { 719 656 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 720 657 packageName = "@babel/plugin-transform-duplicate-keys"; 721 - version = "7.12.13"; 658 + version = "7.12.1"; 722 659 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz"; 724 - sha512 = "NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ=="; 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz"; 661 + sha512 = "iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw=="; 725 662 }; 726 663 }; 727 - "@babel/plugin-transform-exponentiation-operator-7.12.13" = { 664 + "@babel/plugin-transform-exponentiation-operator-7.12.1" = { 728 665 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 729 666 packageName = "@babel/plugin-transform-exponentiation-operator"; 730 - version = "7.12.13"; 667 + version = "7.12.1"; 731 668 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz"; 733 - sha512 = "fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA=="; 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz"; 670 + sha512 = "7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug=="; 734 671 }; 735 672 }; 736 - "@babel/plugin-transform-for-of-7.13.0" = { 673 + "@babel/plugin-transform-for-of-7.12.1" = { 737 674 name = "_at_babel_slash_plugin-transform-for-of"; 738 675 packageName = "@babel/plugin-transform-for-of"; 739 - version = "7.13.0"; 676 + version = "7.12.1"; 740 677 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.13.0.tgz"; 742 - sha512 = "IHKT00mwUVYE0zzbkDgNRP6SRzvfGCYsOxIRz8KsiaaHCcT9BWIkO+H9QRJseHBLOGBZkHUdHiqj6r0POsdytg=="; 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz"; 679 + sha512 = "Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg=="; 743 680 }; 744 681 }; 745 - "@babel/plugin-transform-function-name-7.12.13" = { 682 + "@babel/plugin-transform-function-name-7.12.1" = { 746 683 name = "_at_babel_slash_plugin-transform-function-name"; 747 684 packageName = "@babel/plugin-transform-function-name"; 748 - version = "7.12.13"; 685 + version = "7.12.1"; 749 686 src = fetchurl { 750 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz"; 751 - sha512 = "6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ=="; 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz"; 688 + sha512 = "JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw=="; 752 689 }; 753 690 }; 754 - "@babel/plugin-transform-literals-7.12.13" = { 691 + "@babel/plugin-transform-literals-7.12.1" = { 755 692 name = "_at_babel_slash_plugin-transform-literals"; 756 693 packageName = "@babel/plugin-transform-literals"; 757 - version = "7.12.13"; 694 + version = "7.12.1"; 758 695 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz"; 760 - sha512 = "FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ=="; 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz"; 697 + sha512 = "+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ=="; 761 698 }; 762 699 }; 763 - "@babel/plugin-transform-member-expression-literals-7.12.13" = { 700 + "@babel/plugin-transform-member-expression-literals-7.12.1" = { 764 701 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 765 702 packageName = "@babel/plugin-transform-member-expression-literals"; 766 - version = "7.12.13"; 703 + version = "7.12.1"; 767 704 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz"; 769 - sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg=="; 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz"; 706 + sha512 = "1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg=="; 770 707 }; 771 708 }; 772 - "@babel/plugin-transform-modules-amd-7.13.0" = { 709 + "@babel/plugin-transform-modules-amd-7.12.1" = { 773 710 name = "_at_babel_slash_plugin-transform-modules-amd"; 774 711 packageName = "@babel/plugin-transform-modules-amd"; 775 - version = "7.13.0"; 712 + version = "7.12.1"; 776 713 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.13.0.tgz"; 778 - sha512 = "EKy/E2NHhY/6Vw5d1k3rgoobftcNUmp9fGjb9XZwQLtTctsRBOTRO7RHHxfIky1ogMN5BxN7p9uMA3SzPfotMQ=="; 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz"; 715 + sha512 = "tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ=="; 779 716 }; 780 717 }; 781 - "@babel/plugin-transform-modules-commonjs-7.13.8" = { 718 + "@babel/plugin-transform-modules-commonjs-7.12.1" = { 782 719 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 783 720 packageName = "@babel/plugin-transform-modules-commonjs"; 784 - version = "7.13.8"; 721 + version = "7.12.1"; 785 722 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.13.8.tgz"; 787 - sha512 = "9QiOx4MEGglfYZ4XOnU79OHr6vIWUakIj9b4mioN8eQIoEh+pf5p/zEB36JpDFWA12nNMiRf7bfoRvl9Rn79Bw=="; 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz"; 724 + sha512 = "dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag=="; 788 725 }; 789 726 }; 790 - "@babel/plugin-transform-modules-systemjs-7.13.8" = { 727 + "@babel/plugin-transform-modules-systemjs-7.12.1" = { 791 728 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 792 729 packageName = "@babel/plugin-transform-modules-systemjs"; 793 - version = "7.13.8"; 730 + version = "7.12.1"; 794 731 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.13.8.tgz"; 796 - sha512 = "hwqctPYjhM6cWvVIlOIe27jCIBgHCsdH2xCJVAYQm7V5yTMoilbVMi9f6wKg0rpQAOn6ZG4AOyvCqFF/hUh6+A=="; 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz"; 733 + sha512 = "Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q=="; 797 734 }; 798 735 }; 799 - "@babel/plugin-transform-modules-umd-7.13.0" = { 736 + "@babel/plugin-transform-modules-umd-7.12.1" = { 800 737 name = "_at_babel_slash_plugin-transform-modules-umd"; 801 738 packageName = "@babel/plugin-transform-modules-umd"; 802 - version = "7.13.0"; 739 + version = "7.12.1"; 803 740 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.13.0.tgz"; 805 - sha512 = "D/ILzAh6uyvkWjKKyFE/W0FzWwasv6vPTSqPcjxFqn6QpX3u8DjRVliq4F2BamO2Wee/om06Vyy+vPkNrd4wxw=="; 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz"; 742 + sha512 = "aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q=="; 806 743 }; 807 744 }; 808 - "@babel/plugin-transform-named-capturing-groups-regex-7.12.13" = { 745 + "@babel/plugin-transform-named-capturing-groups-regex-7.12.1" = { 809 746 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 810 747 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 811 - version = "7.12.13"; 748 + version = "7.12.1"; 812 749 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz"; 814 - sha512 = "Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA=="; 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz"; 751 + sha512 = "tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q=="; 815 752 }; 816 753 }; 817 - "@babel/plugin-transform-new-target-7.12.13" = { 754 + "@babel/plugin-transform-new-target-7.12.1" = { 818 755 name = "_at_babel_slash_plugin-transform-new-target"; 819 756 packageName = "@babel/plugin-transform-new-target"; 820 - version = "7.12.13"; 757 + version = "7.12.1"; 821 758 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz"; 823 - sha512 = "/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ=="; 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz"; 760 + sha512 = "+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw=="; 824 761 }; 825 762 }; 826 - "@babel/plugin-transform-object-super-7.12.13" = { 763 + "@babel/plugin-transform-object-super-7.12.1" = { 827 764 name = "_at_babel_slash_plugin-transform-object-super"; 828 765 packageName = "@babel/plugin-transform-object-super"; 829 - version = "7.12.13"; 766 + version = "7.12.1"; 830 767 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz"; 832 - sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ=="; 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz"; 769 + sha512 = "AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw=="; 833 770 }; 834 771 }; 835 - "@babel/plugin-transform-parameters-7.13.0" = { 772 + "@babel/plugin-transform-parameters-7.12.1" = { 836 773 name = "_at_babel_slash_plugin-transform-parameters"; 837 774 packageName = "@babel/plugin-transform-parameters"; 838 - version = "7.13.0"; 775 + version = "7.12.1"; 839 776 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz"; 841 - sha512 = "Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw=="; 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz"; 778 + sha512 = "xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg=="; 842 779 }; 843 780 }; 844 - "@babel/plugin-transform-property-literals-7.12.13" = { 781 + "@babel/plugin-transform-property-literals-7.12.1" = { 845 782 name = "_at_babel_slash_plugin-transform-property-literals"; 846 783 packageName = "@babel/plugin-transform-property-literals"; 847 - version = "7.12.13"; 784 + version = "7.12.1"; 848 785 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz"; 850 - sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz"; 787 + sha512 = "6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ=="; 851 788 }; 852 789 }; 853 - "@babel/plugin-transform-regenerator-7.12.13" = { 790 + "@babel/plugin-transform-regenerator-7.12.1" = { 854 791 name = "_at_babel_slash_plugin-transform-regenerator"; 855 792 packageName = "@babel/plugin-transform-regenerator"; 856 - version = "7.12.13"; 793 + version = "7.12.1"; 857 794 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz"; 859 - sha512 = "lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA=="; 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz"; 796 + sha512 = "gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng=="; 860 797 }; 861 798 }; 862 - "@babel/plugin-transform-reserved-words-7.12.13" = { 799 + "@babel/plugin-transform-reserved-words-7.12.1" = { 863 800 name = "_at_babel_slash_plugin-transform-reserved-words"; 864 801 packageName = "@babel/plugin-transform-reserved-words"; 865 - version = "7.12.13"; 802 + version = "7.12.1"; 866 803 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz"; 868 - sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg=="; 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz"; 805 + sha512 = "pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A=="; 869 806 }; 870 807 }; 871 - "@babel/plugin-transform-shorthand-properties-7.12.13" = { 808 + "@babel/plugin-transform-shorthand-properties-7.12.1" = { 872 809 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 873 810 packageName = "@babel/plugin-transform-shorthand-properties"; 874 - version = "7.12.13"; 811 + version = "7.12.1"; 875 812 src = fetchurl { 876 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz"; 877 - sha512 = "xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw=="; 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz"; 814 + sha512 = "GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw=="; 878 815 }; 879 816 }; 880 - "@babel/plugin-transform-spread-7.13.0" = { 817 + "@babel/plugin-transform-spread-7.12.1" = { 881 818 name = "_at_babel_slash_plugin-transform-spread"; 882 819 packageName = "@babel/plugin-transform-spread"; 883 - version = "7.13.0"; 820 + version = "7.12.1"; 884 821 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.13.0.tgz"; 886 - sha512 = "V6vkiXijjzYeFmQTr3dBxPtZYLPcUfY34DebOU27jIl2M/Y8Egm52Hw82CSjjPqd54GTlJs5x+CR7HeNr24ckg=="; 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz"; 823 + sha512 = "vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng=="; 887 824 }; 888 825 }; 889 - "@babel/plugin-transform-sticky-regex-7.12.13" = { 826 + "@babel/plugin-transform-sticky-regex-7.12.1" = { 890 827 name = "_at_babel_slash_plugin-transform-sticky-regex"; 891 828 packageName = "@babel/plugin-transform-sticky-regex"; 892 - version = "7.12.13"; 829 + version = "7.12.1"; 893 830 src = fetchurl { 894 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz"; 895 - sha512 = "Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg=="; 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz"; 832 + sha512 = "CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ=="; 896 833 }; 897 834 }; 898 - "@babel/plugin-transform-template-literals-7.13.0" = { 835 + "@babel/plugin-transform-template-literals-7.12.1" = { 899 836 name = "_at_babel_slash_plugin-transform-template-literals"; 900 837 packageName = "@babel/plugin-transform-template-literals"; 901 - version = "7.13.0"; 838 + version = "7.12.1"; 902 839 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.13.0.tgz"; 904 - sha512 = "d67umW6nlfmr1iehCcBv69eSUSySk1EsIS8aTDX4Xo9qajAh6mYtcl4kJrBkGXuxZPEgVr7RVfAvNW6YQkd4Mw=="; 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz"; 841 + sha512 = "b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw=="; 905 842 }; 906 843 }; 907 - "@babel/plugin-transform-typeof-symbol-7.12.13" = { 844 + "@babel/plugin-transform-typeof-symbol-7.12.1" = { 908 845 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 909 846 packageName = "@babel/plugin-transform-typeof-symbol"; 910 - version = "7.12.13"; 847 + version = "7.12.1"; 911 848 src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz"; 913 - sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ=="; 849 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz"; 850 + sha512 = "EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q=="; 914 851 }; 915 852 }; 916 - "@babel/plugin-transform-typescript-7.13.0" = { 853 + "@babel/plugin-transform-typescript-7.12.1" = { 917 854 name = "_at_babel_slash_plugin-transform-typescript"; 918 855 packageName = "@babel/plugin-transform-typescript"; 919 - version = "7.13.0"; 856 + version = "7.12.1"; 920 857 src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.13.0.tgz"; 922 - sha512 = "elQEwluzaU8R8dbVuW2Q2Y8Nznf7hnjM7+DSCd14Lo5fF63C9qNLbwZYbmZrtV9/ySpSUpkRpQXvJb6xyu4hCQ=="; 858 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.12.1.tgz"; 859 + sha512 = "VrsBByqAIntM+EYMqSm59SiMEf7qkmI9dqMt6RbD/wlwueWmYcI0FFK5Fj47pP6DRZm+3teXjosKlwcZJ5lIMw=="; 923 860 }; 924 861 }; 925 - "@babel/plugin-transform-unicode-escapes-7.12.13" = { 862 + "@babel/plugin-transform-unicode-escapes-7.12.1" = { 926 863 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 927 864 packageName = "@babel/plugin-transform-unicode-escapes"; 928 - version = "7.12.13"; 865 + version = "7.12.1"; 929 866 src = fetchurl { 930 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz"; 931 - sha512 = "0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw=="; 867 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz"; 868 + sha512 = "I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q=="; 932 869 }; 933 870 }; 934 - "@babel/plugin-transform-unicode-regex-7.12.13" = { 871 + "@babel/plugin-transform-unicode-regex-7.12.1" = { 935 872 name = "_at_babel_slash_plugin-transform-unicode-regex"; 936 873 packageName = "@babel/plugin-transform-unicode-regex"; 937 - version = "7.12.13"; 874 + version = "7.12.1"; 938 875 src = fetchurl { 939 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz"; 940 - sha512 = "mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA=="; 876 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz"; 877 + sha512 = "SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg=="; 941 878 }; 942 879 }; 943 - "@babel/preset-env-7.13.9" = { 880 + "@babel/preset-env-7.12.1" = { 944 881 name = "_at_babel_slash_preset-env"; 945 882 packageName = "@babel/preset-env"; 946 - version = "7.13.9"; 883 + version = "7.12.1"; 947 884 src = fetchurl { 948 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.13.9.tgz"; 949 - sha512 = "mcsHUlh2rIhViqMG823JpscLMesRt3QbMsv1+jhopXEb3W2wXvQ9QoiOlZI9ZbR3XqPtaFpZwEZKYqGJnGMZTQ=="; 885 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz"; 886 + sha512 = "H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg=="; 950 887 }; 951 888 }; 952 889 "@babel/preset-modules-0.1.4" = { ··· 958 895 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 959 896 }; 960 897 }; 961 - "@babel/preset-typescript-7.13.0" = { 898 + "@babel/preset-typescript-7.12.1" = { 962 899 name = "_at_babel_slash_preset-typescript"; 963 900 packageName = "@babel/preset-typescript"; 964 - version = "7.13.0"; 901 + version = "7.12.1"; 965 902 src = fetchurl { 966 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.13.0.tgz"; 967 - sha512 = "LXJwxrHy0N3f6gIJlYbLta1D9BDtHpQeqwzM0LIfjDlr6UE/D5Mc7W4iDiQzaE+ks0sTjT26ArcHWnJVt0QiHw=="; 903 + url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz"; 904 + sha512 = "hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw=="; 968 905 }; 969 906 }; 970 - "@babel/runtime-7.13.9" = { 907 + "@babel/runtime-7.12.5" = { 971 908 name = "_at_babel_slash_runtime"; 972 909 packageName = "@babel/runtime"; 973 - version = "7.13.9"; 910 + version = "7.12.5"; 974 911 src = fetchurl { 975 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.13.9.tgz"; 976 - sha512 = "aY2kU+xgJ3dJ1eU6FMB9EH8dIe8dmusF1xEku52joLvw6eAFN0AI+WxCLDnpev2LEejWBAy2sBvBOBAjI3zmvA=="; 912 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.12.5.tgz"; 913 + sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 977 914 }; 978 915 }; 979 - "@babel/template-7.12.13" = { 916 + "@babel/template-7.10.4" = { 980 917 name = "_at_babel_slash_template"; 981 918 packageName = "@babel/template"; 982 - version = "7.12.13"; 919 + version = "7.10.4"; 983 920 src = fetchurl { 984 - url = "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz"; 985 - sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA=="; 921 + url = "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz"; 922 + sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA=="; 923 + }; 924 + }; 925 + "@babel/template-7.12.7" = { 926 + name = "_at_babel_slash_template"; 927 + packageName = "@babel/template"; 928 + version = "7.12.7"; 929 + src = fetchurl { 930 + url = "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz"; 931 + sha512 = "GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow=="; 986 932 }; 987 933 }; 988 - "@babel/traverse-7.13.0" = { 934 + "@babel/traverse-7.12.5" = { 989 935 name = "_at_babel_slash_traverse"; 990 936 packageName = "@babel/traverse"; 991 - version = "7.13.0"; 937 + version = "7.12.5"; 992 938 src = fetchurl { 993 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.0.tgz"; 994 - sha512 = "xys5xi5JEhzC3RzEmSGrs/b3pJW/o87SypZ+G/PhaE7uqVQNv/jlmVIBXuoh5atqQ434LfXV+sf23Oxj0bchJQ=="; 939 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz"; 940 + sha512 = "xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA=="; 995 941 }; 996 942 }; 997 - "@babel/traverse-7.13.13" = { 943 + "@babel/traverse-7.12.9" = { 998 944 name = "_at_babel_slash_traverse"; 999 945 packageName = "@babel/traverse"; 1000 - version = "7.13.13"; 946 + version = "7.12.9"; 1001 947 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.13.13.tgz"; 1003 - sha512 = "CblEcwmXKR6eP43oQGG++0QMTtCjAsa3frUuzHoiIJWpaIIi8dwMyEFUJoXRLxagGqCK+jALRwIO+o3R9p/uUg=="; 948 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz"; 949 + sha512 = "iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw=="; 1004 950 }; 1005 951 }; 1006 - "@babel/types-7.13.0" = { 952 + "@babel/types-7.12.6" = { 1007 953 name = "_at_babel_slash_types"; 1008 954 packageName = "@babel/types"; 1009 - version = "7.13.0"; 955 + version = "7.12.6"; 1010 956 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@babel/types/-/types-7.13.0.tgz"; 1012 - sha512 = "hE+HE8rnG1Z6Wzo+MhaKE5lM5eMx71T4EHJgku2E3xIfaULhDcxiiRxUYgwX8qwP1BBSlag+TdGOt6JAidIZTA=="; 957 + url = "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz"; 958 + sha512 = "hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA=="; 1013 959 }; 1014 960 }; 1015 - "@babel/types-7.13.13" = { 961 + "@babel/types-7.12.7" = { 1016 962 name = "_at_babel_slash_types"; 1017 963 packageName = "@babel/types"; 1018 - version = "7.13.13"; 964 + version = "7.12.7"; 1019 965 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@babel/types/-/types-7.13.13.tgz"; 1021 - sha512 = "kt+EpC6qDfIaqlP+DIbIJOclYy/A1YXs9dAf/ljbi+39Bcbc073H6jKVpXEr/EoIh5anGn5xq/yRVzKl+uIc9w=="; 966 + url = "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz"; 967 + sha512 = "MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ=="; 1022 968 }; 1023 969 }; 1024 970 "@bcoe/v8-coverage-0.2.3" = { ··· 1048 994 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 1049 995 }; 1050 996 }; 1051 - "@eslint/eslintrc-0.4.0" = { 997 + "@eslint/eslintrc-0.2.1" = { 1052 998 name = "_at_eslint_slash_eslintrc"; 1053 999 packageName = "@eslint/eslintrc"; 1054 - version = "0.4.0"; 1000 + version = "0.2.1"; 1055 1001 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 1057 - sha512 = "2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog=="; 1002 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz"; 1003 + sha512 = "XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA=="; 1058 1004 }; 1059 1005 }; 1060 1006 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 1066 1012 sha512 = "VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ=="; 1067 1013 }; 1068 1014 }; 1069 - "@istanbuljs/schema-0.1.3" = { 1015 + "@istanbuljs/schema-0.1.2" = { 1070 1016 name = "_at_istanbuljs_slash_schema"; 1071 1017 packageName = "@istanbuljs/schema"; 1072 - version = "0.1.3"; 1018 + version = "0.1.2"; 1073 1019 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"; 1075 - sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 1020 + url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz"; 1021 + sha512 = "tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw=="; 1076 1022 }; 1077 1023 }; 1078 1024 "@jest/console-26.6.2" = { ··· 1174 1120 sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 1175 1121 }; 1176 1122 }; 1177 - "@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" = { 1123 + "@nicolo-ribaudo/chokidar-2-2.1.8" = { 1178 1124 name = "_at_nicolo-ribaudo_slash_chokidar-2"; 1179 1125 packageName = "@nicolo-ribaudo/chokidar-2"; 1180 - version = "2.1.8-no-fsevents"; 1126 + version = "2.1.8"; 1181 1127 src = fetchurl { 1182 - url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz"; 1183 - sha512 = "+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w=="; 1128 + url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8.tgz"; 1129 + sha512 = "FohwULwAebCUKi/akMFyGi7jfc7JXTeMHzKxuP3umRd9mK/2Y7/SMBSI2jX+YLopPXi+PF9l307NmpfxTdCegA=="; 1184 1130 }; 1185 1131 }; 1186 - "@nodelib/fs.scandir-2.1.4" = { 1132 + "@nodelib/fs.scandir-2.1.3" = { 1187 1133 name = "_at_nodelib_slash_fs.scandir"; 1188 1134 packageName = "@nodelib/fs.scandir"; 1189 - version = "2.1.4"; 1135 + version = "2.1.3"; 1190 1136 src = fetchurl { 1191 - url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz"; 1192 - sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA=="; 1137 + url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz"; 1138 + sha512 = "eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw=="; 1193 1139 }; 1194 1140 }; 1195 - "@nodelib/fs.stat-2.0.4" = { 1141 + "@nodelib/fs.stat-2.0.3" = { 1196 1142 name = "_at_nodelib_slash_fs.stat"; 1197 1143 packageName = "@nodelib/fs.stat"; 1198 - version = "2.0.4"; 1144 + version = "2.0.3"; 1199 1145 src = fetchurl { 1200 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz"; 1201 - sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q=="; 1146 + url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz"; 1147 + sha512 = "bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA=="; 1202 1148 }; 1203 1149 }; 1204 - "@nodelib/fs.walk-1.2.6" = { 1150 + "@nodelib/fs.walk-1.2.4" = { 1205 1151 name = "_at_nodelib_slash_fs.walk"; 1206 1152 packageName = "@nodelib/fs.walk"; 1207 - version = "1.2.6"; 1153 + version = "1.2.4"; 1208 1154 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz"; 1210 - sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow=="; 1155 + url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz"; 1156 + sha512 = "1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ=="; 1211 1157 }; 1212 1158 }; 1213 - "@serialport/binding-abstract-9.0.7" = { 1159 + "@serialport/binding-abstract-9.0.2" = { 1214 1160 name = "_at_serialport_slash_binding-abstract"; 1215 1161 packageName = "@serialport/binding-abstract"; 1216 - version = "9.0.7"; 1162 + version = "9.0.2"; 1217 1163 src = fetchurl { 1218 - url = "https://registry.npmjs.org/@serialport/binding-abstract/-/binding-abstract-9.0.7.tgz"; 1219 - sha512 = "g1ncCMIG9rMsxo/28ObYmXZcHThlvtZygsCANmyMUuFS7SwXY4+PhcEnt2+ZcMkEDNRiOklT+ngtIVx5GGpt/A=="; 1164 + url = "https://registry.npmjs.org/@serialport/binding-abstract/-/binding-abstract-9.0.2.tgz"; 1165 + sha512 = "kyMX6usn+VLpidt0YsDq5JwztIan9TPCX6skr0XcalOxI8I7w+/2qVZJzjgo2fSqDnPRcU2jMWTytwzEXFODvQ=="; 1220 1166 }; 1221 1167 }; 1222 - "@serialport/binding-mock-9.0.7" = { 1168 + "@serialport/binding-mock-9.0.2" = { 1223 1169 name = "_at_serialport_slash_binding-mock"; 1224 1170 packageName = "@serialport/binding-mock"; 1225 - version = "9.0.7"; 1171 + version = "9.0.2"; 1226 1172 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@serialport/binding-mock/-/binding-mock-9.0.7.tgz"; 1228 - sha512 = "aR8H+htZwwZZkVb1MdbnNvGWw8eXVRqQ2qPhkbKyx0N/LY5aVIgCgT98Kt1YylLsG7SzNG+Jbhd4wzwEuPVT5Q=="; 1173 + url = "https://registry.npmjs.org/@serialport/binding-mock/-/binding-mock-9.0.2.tgz"; 1174 + sha512 = "HfrvJ/LXULHk8w63CGxwDNiDidFgDX8BnadY+cgVS6yHMHikbhLCLjCmUKsKBWaGKRqOznl0w+iUl7TMi1lkXQ=="; 1229 1175 }; 1230 1176 }; 1231 - "@serialport/bindings-9.0.4" = { 1177 + "@serialport/bindings-9.0.2" = { 1232 1178 name = "_at_serialport_slash_bindings"; 1233 1179 packageName = "@serialport/bindings"; 1234 - version = "9.0.4"; 1180 + version = "9.0.2"; 1235 1181 src = fetchurl { 1236 - url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.4.tgz"; 1237 - sha512 = "6dlE1vm5c1xk667f1Zm7D+msbHJ9jdnUr9l8DResKpj2iCBzbCNsW+yCYq26WxzXWc1L2HUaS3/aL+k0wm5amg=="; 1182 + url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.2.tgz"; 1183 + sha512 = "kQ3co4aGwwbUqkRdJ7UfdlbLB5dUQwNfSglexC8iv65D5HXfjSBR1bE0XUH8PH/v/6Dh6CSnwf6OP0I3H5vMWQ=="; 1238 1184 }; 1239 1185 }; 1240 - "@serialport/parser-byte-length-9.0.7" = { 1186 + "@serialport/parser-byte-length-9.0.1" = { 1241 1187 name = "_at_serialport_slash_parser-byte-length"; 1242 1188 packageName = "@serialport/parser-byte-length"; 1243 - version = "9.0.7"; 1189 + version = "9.0.1"; 1244 1190 src = fetchurl { 1245 - url = "https://registry.npmjs.org/@serialport/parser-byte-length/-/parser-byte-length-9.0.7.tgz"; 1246 - sha512 = "evf7oOOSBMBn2AZZbgBFMRIyEzlsyQkhqaPm7IBCPTxMDXRf4tKkFYJHYZB0/6d1W4eI0meH079UqmSsh/uoDA=="; 1191 + url = "https://registry.npmjs.org/@serialport/parser-byte-length/-/parser-byte-length-9.0.1.tgz"; 1192 + sha512 = "1Ikv4lgCNw8OMf35yCpgzjHwkpgBEkhBuXFXIdWZk+ixaHFLlAtp03QxGPZBmzHMK58WDmEQoBHC1V5BkkAKSQ=="; 1247 1193 }; 1248 1194 }; 1249 - "@serialport/parser-cctalk-9.0.7" = { 1195 + "@serialport/parser-cctalk-9.0.1" = { 1250 1196 name = "_at_serialport_slash_parser-cctalk"; 1251 1197 packageName = "@serialport/parser-cctalk"; 1252 - version = "9.0.7"; 1198 + version = "9.0.1"; 1253 1199 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@serialport/parser-cctalk/-/parser-cctalk-9.0.7.tgz"; 1255 - sha512 = "ert5jhMkeiTfr44TkbdySC09J8UwAsf/RxBucVN5Mz5enG509RggnkfFi4mfj3UCG2vZ7qsmM6gtZ62DshY02Q=="; 1200 + url = "https://registry.npmjs.org/@serialport/parser-cctalk/-/parser-cctalk-9.0.1.tgz"; 1201 + sha512 = "GtMda2DeJ+23bNqOc79JYV06dax2n3FLLFM3zA7nfReCOi98QbuDj4TUbFESMOnp4DB0oMO0GYHCR9gHOedTkg=="; 1256 1202 }; 1257 1203 }; 1258 - "@serialport/parser-delimiter-9.0.7" = { 1204 + "@serialport/parser-delimiter-9.0.1" = { 1259 1205 name = "_at_serialport_slash_parser-delimiter"; 1260 1206 packageName = "@serialport/parser-delimiter"; 1261 - version = "9.0.7"; 1207 + version = "9.0.1"; 1262 1208 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@serialport/parser-delimiter/-/parser-delimiter-9.0.7.tgz"; 1264 - sha512 = "Vb2NPeXPZ/28M4m5x4OAHFd8jRAeddNCgvL+Q+H/hqFPY1w47JcMLchC7pigRW8Cnt1fklmzfwdNQ8Fb+kMkxQ=="; 1209 + url = "https://registry.npmjs.org/@serialport/parser-delimiter/-/parser-delimiter-9.0.1.tgz"; 1210 + sha512 = "+oaSl5zEu47OlrRiF5p5tn2qgGqYuhVcE+NI+Pv4E1xsNB/A0fFxxMv/8XUw466CRLEJ5IESIB9qbFvKE6ltaQ=="; 1265 1211 }; 1266 1212 }; 1267 - "@serialport/parser-inter-byte-timeout-9.0.7" = { 1268 - name = "_at_serialport_slash_parser-inter-byte-timeout"; 1269 - packageName = "@serialport/parser-inter-byte-timeout"; 1270 - version = "9.0.7"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/@serialport/parser-inter-byte-timeout/-/parser-inter-byte-timeout-9.0.7.tgz"; 1273 - sha512 = "lUZ3cwgUluBvJ1jf+0LQsqoiPYAokDO6+fRCw9HCfnrF/OS60Gm4rxuyo2uQIueqZkJ7NIFP+ibKsULrA47AEA=="; 1274 - }; 1275 - }; 1276 - "@serialport/parser-readline-9.0.7" = { 1213 + "@serialport/parser-readline-9.0.1" = { 1277 1214 name = "_at_serialport_slash_parser-readline"; 1278 1215 packageName = "@serialport/parser-readline"; 1279 - version = "9.0.7"; 1216 + version = "9.0.1"; 1280 1217 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@serialport/parser-readline/-/parser-readline-9.0.7.tgz"; 1282 - sha512 = "ydoLbgVQQPxWrwbe3Fhh4XnZexbkEQAC6M/qgRTzjnKvTjrD61CJNxLc3vyDaAPI9bJIhTiI7eTX3JB5jJv8Hg=="; 1218 + url = "https://registry.npmjs.org/@serialport/parser-readline/-/parser-readline-9.0.1.tgz"; 1219 + sha512 = "38058gxvyfgdeLpg3aUyD98NuWkVB9yyTLpcSdeQ3GYiupivwH6Tdy/SKPmxlHIw3Ml2qil5MR2mtW2fLPB5CQ=="; 1283 1220 }; 1284 1221 }; 1285 - "@serialport/parser-ready-9.0.7" = { 1222 + "@serialport/parser-ready-9.0.1" = { 1286 1223 name = "_at_serialport_slash_parser-ready"; 1287 1224 packageName = "@serialport/parser-ready"; 1288 - version = "9.0.7"; 1225 + version = "9.0.1"; 1289 1226 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@serialport/parser-ready/-/parser-ready-9.0.7.tgz"; 1291 - sha512 = "3qYhI4cNUPAYqVYvdwV57Y+PVRl4dJf1fPBtMoWtwDgwopsAXTR93WCs49WuUq9JCyNW+8Hrfqv8x8eNAD5Dqg=="; 1227 + url = "https://registry.npmjs.org/@serialport/parser-ready/-/parser-ready-9.0.1.tgz"; 1228 + sha512 = "lgzGkVJaaV1rJVx26WwI2UKyPxc0vu1rsOeldzA3VVbF+ABrblUQA06+cRPpT6k96GY+X4+1fB1rWuPpt8HbgQ=="; 1292 1229 }; 1293 1230 }; 1294 - "@serialport/parser-regex-9.0.7" = { 1231 + "@serialport/parser-regex-9.0.1" = { 1295 1232 name = "_at_serialport_slash_parser-regex"; 1296 1233 packageName = "@serialport/parser-regex"; 1297 - version = "9.0.7"; 1234 + version = "9.0.1"; 1298 1235 src = fetchurl { 1299 - url = "https://registry.npmjs.org/@serialport/parser-regex/-/parser-regex-9.0.7.tgz"; 1300 - sha512 = "5XF+FXbhqQ/5bVKM4NaGs1m+E9KjfmeCx/obwsKaUZognQF67jwoTfjJJWNP/21jKfxdl8XoCYjZjASl3XKRAw=="; 1236 + url = "https://registry.npmjs.org/@serialport/parser-regex/-/parser-regex-9.0.1.tgz"; 1237 + sha512 = "BHTV+Lkl+J8hSecFtDRENaR4fgA6tw44J+dmA1vEKEyum0iDN4bihbu8yvztYyo4PhBGUKDfm/PnD5EkJm0dPA=="; 1301 1238 }; 1302 1239 }; 1303 - "@serialport/stream-9.0.7" = { 1240 + "@serialport/stream-9.0.2" = { 1304 1241 name = "_at_serialport_slash_stream"; 1305 1242 packageName = "@serialport/stream"; 1306 - version = "9.0.7"; 1243 + version = "9.0.2"; 1307 1244 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@serialport/stream/-/stream-9.0.7.tgz"; 1309 - sha512 = "c/h7HPAeFiryD9iTGlaSvPqHFHSZ0NMQHxC4rcmKS2Vu3qJuEtkBdTLABwsMp7iWEiSnI4KC3s7bHapaXP06FQ=="; 1245 + url = "https://registry.npmjs.org/@serialport/stream/-/stream-9.0.2.tgz"; 1246 + sha512 = "0RkVe+gvwZu/PPfbb7ExQ+euGoCTGKD/B8TQ5fuhe+eKk1sh73RwjKmu9gp6veSNqx9Zljnh1dF6mhdEKWZpSA=="; 1310 1247 }; 1311 1248 }; 1312 - "@sinonjs/commons-1.8.2" = { 1249 + "@sinonjs/commons-1.8.1" = { 1313 1250 name = "_at_sinonjs_slash_commons"; 1314 1251 packageName = "@sinonjs/commons"; 1315 - version = "1.8.2"; 1252 + version = "1.8.1"; 1316 1253 src = fetchurl { 1317 - url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.2.tgz"; 1318 - sha512 = "sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw=="; 1254 + url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz"; 1255 + sha512 = "892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw=="; 1319 1256 }; 1320 1257 }; 1321 1258 "@sinonjs/fake-timers-6.0.1" = { ··· 1336 1273 sha512 = "wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ=="; 1337 1274 }; 1338 1275 }; 1339 - "@types/babel__core-7.1.14" = { 1340 - name = "_at_types_slash_babel__core"; 1341 - packageName = "@types/babel__core"; 1342 - version = "7.1.14"; 1343 - src = fetchurl { 1344 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.14.tgz"; 1345 - sha512 = "zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g=="; 1346 - }; 1347 - }; 1348 1276 "@types/babel__generator-7.6.2" = { 1349 1277 name = "_at_types_slash_babel__generator"; 1350 1278 packageName = "@types/babel__generator"; ··· 1363 1291 sha512 = "NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A=="; 1364 1292 }; 1365 1293 }; 1366 - "@types/babel__traverse-7.11.0" = { 1294 + "@types/babel__traverse-7.0.15" = { 1367 1295 name = "_at_types_slash_babel__traverse"; 1368 1296 packageName = "@types/babel__traverse"; 1369 - version = "7.11.0"; 1297 + version = "7.0.15"; 1370 1298 src = fetchurl { 1371 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz"; 1372 - sha512 = "kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg=="; 1299 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz"; 1300 + sha512 = "Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A=="; 1373 1301 }; 1374 1302 }; 1375 - "@types/babel__traverse-7.11.1" = { 1303 + "@types/babel__traverse-7.0.16" = { 1376 1304 name = "_at_types_slash_babel__traverse"; 1377 1305 packageName = "@types/babel__traverse"; 1378 - version = "7.11.1"; 1306 + version = "7.0.16"; 1379 1307 src = fetchurl { 1380 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.1.tgz"; 1381 - sha512 = "Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw=="; 1308 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.16.tgz"; 1309 + sha512 = "S63Dt4CZOkuTmpLGGWtT/mQdVORJOpx6SZWGVaP56dda/0Nx5nEe82K7/LAm8zYr6SfMq+1N2OreIOrHAx656w=="; 1382 1310 }; 1383 1311 }; 1384 1312 "@types/debounce-1.2.0" = { ··· 1399 1327 sha512 = "Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ=="; 1400 1328 }; 1401 1329 }; 1402 - "@types/graceful-fs-4.1.5" = { 1330 + "@types/graceful-fs-4.1.4" = { 1403 1331 name = "_at_types_slash_graceful-fs"; 1404 1332 packageName = "@types/graceful-fs"; 1405 - version = "4.1.5"; 1333 + version = "4.1.4"; 1406 1334 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz"; 1408 - sha512 = "anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw=="; 1335 + url = "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.4.tgz"; 1336 + sha512 = "mWA/4zFQhfvOA8zWkXobwJvBD7vzcxgrOQ0J5CH1votGqdq9m7+FwtGaqyCZqC3NyyBkc9z4m+iry4LlqcMWJg=="; 1409 1337 }; 1410 1338 }; 1411 1339 "@types/istanbul-lib-coverage-2.0.3" = { ··· 1435 1363 sha512 = "nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="; 1436 1364 }; 1437 1365 }; 1438 - "@types/jest-26.0.20" = { 1366 + "@types/jest-26.0.15" = { 1439 1367 name = "_at_types_slash_jest"; 1440 1368 packageName = "@types/jest"; 1441 - version = "26.0.20"; 1369 + version = "26.0.15"; 1442 1370 src = fetchurl { 1443 - url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.20.tgz"; 1444 - sha512 = "9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA=="; 1371 + url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.15.tgz"; 1372 + sha512 = "s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog=="; 1445 1373 }; 1446 1374 }; 1447 - "@types/json-schema-7.0.7" = { 1375 + "@types/json-schema-7.0.6" = { 1448 1376 name = "_at_types_slash_json-schema"; 1449 1377 packageName = "@types/json-schema"; 1450 - version = "7.0.7"; 1378 + version = "7.0.6"; 1451 1379 src = fetchurl { 1452 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz"; 1453 - sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA=="; 1380 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz"; 1381 + sha512 = "3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw=="; 1454 1382 }; 1455 1383 }; 1456 1384 "@types/nedb-1.8.11" = { ··· 1462 1390 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 1463 1391 }; 1464 1392 }; 1465 - "@types/node-14.14.31" = { 1393 + "@types/node-14.14.10" = { 1466 1394 name = "_at_types_slash_node"; 1467 1395 packageName = "@types/node"; 1468 - version = "14.14.31"; 1396 + version = "14.14.10"; 1469 1397 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz"; 1471 - sha512 = "vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g=="; 1398 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz"; 1399 + sha512 = "J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ=="; 1472 1400 }; 1473 1401 }; 1474 - "@types/node-14.14.37" = { 1402 + "@types/node-14.14.7" = { 1475 1403 name = "_at_types_slash_node"; 1476 1404 packageName = "@types/node"; 1477 - version = "14.14.37"; 1405 + version = "14.14.7"; 1478 1406 src = fetchurl { 1479 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz"; 1480 - sha512 = "XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw=="; 1407 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.7.tgz"; 1408 + sha512 = "Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg=="; 1481 1409 }; 1482 1410 }; 1483 1411 "@types/normalize-package-data-2.4.0" = { ··· 1489 1417 sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA=="; 1490 1418 }; 1491 1419 }; 1492 - "@types/prettier-2.2.2" = { 1420 + "@types/prettier-2.1.5" = { 1493 1421 name = "_at_types_slash_prettier"; 1494 1422 packageName = "@types/prettier"; 1495 - version = "2.2.2"; 1423 + version = "2.1.5"; 1496 1424 src = fetchurl { 1497 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.2.tgz"; 1498 - sha512 = "i99hy7Ki19EqVOl77WplDrvgNugHnsSjECVR/wUrzw2TJXz1zlUfT2ngGckR6xN7yFYaijsMAqPkOLx9HgUqHg=="; 1499 - }; 1500 - }; 1501 - "@types/prettier-2.2.3" = { 1502 - name = "_at_types_slash_prettier"; 1503 - packageName = "@types/prettier"; 1504 - version = "2.2.3"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.2.3.tgz"; 1507 - sha512 = "PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA=="; 1425 + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.5.tgz"; 1426 + sha512 = "UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ=="; 1508 1427 }; 1509 1428 }; 1510 1429 "@types/serialport-8.0.1" = { ··· 1525 1444 sha512 = "RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw=="; 1526 1445 }; 1527 1446 }; 1528 - "@types/yargs-15.0.13" = { 1447 + "@types/yargs-15.0.10" = { 1529 1448 name = "_at_types_slash_yargs"; 1530 1449 packageName = "@types/yargs"; 1531 - version = "15.0.13"; 1450 + version = "15.0.10"; 1532 1451 src = fetchurl { 1533 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.13.tgz"; 1534 - sha512 = "kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ=="; 1452 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz"; 1453 + sha512 = "z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ=="; 1535 1454 }; 1536 1455 }; 1537 - "@types/yargs-parser-20.2.0" = { 1456 + "@types/yargs-15.0.9" = { 1457 + name = "_at_types_slash_yargs"; 1458 + packageName = "@types/yargs"; 1459 + version = "15.0.9"; 1460 + src = fetchurl { 1461 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz"; 1462 + sha512 = "HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g=="; 1463 + }; 1464 + }; 1465 + "@types/yargs-parser-15.0.0" = { 1538 1466 name = "_at_types_slash_yargs-parser"; 1539 1467 packageName = "@types/yargs-parser"; 1540 - version = "20.2.0"; 1468 + version = "15.0.0"; 1541 1469 src = fetchurl { 1542 - url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz"; 1543 - sha512 = "37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA=="; 1470 + url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-15.0.0.tgz"; 1471 + sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 1544 1472 }; 1545 1473 }; 1546 - "@typescript-eslint/eslint-plugin-4.16.1" = { 1474 + "@typescript-eslint/eslint-plugin-4.7.0" = { 1547 1475 name = "_at_typescript-eslint_slash_eslint-plugin"; 1548 1476 packageName = "@typescript-eslint/eslint-plugin"; 1549 - version = "4.16.1"; 1477 + version = "4.7.0"; 1550 1478 src = fetchurl { 1551 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.16.1.tgz"; 1552 - sha512 = "SK777klBdlkUZpZLC1mPvyOWk9yAFCWmug13eAjVQ4/Q1LATE/NbcQL1xDHkptQkZOLnPmLUA1Y54m8dqYwnoQ=="; 1479 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.7.0.tgz"; 1480 + sha512 = "li9aiSVBBd7kU5VlQlT1AqP0uWGDK6JYKUQ9cVDnOg34VNnd9t4jr0Yqc/bKxJr/tDCPDaB4KzoSFN9fgVxe/Q=="; 1553 1481 }; 1554 1482 }; 1555 - "@typescript-eslint/experimental-utils-4.16.1" = { 1483 + "@typescript-eslint/experimental-utils-4.7.0" = { 1556 1484 name = "_at_typescript-eslint_slash_experimental-utils"; 1557 1485 packageName = "@typescript-eslint/experimental-utils"; 1558 - version = "4.16.1"; 1486 + version = "4.7.0"; 1559 1487 src = fetchurl { 1560 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.16.1.tgz"; 1561 - sha512 = "0Hm3LSlMYFK17jO4iY3un1Ve9x1zLNn4EM50Lia+0EV99NdbK+cn0er7HC7IvBA23mBg3P+8dUkMXy4leL33UQ=="; 1488 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.7.0.tgz"; 1489 + sha512 = "cymzovXAiD4EF+YoHAB5Oh02MpnXjvyaOb+v+BdpY7lsJXZQN34oIETeUwVT2XfV9rSNpXaIcknDLfupO/tUoA=="; 1562 1490 }; 1563 1491 }; 1564 - "@typescript-eslint/experimental-utils-4.19.0" = { 1492 + "@typescript-eslint/experimental-utils-4.8.2" = { 1565 1493 name = "_at_typescript-eslint_slash_experimental-utils"; 1566 1494 packageName = "@typescript-eslint/experimental-utils"; 1567 - version = "4.19.0"; 1495 + version = "4.8.2"; 1568 1496 src = fetchurl { 1569 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.19.0.tgz"; 1570 - sha512 = "9/23F1nnyzbHKuoTqFN1iXwN3bvOm/PRIXSBR3qFAYotK/0LveEOHr5JT1WZSzcD6BESl8kPOG3OoDRKO84bHA=="; 1497 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.8.2.tgz"; 1498 + sha512 = "hpTw6o6IhBZEsQsjuw/4RWmceRyESfAiEzAEnXHKG1X7S5DXFaZ4IO1JO7CW1aQ604leQBzjZmuMI9QBCAJX8Q=="; 1571 1499 }; 1572 1500 }; 1573 - "@typescript-eslint/parser-4.16.1" = { 1501 + "@typescript-eslint/parser-4.7.0" = { 1574 1502 name = "_at_typescript-eslint_slash_parser"; 1575 1503 packageName = "@typescript-eslint/parser"; 1576 - version = "4.16.1"; 1504 + version = "4.7.0"; 1577 1505 src = fetchurl { 1578 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.16.1.tgz"; 1579 - sha512 = "/c0LEZcDL5y8RyI1zLcmZMvJrsR6SM1uetskFkoh3dvqDKVXPsXI+wFB/CbVw7WkEyyTKobC1mUNp/5y6gRvXg=="; 1506 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.7.0.tgz"; 1507 + sha512 = "+meGV8bMP1sJHBI2AFq1GeTwofcGiur8LoIr6v+rEmD9knyCqDlrQcFHR0KDDfldHIFDU/enZ53fla6ReF4wRw=="; 1580 1508 }; 1581 1509 }; 1582 - "@typescript-eslint/scope-manager-4.16.1" = { 1510 + "@typescript-eslint/scope-manager-4.7.0" = { 1583 1511 name = "_at_typescript-eslint_slash_scope-manager"; 1584 1512 packageName = "@typescript-eslint/scope-manager"; 1585 - version = "4.16.1"; 1513 + version = "4.7.0"; 1586 1514 src = fetchurl { 1587 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.16.1.tgz"; 1588 - sha512 = "6IlZv9JaurqV0jkEg923cV49aAn8V6+1H1DRfhRcvZUrptQ+UtSKHb5kwTayzOYTJJ/RsYZdcvhOEKiBLyc0Cw=="; 1515 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.7.0.tgz"; 1516 + sha512 = "ILITvqwDJYbcDCROj6+Ob0oCKNg3SH46iWcNcTIT9B5aiVssoTYkhKjxOMNzR1F7WSJkik4zmuqve5MdnA0DyA=="; 1589 1517 }; 1590 1518 }; 1591 - "@typescript-eslint/scope-manager-4.19.0" = { 1519 + "@typescript-eslint/scope-manager-4.8.2" = { 1592 1520 name = "_at_typescript-eslint_slash_scope-manager"; 1593 1521 packageName = "@typescript-eslint/scope-manager"; 1594 - version = "4.19.0"; 1522 + version = "4.8.2"; 1595 1523 src = fetchurl { 1596 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.19.0.tgz"; 1597 - sha512 = "GGy4Ba/hLXwJXygkXqMzduqOMc+Na6LrJTZXJWVhRrSuZeXmu8TAnniQVKgj8uTRKe4igO2ysYzH+Np879G75g=="; 1524 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.8.2.tgz"; 1525 + sha512 = "qHQ8ODi7mMin4Sq2eh/6eu03uVzsf5TX+J43xRmiq8ujng7ViQSHNPLOHGw/Wr5dFEoxq/ubKhzClIIdQy5q3g=="; 1598 1526 }; 1599 1527 }; 1600 - "@typescript-eslint/types-4.16.1" = { 1528 + "@typescript-eslint/types-4.7.0" = { 1601 1529 name = "_at_typescript-eslint_slash_types"; 1602 1530 packageName = "@typescript-eslint/types"; 1603 - version = "4.16.1"; 1531 + version = "4.7.0"; 1604 1532 src = fetchurl { 1605 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.16.1.tgz"; 1606 - sha512 = "nnKqBwMgRlhzmJQF8tnFDZWfunXmJyuXj55xc8Kbfup4PbkzdoDXZvzN8//EiKR27J6vUSU8j4t37yUuYPiLqA=="; 1533 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.7.0.tgz"; 1534 + sha512 = "uLszFe0wExJc+I7q0Z/+BnP7wao/kzX0hB5vJn4LIgrfrMLgnB2UXoReV19lkJQS1a1mHWGGODSxnBx6JQC3Sg=="; 1607 1535 }; 1608 1536 }; 1609 - "@typescript-eslint/types-4.19.0" = { 1537 + "@typescript-eslint/types-4.8.2" = { 1610 1538 name = "_at_typescript-eslint_slash_types"; 1611 1539 packageName = "@typescript-eslint/types"; 1612 - version = "4.19.0"; 1540 + version = "4.8.2"; 1613 1541 src = fetchurl { 1614 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.19.0.tgz"; 1615 - sha512 = "A4iAlexVvd4IBsSTNxdvdepW0D4uR/fwxDrKUa+iEY9UWvGREu2ZyB8ylTENM1SH8F7bVC9ac9+si3LWNxcBuA=="; 1542 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.8.2.tgz"; 1543 + sha512 = "z1/AVcVF8ju5ObaHe2fOpZYEQrwHyZ7PTOlmjd3EoFeX9sv7UekQhfrCmgUO7PruLNfSHrJGQvrW3Q7xQ8EoAw=="; 1616 1544 }; 1617 1545 }; 1618 - "@typescript-eslint/typescript-estree-4.16.1" = { 1546 + "@typescript-eslint/typescript-estree-4.7.0" = { 1619 1547 name = "_at_typescript-eslint_slash_typescript-estree"; 1620 1548 packageName = "@typescript-eslint/typescript-estree"; 1621 - version = "4.16.1"; 1549 + version = "4.7.0"; 1622 1550 src = fetchurl { 1623 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.16.1.tgz"; 1624 - sha512 = "m8I/DKHa8YbeHt31T+UGd/l8Kwr0XCTCZL3H4HMvvLCT7HU9V7yYdinTOv1gf/zfqNeDcCgaFH2BMsS8x6NvJg=="; 1551 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.7.0.tgz"; 1552 + sha512 = "5XZRQznD1MfUmxu1t8/j2Af4OxbA7EFU2rbo0No7meb46eHgGkSieFdfV6omiC/DGIBhH9H9gXn7okBbVOm8jw=="; 1625 1553 }; 1626 1554 }; 1627 - "@typescript-eslint/typescript-estree-4.19.0" = { 1555 + "@typescript-eslint/typescript-estree-4.8.2" = { 1628 1556 name = "_at_typescript-eslint_slash_typescript-estree"; 1629 1557 packageName = "@typescript-eslint/typescript-estree"; 1630 - version = "4.19.0"; 1558 + version = "4.8.2"; 1631 1559 src = fetchurl { 1632 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.19.0.tgz"; 1633 - sha512 = "3xqArJ/A62smaQYRv2ZFyTA+XxGGWmlDYrsfZG68zJeNbeqRScnhf81rUVa6QG4UgzHnXw5VnMT5cg75dQGDkA=="; 1560 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.8.2.tgz"; 1561 + sha512 = "HToGNwI6fekH0dOw3XEVESUm71Onfam0AKin6f26S2FtUmO7o3cLlWgrIaT1q3vjB3wCTdww3Dx2iGq5wtUOCg=="; 1634 1562 }; 1635 1563 }; 1636 - "@typescript-eslint/visitor-keys-4.16.1" = { 1564 + "@typescript-eslint/visitor-keys-4.7.0" = { 1637 1565 name = "_at_typescript-eslint_slash_visitor-keys"; 1638 1566 packageName = "@typescript-eslint/visitor-keys"; 1639 - version = "4.16.1"; 1567 + version = "4.7.0"; 1640 1568 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.16.1.tgz"; 1642 - sha512 = "s/aIP1XcMkEqCNcPQtl60ogUYjSM8FU2mq1O7y5cFf3Xcob1z1iXWNB6cC43Op+NGRTFgGolri6s8z/efA9i1w=="; 1569 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.7.0.tgz"; 1570 + sha512 = "aDJDWuCRsf1lXOtignlfiPODkzSxxop7D0rZ91L6ZuMlcMCSh0YyK+gAfo5zN/ih6WxMwhoXgJWC3cWQdaKC+A=="; 1643 1571 }; 1644 1572 }; 1645 - "@typescript-eslint/visitor-keys-4.19.0" = { 1573 + "@typescript-eslint/visitor-keys-4.8.2" = { 1646 1574 name = "_at_typescript-eslint_slash_visitor-keys"; 1647 1575 packageName = "@typescript-eslint/visitor-keys"; 1648 - version = "4.19.0"; 1576 + version = "4.8.2"; 1649 1577 src = fetchurl { 1650 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.19.0.tgz"; 1651 - sha512 = "aGPS6kz//j7XLSlgpzU2SeTqHPsmRYxFztj2vPuMMFJXZudpRSehE3WCV+BaxwZFvfAqMoSd86TEuM0PQ59E/A=="; 1578 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.8.2.tgz"; 1579 + sha512 = "Vg+/SJTMZJEKKGHW7YC21QxgKJrSbxoYYd3MEUGtW7zuytHuEcksewq0DUmo4eh/CTNrVJGSdIY9AtRb6riWFw=="; 1652 1580 }; 1653 1581 }; 1654 1582 "abab-2.0.5" = { ··· 1667 1595 src = fetchurl { 1668 1596 url = "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz"; 1669 1597 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1670 - }; 1671 - }; 1672 - "acorn-8.1.0" = { 1673 - name = "acorn"; 1674 - packageName = "acorn"; 1675 - version = "8.1.0"; 1676 - src = fetchurl { 1677 - url = "https://registry.npmjs.org/acorn/-/acorn-8.1.0.tgz"; 1678 - sha512 = "LWCF/Wn0nfHOmJ9rzQApGnxnvgfROzGilS8936rqN/lfcYkY9MYZzdMqN+2NJ4SlTc+m5HiSa+kNfDtI64dwUA=="; 1679 1598 }; 1680 1599 }; 1681 1600 "acorn-globals-6.0.0" = { ··· 1723 1642 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1724 1643 }; 1725 1644 }; 1726 - "ajv-7.1.1" = { 1727 - name = "ajv"; 1728 - packageName = "ajv"; 1729 - version = "7.1.1"; 1730 - src = fetchurl { 1731 - url = "https://registry.npmjs.org/ajv/-/ajv-7.1.1.tgz"; 1732 - sha512 = "ga/aqDYnUy/o7vbsRTFhhTsNeXiYb5JWDIcRIeZfwRNCefwjNTVYCGdGSUrEmiu3yDK3vFvNbgJxvrQW4JXrYQ=="; 1733 - }; 1734 - }; 1735 - "ajv-7.2.4" = { 1736 - name = "ajv"; 1737 - packageName = "ajv"; 1738 - version = "7.2.4"; 1739 - src = fetchurl { 1740 - url = "https://registry.npmjs.org/ajv/-/ajv-7.2.4.tgz"; 1741 - sha512 = "nBeQgg/ZZA3u3SYxyaDvpvDtgZ/EZPF547ARgZBrG9Bhu1vKDwAIjtIf+sDtJUKa2zOcEbmRLBRSyMraS/Oy1A=="; 1742 - }; 1743 - }; 1744 1645 "ansi-colors-4.1.1" = { 1745 1646 name = "ansi-colors"; 1746 1647 packageName = "ansi-colors"; ··· 1759 1660 sha512 = "JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA=="; 1760 1661 }; 1761 1662 }; 1762 - "ansi-escapes-4.3.2" = { 1763 - name = "ansi-escapes"; 1764 - packageName = "ansi-escapes"; 1765 - version = "4.3.2"; 1766 - src = fetchurl { 1767 - url = "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz"; 1768 - sha512 = "gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ=="; 1769 - }; 1770 - }; 1771 1663 "ansi-regex-2.1.1" = { 1772 1664 name = "ansi-regex"; 1773 1665 packageName = "ansi-regex"; ··· 1775 1667 src = fetchurl { 1776 1668 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 1777 1669 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1670 + }; 1671 + }; 1672 + "ansi-regex-4.1.0" = { 1673 + name = "ansi-regex"; 1674 + packageName = "ansi-regex"; 1675 + version = "4.1.0"; 1676 + src = fetchurl { 1677 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 1678 + sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 1778 1679 }; 1779 1680 }; 1780 1681 "ansi-regex-5.0.0" = { ··· 1921 1822 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1922 1823 }; 1923 1824 }; 1924 - "astral-regex-2.0.0" = { 1825 + "astral-regex-1.0.0" = { 1925 1826 name = "astral-regex"; 1926 1827 packageName = "astral-regex"; 1927 - version = "2.0.0"; 1828 + version = "1.0.0"; 1928 1829 src = fetchurl { 1929 - url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 1930 - sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 1830 + url = "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"; 1831 + sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="; 1931 1832 }; 1932 1833 }; 1933 1834 "async-3.2.0" = { ··· 1993 1894 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 1994 1895 }; 1995 1896 }; 1996 - "axios-0.21.1" = { 1897 + "axios-0.21.0" = { 1997 1898 name = "axios"; 1998 1899 packageName = "axios"; 1999 - version = "0.21.1"; 1900 + version = "0.21.0"; 2000 1901 src = fetchurl { 2001 - url = "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz"; 2002 - sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; 1902 + url = "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz"; 1903 + sha512 = "fmkJBknJKoZwem3/IKSSLpkdNXZeBu5Q7GA/aRsr2btgrptmSCxi2oFjZHqGdK9DoTil9PIHlPIZw2EcRJXRvw=="; 2003 1904 }; 2004 1905 }; 2005 1906 "babel-jest-26.6.3" = { ··· 2038 1939 sha512 = "PO9t0697lNTmcEHH69mdtYiOIkkOlj9fySqfO3K1eCcdISevLAE0xY59VLLUj0SoiPiTX/JU2CYFpILydUa5Lw=="; 2039 1940 }; 2040 1941 }; 2041 - "babel-plugin-polyfill-corejs2-0.1.10" = { 2042 - name = "babel-plugin-polyfill-corejs2"; 2043 - packageName = "babel-plugin-polyfill-corejs2"; 2044 - version = "0.1.10"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.1.10.tgz"; 2047 - sha512 = "DO95wD4g0A8KRaHKi0D51NdGXzvpqVLnLu5BTvDlpqUEpTmeEtypgC1xqesORaWmiUOQI14UHKlzNd9iZ2G3ZA=="; 2048 - }; 2049 - }; 2050 - "babel-plugin-polyfill-corejs3-0.1.7" = { 2051 - name = "babel-plugin-polyfill-corejs3"; 2052 - packageName = "babel-plugin-polyfill-corejs3"; 2053 - version = "0.1.7"; 2054 - src = fetchurl { 2055 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.1.7.tgz"; 2056 - sha512 = "u+gbS9bbPhZWEeyy1oR/YaaSpod/KDT07arZHb80aTpl8H5ZBq+uN1nN9/xtX7jQyfLdPfoqI4Rue/MQSWJquw=="; 2057 - }; 2058 - }; 2059 - "babel-plugin-polyfill-regenerator-0.1.6" = { 2060 - name = "babel-plugin-polyfill-regenerator"; 2061 - packageName = "babel-plugin-polyfill-regenerator"; 2062 - version = "0.1.6"; 2063 - src = fetchurl { 2064 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.1.6.tgz"; 2065 - sha512 = "OUrYG9iKPKz8NxswXbRAdSwF0GhRdIEMTloQATJi4bDuFqrXaXcCUT/VGNrr8pBcjMh1RxZ7Xt9cytVJTJfvMg=="; 2066 - }; 2067 - }; 2068 - "babel-preset-current-node-syntax-1.0.1" = { 1942 + "babel-preset-current-node-syntax-1.0.0" = { 2069 1943 name = "babel-preset-current-node-syntax"; 2070 1944 packageName = "babel-preset-current-node-syntax"; 2071 - version = "1.0.1"; 1945 + version = "1.0.0"; 2072 1946 src = fetchurl { 2073 - url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"; 2074 - sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; 1947 + url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz"; 1948 + sha512 = "mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q=="; 2075 1949 }; 2076 1950 }; 2077 1951 "babel-preset-jest-26.6.2" = { ··· 2128 2002 sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw=="; 2129 2003 }; 2130 2004 }; 2131 - "binary-extensions-2.2.0" = { 2005 + "binary-extensions-2.1.0" = { 2132 2006 name = "binary-extensions"; 2133 2007 packageName = "binary-extensions"; 2134 - version = "2.2.0"; 2008 + version = "2.1.0"; 2135 2009 src = fetchurl { 2136 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 2137 - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 2010 + url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz"; 2011 + sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ=="; 2138 2012 }; 2139 2013 }; 2140 2014 "bindings-1.5.0" = { ··· 2146 2020 sha512 = "p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ=="; 2147 2021 }; 2148 2022 }; 2149 - "bl-4.1.0" = { 2023 + "bl-4.0.3" = { 2150 2024 name = "bl"; 2151 2025 packageName = "bl"; 2152 - version = "4.1.0"; 2026 + version = "4.0.3"; 2153 2027 src = fetchurl { 2154 - url = "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz"; 2155 - sha512 = "1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w=="; 2028 + url = "https://registry.npmjs.org/bl/-/bl-4.0.3.tgz"; 2029 + sha512 = "fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg=="; 2156 2030 }; 2157 2031 }; 2158 2032 "brace-expansion-1.1.11" = { ··· 2191 2065 sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; 2192 2066 }; 2193 2067 }; 2194 - "browserslist-4.16.3" = { 2068 + "browserslist-4.14.7" = { 2195 2069 name = "browserslist"; 2196 2070 packageName = "browserslist"; 2197 - version = "4.16.3"; 2071 + version = "4.14.7"; 2198 2072 src = fetchurl { 2199 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz"; 2200 - sha512 = "vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw=="; 2073 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.14.7.tgz"; 2074 + sha512 = "BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ=="; 2201 2075 }; 2202 2076 }; 2203 2077 "bser-2.1.1" = { ··· 2245 2119 sha512 = "AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ=="; 2246 2120 }; 2247 2121 }; 2248 - "call-bind-1.0.2" = { 2122 + "call-bind-1.0.0" = { 2249 2123 name = "call-bind"; 2250 2124 packageName = "call-bind"; 2251 - version = "1.0.2"; 2125 + version = "1.0.0"; 2252 2126 src = fetchurl { 2253 - url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz"; 2254 - sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA=="; 2127 + url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz"; 2128 + sha512 = "AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w=="; 2255 2129 }; 2256 2130 }; 2257 2131 "callback-stream-1.1.0" = { ··· 2290 2164 sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2291 2165 }; 2292 2166 }; 2293 - "caniuse-lite-1.0.30001194" = { 2294 - name = "caniuse-lite"; 2295 - packageName = "caniuse-lite"; 2296 - version = "1.0.30001194"; 2297 - src = fetchurl { 2298 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001194.tgz"; 2299 - sha512 = "iDUOH+oFeBYk5XawYsPtsx/8fFpndAPUQJC7gBTfxHM8xw5nOZv7ceAD4frS1MKCLUac7QL5wdAJiFQlDRjXlA=="; 2300 - }; 2301 - }; 2302 - "caniuse-lite-1.0.30001204" = { 2167 + "caniuse-lite-1.0.30001157" = { 2303 2168 name = "caniuse-lite"; 2304 2169 packageName = "caniuse-lite"; 2305 - version = "1.0.30001204"; 2170 + version = "1.0.30001157"; 2306 2171 src = fetchurl { 2307 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001204.tgz"; 2308 - sha512 = "JUdjWpcxfJ9IPamy2f5JaRDCaqJOxDzOSKtbdx4rH9VivMd1vIzoPumsJa9LoMIi4Fx2BV2KZOxWhNkBjaYivQ=="; 2172 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001157.tgz"; 2173 + sha512 = "gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL/O+fJsbt+znSigujoZG8bVcIAUM/I/E5K3MA=="; 2309 2174 }; 2310 2175 }; 2311 2176 "capture-exit-2.0.0" = { ··· 2353 2218 sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; 2354 2219 }; 2355 2220 }; 2356 - "chokidar-3.5.1" = { 2221 + "chokidar-2.1.8" = { 2357 2222 name = "chokidar"; 2358 2223 packageName = "chokidar"; 2359 - version = "3.5.1"; 2224 + version = "2.1.8"; 2360 2225 src = fetchurl { 2361 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz"; 2362 - sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw=="; 2226 + url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 2227 + sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2228 + }; 2229 + }; 2230 + "chokidar-3.4.3" = { 2231 + name = "chokidar"; 2232 + packageName = "chokidar"; 2233 + version = "3.4.3"; 2234 + src = fetchurl { 2235 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz"; 2236 + sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ=="; 2363 2237 }; 2364 2238 }; 2365 2239 "chownr-1.1.4" = { ··· 2488 2362 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2489 2363 }; 2490 2364 }; 2491 - "color-string-1.5.5" = { 2365 + "color-string-1.5.4" = { 2492 2366 name = "color-string"; 2493 2367 packageName = "color-string"; 2494 - version = "1.5.5"; 2368 + version = "1.5.4"; 2495 2369 src = fetchurl { 2496 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz"; 2497 - sha512 = "jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg=="; 2370 + url = "https://registry.npmjs.org/color-string/-/color-string-1.5.4.tgz"; 2371 + sha512 = "57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw=="; 2498 2372 }; 2499 2373 }; 2500 - "colorette-1.2.2" = { 2374 + "colorette-1.2.1" = { 2501 2375 name = "colorette"; 2502 2376 packageName = "colorette"; 2503 - version = "1.2.2"; 2377 + version = "1.2.1"; 2504 2378 src = fetchurl { 2505 - url = "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz"; 2506 - sha512 = "MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w=="; 2379 + url = "https://registry.npmjs.org/colorette/-/colorette-1.2.1.tgz"; 2380 + sha512 = "puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw=="; 2507 2381 }; 2508 2382 }; 2509 2383 "colors-1.4.0" = { ··· 2605 2479 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 2606 2480 }; 2607 2481 }; 2608 - "core-js-compat-3.9.1" = { 2482 + "core-js-compat-3.7.0" = { 2609 2483 name = "core-js-compat"; 2610 2484 packageName = "core-js-compat"; 2611 - version = "3.9.1"; 2485 + version = "3.7.0"; 2612 2486 src = fetchurl { 2613 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.9.1.tgz"; 2614 - sha512 = "jXAirMQxrkbiiLsCx9bQPJFA6llDadKMpYrBJQJ3/c4/vsPP/fAf29h24tviRlvwUL6AmY5CHLu2GvjuYviQqA=="; 2487 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.7.0.tgz"; 2488 + sha512 = "V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg=="; 2615 2489 }; 2616 2490 }; 2617 2491 "core-util-is-1.0.2" = { ··· 2704 2578 sha512 = "mYtLl1xfZLi1m4RtQYlZgJUNQjl4ZxVnHzIR8nLLgi4q1YT8o/WM+MK/f8yfcc9s5Ir5zRaPZyZU6xs1Syoocg=="; 2705 2579 }; 2706 2580 }; 2707 - "debounce-1.2.1" = { 2708 - name = "debounce"; 2709 - packageName = "debounce"; 2710 - version = "1.2.1"; 2711 - src = fetchurl { 2712 - url = "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"; 2713 - sha512 = "XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug=="; 2714 - }; 2715 - }; 2716 2581 "debug-2.6.9" = { 2717 2582 name = "debug"; 2718 2583 packageName = "debug"; ··· 2720 2585 src = fetchurl { 2721 2586 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2722 2587 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2588 + }; 2589 + }; 2590 + "debug-4.2.0" = { 2591 + name = "debug"; 2592 + packageName = "debug"; 2593 + version = "4.2.0"; 2594 + src = fetchurl { 2595 + url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 2596 + sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 2723 2597 }; 2724 2598 }; 2725 2599 "debug-4.3.1" = { ··· 2783 2657 src = fetchurl { 2784 2658 url = "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz"; 2785 2659 sha1 = "b369d6fb5dbc13eecf524f91b070feedc357cf34"; 2786 - }; 2787 - }; 2788 - "deep-object-diff-1.1.0" = { 2789 - name = "deep-object-diff"; 2790 - packageName = "deep-object-diff"; 2791 - version = "1.1.0"; 2792 - src = fetchurl { 2793 - url = "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz"; 2794 - sha512 = "b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw=="; 2795 2660 }; 2796 2661 }; 2797 2662 "deepmerge-4.2.2" = { ··· 2956 2821 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2957 2822 }; 2958 2823 }; 2959 - "electron-to-chromium-1.3.678" = { 2960 - name = "electron-to-chromium"; 2961 - packageName = "electron-to-chromium"; 2962 - version = "1.3.678"; 2963 - src = fetchurl { 2964 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.678.tgz"; 2965 - sha512 = "E5ha1pE9+aWWrT2fUD5wdPBWUnYtKnEnloewbtVyrkAs79HvodOiNO4rMR94+hKbxgMFQG4fnPQACOc1cfMfBg=="; 2966 - }; 2967 - }; 2968 - "electron-to-chromium-1.3.701" = { 2824 + "electron-to-chromium-1.3.596" = { 2969 2825 name = "electron-to-chromium"; 2970 2826 packageName = "electron-to-chromium"; 2971 - version = "1.3.701"; 2827 + version = "1.3.596"; 2972 2828 src = fetchurl { 2973 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.701.tgz"; 2974 - sha512 = "Zd9ofdIMYHYhG1gvnejQDvC/kqSeXQvtXF0yRURGxgwGqDZm9F9Fm3dYFnm5gyuA7xpXfBlzVLN1sz0FjxpKfw=="; 2829 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.596.tgz"; 2830 + sha512 = "nLO2Wd2yU42eSoNJVQKNf89CcEGqeFZd++QsnN2XIgje1s/19AgctfjLIbPORlvcCO8sYjLwX4iUgDdusOY8Sg=="; 2975 2831 }; 2976 2832 }; 2977 2833 "emittery-0.7.2" = { ··· 2981 2837 src = fetchurl { 2982 2838 url = "https://registry.npmjs.org/emittery/-/emittery-0.7.2.tgz"; 2983 2839 sha512 = "A8OG5SR/ij3SsJdWDJdkkSYUjQdCUx6APQXem0SaEePBSRg4eymGYwBkKo1Y6DU+af/Jn2dBQqDBvjnr9Vi8nQ=="; 2840 + }; 2841 + }; 2842 + "emoji-regex-7.0.3" = { 2843 + name = "emoji-regex"; 2844 + packageName = "emoji-regex"; 2845 + version = "7.0.3"; 2846 + src = fetchurl { 2847 + url = "https://registry.npmjs.org/emoji-regex/-/emoji-regex-7.0.3.tgz"; 2848 + sha512 = "CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA=="; 2984 2849 }; 2985 2850 }; 2986 2851 "emoji-regex-8.0.0" = { ··· 3136 3001 sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 3137 3002 }; 3138 3003 }; 3139 - "escodegen-2.0.0" = { 3140 - name = "escodegen"; 3141 - packageName = "escodegen"; 3142 - version = "2.0.0"; 3143 - src = fetchurl { 3144 - url = "https://registry.npmjs.org/escodegen/-/escodegen-2.0.0.tgz"; 3145 - sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 3146 - }; 3147 - }; 3148 - "eslint-7.21.0" = { 3004 + "eslint-7.13.0" = { 3149 3005 name = "eslint"; 3150 3006 packageName = "eslint"; 3151 - version = "7.21.0"; 3007 + version = "7.13.0"; 3152 3008 src = fetchurl { 3153 - url = "https://registry.npmjs.org/eslint/-/eslint-7.21.0.tgz"; 3154 - sha512 = "W2aJbXpMNofUp0ztQaF40fveSsJBjlSCSWpy//gzfTvwC+USs/nceBrKmlJOiM8r1bLwP2EuYkCqArn/6QTIgg=="; 3009 + url = "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz"; 3010 + sha512 = "uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ=="; 3155 3011 }; 3156 3012 }; 3157 - "eslint-7.23.0" = { 3013 + "eslint-7.14.0" = { 3158 3014 name = "eslint"; 3159 3015 packageName = "eslint"; 3160 - version = "7.23.0"; 3016 + version = "7.14.0"; 3161 3017 src = fetchurl { 3162 - url = "https://registry.npmjs.org/eslint/-/eslint-7.23.0.tgz"; 3163 - sha512 = "kqvNVbdkjzpFy0XOszNwjkKzZ+6TcwCQ/h+ozlcIWwaimBBuhlQ4nN6kbiM2L+OjDcznkTJxzYfRFH92sx4a0Q=="; 3018 + url = "https://registry.npmjs.org/eslint/-/eslint-7.14.0.tgz"; 3019 + sha512 = "5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA=="; 3164 3020 }; 3165 3021 }; 3166 3022 "eslint-config-google-0.14.0" = { ··· 3172 3028 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 3173 3029 }; 3174 3030 }; 3175 - "eslint-plugin-jest-24.3.2" = { 3031 + "eslint-plugin-jest-24.1.3" = { 3176 3032 name = "eslint-plugin-jest"; 3177 3033 packageName = "eslint-plugin-jest"; 3178 - version = "24.3.2"; 3034 + version = "24.1.3"; 3179 3035 src = fetchurl { 3180 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.3.2.tgz"; 3181 - sha512 = "cicWDr+RvTAOKS3Q/k03+Z3odt3VCiWamNUHWd6QWbVQWcYJyYgUTu8x0mx9GfeDEimawU5kQC+nQ3MFxIM6bw=="; 3036 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-24.1.3.tgz"; 3037 + sha512 = "dNGGjzuEzCE3d5EPZQ/QGtmlMotqnYWD/QpCZ1UuZlrMAdhG5rldh0N0haCvhGnUkSeuORS5VNROwF9Hrgn3Lg=="; 3182 3038 }; 3183 3039 }; 3184 3040 "eslint-scope-5.1.1" = { ··· 3217 3073 sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ=="; 3218 3074 }; 3219 3075 }; 3220 - "espree-7.3.1" = { 3076 + "espree-7.3.0" = { 3221 3077 name = "espree"; 3222 3078 packageName = "espree"; 3223 - version = "7.3.1"; 3079 + version = "7.3.0"; 3224 3080 src = fetchurl { 3225 - url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 3226 - sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 3081 + url = "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz"; 3082 + sha512 = "dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw=="; 3227 3083 }; 3228 3084 }; 3229 3085 "esprima-4.0.1" = { ··· 3235 3091 sha512 = "eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A=="; 3236 3092 }; 3237 3093 }; 3238 - "esquery-1.4.0" = { 3094 + "esquery-1.3.1" = { 3239 3095 name = "esquery"; 3240 3096 packageName = "esquery"; 3241 - version = "1.4.0"; 3097 + version = "1.3.1"; 3242 3098 src = fetchurl { 3243 - url = "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz"; 3244 - sha512 = "cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w=="; 3099 + url = "https://registry.npmjs.org/esquery/-/esquery-1.3.1.tgz"; 3100 + sha512 = "olpvt9QG0vniUBZspVRN6lwB7hOZoTRtT+jzR+tS4ffYx2mzbw+z0XCOk44aaLYKApNX5nMm+E+P6o25ip/DHQ=="; 3245 3101 }; 3246 3102 }; 3247 3103 "esrecurse-4.3.0" = { ··· 3307 3163 sha512 = "sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A=="; 3308 3164 }; 3309 3165 }; 3310 - "exec-sh-0.3.6" = { 3311 - name = "exec-sh"; 3312 - packageName = "exec-sh"; 3313 - version = "0.3.6"; 3314 - src = fetchurl { 3315 - url = "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz"; 3316 - sha512 = "nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w=="; 3317 - }; 3318 - }; 3319 3166 "execa-1.0.0" = { 3320 3167 name = "execa"; 3321 3168 packageName = "execa"; ··· 3433 3280 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 3434 3281 }; 3435 3282 }; 3436 - "fast-glob-3.2.5" = { 3283 + "fast-glob-3.2.4" = { 3437 3284 name = "fast-glob"; 3438 3285 packageName = "fast-glob"; 3439 - version = "3.2.5"; 3286 + version = "3.2.4"; 3440 3287 src = fetchurl { 3441 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz"; 3442 - sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg=="; 3288 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz"; 3289 + sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ=="; 3443 3290 }; 3444 3291 }; 3445 3292 "fast-json-stable-stringify-2.1.0" = { ··· 3469 3316 sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 3470 3317 }; 3471 3318 }; 3472 - "fastq-1.11.0" = { 3319 + "fastq-1.9.0" = { 3473 3320 name = "fastq"; 3474 3321 packageName = "fastq"; 3475 - version = "1.11.0"; 3322 + version = "1.9.0"; 3476 3323 src = fetchurl { 3477 - url = "https://registry.npmjs.org/fastq/-/fastq-1.11.0.tgz"; 3478 - sha512 = "7Eczs8gIPDrVzT+EksYBcupqMyxSHXXrHOLRRxU2/DicV8789MRBRR8+Hc2uWzUupOs4YS4JzBmBxjjCVBxD/g=="; 3324 + url = "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz"; 3325 + sha512 = "i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w=="; 3479 3326 }; 3480 3327 }; 3481 3328 "fb-watchman-2.0.1" = { ··· 3496 3343 sha512 = "aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg=="; 3497 3344 }; 3498 3345 }; 3499 - "file-entry-cache-6.0.1" = { 3346 + "file-entry-cache-5.0.1" = { 3500 3347 name = "file-entry-cache"; 3501 3348 packageName = "file-entry-cache"; 3502 - version = "6.0.1"; 3349 + version = "5.0.1"; 3503 3350 src = fetchurl { 3504 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 3505 - sha512 = "7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg=="; 3351 + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 3352 + sha512 = "bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g=="; 3506 3353 }; 3507 3354 }; 3508 3355 "file-uri-to-path-1.0.0" = { ··· 3550 3397 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3551 3398 }; 3552 3399 }; 3553 - "flat-cache-3.0.4" = { 3400 + "flat-cache-2.0.1" = { 3554 3401 name = "flat-cache"; 3555 3402 packageName = "flat-cache"; 3556 - version = "3.0.4"; 3403 + version = "2.0.1"; 3557 3404 src = fetchurl { 3558 - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"; 3559 - sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 3405 + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz"; 3406 + sha512 = "LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA=="; 3560 3407 }; 3561 3408 }; 3562 - "flatted-3.1.1" = { 3409 + "flatted-2.0.2" = { 3563 3410 name = "flatted"; 3564 3411 packageName = "flatted"; 3565 - version = "3.1.1"; 3412 + version = "2.0.2"; 3566 3413 src = fetchurl { 3567 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.1.tgz"; 3568 - sha512 = "zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA=="; 3414 + url = "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"; 3415 + sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 3569 3416 }; 3570 3417 }; 3571 3418 "fn.name-1.1.0" = { ··· 3577 3424 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 3578 3425 }; 3579 3426 }; 3580 - "follow-redirects-1.13.3" = { 3427 + "follow-redirects-1.13.0" = { 3581 3428 name = "follow-redirects"; 3582 3429 packageName = "follow-redirects"; 3583 - version = "1.13.3"; 3430 + version = "1.13.0"; 3584 3431 src = fetchurl { 3585 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.3.tgz"; 3586 - sha512 = "DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA=="; 3432 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz"; 3433 + sha512 = "aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA=="; 3587 3434 }; 3588 3435 }; 3589 3436 "for-in-1.0.2" = { ··· 3640 3487 sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 3641 3488 }; 3642 3489 }; 3643 - "fs-extra-9.1.0" = { 3490 + "fs-extra-9.0.1" = { 3644 3491 name = "fs-extra"; 3645 3492 packageName = "fs-extra"; 3646 - version = "9.1.0"; 3493 + version = "9.0.1"; 3647 3494 src = fetchurl { 3648 - url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz"; 3649 - sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ=="; 3495 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz"; 3496 + sha512 = "h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ=="; 3650 3497 }; 3651 3498 }; 3652 3499 "fs-readdir-recursive-1.1.0" = { ··· 3667 3514 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 3668 3515 }; 3669 3516 }; 3670 - "fsevents-2.3.2" = { 3517 + "fsevents-1.2.13" = { 3671 3518 name = "fsevents"; 3672 3519 packageName = "fsevents"; 3673 - version = "2.3.2"; 3520 + version = "1.2.13"; 3674 3521 src = fetchurl { 3675 - url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz"; 3676 - sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA=="; 3522 + url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"; 3523 + sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="; 3524 + }; 3525 + }; 3526 + "fsevents-2.1.3" = { 3527 + name = "fsevents"; 3528 + packageName = "fsevents"; 3529 + version = "2.1.3"; 3530 + src = fetchurl { 3531 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz"; 3532 + sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ=="; 3533 + }; 3534 + }; 3535 + "fsevents-2.2.1" = { 3536 + name = "fsevents"; 3537 + packageName = "fsevents"; 3538 + version = "2.2.1"; 3539 + src = fetchurl { 3540 + url = "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz"; 3541 + sha512 = "bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA=="; 3677 3542 }; 3678 3543 }; 3679 3544 "function-bind-1.1.1" = { ··· 3721 3586 sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg=="; 3722 3587 }; 3723 3588 }; 3724 - "get-intrinsic-1.1.1" = { 3589 + "get-intrinsic-1.0.1" = { 3725 3590 name = "get-intrinsic"; 3726 3591 packageName = "get-intrinsic"; 3727 - version = "1.1.1"; 3592 + version = "1.0.1"; 3728 3593 src = fetchurl { 3729 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz"; 3730 - sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q=="; 3594 + url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz"; 3595 + sha512 = "ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg=="; 3731 3596 }; 3732 3597 }; 3733 3598 "get-package-type-0.1.0" = { ··· 3820 3685 sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 3821 3686 }; 3822 3687 }; 3823 - "glob-parent-5.1.2" = { 3824 - name = "glob-parent"; 3825 - packageName = "glob-parent"; 3826 - version = "5.1.2"; 3827 - src = fetchurl { 3828 - url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz"; 3829 - sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow=="; 3830 - }; 3831 - }; 3832 3688 "glob-stream-6.1.0" = { 3833 3689 name = "glob-stream"; 3834 3690 packageName = "glob-stream"; ··· 3856 3712 sha512 = "BWICuzzDvDoH54NHKCseDanAhE3CeDorgDL5MT6LMXXj2WCnd9UC2szdk4AWLfjdgNBCXLUanXYcpBBKOSWGwg=="; 3857 3713 }; 3858 3714 }; 3859 - "globals-13.7.0" = { 3860 - name = "globals"; 3861 - packageName = "globals"; 3862 - version = "13.7.0"; 3863 - src = fetchurl { 3864 - url = "https://registry.npmjs.org/globals/-/globals-13.7.0.tgz"; 3865 - sha512 = "Aipsz6ZKRxa/xQkZhNg0qIWXT6x6rD46f6x/PCnBomlttdIyAPak4YD9jTmKpZ72uROSMU87qJtcgpgHaVchiA=="; 3866 - }; 3867 - }; 3868 - "globby-11.0.2" = { 3869 - name = "globby"; 3870 - packageName = "globby"; 3871 - version = "11.0.2"; 3872 - src = fetchurl { 3873 - url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz"; 3874 - sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og=="; 3875 - }; 3876 - }; 3877 - "globby-11.0.3" = { 3715 + "globby-11.0.1" = { 3878 3716 name = "globby"; 3879 3717 packageName = "globby"; 3880 - version = "11.0.3"; 3718 + version = "11.0.1"; 3881 3719 src = fetchurl { 3882 - url = "https://registry.npmjs.org/globby/-/globby-11.0.3.tgz"; 3883 - sha512 = "ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg=="; 3720 + url = "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz"; 3721 + sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ=="; 3884 3722 }; 3885 3723 }; 3886 3724 "glossy-0.1.7" = { ··· 3892 3730 sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b"; 3893 3731 }; 3894 3732 }; 3895 - "graceful-fs-4.2.6" = { 3733 + "graceful-fs-4.2.4" = { 3896 3734 name = "graceful-fs"; 3897 3735 packageName = "graceful-fs"; 3898 - version = "4.2.6"; 3736 + version = "4.2.4"; 3899 3737 src = fetchurl { 3900 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.6.tgz"; 3901 - sha512 = "nTnJ528pbqxYanhpDYsi4Rd8MAeaBA67+RZ10CM1m3bTAVFEDcd5AuA4a6W5YkGZ1iNXHzZz8T6TBKLeBuNriQ=="; 3738 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz"; 3739 + sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw=="; 3902 3740 }; 3903 3741 }; 3904 3742 "growly-1.3.0" = { ··· 3910 3748 sha1 = "f10748cbe76af964b7c96c93c6bcc28af120c081"; 3911 3749 }; 3912 3750 }; 3913 - "handlebars-4.7.7" = { 3751 + "handlebars-4.7.6" = { 3914 3752 name = "handlebars"; 3915 3753 packageName = "handlebars"; 3916 - version = "4.7.7"; 3754 + version = "4.7.6"; 3917 3755 src = fetchurl { 3918 - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; 3919 - sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; 3756 + url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.6.tgz"; 3757 + sha512 = "1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA=="; 3920 3758 }; 3921 3759 }; 3922 3760 "har-schema-2.0.0" = { ··· 3964 3802 sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 3965 3803 }; 3966 3804 }; 3967 - "has-symbols-1.0.2" = { 3805 + "has-symbols-1.0.1" = { 3968 3806 name = "has-symbols"; 3969 3807 packageName = "has-symbols"; 3970 - version = "1.0.2"; 3808 + version = "1.0.1"; 3971 3809 src = fetchurl { 3972 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"; 3973 - sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 3810 + url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz"; 3811 + sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg=="; 3974 3812 }; 3975 3813 }; 3976 3814 "has-unicode-2.0.1" = { ··· 4027 3865 sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; 4028 3866 }; 4029 3867 }; 3868 + "highlight.js-10.3.2" = { 3869 + name = "highlight.js"; 3870 + packageName = "highlight.js"; 3871 + version = "10.3.2"; 3872 + src = fetchurl { 3873 + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-10.3.2.tgz"; 3874 + sha512 = "3jRT7OUYsVsKvukNKZCtnvRcFyCJqSEIuIMsEybAXRiFSwpt65qjPd/Pr+UOdYt7WJlt+lj3+ypUsHiySBp/Jw=="; 3875 + }; 3876 + }; 4030 3877 "hosted-git-info-2.8.8" = { 4031 3878 name = "hosted-git-info"; 4032 3879 packageName = "hosted-git-info"; ··· 4090 3937 sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 4091 3938 }; 4092 3939 }; 4093 - "humanize-duration-3.25.1" = { 3940 + "humanize-duration-3.24.0" = { 4094 3941 name = "humanize-duration"; 4095 3942 packageName = "humanize-duration"; 4096 - version = "3.25.1"; 3943 + version = "3.24.0"; 4097 3944 src = fetchurl { 4098 - url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.25.1.tgz"; 4099 - sha512 = "P+dRo48gpLgc2R9tMRgiDRNULPKCmqFYgguwqOO2C0fjO35TgdURDQDANSR1Nt92iHlbHGMxOTnsB8H8xnMa2Q=="; 3945 + url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.24.0.tgz"; 3946 + sha512 = "B3udnqisaDeRsvUSb+5n2hjxhABI9jotB+i1IEhgHhguTeM5LxIUKoVIu7UpeyaPOygr/Fnv7UhOi45kYYG+tg=="; 4100 3947 }; 4101 3948 }; 4102 3949 "iconv-lite-0.4.24" = { ··· 4135 3982 sha512 = "BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw=="; 4136 3983 }; 4137 3984 }; 4138 - "import-fresh-3.3.0" = { 3985 + "import-fresh-3.2.2" = { 4139 3986 name = "import-fresh"; 4140 3987 packageName = "import-fresh"; 4141 - version = "3.3.0"; 3988 + version = "3.2.2"; 4142 3989 src = fetchurl { 4143 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 4144 - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 3990 + url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz"; 3991 + sha512 = "cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw=="; 4145 3992 }; 4146 3993 }; 4147 3994 "import-local-3.0.2" = { ··· 4180 4027 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 4181 4028 }; 4182 4029 }; 4183 - "ini-1.3.8" = { 4030 + "ini-1.3.5" = { 4184 4031 name = "ini"; 4185 4032 packageName = "ini"; 4186 - version = "1.3.8"; 4033 + version = "1.3.5"; 4187 4034 src = fetchurl { 4188 - url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 4189 - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 4035 + url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; 4036 + sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="; 4190 4037 }; 4191 4038 }; 4192 4039 "interpret-1.4.0" = { ··· 4286 4133 src = fetchurl { 4287 4134 url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 4288 4135 sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 4136 + }; 4137 + }; 4138 + "is-core-module-2.1.0" = { 4139 + name = "is-core-module"; 4140 + packageName = "is-core-module"; 4141 + version = "2.1.0"; 4142 + src = fetchurl { 4143 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz"; 4144 + sha512 = "YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA=="; 4289 4145 }; 4290 4146 }; 4291 4147 "is-core-module-2.2.0" = { ··· 4376 4232 src = fetchurl { 4377 4233 url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz"; 4378 4234 sha1 = "ef9e31386f031a7f0d643af82fde50c457ef00cb"; 4235 + }; 4236 + }; 4237 + "is-fullwidth-code-point-2.0.0" = { 4238 + name = "is-fullwidth-code-point"; 4239 + packageName = "is-fullwidth-code-point"; 4240 + version = "2.0.0"; 4241 + src = fetchurl { 4242 + url = "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz"; 4243 + sha1 = "a3b30a5c4f199183167aaab93beefae3ddfb654f"; 4379 4244 }; 4380 4245 }; 4381 4246 "is-fullwidth-code-point-3.0.0" = { ··· 4873 4738 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 4874 4739 }; 4875 4740 }; 4876 - "js-yaml-3.14.1" = { 4741 + "js-yaml-3.14.0" = { 4877 4742 name = "js-yaml"; 4878 4743 packageName = "js-yaml"; 4879 - version = "3.14.1"; 4744 + version = "3.14.0"; 4880 4745 src = fetchurl { 4881 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"; 4882 - sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 4746 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 4747 + sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 4883 4748 }; 4884 4749 }; 4885 4750 "jsbn-0.1.1" = { ··· 4900 4765 sha512 = "lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w=="; 4901 4766 }; 4902 4767 }; 4903 - "jsdom-16.5.1" = { 4904 - name = "jsdom"; 4905 - packageName = "jsdom"; 4906 - version = "16.5.1"; 4907 - src = fetchurl { 4908 - url = "https://registry.npmjs.org/jsdom/-/jsdom-16.5.1.tgz"; 4909 - sha512 = "pF73EOsJgwZekbDHEY5VO/yKXUkab/DuvrQB/ANVizbr6UAHJsDdHXuotZYwkJSGQl1JM+ivXaqY+XBDDL4TiA=="; 4910 - }; 4911 - }; 4912 4768 "jsesc-0.5.0" = { 4913 4769 name = "jsesc"; 4914 4770 packageName = "jsesc"; ··· 4954 4810 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 4955 4811 }; 4956 4812 }; 4957 - "json-schema-traverse-1.0.0" = { 4958 - name = "json-schema-traverse"; 4959 - packageName = "json-schema-traverse"; 4960 - version = "1.0.0"; 4961 - src = fetchurl { 4962 - url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 4963 - sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 4964 - }; 4965 - }; 4966 4813 "json-stable-stringify-without-jsonify-1.0.1" = { 4967 4814 name = "json-stable-stringify-without-jsonify"; 4968 4815 packageName = "json-stable-stringify-without-jsonify"; ··· 4981 4828 sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"; 4982 4829 }; 4983 4830 }; 4984 - "json5-2.2.0" = { 4831 + "json5-2.1.3" = { 4985 4832 name = "json5"; 4986 4833 packageName = "json5"; 4987 - version = "2.2.0"; 4834 + version = "2.1.3"; 4988 4835 src = fetchurl { 4989 - url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"; 4990 - sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 4836 + url = "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz"; 4837 + sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA=="; 4991 4838 }; 4992 4839 }; 4993 4840 "jsonfile-6.1.0" = { ··· 5116 4963 sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g=="; 5117 4964 }; 5118 4965 }; 5119 - "lodash-4.17.21" = { 4966 + "lodash-4.17.20" = { 5120 4967 name = "lodash"; 5121 4968 packageName = "lodash"; 5122 - version = "4.17.21"; 4969 + version = "4.17.20"; 5123 4970 src = fetchurl { 5124 - url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"; 5125 - sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="; 5126 - }; 5127 - }; 5128 - "lodash.debounce-4.0.8" = { 5129 - name = "lodash.debounce"; 5130 - packageName = "lodash.debounce"; 5131 - version = "4.0.8"; 5132 - src = fetchurl { 5133 - url = "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz"; 5134 - sha1 = "82d79bff30a67c4005ffd5e2515300ad9ca4d7af"; 4971 + url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz"; 4972 + sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA=="; 5135 4973 }; 5136 4974 }; 5137 4975 "lodash.sortby-4.7.0" = { ··· 5152 4990 sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 5153 4991 }; 5154 4992 }; 5155 - "lru-cache-5.1.1" = { 5156 - name = "lru-cache"; 5157 - packageName = "lru-cache"; 5158 - version = "5.1.1"; 5159 - src = fetchurl { 5160 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"; 5161 - sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="; 5162 - }; 5163 - }; 5164 - "lru-cache-6.0.0" = { 5165 - name = "lru-cache"; 5166 - packageName = "lru-cache"; 5167 - version = "6.0.0"; 5168 - src = fetchurl { 5169 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 5170 - sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 5171 - }; 5172 - }; 5173 4993 "lunr-2.3.9" = { 5174 4994 name = "lunr"; 5175 4995 packageName = "lunr"; ··· 5224 5044 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 5225 5045 }; 5226 5046 }; 5227 - "marked-2.0.1" = { 5047 + "marked-1.2.3" = { 5228 5048 name = "marked"; 5229 5049 packageName = "marked"; 5230 - version = "2.0.1"; 5050 + version = "1.2.3"; 5231 5051 src = fetchurl { 5232 - url = "https://registry.npmjs.org/marked/-/marked-2.0.1.tgz"; 5233 - sha512 = "5+/fKgMv2hARmMW7DOpykr2iLhl0NgjyELk5yn92iE7z8Se1IS9n3UsFm86hFXIkvMBmVxki8+ckcpjBeyo/hw=="; 5052 + url = "https://registry.npmjs.org/marked/-/marked-1.2.3.tgz"; 5053 + sha512 = "RQuL2i6I6Gn+9n81IDNGbL0VHnta4a+8ZhqvryXEniTb/hQNtf3i26hi1XWUhzb9BgVyWHKR3UO8MaHtKoYibw=="; 5234 5054 }; 5235 5055 }; 5236 5056 "merge-stream-2.0.0" = { ··· 5278 5098 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 5279 5099 }; 5280 5100 }; 5281 - "mime-db-1.46.0" = { 5101 + "mime-db-1.44.0" = { 5282 5102 name = "mime-db"; 5283 5103 packageName = "mime-db"; 5284 - version = "1.46.0"; 5104 + version = "1.44.0"; 5285 5105 src = fetchurl { 5286 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.46.0.tgz"; 5287 - sha512 = "svXaP8UQRZ5K7or+ZmfNhg2xX3yKDMUzqadsSqi4NCH/KomcH75MAMYAGVlvXn4+b/xOPhS3I2uHKRUzvjY7BQ=="; 5106 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz"; 5107 + sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="; 5288 5108 }; 5289 5109 }; 5290 - "mime-types-2.1.29" = { 5110 + "mime-types-2.1.27" = { 5291 5111 name = "mime-types"; 5292 5112 packageName = "mime-types"; 5293 - version = "2.1.29"; 5113 + version = "2.1.27"; 5294 5114 src = fetchurl { 5295 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.29.tgz"; 5296 - sha512 = "Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ=="; 5115 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz"; 5116 + sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; 5297 5117 }; 5298 5118 }; 5299 5119 "mimic-fn-2.1.0" = { ··· 5359 5179 sha512 = "gbTtiEu8P/GSMh1lAa0YYNr8XIfDzFgnWtetw3Hfz9nw6YXySHNYOZF/uUTgyp8GHvFnNw/EG7VhOkD6zfVb6A=="; 5360 5180 }; 5361 5181 }; 5182 + "mkdirp-0.5.5" = { 5183 + name = "mkdirp"; 5184 + packageName = "mkdirp"; 5185 + version = "0.5.5"; 5186 + src = fetchurl { 5187 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 5188 + sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 5189 + }; 5190 + }; 5362 5191 "mkdirp-classic-0.5.3" = { 5363 5192 name = "mkdirp-classic"; 5364 5193 packageName = "mkdirp-classic"; ··· 5386 5215 sha512 = "Iv893r+jWlo5GkNcPOfCGwW8M49IixwHiKLFFYTociEymSibUVCORVEjPXWPGzSxhn7BdlUeHicbRmWiv0Crkg=="; 5387 5216 }; 5388 5217 }; 5389 - "mqtt-packet-6.9.0" = { 5218 + "mqtt-packet-6.6.0" = { 5390 5219 name = "mqtt-packet"; 5391 5220 packageName = "mqtt-packet"; 5392 - version = "6.9.0"; 5221 + version = "6.6.0"; 5393 5222 src = fetchurl { 5394 - url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.9.0.tgz"; 5395 - sha512 = "cngFSAXWSl5XHKJYUQiYQjtp75zhf1vygY00NnJdhQoXOH2v3aizmaaMIHI5n1N/TJEHSAbHryQhFr3gJ9VNvA=="; 5223 + url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.6.0.tgz"; 5224 + sha512 = "LvghnKMFC70hKWMVykmhJarlO5e7lT3t9s9A2qPCUx+lazL3Mq55U+eCV0eLi7/nRRQYvEUWo/2tTo89EjnCJQ=="; 5396 5225 }; 5397 5226 }; 5398 5227 "ms-2.0.0" = { ··· 5422 5251 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5423 5252 }; 5424 5253 }; 5425 - "ms-2.1.3" = { 5426 - name = "ms"; 5427 - packageName = "ms"; 5428 - version = "2.1.3"; 5429 - src = fetchurl { 5430 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 5431 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 5432 - }; 5433 - }; 5434 5254 "nan-2.14.2" = { 5435 5255 name = "nan"; 5436 5256 packageName = "nan"; ··· 5494 5314 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 5495 5315 }; 5496 5316 }; 5497 - "node-abi-2.20.0" = { 5317 + "node-abi-2.19.1" = { 5498 5318 name = "node-abi"; 5499 5319 packageName = "node-abi"; 5500 - version = "2.20.0"; 5320 + version = "2.19.1"; 5501 5321 src = fetchurl { 5502 - url = "https://registry.npmjs.org/node-abi/-/node-abi-2.20.0.tgz"; 5503 - sha512 = "6ldtfVR5l3RS8D0aT+lj/uM2Vv/PGEkeWzt2tl8DFBsGY/IuVnAIHl+dG6C14NlWClVv7Rn2+ZDvox+35Hx2Kg=="; 5322 + url = "https://registry.npmjs.org/node-abi/-/node-abi-2.19.1.tgz"; 5323 + sha512 = "HbtmIuByq44yhAzK7b9j/FelKlHYISKQn0mtvcBrU5QBkhoCMp5bu8Hv5AI34DcKfOAcJBcOEMwLlwO62FFu9A=="; 5504 5324 }; 5505 5325 }; 5506 5326 "node-int64-0.4.0" = { ··· 5521 5341 sha1 = "8d9dbe28964a4ac5712e9131642107c71e90ec40"; 5522 5342 }; 5523 5343 }; 5524 - "node-notifier-8.0.1" = { 5525 - name = "node-notifier"; 5526 - packageName = "node-notifier"; 5527 - version = "8.0.1"; 5528 - src = fetchurl { 5529 - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz"; 5530 - sha512 = "BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA=="; 5531 - }; 5532 - }; 5533 - "node-notifier-8.0.2" = { 5344 + "node-notifier-8.0.0" = { 5534 5345 name = "node-notifier"; 5535 5346 packageName = "node-notifier"; 5536 - version = "8.0.2"; 5347 + version = "8.0.0"; 5537 5348 src = fetchurl { 5538 - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.2.tgz"; 5539 - sha512 = "oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg=="; 5349 + url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.0.tgz"; 5350 + sha512 = "46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA=="; 5540 5351 }; 5541 5352 }; 5542 - "node-releases-1.1.71" = { 5353 + "node-releases-1.1.66" = { 5543 5354 name = "node-releases"; 5544 5355 packageName = "node-releases"; 5545 - version = "1.1.71"; 5356 + version = "1.1.66"; 5546 5357 src = fetchurl { 5547 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.71.tgz"; 5548 - sha512 = "zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg=="; 5358 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.66.tgz"; 5359 + sha512 = "JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg=="; 5549 5360 }; 5550 5361 }; 5551 5362 "noop-logger-0.1.1" = { ··· 5737 5548 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 5738 5549 }; 5739 5550 }; 5740 - "onigasm-2.2.5" = { 5741 - name = "onigasm"; 5742 - packageName = "onigasm"; 5743 - version = "2.2.5"; 5744 - src = fetchurl { 5745 - url = "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz"; 5746 - sha512 = "F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA=="; 5747 - }; 5748 - }; 5749 5551 "optionator-0.8.3" = { 5750 5552 name = "optionator"; 5751 5553 packageName = "optionator"; ··· 5773 5575 sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e"; 5774 5576 }; 5775 5577 }; 5578 + "p-each-series-2.1.0" = { 5579 + name = "p-each-series"; 5580 + packageName = "p-each-series"; 5581 + version = "2.1.0"; 5582 + src = fetchurl { 5583 + url = "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz"; 5584 + sha512 = "ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ=="; 5585 + }; 5586 + }; 5776 5587 "p-each-series-2.2.0" = { 5777 5588 name = "p-each-series"; 5778 5589 packageName = "p-each-series"; ··· 5827 5638 sha512 = "GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g=="; 5828 5639 }; 5829 5640 }; 5830 - "parse-json-5.2.0" = { 5641 + "parse-json-5.1.0" = { 5831 5642 name = "parse-json"; 5832 5643 packageName = "parse-json"; 5833 - version = "5.2.0"; 5644 + version = "5.1.0"; 5834 5645 src = fetchurl { 5835 - url = "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz"; 5836 - sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg=="; 5646 + url = "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz"; 5647 + sha512 = "+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ=="; 5837 5648 }; 5838 5649 }; 5839 5650 "parse5-5.1.1" = { ··· 5845 5656 sha512 = "ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug=="; 5846 5657 }; 5847 5658 }; 5848 - "parse5-6.0.1" = { 5849 - name = "parse5"; 5850 - packageName = "parse5"; 5851 - version = "6.0.1"; 5852 - src = fetchurl { 5853 - url = "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz"; 5854 - sha512 = "Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw=="; 5855 - }; 5856 - }; 5857 5659 "parseurl-1.3.3" = { 5858 5660 name = "parseurl"; 5859 5661 packageName = "parseurl"; ··· 5989 5791 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 5990 5792 }; 5991 5793 }; 5992 - "prebuild-install-6.0.1" = { 5794 + "prebuild-install-5.3.6" = { 5993 5795 name = "prebuild-install"; 5994 5796 packageName = "prebuild-install"; 5995 - version = "6.0.1"; 5797 + version = "5.3.6"; 5996 5798 src = fetchurl { 5997 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.1.tgz"; 5998 - sha512 = "7GOJrLuow8yeiyv75rmvZyeMGzl8mdEX5gY69d6a6bHWmiPevwqFw+tQavhK0EYMaSg3/KD24cWqeQv1EWsqDQ=="; 5799 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz"; 5800 + sha512 = "s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg=="; 5999 5801 }; 6000 5802 }; 6001 5803 "prelude-ls-1.1.2" = { ··· 6106 5908 sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 6107 5909 }; 6108 5910 }; 6109 - "queue-microtask-1.2.2" = { 6110 - name = "queue-microtask"; 6111 - packageName = "queue-microtask"; 6112 - version = "1.2.2"; 6113 - src = fetchurl { 6114 - url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.2.tgz"; 6115 - sha512 = "dB15eXv3p2jDlbOiNLyMabYg1/sXvppd8DP2J3EOCQ0AkuSXCW2tP7mnVouVLJKgUMY6yP0kcQDVpLCN13h4Xg=="; 6116 - }; 6117 - }; 6118 - "queue-microtask-1.2.3" = { 6119 - name = "queue-microtask"; 6120 - packageName = "queue-microtask"; 6121 - version = "1.2.3"; 6122 - src = fetchurl { 6123 - url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz"; 6124 - sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A=="; 6125 - }; 6126 - }; 6127 5911 "range-parser-1.2.1" = { 6128 5912 name = "range-parser"; 6129 5913 packageName = "range-parser"; ··· 6149 5933 src = fetchurl { 6150 5934 url = "https://registry.npmjs.org/react-is/-/react-is-17.0.1.tgz"; 6151 5935 sha512 = "NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA=="; 6152 - }; 6153 - }; 6154 - "react-is-17.0.2" = { 6155 - name = "react-is"; 6156 - packageName = "react-is"; 6157 - version = "17.0.2"; 6158 - src = fetchurl { 6159 - url = "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"; 6160 - sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="; 6161 5936 }; 6162 5937 }; 6163 5938 "read-pkg-5.2.0" = { ··· 6295 6070 sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 6296 6071 }; 6297 6072 }; 6298 - "regjsparser-0.6.7" = { 6073 + "regjsparser-0.6.4" = { 6299 6074 name = "regjsparser"; 6300 6075 packageName = "regjsparser"; 6301 - version = "0.6.7"; 6076 + version = "0.6.4"; 6302 6077 src = fetchurl { 6303 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz"; 6304 - sha512 = "ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ=="; 6078 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz"; 6079 + sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw=="; 6305 6080 }; 6306 6081 }; 6307 6082 "reinterval-1.1.0" = { ··· 6376 6151 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 6377 6152 }; 6378 6153 }; 6379 - "require-from-string-2.0.2" = { 6380 - name = "require-from-string"; 6381 - packageName = "require-from-string"; 6382 - version = "2.0.2"; 6383 - src = fetchurl { 6384 - url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 6385 - sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 6386 - }; 6387 - }; 6388 6154 "require-main-filename-2.0.0" = { 6389 6155 name = "require-main-filename"; 6390 6156 packageName = "require-main-filename"; ··· 6394 6160 sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg=="; 6395 6161 }; 6396 6162 }; 6397 - "resolve-1.20.0" = { 6163 + "resolve-1.19.0" = { 6398 6164 name = "resolve"; 6399 6165 packageName = "resolve"; 6400 - version = "1.20.0"; 6166 + version = "1.19.0"; 6401 6167 src = fetchurl { 6402 - url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"; 6403 - sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; 6168 + url = "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz"; 6169 + sha512 = "rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg=="; 6404 6170 }; 6405 6171 }; 6406 6172 "resolve-cwd-3.0.0" = { ··· 6457 6223 sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6458 6224 }; 6459 6225 }; 6226 + "rimraf-2.6.3" = { 6227 + name = "rimraf"; 6228 + packageName = "rimraf"; 6229 + version = "2.6.3"; 6230 + src = fetchurl { 6231 + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; 6232 + sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; 6233 + }; 6234 + }; 6460 6235 "rimraf-3.0.2" = { 6461 6236 name = "rimraf"; 6462 6237 packageName = "rimraf"; ··· 6475 6250 sha512 = "nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA=="; 6476 6251 }; 6477 6252 }; 6478 - "run-parallel-1.2.0" = { 6253 + "run-parallel-1.1.10" = { 6479 6254 name = "run-parallel"; 6480 6255 packageName = "run-parallel"; 6481 - version = "1.2.0"; 6256 + version = "1.1.10"; 6482 6257 src = fetchurl { 6483 - url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz"; 6484 - sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA=="; 6258 + url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz"; 6259 + sha512 = "zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw=="; 6485 6260 }; 6486 6261 }; 6487 6262 "safe-buffer-5.1.2" = { ··· 6565 6340 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 6566 6341 }; 6567 6342 }; 6568 - "semver-7.3.4" = { 6569 - name = "semver"; 6570 - packageName = "semver"; 6571 - version = "7.3.4"; 6572 - src = fetchurl { 6573 - url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 6574 - sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 6575 - }; 6576 - }; 6577 - "semver-7.3.5" = { 6343 + "semver-7.3.2" = { 6578 6344 name = "semver"; 6579 6345 packageName = "semver"; 6580 - version = "7.3.5"; 6346 + version = "7.3.2"; 6581 6347 src = fetchurl { 6582 - url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 6583 - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 6348 + url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"; 6349 + sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="; 6584 6350 }; 6585 6351 }; 6586 6352 "send-0.17.1" = { ··· 6592 6358 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 6593 6359 }; 6594 6360 }; 6595 - "serialport-9.0.6" = { 6361 + "serialport-9.0.2" = { 6596 6362 name = "serialport"; 6597 6363 packageName = "serialport"; 6598 - version = "9.0.6"; 6364 + version = "9.0.2"; 6599 6365 src = fetchurl { 6600 - url = "https://registry.npmjs.org/serialport/-/serialport-9.0.6.tgz"; 6601 - sha512 = "T9eY4HFzQij0Hd/RsPcZySdeuAqzV5iGICHz8FXUSKVn2SvGT5zjfz/H+pRwI86k+3iFVOyddEyy8gbVNVbW7A=="; 6366 + url = "https://registry.npmjs.org/serialport/-/serialport-9.0.2.tgz"; 6367 + sha512 = "N++EVrc2F3kUJ6aCE6BLxHwTrelFAZM3LFw4lo8TV0fDtfrwTc3+aoDpSsvfQg3DxrRf3shCtA6WYEH4g8kapw=="; 6602 6368 }; 6603 6369 }; 6604 6370 "serve-static-1.14.1" = { ··· 6691 6457 sha512 = "vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="; 6692 6458 }; 6693 6459 }; 6694 - "shiki-0.9.2" = { 6695 - name = "shiki"; 6696 - packageName = "shiki"; 6697 - version = "0.9.2"; 6698 - src = fetchurl { 6699 - url = "https://registry.npmjs.org/shiki/-/shiki-0.9.2.tgz"; 6700 - sha512 = "BjUCxVbxMnvjs8jC4b+BQ808vwjJ9Q8NtLqPwXShZ307HdXiDFYP968ORSVfaTNNSWYDBYdMnVKJ0fYNsoZUBA=="; 6701 - }; 6702 - }; 6703 6460 "signal-exit-3.0.3" = { 6704 6461 name = "signal-exit"; 6705 6462 packageName = "signal-exit"; ··· 6763 6520 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 6764 6521 }; 6765 6522 }; 6766 - "slice-ansi-4.0.0" = { 6523 + "slice-ansi-2.1.0" = { 6767 6524 name = "slice-ansi"; 6768 6525 packageName = "slice-ansi"; 6769 - version = "4.0.0"; 6526 + version = "2.1.0"; 6770 6527 src = fetchurl { 6771 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 6772 - sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 6528 + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"; 6529 + sha512 = "Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="; 6773 6530 }; 6774 6531 }; 6775 6532 "slip-1.0.2" = { ··· 6853 6610 sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw=="; 6854 6611 }; 6855 6612 }; 6856 - "source-map-url-0.4.1" = { 6613 + "source-map-url-0.4.0" = { 6857 6614 name = "source-map-url"; 6858 6615 packageName = "source-map-url"; 6859 - version = "0.4.1"; 6616 + version = "0.4.0"; 6860 6617 src = fetchurl { 6861 - url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz"; 6862 - sha512 = "cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw=="; 6618 + url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz"; 6619 + sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3"; 6863 6620 }; 6864 6621 }; 6865 6622 "spdx-correct-3.1.1" = { ··· 6889 6646 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 6890 6647 }; 6891 6648 }; 6892 - "spdx-license-ids-3.0.7" = { 6649 + "spdx-license-ids-3.0.6" = { 6893 6650 name = "spdx-license-ids"; 6894 6651 packageName = "spdx-license-ids"; 6895 - version = "3.0.7"; 6652 + version = "3.0.6"; 6896 6653 src = fetchurl { 6897 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 6898 - sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 6654 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz"; 6655 + sha512 = "+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw=="; 6899 6656 }; 6900 6657 }; 6901 6658 "split-string-3.1.0" = { ··· 6997 6754 sha512 = "PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw=="; 6998 6755 }; 6999 6756 }; 7000 - "string-length-4.0.2" = { 7001 - name = "string-length"; 7002 - packageName = "string-length"; 7003 - version = "4.0.2"; 7004 - src = fetchurl { 7005 - url = "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz"; 7006 - sha512 = "+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ=="; 7007 - }; 7008 - }; 7009 6757 "string-width-1.0.2" = { 7010 6758 name = "string-width"; 7011 6759 packageName = "string-width"; ··· 7015 6763 sha1 = "118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3"; 7016 6764 }; 7017 6765 }; 7018 - "string-width-4.2.2" = { 6766 + "string-width-3.1.0" = { 7019 6767 name = "string-width"; 7020 6768 packageName = "string-width"; 7021 - version = "4.2.2"; 6769 + version = "3.1.0"; 7022 6770 src = fetchurl { 7023 - url = "https://registry.npmjs.org/string-width/-/string-width-4.2.2.tgz"; 7024 - sha512 = "XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA=="; 6771 + url = "https://registry.npmjs.org/string-width/-/string-width-3.1.0.tgz"; 6772 + sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w=="; 6773 + }; 6774 + }; 6775 + "string-width-4.2.0" = { 6776 + name = "string-width"; 6777 + packageName = "string-width"; 6778 + version = "4.2.0"; 6779 + src = fetchurl { 6780 + url = "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz"; 6781 + sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg=="; 7025 6782 }; 7026 6783 }; 7027 6784 "string_decoder-1.1.1" = { ··· 7049 6806 src = fetchurl { 7050 6807 url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz"; 7051 6808 sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"; 6809 + }; 6810 + }; 6811 + "strip-ansi-5.2.0" = { 6812 + name = "strip-ansi"; 6813 + packageName = "strip-ansi"; 6814 + version = "5.2.0"; 6815 + src = fetchurl { 6816 + url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz"; 6817 + sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA=="; 7052 6818 }; 7053 6819 }; 7054 6820 "strip-ansi-6.0.0" = { ··· 7141 6907 sha512 = "9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw=="; 7142 6908 }; 7143 6909 }; 7144 - "table-6.0.7" = { 6910 + "table-5.4.6" = { 7145 6911 name = "table"; 7146 6912 packageName = "table"; 7147 - version = "6.0.7"; 6913 + version = "5.4.6"; 7148 6914 src = fetchurl { 7149 - url = "https://registry.npmjs.org/table/-/table-6.0.7.tgz"; 7150 - sha512 = "rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g=="; 6915 + url = "https://registry.npmjs.org/table/-/table-5.4.6.tgz"; 6916 + sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 7151 6917 }; 7152 6918 }; 7153 6919 "tar-fs-2.1.1" = { ··· 7159 6925 sha512 = "V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng=="; 7160 6926 }; 7161 6927 }; 7162 - "tar-stream-2.2.0" = { 6928 + "tar-stream-2.1.4" = { 7163 6929 name = "tar-stream"; 7164 6930 packageName = "tar-stream"; 7165 - version = "2.2.0"; 6931 + version = "2.1.4"; 7166 6932 src = fetchurl { 7167 - url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz"; 7168 - sha512 = "ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ=="; 6933 + url = "https://registry.npmjs.org/tar-stream/-/tar-stream-2.1.4.tgz"; 6934 + sha512 = "o3pS2zlG4gxr67GmFYBLlq+dM8gyRGUOvsrHclSkvtVtQbjV0s/+ZE8OpICbaj8clrX3tjeHngYGP7rweaBnuw=="; 7169 6935 }; 7170 6936 }; 7171 6937 "terminal-link-2.1.1" = { ··· 7321 7087 sha512 = "yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg=="; 7322 7088 }; 7323 7089 }; 7324 - "tough-cookie-4.0.0" = { 7325 - name = "tough-cookie"; 7326 - packageName = "tough-cookie"; 7327 - version = "4.0.0"; 7328 - src = fetchurl { 7329 - url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-4.0.0.tgz"; 7330 - sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg=="; 7331 - }; 7332 - }; 7333 7090 "tr46-2.0.2" = { 7334 7091 name = "tr46"; 7335 7092 packageName = "tr46"; ··· 7357 7114 sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg=="; 7358 7115 }; 7359 7116 }; 7360 - "tsutils-3.20.0" = { 7361 - name = "tsutils"; 7362 - packageName = "tsutils"; 7363 - version = "3.20.0"; 7364 - src = fetchurl { 7365 - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.20.0.tgz"; 7366 - sha512 = "RYbuQuvkhuqVeXweWT3tJLKOEJ/UUw9GjNEZGWdrLLlM+611o1gwLHBpxoFJKKl25fLprp2eVthtKs5JOrNeXg=="; 7367 - }; 7368 - }; 7369 - "tsutils-3.21.0" = { 7117 + "tsutils-3.17.1" = { 7370 7118 name = "tsutils"; 7371 7119 packageName = "tsutils"; 7372 - version = "3.21.0"; 7120 + version = "3.17.1"; 7373 7121 src = fetchurl { 7374 - url = "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz"; 7375 - sha512 = "mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA=="; 7122 + url = "https://registry.npmjs.org/tsutils/-/tsutils-3.17.1.tgz"; 7123 + sha512 = "kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g=="; 7376 7124 }; 7377 7125 }; 7378 7126 "tunnel-agent-0.6.0" = { ··· 7402 7150 sha512 = "+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg=="; 7403 7151 }; 7404 7152 }; 7405 - "type-2.5.0" = { 7153 + "type-2.1.0" = { 7406 7154 name = "type"; 7407 7155 packageName = "type"; 7408 - version = "2.5.0"; 7156 + version = "2.1.0"; 7409 7157 src = fetchurl { 7410 - url = "https://registry.npmjs.org/type/-/type-2.5.0.tgz"; 7411 - sha512 = "180WMDQaIMm3+7hGXWf12GtdniDEy7nYcyFMKJn/eZz/6tSLXrUN9V0wKSbMjej0I1WHWbpREDEKHtqPQa9NNw=="; 7158 + url = "https://registry.npmjs.org/type/-/type-2.1.0.tgz"; 7159 + sha512 = "G9absDWvhAWCV2gmF1zKud3OyC61nZDwWvBL2DApaVFogI07CprggiQAOOjvp2NRjYWFzPyu7vwtDrQFq8jeSA=="; 7412 7160 }; 7413 7161 }; 7414 7162 "type-check-0.3.2" = { ··· 7447 7195 sha512 = "OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ=="; 7448 7196 }; 7449 7197 }; 7450 - "type-fest-0.20.2" = { 7451 - name = "type-fest"; 7452 - packageName = "type-fest"; 7453 - version = "0.20.2"; 7454 - src = fetchurl { 7455 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 7456 - sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 7457 - }; 7458 - }; 7459 - "type-fest-0.21.3" = { 7460 - name = "type-fest"; 7461 - packageName = "type-fest"; 7462 - version = "0.21.3"; 7463 - src = fetchurl { 7464 - url = "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz"; 7465 - sha512 = "t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w=="; 7466 - }; 7467 - }; 7468 7198 "type-fest-0.6.0" = { 7469 7199 name = "type-fest"; 7470 7200 packageName = "type-fest"; ··· 7501 7231 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7502 7232 }; 7503 7233 }; 7504 - "typedoc-0.20.28" = { 7234 + "typedoc-0.19.2" = { 7505 7235 name = "typedoc"; 7506 7236 packageName = "typedoc"; 7507 - version = "0.20.28"; 7237 + version = "0.19.2"; 7508 7238 src = fetchurl { 7509 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.20.28.tgz"; 7510 - sha512 = "8j0T8u9FuyDkoe+M/3cyoaGJSVgXCY9KwVoo7TLUnmQuzXwqH+wkScY530ZEdK6G39UZ2LFTYPIrL5eykWjx6A=="; 7239 + url = "https://registry.npmjs.org/typedoc/-/typedoc-0.19.2.tgz"; 7240 + sha512 = "oDEg1BLEzi1qvgdQXc658EYgJ5qJLVSeZ0hQ57Eq4JXy6Vj2VX4RVo18qYxRWz75ifAaYuYNBUCnbhjd37TfOg=="; 7511 7241 }; 7512 7242 }; 7513 - "typedoc-default-themes-0.12.7" = { 7243 + "typedoc-default-themes-0.11.4" = { 7514 7244 name = "typedoc-default-themes"; 7515 7245 packageName = "typedoc-default-themes"; 7516 - version = "0.12.7"; 7246 + version = "0.11.4"; 7517 7247 src = fetchurl { 7518 - url = "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.12.7.tgz"; 7519 - sha512 = "0XAuGEqID+gon1+fhi4LycOEFM+5Mvm2PjwaiVZNAzU7pn3G2DEpsoXnFOPlLDnHY6ZW0BY0nO7ur9fHOFkBLQ=="; 7248 + url = "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.11.4.tgz"; 7249 + sha512 = "Y4Lf+qIb9NTydrexlazAM46SSLrmrQRqWiD52593g53SsmUFioAsMWt8m834J6qsp+7wHRjxCXSZeiiW5cMUdw=="; 7520 7250 }; 7521 7251 }; 7522 - "typedoc-plugin-markdown-3.6.0" = { 7252 + "typedoc-plugin-markdown-3.0.11" = { 7523 7253 name = "typedoc-plugin-markdown"; 7524 7254 packageName = "typedoc-plugin-markdown"; 7525 - version = "3.6.0"; 7255 + version = "3.0.11"; 7526 7256 src = fetchurl { 7527 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.6.0.tgz"; 7528 - sha512 = "fg4xby3awJVVxB8TdhHNsZQfiTC5x1XmauVwhKXc6hGeu1bzTnqrkmDT8NCjxfUgw64si8cUX1jBfBjAHthWpQ=="; 7257 + url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.0.11.tgz"; 7258 + sha512 = "/BE/PqnIVbQJ525czM+T3CVaA1gVN9X1Le100z8TV/Lze8LZVkuAUiHRIgw9BKYFm9IQaB88W55k4EV6uUVwYQ=="; 7529 7259 }; 7530 7260 }; 7531 7261 "typedoc-plugin-no-inherit-1.2.0" = { ··· 7546 7276 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 7547 7277 }; 7548 7278 }; 7549 - "typescript-4.2.2" = { 7279 + "typescript-4.0.5" = { 7550 7280 name = "typescript"; 7551 7281 packageName = "typescript"; 7552 - version = "4.2.2"; 7282 + version = "4.0.5"; 7553 7283 src = fetchurl { 7554 - url = "https://registry.npmjs.org/typescript/-/typescript-4.2.2.tgz"; 7555 - sha512 = "tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ=="; 7284 + url = "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz"; 7285 + sha512 = "ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ=="; 7556 7286 }; 7557 7287 }; 7558 - "uglify-js-3.13.0" = { 7288 + "uglify-js-3.11.6" = { 7559 7289 name = "uglify-js"; 7560 7290 packageName = "uglify-js"; 7561 - version = "3.13.0"; 7291 + version = "3.11.6"; 7562 7292 src = fetchurl { 7563 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.0.tgz"; 7564 - sha512 = "TWYSWa9T2pPN4DIJYbU9oAjQx+5qdV5RUDxwARg8fmJZrD/V27Zj0JngW5xg1DFz42G0uDYl2XhzF6alSzD62w=="; 7293 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.6.tgz"; 7294 + sha512 = "oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g=="; 7565 7295 }; 7566 7296 }; 7567 7297 "unc-path-regex-0.1.2" = { ··· 7627 7357 sha512 = "2nY4TnBE70yoxHkDli7DMazpWiP7xMdCYqU2nBRO0UB+ZpEkGsSija7MvmvnZFUeC+mrgiUfcHSr3LmRFIg4+A=="; 7628 7358 }; 7629 7359 }; 7630 - "universalify-0.1.2" = { 7360 + "universalify-1.0.0" = { 7631 7361 name = "universalify"; 7632 7362 packageName = "universalify"; 7633 - version = "0.1.2"; 7363 + version = "1.0.0"; 7634 7364 src = fetchurl { 7635 - url = "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz"; 7636 - sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg=="; 7365 + url = "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz"; 7366 + sha512 = "rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug=="; 7637 7367 }; 7638 7368 }; 7639 7369 "universalify-2.0.0" = { ··· 7681 7411 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 7682 7412 }; 7683 7413 }; 7684 - "uri-js-4.4.1" = { 7414 + "uri-js-4.4.0" = { 7685 7415 name = "uri-js"; 7686 7416 packageName = "uri-js"; 7687 - version = "4.4.1"; 7417 + version = "4.4.0"; 7688 7418 src = fetchurl { 7689 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz"; 7690 - sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg=="; 7419 + url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz"; 7420 + sha512 = "B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g=="; 7691 7421 }; 7692 7422 }; 7693 7423 "urix-0.1.0" = { ··· 7726 7456 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7727 7457 }; 7728 7458 }; 7729 - "uuid-8.3.2" = { 7459 + "uuid-8.3.1" = { 7730 7460 name = "uuid"; 7731 7461 packageName = "uuid"; 7732 - version = "8.3.2"; 7462 + version = "8.3.1"; 7733 7463 src = fetchurl { 7734 - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 7735 - sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 7464 + url = "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz"; 7465 + sha512 = "FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg=="; 7736 7466 }; 7737 7467 }; 7738 7468 "v8-compile-cache-2.2.0" = { ··· 7744 7474 sha512 = "gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q=="; 7745 7475 }; 7746 7476 }; 7747 - "v8-compile-cache-2.3.0" = { 7748 - name = "v8-compile-cache"; 7749 - packageName = "v8-compile-cache"; 7750 - version = "2.3.0"; 7751 - src = fetchurl { 7752 - url = "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 7753 - sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 7754 - }; 7755 - }; 7756 - "v8-to-istanbul-7.1.0" = { 7477 + "v8-to-istanbul-7.0.0" = { 7757 7478 name = "v8-to-istanbul"; 7758 7479 packageName = "v8-to-istanbul"; 7759 - version = "7.1.0"; 7480 + version = "7.0.0"; 7760 7481 src = fetchurl { 7761 - url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz"; 7762 - sha512 = "uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g=="; 7482 + url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.0.0.tgz"; 7483 + sha512 = "fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA=="; 7763 7484 }; 7764 7485 }; 7765 7486 "validate-npm-package-license-3.0.4" = { ··· 7778 7499 src = fetchurl { 7779 7500 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 7780 7501 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 7781 - }; 7782 - }; 7783 - "vscode-textmate-5.2.0" = { 7784 - name = "vscode-textmate"; 7785 - packageName = "vscode-textmate"; 7786 - version = "5.2.0"; 7787 - src = fetchurl { 7788 - url = "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz"; 7789 - sha512 = "Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ=="; 7790 7502 }; 7791 7503 }; 7792 7504 "w3c-hr-time-1.0.2" = { ··· 7861 7573 sha512 = "vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw=="; 7862 7574 }; 7863 7575 }; 7864 - "whatwg-url-8.5.0" = { 7865 - name = "whatwg-url"; 7866 - packageName = "whatwg-url"; 7867 - version = "8.5.0"; 7868 - src = fetchurl { 7869 - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-8.5.0.tgz"; 7870 - sha512 = "fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg=="; 7871 - }; 7872 - }; 7873 7576 "which-1.3.1" = { 7874 7577 name = "which"; 7875 7578 packageName = "which"; ··· 7978 7681 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 7979 7682 }; 7980 7683 }; 7684 + "write-1.0.3" = { 7685 + name = "write"; 7686 + packageName = "write"; 7687 + version = "1.0.3"; 7688 + src = fetchurl { 7689 + url = "https://registry.npmjs.org/write/-/write-1.0.3.tgz"; 7690 + sha512 = "/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig=="; 7691 + }; 7692 + }; 7981 7693 "write-file-atomic-3.0.3" = { 7982 7694 name = "write-file-atomic"; 7983 7695 packageName = "write-file-atomic"; ··· 7987 7699 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 7988 7700 }; 7989 7701 }; 7990 - "ws-7.4.3" = { 7702 + "ws-7.4.0" = { 7991 7703 name = "ws"; 7992 7704 packageName = "ws"; 7993 - version = "7.4.3"; 7705 + version = "7.4.0"; 7994 7706 src = fetchurl { 7995 - url = "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz"; 7996 - sha512 = "hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA=="; 7997 - }; 7998 - }; 7999 - "ws-7.4.4" = { 8000 - name = "ws"; 8001 - packageName = "ws"; 8002 - version = "7.4.4"; 8003 - src = fetchurl { 8004 - url = "https://registry.npmjs.org/ws/-/ws-7.4.4.tgz"; 8005 - sha512 = "Qm8k8ojNQIMx7S+Zp8u/uHOx7Qazv3Yv4q68MiWWWOJhiwG5W3x7iqmRtJo8xxrciZUY4vRxUTJCKuRnF28ZZw=="; 7707 + url = "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz"; 7708 + sha512 = "kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ=="; 8006 7709 }; 8007 7710 }; 8008 7711 "xml-name-validator-3.0.0" = { ··· 8032 7735 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 8033 7736 }; 8034 7737 }; 8035 - "y18n-4.0.1" = { 7738 + "y18n-4.0.0" = { 8036 7739 name = "y18n"; 8037 7740 packageName = "y18n"; 8038 - version = "4.0.1"; 8039 - src = fetchurl { 8040 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 8041 - sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 8042 - }; 8043 - }; 8044 - "yallist-3.1.1" = { 8045 - name = "yallist"; 8046 - packageName = "yallist"; 8047 - version = "3.1.1"; 8048 - src = fetchurl { 8049 - url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"; 8050 - sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="; 8051 - }; 8052 - }; 8053 - "yallist-4.0.0" = { 8054 - name = "yallist"; 8055 - packageName = "yallist"; 8056 7741 version = "4.0.0"; 8057 7742 src = fetchurl { 8058 - url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 8059 - sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 7743 + url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; 7744 + sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; 8060 7745 }; 8061 7746 }; 8062 7747 "yargs-15.4.1" = { ··· 8077 7762 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 8078 7763 }; 8079 7764 }; 8080 - "zigbee-herdsman-0.13.87" = { 7765 + "zigbee-herdsman-0.13.37" = { 8081 7766 name = "zigbee-herdsman"; 8082 7767 packageName = "zigbee-herdsman"; 8083 - version = "0.13.87"; 7768 + version = "0.13.37"; 8084 7769 src = fetchurl { 8085 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.87.tgz"; 8086 - sha512 = "cfCLotsg6MzF2ptTwxfl1wV8kbopqNaHG2n7YS77OZJsXL2tbJi/0fL7asXtJB2fO/MRIgj0gYMUMivUe4TYIw=="; 8087 - }; 8088 - }; 8089 - "zigbee-herdsman-0.13.88" = { 8090 - name = "zigbee-herdsman"; 8091 - packageName = "zigbee-herdsman"; 8092 - version = "0.13.88"; 8093 - src = fetchurl { 8094 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.88.tgz"; 8095 - sha512 = "PTCg7+ATwD29qjuUWcvJHN8E+GFL70b1lRTFzZbMMWdMNKCVy6ZQhPSwjmq+tTNRtzyCVUb2IW7boDR0Aetq+A=="; 7770 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.37.tgz"; 7771 + sha512 = "eK2EK2mqT80ueHvEicKmXGyw+VezoK+7NcHX9WjjeQL6bdOpaLCuDGZY0sOh86Lmodyvdd0ZxY7MwA6z/Ko2PA=="; 8096 7772 }; 8097 7773 }; 8098 - "zigbee-herdsman-converters-14.0.102" = { 7774 + "zigbee-herdsman-converters-13.0.7" = { 8099 7775 name = "zigbee-herdsman-converters"; 8100 7776 packageName = "zigbee-herdsman-converters"; 8101 - version = "14.0.102"; 7777 + version = "13.0.7"; 8102 7778 src = fetchurl { 8103 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.102.tgz"; 8104 - sha512 = "8zv69JAjBfSpsETW9ZdtjrcgZWRoxFPoKuwX9VkaStAj+U2Wx1F6B7HgIHM1SFodM+hhuFfEDEi/c8eUbznUEQ=="; 7779 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-13.0.7.tgz"; 7780 + sha512 = "aHqcbkQmoSkBth4s94//wJm2UO+0YFQkIndRBbz1XAIdNeHDhUVA6ZT1B1DgJZEbF/HRW8ZZLC+biSF6h/1HvQ=="; 8105 7781 }; 8106 7782 }; 8107 - "zigbee2mqtt-frontend-0.3.114" = { 7783 + "zigbee2mqtt-frontend-0.2.100" = { 8108 7784 name = "zigbee2mqtt-frontend"; 8109 7785 packageName = "zigbee2mqtt-frontend"; 8110 - version = "0.3.114"; 7786 + version = "0.2.100"; 8111 7787 src = fetchurl { 8112 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.3.114.tgz"; 8113 - sha512 = "302JgXKgXZzEaulvINtYgODZAoSiPSazL6FBTZwteCw6knrqYslPl9kVQ0NVDT0o3RmWBrYJ9o0Gj03Ew+gc6A=="; 7788 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.2.100.tgz"; 7789 + sha512 = "/WASdNtWYAqts8RvC3j6HkdnZifg2KEocGS1eIl1G7Gghoj/80TiF5TVYtU3YG9M40vgMIIMvIwrmc8UOmdJhg=="; 8114 7790 }; 8115 7791 }; 8116 7792 }; 8117 7793 args = { 8118 7794 name = "zigbee2mqtt"; 8119 7795 packageName = "zigbee2mqtt"; 8120 - version = "1.18.2"; 7796 + version = "1.16.2"; 8121 7797 src = ./.; 8122 7798 dependencies = [ 8123 7799 sources."@dabh/diagnostics-2.0.2" ··· 8127 7803 sources."balanced-match-1.0.0" 8128 7804 sources."base64-js-1.5.1" 8129 7805 sources."bindings-1.5.0" 8130 - (sources."bl-4.1.0" // { 7806 + (sources."bl-4.0.3" // { 8131 7807 dependencies = [ 8132 7808 sources."readable-stream-3.6.0" 8133 7809 ]; ··· 8139 7815 sources."color-3.0.0" 8140 7816 sources."color-convert-1.9.3" 8141 7817 sources."color-name-1.1.3" 8142 - sources."color-string-1.5.5" 7818 + sources."color-string-1.5.4" 8143 7819 sources."colors-1.4.0" 8144 7820 sources."colorspace-1.1.2" 8145 7821 sources."commist-1.1.0" ··· 8147 7823 sources."concat-stream-1.6.2" 8148 7824 sources."core-util-is-1.0.2" 8149 7825 sources."d-1.0.1" 8150 - sources."debounce-1.2.1" 7826 + sources."debounce-1.2.0" 8151 7827 sources."debug-2.6.9" 8152 - sources."deep-object-diff-1.1.0" 8153 7828 sources."depd-1.1.2" 8154 7829 sources."destroy-1.0.4" 8155 7830 sources."duplexify-3.7.1" ··· 8172 7847 sources."event-emitter-0.3.5" 8173 7848 (sources."ext-1.4.0" // { 8174 7849 dependencies = [ 8175 - sources."type-2.5.0" 7850 + sources."type-2.1.0" 8176 7851 ]; 8177 7852 }) 8178 7853 sources."extend-3.0.2" ··· 8192 7867 sources."glossy-0.1.7" 8193 7868 sources."help-me-1.1.0" 8194 7869 sources."http-errors-1.7.3" 8195 - sources."humanize-duration-3.25.1" 7870 + sources."humanize-duration-3.24.0" 8196 7871 sources."ieee754-1.2.1" 8197 7872 sources."inflight-1.0.6" 8198 7873 sources."inherits-2.0.4" ··· 8206 7881 sources."is-unc-path-1.0.0" 8207 7882 sources."is-windows-1.0.2" 8208 7883 sources."isarray-1.0.0" 8209 - sources."js-yaml-3.14.1" 7884 + sources."js-yaml-3.14.0" 8210 7885 sources."json-schema-traverse-0.4.1" 8211 7886 sources."json-stable-stringify-without-jsonify-1.0.1" 8212 7887 sources."kuler-2.0.0" 8213 7888 sources."leven-2.1.0" 8214 7889 (sources."logform-2.2.0" // { 8215 7890 dependencies = [ 8216 - sources."ms-2.1.3" 7891 + sources."ms-2.1.2" 8217 7892 ]; 8218 7893 }) 8219 - sources."lru-cache-6.0.0" 8220 7894 sources."mime-1.6.0" 8221 7895 sources."minimatch-3.0.4" 8222 7896 sources."minimist-1.2.5" ··· 8228 7902 sources."ms-2.1.2" 8229 7903 ]; 8230 7904 }) 8231 - (sources."mqtt-packet-6.9.0" // { 7905 + (sources."mqtt-packet-6.6.0" // { 8232 7906 dependencies = [ 8233 7907 sources."debug-4.3.1" 8234 7908 sources."ms-2.1.2" ··· 8259 7933 sources."remove-trailing-separator-1.1.0" 8260 7934 sources."rimraf-3.0.2" 8261 7935 sources."safe-buffer-5.1.2" 8262 - sources."semver-7.3.5" 7936 + sources."semver-7.3.2" 8263 7937 (sources."send-0.17.1" // { 8264 7938 dependencies = [ 8265 7939 sources."ms-2.1.1" ··· 8290 7964 sources."unique-stream-2.3.1" 8291 7965 sources."unix-dgram-2.0.3" 8292 7966 sources."unpipe-1.0.0" 8293 - sources."uri-js-4.4.1" 7967 + sources."uri-js-4.4.0" 8294 7968 sources."util-deprecate-1.0.2" 8295 7969 (sources."winston-3.3.3" // { 8296 7970 dependencies = [ ··· 8300 7974 sources."winston-syslog-2.4.4" 8301 7975 sources."winston-transport-4.4.0" 8302 7976 sources."wrappy-1.0.2" 8303 - sources."ws-7.4.4" 7977 + sources."ws-7.4.0" 8304 7978 sources."xtend-4.0.2" 8305 - sources."yallist-4.0.0" 8306 - (sources."zigbee-herdsman-0.13.88" // { 7979 + (sources."zigbee-herdsman-0.13.37" // { 8307 7980 dependencies = [ 8308 - sources."@babel/cli-7.13.0" 8309 - sources."@babel/code-frame-7.12.13" 8310 - sources."@babel/compat-data-7.13.8" 8311 - (sources."@babel/core-7.13.8" // { 8312 - dependencies = [ 8313 - sources."semver-6.3.0" 8314 - ]; 8315 - }) 8316 - sources."@babel/generator-7.13.9" 8317 - sources."@babel/helper-annotate-as-pure-7.12.13" 8318 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 8319 - (sources."@babel/helper-compilation-targets-7.13.8" // { 8320 - dependencies = [ 8321 - sources."semver-6.3.0" 8322 - ]; 8323 - }) 8324 - sources."@babel/helper-create-class-features-plugin-7.13.8" 8325 - sources."@babel/helper-create-regexp-features-plugin-7.12.17" 8326 - (sources."@babel/helper-define-polyfill-provider-0.1.5" // { 8327 - dependencies = [ 8328 - sources."semver-6.3.0" 8329 - ]; 8330 - }) 8331 - sources."@babel/helper-explode-assignable-expression-7.13.0" 8332 - sources."@babel/helper-function-name-7.12.13" 8333 - sources."@babel/helper-get-function-arity-7.12.13" 8334 - sources."@babel/helper-hoist-variables-7.13.0" 8335 - sources."@babel/helper-member-expression-to-functions-7.13.0" 8336 - sources."@babel/helper-module-imports-7.12.13" 8337 - sources."@babel/helper-module-transforms-7.13.0" 8338 - sources."@babel/helper-optimise-call-expression-7.12.13" 8339 - sources."@babel/helper-plugin-utils-7.13.0" 8340 - sources."@babel/helper-remap-async-to-generator-7.13.0" 8341 - sources."@babel/helper-replace-supers-7.13.0" 8342 - sources."@babel/helper-simple-access-7.12.13" 7981 + sources."@babel/cli-7.12.1" 7982 + sources."@babel/code-frame-7.10.4" 7983 + sources."@babel/compat-data-7.12.5" 7984 + sources."@babel/core-7.12.3" 7985 + sources."@babel/generator-7.12.5" 7986 + sources."@babel/helper-annotate-as-pure-7.10.4" 7987 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" 7988 + sources."@babel/helper-compilation-targets-7.12.5" 7989 + sources."@babel/helper-create-class-features-plugin-7.12.1" 7990 + sources."@babel/helper-create-regexp-features-plugin-7.12.1" 7991 + sources."@babel/helper-define-map-7.10.5" 7992 + sources."@babel/helper-explode-assignable-expression-7.12.1" 7993 + sources."@babel/helper-function-name-7.10.4" 7994 + sources."@babel/helper-get-function-arity-7.10.4" 7995 + sources."@babel/helper-hoist-variables-7.10.4" 7996 + sources."@babel/helper-member-expression-to-functions-7.12.1" 7997 + sources."@babel/helper-module-imports-7.12.5" 7998 + sources."@babel/helper-module-transforms-7.12.1" 7999 + sources."@babel/helper-optimise-call-expression-7.10.4" 8000 + sources."@babel/helper-plugin-utils-7.10.4" 8001 + sources."@babel/helper-regex-7.10.5" 8002 + sources."@babel/helper-remap-async-to-generator-7.12.1" 8003 + sources."@babel/helper-replace-supers-7.12.5" 8004 + sources."@babel/helper-simple-access-7.12.1" 8343 8005 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 8344 - sources."@babel/helper-split-export-declaration-7.12.13" 8345 - sources."@babel/helper-validator-identifier-7.12.11" 8346 - sources."@babel/helper-validator-option-7.12.17" 8347 - sources."@babel/helper-wrap-function-7.13.0" 8348 - sources."@babel/helpers-7.13.0" 8349 - sources."@babel/highlight-7.13.8" 8350 - sources."@babel/parser-7.13.9" 8351 - sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 8352 - sources."@babel/plugin-proposal-class-properties-7.13.0" 8353 - sources."@babel/plugin-proposal-dynamic-import-7.13.8" 8354 - sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 8355 - sources."@babel/plugin-proposal-json-strings-7.13.8" 8356 - sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 8357 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 8358 - sources."@babel/plugin-proposal-numeric-separator-7.12.13" 8359 - sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 8360 - sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 8361 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 8362 - sources."@babel/plugin-proposal-private-methods-7.13.0" 8363 - sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 8006 + sources."@babel/helper-split-export-declaration-7.11.0" 8007 + sources."@babel/helper-validator-identifier-7.10.4" 8008 + sources."@babel/helper-validator-option-7.12.1" 8009 + sources."@babel/helper-wrap-function-7.12.3" 8010 + sources."@babel/helpers-7.12.5" 8011 + sources."@babel/highlight-7.10.4" 8012 + sources."@babel/parser-7.12.5" 8013 + sources."@babel/plugin-proposal-async-generator-functions-7.12.1" 8014 + sources."@babel/plugin-proposal-class-properties-7.12.1" 8015 + sources."@babel/plugin-proposal-dynamic-import-7.12.1" 8016 + sources."@babel/plugin-proposal-export-namespace-from-7.12.1" 8017 + sources."@babel/plugin-proposal-json-strings-7.12.1" 8018 + sources."@babel/plugin-proposal-logical-assignment-operators-7.12.1" 8019 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" 8020 + sources."@babel/plugin-proposal-numeric-separator-7.12.5" 8021 + sources."@babel/plugin-proposal-object-rest-spread-7.12.1" 8022 + sources."@babel/plugin-proposal-optional-catch-binding-7.12.1" 8023 + sources."@babel/plugin-proposal-optional-chaining-7.12.1" 8024 + sources."@babel/plugin-proposal-private-methods-7.12.1" 8025 + sources."@babel/plugin-proposal-unicode-property-regex-7.12.1" 8364 8026 sources."@babel/plugin-syntax-async-generators-7.8.4" 8365 8027 sources."@babel/plugin-syntax-bigint-7.8.3" 8366 - sources."@babel/plugin-syntax-class-properties-7.12.13" 8028 + sources."@babel/plugin-syntax-class-properties-7.12.1" 8367 8029 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 8368 8030 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 8369 8031 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 8374 8036 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 8375 8037 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 8376 8038 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 8377 - sources."@babel/plugin-syntax-top-level-await-7.12.13" 8378 - sources."@babel/plugin-syntax-typescript-7.12.13" 8379 - sources."@babel/plugin-transform-arrow-functions-7.13.0" 8380 - sources."@babel/plugin-transform-async-to-generator-7.13.0" 8381 - sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 8382 - sources."@babel/plugin-transform-block-scoping-7.12.13" 8383 - sources."@babel/plugin-transform-classes-7.13.0" 8384 - sources."@babel/plugin-transform-computed-properties-7.13.0" 8385 - sources."@babel/plugin-transform-destructuring-7.13.0" 8386 - sources."@babel/plugin-transform-dotall-regex-7.12.13" 8387 - sources."@babel/plugin-transform-duplicate-keys-7.12.13" 8388 - sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 8389 - sources."@babel/plugin-transform-for-of-7.13.0" 8390 - sources."@babel/plugin-transform-function-name-7.12.13" 8391 - sources."@babel/plugin-transform-literals-7.12.13" 8392 - sources."@babel/plugin-transform-member-expression-literals-7.12.13" 8393 - sources."@babel/plugin-transform-modules-amd-7.13.0" 8394 - sources."@babel/plugin-transform-modules-commonjs-7.13.8" 8395 - sources."@babel/plugin-transform-modules-systemjs-7.13.8" 8396 - sources."@babel/plugin-transform-modules-umd-7.13.0" 8397 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 8398 - sources."@babel/plugin-transform-new-target-7.12.13" 8399 - sources."@babel/plugin-transform-object-super-7.12.13" 8400 - sources."@babel/plugin-transform-parameters-7.13.0" 8401 - sources."@babel/plugin-transform-property-literals-7.12.13" 8402 - sources."@babel/plugin-transform-regenerator-7.12.13" 8403 - sources."@babel/plugin-transform-reserved-words-7.12.13" 8404 - sources."@babel/plugin-transform-shorthand-properties-7.12.13" 8405 - sources."@babel/plugin-transform-spread-7.13.0" 8406 - sources."@babel/plugin-transform-sticky-regex-7.12.13" 8407 - sources."@babel/plugin-transform-template-literals-7.13.0" 8408 - sources."@babel/plugin-transform-typeof-symbol-7.12.13" 8409 - sources."@babel/plugin-transform-typescript-7.13.0" 8410 - sources."@babel/plugin-transform-unicode-escapes-7.12.13" 8411 - sources."@babel/plugin-transform-unicode-regex-7.12.13" 8412 - (sources."@babel/preset-env-7.13.9" // { 8413 - dependencies = [ 8414 - sources."semver-6.3.0" 8415 - ]; 8416 - }) 8039 + sources."@babel/plugin-syntax-top-level-await-7.12.1" 8040 + sources."@babel/plugin-syntax-typescript-7.12.1" 8041 + sources."@babel/plugin-transform-arrow-functions-7.12.1" 8042 + sources."@babel/plugin-transform-async-to-generator-7.12.1" 8043 + sources."@babel/plugin-transform-block-scoped-functions-7.12.1" 8044 + sources."@babel/plugin-transform-block-scoping-7.12.1" 8045 + sources."@babel/plugin-transform-classes-7.12.1" 8046 + sources."@babel/plugin-transform-computed-properties-7.12.1" 8047 + sources."@babel/plugin-transform-destructuring-7.12.1" 8048 + sources."@babel/plugin-transform-dotall-regex-7.12.1" 8049 + sources."@babel/plugin-transform-duplicate-keys-7.12.1" 8050 + sources."@babel/plugin-transform-exponentiation-operator-7.12.1" 8051 + sources."@babel/plugin-transform-for-of-7.12.1" 8052 + sources."@babel/plugin-transform-function-name-7.12.1" 8053 + sources."@babel/plugin-transform-literals-7.12.1" 8054 + sources."@babel/plugin-transform-member-expression-literals-7.12.1" 8055 + sources."@babel/plugin-transform-modules-amd-7.12.1" 8056 + sources."@babel/plugin-transform-modules-commonjs-7.12.1" 8057 + sources."@babel/plugin-transform-modules-systemjs-7.12.1" 8058 + sources."@babel/plugin-transform-modules-umd-7.12.1" 8059 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.1" 8060 + sources."@babel/plugin-transform-new-target-7.12.1" 8061 + sources."@babel/plugin-transform-object-super-7.12.1" 8062 + sources."@babel/plugin-transform-parameters-7.12.1" 8063 + sources."@babel/plugin-transform-property-literals-7.12.1" 8064 + sources."@babel/plugin-transform-regenerator-7.12.1" 8065 + sources."@babel/plugin-transform-reserved-words-7.12.1" 8066 + sources."@babel/plugin-transform-shorthand-properties-7.12.1" 8067 + sources."@babel/plugin-transform-spread-7.12.1" 8068 + sources."@babel/plugin-transform-sticky-regex-7.12.1" 8069 + sources."@babel/plugin-transform-template-literals-7.12.1" 8070 + sources."@babel/plugin-transform-typeof-symbol-7.12.1" 8071 + sources."@babel/plugin-transform-typescript-7.12.1" 8072 + sources."@babel/plugin-transform-unicode-escapes-7.12.1" 8073 + sources."@babel/plugin-transform-unicode-regex-7.12.1" 8074 + sources."@babel/preset-env-7.12.1" 8417 8075 sources."@babel/preset-modules-0.1.4" 8418 - sources."@babel/preset-typescript-7.13.0" 8419 - sources."@babel/runtime-7.13.9" 8420 - sources."@babel/template-7.12.13" 8421 - sources."@babel/traverse-7.13.0" 8422 - sources."@babel/types-7.13.0" 8076 + sources."@babel/preset-typescript-7.12.1" 8077 + sources."@babel/runtime-7.12.5" 8078 + sources."@babel/template-7.10.4" 8079 + sources."@babel/traverse-7.12.5" 8080 + sources."@babel/types-7.12.6" 8423 8081 sources."@bcoe/v8-coverage-0.2.3" 8424 8082 sources."@cnakazawa/watch-1.0.4" 8425 - (sources."@eslint/eslintrc-0.4.0" // { 8083 + (sources."@eslint/eslintrc-0.2.1" // { 8426 8084 dependencies = [ 8427 8085 sources."globals-12.4.0" 8428 8086 sources."ignore-4.0.6" ··· 8430 8088 ]; 8431 8089 }) 8432 8090 sources."@istanbuljs/load-nyc-config-1.1.0" 8433 - sources."@istanbuljs/schema-0.1.3" 8091 + sources."@istanbuljs/schema-0.1.2" 8434 8092 (sources."@jest/console-26.6.2" // { 8435 8093 dependencies = [ 8436 8094 sources."ansi-styles-4.3.0" ··· 8454 8112 sources."has-flag-4.0.0" 8455 8113 sources."is-number-7.0.0" 8456 8114 sources."micromatch-4.0.2" 8115 + sources."rimraf-3.0.2" 8457 8116 sources."slash-3.0.0" 8458 8117 sources."strip-ansi-6.0.0" 8459 8118 sources."supports-color-7.2.0" ··· 8509 8168 sources."supports-color-7.2.0" 8510 8169 ]; 8511 8170 }) 8512 - sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" 8513 - sources."@nodelib/fs.scandir-2.1.4" 8514 - sources."@nodelib/fs.stat-2.0.4" 8515 - sources."@nodelib/fs.walk-1.2.6" 8516 - sources."@serialport/binding-abstract-9.0.7" 8517 - sources."@serialport/binding-mock-9.0.7" 8518 - sources."@serialport/bindings-9.0.4" 8519 - sources."@serialport/parser-byte-length-9.0.7" 8520 - sources."@serialport/parser-cctalk-9.0.7" 8521 - sources."@serialport/parser-delimiter-9.0.7" 8522 - sources."@serialport/parser-inter-byte-timeout-9.0.7" 8523 - sources."@serialport/parser-readline-9.0.7" 8524 - sources."@serialport/parser-ready-9.0.7" 8525 - sources."@serialport/parser-regex-9.0.7" 8526 - sources."@serialport/stream-9.0.7" 8527 - sources."@sinonjs/commons-1.8.2" 8171 + (sources."@nicolo-ribaudo/chokidar-2-2.1.8" // { 8172 + dependencies = [ 8173 + sources."chokidar-2.1.8" 8174 + ]; 8175 + }) 8176 + sources."@nodelib/fs.scandir-2.1.3" 8177 + sources."@nodelib/fs.stat-2.0.3" 8178 + sources."@nodelib/fs.walk-1.2.4" 8179 + sources."@serialport/binding-abstract-9.0.2" 8180 + sources."@serialport/binding-mock-9.0.2" 8181 + sources."@serialport/bindings-9.0.2" 8182 + sources."@serialport/parser-byte-length-9.0.1" 8183 + sources."@serialport/parser-cctalk-9.0.1" 8184 + sources."@serialport/parser-delimiter-9.0.1" 8185 + sources."@serialport/parser-readline-9.0.1" 8186 + sources."@serialport/parser-ready-9.0.1" 8187 + sources."@serialport/parser-regex-9.0.1" 8188 + sources."@serialport/stream-9.0.2" 8189 + sources."@sinonjs/commons-1.8.1" 8528 8190 sources."@sinonjs/fake-timers-6.0.1" 8529 8191 sources."@types/babel__core-7.1.12" 8530 8192 sources."@types/babel__generator-7.6.2" 8531 8193 sources."@types/babel__template-7.4.0" 8532 - sources."@types/babel__traverse-7.11.0" 8194 + sources."@types/babel__traverse-7.0.15" 8533 8195 sources."@types/debounce-1.2.0" 8534 8196 sources."@types/debug-4.1.5" 8535 - sources."@types/graceful-fs-4.1.5" 8197 + sources."@types/graceful-fs-4.1.4" 8536 8198 sources."@types/istanbul-lib-coverage-2.0.3" 8537 8199 sources."@types/istanbul-lib-report-3.0.0" 8538 8200 sources."@types/istanbul-reports-3.0.0" 8539 - sources."@types/jest-26.0.20" 8540 - sources."@types/json-schema-7.0.7" 8201 + sources."@types/jest-26.0.15" 8202 + sources."@types/json-schema-7.0.6" 8541 8203 sources."@types/nedb-1.8.11" 8542 - sources."@types/node-14.14.31" 8204 + sources."@types/node-14.14.7" 8543 8205 sources."@types/normalize-package-data-2.4.0" 8544 - sources."@types/prettier-2.2.2" 8206 + sources."@types/prettier-2.1.5" 8545 8207 sources."@types/serialport-8.0.1" 8546 8208 sources."@types/stack-utils-2.0.0" 8547 - sources."@types/yargs-15.0.13" 8548 - sources."@types/yargs-parser-20.2.0" 8549 - (sources."@typescript-eslint/eslint-plugin-4.16.1" // { 8209 + sources."@types/yargs-15.0.9" 8210 + sources."@types/yargs-parser-15.0.0" 8211 + (sources."@typescript-eslint/eslint-plugin-4.7.0" // { 8550 8212 dependencies = [ 8551 - sources."semver-7.3.4" 8213 + sources."semver-7.3.2" 8552 8214 ]; 8553 8215 }) 8554 - sources."@typescript-eslint/experimental-utils-4.16.1" 8555 - sources."@typescript-eslint/parser-4.16.1" 8556 - sources."@typescript-eslint/scope-manager-4.16.1" 8557 - sources."@typescript-eslint/types-4.16.1" 8558 - (sources."@typescript-eslint/typescript-estree-4.16.1" // { 8216 + sources."@typescript-eslint/experimental-utils-4.7.0" 8217 + sources."@typescript-eslint/parser-4.7.0" 8218 + sources."@typescript-eslint/scope-manager-4.7.0" 8219 + sources."@typescript-eslint/types-4.7.0" 8220 + (sources."@typescript-eslint/typescript-estree-4.7.0" // { 8559 8221 dependencies = [ 8560 - sources."semver-7.3.4" 8222 + sources."semver-7.3.2" 8561 8223 ]; 8562 8224 }) 8563 - sources."@typescript-eslint/visitor-keys-4.16.1" 8225 + sources."@typescript-eslint/visitor-keys-4.7.0" 8564 8226 sources."abab-2.0.5" 8565 8227 sources."acorn-7.4.1" 8566 8228 sources."acorn-globals-6.0.0" ··· 8591 8253 sources."asn1-0.2.4" 8592 8254 sources."assert-plus-1.0.0" 8593 8255 sources."assign-symbols-1.0.0" 8594 - sources."astral-regex-2.0.0" 8256 + sources."astral-regex-1.0.0" 8595 8257 sources."async-each-1.0.3" 8596 8258 sources."asynckit-0.4.0" 8597 8259 sources."at-least-node-1.0.0" ··· 8612 8274 sources."babel-plugin-dynamic-import-node-2.3.3" 8613 8275 sources."babel-plugin-istanbul-6.0.0" 8614 8276 sources."babel-plugin-jest-hoist-26.6.2" 8615 - (sources."babel-plugin-polyfill-corejs2-0.1.10" // { 8616 - dependencies = [ 8617 - sources."semver-6.3.0" 8618 - ]; 8619 - }) 8620 - sources."babel-plugin-polyfill-corejs3-0.1.7" 8621 - sources."babel-plugin-polyfill-regenerator-0.1.6" 8622 - sources."babel-preset-current-node-syntax-1.0.1" 8277 + sources."babel-preset-current-node-syntax-1.0.0" 8623 8278 sources."babel-preset-jest-26.6.2" 8624 8279 sources."balanced-match-1.0.0" 8625 8280 (sources."base-0.11.2" // { ··· 8636 8291 sources."bcrypt-pbkdf-1.0.2" 8637 8292 sources."binary-extensions-1.13.1" 8638 8293 sources."bindings-1.5.0" 8639 - (sources."bl-4.1.0" // { 8294 + (sources."bl-4.0.3" // { 8640 8295 dependencies = [ 8641 8296 sources."readable-stream-3.6.0" 8642 8297 ]; ··· 8648 8303 ]; 8649 8304 }) 8650 8305 sources."browser-process-hrtime-1.0.0" 8651 - sources."browserslist-4.16.3" 8306 + sources."browserslist-4.14.7" 8652 8307 sources."bser-2.1.1" 8653 8308 sources."buffer-5.7.1" 8654 8309 sources."buffer-from-1.1.1" 8655 8310 sources."cache-base-1.0.1" 8656 - sources."call-bind-1.0.2" 8311 + sources."call-bind-1.0.0" 8657 8312 sources."callsites-3.1.0" 8658 8313 sources."camelcase-5.3.1" 8659 - sources."caniuse-lite-1.0.30001194" 8314 + sources."caniuse-lite-1.0.30001157" 8660 8315 sources."capture-exit-2.0.0" 8661 8316 sources."caseless-0.12.0" 8662 8317 sources."chalk-2.4.2" 8663 8318 sources."char-regex-1.0.2" 8664 - (sources."chokidar-3.5.1" // { 8319 + (sources."chokidar-3.4.3" // { 8665 8320 dependencies = [ 8666 8321 sources."anymatch-3.1.1" 8667 - sources."binary-extensions-2.2.0" 8322 + sources."binary-extensions-2.1.0" 8668 8323 sources."braces-3.0.2" 8669 8324 sources."fill-range-7.0.1" 8325 + sources."fsevents-2.1.3" 8670 8326 sources."glob-parent-5.1.1" 8671 8327 sources."is-binary-path-2.1.0" 8672 8328 sources."is-number-7.0.0" ··· 8685 8341 (sources."cliui-6.0.0" // { 8686 8342 dependencies = [ 8687 8343 sources."ansi-regex-5.0.0" 8344 + sources."emoji-regex-8.0.0" 8688 8345 sources."is-fullwidth-code-point-3.0.0" 8689 - sources."string-width-4.2.2" 8346 + sources."string-width-4.2.0" 8690 8347 sources."strip-ansi-6.0.0" 8691 8348 ]; 8692 8349 }) ··· 8696 8353 sources."collection-visit-1.0.0" 8697 8354 sources."color-convert-1.9.3" 8698 8355 sources."color-name-1.1.3" 8699 - sources."colorette-1.2.2" 8700 - sources."colors-1.4.0" 8356 + sources."colorette-1.2.1" 8701 8357 sources."combined-stream-1.0.8" 8702 8358 sources."commander-4.1.1" 8703 8359 sources."component-emitter-1.3.0" ··· 8705 8361 sources."console-control-strings-1.1.0" 8706 8362 sources."convert-source-map-1.7.0" 8707 8363 sources."copy-descriptor-0.1.1" 8708 - (sources."core-js-compat-3.9.1" // { 8364 + (sources."core-js-compat-3.7.0" // { 8709 8365 dependencies = [ 8710 8366 sources."semver-7.0.0" 8711 8367 ]; ··· 8721 8377 sources."dashdash-1.14.1" 8722 8378 sources."data-urls-2.0.0" 8723 8379 sources."debounce-1.2.0" 8724 - sources."debug-4.3.1" 8380 + sources."debug-4.2.0" 8725 8381 sources."decamelize-1.2.0" 8726 8382 sources."decimal.js-10.2.1" 8727 8383 sources."decode-uri-component-0.2.0" ··· 8750 8406 ]; 8751 8407 }) 8752 8408 sources."ecc-jsbn-0.1.2" 8753 - sources."electron-to-chromium-1.3.678" 8409 + sources."electron-to-chromium-1.3.596" 8754 8410 sources."emittery-0.7.2" 8755 - sources."emoji-regex-8.0.0" 8411 + sources."emoji-regex-7.0.3" 8756 8412 sources."end-of-stream-1.4.4" 8757 8413 sources."enquirer-2.3.6" 8758 8414 sources."error-ex-1.3.2" ··· 8767 8423 sources."type-check-0.3.2" 8768 8424 ]; 8769 8425 }) 8770 - (sources."eslint-7.21.0" // { 8426 + (sources."eslint-7.13.0" // { 8771 8427 dependencies = [ 8772 - sources."@babel/code-frame-7.12.11" 8773 8428 sources."ansi-regex-5.0.0" 8774 8429 sources."ansi-styles-4.3.0" 8775 8430 sources."chalk-4.1.0" ··· 8781 8436 sources."has-flag-4.0.0" 8782 8437 sources."ignore-4.0.6" 8783 8438 sources."path-key-3.1.1" 8784 - sources."semver-7.3.4" 8439 + sources."semver-7.3.2" 8785 8440 sources."shebang-command-2.0.0" 8786 8441 sources."shebang-regex-3.0.0" 8787 8442 sources."strip-ansi-6.0.0" ··· 8797 8452 ]; 8798 8453 }) 8799 8454 sources."eslint-visitor-keys-2.0.0" 8800 - (sources."espree-7.3.1" // { 8455 + (sources."espree-7.3.0" // { 8801 8456 dependencies = [ 8802 8457 sources."eslint-visitor-keys-1.3.0" 8803 8458 ]; 8804 8459 }) 8805 8460 sources."esprima-4.0.1" 8806 - (sources."esquery-1.4.0" // { 8461 + (sources."esquery-1.3.1" // { 8807 8462 dependencies = [ 8808 8463 sources."estraverse-5.2.0" 8809 8464 ]; ··· 8851 8506 }) 8852 8507 sources."extsprintf-1.3.0" 8853 8508 sources."fast-deep-equal-3.1.3" 8854 - (sources."fast-glob-3.2.5" // { 8509 + (sources."fast-glob-3.2.4" // { 8855 8510 dependencies = [ 8856 8511 sources."braces-3.0.2" 8857 8512 sources."fill-range-7.0.1" ··· 8863 8518 }) 8864 8519 sources."fast-json-stable-stringify-2.1.0" 8865 8520 sources."fast-levenshtein-2.0.6" 8866 - sources."fastq-1.11.0" 8521 + sources."fastq-1.9.0" 8867 8522 sources."fb-watchman-2.0.1" 8868 - sources."file-entry-cache-6.0.1" 8523 + sources."file-entry-cache-5.0.1" 8869 8524 sources."file-uri-to-path-1.0.0" 8870 8525 (sources."fill-range-4.0.0" // { 8871 8526 dependencies = [ ··· 8873 8528 ]; 8874 8529 }) 8875 8530 sources."find-up-4.1.0" 8876 - sources."flat-cache-3.0.4" 8877 - sources."flatted-3.1.1" 8531 + sources."flat-cache-2.0.1" 8532 + sources."flatted-2.0.2" 8878 8533 sources."for-in-1.0.2" 8879 8534 sources."forever-agent-0.6.1" 8880 8535 sources."form-data-2.3.3" 8881 8536 sources."fragment-cache-0.2.1" 8882 8537 sources."fs-constants-1.0.0" 8883 - sources."fs-extra-9.1.0" 8538 + sources."fs-extra-9.0.1" 8884 8539 sources."fs-readdir-recursive-1.1.0" 8885 8540 sources."fs.realpath-1.0.0" 8886 - sources."fsevents-2.3.2" 8541 + sources."fsevents-1.2.13" 8887 8542 sources."function-bind-1.1.1" 8888 8543 sources."functional-red-black-tree-1.0.1" 8889 8544 sources."gauge-2.7.4" 8890 8545 sources."gensync-1.0.0-beta.2" 8891 8546 sources."get-caller-file-2.0.5" 8892 - sources."get-intrinsic-1.1.1" 8547 + sources."get-intrinsic-1.0.1" 8893 8548 sources."get-package-type-0.1.0" 8894 8549 sources."get-stream-4.1.0" 8895 8550 sources."get-value-2.0.6" ··· 8902 8557 ]; 8903 8558 }) 8904 8559 sources."globals-11.12.0" 8905 - (sources."globby-11.0.2" // { 8560 + (sources."globby-11.0.1" // { 8906 8561 dependencies = [ 8907 8562 sources."slash-3.0.0" 8908 8563 ]; 8909 8564 }) 8910 - sources."graceful-fs-4.2.6" 8565 + sources."graceful-fs-4.2.4" 8911 8566 sources."growly-1.3.0" 8912 - (sources."handlebars-4.7.7" // { 8567 + (sources."handlebars-4.7.6" // { 8913 8568 dependencies = [ 8914 8569 sources."source-map-0.6.1" 8915 8570 ]; ··· 8918 8573 sources."har-validator-5.1.5" 8919 8574 sources."has-1.0.3" 8920 8575 sources."has-flag-3.0.0" 8921 - sources."has-symbols-1.0.2" 8576 + sources."has-symbols-1.0.1" 8922 8577 sources."has-unicode-2.0.1" 8923 8578 sources."has-value-1.0.0" 8924 8579 (sources."has-values-1.0.0" // { ··· 8926 8581 sources."kind-of-4.0.0" 8927 8582 ]; 8928 8583 }) 8584 + sources."highlight.js-10.3.2" 8929 8585 sources."hosted-git-info-2.8.8" 8930 8586 sources."html-encoding-sniffer-2.0.1" 8931 8587 sources."html-escaper-2.0.2" ··· 8934 8590 sources."iconv-lite-0.4.24" 8935 8591 sources."ieee754-1.2.1" 8936 8592 sources."ignore-5.1.8" 8937 - (sources."import-fresh-3.3.0" // { 8593 + (sources."import-fresh-3.2.2" // { 8938 8594 dependencies = [ 8939 8595 sources."resolve-from-4.0.0" 8940 8596 ]; ··· 8943 8599 sources."imurmurhash-0.1.4" 8944 8600 sources."inflight-1.0.6" 8945 8601 sources."inherits-2.0.4" 8946 - sources."ini-1.3.8" 8602 + sources."ini-1.3.5" 8947 8603 sources."interpret-1.4.0" 8948 8604 sources."ip-regex-2.1.0" 8949 8605 (sources."is-accessor-descriptor-0.1.6" // { ··· 8955 8611 sources."is-binary-path-1.0.1" 8956 8612 sources."is-buffer-1.1.6" 8957 8613 sources."is-ci-2.0.0" 8958 - sources."is-core-module-2.2.0" 8614 + sources."is-core-module-2.1.0" 8959 8615 (sources."is-data-descriptor-0.1.4" // { 8960 8616 dependencies = [ 8961 8617 sources."kind-of-3.2.2" ··· 9075 8731 sources."anymatch-3.1.1" 9076 8732 sources."braces-3.0.2" 9077 8733 sources."fill-range-7.0.1" 8734 + sources."fsevents-2.2.1" 9078 8735 sources."is-number-7.0.0" 9079 8736 sources."micromatch-4.0.2" 9080 8737 sources."to-regex-range-5.0.1" ··· 9161 8818 sources."color-convert-2.0.1" 9162 8819 sources."color-name-1.1.4" 9163 8820 sources."has-flag-4.0.0" 9164 - sources."semver-7.3.4" 8821 + sources."semver-7.3.2" 9165 8822 sources."supports-color-7.2.0" 9166 8823 ]; 9167 8824 }) ··· 9208 8865 ]; 9209 8866 }) 9210 8867 sources."js-tokens-4.0.0" 9211 - sources."js-yaml-3.14.1" 8868 + sources."js-yaml-3.14.0" 9212 8869 sources."jsbn-0.1.1" 9213 8870 sources."jsdom-16.4.0" 9214 8871 sources."jsesc-2.5.2" ··· 9217 8874 sources."json-schema-traverse-0.4.1" 9218 8875 sources."json-stable-stringify-without-jsonify-1.0.1" 9219 8876 sources."json-stringify-safe-5.0.1" 9220 - sources."json5-2.2.0" 9221 - sources."jsonfile-6.1.0" 8877 + sources."json5-2.1.3" 8878 + (sources."jsonfile-6.1.0" // { 8879 + dependencies = [ 8880 + sources."universalify-2.0.0" 8881 + ]; 8882 + }) 9222 8883 sources."jsprim-1.4.1" 9223 8884 sources."kind-of-6.0.3" 9224 8885 sources."kleur-3.0.3" ··· 9226 8887 sources."levn-0.4.1" 9227 8888 sources."lines-and-columns-1.1.6" 9228 8889 sources."locate-path-5.0.0" 9229 - sources."lodash-4.17.21" 9230 - sources."lodash.debounce-4.0.8" 8890 + sources."lodash-4.17.20" 9231 8891 sources."lodash.sortby-4.7.0" 9232 - sources."lru-cache-6.0.0" 9233 8892 sources."lunr-2.3.9" 9234 8893 sources."make-dir-2.1.0" 9235 8894 sources."makeerror-1.0.11" 9236 8895 sources."map-cache-0.2.2" 9237 8896 sources."map-visit-1.0.0" 9238 - sources."marked-2.0.1" 8897 + sources."marked-1.2.3" 9239 8898 sources."merge-stream-2.0.0" 9240 8899 sources."merge2-1.4.1" 9241 8900 sources."micromatch-3.1.10" 9242 - sources."mime-db-1.46.0" 9243 - sources."mime-types-2.1.29" 8901 + sources."mime-db-1.44.0" 8902 + sources."mime-types-2.1.27" 9244 8903 sources."mimic-fn-2.1.0" 9245 8904 sources."mimic-response-2.1.0" 9246 8905 sources."minimatch-3.0.4" 9247 8906 sources."minimist-1.2.5" 9248 8907 sources."mixin-deep-2.0.1" 8908 + sources."mkdirp-0.5.5" 9249 8909 sources."mkdirp-classic-0.5.3" 9250 8910 sources."ms-2.1.2" 9251 8911 sources."nan-2.14.2" ··· 9254 8914 sources."natural-compare-1.4.0" 9255 8915 sources."neo-async-2.6.2" 9256 8916 sources."nice-try-1.0.5" 9257 - sources."node-abi-2.20.0" 8917 + sources."node-abi-2.19.1" 9258 8918 sources."node-int64-0.4.0" 9259 8919 sources."node-modules-regexp-1.0.0" 9260 - (sources."node-notifier-8.0.1" // { 8920 + (sources."node-notifier-8.0.0" // { 9261 8921 dependencies = [ 9262 - sources."semver-7.3.4" 8922 + sources."semver-7.3.2" 9263 8923 sources."which-2.0.2" 9264 8924 ]; 9265 8925 }) 9266 - sources."node-releases-1.1.71" 8926 + sources."node-releases-1.1.66" 9267 8927 sources."noop-logger-0.1.1" 9268 8928 sources."normalize-package-data-2.5.0" 9269 8929 sources."normalize-path-3.0.0" ··· 9285 8945 sources."object.pick-1.3.0" 9286 8946 sources."once-1.4.0" 9287 8947 sources."onetime-5.1.2" 9288 - (sources."onigasm-2.2.5" // { 9289 - dependencies = [ 9290 - sources."lru-cache-5.1.1" 9291 - sources."yallist-3.1.1" 9292 - ]; 9293 - }) 9294 8948 sources."optionator-0.9.1" 9295 - sources."p-each-series-2.2.0" 8949 + sources."p-each-series-2.1.0" 9296 8950 sources."p-finally-1.0.0" 9297 8951 sources."p-limit-2.3.0" 9298 8952 sources."p-locate-4.1.0" 9299 8953 sources."p-try-2.2.0" 9300 8954 sources."parent-module-1.0.1" 9301 - sources."parse-json-5.2.0" 8955 + sources."parse-json-5.1.0" 9302 8956 sources."parse5-5.1.1" 9303 8957 sources."pascalcase-0.1.1" 9304 8958 sources."path-dirname-1.0.2" ··· 9313 8967 sources."pirates-4.0.1" 9314 8968 sources."pkg-dir-4.2.0" 9315 8969 sources."posix-character-classes-0.1.1" 9316 - sources."prebuild-install-6.0.1" 8970 + sources."prebuild-install-5.3.6" 9317 8971 sources."prelude-ls-1.2.1" 9318 8972 (sources."pretty-format-26.6.2" // { 9319 8973 dependencies = [ ··· 9330 8984 sources."pump-3.0.0" 9331 8985 sources."punycode-2.1.1" 9332 8986 sources."qs-6.5.2" 9333 - sources."queue-microtask-1.2.2" 9334 8987 sources."rc-1.2.8" 9335 8988 sources."react-is-17.0.1" 9336 8989 (sources."read-pkg-5.2.0" // { ··· 9350 9003 sources."regexpp-3.1.0" 9351 9004 sources."regexpu-core-4.7.1" 9352 9005 sources."regjsgen-0.5.2" 9353 - (sources."regjsparser-0.6.7" // { 9006 + (sources."regjsparser-0.6.4" // { 9354 9007 dependencies = [ 9355 9008 sources."jsesc-0.5.0" 9356 9009 ]; ··· 9371 9024 ]; 9372 9025 }) 9373 9026 sources."require-directory-2.1.1" 9374 - sources."require-from-string-2.0.2" 9375 9027 sources."require-main-filename-2.0.0" 9376 - sources."resolve-1.20.0" 9028 + sources."resolve-1.19.0" 9377 9029 sources."resolve-cwd-3.0.0" 9378 9030 sources."resolve-from-5.0.0" 9379 9031 sources."resolve-url-0.2.1" 9380 9032 sources."ret-0.1.15" 9381 9033 sources."reusify-1.0.4" 9382 - sources."rimraf-3.0.2" 9034 + sources."rimraf-2.6.3" 9383 9035 sources."rsvp-4.8.5" 9384 - sources."run-parallel-1.2.0" 9036 + sources."run-parallel-1.1.10" 9385 9037 sources."safe-buffer-5.1.2" 9386 9038 sources."safe-regex-1.1.0" 9387 9039 sources."safer-buffer-2.1.2" 9388 9040 sources."sane-4.1.0" 9389 9041 sources."saxes-5.0.1" 9390 9042 sources."semver-5.7.1" 9391 - sources."serialport-9.0.6" 9043 + sources."serialport-9.0.2" 9392 9044 sources."set-blocking-2.0.0" 9393 9045 (sources."set-value-2.0.1" // { 9394 9046 dependencies = [ ··· 9399 9051 sources."shebang-regex-1.0.0" 9400 9052 sources."shelljs-0.8.4" 9401 9053 sources."shellwords-0.1.1" 9402 - sources."shiki-0.9.2" 9403 9054 sources."signal-exit-3.0.3" 9404 9055 sources."simple-concat-1.0.1" 9405 9056 sources."simple-get-3.1.0" 9406 9057 sources."sisteransi-1.0.5" 9407 9058 sources."slash-2.0.0" 9408 - (sources."slice-ansi-4.0.0" // { 9059 + (sources."slice-ansi-2.1.0" // { 9409 9060 dependencies = [ 9410 - sources."ansi-styles-4.3.0" 9411 - sources."color-convert-2.0.1" 9412 - sources."color-name-1.1.4" 9413 - sources."is-fullwidth-code-point-3.0.0" 9061 + sources."is-fullwidth-code-point-2.0.0" 9414 9062 ]; 9415 9063 }) 9416 9064 sources."slip-1.0.2" ··· 9442 9090 sources."source-map-0.6.1" 9443 9091 ]; 9444 9092 }) 9445 - sources."source-map-url-0.4.1" 9093 + sources."source-map-url-0.4.0" 9446 9094 sources."spdx-correct-3.1.1" 9447 9095 sources."spdx-exceptions-2.3.0" 9448 9096 sources."spdx-expression-parse-3.0.1" 9449 - sources."spdx-license-ids-3.0.7" 9097 + sources."spdx-license-ids-3.0.6" 9450 9098 sources."split-string-3.1.0" 9451 9099 sources."sprintf-js-1.0.3" 9452 9100 sources."sshpk-1.16.1" ··· 9482 9130 ]; 9483 9131 }) 9484 9132 sources."symbol-tree-3.2.4" 9485 - (sources."table-6.0.7" // { 9133 + (sources."table-5.4.6" // { 9486 9134 dependencies = [ 9487 - sources."ajv-7.1.1" 9488 - sources."ansi-regex-5.0.0" 9489 - sources."is-fullwidth-code-point-3.0.0" 9490 - sources."json-schema-traverse-1.0.0" 9491 - sources."string-width-4.2.2" 9492 - sources."strip-ansi-6.0.0" 9135 + sources."ansi-regex-4.1.0" 9136 + sources."is-fullwidth-code-point-2.0.0" 9137 + sources."string-width-3.1.0" 9138 + sources."strip-ansi-5.2.0" 9493 9139 ]; 9494 9140 }) 9495 9141 sources."tar-fs-2.1.1" 9496 - (sources."tar-stream-2.2.0" // { 9142 + (sources."tar-stream-2.1.4" // { 9497 9143 dependencies = [ 9498 9144 sources."readable-stream-3.6.0" 9499 9145 ]; ··· 9514 9160 sources."tough-cookie-3.0.1" 9515 9161 sources."tr46-2.0.2" 9516 9162 sources."tslib-1.14.1" 9517 - sources."tsutils-3.20.0" 9163 + sources."tsutils-3.17.1" 9518 9164 sources."tunnel-agent-0.6.0" 9519 9165 sources."tweetnacl-0.14.5" 9520 9166 sources."type-check-0.4.0" 9521 9167 sources."type-detect-4.0.8" 9522 9168 sources."type-fest-0.8.1" 9523 9169 sources."typedarray-to-buffer-3.1.5" 9524 - sources."typedoc-0.20.28" 9525 - sources."typedoc-default-themes-0.12.7" 9526 - sources."typedoc-plugin-markdown-3.6.0" 9170 + (sources."typedoc-0.19.2" // { 9171 + dependencies = [ 9172 + sources."semver-7.3.2" 9173 + ]; 9174 + }) 9175 + sources."typedoc-default-themes-0.11.4" 9176 + sources."typedoc-plugin-markdown-3.0.11" 9527 9177 sources."typedoc-plugin-no-inherit-1.2.0" 9528 9178 sources."typedoc-plugin-sourcefile-url-1.0.6" 9529 - sources."typescript-4.2.2" 9530 - sources."uglify-js-3.13.0" 9179 + sources."typescript-4.0.5" 9180 + sources."uglify-js-3.11.6" 9531 9181 sources."unicode-canonical-property-names-ecmascript-1.0.4" 9532 9182 sources."unicode-match-property-ecmascript-1.0.4" 9533 9183 sources."unicode-match-property-value-ecmascript-1.2.0" 9534 9184 sources."unicode-property-aliases-ecmascript-1.1.0" 9535 9185 sources."union-value-1.0.1" 9536 - sources."universalify-2.0.0" 9186 + sources."universalify-1.0.0" 9537 9187 (sources."unset-value-1.0.0" // { 9538 9188 dependencies = [ 9539 9189 (sources."has-value-0.3.1" // { ··· 9545 9195 ]; 9546 9196 }) 9547 9197 sources."upath-1.2.0" 9548 - sources."uri-js-4.4.1" 9198 + sources."uri-js-4.4.0" 9549 9199 sources."urix-0.1.0" 9550 9200 sources."use-3.1.1" 9551 9201 sources."util-deprecate-1.0.2" 9552 - sources."uuid-8.3.2" 9202 + sources."uuid-8.3.1" 9553 9203 sources."v8-compile-cache-2.2.0" 9554 - (sources."v8-to-istanbul-7.1.0" // { 9204 + (sources."v8-to-istanbul-7.0.0" // { 9555 9205 dependencies = [ 9556 9206 sources."source-map-0.7.3" 9557 9207 ]; 9558 9208 }) 9559 9209 sources."validate-npm-package-license-3.0.4" 9560 9210 sources."verror-1.10.0" 9561 - sources."vscode-textmate-5.2.0" 9562 9211 sources."w3c-hr-time-1.0.2" 9563 9212 sources."w3c-xmlserializer-2.0.0" 9564 9213 sources."walker-1.0.7" ··· 9578 9227 sources."ansi-styles-4.3.0" 9579 9228 sources."color-convert-2.0.1" 9580 9229 sources."color-name-1.1.4" 9230 + sources."emoji-regex-8.0.0" 9581 9231 sources."is-fullwidth-code-point-3.0.0" 9582 - sources."string-width-4.2.2" 9232 + sources."string-width-4.2.0" 9583 9233 sources."strip-ansi-6.0.0" 9584 9234 ]; 9585 9235 }) 9586 9236 sources."wrappy-1.0.2" 9237 + sources."write-1.0.3" 9587 9238 sources."write-file-atomic-3.0.3" 9588 - sources."ws-7.4.3" 9239 + sources."ws-7.4.0" 9589 9240 sources."xml-name-validator-3.0.0" 9590 9241 sources."xmlchars-2.2.0" 9591 - sources."y18n-4.0.1" 9592 - sources."yallist-4.0.0" 9242 + sources."y18n-4.0.0" 9593 9243 (sources."yargs-15.4.1" // { 9594 9244 dependencies = [ 9595 9245 sources."ansi-regex-5.0.0" 9246 + sources."emoji-regex-8.0.0" 9596 9247 sources."is-fullwidth-code-point-3.0.0" 9597 - sources."string-width-4.2.2" 9248 + sources."string-width-4.2.0" 9598 9249 sources."strip-ansi-6.0.0" 9599 9250 ]; 9600 9251 }) 9601 9252 sources."yargs-parser-18.1.3" 9602 9253 ]; 9603 9254 }) 9604 - (sources."zigbee-herdsman-converters-14.0.102" // { 9255 + (sources."zigbee-herdsman-converters-13.0.7" // { 9605 9256 dependencies = [ 9606 - sources."@babel/code-frame-7.12.11" 9607 - sources."@babel/compat-data-7.13.12" 9608 - (sources."@babel/core-7.13.13" // { 9257 + sources."@babel/code-frame-7.10.4" 9258 + (sources."@babel/core-7.12.9" // { 9609 9259 dependencies = [ 9610 - sources."@babel/code-frame-7.12.13" 9611 - sources."semver-6.3.0" 9260 + sources."semver-5.7.1" 9612 9261 sources."source-map-0.5.7" 9613 9262 ]; 9614 9263 }) 9615 - (sources."@babel/generator-7.13.9" // { 9264 + (sources."@babel/generator-7.12.5" // { 9616 9265 dependencies = [ 9617 9266 sources."source-map-0.5.7" 9618 9267 ]; 9619 9268 }) 9620 - (sources."@babel/helper-compilation-targets-7.13.13" // { 9621 - dependencies = [ 9622 - sources."semver-6.3.0" 9623 - ]; 9624 - }) 9625 - sources."@babel/helper-function-name-7.12.13" 9626 - sources."@babel/helper-get-function-arity-7.12.13" 9627 - sources."@babel/helper-member-expression-to-functions-7.13.12" 9628 - sources."@babel/helper-module-imports-7.13.12" 9629 - sources."@babel/helper-module-transforms-7.13.12" 9630 - sources."@babel/helper-optimise-call-expression-7.12.13" 9631 - sources."@babel/helper-plugin-utils-7.13.0" 9632 - sources."@babel/helper-replace-supers-7.13.12" 9633 - sources."@babel/helper-simple-access-7.13.12" 9634 - sources."@babel/helper-split-export-declaration-7.12.13" 9635 - sources."@babel/helper-validator-identifier-7.12.11" 9636 - sources."@babel/helper-validator-option-7.12.17" 9637 - sources."@babel/helpers-7.13.10" 9638 - (sources."@babel/highlight-7.13.10" // { 9269 + sources."@babel/helper-function-name-7.10.4" 9270 + sources."@babel/helper-get-function-arity-7.10.4" 9271 + sources."@babel/helper-member-expression-to-functions-7.12.7" 9272 + sources."@babel/helper-module-imports-7.12.5" 9273 + sources."@babel/helper-module-transforms-7.12.1" 9274 + sources."@babel/helper-optimise-call-expression-7.12.7" 9275 + sources."@babel/helper-plugin-utils-7.10.4" 9276 + sources."@babel/helper-replace-supers-7.12.5" 9277 + sources."@babel/helper-simple-access-7.12.1" 9278 + sources."@babel/helper-split-export-declaration-7.11.0" 9279 + sources."@babel/helper-validator-identifier-7.10.4" 9280 + sources."@babel/helpers-7.12.5" 9281 + (sources."@babel/highlight-7.10.4" // { 9639 9282 dependencies = [ 9640 9283 sources."chalk-2.4.2" 9641 9284 ]; 9642 9285 }) 9643 - sources."@babel/parser-7.13.13" 9286 + sources."@babel/parser-7.12.7" 9644 9287 sources."@babel/plugin-syntax-async-generators-7.8.4" 9645 9288 sources."@babel/plugin-syntax-bigint-7.8.3" 9646 - sources."@babel/plugin-syntax-class-properties-7.12.13" 9289 + sources."@babel/plugin-syntax-class-properties-7.12.1" 9647 9290 sources."@babel/plugin-syntax-import-meta-7.10.4" 9648 9291 sources."@babel/plugin-syntax-json-strings-7.8.3" 9649 9292 sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" ··· 9652 9295 sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 9653 9296 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9654 9297 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9655 - sources."@babel/plugin-syntax-top-level-await-7.12.13" 9656 - (sources."@babel/template-7.12.13" // { 9657 - dependencies = [ 9658 - sources."@babel/code-frame-7.12.13" 9659 - ]; 9660 - }) 9661 - (sources."@babel/traverse-7.13.13" // { 9298 + sources."@babel/plugin-syntax-top-level-await-7.12.1" 9299 + sources."@babel/template-7.12.7" 9300 + (sources."@babel/traverse-7.12.9" // { 9662 9301 dependencies = [ 9663 - sources."@babel/code-frame-7.12.13" 9664 9302 sources."globals-11.12.0" 9665 9303 ]; 9666 9304 }) 9667 - sources."@babel/types-7.13.13" 9305 + sources."@babel/types-7.12.7" 9668 9306 sources."@bcoe/v8-coverage-0.2.3" 9669 9307 sources."@cnakazawa/watch-1.0.4" 9670 - (sources."@eslint/eslintrc-0.4.0" // { 9308 + sources."@eslint/eslintrc-0.2.1" 9309 + (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9671 9310 dependencies = [ 9672 - sources."globals-12.4.0" 9311 + sources."resolve-from-5.0.0" 9673 9312 ]; 9674 9313 }) 9675 - (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9314 + sources."@istanbuljs/schema-0.1.2" 9315 + sources."@jest/console-26.6.2" 9316 + (sources."@jest/core-26.6.3" // { 9676 9317 dependencies = [ 9677 - sources."resolve-from-5.0.0" 9318 + sources."rimraf-3.0.2" 9678 9319 ]; 9679 9320 }) 9680 - sources."@istanbuljs/schema-0.1.3" 9681 - sources."@jest/console-26.6.2" 9682 - sources."@jest/core-26.6.3" 9683 9321 sources."@jest/environment-26.6.2" 9684 9322 sources."@jest/fake-timers-26.6.2" 9685 9323 sources."@jest/globals-26.6.2" ··· 9689 9327 sources."@jest/test-sequencer-26.6.3" 9690 9328 sources."@jest/transform-26.6.2" 9691 9329 sources."@jest/types-26.6.2" 9692 - sources."@nodelib/fs.scandir-2.1.4" 9693 - sources."@nodelib/fs.stat-2.0.4" 9694 - sources."@nodelib/fs.walk-1.2.6" 9695 - sources."@sinonjs/commons-1.8.2" 9330 + sources."@nodelib/fs.scandir-2.1.3" 9331 + sources."@nodelib/fs.stat-2.0.3" 9332 + sources."@nodelib/fs.walk-1.2.4" 9333 + sources."@sinonjs/commons-1.8.1" 9696 9334 sources."@sinonjs/fake-timers-6.0.1" 9697 - sources."@types/babel__core-7.1.14" 9335 + sources."@types/babel__core-7.1.12" 9698 9336 sources."@types/babel__generator-7.6.2" 9699 9337 sources."@types/babel__template-7.4.0" 9700 - sources."@types/babel__traverse-7.11.1" 9701 - sources."@types/graceful-fs-4.1.5" 9338 + sources."@types/babel__traverse-7.0.16" 9339 + sources."@types/graceful-fs-4.1.4" 9702 9340 sources."@types/istanbul-lib-coverage-2.0.3" 9703 9341 sources."@types/istanbul-lib-report-3.0.0" 9704 9342 sources."@types/istanbul-reports-3.0.0" 9705 - sources."@types/json-schema-7.0.7" 9706 - sources."@types/node-14.14.37" 9343 + sources."@types/json-schema-7.0.6" 9344 + sources."@types/node-14.14.10" 9707 9345 sources."@types/normalize-package-data-2.4.0" 9708 - sources."@types/prettier-2.2.3" 9346 + sources."@types/prettier-2.1.5" 9709 9347 sources."@types/stack-utils-2.0.0" 9710 - sources."@types/yargs-15.0.13" 9711 - sources."@types/yargs-parser-20.2.0" 9712 - sources."@typescript-eslint/experimental-utils-4.19.0" 9713 - sources."@typescript-eslint/scope-manager-4.19.0" 9714 - sources."@typescript-eslint/types-4.19.0" 9715 - sources."@typescript-eslint/typescript-estree-4.19.0" 9716 - sources."@typescript-eslint/visitor-keys-4.19.0" 9348 + sources."@types/yargs-15.0.10" 9349 + sources."@types/yargs-parser-15.0.0" 9350 + sources."@typescript-eslint/experimental-utils-4.8.2" 9351 + sources."@typescript-eslint/scope-manager-4.8.2" 9352 + sources."@typescript-eslint/types-4.8.2" 9353 + sources."@typescript-eslint/typescript-estree-4.8.2" 9354 + sources."@typescript-eslint/visitor-keys-4.8.2" 9717 9355 sources."abab-2.0.5" 9718 9356 sources."acorn-7.4.1" 9719 9357 sources."acorn-globals-6.0.0" ··· 9722 9360 sources."agent-base-6.0.2" 9723 9361 sources."ajv-6.12.6" 9724 9362 sources."ansi-colors-4.1.1" 9725 - (sources."ansi-escapes-4.3.2" // { 9363 + (sources."ansi-escapes-4.3.1" // { 9726 9364 dependencies = [ 9727 - sources."type-fest-0.21.3" 9365 + sources."type-fest-0.11.0" 9728 9366 ]; 9729 9367 }) 9730 9368 sources."ansi-regex-5.0.0" ··· 9739 9377 sources."asn1-0.2.4" 9740 9378 sources."assert-plus-1.0.0" 9741 9379 sources."assign-symbols-1.0.0" 9742 - sources."astral-regex-2.0.0" 9380 + sources."astral-regex-1.0.0" 9743 9381 sources."asynckit-0.4.0" 9744 9382 sources."atob-2.1.2" 9745 9383 sources."aws-sign2-0.7.0" 9746 9384 sources."aws4-1.11.0" 9747 - sources."axios-0.21.1" 9385 + sources."axios-0.21.0" 9748 9386 sources."babel-jest-26.6.3" 9749 9387 sources."babel-plugin-istanbul-6.0.0" 9750 9388 sources."babel-plugin-jest-hoist-26.6.2" 9751 - sources."babel-preset-current-node-syntax-1.0.1" 9389 + sources."babel-preset-current-node-syntax-1.0.0" 9752 9390 sources."babel-preset-jest-26.6.2" 9753 9391 sources."balanced-match-1.0.0" 9754 9392 (sources."base-0.11.2" // { ··· 9761 9399 }) 9762 9400 sources."base64-js-1.5.1" 9763 9401 sources."bcrypt-pbkdf-1.0.2" 9764 - sources."bl-4.1.0" 9402 + sources."bl-4.0.3" 9765 9403 sources."brace-expansion-1.1.11" 9766 9404 sources."braces-3.0.2" 9767 9405 sources."browser-process-hrtime-1.0.0" 9768 - sources."browserslist-4.16.3" 9769 9406 sources."bser-2.1.1" 9770 9407 sources."buffer-5.7.1" 9771 9408 sources."buffer-crc32-0.2.13" ··· 9773 9410 sources."cache-base-1.0.1" 9774 9411 sources."callsites-3.1.0" 9775 9412 sources."camelcase-5.3.1" 9776 - sources."caniuse-lite-1.0.30001204" 9777 9413 sources."capture-exit-2.0.0" 9778 9414 sources."caseless-0.12.0" 9779 9415 (sources."chalk-4.1.0" // { ··· 9793 9429 sources."define-property-0.2.5" 9794 9430 ]; 9795 9431 }) 9796 - sources."cliui-6.0.0" 9432 + (sources."cliui-6.0.0" // { 9433 + dependencies = [ 9434 + sources."emoji-regex-8.0.0" 9435 + sources."is-fullwidth-code-point-3.0.0" 9436 + sources."string-width-4.2.0" 9437 + ]; 9438 + }) 9797 9439 sources."co-4.6.0" 9798 9440 sources."collect-v8-coverage-1.0.1" 9799 9441 sources."collection-visit-1.0.0" 9800 9442 sources."color-convert-1.9.3" 9801 9443 sources."color-name-1.1.3" 9802 - sources."colorette-1.2.2" 9803 9444 sources."combined-stream-1.0.8" 9804 9445 sources."component-emitter-1.3.0" 9805 9446 sources."concat-map-0.0.1" ··· 9843 9484 ]; 9844 9485 }) 9845 9486 sources."ecc-jsbn-0.1.2" 9846 - sources."electron-to-chromium-1.3.701" 9847 9487 sources."emittery-0.7.2" 9848 - sources."emoji-regex-8.0.0" 9488 + sources."emoji-regex-7.0.3" 9849 9489 sources."end-of-stream-1.4.4" 9850 9490 sources."enquirer-2.3.6" 9851 9491 sources."error-ex-1.3.2" 9852 - sources."escalade-3.1.1" 9853 9492 sources."escape-string-regexp-1.0.5" 9854 - (sources."escodegen-2.0.0" // { 9493 + (sources."escodegen-1.14.3" // { 9855 9494 dependencies = [ 9856 - sources."estraverse-5.2.0" 9857 9495 sources."levn-0.3.0" 9858 9496 sources."optionator-0.8.3" 9859 9497 sources."prelude-ls-1.1.2" 9860 9498 sources."type-check-0.3.2" 9861 9499 ]; 9862 9500 }) 9863 - sources."eslint-7.23.0" 9501 + sources."eslint-7.14.0" 9864 9502 sources."eslint-config-google-0.14.0" 9865 - sources."eslint-plugin-jest-24.3.2" 9503 + sources."eslint-plugin-jest-24.1.3" 9866 9504 sources."eslint-scope-5.1.1" 9867 9505 (sources."eslint-utils-2.1.0" // { 9868 9506 dependencies = [ ··· 9870 9508 ]; 9871 9509 }) 9872 9510 sources."eslint-visitor-keys-2.0.0" 9873 - (sources."espree-7.3.1" // { 9511 + (sources."espree-7.3.0" // { 9874 9512 dependencies = [ 9875 9513 sources."eslint-visitor-keys-1.3.0" 9876 9514 ]; 9877 9515 }) 9878 9516 sources."esprima-4.0.1" 9879 - (sources."esquery-1.4.0" // { 9517 + (sources."esquery-1.3.1" // { 9880 9518 dependencies = [ 9881 9519 sources."estraverse-5.2.0" 9882 9520 ]; ··· 9888 9526 }) 9889 9527 sources."estraverse-4.3.0" 9890 9528 sources."esutils-2.0.3" 9891 - sources."exec-sh-0.3.6" 9529 + sources."exec-sh-0.3.4" 9892 9530 (sources."execa-1.0.0" // { 9893 9531 dependencies = [ 9894 9532 sources."cross-spawn-6.0.5" ··· 9932 9570 }) 9933 9571 sources."extsprintf-1.3.0" 9934 9572 sources."fast-deep-equal-3.1.3" 9935 - sources."fast-glob-3.2.5" 9573 + sources."fast-glob-3.2.4" 9936 9574 sources."fast-json-stable-stringify-2.1.0" 9937 9575 sources."fast-levenshtein-2.0.6" 9938 - sources."fastq-1.11.0" 9576 + sources."fastq-1.9.0" 9939 9577 sources."fb-watchman-2.0.1" 9940 - sources."file-entry-cache-6.0.1" 9578 + sources."file-entry-cache-5.0.1" 9941 9579 sources."fill-range-7.0.1" 9942 9580 sources."find-up-4.1.0" 9943 - sources."flat-cache-3.0.4" 9944 - sources."flatted-3.1.1" 9945 - sources."follow-redirects-1.13.3" 9581 + sources."flat-cache-2.0.1" 9582 + sources."flatted-2.0.2" 9583 + sources."follow-redirects-1.13.0" 9946 9584 sources."for-in-1.0.2" 9947 9585 sources."forever-agent-0.6.1" 9948 9586 sources."form-data-2.3.3" 9949 9587 sources."fragment-cache-0.2.1" 9950 9588 sources."fs-constants-1.0.0" 9951 9589 sources."fs.realpath-1.0.0" 9952 - sources."fsevents-2.3.2" 9590 + sources."fsevents-2.2.1" 9953 9591 sources."function-bind-1.1.1" 9954 9592 sources."functional-red-black-tree-1.0.1" 9955 9593 sources."gensync-1.0.0-beta.2" ··· 9959 9597 sources."get-value-2.0.6" 9960 9598 sources."getpass-0.1.7" 9961 9599 sources."glob-7.1.6" 9962 - sources."glob-parent-5.1.2" 9963 - (sources."globals-13.7.0" // { 9964 - dependencies = [ 9965 - sources."type-fest-0.20.2" 9966 - ]; 9967 - }) 9968 - (sources."globby-11.0.3" // { 9600 + sources."glob-parent-5.1.1" 9601 + sources."globals-12.4.0" 9602 + (sources."globby-11.0.1" // { 9969 9603 dependencies = [ 9970 9604 sources."ignore-5.1.8" 9971 9605 ]; 9972 9606 }) 9973 - sources."graceful-fs-4.2.6" 9607 + sources."graceful-fs-4.2.4" 9974 9608 sources."growly-1.3.0" 9975 9609 sources."har-schema-2.0.0" 9976 9610 sources."har-validator-5.1.5" ··· 9996 9630 sources."iconv-lite-0.4.24" 9997 9631 sources."ieee754-1.2.1" 9998 9632 sources."ignore-4.0.6" 9999 - sources."import-fresh-3.3.0" 9633 + sources."import-fresh-3.2.2" 10000 9634 sources."import-local-3.0.2" 10001 9635 sources."imurmurhash-0.1.4" 10002 9636 sources."inflight-1.0.6" 10003 9637 sources."inherits-2.0.4" 9638 + sources."ip-regex-2.1.0" 10004 9639 (sources."is-accessor-descriptor-0.1.6" // { 10005 9640 dependencies = [ 10006 9641 sources."kind-of-3.2.2" ··· 10023 9658 sources."is-docker-2.1.1" 10024 9659 sources."is-extendable-0.1.1" 10025 9660 sources."is-extglob-2.1.1" 10026 - sources."is-fullwidth-code-point-3.0.0" 9661 + sources."is-fullwidth-code-point-2.0.0" 10027 9662 sources."is-generator-fn-2.1.0" 10028 9663 sources."is-glob-4.0.1" 10029 9664 sources."is-number-7.0.0" ··· 10099 9734 ]; 10100 9735 }) 10101 9736 sources."js-tokens-4.0.0" 10102 - sources."js-yaml-3.14.1" 9737 + sources."js-yaml-3.14.0" 10103 9738 sources."jsbn-0.1.1" 10104 - (sources."jsdom-16.5.1" // { 10105 - dependencies = [ 10106 - sources."acorn-8.1.0" 10107 - ]; 10108 - }) 9739 + sources."jsdom-16.4.0" 10109 9740 sources."jsesc-2.5.2" 10110 9741 sources."json-parse-even-better-errors-2.3.1" 10111 9742 sources."json-schema-0.2.3" 10112 9743 sources."json-schema-traverse-0.4.1" 10113 9744 sources."json-stable-stringify-without-jsonify-1.0.1" 10114 9745 sources."json-stringify-safe-5.0.1" 10115 - sources."json5-2.2.0" 9746 + sources."json5-2.1.3" 10116 9747 sources."jsprim-1.4.1" 10117 9748 sources."kind-of-6.0.3" 10118 9749 sources."kleur-3.0.3" ··· 10120 9751 sources."levn-0.4.1" 10121 9752 sources."lines-and-columns-1.1.6" 10122 9753 sources."locate-path-5.0.0" 10123 - sources."lodash-4.17.21" 10124 - sources."lru-cache-6.0.0" 9754 + sources."lodash-4.17.20" 9755 + sources."lodash.sortby-4.7.0" 10125 9756 (sources."make-dir-3.1.0" // { 10126 9757 dependencies = [ 10127 9758 sources."semver-6.3.0" ··· 10133 9764 sources."merge-stream-2.0.0" 10134 9765 sources."merge2-1.4.1" 10135 9766 sources."micromatch-4.0.2" 10136 - sources."mime-db-1.46.0" 10137 - sources."mime-types-2.1.29" 9767 + sources."mime-db-1.44.0" 9768 + sources."mime-types-2.1.27" 10138 9769 sources."mimic-fn-2.1.0" 10139 9770 sources."minimatch-3.0.4" 10140 9771 sources."minimist-1.2.5" ··· 10143 9774 sources."is-extendable-1.0.1" 10144 9775 ]; 10145 9776 }) 9777 + sources."mkdirp-0.5.5" 10146 9778 sources."ms-2.1.2" 10147 9779 sources."nanomatch-1.2.13" 10148 9780 sources."natural-compare-1.4.0" 10149 9781 sources."nice-try-1.0.5" 10150 9782 sources."node-int64-0.4.0" 10151 9783 sources."node-modules-regexp-1.0.0" 10152 - sources."node-notifier-8.0.2" 10153 - sources."node-releases-1.1.71" 9784 + sources."node-notifier-8.0.0" 10154 9785 (sources."normalize-package-data-2.5.0" // { 10155 9786 dependencies = [ 10156 9787 sources."semver-5.7.1" ··· 10181 9812 sources."p-locate-4.1.0" 10182 9813 sources."p-try-2.2.0" 10183 9814 sources."parent-module-1.0.1" 10184 - sources."parse-json-5.2.0" 10185 - sources."parse5-6.0.1" 9815 + sources."parse-json-5.1.0" 9816 + sources."parse5-5.1.1" 10186 9817 sources."pascalcase-0.1.1" 10187 9818 sources."path-exists-4.0.0" 10188 9819 sources."path-is-absolute-1.0.1" ··· 10208 9839 sources."pump-3.0.0" 10209 9840 sources."punycode-2.1.1" 10210 9841 sources."qs-6.5.2" 10211 - sources."queue-microtask-1.2.3" 10212 - sources."react-is-17.0.2" 9842 + sources."react-is-17.0.1" 10213 9843 (sources."read-pkg-5.2.0" // { 10214 9844 dependencies = [ 10215 9845 sources."type-fest-0.6.0" ··· 10235 9865 ]; 10236 9866 }) 10237 9867 sources."require-directory-2.1.1" 10238 - sources."require-from-string-2.0.2" 10239 9868 sources."require-main-filename-2.0.0" 10240 - sources."resolve-1.20.0" 9869 + sources."resolve-1.19.0" 10241 9870 (sources."resolve-cwd-3.0.0" // { 10242 9871 dependencies = [ 10243 9872 sources."resolve-from-5.0.0" ··· 10247 9876 sources."resolve-url-0.2.1" 10248 9877 sources."ret-0.1.15" 10249 9878 sources."reusify-1.0.4" 10250 - sources."rimraf-3.0.2" 9879 + sources."rimraf-2.6.3" 10251 9880 sources."rsvp-4.8.5" 10252 - sources."run-parallel-1.2.0" 9881 + sources."run-parallel-1.1.10" 10253 9882 sources."safe-buffer-5.2.1" 10254 9883 sources."safe-regex-1.1.0" 10255 9884 sources."safer-buffer-2.1.2" ··· 10277 9906 ]; 10278 9907 }) 10279 9908 sources."saxes-5.0.1" 10280 - sources."semver-7.3.5" 9909 + sources."semver-7.3.2" 10281 9910 sources."set-blocking-2.0.0" 10282 9911 (sources."set-value-2.0.1" // { 10283 9912 dependencies = [ ··· 10290 9919 sources."signal-exit-3.0.3" 10291 9920 sources."sisteransi-1.0.5" 10292 9921 sources."slash-3.0.0" 10293 - (sources."slice-ansi-4.0.0" // { 10294 - dependencies = [ 10295 - sources."ansi-styles-4.3.0" 10296 - sources."color-convert-2.0.1" 10297 - sources."color-name-1.1.4" 10298 - ]; 10299 - }) 9922 + sources."slice-ansi-2.1.0" 10300 9923 (sources."snapdragon-0.8.2" // { 10301 9924 dependencies = [ 10302 9925 sources."debug-2.6.9" ··· 10322 9945 sources."source-map-0.6.1" 10323 9946 sources."source-map-resolve-0.5.3" 10324 9947 sources."source-map-support-0.5.19" 10325 - sources."source-map-url-0.4.1" 9948 + sources."source-map-url-0.4.0" 10326 9949 sources."spdx-correct-3.1.1" 10327 9950 sources."spdx-exceptions-2.3.0" 10328 9951 sources."spdx-expression-parse-3.0.1" 10329 - sources."spdx-license-ids-3.0.7" 9952 + sources."spdx-license-ids-3.0.6" 10330 9953 sources."split-string-3.1.0" 10331 9954 sources."sprintf-js-1.0.3" 10332 9955 sources."sshpk-1.16.1" ··· 10341 9964 ]; 10342 9965 }) 10343 9966 sources."stealthy-require-1.1.1" 10344 - sources."string-length-4.0.2" 10345 - sources."string-width-4.2.2" 9967 + sources."string-length-4.0.1" 9968 + (sources."string-width-3.1.0" // { 9969 + dependencies = [ 9970 + sources."ansi-regex-4.1.0" 9971 + sources."strip-ansi-5.2.0" 9972 + ]; 9973 + }) 10346 9974 sources."string_decoder-1.3.0" 10347 9975 sources."strip-ansi-6.0.0" 10348 9976 sources."strip-bom-4.0.0" ··· 10357 9985 ]; 10358 9986 }) 10359 9987 sources."symbol-tree-3.2.4" 10360 - (sources."table-6.0.7" // { 10361 - dependencies = [ 10362 - sources."ajv-7.2.4" 10363 - sources."json-schema-traverse-1.0.0" 10364 - ]; 10365 - }) 10366 - sources."tar-stream-2.2.0" 9988 + sources."table-5.4.6" 9989 + sources."tar-stream-2.1.4" 10367 9990 sources."terminal-link-2.1.1" 10368 9991 sources."test-exclude-6.0.0" 10369 9992 sources."text-table-0.2.0" ··· 10377 10000 }) 10378 10001 sources."to-regex-3.0.2" 10379 10002 sources."to-regex-range-5.0.1" 10380 - sources."tough-cookie-4.0.0" 10003 + sources."tough-cookie-3.0.1" 10381 10004 sources."tr46-2.0.2" 10382 10005 sources."tslib-1.14.1" 10383 - sources."tsutils-3.21.0" 10006 + sources."tsutils-3.17.1" 10384 10007 sources."tunnel-agent-0.6.0" 10385 10008 sources."tweetnacl-0.14.5" 10386 10009 sources."type-check-0.4.0" ··· 10388 10011 sources."type-fest-0.8.1" 10389 10012 sources."typedarray-to-buffer-3.1.5" 10390 10013 sources."union-value-1.0.1" 10391 - sources."universalify-0.1.2" 10392 10014 (sources."unset-value-1.0.0" // { 10393 10015 dependencies = [ 10394 10016 (sources."has-value-0.3.1" // { ··· 10399 10021 sources."has-values-0.1.4" 10400 10022 ]; 10401 10023 }) 10402 - sources."uri-js-4.4.1" 10024 + sources."uri-js-4.4.0" 10403 10025 sources."urix-0.1.0" 10404 10026 sources."use-3.1.1" 10405 10027 sources."util-deprecate-1.0.2" 10406 - sources."uuid-8.3.2" 10407 - sources."v8-compile-cache-2.3.0" 10408 - (sources."v8-to-istanbul-7.1.0" // { 10028 + sources."uuid-8.3.1" 10029 + sources."v8-compile-cache-2.2.0" 10030 + (sources."v8-to-istanbul-7.0.0" // { 10409 10031 dependencies = [ 10410 10032 sources."source-map-0.7.3" 10411 10033 ]; ··· 10418 10040 sources."webidl-conversions-6.1.0" 10419 10041 sources."whatwg-encoding-1.0.5" 10420 10042 sources."whatwg-mimetype-2.3.0" 10421 - sources."whatwg-url-8.5.0" 10043 + sources."whatwg-url-8.4.0" 10422 10044 sources."which-2.0.2" 10423 10045 sources."which-module-2.0.0" 10424 10046 sources."word-wrap-1.2.3" ··· 10427 10049 sources."ansi-styles-4.3.0" 10428 10050 sources."color-convert-2.0.1" 10429 10051 sources."color-name-1.1.4" 10052 + sources."emoji-regex-8.0.0" 10053 + sources."is-fullwidth-code-point-3.0.0" 10054 + sources."string-width-4.2.0" 10430 10055 ]; 10431 10056 }) 10432 10057 sources."wrappy-1.0.2" 10058 + sources."write-1.0.3" 10433 10059 sources."write-file-atomic-3.0.3" 10434 - sources."ws-7.4.4" 10060 + sources."ws-7.4.0" 10435 10061 sources."xml-name-validator-3.0.0" 10436 10062 sources."xmlchars-2.2.0" 10437 - sources."y18n-4.0.1" 10438 - sources."yallist-4.0.0" 10439 - sources."yargs-15.4.1" 10440 - sources."yargs-parser-18.1.3" 10441 - (sources."zigbee-herdsman-0.13.87" // { 10063 + sources."y18n-4.0.0" 10064 + (sources."yargs-15.4.1" // { 10442 10065 dependencies = [ 10443 - sources."@babel/cli-7.13.0" 10444 - sources."@babel/code-frame-7.12.13" 10445 - sources."@babel/compat-data-7.13.8" 10446 - (sources."@babel/core-7.13.8" // { 10447 - dependencies = [ 10448 - sources."semver-6.3.0" 10449 - ]; 10450 - }) 10451 - sources."@babel/generator-7.13.9" 10452 - sources."@babel/helper-annotate-as-pure-7.12.13" 10453 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" 10454 - (sources."@babel/helper-compilation-targets-7.13.8" // { 10455 - dependencies = [ 10456 - sources."semver-6.3.0" 10457 - ]; 10458 - }) 10459 - sources."@babel/helper-create-class-features-plugin-7.13.8" 10460 - sources."@babel/helper-create-regexp-features-plugin-7.12.17" 10461 - (sources."@babel/helper-define-polyfill-provider-0.1.5" // { 10462 - dependencies = [ 10463 - sources."semver-6.3.0" 10464 - ]; 10465 - }) 10466 - sources."@babel/helper-explode-assignable-expression-7.13.0" 10467 - sources."@babel/helper-function-name-7.12.13" 10468 - sources."@babel/helper-get-function-arity-7.12.13" 10469 - sources."@babel/helper-hoist-variables-7.13.0" 10470 - sources."@babel/helper-member-expression-to-functions-7.13.0" 10471 - sources."@babel/helper-module-imports-7.12.13" 10472 - sources."@babel/helper-module-transforms-7.13.0" 10473 - sources."@babel/helper-optimise-call-expression-7.12.13" 10474 - sources."@babel/helper-plugin-utils-7.13.0" 10475 - sources."@babel/helper-remap-async-to-generator-7.13.0" 10476 - sources."@babel/helper-replace-supers-7.13.0" 10477 - sources."@babel/helper-simple-access-7.12.13" 10478 - sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 10479 - sources."@babel/helper-split-export-declaration-7.12.13" 10480 - sources."@babel/helper-validator-identifier-7.12.11" 10481 - sources."@babel/helper-validator-option-7.12.17" 10482 - sources."@babel/helper-wrap-function-7.13.0" 10483 - sources."@babel/helpers-7.13.0" 10484 - sources."@babel/highlight-7.13.8" 10485 - sources."@babel/parser-7.13.9" 10486 - sources."@babel/plugin-proposal-async-generator-functions-7.13.8" 10487 - sources."@babel/plugin-proposal-class-properties-7.13.0" 10488 - sources."@babel/plugin-proposal-dynamic-import-7.13.8" 10489 - sources."@babel/plugin-proposal-export-namespace-from-7.12.13" 10490 - sources."@babel/plugin-proposal-json-strings-7.13.8" 10491 - sources."@babel/plugin-proposal-logical-assignment-operators-7.13.8" 10492 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.13.8" 10493 - sources."@babel/plugin-proposal-numeric-separator-7.12.13" 10494 - sources."@babel/plugin-proposal-object-rest-spread-7.13.8" 10495 - sources."@babel/plugin-proposal-optional-catch-binding-7.13.8" 10496 - sources."@babel/plugin-proposal-optional-chaining-7.13.8" 10497 - sources."@babel/plugin-proposal-private-methods-7.13.0" 10498 - sources."@babel/plugin-proposal-unicode-property-regex-7.12.13" 10499 - sources."@babel/plugin-syntax-async-generators-7.8.4" 10500 - sources."@babel/plugin-syntax-bigint-7.8.3" 10501 - sources."@babel/plugin-syntax-class-properties-7.12.13" 10502 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 10503 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 10504 - sources."@babel/plugin-syntax-import-meta-7.10.4" 10505 - sources."@babel/plugin-syntax-json-strings-7.8.3" 10506 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 10507 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 10508 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 10509 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 10510 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 10511 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 10512 - sources."@babel/plugin-syntax-top-level-await-7.12.13" 10513 - sources."@babel/plugin-syntax-typescript-7.12.13" 10514 - sources."@babel/plugin-transform-arrow-functions-7.13.0" 10515 - sources."@babel/plugin-transform-async-to-generator-7.13.0" 10516 - sources."@babel/plugin-transform-block-scoped-functions-7.12.13" 10517 - sources."@babel/plugin-transform-block-scoping-7.12.13" 10518 - sources."@babel/plugin-transform-classes-7.13.0" 10519 - sources."@babel/plugin-transform-computed-properties-7.13.0" 10520 - sources."@babel/plugin-transform-destructuring-7.13.0" 10521 - sources."@babel/plugin-transform-dotall-regex-7.12.13" 10522 - sources."@babel/plugin-transform-duplicate-keys-7.12.13" 10523 - sources."@babel/plugin-transform-exponentiation-operator-7.12.13" 10524 - sources."@babel/plugin-transform-for-of-7.13.0" 10525 - sources."@babel/plugin-transform-function-name-7.12.13" 10526 - sources."@babel/plugin-transform-literals-7.12.13" 10527 - sources."@babel/plugin-transform-member-expression-literals-7.12.13" 10528 - sources."@babel/plugin-transform-modules-amd-7.13.0" 10529 - sources."@babel/plugin-transform-modules-commonjs-7.13.8" 10530 - sources."@babel/plugin-transform-modules-systemjs-7.13.8" 10531 - sources."@babel/plugin-transform-modules-umd-7.13.0" 10532 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13" 10533 - sources."@babel/plugin-transform-new-target-7.12.13" 10534 - sources."@babel/plugin-transform-object-super-7.12.13" 10535 - sources."@babel/plugin-transform-parameters-7.13.0" 10536 - sources."@babel/plugin-transform-property-literals-7.12.13" 10537 - sources."@babel/plugin-transform-regenerator-7.12.13" 10538 - sources."@babel/plugin-transform-reserved-words-7.12.13" 10539 - sources."@babel/plugin-transform-shorthand-properties-7.12.13" 10540 - sources."@babel/plugin-transform-spread-7.13.0" 10541 - sources."@babel/plugin-transform-sticky-regex-7.12.13" 10542 - sources."@babel/plugin-transform-template-literals-7.13.0" 10543 - sources."@babel/plugin-transform-typeof-symbol-7.12.13" 10544 - sources."@babel/plugin-transform-typescript-7.13.0" 10545 - sources."@babel/plugin-transform-unicode-escapes-7.12.13" 10546 - sources."@babel/plugin-transform-unicode-regex-7.12.13" 10547 - (sources."@babel/preset-env-7.13.9" // { 10548 - dependencies = [ 10549 - sources."semver-6.3.0" 10550 - ]; 10551 - }) 10552 - sources."@babel/preset-modules-0.1.4" 10553 - sources."@babel/preset-typescript-7.13.0" 10554 - sources."@babel/runtime-7.13.9" 10555 - sources."@babel/template-7.12.13" 10556 - sources."@babel/traverse-7.13.0" 10557 - sources."@babel/types-7.13.0" 10558 - sources."@bcoe/v8-coverage-0.2.3" 10559 - sources."@cnakazawa/watch-1.0.4" 10560 - (sources."@eslint/eslintrc-0.4.0" // { 10561 - dependencies = [ 10562 - sources."globals-12.4.0" 10563 - sources."ignore-4.0.6" 10564 - sources."strip-json-comments-3.1.1" 10565 - ]; 10566 - }) 10567 - sources."@istanbuljs/load-nyc-config-1.1.0" 10568 - sources."@istanbuljs/schema-0.1.3" 10569 - (sources."@jest/console-26.6.2" // { 10570 - dependencies = [ 10571 - sources."ansi-styles-4.3.0" 10572 - sources."chalk-4.1.0" 10573 - sources."color-convert-2.0.1" 10574 - sources."color-name-1.1.4" 10575 - sources."has-flag-4.0.0" 10576 - sources."slash-3.0.0" 10577 - sources."supports-color-7.2.0" 10578 - ]; 10579 - }) 10580 - (sources."@jest/core-26.6.3" // { 10581 - dependencies = [ 10582 - sources."ansi-regex-5.0.0" 10583 - sources."ansi-styles-4.3.0" 10584 - sources."braces-3.0.2" 10585 - sources."chalk-4.1.0" 10586 - sources."color-convert-2.0.1" 10587 - sources."color-name-1.1.4" 10588 - sources."fill-range-7.0.1" 10589 - sources."has-flag-4.0.0" 10590 - sources."is-number-7.0.0" 10591 - sources."micromatch-4.0.2" 10592 - sources."slash-3.0.0" 10593 - sources."strip-ansi-6.0.0" 10594 - sources."supports-color-7.2.0" 10595 - sources."to-regex-range-5.0.1" 10596 - ]; 10597 - }) 10598 - sources."@jest/environment-26.6.2" 10599 - sources."@jest/fake-timers-26.6.2" 10600 - sources."@jest/globals-26.6.2" 10601 - (sources."@jest/reporters-26.6.2" // { 10602 - dependencies = [ 10603 - sources."ansi-styles-4.3.0" 10604 - sources."chalk-4.1.0" 10605 - sources."color-convert-2.0.1" 10606 - sources."color-name-1.1.4" 10607 - sources."has-flag-4.0.0" 10608 - sources."slash-3.0.0" 10609 - sources."source-map-0.6.1" 10610 - sources."supports-color-7.2.0" 10611 - ]; 10612 - }) 10613 - (sources."@jest/source-map-26.6.2" // { 10614 - dependencies = [ 10615 - sources."source-map-0.6.1" 10616 - ]; 10617 - }) 10618 - sources."@jest/test-result-26.6.2" 10619 - sources."@jest/test-sequencer-26.6.3" 10620 - (sources."@jest/transform-26.6.2" // { 10621 - dependencies = [ 10622 - sources."ansi-styles-4.3.0" 10623 - sources."braces-3.0.2" 10624 - sources."chalk-4.1.0" 10625 - sources."color-convert-2.0.1" 10626 - sources."color-name-1.1.4" 10627 - sources."fill-range-7.0.1" 10628 - sources."has-flag-4.0.0" 10629 - sources."is-number-7.0.0" 10630 - sources."micromatch-4.0.2" 10631 - sources."slash-3.0.0" 10632 - sources."source-map-0.6.1" 10633 - sources."supports-color-7.2.0" 10634 - sources."to-regex-range-5.0.1" 10635 - ]; 10636 - }) 10637 - (sources."@jest/types-26.6.2" // { 10638 - dependencies = [ 10639 - sources."ansi-styles-4.3.0" 10640 - sources."chalk-4.1.0" 10641 - sources."color-convert-2.0.1" 10642 - sources."color-name-1.1.4" 10643 - sources."has-flag-4.0.0" 10644 - sources."supports-color-7.2.0" 10645 - ]; 10646 - }) 10647 - sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" 10648 - sources."@nodelib/fs.scandir-2.1.4" 10649 - sources."@nodelib/fs.stat-2.0.4" 10650 - sources."@nodelib/fs.walk-1.2.6" 10651 - sources."@serialport/binding-abstract-9.0.7" 10652 - sources."@serialport/binding-mock-9.0.7" 10653 - sources."@serialport/bindings-9.0.4" 10654 - sources."@serialport/parser-byte-length-9.0.7" 10655 - sources."@serialport/parser-cctalk-9.0.7" 10656 - sources."@serialport/parser-delimiter-9.0.7" 10657 - sources."@serialport/parser-inter-byte-timeout-9.0.7" 10658 - sources."@serialport/parser-readline-9.0.7" 10659 - sources."@serialport/parser-ready-9.0.7" 10660 - sources."@serialport/parser-regex-9.0.7" 10661 - sources."@serialport/stream-9.0.7" 10662 - sources."@sinonjs/commons-1.8.2" 10663 - sources."@sinonjs/fake-timers-6.0.1" 10664 - sources."@types/babel__core-7.1.12" 10665 - sources."@types/babel__generator-7.6.2" 10666 - sources."@types/babel__template-7.4.0" 10667 - sources."@types/babel__traverse-7.11.0" 10668 - sources."@types/debounce-1.2.0" 10669 - sources."@types/debug-4.1.5" 10670 - sources."@types/graceful-fs-4.1.5" 10671 - sources."@types/istanbul-lib-coverage-2.0.3" 10672 - sources."@types/istanbul-lib-report-3.0.0" 10673 - sources."@types/istanbul-reports-3.0.0" 10674 - sources."@types/jest-26.0.20" 10675 - sources."@types/json-schema-7.0.7" 10676 - sources."@types/nedb-1.8.11" 10677 - sources."@types/node-14.14.31" 10678 - sources."@types/normalize-package-data-2.4.0" 10679 - sources."@types/prettier-2.2.2" 10680 - sources."@types/serialport-8.0.1" 10681 - sources."@types/stack-utils-2.0.0" 10682 - sources."@types/yargs-15.0.13" 10683 - sources."@types/yargs-parser-20.2.0" 10684 - (sources."@typescript-eslint/eslint-plugin-4.16.1" // { 10685 - dependencies = [ 10686 - sources."semver-7.3.4" 10687 - ]; 10688 - }) 10689 - sources."@typescript-eslint/experimental-utils-4.16.1" 10690 - sources."@typescript-eslint/parser-4.16.1" 10691 - sources."@typescript-eslint/scope-manager-4.16.1" 10692 - sources."@typescript-eslint/types-4.16.1" 10693 - (sources."@typescript-eslint/typescript-estree-4.16.1" // { 10694 - dependencies = [ 10695 - sources."semver-7.3.4" 10696 - ]; 10697 - }) 10698 - sources."@typescript-eslint/visitor-keys-4.16.1" 10699 - sources."abab-2.0.5" 10700 - sources."acorn-7.4.1" 10701 - sources."acorn-globals-6.0.0" 10702 - sources."acorn-jsx-5.3.1" 10703 - sources."acorn-walk-7.2.0" 10704 - sources."ajv-6.12.6" 10705 - sources."ansi-colors-4.1.1" 10706 - (sources."ansi-escapes-4.3.1" // { 10707 - dependencies = [ 10708 - sources."type-fest-0.11.0" 10709 - ]; 10710 - }) 10711 - sources."ansi-regex-2.1.1" 10712 - sources."ansi-styles-3.2.1" 10713 - (sources."anymatch-2.0.0" // { 10714 - dependencies = [ 10715 - sources."normalize-path-2.1.1" 10716 - ]; 10717 - }) 10718 - sources."aproba-1.2.0" 10719 - sources."are-we-there-yet-1.1.5" 10720 - sources."argparse-1.0.10" 10721 - sources."arr-diff-4.0.0" 10722 - sources."arr-flatten-1.1.0" 10723 - sources."arr-union-3.1.0" 10724 - sources."array-union-2.1.0" 10725 - sources."array-unique-0.3.2" 10726 - sources."asn1-0.2.4" 10727 - sources."assert-plus-1.0.0" 10728 - sources."assign-symbols-1.0.0" 10729 - sources."astral-regex-2.0.0" 10730 - sources."async-each-1.0.3" 10731 - sources."asynckit-0.4.0" 10732 - sources."at-least-node-1.0.0" 10733 - sources."atob-2.1.2" 10734 - sources."aws-sign2-0.7.0" 10735 - sources."aws4-1.11.0" 10736 - (sources."babel-jest-26.6.3" // { 10737 - dependencies = [ 10738 - sources."ansi-styles-4.3.0" 10739 - sources."chalk-4.1.0" 10740 - sources."color-convert-2.0.1" 10741 - sources."color-name-1.1.4" 10742 - sources."has-flag-4.0.0" 10743 - sources."slash-3.0.0" 10744 - sources."supports-color-7.2.0" 10745 - ]; 10746 - }) 10747 - sources."babel-plugin-dynamic-import-node-2.3.3" 10748 - sources."babel-plugin-istanbul-6.0.0" 10749 - sources."babel-plugin-jest-hoist-26.6.2" 10750 - (sources."babel-plugin-polyfill-corejs2-0.1.10" // { 10751 - dependencies = [ 10752 - sources."semver-6.3.0" 10753 - ]; 10754 - }) 10755 - sources."babel-plugin-polyfill-corejs3-0.1.7" 10756 - sources."babel-plugin-polyfill-regenerator-0.1.6" 10757 - sources."babel-preset-current-node-syntax-1.0.1" 10758 - sources."babel-preset-jest-26.6.2" 10759 - sources."balanced-match-1.0.0" 10760 - (sources."base-0.11.2" // { 10761 - dependencies = [ 10762 - sources."define-property-1.0.0" 10763 - sources."is-accessor-descriptor-1.0.0" 10764 - sources."is-data-descriptor-1.0.0" 10765 - sources."is-descriptor-1.0.2" 10766 - sources."is-extendable-1.0.1" 10767 - sources."mixin-deep-1.3.2" 10768 - ]; 10769 - }) 10770 - sources."base64-js-1.5.1" 10771 - sources."bcrypt-pbkdf-1.0.2" 10772 - sources."binary-extensions-1.13.1" 10773 - sources."bindings-1.5.0" 10774 - (sources."bl-4.1.0" // { 10775 - dependencies = [ 10776 - sources."readable-stream-3.6.0" 10777 - ]; 10778 - }) 10779 - sources."brace-expansion-1.1.11" 10780 - (sources."braces-2.3.2" // { 10781 - dependencies = [ 10782 - sources."extend-shallow-2.0.1" 10783 - ]; 10784 - }) 10785 - sources."browser-process-hrtime-1.0.0" 10786 - sources."browserslist-4.16.3" 10787 - sources."bser-2.1.1" 10788 - sources."buffer-5.7.1" 10789 - sources."buffer-from-1.1.1" 10790 - sources."cache-base-1.0.1" 10791 - sources."call-bind-1.0.2" 10792 - sources."callsites-3.1.0" 10793 - sources."camelcase-5.3.1" 10794 - sources."caniuse-lite-1.0.30001194" 10795 - sources."capture-exit-2.0.0" 10796 - sources."caseless-0.12.0" 10797 - sources."chalk-2.4.2" 10798 - sources."char-regex-1.0.2" 10799 - (sources."chokidar-3.5.1" // { 10800 - dependencies = [ 10801 - sources."anymatch-3.1.1" 10802 - sources."binary-extensions-2.2.0" 10803 - sources."braces-3.0.2" 10804 - sources."fill-range-7.0.1" 10805 - sources."glob-parent-5.1.1" 10806 - sources."is-binary-path-2.1.0" 10807 - sources."is-number-7.0.0" 10808 - sources."readdirp-3.5.0" 10809 - sources."to-regex-range-5.0.1" 10810 - ]; 10811 - }) 10812 - sources."chownr-1.1.4" 10813 - sources."ci-info-2.0.0" 10814 - sources."cjs-module-lexer-0.6.0" 10815 - (sources."class-utils-0.3.6" // { 10816 - dependencies = [ 10817 - sources."define-property-0.2.5" 10818 - ]; 10819 - }) 10820 - (sources."cliui-6.0.0" // { 10821 - dependencies = [ 10822 - sources."ansi-regex-5.0.0" 10823 - sources."is-fullwidth-code-point-3.0.0" 10824 - sources."string-width-4.2.2" 10825 - sources."strip-ansi-6.0.0" 10826 - ]; 10827 - }) 10828 - sources."co-4.6.0" 10829 - sources."code-point-at-1.1.0" 10830 - sources."collect-v8-coverage-1.0.1" 10831 - sources."collection-visit-1.0.0" 10832 - sources."color-convert-1.9.3" 10833 - sources."color-name-1.1.3" 10834 - sources."colorette-1.2.2" 10835 - sources."colors-1.4.0" 10836 - sources."combined-stream-1.0.8" 10837 - sources."commander-4.1.1" 10838 - sources."component-emitter-1.3.0" 10839 - sources."concat-map-0.0.1" 10840 - sources."console-control-strings-1.1.0" 10841 - sources."convert-source-map-1.7.0" 10842 - sources."copy-descriptor-0.1.1" 10843 - (sources."core-js-compat-3.9.1" // { 10844 - dependencies = [ 10845 - sources."semver-7.0.0" 10846 - ]; 10847 - }) 10848 - sources."core-util-is-1.0.2" 10849 - sources."cross-spawn-6.0.5" 10850 - sources."cssom-0.4.4" 10851 - (sources."cssstyle-2.3.0" // { 10852 - dependencies = [ 10853 - sources."cssom-0.3.8" 10854 - ]; 10855 - }) 10856 - sources."dashdash-1.14.1" 10857 - sources."data-urls-2.0.0" 10858 - sources."debounce-1.2.0" 10859 - sources."debug-4.3.1" 10860 - sources."decamelize-1.2.0" 10861 - sources."decimal.js-10.2.1" 10862 - sources."decode-uri-component-0.2.0" 10863 - sources."decompress-response-4.2.1" 10864 - sources."deep-extend-0.6.0" 10865 - sources."deep-is-0.1.3" 10866 - sources."deepmerge-4.2.2" 10867 - sources."define-properties-1.1.3" 10868 - (sources."define-property-2.0.2" // { 10869 - dependencies = [ 10870 - sources."is-accessor-descriptor-1.0.0" 10871 - sources."is-data-descriptor-1.0.0" 10872 - sources."is-descriptor-1.0.2" 10873 - ]; 10874 - }) 10875 - sources."delayed-stream-1.0.0" 10876 - sources."delegates-1.0.0" 10877 - sources."detect-libc-1.0.3" 10878 - sources."detect-newline-3.1.0" 10879 - sources."diff-sequences-26.6.2" 10880 - sources."dir-glob-3.0.1" 10881 - sources."doctrine-3.0.0" 10882 - (sources."domexception-2.0.1" // { 10883 - dependencies = [ 10884 - sources."webidl-conversions-5.0.0" 10885 - ]; 10886 - }) 10887 - sources."ecc-jsbn-0.1.2" 10888 - sources."electron-to-chromium-1.3.678" 10889 - sources."emittery-0.7.2" 10890 10066 sources."emoji-regex-8.0.0" 10891 - sources."end-of-stream-1.4.4" 10892 - sources."enquirer-2.3.6" 10893 - sources."error-ex-1.3.2" 10894 - sources."escalade-3.1.1" 10895 - sources."escape-string-regexp-1.0.5" 10896 - (sources."escodegen-1.14.3" // { 10897 - dependencies = [ 10898 - sources."levn-0.3.0" 10899 - sources."optionator-0.8.3" 10900 - sources."prelude-ls-1.1.2" 10901 - sources."source-map-0.6.1" 10902 - sources."type-check-0.3.2" 10903 - ]; 10904 - }) 10905 - (sources."eslint-7.21.0" // { 10906 - dependencies = [ 10907 - sources."@babel/code-frame-7.12.11" 10908 - sources."ansi-regex-5.0.0" 10909 - sources."ansi-styles-4.3.0" 10910 - sources."chalk-4.1.0" 10911 - sources."color-convert-2.0.1" 10912 - sources."color-name-1.1.4" 10913 - sources."cross-spawn-7.0.3" 10914 - sources."glob-parent-5.1.1" 10915 - sources."globals-12.4.0" 10916 - sources."has-flag-4.0.0" 10917 - sources."ignore-4.0.6" 10918 - sources."path-key-3.1.1" 10919 - sources."semver-7.3.4" 10920 - sources."shebang-command-2.0.0" 10921 - sources."shebang-regex-3.0.0" 10922 - sources."strip-ansi-6.0.0" 10923 - sources."strip-json-comments-3.1.1" 10924 - sources."supports-color-7.2.0" 10925 - sources."which-2.0.2" 10926 - ]; 10927 - }) 10928 - sources."eslint-scope-5.1.1" 10929 - (sources."eslint-utils-2.1.0" // { 10930 - dependencies = [ 10931 - sources."eslint-visitor-keys-1.3.0" 10932 - ]; 10933 - }) 10934 - sources."eslint-visitor-keys-2.0.0" 10935 - (sources."espree-7.3.1" // { 10936 - dependencies = [ 10937 - sources."eslint-visitor-keys-1.3.0" 10938 - ]; 10939 - }) 10940 - sources."esprima-4.0.1" 10941 - (sources."esquery-1.4.0" // { 10942 - dependencies = [ 10943 - sources."estraverse-5.2.0" 10944 - ]; 10945 - }) 10946 - (sources."esrecurse-4.3.0" // { 10947 - dependencies = [ 10948 - sources."estraverse-5.2.0" 10949 - ]; 10950 - }) 10951 - sources."estraverse-4.3.0" 10952 - sources."esutils-2.0.3" 10953 - sources."exec-sh-0.3.4" 10954 - sources."execa-1.0.0" 10955 - sources."exit-0.1.2" 10956 - (sources."expand-brackets-2.1.4" // { 10957 - dependencies = [ 10958 - sources."debug-2.6.9" 10959 - sources."define-property-0.2.5" 10960 - sources."extend-shallow-2.0.1" 10961 - sources."ms-2.0.0" 10962 - ]; 10963 - }) 10964 - sources."expand-template-2.0.3" 10965 - (sources."expect-26.6.2" // { 10966 - dependencies = [ 10967 - sources."ansi-styles-4.3.0" 10968 - sources."color-convert-2.0.1" 10969 - sources."color-name-1.1.4" 10970 - ]; 10971 - }) 10972 - sources."extend-3.0.2" 10973 - (sources."extend-shallow-3.0.2" // { 10974 - dependencies = [ 10975 - sources."is-extendable-1.0.1" 10976 - ]; 10977 - }) 10978 - (sources."extglob-2.0.4" // { 10979 - dependencies = [ 10980 - sources."define-property-1.0.0" 10981 - sources."extend-shallow-2.0.1" 10982 - sources."is-accessor-descriptor-1.0.0" 10983 - sources."is-data-descriptor-1.0.0" 10984 - sources."is-descriptor-1.0.2" 10985 - ]; 10986 - }) 10987 - sources."extsprintf-1.3.0" 10988 - sources."fast-deep-equal-3.1.3" 10989 - (sources."fast-glob-3.2.5" // { 10990 - dependencies = [ 10991 - sources."braces-3.0.2" 10992 - sources."fill-range-7.0.1" 10993 - sources."glob-parent-5.1.1" 10994 - sources."is-number-7.0.0" 10995 - sources."micromatch-4.0.2" 10996 - sources."to-regex-range-5.0.1" 10997 - ]; 10998 - }) 10999 - sources."fast-json-stable-stringify-2.1.0" 11000 - sources."fast-levenshtein-2.0.6" 11001 - sources."fastq-1.11.0" 11002 - sources."fb-watchman-2.0.1" 11003 - sources."file-entry-cache-6.0.1" 11004 - sources."file-uri-to-path-1.0.0" 11005 - (sources."fill-range-4.0.0" // { 11006 - dependencies = [ 11007 - sources."extend-shallow-2.0.1" 11008 - ]; 11009 - }) 11010 - sources."find-up-4.1.0" 11011 - sources."flat-cache-3.0.4" 11012 - sources."flatted-3.1.1" 11013 - sources."for-in-1.0.2" 11014 - sources."forever-agent-0.6.1" 11015 - sources."form-data-2.3.3" 11016 - sources."fragment-cache-0.2.1" 11017 - sources."fs-constants-1.0.0" 11018 - sources."fs-extra-9.1.0" 11019 - sources."fs-readdir-recursive-1.1.0" 11020 - sources."fs.realpath-1.0.0" 11021 - sources."fsevents-2.3.2" 11022 - sources."function-bind-1.1.1" 11023 - sources."functional-red-black-tree-1.0.1" 11024 - sources."gauge-2.7.4" 11025 - sources."gensync-1.0.0-beta.2" 11026 - sources."get-caller-file-2.0.5" 11027 - sources."get-intrinsic-1.1.1" 11028 - sources."get-package-type-0.1.0" 11029 - sources."get-stream-4.1.0" 11030 - sources."get-value-2.0.6" 11031 - sources."getpass-0.1.7" 11032 - sources."github-from-package-0.0.0" 11033 - sources."glob-7.1.6" 11034 - (sources."glob-parent-3.1.0" // { 11035 - dependencies = [ 11036 - sources."is-glob-3.1.0" 11037 - ]; 11038 - }) 11039 - sources."globals-11.12.0" 11040 - (sources."globby-11.0.2" // { 11041 - dependencies = [ 11042 - sources."slash-3.0.0" 11043 - ]; 11044 - }) 11045 - sources."graceful-fs-4.2.6" 11046 - sources."growly-1.3.0" 11047 - (sources."handlebars-4.7.7" // { 11048 - dependencies = [ 11049 - sources."source-map-0.6.1" 11050 - ]; 11051 - }) 11052 - sources."har-schema-2.0.0" 11053 - sources."har-validator-5.1.5" 11054 - sources."has-1.0.3" 11055 - sources."has-flag-3.0.0" 11056 - sources."has-symbols-1.0.2" 11057 - sources."has-unicode-2.0.1" 11058 - sources."has-value-1.0.0" 11059 - (sources."has-values-1.0.0" // { 11060 - dependencies = [ 11061 - sources."kind-of-4.0.0" 11062 - ]; 11063 - }) 11064 - sources."hosted-git-info-2.8.8" 11065 - sources."html-encoding-sniffer-2.0.1" 11066 - sources."html-escaper-2.0.2" 11067 - sources."http-signature-1.2.0" 11068 - sources."human-signals-1.1.1" 11069 - sources."iconv-lite-0.4.24" 11070 - sources."ieee754-1.2.1" 11071 - sources."ignore-5.1.8" 11072 - (sources."import-fresh-3.3.0" // { 11073 - dependencies = [ 11074 - sources."resolve-from-4.0.0" 11075 - ]; 11076 - }) 11077 - sources."import-local-3.0.2" 11078 - sources."imurmurhash-0.1.4" 11079 - sources."inflight-1.0.6" 11080 - sources."inherits-2.0.4" 11081 - sources."ini-1.3.8" 11082 - sources."interpret-1.4.0" 11083 - sources."ip-regex-2.1.0" 11084 - (sources."is-accessor-descriptor-0.1.6" // { 11085 - dependencies = [ 11086 - sources."kind-of-3.2.2" 11087 - ]; 11088 - }) 11089 - sources."is-arrayish-0.2.1" 11090 - sources."is-binary-path-1.0.1" 11091 - sources."is-buffer-1.1.6" 11092 - sources."is-ci-2.0.0" 11093 - sources."is-core-module-2.2.0" 11094 - (sources."is-data-descriptor-0.1.4" // { 11095 - dependencies = [ 11096 - sources."kind-of-3.2.2" 11097 - ]; 11098 - }) 11099 - (sources."is-descriptor-0.1.6" // { 11100 - dependencies = [ 11101 - sources."kind-of-5.1.0" 11102 - ]; 11103 - }) 11104 - sources."is-docker-2.1.1" 11105 - sources."is-extendable-0.1.1" 11106 - sources."is-extglob-2.1.1" 11107 - sources."is-fullwidth-code-point-1.0.0" 11108 - sources."is-generator-fn-2.1.0" 11109 - sources."is-glob-4.0.1" 11110 - (sources."is-number-3.0.0" // { 11111 - dependencies = [ 11112 - sources."kind-of-3.2.2" 11113 - ]; 11114 - }) 11115 - sources."is-plain-object-2.0.4" 11116 - sources."is-potential-custom-element-name-1.0.0" 11117 - sources."is-stream-1.1.0" 11118 - sources."is-typedarray-1.0.0" 11119 - sources."is-windows-1.0.2" 11120 - sources."is-wsl-2.2.0" 11121 - sources."isarray-1.0.0" 11122 - sources."isexe-2.0.0" 11123 - sources."isobject-3.0.1" 11124 - sources."isstream-0.1.2" 11125 - sources."istanbul-lib-coverage-3.0.0" 11126 - (sources."istanbul-lib-instrument-4.0.3" // { 11127 - dependencies = [ 11128 - sources."semver-6.3.0" 11129 - ]; 11130 - }) 11131 - (sources."istanbul-lib-report-3.0.0" // { 11132 - dependencies = [ 11133 - sources."has-flag-4.0.0" 11134 - sources."make-dir-3.1.0" 11135 - sources."semver-6.3.0" 11136 - sources."supports-color-7.2.0" 11137 - ]; 11138 - }) 11139 - (sources."istanbul-lib-source-maps-4.0.0" // { 11140 - dependencies = [ 11141 - sources."source-map-0.6.1" 11142 - ]; 11143 - }) 11144 - sources."istanbul-reports-3.0.2" 11145 - (sources."jest-26.6.3" // { 11146 - dependencies = [ 11147 - sources."ansi-styles-4.3.0" 11148 - sources."chalk-4.1.0" 11149 - sources."color-convert-2.0.1" 11150 - sources."color-name-1.1.4" 11151 - sources."has-flag-4.0.0" 11152 - sources."jest-cli-26.6.3" 11153 - sources."supports-color-7.2.0" 11154 - ]; 11155 - }) 11156 - (sources."jest-changed-files-26.6.2" // { 11157 - dependencies = [ 11158 - sources."cross-spawn-7.0.3" 11159 - sources."execa-4.1.0" 11160 - sources."get-stream-5.2.0" 11161 - sources."is-stream-2.0.0" 11162 - sources."npm-run-path-4.0.1" 11163 - sources."path-key-3.1.1" 11164 - sources."shebang-command-2.0.0" 11165 - sources."shebang-regex-3.0.0" 11166 - sources."which-2.0.2" 11167 - ]; 11168 - }) 11169 - (sources."jest-config-26.6.3" // { 11170 - dependencies = [ 11171 - sources."ansi-styles-4.3.0" 11172 - sources."braces-3.0.2" 11173 - sources."chalk-4.1.0" 11174 - sources."color-convert-2.0.1" 11175 - sources."color-name-1.1.4" 11176 - sources."fill-range-7.0.1" 11177 - sources."has-flag-4.0.0" 11178 - sources."is-number-7.0.0" 11179 - sources."micromatch-4.0.2" 11180 - sources."supports-color-7.2.0" 11181 - sources."to-regex-range-5.0.1" 11182 - ]; 11183 - }) 11184 - (sources."jest-diff-26.6.2" // { 11185 - dependencies = [ 11186 - sources."ansi-styles-4.3.0" 11187 - sources."chalk-4.1.0" 11188 - sources."color-convert-2.0.1" 11189 - sources."color-name-1.1.4" 11190 - sources."has-flag-4.0.0" 11191 - sources."supports-color-7.2.0" 11192 - ]; 11193 - }) 11194 - sources."jest-docblock-26.0.0" 11195 - (sources."jest-each-26.6.2" // { 11196 - dependencies = [ 11197 - sources."ansi-styles-4.3.0" 11198 - sources."chalk-4.1.0" 11199 - sources."color-convert-2.0.1" 11200 - sources."color-name-1.1.4" 11201 - sources."has-flag-4.0.0" 11202 - sources."supports-color-7.2.0" 11203 - ]; 11204 - }) 11205 - sources."jest-environment-jsdom-26.6.2" 11206 - sources."jest-environment-node-26.6.2" 11207 - sources."jest-get-type-26.3.0" 11208 - (sources."jest-haste-map-26.6.2" // { 11209 - dependencies = [ 11210 - sources."anymatch-3.1.1" 11211 - sources."braces-3.0.2" 11212 - sources."fill-range-7.0.1" 11213 - sources."is-number-7.0.0" 11214 - sources."micromatch-4.0.2" 11215 - sources."to-regex-range-5.0.1" 11216 - ]; 11217 - }) 11218 - (sources."jest-jasmine2-26.6.3" // { 11219 - dependencies = [ 11220 - sources."ansi-styles-4.3.0" 11221 - sources."chalk-4.1.0" 11222 - sources."color-convert-2.0.1" 11223 - sources."color-name-1.1.4" 11224 - sources."has-flag-4.0.0" 11225 - sources."supports-color-7.2.0" 11226 - ]; 11227 - }) 11228 - sources."jest-leak-detector-26.6.2" 11229 - (sources."jest-matcher-utils-26.6.2" // { 11230 - dependencies = [ 11231 - sources."ansi-styles-4.3.0" 11232 - sources."chalk-4.1.0" 11233 - sources."color-convert-2.0.1" 11234 - sources."color-name-1.1.4" 11235 - sources."has-flag-4.0.0" 11236 - sources."supports-color-7.2.0" 11237 - ]; 11238 - }) 11239 - (sources."jest-message-util-26.6.2" // { 11240 - dependencies = [ 11241 - sources."ansi-styles-4.3.0" 11242 - sources."braces-3.0.2" 11243 - sources."chalk-4.1.0" 11244 - sources."color-convert-2.0.1" 11245 - sources."color-name-1.1.4" 11246 - sources."fill-range-7.0.1" 11247 - sources."has-flag-4.0.0" 11248 - sources."is-number-7.0.0" 11249 - sources."micromatch-4.0.2" 11250 - sources."slash-3.0.0" 11251 - sources."supports-color-7.2.0" 11252 - sources."to-regex-range-5.0.1" 11253 - ]; 11254 - }) 11255 - sources."jest-mock-26.6.2" 11256 - sources."jest-pnp-resolver-1.2.2" 11257 - sources."jest-regex-util-26.0.0" 11258 - (sources."jest-resolve-26.6.2" // { 11259 - dependencies = [ 11260 - sources."ansi-styles-4.3.0" 11261 - sources."chalk-4.1.0" 11262 - sources."color-convert-2.0.1" 11263 - sources."color-name-1.1.4" 11264 - sources."has-flag-4.0.0" 11265 - sources."slash-3.0.0" 11266 - sources."supports-color-7.2.0" 11267 - ]; 11268 - }) 11269 - sources."jest-resolve-dependencies-26.6.3" 11270 - (sources."jest-runner-26.6.3" // { 11271 - dependencies = [ 11272 - sources."ansi-styles-4.3.0" 11273 - sources."chalk-4.1.0" 11274 - sources."color-convert-2.0.1" 11275 - sources."color-name-1.1.4" 11276 - sources."has-flag-4.0.0" 11277 - sources."supports-color-7.2.0" 11278 - ]; 11279 - }) 11280 - (sources."jest-runtime-26.6.3" // { 11281 - dependencies = [ 11282 - sources."ansi-styles-4.3.0" 11283 - sources."chalk-4.1.0" 11284 - sources."color-convert-2.0.1" 11285 - sources."color-name-1.1.4" 11286 - sources."has-flag-4.0.0" 11287 - sources."slash-3.0.0" 11288 - sources."supports-color-7.2.0" 11289 - ]; 11290 - }) 11291 - sources."jest-serializer-26.6.2" 11292 - (sources."jest-snapshot-26.6.2" // { 11293 - dependencies = [ 11294 - sources."ansi-styles-4.3.0" 11295 - sources."chalk-4.1.0" 11296 - sources."color-convert-2.0.1" 11297 - sources."color-name-1.1.4" 11298 - sources."has-flag-4.0.0" 11299 - sources."semver-7.3.4" 11300 - sources."supports-color-7.2.0" 11301 - ]; 11302 - }) 11303 - (sources."jest-util-26.6.2" // { 11304 - dependencies = [ 11305 - sources."ansi-styles-4.3.0" 11306 - sources."braces-3.0.2" 11307 - sources."chalk-4.1.0" 11308 - sources."color-convert-2.0.1" 11309 - sources."color-name-1.1.4" 11310 - sources."fill-range-7.0.1" 11311 - sources."has-flag-4.0.0" 11312 - sources."is-number-7.0.0" 11313 - sources."micromatch-4.0.2" 11314 - sources."supports-color-7.2.0" 11315 - sources."to-regex-range-5.0.1" 11316 - ]; 11317 - }) 11318 - (sources."jest-validate-26.6.2" // { 11319 - dependencies = [ 11320 - sources."ansi-styles-4.3.0" 11321 - sources."camelcase-6.2.0" 11322 - sources."chalk-4.1.0" 11323 - sources."color-convert-2.0.1" 11324 - sources."color-name-1.1.4" 11325 - sources."has-flag-4.0.0" 11326 - sources."supports-color-7.2.0" 11327 - ]; 11328 - }) 11329 - (sources."jest-watcher-26.6.2" // { 11330 - dependencies = [ 11331 - sources."ansi-styles-4.3.0" 11332 - sources."chalk-4.1.0" 11333 - sources."color-convert-2.0.1" 11334 - sources."color-name-1.1.4" 11335 - sources."has-flag-4.0.0" 11336 - sources."supports-color-7.2.0" 11337 - ]; 11338 - }) 11339 - (sources."jest-worker-26.6.2" // { 11340 - dependencies = [ 11341 - sources."has-flag-4.0.0" 11342 - sources."supports-color-7.2.0" 11343 - ]; 11344 - }) 11345 - sources."js-tokens-4.0.0" 11346 - sources."js-yaml-3.14.1" 11347 - sources."jsbn-0.1.1" 11348 - sources."jsdom-16.4.0" 11349 - sources."jsesc-2.5.2" 11350 - sources."json-parse-even-better-errors-2.3.1" 11351 - sources."json-schema-0.2.3" 11352 - sources."json-schema-traverse-0.4.1" 11353 - sources."json-stable-stringify-without-jsonify-1.0.1" 11354 - sources."json-stringify-safe-5.0.1" 11355 - sources."json5-2.2.0" 11356 - sources."jsonfile-6.1.0" 11357 - sources."jsprim-1.4.1" 11358 - sources."kind-of-6.0.3" 11359 - sources."kleur-3.0.3" 11360 - sources."leven-3.1.0" 11361 - sources."levn-0.4.1" 11362 - sources."lines-and-columns-1.1.6" 11363 - sources."locate-path-5.0.0" 11364 - sources."lodash-4.17.21" 11365 - sources."lodash.debounce-4.0.8" 11366 - sources."lodash.sortby-4.7.0" 11367 - sources."lru-cache-6.0.0" 11368 - sources."lunr-2.3.9" 11369 - sources."make-dir-2.1.0" 11370 - sources."makeerror-1.0.11" 11371 - sources."map-cache-0.2.2" 11372 - sources."map-visit-1.0.0" 11373 - sources."marked-2.0.1" 11374 - sources."merge-stream-2.0.0" 11375 - sources."merge2-1.4.1" 11376 - sources."micromatch-3.1.10" 11377 - sources."mime-db-1.46.0" 11378 - sources."mime-types-2.1.29" 11379 - sources."mimic-fn-2.1.0" 11380 - sources."mimic-response-2.1.0" 11381 - sources."minimatch-3.0.4" 11382 - sources."minimist-1.2.5" 11383 - sources."mixin-deep-2.0.1" 11384 - sources."mkdirp-classic-0.5.3" 11385 - sources."ms-2.1.2" 11386 - sources."nan-2.14.2" 11387 - sources."nanomatch-1.2.13" 11388 - sources."napi-build-utils-1.0.2" 11389 - sources."natural-compare-1.4.0" 11390 - sources."neo-async-2.6.2" 11391 - sources."nice-try-1.0.5" 11392 - sources."node-abi-2.20.0" 11393 - sources."node-int64-0.4.0" 11394 - sources."node-modules-regexp-1.0.0" 11395 - (sources."node-notifier-8.0.1" // { 11396 - dependencies = [ 11397 - sources."semver-7.3.4" 11398 - sources."which-2.0.2" 11399 - ]; 11400 - }) 11401 - sources."node-releases-1.1.71" 11402 - sources."noop-logger-0.1.1" 11403 - sources."normalize-package-data-2.5.0" 11404 - sources."normalize-path-3.0.0" 11405 - sources."npm-run-path-2.0.2" 11406 - sources."npmlog-4.1.2" 11407 - sources."number-is-nan-1.0.1" 11408 - sources."nwsapi-2.2.0" 11409 - sources."oauth-sign-0.9.0" 11410 - sources."object-assign-4.1.1" 11411 - (sources."object-copy-0.1.0" // { 11412 - dependencies = [ 11413 - sources."define-property-0.2.5" 11414 - sources."kind-of-3.2.2" 11415 - ]; 11416 - }) 11417 - sources."object-keys-1.1.1" 11418 - sources."object-visit-1.0.1" 11419 - sources."object.assign-4.1.2" 11420 - sources."object.pick-1.3.0" 11421 - sources."once-1.4.0" 11422 - sources."onetime-5.1.2" 11423 - (sources."onigasm-2.2.5" // { 11424 - dependencies = [ 11425 - sources."lru-cache-5.1.1" 11426 - sources."yallist-3.1.1" 11427 - ]; 11428 - }) 11429 - sources."optionator-0.9.1" 11430 - sources."p-each-series-2.2.0" 11431 - sources."p-finally-1.0.0" 11432 - sources."p-limit-2.3.0" 11433 - sources."p-locate-4.1.0" 11434 - sources."p-try-2.2.0" 11435 - sources."parent-module-1.0.1" 11436 - sources."parse-json-5.2.0" 11437 - sources."parse5-5.1.1" 11438 - sources."pascalcase-0.1.1" 11439 - sources."path-dirname-1.0.2" 11440 - sources."path-exists-4.0.0" 11441 - sources."path-is-absolute-1.0.1" 11442 - sources."path-key-2.0.1" 11443 - sources."path-parse-1.0.6" 11444 - sources."path-type-4.0.0" 11445 - sources."performance-now-2.1.0" 11446 - sources."picomatch-2.2.2" 11447 - sources."pify-4.0.1" 11448 - sources."pirates-4.0.1" 11449 - sources."pkg-dir-4.2.0" 11450 - sources."posix-character-classes-0.1.1" 11451 - sources."prebuild-install-6.0.1" 11452 - sources."prelude-ls-1.2.1" 11453 - (sources."pretty-format-26.6.2" // { 11454 - dependencies = [ 11455 - sources."ansi-regex-5.0.0" 11456 - sources."ansi-styles-4.3.0" 11457 - sources."color-convert-2.0.1" 11458 - sources."color-name-1.1.4" 11459 - ]; 11460 - }) 11461 - sources."process-nextick-args-2.0.1" 11462 - sources."progress-2.0.3" 11463 - sources."prompts-2.4.0" 11464 - sources."psl-1.8.0" 11465 - sources."pump-3.0.0" 11466 - sources."punycode-2.1.1" 11467 - sources."qs-6.5.2" 11468 - sources."queue-microtask-1.2.2" 11469 - sources."rc-1.2.8" 11470 - sources."react-is-17.0.1" 11471 - (sources."read-pkg-5.2.0" // { 11472 - dependencies = [ 11473 - sources."type-fest-0.6.0" 11474 - ]; 11475 - }) 11476 - sources."read-pkg-up-7.0.1" 11477 - sources."readable-stream-2.3.7" 11478 - sources."readdirp-2.2.1" 11479 - sources."rechoir-0.6.2" 11480 - sources."regenerate-1.4.2" 11481 - sources."regenerate-unicode-properties-8.2.0" 11482 - sources."regenerator-runtime-0.13.7" 11483 - sources."regenerator-transform-0.14.5" 11484 - sources."regex-not-1.0.2" 11485 - sources."regexpp-3.1.0" 11486 - sources."regexpu-core-4.7.1" 11487 - sources."regjsgen-0.5.2" 11488 - (sources."regjsparser-0.6.7" // { 11489 - dependencies = [ 11490 - sources."jsesc-0.5.0" 11491 - ]; 11492 - }) 11493 - sources."remove-trailing-separator-1.1.0" 11494 - sources."repeat-element-1.1.3" 11495 - sources."repeat-string-1.6.1" 11496 - (sources."request-2.88.2" // { 11497 - dependencies = [ 11498 - sources."tough-cookie-2.5.0" 11499 - sources."uuid-3.4.0" 11500 - ]; 11501 - }) 11502 - sources."request-promise-core-1.1.4" 11503 - (sources."request-promise-native-1.0.9" // { 11504 - dependencies = [ 11505 - sources."tough-cookie-2.5.0" 11506 - ]; 11507 - }) 11508 - sources."require-directory-2.1.1" 11509 - sources."require-from-string-2.0.2" 11510 - sources."require-main-filename-2.0.0" 11511 - sources."resolve-1.20.0" 11512 - sources."resolve-cwd-3.0.0" 11513 - sources."resolve-from-5.0.0" 11514 - sources."resolve-url-0.2.1" 11515 - sources."ret-0.1.15" 11516 - sources."reusify-1.0.4" 11517 - sources."rimraf-3.0.2" 11518 - sources."rsvp-4.8.5" 11519 - sources."run-parallel-1.2.0" 11520 - sources."safe-buffer-5.1.2" 11521 - sources."safe-regex-1.1.0" 11522 - sources."safer-buffer-2.1.2" 11523 - sources."sane-4.1.0" 11524 - sources."saxes-5.0.1" 11525 - sources."semver-5.7.1" 11526 - sources."serialport-9.0.6" 11527 - sources."set-blocking-2.0.0" 11528 - (sources."set-value-2.0.1" // { 11529 - dependencies = [ 11530 - sources."extend-shallow-2.0.1" 11531 - ]; 11532 - }) 11533 - sources."shebang-command-1.2.0" 11534 - sources."shebang-regex-1.0.0" 11535 - sources."shelljs-0.8.4" 11536 - sources."shellwords-0.1.1" 11537 - sources."shiki-0.9.2" 11538 - sources."signal-exit-3.0.3" 11539 - sources."simple-concat-1.0.1" 11540 - sources."simple-get-3.1.0" 11541 - sources."sisteransi-1.0.5" 11542 - sources."slash-2.0.0" 11543 - (sources."slice-ansi-4.0.0" // { 11544 - dependencies = [ 11545 - sources."ansi-styles-4.3.0" 11546 - sources."color-convert-2.0.1" 11547 - sources."color-name-1.1.4" 11548 - sources."is-fullwidth-code-point-3.0.0" 11549 - ]; 11550 - }) 11551 - sources."slip-1.0.2" 11552 - (sources."snapdragon-0.8.2" // { 11553 - dependencies = [ 11554 - sources."debug-2.6.9" 11555 - sources."define-property-0.2.5" 11556 - sources."extend-shallow-2.0.1" 11557 - sources."ms-2.0.0" 11558 - ]; 11559 - }) 11560 - (sources."snapdragon-node-2.1.1" // { 11561 - dependencies = [ 11562 - sources."define-property-1.0.0" 11563 - sources."is-accessor-descriptor-1.0.0" 11564 - sources."is-data-descriptor-1.0.0" 11565 - sources."is-descriptor-1.0.2" 11566 - ]; 11567 - }) 11568 - (sources."snapdragon-util-3.0.1" // { 11569 - dependencies = [ 11570 - sources."kind-of-3.2.2" 11571 - ]; 11572 - }) 11573 - sources."source-map-0.5.7" 11574 - sources."source-map-resolve-0.5.3" 11575 - (sources."source-map-support-0.5.19" // { 11576 - dependencies = [ 11577 - sources."source-map-0.6.1" 11578 - ]; 11579 - }) 11580 - sources."source-map-url-0.4.1" 11581 - sources."spdx-correct-3.1.1" 11582 - sources."spdx-exceptions-2.3.0" 11583 - sources."spdx-expression-parse-3.0.1" 11584 - sources."spdx-license-ids-3.0.7" 11585 - sources."split-string-3.1.0" 11586 - sources."sprintf-js-1.0.3" 11587 - sources."sshpk-1.16.1" 11588 - (sources."stack-utils-2.0.3" // { 11589 - dependencies = [ 11590 - sources."escape-string-regexp-2.0.0" 11591 - ]; 11592 - }) 11593 - (sources."static-extend-0.1.2" // { 11594 - dependencies = [ 11595 - sources."define-property-0.2.5" 11596 - ]; 11597 - }) 11598 - sources."stealthy-require-1.1.1" 11599 - (sources."string-length-4.0.1" // { 11600 - dependencies = [ 11601 - sources."ansi-regex-5.0.0" 11602 - sources."strip-ansi-6.0.0" 11603 - ]; 11604 - }) 11605 - sources."string-width-1.0.2" 11606 - sources."string_decoder-1.1.1" 11607 - sources."strip-ansi-3.0.1" 11608 - sources."strip-bom-4.0.0" 11609 - sources."strip-eof-1.0.0" 11610 - sources."strip-final-newline-2.0.0" 11611 - sources."strip-json-comments-2.0.1" 11612 - sources."supports-color-5.5.0" 11613 - (sources."supports-hyperlinks-2.1.0" // { 11614 - dependencies = [ 11615 - sources."has-flag-4.0.0" 11616 - sources."supports-color-7.2.0" 11617 - ]; 11618 - }) 11619 - sources."symbol-tree-3.2.4" 11620 - (sources."table-6.0.7" // { 11621 - dependencies = [ 11622 - sources."ajv-7.1.1" 11623 - sources."ansi-regex-5.0.0" 11624 - sources."is-fullwidth-code-point-3.0.0" 11625 - sources."json-schema-traverse-1.0.0" 11626 - sources."string-width-4.2.2" 11627 - sources."strip-ansi-6.0.0" 11628 - ]; 11629 - }) 11630 - sources."tar-fs-2.1.1" 11631 - (sources."tar-stream-2.2.0" // { 11632 - dependencies = [ 11633 - sources."readable-stream-3.6.0" 11634 - ]; 11635 - }) 11636 - sources."terminal-link-2.1.1" 11637 - sources."test-exclude-6.0.0" 11638 - sources."text-table-0.2.0" 11639 - sources."throat-5.0.0" 11640 - sources."tmpl-1.0.4" 11641 - sources."to-fast-properties-2.0.0" 11642 - (sources."to-object-path-0.3.0" // { 11643 - dependencies = [ 11644 - sources."kind-of-3.2.2" 11645 - ]; 11646 - }) 11647 - sources."to-regex-3.0.2" 11648 - sources."to-regex-range-2.1.1" 11649 - sources."tough-cookie-3.0.1" 11650 - sources."tr46-2.0.2" 11651 - sources."tslib-1.14.1" 11652 - sources."tsutils-3.20.0" 11653 - sources."tunnel-agent-0.6.0" 11654 - sources."tweetnacl-0.14.5" 11655 - sources."type-check-0.4.0" 11656 - sources."type-detect-4.0.8" 11657 - sources."type-fest-0.8.1" 11658 - sources."typedarray-to-buffer-3.1.5" 11659 - sources."typedoc-0.20.28" 11660 - sources."typedoc-default-themes-0.12.7" 11661 - sources."typedoc-plugin-markdown-3.6.0" 11662 - sources."typedoc-plugin-no-inherit-1.2.0" 11663 - sources."typedoc-plugin-sourcefile-url-1.0.6" 11664 - sources."typescript-4.2.2" 11665 - sources."uglify-js-3.13.0" 11666 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 11667 - sources."unicode-match-property-ecmascript-1.0.4" 11668 - sources."unicode-match-property-value-ecmascript-1.2.0" 11669 - sources."unicode-property-aliases-ecmascript-1.1.0" 11670 - sources."union-value-1.0.1" 11671 - sources."universalify-2.0.0" 11672 - (sources."unset-value-1.0.0" // { 11673 - dependencies = [ 11674 - (sources."has-value-0.3.1" // { 11675 - dependencies = [ 11676 - sources."isobject-2.1.0" 11677 - ]; 11678 - }) 11679 - sources."has-values-0.1.4" 11680 - ]; 11681 - }) 11682 - sources."upath-1.2.0" 11683 - sources."uri-js-4.4.1" 11684 - sources."urix-0.1.0" 11685 - sources."use-3.1.1" 11686 - sources."util-deprecate-1.0.2" 11687 - sources."uuid-8.3.2" 11688 - sources."v8-compile-cache-2.2.0" 11689 - (sources."v8-to-istanbul-7.1.0" // { 11690 - dependencies = [ 11691 - sources."source-map-0.7.3" 11692 - ]; 11693 - }) 11694 - sources."validate-npm-package-license-3.0.4" 11695 - sources."verror-1.10.0" 11696 - sources."vscode-textmate-5.2.0" 11697 - sources."w3c-hr-time-1.0.2" 11698 - sources."w3c-xmlserializer-2.0.0" 11699 - sources."walker-1.0.7" 11700 - sources."webidl-conversions-6.1.0" 11701 - sources."whatwg-encoding-1.0.5" 11702 - sources."whatwg-mimetype-2.3.0" 11703 - sources."whatwg-url-8.4.0" 11704 - sources."which-1.3.1" 11705 - sources."which-module-2.0.0" 11706 - sources."which-pm-runs-1.0.0" 11707 - sources."wide-align-1.1.3" 11708 - sources."word-wrap-1.2.3" 11709 - sources."wordwrap-1.0.0" 11710 - (sources."wrap-ansi-6.2.0" // { 11711 - dependencies = [ 11712 - sources."ansi-regex-5.0.0" 11713 - sources."ansi-styles-4.3.0" 11714 - sources."color-convert-2.0.1" 11715 - sources."color-name-1.1.4" 11716 - sources."is-fullwidth-code-point-3.0.0" 11717 - sources."string-width-4.2.2" 11718 - sources."strip-ansi-6.0.0" 11719 - ]; 11720 - }) 11721 - sources."wrappy-1.0.2" 11722 - sources."write-file-atomic-3.0.3" 11723 - sources."ws-7.4.3" 11724 - sources."xml-name-validator-3.0.0" 11725 - sources."xmlchars-2.2.0" 11726 - sources."y18n-4.0.1" 11727 - sources."yallist-4.0.0" 11728 - (sources."yargs-15.4.1" // { 11729 - dependencies = [ 11730 - sources."ansi-regex-5.0.0" 11731 - sources."is-fullwidth-code-point-3.0.0" 11732 - sources."string-width-4.2.2" 11733 - sources."strip-ansi-6.0.0" 11734 - ]; 11735 - }) 11736 - sources."yargs-parser-18.1.3" 10067 + sources."is-fullwidth-code-point-3.0.0" 10068 + sources."string-width-4.2.0" 11737 10069 ]; 11738 10070 }) 10071 + sources."yargs-parser-18.1.3" 11739 10072 ]; 11740 10073 }) 11741 - sources."zigbee2mqtt-frontend-0.3.114" 10074 + sources."zigbee2mqtt-frontend-0.2.100" 11742 10075 ]; 11743 10076 buildInputs = globalBuildInputs; 11744 10077 meta = { 11745 10078 description = "Zigbee to MQTT bridge using Zigbee-herdsman"; 11746 - homepage = "https://koenkk.github.io/zigbee2mqtt"; 10079 + homepage = https://koenkk.github.io/zigbee2mqtt; 11747 10080 license = "GPL-3.0"; 11748 10081 }; 11749 10082 production = true; ··· 11757 10090 tarball = nodeEnv.buildNodeSourceDist args; 11758 10091 package = nodeEnv.buildNodePackage args; 11759 10092 shell = nodeEnv.buildNodeShell args; 11760 - nodeDependencies = nodeEnv.buildNodeDependencies (lib.overrideExisting args { 11761 - src = stdenv.mkDerivation { 11762 - name = args.name + "-package-json"; 11763 - src = nix-gitignore.gitignoreSourcePure [ 11764 - "*" 11765 - "!package.json" 11766 - "!package-lock.json" 11767 - ] args.src; 11768 - dontBuild = true; 11769 - installPhase = "mkdir -p $out; cp -r ./* $out;"; 11770 - }; 11771 - }); 11772 10093 }
+5 -5
pkgs/servers/zigbee2mqtt/node.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.8.0. Do not edit! 2 2 3 3 {pkgs ? import <nixpkgs> { 4 4 inherit system; 5 5 }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}: 6 6 7 7 let 8 - nodeEnv = import ../../development/node-packages/node-env.nix { 9 - inherit (pkgs) stdenv lib python2 runCommand writeTextFile; 10 - inherit pkgs nodejs; 8 + nodeEnv = import ./node-env.nix { 9 + inherit (pkgs) lib stdenv python2 util-linux runCommand writeTextFile; 10 + inherit nodejs; 11 11 libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null; 12 12 }; 13 13 in 14 14 import ./node-packages.nix { 15 - inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit; 15 + inherit (pkgs) fetchurl fetchgit; 16 16 inherit nodeEnv; 17 17 }
+4 -2
pkgs/shells/ksh/default.nix
··· 1 - { lib, stdenv, meson, ninja, fetchFromGitHub, which, python, fetchpatch 1 + { lib, stdenv, meson, ninja, fetchFromGitHub, which, python3, fetchpatch 2 2 , libiconv }: 3 3 4 4 stdenv.mkDerivation rec { ··· 19 19 }) 20 20 ]; 21 21 22 - nativeBuildInputs = [ meson ninja which python ]; 22 + nativeBuildInputs = [ meson ninja which python3 ]; 23 23 24 24 buildInputs = [ libiconv ]; 25 + 26 + strictDeps = true; 25 27 26 28 meta = with lib; { 27 29 description = "KornShell Command And Programming Language";
+7 -2
pkgs/tools/archivers/innoextract/default.nix
··· 1 - { lib, stdenv, fetchurl, cmake, makeWrapper, python 1 + { lib, stdenv, fetchurl, cmake, makeWrapper 2 2 , boost, lzma 3 3 , withGog ? false, unar ? null }: 4 4 ··· 10 10 sha256 = "09l1z1nbl6ijqqwszdwch9mqr54qb7df0wp2sd77v17dq6gsci33"; 11 11 }; 12 12 13 - buildInputs = [ python lzma boost ]; 13 + buildInputs = [ lzma boost ]; 14 + 15 + # Python is reported as missing during the build, however 16 + # including Python does not change the output. 14 17 15 18 nativeBuildInputs = [ cmake makeWrapper ]; 19 + 20 + strictDeps = true; 16 21 17 22 # we need unar to for multi-archive extraction 18 23 postFixup = lib.optionalString withGog ''
+1 -1
pkgs/tools/inputmethods/ibus-engines/ibus-mozc/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, which, ninja, python, pkg-config, protobuf 1 + { lib, stdenv, fetchFromGitHub, which, ninja, pkg-config, protobuf 2 2 , ibus, gtk2, zinnia, qt5, libxcb, tegaki-zinnia-japanese, python3Packages }: 3 3 4 4 let
+2 -2
pkgs/tools/misc/chezmoi/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "chezmoi"; 5 - version = "2.0.5"; 5 + version = "2.0.7"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "twpayne"; 9 9 repo = "chezmoi"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-mq9kwkEeh+kVhiVy/h44oP3Rj819gGQDiMifSb7ryeY="; 11 + sha256 = "sha256-mJJtkJ57rYEe1BWK3TWAMOar/IUUC9ybiccx81puHsE="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-YU+t8GVsLYWONezUIB4NUrVxtYOmf/2b5v4v3VSYtBU=";
+33
pkgs/tools/misc/clickclack/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromSourcehut 4 + , SDL2 5 + }: 6 + 7 + stdenv.mkDerivation rec { 8 + pname = "clickclack"; 9 + version = "0.1.1"; 10 + 11 + src = fetchFromSourcehut { 12 + owner = "~proycon"; 13 + repo = "clickclack"; 14 + rev = version; 15 + sha256 = "1q8r0ng1bld5n82gh7my7ck90f4plf8vf019hm2wz475dl38izd5"; 16 + }; 17 + 18 + buildInputs = [ 19 + SDL2 20 + ]; 21 + 22 + makeFlags = [ 23 + "PREFIX=${placeholder "out"}" 24 + ]; 25 + 26 + meta = with lib; { 27 + description = "A vibration/audio feedback tool to be used with virtual keyboards"; 28 + homepage = "https://git.sr.ht/~proycon/clickclack"; 29 + license = licenses.mit; 30 + platforms = platforms.linux; 31 + maintainers = with maintainers; [ dotlambda ]; 32 + }; 33 + }
+3 -3
pkgs/tools/misc/i3minator/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages, glibcLocales }: 1 + { lib, fetchFromGitHub, python3Packages, glibcLocales }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "i3minator"; 5 5 version = "0.0.4"; 6 6 ··· 13 13 14 14 LC_ALL = "en_US.UTF-8"; 15 15 buildInputs = [ glibcLocales ]; 16 - propagatedBuildInputs = [ pythonPackages.pyyaml pythonPackages.i3-py ]; 16 + propagatedBuildInputs = [ python3Packages.pyyaml python3Packages.i3-py ]; 17 17 18 18 # No tests 19 19 doCheck = false;
+2 -2
pkgs/tools/networking/httpstat/default.nix
··· 1 - { lib, fetchFromGitHub, curl, pythonPackages, glibcLocales }: 1 + { lib, fetchFromGitHub, curl, python3Packages, glibcLocales }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "httpstat"; 5 5 version = "1.3.1"; 6 6 src = fetchFromGitHub {
+13 -5
pkgs/tools/networking/libreswan/default.nix
··· 1 1 { lib, stdenv, fetchurl, makeWrapper, 2 2 pkg-config, systemd, gmp, unbound, bison, flex, pam, libevent, libcap_ng, curl, nspr, 3 - bash, iproute, iptables, procps, coreutils, gnused, gawk, nss, which, python, 3 + bash, iproute, iptables, procps, coreutils, gnused, gawk, nss, which, python3, 4 4 docs ? false, xmlto, libselinux, ldns 5 5 }: 6 6 7 7 let 8 8 binPath = lib.makeBinPath [ 9 - bash iproute iptables procps coreutils gnused gawk nss.tools which python 9 + bash iproute iptables procps coreutils gnused gawk nss.tools which python3 10 10 ]; 11 11 in 12 12 ··· 22 22 sha256 = "0bj3g6qwd3ir3gk6hdl9npy3k44shf56vcgjahn30qpmx3z5fsr3"; 23 23 }; 24 24 25 + strictDeps = true; 26 + 25 27 # These flags were added to compile v3.18. Try to lift them when updating. 26 28 NIX_CFLAGS_COMPILE = toString [ "-Wno-error=redundant-decls" "-Wno-error=format-nonliteral" 27 29 # these flags were added to build with gcc7 ··· 35 37 "-DNSS_PKCS11_2_0_COMPAT=1" 36 38 ]; 37 39 38 - nativeBuildInputs = [ makeWrapper pkg-config ]; 39 - buildInputs = [ bash iproute iptables systemd coreutils gnused gawk gmp unbound bison flex pam libevent 40 - libcap_ng curl nspr nss python ldns ] 40 + nativeBuildInputs = [ 41 + bison 42 + flex 43 + makeWrapper 44 + pkg-config 45 + ]; 46 + 47 + buildInputs = [ bash iproute iptables systemd coreutils gnused gawk gmp unbound pam libevent 48 + libcap_ng curl nspr nss python3 ldns ] 41 49 ++ lib.optional docs xmlto 42 50 ++ lib.optional stdenv.isLinux libselinux; 43 51
+2 -2
pkgs/tools/security/doppler/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "doppler"; 5 - version = "3.23.1"; 5 + version = "3.23.2"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "dopplerhq"; 9 9 repo = "cli"; 10 10 rev = version; 11 - sha256 = "sha256-6sTsASfHIFH1V3Q20R2y8AiOVZ4NR4GGRCKRVr25kkc="; 11 + sha256 = "sha256-qdBq1vjvvb55gyL4XuPDrPK58YLSSH5kLp1oP84vJsU="; 12 12 }; 13 13 14 14 vendorSha256 = "sha256-UaR/xYGMI+C9aID85aPSfVzmTWXj4KcjfOJ6TTJ8KoY=";
+2 -2
pkgs/tools/security/expliot/default.nix
··· 22 22 23 23 buildPythonApplication rec { 24 24 pname = "expliot"; 25 - version = "0.9.6"; 25 + version = "0.9.7"; 26 26 disabled = pythonOlder "3.7"; 27 27 28 28 src = fetchFromGitLab { 29 29 owner = "expliot_framework"; 30 30 repo = pname; 31 31 rev = version; 32 - sha256 = "1wn8fyrvis0gw80zzmpivinw6mz5n33inhv39iallsl3is8xpgpa"; 32 + sha256 = "sha256-k43PvH9BXcvxe7O5iCGzLuxv/WkB9YelH/d/1S7BpU0="; 33 33 }; 34 34 35 35 propagatedBuildInputs = [
+2 -2
pkgs/tools/security/gen-oath-safe/default.nix
··· 1 - { coreutils, fetchFromGitHub, file, libcaca, makeWrapper, python, openssl, qrencode, lib, stdenv, yubikey-manager }: 1 + { coreutils, fetchFromGitHub, file, libcaca, makeWrapper, python3, openssl, qrencode, lib, stdenv, yubikey-manager }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "gen-oath-safe"; ··· 21 21 file 22 22 libcaca.bin 23 23 openssl.bin 24 - python 24 + python3 25 25 qrencode 26 26 yubikey-manager 27 27 ];
+3 -3
pkgs/tools/security/hash-slinger/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, pythonPackages, unbound, libreswan }: 1 + { lib, stdenv, fetchFromGitHub, python2Packages, unbound, libreswan }: 2 2 3 3 let 4 - inherit (pythonPackages) python; 4 + pythonPackages = python2Packages; 5 5 in stdenv.mkDerivation rec { 6 6 pname = "hash-slinger"; 7 7 version = "2.7"; ··· 31 31 ''; 32 32 33 33 installPhase = '' 34 - mkdir -p $out/bin $out/man $out/${python.sitePackages}/ 34 + mkdir -p $out/bin $out/man $out/${pythonPackages.python.sitePackages}/ 35 35 make install 36 36 wrapPythonPrograms 37 37 '';
+4 -5
pkgs/tools/system/honcho/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 1 + { lib, fetchFromGitHub, python3Packages }: 2 2 3 3 let 4 - inherit (pythonPackages) python; 4 + inherit (python3Packages) python; 5 5 pname = "honcho"; 6 6 7 7 in 8 8 9 - pythonPackages.buildPythonApplication rec { 9 + python3Packages.buildPythonApplication rec { 10 10 name = "${pname}-${version}"; 11 11 version = "1.0.1"; 12 - namePrefix = ""; 13 12 14 13 src = fetchFromGitHub { 15 14 owner = "nickstenning"; ··· 18 17 sha256 = "11bd87474qpif20xdcn0ra1idj5k16ka51i658wfpxwc6nzsn92b"; 19 18 }; 20 19 21 - checkInputs = with pythonPackages; [ jinja2 pytest mock coverage ]; 20 + checkInputs = with python3Packages; [ jinja2 pytest mock coverage ]; 22 21 23 22 buildPhase = '' 24 23 ${python.interpreter} setup.py build
+16 -2
pkgs/tools/text/icdiff/default.nix
··· 1 - { lib, fetchFromGitHub, pythonPackages }: 1 + { lib, fetchFromGitHub, python3Packages, bash, git, less }: 2 2 3 - pythonPackages.buildPythonApplication rec { 3 + python3Packages.buildPythonApplication rec { 4 4 pname = "icdiff"; 5 5 version = "1.9.5"; 6 6 ··· 10 10 rev = "release-${version}"; 11 11 sha256 = "080v8h09pv8qwplin4kwfm0kmqjwdqjfxbpcdrv16sv4hwfwl5qd"; 12 12 }; 13 + 14 + checkInputs = [ 15 + bash 16 + git 17 + less 18 + ]; 19 + 20 + # error: could not lock config file /homeless-shelter/.gitconfig: No such file or directory 21 + doCheck = false; 22 + 23 + checkPhase = '' 24 + patchShebangs test.sh 25 + ./test.sh ${python3Packages.python.interpreter} 26 + ''; 13 27 14 28 meta = with lib; { 15 29 homepage = "https://www.jefftk.com/icdiff";
+1
pkgs/top-level/aliases.nix
··· 225 225 fwupdate = throw "fwupdate was merged into fwupd"; # added 2020-05-19 226 226 g4py = python3Packages.geant4; # added 2020-06-06 227 227 gccApple = throw "gccApple is no longer supported"; # added 2018-04-25 228 + gdal_1_11 = throw "gdal_1_11 was removed. Use gdal instead."; # added 2021-04-03 228 229 gdb-multitarget = gdb; # added 2017-11-13 229 230 gdk_pixbuf = gdk-pixbuf; # added 2019-05-22 230 231 gettextWithExpat = gettext; # 2016-02-19
+8 -9
pkgs/top-level/all-packages.nix
··· 2006 2006 2007 2007 cli-visualizer = callPackage ../applications/misc/cli-visualizer { }; 2008 2008 2009 + clickclack = callPackage ../tools/misc/clickclack { }; 2010 + 2009 2011 clog-cli = callPackage ../development/tools/clog-cli { }; 2010 2012 2011 2013 cloud-init = python3.pkgs.callPackage ../tools/virtualization/cloud-init { }; ··· 5944 5946 kapp = callPackage ../tools/networking/kapp {}; 5945 5947 5946 5948 kdbg = libsForQt5.callPackage ../development/tools/misc/kdbg { }; 5947 - 5948 - kippo = callPackage ../servers/kippo { }; 5949 5949 5950 5950 kristall = libsForQt5.callPackage ../applications/networking/browsers/kristall { }; 5951 5951 ··· 14270 14270 autoreconfHook = buildPackages.autoreconfHook269; 14271 14271 }; 14272 14272 14273 - gdal_1_11 = callPackage ../development/libraries/gdal/gdal-1_11.nix { }; 14274 - 14275 14273 gdal_2 = callPackage ../development/libraries/gdal/2.4.nix { }; 14276 14274 14277 14275 gdcm = callPackage ../development/libraries/gdcm { }; ··· 15366 15364 15367 15365 libgxps = callPackage ../development/libraries/libgxps { }; 15368 15366 15369 - libiio = callPackage ../development/libraries/libiio { }; 15367 + libiio = callPackage ../development/libraries/libiio { 15368 + python = python3; 15369 + }; 15370 15370 15371 15371 libinjection = callPackage ../development/libraries/libinjection { }; 15372 15372 ··· 18887 18887 prometheus-nginx-exporter = callPackage ../servers/monitoring/prometheus/nginx-exporter.nix { }; 18888 18888 prometheus-nginxlog-exporter = callPackage ../servers/monitoring/prometheus/nginxlog-exporter.nix { }; 18889 18889 prometheus-node-exporter = callPackage ../servers/monitoring/prometheus/node-exporter.nix { }; 18890 + prometheus-openldap-exporter = callPackage ../servers/monitoring/prometheus/openldap-exporter.nix { }; 18890 18891 prometheus-openvpn-exporter = callPackage ../servers/monitoring/prometheus/openvpn-exporter.nix { }; 18891 18892 prometheus-postfix-exporter = callPackage ../servers/monitoring/prometheus/postfix-exporter.nix { }; 18892 18893 prometheus-postgres-exporter = callPackage ../servers/monitoring/prometheus/postgres-exporter.nix { }; ··· 22786 22787 22787 22788 gthumb = callPackage ../applications/graphics/gthumb { }; 22788 22789 22789 - gtimelog = pythonPackages.gtimelog; 22790 + gtimelog = with python3Packages; toPythonApplication gtimelog; 22790 22791 22791 22792 inherit (gnome3) gucharmap; 22792 22793 ··· 27457 27458 27458 27459 icbm3d = callPackage ../games/icbm3d { }; 27459 27460 27460 - ingen = callPackage ../applications/audio/ingen { 27461 - inherit (pythonPackages) rdflib; 27462 - }; 27461 + ingen = callPackage ../applications/audio/ingen { }; 27463 27462 27464 27463 ideogram = callPackage ../applications/graphics/ideogram { }; 27465 27464
+1
pkgs/top-level/gnuradio-packages.nix
··· 31 31 ### Packages 32 32 33 33 inherit gnuradio; 34 + inherit (gnuradio) python; 34 35 35 36 osmosdr = callPackage ../development/gnuradio-modules/osmosdr/default.nix { }; 36 37