lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
31938a3f 7169abf5

+1243 -4488
+6
maintainers/maintainer-list.nix
··· 9026 9026 email = "nfjinjing@gmail.com"; 9027 9027 name = "Jinjing Wang"; 9028 9028 }; 9029 + ngiger = { 9030 + email = "niklaus.giger@member.fsf.org"; 9031 + github = "ngiger"; 9032 + githubId = 265800; 9033 + name = "Niklaus Giger"; 9034 + }; 9029 9035 nh2 = { 9030 9036 email = "mail@nh2.me"; 9031 9037 matrix = "@nh2:matrix.org";
+21
nixos/modules/hardware/keyboard/uhk.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + let 5 + cfg = config.hardware.keyboard.uhk; 6 + in 7 + { 8 + options.hardware.keyboard.uhk = { 9 + enable = mkEnableOption '' 10 + non-root access to the firmware of UHK keyboards. 11 + You need it when you want to flash a new firmware on the keyboard. 12 + Access to the keyboard is granted to users in the "input" group. 13 + You may want to install the uhk-agent package. 14 + ''; 15 + 16 + }; 17 + 18 + config = mkIf cfg.enable { 19 + services.udev.packages = [ pkgs.uhk-udev-rules ]; 20 + }; 21 + }
+4 -1
nixos/modules/installer/tools/tools.nix
··· 177 177 # users.users.jane = { 178 178 # isNormalUser = true; 179 179 # extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user. 180 + # packages = with pkgs; [ 181 + # firefox 182 + # thunderbird 183 + # ]; 180 184 # }; 181 185 182 186 # List packages installed in system profile. To search, run: ··· 184 188 # environment.systemPackages = with pkgs; [ 185 189 # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. 186 190 # wget 187 - # firefox 188 191 # ]; 189 192 190 193 # Some programs need SUID wrappers, can be configured further or are
+1
nixos/modules/module-list.nix
··· 57 57 ./hardware/sensor/hddtemp.nix 58 58 ./hardware/sensor/iio.nix 59 59 ./hardware/keyboard/teck.nix 60 + ./hardware/keyboard/uhk.nix 60 61 ./hardware/keyboard/zsa.nix 61 62 ./hardware/ksm.nix 62 63 ./hardware/ledger.nix
+5 -2
nixos/modules/services/hardware/usbrelayd.nix
··· 26 26 27 27 config = mkIf cfg.enable { 28 28 29 - # TODO: Rename to .conf in upcomming release 30 - environment.etc."usbrelayd.ini".text = '' 29 + environment.etc."usbrelayd.conf".text = '' 31 30 [MQTT] 32 31 BROKER = ${cfg.broker} 33 32 CLIENTNAME = ${cfg.clientName} ··· 40 39 group = "usbrelay"; 41 40 }; 42 41 users.groups.usbrelay = { }; 42 + }; 43 + 44 + meta = { 45 + maintainers = with lib.maintainers; [ wentasah ]; 43 46 }; 44 47 }
+2 -2
nixos/modules/services/networking/tinc.nix
··· 383 383 }; 384 384 preStart = '' 385 385 mkdir -p /etc/tinc/${network}/hosts 386 - chown tinc:${network} /etc/tinc/${network}/hosts 386 + chown tinc.${network} /etc/tinc/${network}/hosts 387 387 mkdir -p /etc/tinc/${network}/invitations 388 - chown tinc:${network} /etc/tinc/${network}/invitations 388 + chown tinc.${network} /etc/tinc/${network}/invitations 389 389 390 390 # Determine how we should generate our keys 391 391 if type tinc >/dev/null 2>&1; then
+17 -4
pkgs/applications/audio/monkeys-audio/default.nix
··· 1 - {lib, stdenv, fetchurl}: 1 + {lib, gcc10Stdenv, fetchurl}: 2 2 3 - stdenv.mkDerivation rec { 3 + gcc10Stdenv.mkDerivation rec { 4 4 version = "3.99-u4-b5"; 5 - pname = "monkeys-audio"; 5 + pname = "monkeys-audio-old"; 6 6 7 7 patches = [ ./buildfix.diff ]; 8 8 9 9 src = fetchurl { 10 + /* 11 + The real homepage is <https://monkeysaudio.com/>, but in fact we are 12 + getting an old, ported to Linux version of the sources, made by (quoting 13 + from the AUTHORS file found in the source): 14 + 15 + Frank Klemm : First port to linux (with makefile) 16 + 17 + SuperMMX <SuperMMX AT GMail DOT com> : Package the source, include the frontend and shared lib, 18 + porting to Big Endian platform and adding other non-win32 enhancement. 19 + */ 10 20 url = "https://deb-multimedia.org/pool/main/m/${pname}/${pname}_${version}.orig.tar.gz"; 11 21 sha256 = "0kjfwzfxfx7f958b2b1kf8yj655lp0ppmn0sh57gbkjvj8lml7nz"; 12 22 }; ··· 14 24 meta = with lib; { 15 25 description = "Lossless audio codec"; 16 26 platforms = platforms.linux; 17 - license = licenses.lgpl2; 27 + # This is not considered a GPL license, but it seems rather free although 28 + # it's not standard, see a quote of it: 29 + # https://github.com/NixOS/nixpkgs/pull/171682#issuecomment-1120260551 30 + license = licenses.free; 18 31 maintainers = [ ]; 19 32 }; 20 33 }
+6 -1
pkgs/applications/editors/deadpixi-sam/default.nix
··· 14 14 postPatch = '' 15 15 substituteInPlace config.mk.def \ 16 16 --replace "/usr/include/freetype2" "${freetype.dev}/include/freetype2" \ 17 - --replace "CC=gcc" "CC=${stdenv.cc.targetPrefix}cc" 17 + --replace "CC=gcc" "CC=${stdenv.cc.targetPrefix}cc" \ 18 + --replace "RXPATH=/usr/bin/ssh" "RXPATH=ssh" 18 19 ''; 19 20 20 21 CFLAGS = "-D_DARWIN_C_SOURCE"; ··· 24 25 enableParallelBuilding = false; 25 26 26 27 postInstall = '' 28 + substituteInPlace deadpixi-sam.desktop \ 29 + --replace "accessories-text-editor" "$out/share/icons/hicolor/scalable/apps/sam.svg" 27 30 mkdir -p $out/share/applications 31 + mkdir -p $out/share/icons/hicolor/scalable/apps 28 32 mv deadpixi-sam.desktop $out/share/applications 33 + mv sam.svg $out/share/icons/hicolor/scalable/apps 29 34 ''; 30 35 31 36 meta = with lib; {
+2 -2
pkgs/applications/graphics/ImageMagick/7.0.nix
··· 45 45 46 46 stdenv.mkDerivation rec { 47 47 pname = "imagemagick"; 48 - version = "7.1.0-32"; 48 + version = "7.1.0-33"; 49 49 50 50 src = fetchFromGitHub { 51 51 owner = "ImageMagick"; 52 52 repo = "ImageMagick"; 53 53 rev = version; 54 - hash = "sha256-blDdNZJCyBdPEgdZXwgNUGSdSIwnqRaVLsLdFeA4JzQ="; 54 + hash = "sha256-qiXTSQcc48IIzz7RUcyOH2w8JUOTdU1zg43gJhoELXo="; 55 55 }; 56 56 57 57 outputs = [ "out" "dev" "doc" ]; # bin/ isn't really big
+2 -2
pkgs/applications/graphics/hydrus/default.nix
··· 10 10 11 11 python3Packages.buildPythonPackage rec { 12 12 pname = "hydrus"; 13 - version = "482"; 13 + version = "483"; 14 14 format = "other"; 15 15 16 16 src = fetchFromGitHub { 17 17 owner = "hydrusnetwork"; 18 18 repo = "hydrus"; 19 19 rev = "refs/tags/v${version}"; 20 - sha256 = "sha256-b7zMHwsyZv4dCn4Gd/2a+MHhT3IHISJup/zm95pEcQ4="; 20 + sha256 = "sha256-UU3XQ0NC/apJ0S/uDDNG+8DOD+sRyX98yMcjtL2Htig="; 21 21 }; 22 22 23 23 nativeBuildInputs = [
+15 -14
pkgs/applications/graphics/jpegrescan/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, makeWrapper, libjpeg_turbo, perl, perlPackages }: 1 + { lib, stdenv, fetchFromGitHub, makeWrapper, perl, perlPackages, libjpeg_original }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 pname = "jpegrescan"; 5 - date = "2016-06-01"; 6 - name = "${pname}-${date}"; 5 + version = "unstable-2019-03-27"; 6 + 7 + dontBuild = true; 8 + dontConfigure = true; 7 9 8 10 src = fetchFromGitHub { 9 11 owner = "kud"; 10 12 repo = pname; 11 - rev = "e5e39cd972b48ccfb2cba4da6855c511385c05f9"; 12 - sha256 = "0jbx1vzkzif6yjx1fnsm7fjsmq166sh7mn22lf01ll7s245nmpdp"; 13 + rev = "3a7de06feabeb3c3235c3decbe2557893c1abe51"; 14 + sha256 = "0cnl46z28lkqc5x27b8rpghvagahivrqcfvhzcsv9w1qs8qbd6dm"; 13 15 }; 14 16 15 17 patchPhase = '' ··· 23 25 mv jpegrescan $out/bin 24 26 chmod +x $out/bin/jpegrescan 25 27 26 - wrapProgram $out/bin/jpegrescan --prefix PERL5LIB : $PERL5LIB 28 + wrapProgram $out/bin/jpegrescan \ 29 + --prefix PATH : "${libjpeg_original}/bin:" \ 30 + --prefix PERL5LIB : $PERL5LIB 27 31 ''; 28 32 29 33 propagatedBuildInputs = [ perlPackages.FileSlurp ]; 30 34 31 - nativeBuildInputs = [ 32 - makeWrapper 33 - ]; 35 + nativeBuildInputs = [ makeWrapper ]; 34 36 35 - buildInputs = [ 36 - perl libjpeg_turbo 37 - ]; 37 + buildInputs = [ perl ]; 38 38 39 39 meta = with lib; { 40 - description = "losslessly shrink any JPEG file"; 40 + description = "Losslessly shrink any JPEG file"; 41 41 homepage = "https://github.com/kud/jpegrescan"; 42 42 license = licenses.publicDomain; 43 - maintainers = [ maintainers.ramkromberg ]; 43 + maintainers = with maintainers; [ ramkromberg ]; 44 44 platforms = platforms.all; 45 + mainProgram = "jpegrescan"; 45 46 }; 46 47 }
+2 -2
pkgs/applications/misc/binance/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "binance"; 6 - version = "1.30.1"; 6 + version = "1.35.0"; 7 7 8 8 src = fetchurl { 9 9 url = "https://github.com/binance/desktop/releases/download/v${version}/${pname}-${version}-amd64-linux.deb"; 10 - sha256 = "sha256-Su8pVf5GSBK770D778MmrgYr0ov/JBTNcnL8EZzoG3U="; 10 + sha256 = "sha256-6c7nrdViunnvPqqbt5/LQp2iS4EgZOCQ9PLcG+bY1YQ="; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+1 -1
pkgs/applications/misc/privacyidea/default.nix
··· 9 9 version = "1.3.24"; 10 10 src = oldAttrs.src.override { 11 11 inherit version; 12 - sha256 = "ebbb777cbf9312359b897bf81ba00dae0f5cb69fba2a18265dcc18a6f5ef7519"; 12 + hash = "sha256-67t3fL+TEjWbiXv4G6ANrg9ctp+6KhgmXcwYpvXvdRk="; 13 13 }; 14 14 }); 15 15 flask_migrate = super.flask_migrate.overridePythonAttrs (oldAttrs: rec {
+26
pkgs/applications/misc/rofi-rbw/default.nix
··· 1 + { lib, buildPythonApplication, fetchFromGitHub, configargparse }: 2 + 3 + buildPythonApplication rec { 4 + pname = "rofi-rbw"; 5 + version = "0.5.0"; 6 + format = "pyproject"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "fdw"; 10 + repo = "rofi-rbw"; 11 + rev = version; 12 + hash = "sha256-1RDwb8lKls6+X/XtARbi4F7sK4nT03Iy3Wb9N1LEa5o="; 13 + }; 14 + 15 + propagatedBuildInputs = [ configargparse ]; 16 + 17 + pythonImportsCheck = [ "rofi_rbw" ]; 18 + 19 + meta = with lib; { 20 + description = "Rofi frontend for Bitwarden"; 21 + homepage = "https://github.com/fdw/rofi-rbw"; 22 + license = licenses.mit; 23 + maintainers = with maintainers; [ dit7ya ]; 24 + platforms = platforms.linux; 25 + }; 26 + }
+2 -2
pkgs/applications/networking/browsers/vimb/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "vimb"; 7 - version = "3.3.0"; 7 + version = "3.6.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "fanglingsu"; 11 11 repo = "vimb"; 12 12 rev = version; 13 - sha256 = "1qg18z2gnsli9qgrqfhqfrsi6g9mcgr90w8yab28nxrq4aha6brf"; 13 + sha256 = "sha256-Eq4riJSznKpkW9JJDnTCLxZ9oMJTmWkIoGphOiCcSAg="; 14 14 }; 15 15 16 16 nativeBuildInputs = [ wrapGAppsHook pkg-config ];
+9 -12
pkgs/applications/networking/cluster/k3s/default.nix
··· 46 46 # Those pieces of software we entirely ignore upstream's handling of, and just 47 47 # make sure they're in the path if desired. 48 48 let 49 - k3sVersion = "1.23.5+k3s1"; # k3s git tag 50 - k3sCommit = "313aaca547f030752788dce696fdf8c9568bc035"; # k3s git commit at the above version 51 - k3sRepoSha256 = "0vk72609cyyh64irp14jp2zspnxw34jm710cbwgklx0ch6kiz88d"; 52 - k3sVendorSha256 = "sha256-d7kQsJi/eQbaTUDglp3gFpc5Im6CyD9coKeM3kMrbjI="; 53 - 54 - k3sServerVendorSha256 = "sha256-E3USXNuXY0lzZH+t3O7BOQ8rKNNQ6avOMItgOEi1cEg="; 49 + k3sVersion = "1.23.6+k3s1"; # k3s git tag 50 + k3sCommit = "418c3fa858b69b12b9cefbcff0526f666a6236b9"; # k3s git commit at the above version 51 + k3sRepoSha256 = "0fmw491dn5mpi058mr7sij51i5m4qg2grx30cnl3h2v4s0sdkx2i"; 52 + k3sVendorSha256 = "sha256-iHg5ySMaiSWXs98YGmxPwdZr4zdBIFma12dNEuf30Hs="; 55 53 56 54 # taken from ./manifests/traefik.yaml, extracted from '.spec.chart' https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/download#L9 57 55 # The 'patch' and 'minor' versions are currently hardcoded as single digits only, so ignore the trailing two digits. Weird, I know. 58 - traefikChartVersion = "10.14.1"; 59 - traefikChartSha256 = "09a6cialx7nrh7nwi1gkkh8zcsasxcgb52dyx0r8bjq9ng29simj"; 56 + traefikChartVersion = "10.19.3"; 57 + traefikChartSha256 = "04zg5li957svgscdmkzmzjkwljaljyav68rzxmhakkwgav6q9058"; 60 58 61 59 # taken from ./scripts/version.sh VERSION_ROOT https://github.com/k3s-io/k3s/blob/v1.23.3%2Bk3s1/scripts/version.sh#L47 62 60 k3sRootVersion = "0.11.0"; ··· 68 66 69 67 # taken from go.mod, the 'github.com/containerd/containerd' line 70 68 # run `grep github.com/containerd/containerd go.mod | head -n1 | awk '{print $4}'` 71 - containerdVersion = "1.5.10-k3s1"; 72 - containerdSha256 = "1ff2sfaqpjimq7w0lprci6ibyi6v65ap6b9sr6b0j12gqr2sqwa5"; 69 + containerdVersion = "1.5.11-k3s2"; 70 + containerdSha256 = "16132snvrg8r0vwm6c0lz0q6fx686s2ix53nm3aka9a83xs75vf2"; 73 71 74 72 # run `grep github.com/kubernetes-sigs/cri-tools go.mod | head -n1 | awk '{print $4}'` in the k3s repo at the tag 75 73 criCtlVersion = "1.22.0-k3s1"; ··· 175 173 version = k3sVersion; 176 174 177 175 src = k3sRepo; 178 - vendorSha256 = k3sServerVendorSha256; 176 + vendorSha256 = k3sVendorSha256; 179 177 180 178 nativeBuildInputs = [ pkg-config ]; 181 179 buildInputs = [ libseccomp ]; ··· 223 221 version = k3sVersion; 224 222 225 223 src = k3sRepo; 226 - proxyVendor = true; 227 224 vendorSha256 = k3sVendorSha256; 228 225 229 226 patches = [
-13
pkgs/applications/networking/cluster/k3s/update.sh
··· 81 81 82 82 setKV criCtlVersion ${CRI_CTL_VERSION} 83 83 84 - setKV k3sServerVendorSha256 "0000000000000000000000000000000000000000000000000000" 85 - 86 - set +e 87 - K3S_SERVER_VENDOR_SHA256=$(nix-build ${NIXPKGS_ROOT} --no-out-link -A k3s 2>&1 >/dev/null | grep "got:" | cut -d':' -f2 | sed 's| ||g') 88 - set -e 89 - 90 - if [ -n "${K3S_SERVER_VENDOR_SHA256:-}" ]; then 91 - setKV k3sServerVendorSha256 ${K3S_SERVER_VENDOR_SHA256} 92 - else 93 - echo "Update failed. K3S_SERVER_VENDOR_SHA256 is empty." 94 - exit 1 95 - fi 96 - 97 84 set +e 98 85 K3S_VENDOR_SHA256=$(nix-prefetch -I nixpkgs=${NIXPKGS_ROOT} "{ sha256 }: (import ${NIXPKGS_ROOT}. {}).k3s.go-modules.overrideAttrs (_: { vendorSha256 = sha256; })") 99 86 set -e
+2 -2
pkgs/applications/networking/mailreaders/aerc/default.nix
··· 11 11 12 12 buildGoModule rec { 13 13 pname = "aerc"; 14 - version = "0.9.0"; 14 + version = "0.10.0"; 15 15 16 16 src = fetchFromSourcehut { 17 17 owner = "~rjarry"; 18 18 repo = pname; 19 19 rev = version; 20 - sha256 = "sha256-D4cZVNh3YFaVRHGFn5Nt6kMSRCShj0w5n7pTxgYik2s="; 20 + sha256 = "sha256-v1+12UCgBbH/2PxZ9QdDN30LmyzVcfGlYiVNVPYO3zs="; 21 21 }; 22 22 23 23 proxyVendor = true;
+1 -1
pkgs/applications/networking/syncplay/default.nix
··· 14 14 }; 15 15 16 16 propagatedBuildInputs = [ twisted certifi ] 17 - ++ twisted.extras.tls 17 + ++ twisted.extras-require.tls 18 18 ++ lib.optional enableGUI pyside2; 19 19 nativeBuildInputs = lib.optionals enableGUI [ qt5.wrapQtAppsHook ]; 20 20
+1 -1
pkgs/applications/office/paperless-ngx/default.nix
··· 122 122 threadpoolctl 123 123 tika 124 124 tqdm 125 - twisted.extras.tls 125 + twisted.extras-require.tls 126 126 txaio 127 127 tzlocal 128 128 urllib3
+6 -4
pkgs/applications/science/electronics/horizon-eda/default.nix
··· 8 8 , glm 9 9 , gtkmm3 10 10 , lib 11 + , libarchive 11 12 , libgit2 12 13 , librsvg 14 + , libspnav 13 15 , libuuid 14 - , libzip 15 16 , opencascade 16 17 , pkg-config 17 18 , podofo ··· 23 24 24 25 stdenv.mkDerivation rec { 25 26 pname = "horizon-eda"; 26 - version = "2.2.0"; 27 + version = "2.3.0"; 27 28 28 29 src = fetchFromGitHub { 29 30 owner = "horizon-eda"; 30 31 repo = "horizon"; 31 32 rev = "v${version}"; 32 - sha256 = "sha256-MUS1dIsULDJ5DahCtDpbHZq56nltHShli7+uoW1/Tqw="; 33 + sha256 = "0lw5j1zqd2wdafgxl4ahcphaabs7vlw4kaa1c566hwfjxs46dmg9"; 33 34 }; 34 35 35 36 buildInputs = [ ··· 38 39 libepoxy 39 40 glm 40 41 gtkmm3 42 + libarchive 41 43 libgit2 42 44 librsvg 45 + libspnav 43 46 libuuid 44 - libzip 45 47 opencascade 46 48 podofo 47 49 python3
+21 -21
pkgs/applications/science/electronics/kicad/versions.nix
··· 3 3 { 4 4 "kicad" = { 5 5 kicadVersion = { 6 - version = "6.0.4"; 6 + version = "6.0.5"; 7 7 src = { 8 - rev = "6f826c9f35a3dc9a104bb24a0a89a2e04b2d9721"; 9 - sha256 = "0lki59ws0ncqkp9wxrhyni1ck2sx5z07mmpkjg0d9jpkync9hx9y"; 8 + rev = "a6ca702e916df70e499615d8613102e780e96a40"; 9 + sha256 = "19mg672h1gjdvnkp13cpkhk67xpwms72y4gd6g8983fcsxr8nq23"; 10 10 }; 11 11 }; 12 12 libVersion = { 13 - version = "6.0.4"; 13 + version = "6.0.5"; 14 14 libSources = { 15 - symbols.rev = "9d00fbb9373571e54d9f29985b21a03d862795a4"; 16 - symbols.sha256 = "12lyc187337bf2frl3jvwqdwwnd69f7l414k3kxhccs3sa2mcf1y"; 17 - templates.rev = "c4f4fe4b821e062a3ddd275f9313d5d81ff8f8d7"; 15 + symbols.rev = "c7f82c947ab3a1afec8d7b602ee7c6bfdfb24693"; 16 + symbols.sha256 = "1dhgdp08ah08fc5nvwkqmgpl2any9vgy1gykmyzsd4dl8hhvznh5"; 17 + templates.rev = "5ec65bfd3ecefaf85f79db02981f0568fe8b0eb8"; 18 18 templates.sha256 = "13h9ly6amiwm7zkwa2fd9730kh295ls8j95fszlfjp9rczv2yyzm"; 19 - footprints.rev = "c48d3dfcfa6ce58ec11e10b7a74878bb69fae580"; 20 - footprints.sha256 = "0px2g9jansky0rvc0bdjylbmv8xwhc0q63g88hd2nzbknqli9f1y"; 21 - packages3d.rev = "b1de0b5c3edc16999602b809a05017da62ff52cc"; 22 - packages3d.sha256 = "0ms9py93qyihxrhh9wm2ziycmdn88m36r8adx22ynjnxixw1f9ja"; 19 + footprints.rev = "35e3d08f1ab23b5b08ba903572776aab6de7499f"; 20 + footprints.sha256 = "0sxzd4dr1g12ck8b2wsyg9r2s1j3472nksrjrwpzjdyfc8rqbjai"; 21 + packages3d.rev = "6ea94caf40c4bdccecb569e81ed82b902d4c104e"; 22 + packages3d.sha256 = "00i6mybg3pprzb283b26z5b2g7a8sbghlvc0fwk9gwrp3wz1yqzc"; 23 23 }; 24 24 }; 25 25 }; 26 26 "kicad-unstable" = { 27 27 kicadVersion = { 28 - version = "2022-03-19"; 28 + version = "2022-05-06"; 29 29 src = { 30 - rev = "58c146a7c00ee64ca07cacbcc594121f40aa2aeb"; 31 - sha256 = "0gcbl11pq0dgp590hdwsh5np7spixk5kgva0v8mx9rqd374z4bdm"; 30 + rev = "dfdedfa605f58711d286d6e24e4ae9b5f75444e6"; 31 + sha256 = "1bs7s2x0zh3wbk2hawg47v1s3nidmcl0xaardbpiafrrnh1qprf2"; 32 32 }; 33 33 }; 34 34 libVersion = { 35 - version = "2022-03-19"; 35 + version = "2022-05-06"; 36 36 libSources = { 37 - symbols.rev = "9b8d3163450172a7f368462c6d005841ad199144"; 38 - symbols.sha256 = "12lyc187337bf2frl3jvwqdwwnd69f7l414k3kxhccs3sa2mcf1y"; 37 + symbols.rev = "e1d70243a68a721a9f94a7df1d04c9c6ebc056ef"; 38 + symbols.sha256 = "0gbl22g73cms9jrk9f6dlgd3ksnhiik39aywfm15m98jfglnlbg8"; 39 39 templates.rev = "a27d83f0a20f0be0c1ab04b139a0c518da51a5d4"; 40 40 templates.sha256 = "13h9ly6amiwm7zkwa2fd9730kh295ls8j95fszlfjp9rczv2yyzm"; 41 - footprints.rev = "c871df2c81a894bc5e91d2d517b76884d5a918aa"; 42 - footprints.sha256 = "0px2g9jansky0rvc0bdjylbmv8xwhc0q63g88hd2nzbknqli9f1y"; 43 - packages3d.rev = "6ff98426fd51d53c55bc48025d66d3d0b0c5df92"; 44 - packages3d.sha256 = "0ms9py93qyihxrhh9wm2ziycmdn88m36r8adx22ynjnxixw1f9ja"; 41 + footprints.rev = "25bb68c2d0e61d1e1e31375adfcf0b6ccdb33ff9"; 42 + footprints.sha256 = "0sxzd4dr1g12ck8b2wsyg9r2s1j3472nksrjrwpzjdyfc8rqbjai"; 43 + packages3d.rev = "ac7189ed55d5a3bf5eaa87d31fb97a3e7b5ad80e"; 44 + packages3d.sha256 = "00i6mybg3pprzb283b26z5b2g7a8sbghlvc0fwk9gwrp3wz1yqzc"; 45 45 }; 46 46 }; 47 47 };
+1 -3
pkgs/applications/terminal-emulators/kitty/default.nix
··· 58 58 ] ++ lib.optionals stdenv.isLinux [ 59 59 fontconfig libunistring libcanberra libX11 60 60 libXrandr libXinerama libXcursor libxkbcommon libXi libXext 61 - wayland-protocols wayland dbus 61 + wayland-protocols wayland dbus libGL 62 62 ]; 63 63 64 64 nativeBuildInputs = [ ··· 74 74 imagemagick 75 75 libicns # For the png2icns tool. 76 76 ]; 77 - 78 - propagatedBuildInputs = lib.optional stdenv.isLinux libGL; 79 77 80 78 outputs = [ "out" "terminfo" "shell_integration" ]; 81 79
+4 -4
pkgs/applications/version-management/sublime-merge/default.nix
··· 4 4 common = opts: callPackage (import ./common.nix opts); 5 5 in { 6 6 sublime-merge = common { 7 - buildVersion = "2068"; 8 - sha256 = "sha256-CseZQgjqr8B66Slf/yFZZsnRFc3zqCGKFAzSdMRQdNI="; 7 + buildVersion = "2071"; 8 + sha256 = "xYVk5Fx6VdoHzf0cbmhwKyEr5HDEZgPgDoBWQg/tS0U="; 9 9 } {}; 10 10 11 11 sublime-merge-dev = common { 12 - buildVersion = "2067"; 13 - sha256 = "sha256-ViBBi9Ghh4dHg7Gmg4i/B+Q4OgDd4XiHNIs12qffZdg="; 12 + buildVersion = "2070"; 13 + sha256 = "2AA2HBF19g34ov6ytjL2caqS7Ro4eyj18vzwINm0CTw="; 14 14 dev = true; 15 15 } {}; 16 16 }
+1
pkgs/applications/window-managers/sway/bg.nix
··· 15 15 hash = "sha256-Lt/hn/K+CjcmU3Bs5wChiZq0VGNcraH4tSVYsmYnKjc="; 16 16 }; 17 17 18 + strictDeps = true; 18 19 depsBuildBuild = [ pkg-config ]; 19 20 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ]; 20 21 buildInputs = [ wayland wayland-protocols cairo gdk-pixbuf ];
+3 -1
pkgs/applications/window-managers/sway/contrib.nix
··· 10 10 , slurp 11 11 , grim 12 12 , jq 13 + , bash 13 14 14 15 , python3Packages 15 16 }: ··· 27 28 28 29 outputs = [ "out" "man" ]; 29 30 31 + strictDeps = true; 30 32 nativeBuildInputs = [ makeWrapper installShellFiles ]; 31 - 33 + buildInputs = [ bash ]; 32 34 installPhase = '' 33 35 installManPage contrib/grimshot.1 34 36
+1
pkgs/applications/window-managers/sway/default.nix
··· 49 49 ./sway-config-nixos-paths.patch 50 50 ]; 51 51 52 + strictDeps = true; 52 53 depsBuildBuild = [ 53 54 pkg-config 54 55 ];
+1
pkgs/applications/window-managers/sway/idle.nix
··· 15 15 sha256 = "06iq12p4438d6bv3jlqsf01wjaxrzlnj1bnicn41kad563aq41xl"; 16 16 }; 17 17 18 + strictDeps = true; 18 19 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ]; 19 20 buildInputs = [ wayland wayland-protocols ] 20 21 ++ lib.optionals systemdSupport [ systemd ];
+3 -1
pkgs/applications/window-managers/sway/lock-effects.nix
··· 8 8 , scdoc 9 9 , wayland 10 10 , wayland-protocols 11 + , wayland-scanner 11 12 , libxkbcommon 12 13 , cairo 13 14 , gdk-pixbuf ··· 36 37 sed -iE "s/version: '1\.3',/version: '${version}',/" meson.build 37 38 ''; 38 39 39 - nativeBuildInputs = [ meson ninja pkg-config scdoc ]; 40 + strictDeps = true; 41 + nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner]; 40 42 buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ]; 41 43 42 44 mesonFlags = [
+3 -1
pkgs/applications/window-managers/sway/lock-fancy.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, coreutils, grim, gawk, jq, swaylock 2 - , imagemagick, getopt, fontconfig, wmctrl, makeWrapper 2 + , imagemagick, getopt, fontconfig, wmctrl, makeWrapper, bash 3 3 }: 4 4 5 5 let ··· 30 30 --replace "/usr/share" "$out/share" 31 31 ''; 32 32 33 + strictDeps = true; 33 34 nativeBuildInputs = [ makeWrapper ]; 35 + buildInputs = [ bash ]; 34 36 35 37 makeFlags = [ "PREFIX=${placeholder "out"}" ]; 36 38
+12 -1
pkgs/applications/window-managers/sway/lock.nix
··· 1 - { lib, stdenv, fetchFromGitHub 1 + { lib, stdenv, fetchFromGitHub, fetchpatch 2 2 , meson, ninja, pkg-config, scdoc, wayland-scanner 3 3 , wayland, wayland-protocols, libxkbcommon, cairo, gdk-pixbuf, pam 4 4 }: ··· 14 14 sha256 = "sha256-VVGgidmSQWKxZNx9Cd6z52apxpxVfmX3Ut/G9kzfDcY="; 15 15 }; 16 16 17 + patches = [ 18 + # remove once when updating to 1.7 19 + # https://github.com/swaywm/swaylock/pull/235 20 + (fetchpatch { 21 + url = "https://github.com/swaywm/swaylock/commit/5a1e6ad79aa7d79b32d36cda39400f3e889b8f8f.diff"; 22 + sha256 = "sha256-ZcZVImUzvng7sluC6q2B5UL8sVunLe4PIfc+tyw48RQ="; 23 + }) 24 + ]; 25 + 26 + strictDeps = true; 27 + depsBuildBuild = [ pkg-config ]; 17 28 nativeBuildInputs = [ meson ninja pkg-config scdoc wayland-scanner ]; 18 29 buildInputs = [ wayland wayland-protocols libxkbcommon cairo gdk-pixbuf pam ]; 19 30
+1
pkgs/applications/window-managers/sway/wrapper.nix
··· 37 37 paths = (optional withBaseWrapper baseWrapper) 38 38 ++ [ sway ]; 39 39 40 + strictDeps = true; 40 41 nativeBuildInputs = [ makeWrapper ] 41 42 ++ (optional withGtkWrapper wrapGAppsHook); 42 43
+6 -3
pkgs/data/themes/qogir/default.nix
··· 7 7 , librsvg 8 8 , sassc 9 9 , which 10 + , gitUpdater 10 11 }: 11 12 12 13 stdenv.mkDerivation rec { 13 14 pname = "qogir-theme"; 14 - version = "2021-12-25"; 15 + version = "2022-04-29"; 15 16 16 17 src = fetchFromGitHub { 17 18 owner = "vinceliuice"; 18 19 repo = pname; 19 20 rev = version; 20 - sha256 = "1h10yqz3i59bxhkk2r2p8as8g9ibx38bbpdxi7jgg2pxr581mn4f"; 21 + sha256 = "oFGJ29He7ZmryW/Eg+JLM9C3FzNjmKjzNtyXDHGuhwo="; 21 22 }; 22 23 23 24 nativeBuildInputs = [ ··· 38 39 installPhase = '' 39 40 patchShebangs . 40 41 mkdir -p $out/share/themes 41 - name= ./install.sh -t all -d $out/share/themes 42 + name= HOME="$TMPDIR" ./install.sh -t all -d $out/share/themes 42 43 mkdir -p $out/share/doc/${pname} 43 44 cp -a src/firefox $out/share/doc/${pname} 44 45 rm $out/share/themes/*/{AUTHORS,COPYING} 45 46 ''; 47 + 48 + passthru.updateScript = gitUpdater { inherit pname version; }; 46 49 47 50 meta = with lib; { 48 51 description = "Flat Design theme for GTK based desktop environments";
+1 -1
pkgs/development/compilers/chicken/4/default.nix
··· 13 13 bootstrap-chicken = self.chicken.override { bootstrap-chicken = null; }; 14 14 }; 15 15 16 - chickenEggs = callPackage ./eggs.nix { }; 16 + chickenEggs = lib.recurseIntoAttrs (callPackage ./eggs.nix { }); 17 17 18 18 egg2nix = callPackage ./egg2nix.nix { }; 19 19 };
+1 -1
pkgs/development/compilers/chicken/5/default.nix
··· 13 13 bootstrap-chicken = self.chicken.override { bootstrap-chicken = null; }; 14 14 }; 15 15 16 - chickenEggs = callPackage ./eggs.nix { }; 16 + chickenEggs = lib.recurseIntoAttrs (callPackage ./eggs.nix { }); 17 17 18 18 egg2nix = callPackage ./egg2nix.nix { }; 19 19 };
+2 -2
pkgs/development/embedded/arduino/arduino-cli/default.nix
··· 4 4 5 5 pkg = buildGoModule rec { 6 6 pname = "arduino-cli"; 7 - version = "0.20.2"; 7 + version = "0.21.1"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "arduino"; 11 11 repo = pname; 12 12 rev = version; 13 - sha256 = "sha256-q2uaJTfCcS/kv6xU5NjafzfcM3TixJlH5KzgEpLJKkQ="; 13 + sha256 = "sha256-IXzN6CnZCzrkcLVNmKc1WB0V+TTa56CBzASzK0FQO8c="; 14 14 }; 15 15 16 16 subPackages = [ "." ];
+5
pkgs/development/libraries/libressl/default.nix
··· 90 90 version = "3.4.3"; 91 91 sha256 = "sha256-/4i//jVIGLPM9UXjyv5FTFAxx6dyFwdPUzJx1jw38I0="; 92 92 }; 93 + 94 + libressl_3_5 = generic { 95 + version = "3.5.2"; 96 + sha256 = "sha256-Vv6rjiHD+mVJ+LfXURZYuOmFGBYoOKeVMUcyZUrfPl8="; 97 + }; 93 98 }
+40
pkgs/development/libraries/mauikit-accounts/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitLab 4 + , cmake 5 + , extra-cmake-modules 6 + , kconfig 7 + , kio 8 + , mauikit 9 + }: 10 + 11 + mkDerivation rec { 12 + pname = "mauikit-accounts"; 13 + version = "2.1.1"; 14 + 15 + src = fetchFromGitLab { 16 + domain = "invent.kde.org"; 17 + owner = "maui"; 18 + repo = "mauikit-accounts"; 19 + rev = "v${version}"; 20 + sha256 = "sha256-B0VmgE0L8kBOqR/lrWCHO3psCQ7GZVPIGljGAwpuymE="; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + cmake 25 + extra-cmake-modules 26 + ]; 27 + 28 + buildInputs = [ 29 + kconfig 30 + kio 31 + mauikit 32 + ]; 33 + 34 + meta = with lib; { 35 + homepage = "https://invent.kde.org/maui/mauikit-accounts"; 36 + description = "MauiKit utilities to handle User Accounts"; 37 + license = licenses.lgpl2Plus; 38 + maintainers = with maintainers; [ onny ]; 39 + }; 40 + }
+42
pkgs/development/libraries/mauikit-texteditor/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromGitLab 4 + , cmake 5 + , extra-cmake-modules 6 + , kconfig 7 + , kio 8 + , mauikit 9 + , syntax-highlighting 10 + }: 11 + 12 + mkDerivation rec { 13 + pname = "mauikit-texteditor"; 14 + version = "2.1.1"; 15 + 16 + src = fetchFromGitLab { 17 + domain = "invent.kde.org"; 18 + owner = "maui"; 19 + repo = "mauikit-texteditor"; 20 + rev = "v${version}"; 21 + sha256 = "sha256-C0EOc0CE6Ef7vnmOKRqTzeJUamGXsvREpHRPGTcAaIc="; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + cmake 26 + extra-cmake-modules 27 + ]; 28 + 29 + buildInputs = [ 30 + kconfig 31 + kio 32 + mauikit 33 + syntax-highlighting 34 + ]; 35 + 36 + meta = with lib; { 37 + homepage = "https://invent.kde.org/maui/mauikit-texteditor"; 38 + description = "MauiKit Text Editor components"; 39 + license = licenses.lgpl2Plus; 40 + maintainers = with maintainers; [ onny ]; 41 + }; 42 + }
-6
pkgs/development/libraries/protobuf/3.1.nix
··· 1 - { callPackage, ... }: 2 - 3 - callPackage ./generic-v3.nix { 4 - version = "3.1.0"; 5 - sha256 = "0qlvpsmqgh9nw0k4zrxlxf75pafi3p0ahz99v6761b903y8qyv4i"; 6 - }
+1 -1
pkgs/development/libraries/science/astronomy/cfitsio/default.nix
··· 13 13 14 14 patches = [ ./darwin-rpath-universal.patch ]; 15 15 16 - configureFlags = [ "--with-bzip2=${bzip2.out}" ]; 16 + configureFlags = [ "--with-bzip2=${bzip2.out}" "--enable-reentrant" ]; 17 17 18 18 hardeningDisable = [ "format" ]; 19 19
+3 -7
pkgs/development/python-modules/beaker/default.nix
··· 5 5 , glibcLocales 6 6 , nose 7 7 , pylibmc 8 - , memcached 8 + , python-memcached 9 9 , redis 10 10 , pymongo 11 11 , mock ··· 42 42 43 43 checkInputs = [ 44 44 glibcLocales 45 - memcached 45 + python-memcached 46 46 mock 47 47 nose 48 48 pylibmc ··· 52 52 ]; 53 53 54 54 # Can not run memcached tests because it immediately tries to connect 55 - postPatch = lib.optionalString isPy3k '' 56 - substituteInPlace setup.py \ 57 - --replace "python-memcached" "python3-memcached" 58 - '' + '' 59 - 55 + postPatch = '' 60 56 rm tests/test_memcached.py 61 57 ''; 62 58
+1 -1
pkgs/development/python-modules/buildbot/default.nix
··· 53 53 unidiff 54 54 ] 55 55 # tls 56 - ++ twisted.extras.tls; 56 + ++ twisted.extras-require.tls; 57 57 58 58 checkInputs = [ 59 59 treq
+2 -2
pkgs/development/python-modules/cachy/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi 2 2 , redis 3 - , memcached 3 + , python-memcached 4 4 , msgpack 5 5 }: 6 6 ··· 15 15 16 16 propagatedBuildInputs = [ 17 17 redis 18 - memcached 18 + python-memcached 19 19 msgpack 20 20 ]; 21 21
+2 -2
pkgs/development/python-modules/django/4.nix
··· 22 22 , docutils 23 23 , geoip2 24 24 , jinja2 25 - , memcached 25 + , python-memcached 26 26 , numpy 27 27 , pillow 28 28 , pylibmc ··· 76 76 docutils 77 77 geoip2 78 78 jinja2 79 - memcached 79 + python-memcached 80 80 numpy 81 81 pillow 82 82 pylibmc
+1 -1
pkgs/development/python-modules/fastapi/default.nix
··· 49 49 pytest-asyncio 50 50 sqlalchemy 51 51 trio 52 - ]; 52 + ] ++ passlib.extras-require.bcrypt; 53 53 54 54 patches = [ 55 55 # Bump starlette, https://github.com/tiangolo/fastapi/pull/4483
+2
pkgs/development/python-modules/flask-security-too/default.nix
··· 32 32 , passlib 33 33 34 34 # tests 35 + , argon2_cffi 35 36 , flask-mongoengine 36 37 , mongoengine 37 38 , mongomock ··· 85 86 }; 86 87 87 88 checkInputs = [ 89 + argon2_cffi 88 90 flask-mongoengine 89 91 mongoengine 90 92 mongomock
+2 -2
pkgs/development/python-modules/graphite-web/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , django 5 - , memcached 5 + , python-memcached 6 6 , txamqp 7 7 , django_tagging 8 8 , gunicorn ··· 36 36 37 37 propagatedBuildInputs = [ 38 38 django 39 - memcached 39 + python-memcached 40 40 txamqp 41 41 django_tagging 42 42 gunicorn
+2 -8
pkgs/development/python-modules/influxgraph/default.nix
··· 1 1 { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , influxdb, graphite_api, memcached 2 + , influxdb, graphite_api, python-memcached 3 3 }: 4 4 5 5 buildPythonPackage rec { ··· 11 11 sha256 = "0l33sfwdh4bfprmzp2kx0d9098g6yxbnhyyx9qr3kzczpm0jg9vy"; 12 12 }; 13 13 14 - patchPhase = lib.optionalString isPy3k '' 15 - sed 's/python-memcached/python3-memcached/' \ 16 - -i ./influxgraph.egg-info/requires.txt \ 17 - -i ./setup.py 18 - ''; 19 - 20 - propagatedBuildInputs = [ influxdb graphite_api memcached ]; 14 + propagatedBuildInputs = [ influxdb graphite_api python-memcached ]; 21 15 22 16 passthru.moduleName = "influxgraph.InfluxDBFinder"; 23 17
-27
pkgs/development/python-modules/memcached/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , fetchurl 4 - , fetchPypi 5 - , isPy3k 6 - }: 7 - 8 - buildPythonPackage rec { 9 - pname = "memcached"; 10 - version = "1.51"; 11 - 12 - src = if isPy3k then fetchPypi { 13 - inherit version; 14 - pname = "python3-${pname}"; 15 - sha256 = "0na8b369q8fivh3y0nvzbvhh3lgvxiyyv9xp93cnkvwfsr8mkgkw"; 16 - } else fetchurl { 17 - url = "http://ftp.tummy.com/pub/python-memcached/old-releases/python-${pname}-${version}.tar.gz"; 18 - sha256 = "124s98m6hvxj6x90d7aynsjfz878zli771q96ns767r2mbqn7192"; 19 - }; 20 - 21 - meta = with lib; { 22 - description = "Python API for communicating with the memcached distributed memory object cache daemon"; 23 - homepage = "https://github.com/linsomniac/python-memcached"; 24 - license = licenses.psfl; 25 - }; 26 - 27 - }
+14 -5
pkgs/development/python-modules/passlib/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , nose 4 + , argon2_cffi 5 5 , bcrypt 6 - , argon2_cffi 6 + , cryptography 7 + , pytestCheckHook 7 8 }: 8 9 9 10 buildPythonPackage rec { ··· 15 16 sha256 = "defd50f72b65c5402ab2c573830a6978e5f202ad0d984793c8dde2c4152ebe04"; 16 17 }; 17 18 18 - checkInputs = [ nose ]; 19 - propagatedBuildInputs = [ bcrypt argon2_cffi ]; 20 - propagatedNativeBuildInputs = [ argon2_cffi ]; 19 + passthru.extras-require = { 20 + argon2 = [ argon2_cffi ]; 21 + bcrypt = [ bcrypt ]; 22 + totp = [ cryptography ]; 23 + }; 24 + 25 + checkInputs = [ 26 + pytestCheckHook 27 + ] ++ passthru.extras-require.argon2 28 + ++ passthru.extras-require.bcrypt 29 + ++ passthru.extras-require.totp; 21 30 22 31 meta = with lib; { 23 32 description = "A password hashing library for Python";
+2 -8
pkgs/development/python-modules/pkutils/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "pkutils"; 11 - version = "2.0.0"; 11 + version = "3.0.2"; 12 12 format = "setuptools"; 13 13 14 14 disabled = pythonOlder "3.6"; ··· 17 17 owner = "reubano"; 18 18 repo = "pkutils"; 19 19 rev = "v${version}"; 20 - sha256 = "sha256-jvRUjuxlcfmJOX50bnZR/pP2Axe1KDy9/KGXTL4yPxA="; 20 + hash = "sha256-AK+xX+LPz6IVLZedsqMUm7G28ue0s3pXgIzxS4EHHLE="; 21 21 }; 22 22 23 23 propagatedBuildInputs = [ ··· 27 27 checkInputs = [ 28 28 nose 29 29 ]; 30 - 31 - postPatch = '' 32 - # Remove when https://github.com/reubano/pkutils/pull/4 merged 33 - substituteInPlace requirements.txt \ 34 - --replace "semver>=2.2.1,<2.7.3" "semver" 35 - ''; 36 30 37 31 checkPhase = '' 38 32 runHook preCheck
+10 -1
pkgs/development/python-modules/pylint/default.nix
··· 87 87 meta = with lib; { 88 88 homepage = "https://pylint.pycqa.org/"; 89 89 description = "A bug and style checker for Python"; 90 + longDescription = '' 91 + Pylint is a Python static code analysis tool which looks for programming errors, 92 + helps enforcing a coding standard, sniffs for code smells and offers simple 93 + refactoring suggestions. 94 + Pylint is shipped with following additional commands: 95 + - pyreverse: an UML diagram generator 96 + - symilar: an independent similarities checker 97 + - epylint: Emacs and Flymake compatible Pylint 98 + ''; 90 99 license = licenses.gpl1Plus; 91 - maintainers = with maintainers; [ ]; 100 + maintainers = with maintainers; [ totoroot ]; 92 101 }; 93 102 }
+40
pkgs/development/python-modules/python-memcached/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , six 5 + , mock 6 + , pytestCheckHook 7 + }: 8 + 9 + buildPythonPackage rec { 10 + pname = "python-memcached"; 11 + version = "1.59"; 12 + 13 + src = fetchFromGitHub { 14 + owner = "linsomniac"; 15 + repo = "python-memcached"; 16 + rev = version; 17 + hash = "sha256-tHqkwNloPTXOrEGtuDLu1cTw4SKJ4auv8UUbqdNp698="; 18 + }; 19 + 20 + propagatedBuildInputs = [ 21 + six 22 + ]; 23 + 24 + checkInputs = [ 25 + mock 26 + pytestCheckHook 27 + ]; 28 + 29 + # all tests fail 30 + doCheck = false; 31 + 32 + pythonImportsCheck = [ "memcache" ]; 33 + 34 + meta = with lib; { 35 + description = "Pure python memcached client"; 36 + homepage = "https://github.com/linsomniac/python-memcached"; 37 + license = licenses.psfl; 38 + maintainers = with maintainers; [ dotlambda ]; 39 + }; 40 + }
+29 -5
pkgs/development/python-modules/relatorio/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, genshi, lxml, python-magic }: 1 + { lib 2 + , buildPythonPackage 3 + , pythonOlder 4 + , fetchPypi 5 + , genshi 6 + , lxml 7 + , pyyaml 8 + , python-magic 9 + , pytestCheckHook 10 + }: 2 11 3 12 buildPythonPackage rec { 4 13 pname = "relatorio"; 5 - version = "0.10.0"; 14 + version = "0.10.1"; 15 + 16 + disabled = pythonOlder "3.5"; 17 + 18 + format = "setuptools"; 6 19 7 20 src = fetchPypi { 8 21 inherit pname version; 9 - sha256 = "6b9390eab696bdf569639ff58794fb9ef8ff19f94feea5b505a6ba06d0cfd026"; 22 + sha256 = "a0c72302d50d5dfa433ddab191672eec1dde1c6ed26330a378b720e5a3012e23"; 10 23 }; 11 24 12 25 propagatedBuildInputs = [ 13 26 genshi 14 27 lxml 15 - python-magic 16 28 ]; 17 29 30 + passthru.extras-require = { 31 + chart = [ /* pycha */ pyyaml ]; 32 + fodt = [ python-magic ]; 33 + }; 34 + 35 + checkInputs = [ 36 + pytestCheckHook 37 + ] ++ passthru.extras-require.fodt; 38 + 39 + pythonImportsCheck = [ "relatorio" ]; 40 + 18 41 meta = { 19 42 homepage = "https://relatorio.tryton.org/"; 43 + changelog = "https://hg.tryton.org/relatorio/file/${version}/CHANGELOG"; 20 44 description = "A templating library able to output odt and pdf files"; 21 45 maintainers = with lib.maintainers; [ johbo ]; 22 - license = lib.licenses.gpl3; 46 + license = lib.licenses.gpl2Plus; 23 47 }; 24 48 }
+11 -27
pkgs/development/python-modules/treq/default.nix
··· 1 - { lib, fetchPypi, buildPythonPackage, service-identity, requests, six 2 - , mock, twisted, incremental, pep8, httpbin 1 + { lib 2 + , fetchPypi 3 + , buildPythonPackage 4 + , requests 5 + , twisted 6 + , incremental 7 + , httpbin 3 8 }: 4 9 5 10 buildPythonPackage rec { ··· 13 18 14 19 propagatedBuildInputs = [ 15 20 requests 16 - six 17 21 incremental 18 - service-identity 19 22 twisted 20 - ] 21 - # twisted [tls] requirements (we should find a way to list "extras") 22 - ++ twisted.extras.tls; 23 + ] ++ twisted.extras-require.tls; 23 24 24 25 checkInputs = [ 25 - pep8 26 - mock 27 26 httpbin 27 + twisted 28 28 ]; 29 29 30 - postPatch = '' 31 - rm -fv src/treq/test/test_treq_integration.py 32 - ''; 33 - 34 - # XXX tox tries to install coverage despite it is installed 35 - #postBuild = '' 36 - # # build documentation and install in $out 37 - # tox -e docs 38 - # mkdir -pv $out/docs 39 - # cp -rv docs/* $out/docs/ 40 - #''; 41 - 42 30 checkPhase = '' 43 - pep8 --ignore=E902 treq 44 31 trial treq 45 32 ''; 46 - 47 - # Failing tests https://github.com/twisted/treq/issues/208 48 - doCheck = false; 49 33 50 34 meta = with lib; { 51 35 homepage = "https://github.com/twisted/treq"; 52 - description = "A requests-like API built on top of twisted.web's Agent"; 36 + description = "Requests-like API built on top of twisted.web's Agent"; 53 37 license = licenses.mit; 54 - maintainers = with maintainers; [ ]; 38 + maintainers = with maintainers; [ SuperSandro2000 ]; 55 39 }; 56 40 }
+28 -33
pkgs/development/python-modules/trytond/default.nix
··· 1 1 { lib 2 - , buildPythonApplication 3 - , fetchpatch 2 + , buildPythonPackage 4 3 , fetchPypi 5 4 , pythonOlder 6 - , mock 5 + , defusedxml 7 6 , lxml 8 7 , relatorio 9 8 , genshi ··· 13 12 , werkzeug 14 13 , wrapt 15 14 , passlib 16 - , pillow 17 - , bcrypt 18 15 , pydot 19 16 , python-Levenshtein 20 - , simplejson 21 17 , html2text 22 - , psycopg2 23 - , withPostgresql ? true 18 + , weasyprint 19 + , gevent 20 + , pillow 21 + , withPostgresql ? true, psycopg2 22 + , python 24 23 }: 25 24 26 - buildPythonApplication rec { 25 + buildPythonPackage rec { 27 26 pname = "trytond"; 28 - version = "6.2.6"; 27 + version = "6.4.0"; 29 28 format = "setuptools"; 30 29 31 - disabled = pythonOlder "3.6"; 30 + disabled = pythonOlder "3.7"; 32 31 33 32 src = fetchPypi { 34 33 inherit pname version; 35 - sha256 = "sha256-Sof6A9lxU70YnCbboJr56CAdTL0cRbaRNxdvG5Tnqnw="; 34 + sha256 = "3c04d75c2a779b88b8c7ab6dd252cf4fc51f9546bf42760d10dbd1a17f61b288"; 36 35 }; 37 36 38 - patches = [ 39 - (fetchpatch { 40 - # werkzeug 2.1 compatibility for the tests 41 - url = "https://github.com/tryton/trytond/commit/86a50ca06cf0d79404dbd731141ed29f8e9fcb9d.patch"; 42 - hash = "sha256-xY5Sdhkd0lEgscV7NHwX2YWxobWqQFElY5BJvDT+we8="; 43 - }) 44 - ]; 45 - 46 - # Tells the tests which database to use 47 - DB_NAME = ":memory:"; 48 - 49 - buildInputs = [ 50 - mock 51 - ]; 52 - 53 37 propagatedBuildInputs = [ 38 + defusedxml 54 39 lxml 55 40 relatorio 56 41 genshi ··· 59 44 python-sql 60 45 werkzeug 61 46 wrapt 62 - pillow 63 47 passlib 64 48 65 49 # extra dependencies 66 - bcrypt 67 50 pydot 68 51 python-Levenshtein 69 - simplejson 70 52 html2text 71 - ] ++ lib.optional withPostgresql psycopg2; 53 + weasyprint 54 + gevent 55 + pillow 56 + ] ++ relatorio.extras-require.fodt 57 + ++ passlib.extras-require.bcrypt 58 + ++ passlib.extras-require.argon2 59 + ++ lib.optional withPostgresql psycopg2; 72 60 73 - # If unset, trytond will try to mkdir /homeless-shelter 74 - preCheck = '' 61 + checkPhase = '' 62 + runHook preCheck 63 + 75 64 export HOME=$(mktemp -d) 65 + export TRYTOND_DATABASE_URI="sqlite://" 66 + export DB_NAME=":memory:"; 67 + ${python.interpreter} -m unittest discover -s trytond.tests 68 + 69 + runHook postCheck 76 70 ''; 77 71 78 72 meta = with lib; { ··· 86 80 modularity, scalability and security. 87 81 ''; 88 82 homepage = "http://www.tryton.org/"; 83 + changelog = "https://hg.tryton.org/trytond/file/${version}/CHANGELOG"; 89 84 license = licenses.gpl3Plus; 90 85 maintainers = with maintainers; [ udono johbo ]; 91 86 };
+22 -1
pkgs/development/python-modules/twisted/default.nix
··· 1 1 { lib, stdenv 2 2 , buildPythonPackage 3 + , pythonOlder 3 4 , fetchPypi 4 5 , python 5 6 , zope_interface ··· 14 15 , setuptools 15 16 , idna 16 17 , typing-extensions 18 + , pyasn1 19 + , cryptography 20 + , appdirs 21 + , bcrypt 22 + , pynacl 23 + , pyserial 24 + , h2 25 + , priority 26 + , contextvars 17 27 }: 18 28 buildPythonPackage rec { 19 29 pname = "Twisted"; 20 30 version = "22.4.0"; 21 31 32 + disabled = pythonOlder "3.6"; 33 + 34 + format = "setuptools"; 35 + 22 36 src = fetchPypi { 23 37 inherit pname version; 24 38 extension = "tar.gz"; ··· 27 41 28 42 propagatedBuildInputs = [ zope_interface incremental automat constantly hyperlink pyhamcrest attrs setuptools typing-extensions ]; 29 43 30 - passthru.extras.tls = [ pyopenssl service-identity idna ]; 44 + passthru.extras-require = rec { 45 + tls = [ pyopenssl service-identity idna ]; 46 + conch = [ pyasn1 cryptography appdirs bcrypt ]; 47 + conch_nacl = conch ++ [ pynacl ]; 48 + serial = [ pyserial ]; 49 + http2 = [ h2 priority ]; 50 + contextvars = lib.optionals (pythonOlder "3.7") [ contextvars ]; 51 + }; 31 52 32 53 # Patch t.p._inotify to point to libc. Without this, 33 54 # twisted.python.runtime.platform.supportsINotify() == False
+1 -1
pkgs/development/python-modules/txtorcon/default.nix
··· 13 13 14 14 propagatedBuildInputs = [ 15 15 incremental twisted automat zope_interface 16 - ] ++ twisted.extras.tls 16 + ] ++ twisted.extras-require.tls 17 17 ++ lib.optionals (!isPy3k) [ ipaddress ]; 18 18 19 19 checkInputs = [ pytestCheckHook mock lsof GeoIP ];
+58
pkgs/development/python-modules/ukrainealarm/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + 5 + # build time 6 + , setuptools-scm 7 + 8 + # propagates 9 + , aiohttp 10 + 11 + # tests 12 + , pytestCheckHook 13 + }: 14 + 15 + let 16 + pname = "ukrainealarm"; 17 + version = "0.0.1"; 18 + in 19 + 20 + buildPythonPackage { 21 + inherit pname version; 22 + format = "setuptools"; 23 + 24 + src = fetchFromGitHub { 25 + owner = "PaulAnnekov"; 26 + repo = pname; 27 + rev = "v${version}"; 28 + hash = "sha256-0gsxXQiSkJIM/I0VYsjdCCB3NjPr6QJbD/rBkGrwtW8="; 29 + }; 30 + 31 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 32 + 33 + nativeBuildInputs = [ 34 + setuptools-scm 35 + ]; 36 + 37 + propagatedBuildInputs = [ 38 + aiohttp 39 + ]; 40 + 41 + checkInputs = [ 42 + pytestCheckHook 43 + ]; 44 + 45 + pythonImportsCheck = [ 46 + "ukrainealarm" 47 + "ukrainealarm.client" 48 + ]; 49 + 50 + meta = with lib; { 51 + changelog = "https://github.com/PaulAnnekov/ukrainealarm/releases/tag/v${version}"; 52 + description = "Implements api.ukrainealarm.com API that returns info about Ukraine air raid alarms"; 53 + homepage = "https://github.com/PaulAnnekov/ukrainealarm"; 54 + license = licenses.mit; 55 + maintainers = with maintainers; [ hexa ]; 56 + }; 57 + } 58 +
+3 -3
pkgs/development/tools/continuous-integration/jenkins/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "jenkins"; 7 - version = "2.332.2"; 7 + version = "2.332.3"; 8 8 9 9 src = fetchurl { 10 - url = "http://get.jenkins.io/war-stable/${version}/jenkins.war"; 11 - sha256 = "0z0igaq29nsxbkdzqfgrh10206a7ndsvz79bj8078hq8hqvl3an7"; 10 + url = "https://get.jenkins.io/war-stable/${version}/jenkins.war"; 11 + sha256 = "sha256-0ZPxearfOnzrYa3rw6tRIYrEp4UriJMv8ztE/XvmAQ8="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ makeWrapper ];
+1 -1
pkgs/development/tools/devpi-server/default.nix
··· 46 46 pyramid 47 47 strictyaml 48 48 waitress 49 - ]; 49 + ] ++ passlib.extras-require.argon2; 50 50 51 51 checkInputs = [ 52 52 beautifulsoup4
+2 -1
pkgs/development/tools/misc/gnum4/default.nix
··· 16 16 17 17 doCheck = false; 18 18 19 - configureFlags = [ "--with-syscmd-shell=${stdenv.shell}" ]; 19 + configureFlags = [ "--with-syscmd-shell=${stdenv.shell}" ] 20 + ++ lib.optional stdenv.hostPlatform.isMinGW "CFLAGS=-fno-stack-protector"; 20 21 21 22 meta = { 22 23 description = "GNU M4, a macro processor";
+8
pkgs/development/tools/misc/stlink/default.nix
··· 1 1 { lib 2 2 , stdenv 3 3 , fetchFromGitHub 4 + , fetchpatch 4 5 , cmake 5 6 , libusb1 6 7 , gtk3 ··· 26 27 rev = "v${version}"; 27 28 sha256 = "03xypffpbp4imrczbxmq69vgkr7mbp0ps9dk815br5wwlz6vgygl"; 28 29 }; 30 + 31 + patches = [ 32 + (fetchpatch { 33 + url = "https://github.com/stlink-org/stlink/commit/468b1d2daa853b975c33ab69876c486734f2c6a7.diff"; 34 + sha256 = "sha256-ueSi/zc7xbOATl0yBtCL4U64IQ/yqu6sMYDOiPl1JBI="; 35 + }) 36 + ]; 29 37 30 38 buildInputs = [ 31 39 libusb1'
+18 -8
pkgs/games/anki/bin.nix
··· 1 - { fetchurl, stdenv, lib, buildFHSUserEnv, appimageTools, writeShellScript, anki, undmg }: 1 + { fetchurl, stdenv, lib, buildFHSUserEnv, appimageTools, writeShellScript, anki, undmg, zstd }: 2 2 3 3 let 4 4 pname = "anki-bin"; 5 5 # Update hashes for both Linux and Darwin! 6 - version = "2.1.49"; 6 + version = "2.1.51"; 7 7 8 8 sources = { 9 9 linux = fetchurl { 10 - url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-linux.tar.bz2"; 11 - sha256 = "sha256-uG39g9CXnquArFsxtFHWWoDaNwu8y2KKh+SqGt8aqi0="; 10 + url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-linux-qt6.tar.zst"; 11 + sha256 = "sha256-ZKVc+TvkNu5mGgibhRIuoLuIfvyoVDy+c4h+Apz9P+0="; 12 12 }; 13 - darwin = fetchurl { 14 - url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac.dmg"; 15 - sha256 = "sha256-sEVWZQpICL7RYrOuPm1Y5XhzPxCwNk1WGP1rctTtE4Y="; 13 + 14 + # For some reason anki distributes completely separate dmg-files for the aarch64 version and the x86_64 version 15 + darwin-x86_64 = fetchurl { 16 + url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-intel-qt6.dmg"; 17 + sha256 = "sha256-wZMJEbcpezVAuBSKlwNTHlqjp0FfmyDB7XD6BBuJhyA="; 18 + }; 19 + darwin-aarch64 = fetchurl { 20 + url = "https://github.com/ankitects/anki/releases/download/${version}/anki-${version}-mac-apple-qt6.dmg"; 21 + sha256 = "sha256-6RDTYKoisX5DJ9VPWrP9VH9DCABabb9MB3nG4S8jtR0="; 16 22 }; 17 23 }; 18 24 19 25 unpacked = stdenv.mkDerivation { 20 26 inherit pname version; 21 27 28 + nativeBuildInputs = [ zstd ]; 22 29 src = sources.linux; 23 30 24 31 installPhase = '' ··· 47 54 if stdenv.isLinux then buildFHSUserEnv (appimageTools.defaultFhsEnvArgs // { 48 55 name = "anki"; 49 56 57 + # Dependencies of anki 58 + targetPkgs = pkgs: (with pkgs; [ xorg.libxkbfile krb5 ]); 59 + 50 60 runScript = writeShellScript "anki-wrapper.sh" '' 51 61 exec ${unpacked}/bin/anki 52 62 ''; ··· 63 73 }) else stdenv.mkDerivation { 64 74 inherit pname version passthru; 65 75 66 - src = sources.darwin; 76 + src = if stdenv.isAarch64 then sources.darwin-aarch64 else sources.darwin-x86_64; 67 77 68 78 nativeBuildInputs = [ undmg ]; 69 79 sourceRoot = ".";
+2 -2
pkgs/games/polymc/default.nix
··· 18 18 19 19 mkDerivation rec { 20 20 pname = "polymc"; 21 - version = "1.2.1"; 21 + version = "1.2.2"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "PolyMC"; 25 25 repo = "PolyMC"; 26 26 rev = version; 27 - sha256 = "sha256-pnMmmeIKAaX+z1YzzowotjaG/HKdiqcz2tJ5eGRR77I="; 27 + sha256 = "sha256-lxiMz7vuq+BkNVjWWJbPUk68DSe8zVZPcvZ1iXDsfCY="; 28 28 fetchSubmodules = true; 29 29 }; 30 30
+4 -1
pkgs/misc/flashfocus/default.nix
··· 1 - { lib, python3 }: 1 + { lib, python3, netcat-openbsd }: 2 2 3 3 python3.pkgs.buildPythonApplication rec { 4 4 pname = "flashfocus"; ··· 12 12 postPatch = '' 13 13 substituteInPlace setup.py \ 14 14 --replace "pyyaml>=5.1,<6.0" "pyyaml>=5.1" 15 + 16 + substituteInPlace bin/nc_flash_window \ 17 + --replace "nc" "${lib.getExe netcat-openbsd}" 15 18 ''; 16 19 17 20 nativeBuildInputs = with python3.pkgs; [
+39
pkgs/os-specific/linux/uhk-agent/default.nix
··· 1 + { appimageTools, lib, fetchurl, polkit, udev }: 2 + let 3 + pname = "uhk-agent"; 4 + version = "1.5.17"; 5 + src = fetchurl { 6 + url = "https://github.com/UltimateHackingKeyboard/agent/releases/download/v${version}/UHK.Agent-${version}-linux-x86_64.AppImage"; 7 + name = "${pname}-${version}.AppImage"; 8 + sha256 = "sha256-auOoTTRmkXVDDvcmRFzQIStNlbai8bTBLb/KUjk6EAc="; 9 + }; 10 + 11 + appimageContents = appimageTools.extract { 12 + name = "${pname}-${version}"; 13 + inherit src; 14 + }; 15 + in appimageTools.wrapType2 { 16 + inherit pname version src; 17 + 18 + extraPkgs = pkgs: with pkgs; [ polkit udev ]; 19 + 20 + extraInstallCommands = '' 21 + mv $out/bin/${pname}-${version} $out/bin/${pname} 22 + 23 + install -m 444 -D ${appimageContents}/${pname}.desktop -t $out/share/applications 24 + install -m 644 -D ${appimageContents}/resources/rules/50-uhk60.rules $out/rules/50-uhk60.rules 25 + substituteInPlace $out/share/applications/${pname}.desktop \ 26 + --replace 'Exec=AppRun' 'Exec=${pname}' 27 + cp -r ${appimageContents}/usr/share/icons $out/share 28 + ''; 29 + # wrapType2 does not passthru pname+version 30 + passthru.version = version; 31 + 32 + meta = with lib; { 33 + description = "Agent is the configuration application of the Ultimate Hacking Keyboard"; 34 + homepage = "https://github.com/UltimateHackingKeyboard/agent"; 35 + license = licenses.unfreeRedistributable; 36 + maintainers = with maintainers; [ ngiger ]; 37 + platforms = [ "x86_64-linux" ]; 38 + }; 39 + }
+20
pkgs/os-specific/linux/uhk-udev-rules/default.nix
··· 1 + { lib, stdenv, uhk-agent }: 2 + 3 + stdenv.mkDerivation { 4 + pname = "uhk-udev-rules"; 5 + inherit (uhk-agent) version; 6 + 7 + dontUnpack = true; 8 + dontBuild = true; 9 + installPhase = '' 10 + runHook preInstall 11 + install -D -m 644 ${uhk-agent.out}/rules/50-uhk60.rules $out/lib/udev/rules.d/50-uhk60.rules 12 + runHook postInstall 13 + ''; 14 + 15 + meta = { 16 + description = "udev rules for UHK keyboards from https://ultimatehackingkeyboard.com"; 17 + inherit (uhk-agent.meta) license; 18 + maintainers = [ lib.maintainers.ngiger ]; 19 + }; 20 + }
+1 -1
pkgs/os-specific/linux/usbrelay/daemon.nix
··· 25 25 install -m 644 -D usbrelayd $out/bin/usbrelayd 26 26 install -m 644 -D usbrelayd.service $out/lib/systemd/system/usbrelayd.service 27 27 install -m 644 -D 50-usbrelay.rules $out/lib/udev/rules.d/50-usbrelay.rules 28 + install -m 644 -D usbrelayd.conf $out/etc/usbrelayd.conf # include this as an example 28 29 runHook postInstall 29 30 ''; 30 - # TODO for later releases: install -D usbrelayd.conf $out/etc/usbrelayd.conf # include this as an example 31 31 32 32 meta = { 33 33 description = "USB Relay MQTT service";
+11 -3
pkgs/os-specific/linux/usbrelay/default.nix
··· 1 - { stdenv, lib, fetchFromGitHub, hidapi }: 1 + { stdenv, lib, fetchFromGitHub, hidapi, installShellFiles }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "usbrelay"; 4 - version = "0.9"; 4 + version = "1.0"; 5 5 6 6 src = fetchFromGitHub { 7 7 owner = "darrylb123"; 8 8 repo = "usbrelay"; 9 9 rev = version; 10 - sha256 = "sha256-bxME4r5W5bZKxMZ/Svi1EenqHKVWIjU6iiKaM8U6lmA="; 10 + sha256 = "sha256-5zgpN4a+r0tmw0ISTJM+d9mo+L/qwUvpWPSsykuG0cg="; 11 11 }; 12 12 13 + nativeBuildInputs = [ 14 + installShellFiles 15 + ]; 16 + 13 17 buildInputs = [ 14 18 hidapi 15 19 ]; ··· 18 22 "DIR_VERSION=${version}" 19 23 "PREFIX=${placeholder "out"}" 20 24 ]; 25 + 26 + postInstall = '' 27 + installManPage usbrelay.1 28 + ''; 21 29 22 30 meta = with lib; { 23 31 description = "Tool to control USB HID relays";
+11 -6
pkgs/servers/computing/slurm/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, pkg-config, libtool, curl 2 - , python3, munge, perl, pam, zlib, shadow, coreutils 2 + , python3, munge, perl, pam, shadow, coreutils 3 3 , ncurses, libmysqlclient, gtk2, lua, hwloc, numactl 4 4 , readline, freeipmi, xorg, lz4, rdma-core, nixosTests 5 5 , pmix 6 + , libjwt 7 + , libyaml 8 + , json_c 6 9 # enable internal X11 support via libssh2 7 10 , enableX11 ? true 8 11 }: 9 12 10 13 stdenv.mkDerivation rec { 11 14 pname = "slurm"; 12 - version = "21.08.7.1"; 15 + version = "21.08.8.2"; 13 16 14 17 # N.B. We use github release tags instead of https://www.schedmd.com/downloads.php 15 18 # because the latter does not keep older releases. ··· 18 21 repo = "slurm"; 19 22 # The release tags use - instead of . 20 23 rev = "${pname}-${builtins.replaceStrings ["."] ["-"] version}"; 21 - sha256 = "1rhhfiwpfrg3mpdpvmdl3qz20ydi5m88dfv9hhwqm95sldqb6qw1"; 24 + sha256 = "1n9gn879lff3iv2yi163fv2cwymgfqigh0jxs2kklc97g3nn23yx"; 22 25 }; 23 26 24 27 outputs = [ "out" "dev" ]; ··· 46 49 47 50 nativeBuildInputs = [ pkg-config libtool python3 ]; 48 51 buildInputs = [ 49 - curl python3 munge perl pam zlib 52 + curl python3 munge perl pam 50 53 libmysqlclient ncurses gtk2 lz4 rdma-core 51 54 lua hwloc numactl readline freeipmi shadow.su 52 - pmix 55 + pmix json_c libjwt libyaml 53 56 ] ++ lib.optionals enableX11 [ xorg.xauth ]; 54 57 55 58 configureFlags = with lib; 56 59 [ "--with-freeipmi=${freeipmi}" 57 60 "--with-hwloc=${hwloc.dev}" 61 + "--with-json=${json_c.dev}" 62 + "--with-jwt=${libjwt}" 58 63 "--with-lz4=${lz4.dev}" 59 64 "--with-munge=${munge}" 60 - "--with-zlib=${zlib}" 65 + "--with-yaml=${libyaml}" 61 66 "--with-ofed=${rdma-core}" 62 67 "--sysconfdir=/etc/slurm" 63 68 "--with-pmix=${pmix}"
+5 -1
pkgs/servers/home-assistant/component-packages.nix
··· 2 2 # Do not edit! 3 3 4 4 { 5 - version = "2022.5.2"; 5 + version = "2022.5.3"; 6 6 components = { 7 7 "abode" = ps: with ps; [ 8 8 abodepy ··· 2823 2823 ]; 2824 2824 "uk_transport" = ps: with ps; [ 2825 2825 ]; 2826 + "ukraine_alarm" = ps: with ps; [ 2827 + ukrainealarm 2828 + ]; 2826 2829 "unifi" = ps: with ps; [ 2827 2830 aiounifi 2828 2831 ]; ··· 3710 3713 "twinkly" 3711 3714 "twitch" 3712 3715 "uk_transport" 3716 + "ukraine_alarm" 3713 3717 "unifi" 3714 3718 "unifi_direct" 3715 3719 "universal"
+2 -2
pkgs/servers/home-assistant/default.nix
··· 179 179 extraPackagesFile = writeText "home-assistant-packages" (lib.concatMapStringsSep "\n" (pkg: pkg.pname) extraBuildInputs); 180 180 181 181 # Don't forget to run parse-requirements.py after updating 182 - hassVersion = "2022.5.2"; 182 + hassVersion = "2022.5.3"; 183 183 184 184 in python.pkgs.buildPythonApplication rec { 185 185 pname = "homeassistant"; ··· 197 197 owner = "home-assistant"; 198 198 repo = "core"; 199 199 rev = version; 200 - hash = "sha256-n8lM1Z5fkZRW0E9J7nPRYntoaUuug9XPoRAKl+5XC6Y="; 200 + hash = "sha256-g15bMS6xOz6w7JLSVP/tqlKBGWkFsG093GF7fcoHvlg="; 201 201 }; 202 202 203 203 # leave this in, so users don't have to constantly update their downstream patch handling
+2 -2
pkgs/servers/home-assistant/frontend.nix
··· 4 4 # the frontend version corresponding to a specific home-assistant version can be found here 5 5 # https://github.com/home-assistant/home-assistant/blob/master/homeassistant/components/frontend/manifest.json 6 6 pname = "home-assistant-frontend"; 7 - version = "20220504.0"; 7 + version = "20220504.1"; 8 8 format = "wheel"; 9 9 10 10 src = fetchPypi { ··· 12 12 pname = "home_assistant_frontend"; 13 13 dist = "py3"; 14 14 python = "py3"; 15 - sha256 = "sha256-CYhUId5SGfPX9beAZH0ZemwciVDxchbDcTvQcRhJwog="; 15 + sha256 = "sha256-EU9I/0+EmcNr7eYq3Z5J5/KiWu+Qz0+wn7UZMJFBxp0="; 16 16 }; 17 17 18 18 # there is nothing to strip in this package
+4 -3
pkgs/servers/mautrix-facebook/default.nix
··· 1 1 { enableSystemd ? stdenv.isLinux 2 2 , fetchFromGitHub 3 + , fetchpatch 3 4 , lib 4 5 , python3 5 6 , stdenv ··· 7 8 8 9 python3.pkgs.buildPythonPackage rec { 9 10 pname = "mautrix-facebook"; 10 - version = "0.4.0"; 11 + version = "unstable-2022-05-06"; 11 12 12 13 src = fetchFromGitHub { 13 14 owner = "mautrix"; 14 15 repo = "facebook"; 15 - rev = "v${version}"; 16 - hash = "sha256-Yc8W8A11dnXrJdLtu/rJHTVlu2pEawXn5xuT8Ez+h9U="; 16 + rev = "5e2c4e7f5a38e3c5d984d690c0ebee9b6bb4768c"; 17 + hash = "sha256-ukFtVRrmaJVVwgp5siwEwbfq6Yq5rmu3XJA5H2n/eJU="; 17 18 }; 18 19 19 20 propagatedBuildInputs = with python3.pkgs; [
+1 -1
pkgs/servers/radicale/3.x.nix
··· 20 20 passlib 21 21 vobject 22 22 python-dateutil 23 - ]; 23 + ] ++ passlib.extras-require.bcrypt; 24 24 25 25 checkInputs = with python3.pkgs; [ 26 26 pytestCheckHook
+4
pkgs/servers/x11/xorg/overrides.nix
··· 351 351 outputs = [ "out" "dev" ]; 352 352 }); 353 353 354 + xcbutilerrors = super.xcbutilerrors.overrideAttrs (attrs: { 355 + outputs = [ "out" "dev" ]; # mainly to get rid of propagating others 356 + }); 357 + 354 358 xcbutilcursor = super.xcbutilcursor.overrideAttrs (attrs: { 355 359 outputs = [ "out" "dev" ]; 356 360 meta = attrs.meta // { maintainers = [ lib.maintainers.lovek323 ]; };
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 3 package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package; 4 4 in 5 5 package.override rec { 6 - version = "1.25.0"; 6 + version = "1.25.1"; 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 = "Wp3+N3np/biNw2xaR79PpQ/S7o3FftjH6AgyMLM+ya8="; 13 + sha256 = "IMRpT4BQvnsk8rl2bxiUbzVp4UcEaPLsniKneOq7Av4="; 14 14 }; 15 15 16 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+418 -4165
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 4 4 5 5 let 6 6 sources = { 7 - "@ampproject/remapping-2.0.3" = { 8 - name = "_at_ampproject_slash_remapping"; 9 - packageName = "@ampproject/remapping"; 10 - version = "2.0.3"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.0.3.tgz"; 13 - sha512 = "DmIAguV77yFP0MGVFWknCMgSLAtsLR3VlRTteR6xgMpIfYtwaZuMvjGv5YlpiqN7S/5q87DHyuIx8oa15kiyag=="; 14 - }; 15 - }; 16 7 "@ampproject/remapping-2.1.2" = { 17 8 name = "_at_ampproject_slash_remapping"; 18 9 packageName = "@ampproject/remapping"; ··· 22 13 sha512 = "hoyByceqwKirw7w3Z7gnIIZC3Wx3J484Y3L/cMpXFbr7d9ZQj2mODrirNzcJa+SM3UlpWXYvKV4RlRpFXlWgXg=="; 23 14 }; 24 15 }; 25 - "@babel/cli-7.17.0" = { 26 - name = "_at_babel_slash_cli"; 27 - packageName = "@babel/cli"; 28 - version = "7.17.0"; 29 - src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.17.0.tgz"; 31 - sha512 = "es10YH/ejXbg551vtnmEzIPe3MQRNOS644o3pf8vUr1tIeNzVNlP8BBvs1Eh7roh5A+k2fEHUas+ZptOWHA1fQ=="; 32 - }; 33 - }; 34 - "@babel/cli-https://registry.npmjs.org/@babel/cli/-/cli-7.17.0.tgz" = { 35 - name = "_at_babel_slash_cli"; 36 - packageName = "@babel/cli"; 37 - version = 1; 38 - src = fetchurl { 39 - name = "cli-1.tar.gz"; 40 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.17.0.tgz"; 41 - sha512 = "es10YH/ejXbg551vtnmEzIPe3MQRNOS644o3pf8vUr1tIeNzVNlP8BBvs1Eh7roh5A+k2fEHUas+ZptOWHA1fQ=="; 42 - }; 43 - }; 44 16 "@babel/code-frame-7.16.7" = { 45 17 name = "_at_babel_slash_code-frame"; 46 18 packageName = "@babel/code-frame"; ··· 50 22 sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 51 23 }; 52 24 }; 53 - "@babel/compat-data-7.17.0" = { 54 - name = "_at_babel_slash_compat-data"; 55 - packageName = "@babel/compat-data"; 56 - version = "7.17.0"; 57 - src = fetchurl { 58 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.0.tgz"; 59 - sha512 = "392byTlpGWXMv4FbyWw3sAZ/FrW/DrwqLGXpy0mbyNe9Taqv1mg9yON5/o0cnr8XYCkFTZbC1eV+c+LAROgrng=="; 60 - }; 61 - }; 62 25 "@babel/compat-data-7.17.7" = { 63 26 name = "_at_babel_slash_compat-data"; 64 27 packageName = "@babel/compat-data"; ··· 68 31 sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; 69 32 }; 70 33 }; 71 - "@babel/core-7.17.0" = { 72 - name = "_at_babel_slash_core"; 73 - packageName = "@babel/core"; 74 - version = "7.17.0"; 75 - src = fetchurl { 76 - url = "https://registry.npmjs.org/@babel/core/-/core-7.17.0.tgz"; 77 - sha512 = "x/5Ea+RO5MvF9ize5DeVICJoVrNv0Mi2RnIABrZEKYvPEpldXwauPkgvYA17cKa6WpU3LoYvYbuEMFtSNFsarA=="; 78 - }; 79 - }; 80 - "@babel/core-7.17.8" = { 34 + "@babel/core-7.17.9" = { 81 35 name = "_at_babel_slash_core"; 82 36 packageName = "@babel/core"; 83 - version = "7.17.8"; 84 - src = fetchurl { 85 - url = "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz"; 86 - sha512 = "OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ=="; 87 - }; 88 - }; 89 - "@babel/generator-7.17.0" = { 90 - name = "_at_babel_slash_generator"; 91 - packageName = "@babel/generator"; 92 - version = "7.17.0"; 37 + version = "7.17.9"; 93 38 src = fetchurl { 94 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.0.tgz"; 95 - sha512 = "I3Omiv6FGOC29dtlZhkfXO6pgkmukJSlT26QjVvS1DGZe/NzSVCPG41X0tS21oZkJYlovfj9qDWgKP+Cn4bXxw=="; 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.17.9.tgz"; 40 + sha512 = "5ug+SfZCpDAkVp9SFIZAzlW18rlzsOcJGaetCjkySnrXXDUw9AR8cDUm1iByTmdWM6yxX6/zycaV76w3YTF2gw=="; 96 41 }; 97 42 }; 98 - "@babel/generator-7.17.7" = { 43 + "@babel/generator-7.17.9" = { 99 44 name = "_at_babel_slash_generator"; 100 45 packageName = "@babel/generator"; 101 - version = "7.17.7"; 46 + version = "7.17.9"; 102 47 src = fetchurl { 103 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz"; 104 - sha512 = "oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w=="; 48 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.9.tgz"; 49 + sha512 = "rAdDousTwxbIxbz5I7GEQ3lUip+xVCXooZNbsydCWs3xA7ZsYOv+CFRdzGxRX78BmQHu9B1Eso59AOZQOJDEdQ=="; 105 50 }; 106 51 }; 107 52 "@babel/helper-annotate-as-pure-7.16.7" = { ··· 122 67 sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; 123 68 }; 124 69 }; 125 - "@babel/helper-compilation-targets-7.16.7" = { 126 - name = "_at_babel_slash_helper-compilation-targets"; 127 - packageName = "@babel/helper-compilation-targets"; 128 - version = "7.16.7"; 129 - src = fetchurl { 130 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.7.tgz"; 131 - sha512 = "mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="; 132 - }; 133 - }; 134 70 "@babel/helper-compilation-targets-7.17.7" = { 135 71 name = "_at_babel_slash_helper-compilation-targets"; 136 72 packageName = "@babel/helper-compilation-targets"; ··· 140 76 sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; 141 77 }; 142 78 }; 143 - "@babel/helper-create-class-features-plugin-7.17.1" = { 144 - name = "_at_babel_slash_helper-create-class-features-plugin"; 145 - packageName = "@babel/helper-create-class-features-plugin"; 146 - version = "7.17.1"; 147 - src = fetchurl { 148 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.1.tgz"; 149 - sha512 = "JBdSr/LtyYIno/pNnJ75lBcqc3Z1XXujzPanHqjvvrhOA+DTceTFuJi8XjmWTZh4r3fsdfqaCMN0iZemdkxZHQ=="; 150 - }; 151 - }; 152 - "@babel/helper-create-class-features-plugin-7.17.6" = { 79 + "@babel/helper-create-class-features-plugin-7.17.9" = { 153 80 name = "_at_babel_slash_helper-create-class-features-plugin"; 154 81 packageName = "@babel/helper-create-class-features-plugin"; 155 - version = "7.17.6"; 82 + version = "7.17.9"; 156 83 src = fetchurl { 157 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz"; 158 - sha512 = "SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg=="; 84 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz"; 85 + sha512 = "kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ=="; 159 86 }; 160 87 }; 161 88 "@babel/helper-create-regexp-features-plugin-7.17.0" = { ··· 194 121 sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 195 122 }; 196 123 }; 197 - "@babel/helper-function-name-7.16.7" = { 124 + "@babel/helper-function-name-7.17.9" = { 198 125 name = "_at_babel_slash_helper-function-name"; 199 126 packageName = "@babel/helper-function-name"; 200 - version = "7.16.7"; 201 - src = fetchurl { 202 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; 203 - sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 204 - }; 205 - }; 206 - "@babel/helper-get-function-arity-7.16.7" = { 207 - name = "_at_babel_slash_helper-get-function-arity"; 208 - packageName = "@babel/helper-get-function-arity"; 209 - version = "7.16.7"; 127 + version = "7.17.9"; 210 128 src = fetchurl { 211 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; 212 - sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.17.9.tgz"; 130 + sha512 = "7cRisGlVtiVqZ0MW0/yFB4atgpGLWEHUVYnb448hZK4x+vih0YO5UoS11XIYtZYqHd0dIPMdUSv8q5K4LdMnIg=="; 213 131 }; 214 132 }; 215 133 "@babel/helper-hoist-variables-7.16.7" = { ··· 221 139 sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="; 222 140 }; 223 141 }; 224 - "@babel/helper-member-expression-to-functions-7.16.7" = { 225 - name = "_at_babel_slash_helper-member-expression-to-functions"; 226 - packageName = "@babel/helper-member-expression-to-functions"; 227 - version = "7.16.7"; 228 - src = fetchurl { 229 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz"; 230 - sha512 = "VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q=="; 231 - }; 232 - }; 233 142 "@babel/helper-member-expression-to-functions-7.17.7" = { 234 143 name = "_at_babel_slash_helper-member-expression-to-functions"; 235 144 packageName = "@babel/helper-member-expression-to-functions"; ··· 248 157 sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 249 158 }; 250 159 }; 251 - "@babel/helper-module-transforms-7.16.7" = { 252 - name = "_at_babel_slash_helper-module-transforms"; 253 - packageName = "@babel/helper-module-transforms"; 254 - version = "7.16.7"; 255 - src = fetchurl { 256 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.7.tgz"; 257 - sha512 = "gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng=="; 258 - }; 259 - }; 260 160 "@babel/helper-module-transforms-7.17.7" = { 261 161 name = "_at_babel_slash_helper-module-transforms"; 262 162 packageName = "@babel/helper-module-transforms"; ··· 302 202 sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="; 303 203 }; 304 204 }; 305 - "@babel/helper-simple-access-7.16.7" = { 306 - name = "_at_babel_slash_helper-simple-access"; 307 - packageName = "@babel/helper-simple-access"; 308 - version = "7.16.7"; 309 - src = fetchurl { 310 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.7.tgz"; 311 - sha512 = "ZIzHVyoeLMvXMN/vok/a4LWRy8G2v205mNP0XOuf9XRLyX5/u9CnVulUtDgUTama3lT+bf/UqucuZjqiGuTS1g=="; 312 - }; 313 - }; 314 205 "@babel/helper-simple-access-7.17.7" = { 315 206 name = "_at_babel_slash_helper-simple-access"; 316 207 packageName = "@babel/helper-simple-access"; ··· 365 256 sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 366 257 }; 367 258 }; 368 - "@babel/helpers-7.17.0" = { 259 + "@babel/helpers-7.17.9" = { 369 260 name = "_at_babel_slash_helpers"; 370 261 packageName = "@babel/helpers"; 371 - version = "7.17.0"; 262 + version = "7.17.9"; 372 263 src = fetchurl { 373 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.0.tgz"; 374 - sha512 = "Xe/9NFxjPwELUvW2dsukcMZIp6XwPSbI4ojFBJuX5ramHuVE22SVcZIwqzdWo5uCgeTXW8qV97lMvSOjq+1+nQ=="; 264 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz"; 265 + sha512 = "cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q=="; 375 266 }; 376 267 }; 377 - "@babel/helpers-7.17.8" = { 378 - name = "_at_babel_slash_helpers"; 379 - packageName = "@babel/helpers"; 380 - version = "7.17.8"; 381 - src = fetchurl { 382 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz"; 383 - sha512 = "QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw=="; 384 - }; 385 - }; 386 - "@babel/highlight-7.16.10" = { 268 + "@babel/highlight-7.17.9" = { 387 269 name = "_at_babel_slash_highlight"; 388 270 packageName = "@babel/highlight"; 389 - version = "7.16.10"; 271 + version = "7.17.9"; 390 272 src = fetchurl { 391 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"; 392 - sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; 273 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz"; 274 + sha512 = "J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg=="; 393 275 }; 394 276 }; 395 - "@babel/parser-7.17.0" = { 277 + "@babel/parser-7.17.9" = { 396 278 name = "_at_babel_slash_parser"; 397 279 packageName = "@babel/parser"; 398 - version = "7.17.0"; 280 + version = "7.17.9"; 399 281 src = fetchurl { 400 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.0.tgz"; 401 - sha512 = "VKXSCQx5D8S04ej+Dqsr1CzYvvWgf20jIw2D+YhQCrIlr2UZGaDds23Y0xg75/skOxpLCRpUZvk/1EAVkGoDOw=="; 402 - }; 403 - }; 404 - "@babel/parser-7.17.8" = { 405 - name = "_at_babel_slash_parser"; 406 - packageName = "@babel/parser"; 407 - version = "7.17.8"; 408 - src = fetchurl { 409 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz"; 410 - sha512 = "BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ=="; 282 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.9.tgz"; 283 + sha512 = "vqUSBLP8dQHFPdPi9bc5GK9vRkYHJ49fsZdtoJ8EQ8ibpwk5rPKfvNIwChB0KVXcIjcepEBBd2VHC5r9Gy8ueg=="; 411 284 }; 412 285 }; 413 286 "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { ··· 446 319 sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww=="; 447 320 }; 448 321 }; 449 - "@babel/plugin-proposal-class-static-block-7.16.7" = { 450 - name = "_at_babel_slash_plugin-proposal-class-static-block"; 451 - packageName = "@babel/plugin-proposal-class-static-block"; 452 - version = "7.16.7"; 453 - src = fetchurl { 454 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz"; 455 - sha512 = "dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw=="; 456 - }; 457 - }; 458 322 "@babel/plugin-proposal-class-static-block-7.17.6" = { 459 323 name = "_at_babel_slash_plugin-proposal-class-static-block"; 460 324 packageName = "@babel/plugin-proposal-class-static-block"; ··· 464 328 sha512 = "X/tididvL2zbs7jZCeeRJ8167U/+Ac135AM6jCAx6gYXDUviZV5Ku9UDvWS2NCuWlFjIRXklYhwo6HhAC7ETnA=="; 465 329 }; 466 330 }; 467 - "@babel/plugin-proposal-decorators-7.17.8" = { 331 + "@babel/plugin-proposal-decorators-7.17.9" = { 468 332 name = "_at_babel_slash_plugin-proposal-decorators"; 469 333 packageName = "@babel/plugin-proposal-decorators"; 470 - version = "7.17.8"; 334 + version = "7.17.9"; 471 335 src = fetchurl { 472 - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.8.tgz"; 473 - sha512 = "U69odN4Umyyx1xO1rTII0IDkAEC+RNlcKXtqOblfpzqy1C+aOplb76BQNq0+XdpVkOaPlpEDwd++joY8FNFJKA=="; 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.17.9.tgz"; 337 + sha512 = "EfH2LZ/vPa2wuPwJ26j+kYRkaubf89UlwxKXtxqEm57HrgSEYDB8t4swFP+p8LcI9yiP9ZRJJjo/58hS6BnaDA=="; 474 338 }; 475 339 }; 476 340 "@babel/plugin-proposal-dynamic-import-7.16.7" = { ··· 525 389 src = fetchurl { 526 390 url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"; 527 391 sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="; 528 - }; 529 - }; 530 - "@babel/plugin-proposal-object-rest-spread-7.16.7" = { 531 - name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 532 - packageName = "@babel/plugin-proposal-object-rest-spread"; 533 - version = "7.16.7"; 534 - src = fetchurl { 535 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz"; 536 - sha512 = "3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA=="; 537 392 }; 538 393 }; 539 394 "@babel/plugin-proposal-object-rest-spread-7.17.3" = { ··· 806 661 sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; 807 662 }; 808 663 }; 809 - "@babel/plugin-transform-destructuring-7.16.7" = { 810 - name = "_at_babel_slash_plugin-transform-destructuring"; 811 - packageName = "@babel/plugin-transform-destructuring"; 812 - version = "7.16.7"; 813 - src = fetchurl { 814 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz"; 815 - sha512 = "VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A=="; 816 - }; 817 - }; 818 664 "@babel/plugin-transform-destructuring-7.17.7" = { 819 665 name = "_at_babel_slash_plugin-transform-destructuring"; 820 666 packageName = "@babel/plugin-transform-destructuring"; ··· 896 742 sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 897 743 }; 898 744 }; 899 - "@babel/plugin-transform-modules-commonjs-7.16.8" = { 900 - name = "_at_babel_slash_plugin-transform-modules-commonjs"; 901 - packageName = "@babel/plugin-transform-modules-commonjs"; 902 - version = "7.16.8"; 903 - src = fetchurl { 904 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz"; 905 - sha512 = "oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA=="; 906 - }; 907 - }; 908 - "@babel/plugin-transform-modules-commonjs-7.17.7" = { 745 + "@babel/plugin-transform-modules-commonjs-7.17.9" = { 909 746 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 910 747 packageName = "@babel/plugin-transform-modules-commonjs"; 911 - version = "7.17.7"; 912 - src = fetchurl { 913 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz"; 914 - sha512 = "ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA=="; 915 - }; 916 - }; 917 - "@babel/plugin-transform-modules-systemjs-7.16.7" = { 918 - name = "_at_babel_slash_plugin-transform-modules-systemjs"; 919 - packageName = "@babel/plugin-transform-modules-systemjs"; 920 - version = "7.16.7"; 748 + version = "7.17.9"; 921 749 src = fetchurl { 922 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz"; 923 - sha512 = "DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw=="; 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz"; 751 + sha512 = "2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw=="; 924 752 }; 925 753 }; 926 754 "@babel/plugin-transform-modules-systemjs-7.17.8" = { ··· 986 814 sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="; 987 815 }; 988 816 }; 989 - "@babel/plugin-transform-regenerator-7.16.7" = { 817 + "@babel/plugin-transform-regenerator-7.17.9" = { 990 818 name = "_at_babel_slash_plugin-transform-regenerator"; 991 819 packageName = "@babel/plugin-transform-regenerator"; 992 - version = "7.16.7"; 820 + version = "7.17.9"; 993 821 src = fetchurl { 994 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 995 - sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz"; 823 + sha512 = "Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ=="; 996 824 }; 997 825 }; 998 826 "@babel/plugin-transform-reserved-words-7.16.7" = { ··· 1085 913 sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g=="; 1086 914 }; 1087 915 }; 1088 - "@babel/preset-env-https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz" = { 1089 - name = "_at_babel_slash_preset-env"; 1090 - packageName = "@babel/preset-env"; 1091 - version = 1; 1092 - src = fetchurl { 1093 - name = "preset-env-1.tar.gz"; 1094 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz"; 1095 - sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g=="; 1096 - }; 1097 - }; 1098 916 "@babel/preset-modules-0.1.5" = { 1099 917 name = "_at_babel_slash_preset-modules"; 1100 918 packageName = "@babel/preset-modules"; ··· 1113 931 sha512 = "WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ=="; 1114 932 }; 1115 933 }; 1116 - "@babel/preset-typescript-https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz" = { 1117 - name = "_at_babel_slash_preset-typescript"; 1118 - packageName = "@babel/preset-typescript"; 1119 - version = 1; 1120 - src = fetchurl { 1121 - name = "preset-typescript-1.tar.gz"; 1122 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz"; 1123 - sha512 = "WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ=="; 1124 - }; 1125 - }; 1126 - "@babel/runtime-7.17.0" = { 934 + "@babel/runtime-7.17.9" = { 1127 935 name = "_at_babel_slash_runtime"; 1128 936 packageName = "@babel/runtime"; 1129 - version = "7.17.0"; 937 + version = "7.17.9"; 1130 938 src = fetchurl { 1131 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.0.tgz"; 1132 - sha512 = "etcO/ohMNaNA2UBdaXBBSX/3aEzFMRrVfaPv8Ptc0k+cWpWW0QFiGZ2XnVqQZI1Cf734LbPGmqBKWESfW4x/dQ=="; 1133 - }; 1134 - }; 1135 - "@babel/runtime-7.17.8" = { 1136 - name = "_at_babel_slash_runtime"; 1137 - packageName = "@babel/runtime"; 1138 - version = "7.17.8"; 1139 - src = fetchurl { 1140 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.8.tgz"; 1141 - sha512 = "dQpEpK0O9o6lj6oPu0gRDbbnk+4LeHlNcBpspf6Olzt3GIX4P1lWF1gS+pHLDFlaJvbR6q7jCfQ08zA4QJBnmA=="; 939 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.17.9.tgz"; 940 + sha512 = "lSiBBvodq29uShpWGNbgFdKYNiFDo5/HIYsaCEY9ff4sb10x9jizo2+pRrSyF4jKZCXqgzuqBOQKbUm90gQwJg=="; 1142 941 }; 1143 942 }; 1144 943 "@babel/template-7.16.7" = { ··· 1150 949 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 1151 950 }; 1152 951 }; 1153 - "@babel/traverse-7.17.0" = { 1154 - name = "_at_babel_slash_traverse"; 1155 - packageName = "@babel/traverse"; 1156 - version = "7.17.0"; 1157 - src = fetchurl { 1158 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.0.tgz"; 1159 - sha512 = "fpFIXvqD6kC7c7PUNnZ0Z8cQXlarCLtCUpt2S1Dx7PjoRtCFffvOkHHSom+m5HIxMZn5bIBVb71lhabcmjEsqg=="; 1160 - }; 1161 - }; 1162 - "@babel/traverse-7.17.3" = { 952 + "@babel/traverse-7.17.9" = { 1163 953 name = "_at_babel_slash_traverse"; 1164 954 packageName = "@babel/traverse"; 1165 - version = "7.17.3"; 955 + version = "7.17.9"; 1166 956 src = fetchurl { 1167 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz"; 1168 - sha512 = "5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="; 957 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.9.tgz"; 958 + sha512 = "PQO8sDIJ8SIwipTPiR71kJQCKQYB5NGImbOviK8K+kg5xkNSYXLBupuX9QhatFowrsvo9Hj8WgArg3W7ijNAQw=="; 1169 959 }; 1170 960 }; 1171 961 "@babel/types-7.17.0" = { ··· 1204 994 sha512 = "hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA=="; 1205 995 }; 1206 996 }; 1207 - "@eslint/eslintrc-1.0.5" = { 997 + "@eslint/eslintrc-1.2.2" = { 1208 998 name = "_at_eslint_slash_eslintrc"; 1209 999 packageName = "@eslint/eslintrc"; 1210 - version = "1.0.5"; 1211 - src = fetchurl { 1212 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.0.5.tgz"; 1213 - sha512 = "BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ=="; 1214 - }; 1215 - }; 1216 - "@eslint/eslintrc-1.2.1" = { 1217 - name = "_at_eslint_slash_eslintrc"; 1218 - packageName = "@eslint/eslintrc"; 1219 - version = "1.2.1"; 1220 - src = fetchurl { 1221 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.1.tgz"; 1222 - sha512 = "bxvbYnBPN1Gibwyp6NrpnFzA3YtRL3BBAyEAFVIpNTm2Rn4Vy87GA5M4aSn3InRrlsbX5N0GW7XIx+U4SAEKdQ=="; 1223 - }; 1224 - }; 1225 - "@humanwhocodes/config-array-0.9.3" = { 1226 - name = "_at_humanwhocodes_slash_config-array"; 1227 - packageName = "@humanwhocodes/config-array"; 1228 - version = "0.9.3"; 1000 + version = "1.2.2"; 1229 1001 src = fetchurl { 1230 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.3.tgz"; 1231 - sha512 = "3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ=="; 1002 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.2.2.tgz"; 1003 + sha512 = "lTVWHs7O2hjBFZunXTZYnYqtB9GakA1lnxIf+gKq2nY5gxkkNi/lQvveW6t8gFdOHTg6nG50Xs95PrLqVpcaLg=="; 1232 1004 }; 1233 1005 }; 1234 1006 "@humanwhocodes/config-array-0.9.5" = { ··· 1265 1037 src = fetchurl { 1266 1038 url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz"; 1267 1039 sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 1268 - }; 1269 - }; 1270 - "@jest/console-27.5.0" = { 1271 - name = "_at_jest_slash_console"; 1272 - packageName = "@jest/console"; 1273 - version = "27.5.0"; 1274 - src = fetchurl { 1275 - url = "https://registry.npmjs.org/@jest/console/-/console-27.5.0.tgz"; 1276 - sha512 = "WUzX5neFb0IOQOy/7A2VhiGdxJKk85Xns2Oq29JaHmtnSel+BsjwyQZxzAs2Xxfd2i452fwdDG9ox/IWi81bdQ=="; 1277 1040 }; 1278 1041 }; 1279 1042 "@jest/console-27.5.1" = { ··· 1285 1048 sha512 = "kZ/tNpS3NXn0mlXXXPNuDZnb4c0oZ20r4K5eemM2k30ZC3G0T02nXUvyhf5YdbXWHPEJLc9qGLxEZ216MdL+Zg=="; 1286 1049 }; 1287 1050 }; 1288 - "@jest/core-27.5.0" = { 1289 - name = "_at_jest_slash_core"; 1290 - packageName = "@jest/core"; 1291 - version = "27.5.0"; 1292 - src = fetchurl { 1293 - url = "https://registry.npmjs.org/@jest/core/-/core-27.5.0.tgz"; 1294 - sha512 = "DcUTkZyon+dRozTEjy38Bgt3PIU51GdUJuz3uHKg5maGtmCaYqPUGiM3Xddqi7eIMC7E3fTGIlHqH9i0pTOy6Q=="; 1295 - }; 1296 - }; 1297 1051 "@jest/core-27.5.1" = { 1298 1052 name = "_at_jest_slash_core"; 1299 1053 packageName = "@jest/core"; ··· 1301 1055 src = fetchurl { 1302 1056 url = "https://registry.npmjs.org/@jest/core/-/core-27.5.1.tgz"; 1303 1057 sha512 = "AK6/UTrvQD0Cd24NSqmIA6rKsu0tKIxfiCducZvqxYdmMisOYAsdItspT+fQDQYARPf8XgjAFZi0ogW2agH5nQ=="; 1304 - }; 1305 - }; 1306 - "@jest/environment-27.5.0" = { 1307 - name = "_at_jest_slash_environment"; 1308 - packageName = "@jest/environment"; 1309 - version = "27.5.0"; 1310 - src = fetchurl { 1311 - url = "https://registry.npmjs.org/@jest/environment/-/environment-27.5.0.tgz"; 1312 - sha512 = "lg0JFsMaLKgpwzs0knOg21Z4OQwaJoBLutnmYzip4tyLTXP21VYWtYGpLXgx42fw/Mw05m1WDXWKgwR6WnsiTw=="; 1313 1058 }; 1314 1059 }; 1315 1060 "@jest/environment-27.5.1" = { ··· 1321 1066 sha512 = "/WQjhPJe3/ghaol/4Bq480JKXV/Rfw8nQdN7f41fM8VDHLcxKXou6QyXAh3EFr9/bVG3x74z1NWDkP87EiY8gA=="; 1322 1067 }; 1323 1068 }; 1324 - "@jest/fake-timers-27.5.0" = { 1325 - name = "_at_jest_slash_fake-timers"; 1326 - packageName = "@jest/fake-timers"; 1327 - version = "27.5.0"; 1328 - src = fetchurl { 1329 - url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.0.tgz"; 1330 - sha512 = "e3WrlpqSHq3HAQ03JFjTn8YCrsyg640/sr1rjkM2rNv8z1ufjudpv4xq6DvvTJYB6FuUrfg0g+7bSKPet5QfCQ=="; 1331 - }; 1332 - }; 1333 1069 "@jest/fake-timers-27.5.1" = { 1334 1070 name = "_at_jest_slash_fake-timers"; 1335 1071 packageName = "@jest/fake-timers"; ··· 1337 1073 src = fetchurl { 1338 1074 url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.5.1.tgz"; 1339 1075 sha512 = "/aPowoolwa07k7/oM3aASneNeBGCmGQsc3ugN4u6s4C/+s5M64MFo/+djTdiwcbQlRfFElGuDXWzaWj6QgKObQ=="; 1340 - }; 1341 - }; 1342 - "@jest/globals-27.5.0" = { 1343 - name = "_at_jest_slash_globals"; 1344 - packageName = "@jest/globals"; 1345 - version = "27.5.0"; 1346 - src = fetchurl { 1347 - url = "https://registry.npmjs.org/@jest/globals/-/globals-27.5.0.tgz"; 1348 - sha512 = "wWpMnTiR65Q4JD7fr2BqN+ZDbi99mmILnEM6u7AaX4geASEIVvQsiB4RCvwZrIX5YZCsAjviJQVq9CYddLABkg=="; 1349 1076 }; 1350 1077 }; 1351 1078 "@jest/globals-27.5.1" = { ··· 1357 1084 sha512 = "ZEJNB41OBQQgGzgyInAv0UUfDDj3upmHydjieSxFvTRuZElrx7tXg/uVQ5hYVEwiXs3+aMsAeEc9X7xiSKCm4Q=="; 1358 1085 }; 1359 1086 }; 1360 - "@jest/reporters-27.5.0" = { 1361 - name = "_at_jest_slash_reporters"; 1362 - packageName = "@jest/reporters"; 1363 - version = "27.5.0"; 1364 - src = fetchurl { 1365 - url = "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.0.tgz"; 1366 - sha512 = "DG+BmVSx2uaJSTKz5z1eScgHTQ6/cZ5CCKSpmpr4sXQPwV2V5aUMOBDwXX1MnqNRhH7/Rq9K97ynnocvho5aMA=="; 1367 - }; 1368 - }; 1369 1087 "@jest/reporters-27.5.1" = { 1370 1088 name = "_at_jest_slash_reporters"; 1371 1089 packageName = "@jest/reporters"; ··· 1373 1091 src = fetchurl { 1374 1092 url = "https://registry.npmjs.org/@jest/reporters/-/reporters-27.5.1.tgz"; 1375 1093 sha512 = "cPXh9hWIlVJMQkVk84aIvXuBB4uQQmFqZiacloFuGiP3ah1sbCxCosidXFDfqG8+6fO1oR2dTJTlsOy4VFmUfw=="; 1376 - }; 1377 - }; 1378 - "@jest/source-map-27.5.0" = { 1379 - name = "_at_jest_slash_source-map"; 1380 - packageName = "@jest/source-map"; 1381 - version = "27.5.0"; 1382 - src = fetchurl { 1383 - url = "https://registry.npmjs.org/@jest/source-map/-/source-map-27.5.0.tgz"; 1384 - sha512 = "0xr7VZ+JNCRrlCyRMYhquUm8eU3kNdGDaIW4s3L625bNjk273v9ZhAm3YczIuzJzYH0pnjT+QSCiZQegWKjeow=="; 1385 1094 }; 1386 1095 }; 1387 1096 "@jest/source-map-27.5.1" = { ··· 1393 1102 sha512 = "y9NIHUYF3PJRlHk98NdC/N1gl88BL08aQQgu4k4ZopQkCw9t9cV8mtl3TV8b/YCB8XaVTFrmUTAJvjsntDireg=="; 1394 1103 }; 1395 1104 }; 1396 - "@jest/test-result-27.5.0" = { 1397 - name = "_at_jest_slash_test-result"; 1398 - packageName = "@jest/test-result"; 1399 - version = "27.5.0"; 1400 - src = fetchurl { 1401 - url = "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.0.tgz"; 1402 - sha512 = "Lxecvx5mN6WIeynIyW0dWDQm8UPGMHvTwxUPK+OsZaqBDMGaNDSZtw53VoVk7HyT6AcRblMR/pfa0XucmH4hGw=="; 1403 - }; 1404 - }; 1405 1105 "@jest/test-result-27.5.1" = { 1406 1106 name = "_at_jest_slash_test-result"; 1407 1107 packageName = "@jest/test-result"; ··· 1409 1109 src = fetchurl { 1410 1110 url = "https://registry.npmjs.org/@jest/test-result/-/test-result-27.5.1.tgz"; 1411 1111 sha512 = "EW35l2RYFUcUQxFJz5Cv5MTOxlJIQs4I7gxzi2zVU7PJhOwfYq1MdC5nhSmYjX1gmMmLPvB3sIaC+BkcHRBfag=="; 1412 - }; 1413 - }; 1414 - "@jest/test-sequencer-27.5.0" = { 1415 - name = "_at_jest_slash_test-sequencer"; 1416 - packageName = "@jest/test-sequencer"; 1417 - version = "27.5.0"; 1418 - src = fetchurl { 1419 - url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.5.0.tgz"; 1420 - sha512 = "WzjcDflqbpWe+SnJPCvB2gB6haGfrkzAgzY6Pb1aq+EPoVAj2mwBaKN0ROWI4H87aSslCjq2M+BUQFNJ8VpnDA=="; 1421 1112 }; 1422 1113 }; 1423 1114 "@jest/test-sequencer-27.5.1" = { ··· 1429 1120 sha512 = "LCheJF7WB2+9JuCS7VB/EmGIdQuhtqjRNI9A43idHv3E4KltCTsPsLxvdaubFHSYwY/fNjMWjl6vNRhDiN7vpQ=="; 1430 1121 }; 1431 1122 }; 1432 - "@jest/transform-27.5.0" = { 1433 - name = "_at_jest_slash_transform"; 1434 - packageName = "@jest/transform"; 1435 - version = "27.5.0"; 1436 - src = fetchurl { 1437 - url = "https://registry.npmjs.org/@jest/transform/-/transform-27.5.0.tgz"; 1438 - sha512 = "yXUy/iO3TH1itxJ9BF7LLjuXt8TtgtjAl0PBQbUaCvRa+L0yYBob6uayW9dFRX/CDQweouLhvmXh44zRiaB+yA=="; 1439 - }; 1440 - }; 1441 1123 "@jest/transform-27.5.1" = { 1442 1124 name = "_at_jest_slash_transform"; 1443 1125 packageName = "@jest/transform"; ··· 1447 1129 sha512 = "ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw=="; 1448 1130 }; 1449 1131 }; 1450 - "@jest/types-27.5.0" = { 1451 - name = "_at_jest_slash_types"; 1452 - packageName = "@jest/types"; 1453 - version = "27.5.0"; 1454 - src = fetchurl { 1455 - url = "https://registry.npmjs.org/@jest/types/-/types-27.5.0.tgz"; 1456 - sha512 = "oDHEp7gwSgA82RZ6pzUL3ugM2njP/lVB1MsxRZNOBk+CoNvh9SpH1lQixPFc/kDlV50v59csiW4HLixWmhmgPQ=="; 1457 - }; 1458 - }; 1459 1132 "@jest/types-27.5.1" = { 1460 1133 name = "_at_jest_slash_types"; 1461 1134 packageName = "@jest/types"; ··· 1465 1138 sha512 = "Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw=="; 1466 1139 }; 1467 1140 }; 1468 - "@jridgewell/resolve-uri-3.0.4" = { 1141 + "@jridgewell/resolve-uri-3.0.6" = { 1469 1142 name = "_at_jridgewell_slash_resolve-uri"; 1470 1143 packageName = "@jridgewell/resolve-uri"; 1471 - version = "3.0.4"; 1144 + version = "3.0.6"; 1472 1145 src = fetchurl { 1473 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.4.tgz"; 1474 - sha512 = "cz8HFjOFfUBtvN+NXYSFMHYRdxZMaEl0XypVrhzxBgadKIXhIkRd8aMeHhmF56Sl7SuS8OnUpQ73/k9LE4VnLg=="; 1475 - }; 1476 - }; 1477 - "@jridgewell/resolve-uri-3.0.5" = { 1478 - name = "_at_jridgewell_slash_resolve-uri"; 1479 - packageName = "@jridgewell/resolve-uri"; 1480 - version = "3.0.5"; 1481 - src = fetchurl { 1482 - url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.5.tgz"; 1483 - sha512 = "VPeQ7+wH0itvQxnG+lIzWgkysKIr3L9sslimFW55rHMdGu/qCQ5z5h9zq4gI8uBtqkpHhsF4Z/OwExufUCThew=="; 1484 - }; 1485 - }; 1486 - "@jridgewell/sourcemap-codec-1.4.10" = { 1487 - name = "_at_jridgewell_slash_sourcemap-codec"; 1488 - packageName = "@jridgewell/sourcemap-codec"; 1489 - version = "1.4.10"; 1490 - src = fetchurl { 1491 - url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.10.tgz"; 1492 - sha512 = "Ht8wIW5v165atIX1p+JvKR5ONzUyF4Ac8DZIQ5kZs9zrb6M8SJNXpx1zn04rn65VjBMygRoMXcyYwNK0fT7bEg=="; 1146 + url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.6.tgz"; 1147 + sha512 = "R7xHtBSNm+9SyvpJkdQl+qrM3Hm2fea3Ef197M3mUug+v+yR+Rhfbs7PBtcBUVnIWJ4JcAdjvij+c8hXS9p5aw=="; 1493 1148 }; 1494 1149 }; 1495 1150 "@jridgewell/sourcemap-codec-1.4.11" = { ··· 1501 1156 sha512 = "Fg32GrJo61m+VqYSdRSjRXMjQ06j8YIYfcTqndLYVAaHmroZHLJZCydsWBOTDqXS2v+mjxohBWEMfg97GXmYQg=="; 1502 1157 }; 1503 1158 }; 1504 - "@jridgewell/trace-mapping-0.2.7" = { 1159 + "@jridgewell/trace-mapping-0.3.9" = { 1505 1160 name = "_at_jridgewell_slash_trace-mapping"; 1506 1161 packageName = "@jridgewell/trace-mapping"; 1507 - version = "0.2.7"; 1508 - src = fetchurl { 1509 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.2.7.tgz"; 1510 - sha512 = "ZKfRhw6eK2vvdWqpU7DQq49+BZESqh5rmkYpNhuzkz01tapssl2sNNy6uMUIgrTtUWQDijomWJzJRCoevVrfgw=="; 1511 - }; 1512 - }; 1513 - "@jridgewell/trace-mapping-0.3.4" = { 1514 - name = "_at_jridgewell_slash_trace-mapping"; 1515 - packageName = "@jridgewell/trace-mapping"; 1516 - version = "0.3.4"; 1517 - src = fetchurl { 1518 - url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.4.tgz"; 1519 - sha512 = "vFv9ttIedivx0ux3QSjhgtCVjPZd5l46ZOMDSCwnH1yUO2e964gO8LZGyv2QkqcgR6TnBU1v+1IFqmeoG+0UJQ=="; 1520 - }; 1521 - }; 1522 - "@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents.3" = { 1523 - name = "_at_nicolo-ribaudo_slash_chokidar-2"; 1524 - packageName = "@nicolo-ribaudo/chokidar-2"; 1525 - version = "2.1.8-no-fsevents.3"; 1162 + version = "0.3.9"; 1526 1163 src = fetchurl { 1527 - url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz"; 1528 - sha512 = "s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ=="; 1164 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz"; 1165 + sha512 = "3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ=="; 1529 1166 }; 1530 1167 }; 1531 1168 "@nodelib/fs.scandir-2.1.5" = { ··· 1681 1318 sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="; 1682 1319 }; 1683 1320 }; 1684 - "@types/babel__core-7.1.18" = { 1685 - name = "_at_types_slash_babel__core"; 1686 - packageName = "@types/babel__core"; 1687 - version = "7.1.18"; 1688 - src = fetchurl { 1689 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.18.tgz"; 1690 - sha512 = "S7unDjm/C7z2A2R9NzfKCK1I+BAALDtxEmsJBwlB3EzNfb929ykjL++1CK9LO++EIp2fQrC8O+BwjKvz6UeDyQ=="; 1691 - }; 1692 - }; 1693 1321 "@types/babel__core-7.1.19" = { 1694 1322 name = "_at_types_slash_babel__core"; 1695 1323 packageName = "@types/babel__core"; ··· 1717 1345 sha512 = "azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g=="; 1718 1346 }; 1719 1347 }; 1720 - "@types/babel__traverse-7.14.2" = { 1348 + "@types/babel__traverse-7.17.0" = { 1721 1349 name = "_at_types_slash_babel__traverse"; 1722 1350 packageName = "@types/babel__traverse"; 1723 - version = "7.14.2"; 1351 + version = "7.17.0"; 1724 1352 src = fetchurl { 1725 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.14.2.tgz"; 1726 - sha512 = "K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA=="; 1353 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.0.tgz"; 1354 + sha512 = "r8aveDbd+rzGP+ykSdF3oPuTVRWRfbBiHl0rVDM2yNEmSMXfkObQLV46b4RnCv3Lra51OlfnZhkkFaDl2MIRaA=="; 1727 1355 }; 1728 1356 }; 1729 1357 "@types/debounce-1.2.1" = { ··· 1735 1363 sha512 = "epMsEE85fi4lfmJUH/89/iV/LI+F5CvNIvmgs5g5jYFPfhO2S/ae8WSsLOKWdwtoaZw9Q2IhJ4tQ5tFCcS/4HA=="; 1736 1364 }; 1737 1365 }; 1738 - "@types/debounce-https://registry.npmjs.org/@types/debounce/-/debounce-1.2.1.tgz" = { 1739 - name = "_at_types_slash_debounce"; 1740 - packageName = "@types/debounce"; 1741 - version = 1; 1742 - src = fetchurl { 1743 - name = "debounce-1.tar.gz"; 1744 - url = "https://registry.npmjs.org/@types/debounce/-/debounce-1.2.1.tgz"; 1745 - sha512 = "epMsEE85fi4lfmJUH/89/iV/LI+F5CvNIvmgs5g5jYFPfhO2S/ae8WSsLOKWdwtoaZw9Q2IhJ4tQ5tFCcS/4HA=="; 1746 - }; 1747 - }; 1748 - "@types/debug-4.1.7" = { 1749 - name = "_at_types_slash_debug"; 1750 - packageName = "@types/debug"; 1751 - version = "4.1.7"; 1752 - src = fetchurl { 1753 - url = "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"; 1754 - sha512 = "9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="; 1755 - }; 1756 - }; 1757 - "@types/debug-https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz" = { 1758 - name = "_at_types_slash_debug"; 1759 - packageName = "@types/debug"; 1760 - version = 1; 1761 - src = fetchurl { 1762 - name = "debug-1.tar.gz"; 1763 - url = "https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz"; 1764 - sha512 = "9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg=="; 1765 - }; 1766 - }; 1767 1366 "@types/finalhandler-1.1.1" = { 1768 1367 name = "_at_types_slash_finalhandler"; 1769 1368 packageName = "@types/finalhandler"; ··· 1825 1424 src = fetchurl { 1826 1425 url = "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"; 1827 1426 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 1828 - }; 1829 - }; 1830 - "@types/jest-27.4.0" = { 1831 - name = "_at_types_slash_jest"; 1832 - packageName = "@types/jest"; 1833 - version = "27.4.0"; 1834 - src = fetchurl { 1835 - url = "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz"; 1836 - sha512 = "gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ=="; 1837 1427 }; 1838 1428 }; 1839 1429 "@types/jest-27.4.1" = { ··· 1845 1435 sha512 = "23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw=="; 1846 1436 }; 1847 1437 }; 1848 - "@types/jest-https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz" = { 1849 - name = "_at_types_slash_jest"; 1850 - packageName = "@types/jest"; 1851 - version = 1; 1852 - src = fetchurl { 1853 - name = "jest-1.tar.gz"; 1854 - url = "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz"; 1855 - sha512 = "gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ=="; 1856 - }; 1857 - }; 1858 1438 "@types/js-yaml-4.0.5" = { 1859 1439 name = "_at_types_slash_js-yaml"; 1860 1440 packageName = "@types/js-yaml"; ··· 1873 1453 sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="; 1874 1454 }; 1875 1455 }; 1876 - "@types/json-schema-7.0.9" = { 1877 - name = "_at_types_slash_json-schema"; 1878 - packageName = "@types/json-schema"; 1879 - version = "7.0.9"; 1880 - src = fetchurl { 1881 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"; 1882 - sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; 1883 - }; 1884 - }; 1885 1456 "@types/minimatch-3.0.5" = { 1886 1457 name = "_at_types_slash_minimatch"; 1887 1458 packageName = "@types/minimatch"; ··· 1891 1462 sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1892 1463 }; 1893 1464 }; 1894 - "@types/ms-0.7.31" = { 1895 - name = "_at_types_slash_ms"; 1896 - packageName = "@types/ms"; 1897 - version = "0.7.31"; 1898 - src = fetchurl { 1899 - url = "https://registry.npmjs.org/@types/ms/-/ms-0.7.31.tgz"; 1900 - sha512 = "iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA=="; 1901 - }; 1902 - }; 1903 - "@types/mz-2.7.4" = { 1904 - name = "_at_types_slash_mz"; 1905 - packageName = "@types/mz"; 1906 - version = "2.7.4"; 1907 - src = fetchurl { 1908 - url = "https://registry.npmjs.org/@types/mz/-/mz-2.7.4.tgz"; 1909 - sha512 = "Zs0imXxyWT20j3Z2NwKpr0IO2LmLactBblNyLua5Az4UHuqOQ02V3jPTgyKwDkuc33/ahw+C3O1PIZdrhFMuQA=="; 1910 - }; 1911 - }; 1912 - "@types/mz-https://registry.npmjs.org/@types/mz/-/mz-2.7.4.tgz" = { 1913 - name = "_at_types_slash_mz"; 1914 - packageName = "@types/mz"; 1915 - version = 1; 1916 - src = fetchurl { 1917 - name = "mz-1.tar.gz"; 1918 - url = "https://registry.npmjs.org/@types/mz/-/mz-2.7.4.tgz"; 1919 - sha512 = "Zs0imXxyWT20j3Z2NwKpr0IO2LmLactBblNyLua5Az4UHuqOQ02V3jPTgyKwDkuc33/ahw+C3O1PIZdrhFMuQA=="; 1920 - }; 1921 - }; 1922 - "@types/nedb-1.8.12" = { 1923 - name = "_at_types_slash_nedb"; 1924 - packageName = "@types/nedb"; 1925 - version = "1.8.12"; 1926 - src = fetchurl { 1927 - url = "https://registry.npmjs.org/@types/nedb/-/nedb-1.8.12.tgz"; 1928 - sha512 = "ICDoQMORMjOSqfNFXT4ENXfwwCir1BPblXNm0SPH7C4Q10ou+pvVagcFAJ+rrzf3A47tGU4K/KbzKu7wO9j45Q=="; 1929 - }; 1930 - }; 1931 - "@types/nedb-https://registry.npmjs.org/@types/nedb/-/nedb-1.8.12.tgz" = { 1932 - name = "_at_types_slash_nedb"; 1933 - packageName = "@types/nedb"; 1934 - version = 1; 1935 - src = fetchurl { 1936 - name = "nedb-1.tar.gz"; 1937 - url = "https://registry.npmjs.org/@types/nedb/-/nedb-1.8.12.tgz"; 1938 - sha512 = "ICDoQMORMjOSqfNFXT4ENXfwwCir1BPblXNm0SPH7C4Q10ou+pvVagcFAJ+rrzf3A47tGU4K/KbzKu7wO9j45Q=="; 1939 - }; 1940 - }; 1941 - "@types/node-17.0.15" = { 1942 - name = "_at_types_slash_node"; 1943 - packageName = "@types/node"; 1944 - version = "17.0.15"; 1945 - src = fetchurl { 1946 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.15.tgz"; 1947 - sha512 = "zWt4SDDv1S9WRBNxLFxFRHxdD9tvH8f5/kg5/IaLFdnSNXsDY4eL3Q3XXN+VxUnWIhyVFDwcsmAprvwXoM/ClA=="; 1948 - }; 1949 - }; 1950 - "@types/node-17.0.23" = { 1465 + "@types/node-17.0.25" = { 1951 1466 name = "_at_types_slash_node"; 1952 1467 packageName = "@types/node"; 1953 - version = "17.0.23"; 1468 + version = "17.0.25"; 1954 1469 src = fetchurl { 1955 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz"; 1956 - sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; 1470 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.25.tgz"; 1471 + sha512 = "wANk6fBrUwdpY4isjWrKTufkrXdu1D2YHCot2fD/DfWxF5sMrVSA+KN7ydckvaTCh0HiqX9IVl0L5/ZoXg5M7w=="; 1957 1472 }; 1958 1473 }; 1959 1474 "@types/object-assign-deep-0.4.0" = { ··· 1965 1480 sha512 = "3D0F3rHRNDc8cQSXNzwF1jBrJi28Mdrhc10ZLlqbJWDPYRWTTWB9Tc8JoKrgBvLKioXoPoHT6Uzf3s2F7akCUg=="; 1966 1481 }; 1967 1482 }; 1968 - "@types/prettier-2.4.3" = { 1969 - name = "_at_types_slash_prettier"; 1970 - packageName = "@types/prettier"; 1971 - version = "2.4.3"; 1972 - src = fetchurl { 1973 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.3.tgz"; 1974 - sha512 = "QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w=="; 1975 - }; 1976 - }; 1977 - "@types/prettier-2.4.4" = { 1483 + "@types/prettier-2.6.0" = { 1978 1484 name = "_at_types_slash_prettier"; 1979 1485 packageName = "@types/prettier"; 1980 - version = "2.4.4"; 1486 + version = "2.6.0"; 1981 1487 src = fetchurl { 1982 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.4.tgz"; 1983 - sha512 = "ReVR2rLTV1kvtlWFyuot+d1pkpG2Fw/XKE3PDAdj57rbM97ttSp9JZ2UsP+2EHTylra9cUf6JA7tGwW1INzUrA=="; 1488 + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.0.tgz"; 1489 + sha512 = "G/AdOadiZhnJp0jXCaBQU449W2h716OW/EoXeYkCytxKL06X1WCXB4DZpp8TpZ8eyIJVS1cw4lrlkkSYU21cDw=="; 1984 1490 }; 1985 1491 }; 1986 1492 "@types/rimraf-3.0.2" = { ··· 1992 1498 sha512 = "F3OznnSLAUxFrCEu/L5PY8+ny8DtcFRjx7fZZ9bycvXRi3KPTRS9HOitGZwvPg0juRhXFWIeKX58cnX5YqLohQ=="; 1993 1499 }; 1994 1500 }; 1995 - "@types/serialport-8.0.2" = { 1996 - name = "_at_types_slash_serialport"; 1997 - packageName = "@types/serialport"; 1998 - version = "8.0.2"; 1999 - src = fetchurl { 2000 - url = "https://registry.npmjs.org/@types/serialport/-/serialport-8.0.2.tgz"; 2001 - sha512 = "z4b1I8/vdZE3upgCcAL9VAWlVVFUVn5uo3faAHavkVfK/Hb1LUxKwp9YCtA5AZqEUCWoSWl20SRTOvAI/5fQWQ=="; 2002 - }; 2003 - }; 2004 - "@types/serialport-https://registry.npmjs.org/@types/serialport/-/serialport-8.0.2.tgz" = { 2005 - name = "_at_types_slash_serialport"; 2006 - packageName = "@types/serialport"; 2007 - version = 1; 2008 - src = fetchurl { 2009 - name = "serialport-1.tar.gz"; 2010 - url = "https://registry.npmjs.org/@types/serialport/-/serialport-8.0.2.tgz"; 2011 - sha512 = "z4b1I8/vdZE3upgCcAL9VAWlVVFUVn5uo3faAHavkVfK/Hb1LUxKwp9YCtA5AZqEUCWoSWl20SRTOvAI/5fQWQ=="; 2012 - }; 2013 - }; 2014 1501 "@types/stack-utils-2.0.1" = { 2015 1502 name = "_at_types_slash_stack-utils"; 2016 1503 packageName = "@types/stack-utils"; ··· 2038 1525 sha512 = "T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw=="; 2039 1526 }; 2040 1527 }; 2041 - "@types/yargs-parser-20.2.1" = { 2042 - name = "_at_types_slash_yargs-parser"; 2043 - packageName = "@types/yargs-parser"; 2044 - version = "20.2.1"; 2045 - src = fetchurl { 2046 - url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.1.tgz"; 2047 - sha512 = "7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="; 2048 - }; 2049 - }; 2050 1528 "@types/yargs-parser-21.0.0" = { 2051 1529 name = "_at_types_slash_yargs-parser"; 2052 1530 packageName = "@types/yargs-parser"; ··· 2056 1534 sha512 = "iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA=="; 2057 1535 }; 2058 1536 }; 2059 - "@typescript-eslint/eslint-plugin-5.10.2" = { 2060 - name = "_at_typescript-eslint_slash_eslint-plugin"; 2061 - packageName = "@typescript-eslint/eslint-plugin"; 2062 - version = "5.10.2"; 2063 - src = fetchurl { 2064 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.2.tgz"; 2065 - sha512 = "4W/9lLuE+v27O/oe7hXJKjNtBLnZE8tQAFpapdxwSVHqtmIoPB1gph3+ahNwVuNL37BX7YQHyGF9Xv6XCnIX2Q=="; 2066 - }; 2067 - }; 2068 - "@typescript-eslint/eslint-plugin-5.16.0" = { 2069 - name = "_at_typescript-eslint_slash_eslint-plugin"; 2070 - packageName = "@typescript-eslint/eslint-plugin"; 2071 - version = "5.16.0"; 2072 - src = fetchurl { 2073 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.16.0.tgz"; 2074 - sha512 = "SJoba1edXvQRMmNI505Uo4XmGbxCK9ARQpkvOd00anxzri9RNQk0DDCxD+LIl+jYhkzOJiOMMKYEHnHEODjdCw=="; 2075 - }; 2076 - }; 2077 - "@typescript-eslint/eslint-plugin-https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.2.tgz" = { 1537 + "@typescript-eslint/eslint-plugin-5.20.0" = { 2078 1538 name = "_at_typescript-eslint_slash_eslint-plugin"; 2079 1539 packageName = "@typescript-eslint/eslint-plugin"; 2080 - version = 1; 2081 - src = fetchurl { 2082 - name = "eslint-plugin-1.tar.gz"; 2083 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.2.tgz"; 2084 - sha512 = "4W/9lLuE+v27O/oe7hXJKjNtBLnZE8tQAFpapdxwSVHqtmIoPB1gph3+ahNwVuNL37BX7YQHyGF9Xv6XCnIX2Q=="; 2085 - }; 2086 - }; 2087 - "@typescript-eslint/parser-5.10.2" = { 2088 - name = "_at_typescript-eslint_slash_parser"; 2089 - packageName = "@typescript-eslint/parser"; 2090 - version = "5.10.2"; 1540 + version = "5.20.0"; 2091 1541 src = fetchurl { 2092 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.2.tgz"; 2093 - sha512 = "JaNYGkaQVhP6HNF+lkdOr2cAs2wdSZBoalE22uYWq8IEv/OVH0RksSGydk+sW8cLoSeYmC+OHvRyv2i4AQ7Czg=="; 1542 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.20.0.tgz"; 1543 + sha512 = "fapGzoxilCn3sBtC6NtXZX6+P/Hef7VDbyfGqTTpzYydwhlkevB+0vE0EnmHPVTVSy68GUncyJ/2PcrFBeCo5Q=="; 2094 1544 }; 2095 1545 }; 2096 - "@typescript-eslint/parser-5.16.0" = { 1546 + "@typescript-eslint/parser-5.20.0" = { 2097 1547 name = "_at_typescript-eslint_slash_parser"; 2098 1548 packageName = "@typescript-eslint/parser"; 2099 - version = "5.16.0"; 1549 + version = "5.20.0"; 2100 1550 src = fetchurl { 2101 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.16.0.tgz"; 2102 - sha512 = "fkDq86F0zl8FicnJtdXakFs4lnuebH6ZADDw6CYQv0UZeIjHvmEw87m9/29nk2Dv5Lmdp0zQ3zDQhiMWQf/GbA=="; 1551 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.20.0.tgz"; 1552 + sha512 = "UWKibrCZQCYvobmu3/N8TWbEeo/EPQbS41Ux1F9XqPzGuV7pfg6n50ZrFo6hryynD8qOTTfLHtHjjdQtxJ0h/w=="; 2103 1553 }; 2104 1554 }; 2105 - "@typescript-eslint/parser-https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.2.tgz" = { 2106 - name = "_at_typescript-eslint_slash_parser"; 2107 - packageName = "@typescript-eslint/parser"; 2108 - version = 1; 2109 - src = fetchurl { 2110 - name = "parser-1.tar.gz"; 2111 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.2.tgz"; 2112 - sha512 = "JaNYGkaQVhP6HNF+lkdOr2cAs2wdSZBoalE22uYWq8IEv/OVH0RksSGydk+sW8cLoSeYmC+OHvRyv2i4AQ7Czg=="; 2113 - }; 2114 - }; 2115 - "@typescript-eslint/scope-manager-5.10.2" = { 1555 + "@typescript-eslint/scope-manager-5.20.0" = { 2116 1556 name = "_at_typescript-eslint_slash_scope-manager"; 2117 1557 packageName = "@typescript-eslint/scope-manager"; 2118 - version = "5.10.2"; 2119 - src = fetchurl { 2120 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.2.tgz"; 2121 - sha512 = "39Tm6f4RoZoVUWBYr3ekS75TYgpr5Y+X0xLZxXqcZNDWZdJdYbKd3q2IR4V9y5NxxiPu/jxJ8XP7EgHiEQtFnw=="; 2122 - }; 2123 - }; 2124 - "@typescript-eslint/scope-manager-5.16.0" = { 2125 - name = "_at_typescript-eslint_slash_scope-manager"; 2126 - packageName = "@typescript-eslint/scope-manager"; 2127 - version = "5.16.0"; 2128 - src = fetchurl { 2129 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.16.0.tgz"; 2130 - sha512 = "P+Yab2Hovg8NekLIR/mOElCDPyGgFZKhGoZA901Yax6WR6HVeGLbsqJkZ+Cvk5nts/dAlFKm8PfL43UZnWdpIQ=="; 2131 - }; 2132 - }; 2133 - "@typescript-eslint/type-utils-5.10.2" = { 2134 - name = "_at_typescript-eslint_slash_type-utils"; 2135 - packageName = "@typescript-eslint/type-utils"; 2136 - version = "5.10.2"; 1558 + version = "5.20.0"; 2137 1559 src = fetchurl { 2138 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.10.2.tgz"; 2139 - sha512 = "uRKSvw/Ccs5FYEoXW04Z5VfzF2iiZcx8Fu7DGIB7RHozuP0VbKNzP1KfZkHBTM75pCpsWxIthEH1B33dmGBKHw=="; 1560 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.20.0.tgz"; 1561 + sha512 = "h9KtuPZ4D/JuX7rpp1iKg3zOH0WNEa+ZIXwpW/KWmEFDxlA/HSfCMhiyF1HS/drTICjIbpA6OqkAhrP/zkCStg=="; 2140 1562 }; 2141 1563 }; 2142 - "@typescript-eslint/type-utils-5.16.0" = { 1564 + "@typescript-eslint/type-utils-5.20.0" = { 2143 1565 name = "_at_typescript-eslint_slash_type-utils"; 2144 1566 packageName = "@typescript-eslint/type-utils"; 2145 - version = "5.16.0"; 2146 - src = fetchurl { 2147 - url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.16.0.tgz"; 2148 - sha512 = "SKygICv54CCRl1Vq5ewwQUJV/8padIWvPgCxlWPGO/OgQLCijY9G7lDu6H+mqfQtbzDNlVjzVWQmeqbLMBLEwQ=="; 2149 - }; 2150 - }; 2151 - "@typescript-eslint/types-5.10.2" = { 2152 - name = "_at_typescript-eslint_slash_types"; 2153 - packageName = "@typescript-eslint/types"; 2154 - version = "5.10.2"; 1567 + version = "5.20.0"; 2155 1568 src = fetchurl { 2156 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.2.tgz"; 2157 - sha512 = "Qfp0qk/5j2Rz3p3/WhWgu4S1JtMcPgFLnmAKAW061uXxKSa7VWKZsDXVaMXh2N60CX9h6YLaBoy9PJAfCOjk3w=="; 1569 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.20.0.tgz"; 1570 + sha512 = "WxNrCwYB3N/m8ceyoGCgbLmuZwupvzN0rE8NBuwnl7APgjv24ZJIjkNzoFBXPRCGzLNkoU/WfanW0exvp/+3Iw=="; 2158 1571 }; 2159 1572 }; 2160 - "@typescript-eslint/types-5.16.0" = { 1573 + "@typescript-eslint/types-5.20.0" = { 2161 1574 name = "_at_typescript-eslint_slash_types"; 2162 1575 packageName = "@typescript-eslint/types"; 2163 - version = "5.16.0"; 2164 - src = fetchurl { 2165 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.16.0.tgz"; 2166 - sha512 = "oUorOwLj/3/3p/HFwrp6m/J2VfbLC8gjW5X3awpQJ/bSG+YRGFS4dpsvtQ8T2VNveV+LflQHjlLvB6v0R87z4g=="; 2167 - }; 2168 - }; 2169 - "@typescript-eslint/typescript-estree-5.10.2" = { 2170 - name = "_at_typescript-eslint_slash_typescript-estree"; 2171 - packageName = "@typescript-eslint/typescript-estree"; 2172 - version = "5.10.2"; 1576 + version = "5.20.0"; 2173 1577 src = fetchurl { 2174 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.2.tgz"; 2175 - sha512 = "WHHw6a9vvZls6JkTgGljwCsMkv8wu8XU8WaYKeYhxhWXH/atZeiMW6uDFPLZOvzNOGmuSMvHtZKd6AuC8PrwKQ=="; 1578 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.20.0.tgz"; 1579 + sha512 = "+d8wprF9GyvPwtoB4CxBAR/s0rpP25XKgnOvMf/gMXYDvlUC3rPFHupdTQ/ow9vn7UDe5rX02ovGYQbv/IUCbg=="; 2176 1580 }; 2177 1581 }; 2178 - "@typescript-eslint/typescript-estree-5.16.0" = { 1582 + "@typescript-eslint/typescript-estree-5.20.0" = { 2179 1583 name = "_at_typescript-eslint_slash_typescript-estree"; 2180 1584 packageName = "@typescript-eslint/typescript-estree"; 2181 - version = "5.16.0"; 1585 + version = "5.20.0"; 2182 1586 src = fetchurl { 2183 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.16.0.tgz"; 2184 - sha512 = "SE4VfbLWUZl9MR+ngLSARptUv2E8brY0luCdgmUevU6arZRY/KxYoLI/3V/yxaURR8tLRN7bmZtJdgmzLHI6pQ=="; 1587 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.20.0.tgz"; 1588 + sha512 = "36xLjP/+bXusLMrT9fMMYy1KJAGgHhlER2TqpUVDYUQg4w0q/NW/sg4UGAgVwAqb8V4zYg43KMUpM8vV2lve6w=="; 2185 1589 }; 2186 1590 }; 2187 - "@typescript-eslint/utils-5.10.2" = { 1591 + "@typescript-eslint/utils-5.20.0" = { 2188 1592 name = "_at_typescript-eslint_slash_utils"; 2189 1593 packageName = "@typescript-eslint/utils"; 2190 - version = "5.10.2"; 1594 + version = "5.20.0"; 2191 1595 src = fetchurl { 2192 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.2.tgz"; 2193 - sha512 = "vuJaBeig1NnBRkf7q9tgMLREiYD7zsMrsN1DA3wcoMDvr3BTFiIpKjGiYZoKPllfEwN7spUjv7ZqD+JhbVjEPg=="; 1596 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.20.0.tgz"; 1597 + sha512 = "lHONGJL1LIO12Ujyx8L8xKbwWSkoUKFSO+0wDAqGXiudWB2EO7WEUT+YZLtVbmOmSllAjLb9tpoIPwpRe5Tn6w=="; 2194 1598 }; 2195 1599 }; 2196 - "@typescript-eslint/utils-5.16.0" = { 2197 - name = "_at_typescript-eslint_slash_utils"; 2198 - packageName = "@typescript-eslint/utils"; 2199 - version = "5.16.0"; 2200 - src = fetchurl { 2201 - url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.16.0.tgz"; 2202 - sha512 = "iYej2ER6AwmejLWMWzJIHy3nPJeGDuCqf8Jnb+jAQVoPpmWzwQOfa9hWVB8GIQE5gsCv/rfN4T+AYb/V06WseQ=="; 2203 - }; 2204 - }; 2205 - "@typescript-eslint/visitor-keys-5.10.2" = { 1600 + "@typescript-eslint/visitor-keys-5.20.0" = { 2206 1601 name = "_at_typescript-eslint_slash_visitor-keys"; 2207 1602 packageName = "@typescript-eslint/visitor-keys"; 2208 - version = "5.10.2"; 1603 + version = "5.20.0"; 2209 1604 src = fetchurl { 2210 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.2.tgz"; 2211 - sha512 = "zHIhYGGGrFJvvyfwHk5M08C5B5K4bewkm+rrvNTKk1/S15YHR+SA/QUF8ZWscXSfEaB8Nn2puZj+iHcoxVOD/Q=="; 2212 - }; 2213 - }; 2214 - "@typescript-eslint/visitor-keys-5.16.0" = { 2215 - name = "_at_typescript-eslint_slash_visitor-keys"; 2216 - packageName = "@typescript-eslint/visitor-keys"; 2217 - version = "5.16.0"; 2218 - src = fetchurl { 2219 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.16.0.tgz"; 2220 - sha512 = "jqxO8msp5vZDhikTwq9ubyMHqZ67UIvawohr4qF3KhlpL7gzSjOd+8471H3nh5LyABkaI85laEKKU8SnGUK5/g=="; 1605 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.20.0.tgz"; 1606 + sha512 = "1flRpNF+0CAQkMNlTJ6L/Z5jiODG/e5+7mk6XwtPOUS3UrTz3UOiAg9jG2VtKsWI6rZQfy4C6a232QNRZTRGlg=="; 2221 1607 }; 2222 1608 }; 2223 - "abab-2.0.5" = { 1609 + "abab-2.0.6" = { 2224 1610 name = "abab"; 2225 1611 packageName = "abab"; 2226 - version = "2.0.5"; 1612 + version = "2.0.6"; 2227 1613 src = fetchurl { 2228 - url = "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz"; 2229 - sha512 = "9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q=="; 1614 + url = "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz"; 1615 + sha512 = "j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA=="; 2230 1616 }; 2231 1617 }; 2232 1618 "acorn-7.4.1" = { ··· 2436 1822 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 2437 1823 }; 2438 1824 }; 2439 - "axios-0.26.1" = { 1825 + "axios-0.27.2" = { 2440 1826 name = "axios"; 2441 1827 packageName = "axios"; 2442 - version = "0.26.1"; 1828 + version = "0.27.2"; 2443 1829 src = fetchurl { 2444 - url = "https://registry.npmjs.org/axios/-/axios-0.26.1.tgz"; 2445 - sha512 = "fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA=="; 2446 - }; 2447 - }; 2448 - "babel-jest-27.5.0" = { 2449 - name = "babel-jest"; 2450 - packageName = "babel-jest"; 2451 - version = "27.5.0"; 2452 - src = fetchurl { 2453 - url = "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.0.tgz"; 2454 - sha512 = "puhCyvBTNLevhbd1oyw6t3gWBicWoUARQYKCBB/B1moif17NbyhxbsfadqZIw8zfJJD+W7Vw0Nb20pEjLxkXqQ=="; 1830 + url = "https://registry.npmjs.org/axios/-/axios-0.27.2.tgz"; 1831 + sha512 = "t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ=="; 2455 1832 }; 2456 1833 }; 2457 1834 "babel-jest-27.5.1" = { ··· 2479 1856 src = fetchurl { 2480 1857 url = "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz"; 2481 1858 sha512 = "Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA=="; 2482 - }; 2483 - }; 2484 - "babel-plugin-jest-hoist-27.5.0" = { 2485 - name = "babel-plugin-jest-hoist"; 2486 - packageName = "babel-plugin-jest-hoist"; 2487 - version = "27.5.0"; 2488 - src = fetchurl { 2489 - url = "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.0.tgz"; 2490 - sha512 = "ztwNkHl+g1GaoQcb8f2BER4C3LMvSXuF7KVqtUioXQgScSEnkl6lLgCILUYIR+CPTwL8H3F/PNLze64HPWF9JA=="; 2491 1859 }; 2492 1860 }; 2493 1861 "babel-plugin-jest-hoist-27.5.1" = { ··· 2535 1903 sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; 2536 1904 }; 2537 1905 }; 2538 - "babel-preset-jest-27.5.0" = { 2539 - name = "babel-preset-jest"; 2540 - packageName = "babel-preset-jest"; 2541 - version = "27.5.0"; 2542 - src = fetchurl { 2543 - url = "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.0.tgz"; 2544 - sha512 = "7bfu1cJBlgK/nKfTvMlElzA3jpi6GzDWX3fntnyP2cQSzoi/KUz6ewGlcb3PSRYZGyv+uPnVHY0Im3JbsViqgA=="; 2545 - }; 2546 - }; 2547 1906 "babel-preset-jest-27.5.1" = { 2548 1907 name = "babel-preset-jest"; 2549 1908 packageName = "babel-preset-jest"; ··· 2569 1928 src = fetchurl { 2570 1929 url = "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"; 2571 1930 sha512 = "AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA=="; 2572 - }; 2573 - }; 2574 - "binary-extensions-2.2.0" = { 2575 - name = "binary-extensions"; 2576 - packageName = "binary-extensions"; 2577 - version = "2.2.0"; 2578 - src = fetchurl { 2579 - url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz"; 2580 - sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA=="; 2581 1931 }; 2582 1932 }; 2583 1933 "bind-decorator-1.0.11" = { ··· 2634 1984 sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; 2635 1985 }; 2636 1986 }; 2637 - "browserslist-4.19.1" = { 2638 - name = "browserslist"; 2639 - packageName = "browserslist"; 2640 - version = "4.19.1"; 2641 - src = fetchurl { 2642 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz"; 2643 - sha512 = "u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A=="; 2644 - }; 2645 - }; 2646 1987 "browserslist-4.20.2" = { 2647 1988 name = "browserslist"; 2648 1989 packageName = "browserslist"; ··· 2724 2065 sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 2725 2066 }; 2726 2067 }; 2727 - "caniuse-lite-1.0.30001307" = { 2068 + "caniuse-lite-1.0.30001332" = { 2728 2069 name = "caniuse-lite"; 2729 2070 packageName = "caniuse-lite"; 2730 - version = "1.0.30001307"; 2731 - src = fetchurl { 2732 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001307.tgz"; 2733 - sha512 = "+MXEMczJ4FuxJAUp0jvAl6Df0NI/OfW1RWEE61eSmzS7hw6lz4IKutbhbXendwq8BljfFuHtu26VWsg4afQ7Ng=="; 2734 - }; 2735 - }; 2736 - "caniuse-lite-1.0.30001320" = { 2737 - name = "caniuse-lite"; 2738 - packageName = "caniuse-lite"; 2739 - version = "1.0.30001320"; 2071 + version = "1.0.30001332"; 2740 2072 src = fetchurl { 2741 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001320.tgz"; 2742 - sha512 = "MWPzG54AGdo3nWx7zHZTefseM5Y1ccM7hlQKHRqJkPozUaw3hNbBTMmLn16GG2FUzjR13Cr3NPfhIieX5PzXDA=="; 2073 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001332.tgz"; 2074 + sha512 = "10T30NYOEQtN6C11YGg411yebhvpnC6Z102+B95eAsN0oB6KUs01ivE8u+G6FMIRtIrVlYXhL+LUwQ3/hXwDWw=="; 2743 2075 }; 2744 2076 }; 2745 2077 "chalk-2.4.2" = { ··· 2776 2108 src = fetchurl { 2777 2109 url = "https://registry.npmjs.org/charcodes/-/charcodes-0.2.0.tgz"; 2778 2110 sha512 = "Y4kiDb+AM4Ecy58YkuZrrSRJBDQdQ2L+NyS1vHHFtNtUjgutcZfx3yp1dAONI/oPaPmyGfCLx5CxL+zauIMyKQ=="; 2779 - }; 2780 - }; 2781 - "chokidar-3.5.3" = { 2782 - name = "chokidar"; 2783 - packageName = "chokidar"; 2784 - version = "3.5.3"; 2785 - src = fetchurl { 2786 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 2787 - sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 2788 2111 }; 2789 2112 }; 2790 2113 "chownr-1.1.4" = { ··· 2895 2218 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 2896 2219 }; 2897 2220 }; 2898 - "color-string-1.9.0" = { 2221 + "color-string-1.9.1" = { 2899 2222 name = "color-string"; 2900 2223 packageName = "color-string"; 2901 - version = "1.9.0"; 2224 + version = "1.9.1"; 2902 2225 src = fetchurl { 2903 - url = "https://registry.npmjs.org/color-string/-/color-string-1.9.0.tgz"; 2904 - sha512 = "9Mrz2AQLefkH1UvASKj6v6hj/7eWgjnT/cVsR8CumieLoT+g900exWeNogqtweI8dxloXN9BDQTYro1oWu/5CQ=="; 2226 + url = "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz"; 2227 + sha512 = "shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg=="; 2905 2228 }; 2906 2229 }; 2907 2230 "colorspace-1.1.4" = { ··· 2920 2243 src = fetchurl { 2921 2244 url = "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz"; 2922 2245 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 2923 - }; 2924 - }; 2925 - "commander-4.1.1" = { 2926 - name = "commander"; 2927 - packageName = "commander"; 2928 - version = "4.1.1"; 2929 - src = fetchurl { 2930 - url = "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz"; 2931 - sha512 = "NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA=="; 2932 2246 }; 2933 2247 }; 2934 2248 "commist-1.1.0" = { ··· 2985 2299 sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2986 2300 }; 2987 2301 }; 2988 - "core-js-3.21.1" = { 2302 + "core-js-3.22.2" = { 2989 2303 name = "core-js"; 2990 2304 packageName = "core-js"; 2991 - version = "3.21.1"; 2305 + version = "3.22.2"; 2992 2306 src = fetchurl { 2993 - url = "https://registry.npmjs.org/core-js/-/core-js-3.21.1.tgz"; 2994 - sha512 = "FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig=="; 2307 + url = "https://registry.npmjs.org/core-js/-/core-js-3.22.2.tgz"; 2308 + sha512 = "Z5I2vzDnEIqO2YhELVMFcL1An2CIsFe9Q7byZhs8c/QxummxZlAHw33TUHbIte987LkisOgL0LwQ1P9D6VISnA=="; 2995 2309 }; 2996 2310 }; 2997 - "core-js-compat-3.21.0" = { 2998 - name = "core-js-compat"; 2999 - packageName = "core-js-compat"; 3000 - version = "3.21.0"; 3001 - src = fetchurl { 3002 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.0.tgz"; 3003 - sha512 = "OSXseNPSK2OPJa6GdtkMz/XxeXx8/CJvfhQWTqd6neuUraujcL4jVsjkLQz1OWnax8xVQJnRPe0V2jqNWORA+A=="; 3004 - }; 3005 - }; 3006 - "core-js-compat-3.21.1" = { 2311 + "core-js-compat-3.22.2" = { 3007 2312 name = "core-js-compat"; 3008 2313 packageName = "core-js-compat"; 3009 - version = "3.21.1"; 2314 + version = "3.22.2"; 3010 2315 src = fetchurl { 3011 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz"; 3012 - sha512 = "gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g=="; 2316 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.2.tgz"; 2317 + sha512 = "Fns9lU06ZJ07pdfmPMu7OnkIKGPKDzXKIiuGlSvHHapwqMUF2QnnsWwtueFZtSyZEilP0o6iUeHQwpn7LxtLUw=="; 3013 2318 }; 3014 2319 }; 3015 2320 "core-util-is-1.0.3" = { ··· 3084 2389 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 3085 2390 }; 3086 2391 }; 3087 - "debug-4.3.3" = { 3088 - name = "debug"; 3089 - packageName = "debug"; 3090 - version = "4.3.3"; 3091 - src = fetchurl { 3092 - url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"; 3093 - sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 3094 - }; 3095 - }; 3096 2392 "debug-4.3.4" = { 3097 2393 name = "debug"; 3098 2394 packageName = "debug"; ··· 3165 2461 sha512 = "FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg=="; 3166 2462 }; 3167 2463 }; 3168 - "define-properties-1.1.3" = { 2464 + "define-properties-1.1.4" = { 3169 2465 name = "define-properties"; 3170 2466 packageName = "define-properties"; 3171 - version = "1.1.3"; 2467 + version = "1.1.4"; 3172 2468 src = fetchurl { 3173 - url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz"; 3174 - sha512 = "3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ=="; 2469 + url = "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz"; 2470 + sha512 = "uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA=="; 3175 2471 }; 3176 2472 }; 3177 2473 "delayed-stream-1.0.0" = { ··· 3210 2506 sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 3211 2507 }; 3212 2508 }; 3213 - "detect-libc-2.0.0" = { 2509 + "detect-libc-2.0.1" = { 3214 2510 name = "detect-libc"; 3215 2511 packageName = "detect-libc"; 3216 - version = "2.0.0"; 2512 + version = "2.0.1"; 3217 2513 src = fetchurl { 3218 - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.0.tgz"; 3219 - sha512 = "S55LzUl8HUav8l9E2PBTlC5PAJrHK7tkM+XXFGD+fbsbkTzhCpG6K05LxJcUOEWzMa4v6ptcMZ9s3fOdJDu0Zw=="; 2514 + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz"; 2515 + sha512 = "463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w=="; 3220 2516 }; 3221 2517 }; 3222 2518 "detect-newline-3.1.0" = { ··· 3226 2522 src = fetchurl { 3227 2523 url = "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"; 3228 2524 sha512 = "TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA=="; 3229 - }; 3230 - }; 3231 - "diff-sequences-27.5.0" = { 3232 - name = "diff-sequences"; 3233 - packageName = "diff-sequences"; 3234 - version = "27.5.0"; 3235 - src = fetchurl { 3236 - url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.0.tgz"; 3237 - sha512 = "ZsOBWnhXiH+Zn0DcBNX/tiQsqrREHs/6oQsEVy2VJJjrTblykPima11pyHMSA/7PGmD+fwclTnKVKL/qtNREDQ=="; 3238 2525 }; 3239 2526 }; 3240 2527 "diff-sequences-27.5.1" = { ··· 3291 2578 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 3292 2579 }; 3293 2580 }; 3294 - "electron-to-chromium-1.4.65" = { 2581 + "electron-to-chromium-1.4.118" = { 3295 2582 name = "electron-to-chromium"; 3296 2583 packageName = "electron-to-chromium"; 3297 - version = "1.4.65"; 2584 + version = "1.4.118"; 3298 2585 src = fetchurl { 3299 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.65.tgz"; 3300 - sha512 = "0/d8Skk8sW3FxXP0Dd6MnBlrwx7Qo9cqQec3BlIAlvKnrmS3pHsIbaroEi+nd0kZkGpQ6apMEre7xndzjlEnLw=="; 3301 - }; 3302 - }; 3303 - "electron-to-chromium-1.4.95" = { 3304 - name = "electron-to-chromium"; 3305 - packageName = "electron-to-chromium"; 3306 - version = "1.4.95"; 3307 - src = fetchurl { 3308 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.95.tgz"; 3309 - sha512 = "h2VAMV/hPtmAeiDkwA8c5sjS+cWt6GlQL4ERdrOUWu7cRIG5IRk9uwR9f0utP+hPJ9ZZsADTq9HpbuT46eBYAg=="; 2586 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.118.tgz"; 2587 + sha512 = "maZIKjnYDvF7Fs35nvVcyr44UcKNwybr93Oba2n3HkKDFAtk0svERkLN/HyczJDS3Fo4wU9th9fUQd09ZLtj1w=="; 3310 2588 }; 3311 2589 }; 3312 2590 "emittery-0.8.1" = { ··· 3417 2695 sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 3418 2696 }; 3419 2697 }; 3420 - "eslint-8.12.0" = { 3421 - name = "eslint"; 3422 - packageName = "eslint"; 3423 - version = "8.12.0"; 3424 - src = fetchurl { 3425 - url = "https://registry.npmjs.org/eslint/-/eslint-8.12.0.tgz"; 3426 - sha512 = "it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q=="; 3427 - }; 3428 - }; 3429 - "eslint-8.8.0" = { 2698 + "eslint-8.14.0" = { 3430 2699 name = "eslint"; 3431 2700 packageName = "eslint"; 3432 - version = "8.8.0"; 2701 + version = "8.14.0"; 3433 2702 src = fetchurl { 3434 - url = "https://registry.npmjs.org/eslint/-/eslint-8.8.0.tgz"; 3435 - sha512 = "H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ=="; 2703 + url = "https://registry.npmjs.org/eslint/-/eslint-8.14.0.tgz"; 2704 + sha512 = "3/CE4aJX7LNEiE3i6FeodHmI/38GZtWCsAtsymScmzYapx8q1nVVb+eLcLSzATmCPXw5pT4TqVs1E0OmxAd9tw=="; 3436 2705 }; 3437 2706 }; 3438 2707 "eslint-config-google-0.14.0" = { ··· 3444 2713 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 3445 2714 }; 3446 2715 }; 3447 - "eslint-https://registry.npmjs.org/eslint/-/eslint-8.8.0.tgz" = { 3448 - name = "eslint"; 3449 - packageName = "eslint"; 3450 - version = 1; 3451 - src = fetchurl { 3452 - name = "eslint-1.tar.gz"; 3453 - url = "https://registry.npmjs.org/eslint/-/eslint-8.8.0.tgz"; 3454 - sha512 = "H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ=="; 3455 - }; 3456 - }; 3457 - "eslint-plugin-jest-26.1.3" = { 2716 + "eslint-plugin-jest-26.1.5" = { 3458 2717 name = "eslint-plugin-jest"; 3459 2718 packageName = "eslint-plugin-jest"; 3460 - version = "26.1.3"; 2719 + version = "26.1.5"; 3461 2720 src = fetchurl { 3462 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.3.tgz"; 3463 - sha512 = "Pju+T7MFpo5VFhFlwrkK/9jRUu18r2iugvgyrWOnnGRaVTFFmFXp+xFJpHyqmjjLmGJPKLeEFLVTAxezkApcpQ=="; 2721 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.1.5.tgz"; 2722 + sha512 = "su89aDuljL9bTjEufTXmKUMSFe2kZUL9bi7+woq+C2ukHZordhtfPm4Vg+tdioHBaKf8v3/FXW9uV0ksqhYGFw=="; 3464 2723 }; 3465 2724 }; 3466 2725 "eslint-scope-5.1.1" = { ··· 3472 2731 sha512 = "2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw=="; 3473 2732 }; 3474 2733 }; 3475 - "eslint-scope-7.1.0" = { 3476 - name = "eslint-scope"; 3477 - packageName = "eslint-scope"; 3478 - version = "7.1.0"; 3479 - src = fetchurl { 3480 - url = "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.0.tgz"; 3481 - sha512 = "aWwkhnS0qAXqNOgKOK0dJ2nvzEbhEvpy8OlJ9kZ0FeZnA6zpjv1/Vei+puGFFX7zkPCkHHXb7IDX3A+7yPrRWg=="; 3482 - }; 3483 - }; 3484 2734 "eslint-scope-7.1.1" = { 3485 2735 name = "eslint-scope"; 3486 2736 packageName = "eslint-scope"; ··· 3508 2758 sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 3509 2759 }; 3510 2760 }; 3511 - "eslint-visitor-keys-3.2.0" = { 3512 - name = "eslint-visitor-keys"; 3513 - packageName = "eslint-visitor-keys"; 3514 - version = "3.2.0"; 3515 - src = fetchurl { 3516 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz"; 3517 - sha512 = "IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ=="; 3518 - }; 3519 - }; 3520 2761 "eslint-visitor-keys-3.3.0" = { 3521 2762 name = "eslint-visitor-keys"; 3522 2763 packageName = "eslint-visitor-keys"; ··· 3526 2767 sha512 = "mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA=="; 3527 2768 }; 3528 2769 }; 3529 - "espree-9.3.0" = { 3530 - name = "espree"; 3531 - packageName = "espree"; 3532 - version = "9.3.0"; 3533 - src = fetchurl { 3534 - url = "https://registry.npmjs.org/espree/-/espree-9.3.0.tgz"; 3535 - sha512 = "d/5nCsb0JcqsSEeQzFZ8DH1RmxPcglRWh24EFTlUEmCKoehXGdpsx0RkHDubqUI8LSAIKMQp4r9SzQ3n+sm4HQ=="; 3536 - }; 3537 - }; 3538 2770 "espree-9.3.1" = { 3539 2771 name = "espree"; 3540 2772 packageName = "espree"; ··· 3634 2866 sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 3635 2867 }; 3636 2868 }; 3637 - "expect-27.5.0" = { 3638 - name = "expect"; 3639 - packageName = "expect"; 3640 - version = "27.5.0"; 3641 - src = fetchurl { 3642 - url = "https://registry.npmjs.org/expect/-/expect-27.5.0.tgz"; 3643 - sha512 = "z73GZ132cBqrapO0X6BeRjyBXqOt9YeRtnDteHJIQqp5s2pZ41Hz23VUbsVFMfkrsFLU9GwoIRS0ZzLuFK8M5w=="; 3644 - }; 3645 - }; 3646 2869 "expect-27.5.1" = { 3647 2870 name = "expect"; 3648 2871 packageName = "expect"; ··· 3706 2929 sha512 = "DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg=="; 3707 2930 }; 3708 2931 }; 3709 - "fecha-4.2.1" = { 2932 + "fecha-4.2.3" = { 3710 2933 name = "fecha"; 3711 2934 packageName = "fecha"; 3712 - version = "4.2.1"; 2935 + version = "4.2.3"; 3713 2936 src = fetchurl { 3714 - url = "https://registry.npmjs.org/fecha/-/fecha-4.2.1.tgz"; 3715 - sha512 = "MMMQ0ludy/nBs1/o0zVOiKTpG7qMbonKUzjJgQFEuvq6INZ1OraKPRAWkBq5vlKLOUMpmNYG1JoN3oDPUQ9m3Q=="; 2937 + url = "https://registry.npmjs.org/fecha/-/fecha-4.2.3.tgz"; 2938 + sha512 = "OP2IUU6HeYKJi3i0z4A19kHMQoLVs4Hc+DPqqxI2h/DPZHTm/vjsfC6P0b4jCMy14XizLBqvndQ+UilD7707Jw=="; 3716 2939 }; 3717 2940 }; 3718 2941 "file-entry-cache-6.0.1" = { ··· 3814 3037 sha512 = "RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg=="; 3815 3038 }; 3816 3039 }; 3040 + "form-data-4.0.0" = { 3041 + name = "form-data"; 3042 + packageName = "form-data"; 3043 + version = "4.0.0"; 3044 + src = fetchurl { 3045 + url = "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz"; 3046 + sha512 = "ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww=="; 3047 + }; 3048 + }; 3817 3049 "fresh-0.5.2" = { 3818 3050 name = "fresh"; 3819 3051 packageName = "fresh"; ··· 3832 3064 sha512 = "y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow=="; 3833 3065 }; 3834 3066 }; 3835 - "fs-readdir-recursive-1.1.0" = { 3836 - name = "fs-readdir-recursive"; 3837 - packageName = "fs-readdir-recursive"; 3838 - version = "1.1.0"; 3839 - src = fetchurl { 3840 - url = "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-1.1.0.tgz"; 3841 - sha512 = "GNanXlVr2pf02+sPN40XN8HG+ePaNcvM0q5mZBd668Obwb0yD5GiUbZOFgwn8kGMY6I3mdyDJzieUy3PTYyTRA=="; 3842 - }; 3843 - }; 3844 3067 "fs.realpath-1.0.0" = { 3845 3068 name = "fs.realpath"; 3846 3069 packageName = "fs.realpath"; ··· 3985 3208 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 3986 3209 }; 3987 3210 }; 3988 - "globals-13.12.1" = { 3989 - name = "globals"; 3990 - packageName = "globals"; 3991 - version = "13.12.1"; 3992 - src = fetchurl { 3993 - url = "https://registry.npmjs.org/globals/-/globals-13.12.1.tgz"; 3994 - sha512 = "317dFlgY2pdJZ9rspXDks7073GpDmXdfbM3vYYp0HAMKGDh1FfWPleI2ljVNLQX5M5lXcAslTcPTrOrMEFOjyw=="; 3995 - }; 3996 - }; 3997 3211 "globals-13.13.0" = { 3998 3212 name = "globals"; 3999 3213 packageName = "globals"; ··· 4021 3235 sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b"; 4022 3236 }; 4023 3237 }; 4024 - "graceful-fs-4.2.9" = { 3238 + "graceful-fs-4.2.10" = { 4025 3239 name = "graceful-fs"; 4026 3240 packageName = "graceful-fs"; 4027 - version = "4.2.9"; 3241 + version = "4.2.10"; 4028 3242 src = fetchurl { 4029 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; 4030 - sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; 4031 - }; 4032 - }; 4033 - "handlebars-4.7.7" = { 4034 - name = "handlebars"; 4035 - packageName = "handlebars"; 4036 - version = "4.7.7"; 4037 - src = fetchurl { 4038 - url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz"; 4039 - sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA=="; 3243 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 3244 + sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 4040 3245 }; 4041 3246 }; 4042 3247 "has-1.0.3" = { ··· 4066 3271 sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ=="; 4067 3272 }; 4068 3273 }; 4069 - "has-symbols-1.0.2" = { 4070 - name = "has-symbols"; 4071 - packageName = "has-symbols"; 4072 - version = "1.0.2"; 3274 + "has-property-descriptors-1.0.0" = { 3275 + name = "has-property-descriptors"; 3276 + packageName = "has-property-descriptors"; 3277 + version = "1.0.0"; 4073 3278 src = fetchurl { 4074 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"; 4075 - sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 3279 + url = "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz"; 3280 + sha512 = "62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ=="; 4076 3281 }; 4077 3282 }; 4078 3283 "has-symbols-1.0.3" = { ··· 4138 3343 sha512 = "k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg=="; 4139 3344 }; 4140 3345 }; 4141 - "https-proxy-agent-5.0.0" = { 3346 + "https-proxy-agent-5.0.1" = { 4142 3347 name = "https-proxy-agent"; 4143 3348 packageName = "https-proxy-agent"; 4144 - version = "5.0.0"; 3349 + version = "5.0.1"; 4145 3350 src = fetchurl { 4146 - url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz"; 4147 - sha512 = "EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA=="; 3351 + url = "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz"; 3352 + sha512 = "dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA=="; 4148 3353 }; 4149 3354 }; 4150 3355 "human-signals-2.1.0" = { ··· 4183 3388 sha512 = "dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA=="; 4184 3389 }; 4185 3390 }; 4186 - "ignore-4.0.6" = { 4187 - name = "ignore"; 4188 - packageName = "ignore"; 4189 - version = "4.0.6"; 4190 - src = fetchurl { 4191 - url = "https://registry.npmjs.org/ignore/-/ignore-4.0.6.tgz"; 4192 - sha512 = "cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg=="; 4193 - }; 4194 - }; 4195 3391 "ignore-5.2.0" = { 4196 3392 name = "ignore"; 4197 3393 packageName = "ignore"; ··· 4273 3469 sha512 = "eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ=="; 4274 3470 }; 4275 3471 }; 4276 - "is-binary-path-2.1.0" = { 4277 - name = "is-binary-path"; 4278 - packageName = "is-binary-path"; 4279 - version = "2.1.0"; 4280 - src = fetchurl { 4281 - url = "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz"; 4282 - sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 4283 - }; 4284 - }; 4285 - "is-core-module-2.8.1" = { 3472 + "is-core-module-2.9.0" = { 4286 3473 name = "is-core-module"; 4287 3474 packageName = "is-core-module"; 4288 - version = "2.8.1"; 3475 + version = "2.9.0"; 4289 3476 src = fetchurl { 4290 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz"; 4291 - sha512 = "SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA=="; 3477 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.9.0.tgz"; 3478 + sha512 = "+5FPy5PnwmO3lvfMb0AsoPaBG+5KHUI0wYFXOtYPnVVVspTFUuMZNfNaNVRt3FZadstu2c8x23vykRW/NBoU6A=="; 4292 3479 }; 4293 3480 }; 4294 3481 "is-extglob-2.1.1" = { ··· 4399 3586 sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 4400 3587 }; 4401 3588 }; 4402 - "istanbul-lib-instrument-5.1.0" = { 3589 + "istanbul-lib-instrument-5.2.0" = { 4403 3590 name = "istanbul-lib-instrument"; 4404 3591 packageName = "istanbul-lib-instrument"; 4405 - version = "5.1.0"; 3592 + version = "5.2.0"; 4406 3593 src = fetchurl { 4407 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.1.0.tgz"; 4408 - sha512 = "czwUz525rkOFDJxfKK6mYfIs9zBKILyrZQxjz3ABhjQXhbhFsSbo1HW/BFcsDnfJYJWA6thRR5/TUY2qs5W99Q=="; 3594 + url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz"; 3595 + sha512 = "6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A=="; 4409 3596 }; 4410 3597 }; 4411 3598 "istanbul-lib-report-3.0.0" = { ··· 4435 3622 sha512 = "r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw=="; 4436 3623 }; 4437 3624 }; 4438 - "jest-27.5.0" = { 4439 - name = "jest"; 4440 - packageName = "jest"; 4441 - version = "27.5.0"; 4442 - src = fetchurl { 4443 - url = "https://registry.npmjs.org/jest/-/jest-27.5.0.tgz"; 4444 - sha512 = "sCMZhL9zy0fiFc4H0cKlXq7BcghMSxm5ZnEyaPWTteArU5ix6JjOKyOXSUBGLTQCmt5kuX9zEvQ9BSshHOPB3A=="; 4445 - }; 4446 - }; 4447 3625 "jest-27.5.1" = { 4448 3626 name = "jest"; 4449 3627 packageName = "jest"; ··· 4453 3631 sha512 = "Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ=="; 4454 3632 }; 4455 3633 }; 4456 - "jest-changed-files-27.5.0" = { 4457 - name = "jest-changed-files"; 4458 - packageName = "jest-changed-files"; 4459 - version = "27.5.0"; 4460 - src = fetchurl { 4461 - url = "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.0.tgz"; 4462 - sha512 = "BGWKI7E6ORqbF5usF1oA4ftbkhVZVrXr8jB0/BrU6TAn3kfOVwX2Zx6pKIXYutJ+qNEjT8Da/gGak0ajya/StA=="; 4463 - }; 4464 - }; 4465 3634 "jest-changed-files-27.5.1" = { 4466 3635 name = "jest-changed-files"; 4467 3636 packageName = "jest-changed-files"; ··· 4471 3640 sha512 = "buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw=="; 4472 3641 }; 4473 3642 }; 4474 - "jest-circus-27.5.0" = { 4475 - name = "jest-circus"; 4476 - packageName = "jest-circus"; 4477 - version = "27.5.0"; 4478 - src = fetchurl { 4479 - url = "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.0.tgz"; 4480 - sha512 = "+NPd1OxpAHYKjbW8dgL0huFgmtZRKSUKee/UtRgZJEfAxCeA12d7sp0coh5EGDBpW4fCk1Pcia/2dG+j6BQvdw=="; 4481 - }; 4482 - }; 4483 3643 "jest-circus-27.5.1" = { 4484 3644 name = "jest-circus"; 4485 3645 packageName = "jest-circus"; ··· 4489 3649 sha512 = "D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw=="; 4490 3650 }; 4491 3651 }; 4492 - "jest-cli-27.5.0" = { 4493 - name = "jest-cli"; 4494 - packageName = "jest-cli"; 4495 - version = "27.5.0"; 4496 - src = fetchurl { 4497 - url = "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.0.tgz"; 4498 - sha512 = "9ANs79Goz1ULKtG7HDm/F//4E69v8EFOLXRIHmeC/eK1xTUeQGlU6XP0Zwst386sKaKB4O60qhWY/UaTBS2MLA=="; 4499 - }; 4500 - }; 4501 3652 "jest-cli-27.5.1" = { 4502 3653 name = "jest-cli"; 4503 3654 packageName = "jest-cli"; ··· 4507 3658 sha512 = "Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw=="; 4508 3659 }; 4509 3660 }; 4510 - "jest-config-27.5.0" = { 4511 - name = "jest-config"; 4512 - packageName = "jest-config"; 4513 - version = "27.5.0"; 4514 - src = fetchurl { 4515 - url = "https://registry.npmjs.org/jest-config/-/jest-config-27.5.0.tgz"; 4516 - sha512 = "eOIpvpXFz5WHuIYZN1QmvBLEjsSk3w+IAC/2jBpZClbprF53Bj9meBMgAbE15DSkaaJBDFmhXXd1L2eCLaWxQw=="; 4517 - }; 4518 - }; 4519 3661 "jest-config-27.5.1" = { 4520 3662 name = "jest-config"; 4521 3663 packageName = "jest-config"; ··· 4525 3667 sha512 = "5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA=="; 4526 3668 }; 4527 3669 }; 4528 - "jest-diff-27.5.0" = { 4529 - name = "jest-diff"; 4530 - packageName = "jest-diff"; 4531 - version = "27.5.0"; 4532 - src = fetchurl { 4533 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.0.tgz"; 4534 - sha512 = "zztvHDCq/QcAVv+o6rts0reupSOxyrX+KLQEOMWCW2trZgcBFgp/oTK7hJCGpXvEIqKrQzyQlaPKn9W04+IMQg=="; 4535 - }; 4536 - }; 4537 3670 "jest-diff-27.5.1" = { 4538 3671 name = "jest-diff"; 4539 3672 packageName = "jest-diff"; ··· 4543 3676 sha512 = "m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw=="; 4544 3677 }; 4545 3678 }; 4546 - "jest-docblock-27.5.0" = { 4547 - name = "jest-docblock"; 4548 - packageName = "jest-docblock"; 4549 - version = "27.5.0"; 4550 - src = fetchurl { 4551 - url = "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.0.tgz"; 4552 - sha512 = "U4MtJgdZn2x+jpPzd7NAYvDmgJAA5h9QxVAwsyuH7IymGzY8VGHhAkHcIGOmtmdC61ORLxCbEhj6fCJsaCWzXA=="; 4553 - }; 4554 - }; 4555 3679 "jest-docblock-27.5.1" = { 4556 3680 name = "jest-docblock"; 4557 3681 packageName = "jest-docblock"; ··· 4561 3685 sha512 = "rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ=="; 4562 3686 }; 4563 3687 }; 4564 - "jest-each-27.5.0" = { 4565 - name = "jest-each"; 4566 - packageName = "jest-each"; 4567 - version = "27.5.0"; 4568 - src = fetchurl { 4569 - url = "https://registry.npmjs.org/jest-each/-/jest-each-27.5.0.tgz"; 4570 - sha512 = "2vpajSdDMZmAxjSP1f4BG9KKduwHtuaI0w66oqLUkfaGUU7Ix/W+d8BW0h3/QEJiew7hR0GSblqdFwTEEbhBdw=="; 4571 - }; 4572 - }; 4573 3688 "jest-each-27.5.1" = { 4574 3689 name = "jest-each"; 4575 3690 packageName = "jest-each"; ··· 4579 3694 sha512 = "1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ=="; 4580 3695 }; 4581 3696 }; 4582 - "jest-environment-jsdom-27.5.0" = { 4583 - name = "jest-environment-jsdom"; 4584 - packageName = "jest-environment-jsdom"; 4585 - version = "27.5.0"; 4586 - src = fetchurl { 4587 - url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.0.tgz"; 4588 - sha512 = "sX49N8rjp6HSHeGpNgLk6mtHRd1IPAnE/u7wLQkb6Tz/1E08Q++Y8Zk/IbpVdcFywbzH1icFqEuDuHJ6o+uXXg=="; 4589 - }; 4590 - }; 4591 3697 "jest-environment-jsdom-27.5.1" = { 4592 3698 name = "jest-environment-jsdom"; 4593 3699 packageName = "jest-environment-jsdom"; ··· 4597 3703 sha512 = "TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw=="; 4598 3704 }; 4599 3705 }; 4600 - "jest-environment-node-27.5.0" = { 4601 - name = "jest-environment-node"; 4602 - packageName = "jest-environment-node"; 4603 - version = "27.5.0"; 4604 - src = fetchurl { 4605 - url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.0.tgz"; 4606 - sha512 = "7UzisMMfGyrURhS/eUa7p7mgaqN3ajHylsjOgfcn0caNeYRZq4LHKZLfAxrPM34DWLnBZcRupEJlpQsizdSUsw=="; 4607 - }; 4608 - }; 4609 3706 "jest-environment-node-27.5.1" = { 4610 3707 name = "jest-environment-node"; 4611 3708 packageName = "jest-environment-node"; ··· 4615 3712 sha512 = "Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw=="; 4616 3713 }; 4617 3714 }; 4618 - "jest-get-type-27.5.0" = { 4619 - name = "jest-get-type"; 4620 - packageName = "jest-get-type"; 4621 - version = "27.5.0"; 4622 - src = fetchurl { 4623 - url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.0.tgz"; 4624 - sha512 = "Vp6O8a52M/dahXRG/E0EJuWQROps2mDQ0sJYPgO8HskhdLwj9ajgngy2OAqZgV6e/RcU67WUHq6TgfvJb8flbA=="; 4625 - }; 4626 - }; 4627 3715 "jest-get-type-27.5.1" = { 4628 3716 name = "jest-get-type"; 4629 3717 packageName = "jest-get-type"; ··· 4633 3721 sha512 = "2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="; 4634 3722 }; 4635 3723 }; 4636 - "jest-haste-map-27.5.0" = { 4637 - name = "jest-haste-map"; 4638 - packageName = "jest-haste-map"; 4639 - version = "27.5.0"; 4640 - src = fetchurl { 4641 - url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.0.tgz"; 4642 - sha512 = "0KfckSBEKV+D6e0toXmIj4zzp72EiBnvkC0L+xYxenkLhAdkp2/8tye4AgMzz7Fqb1r8SWtz7+s1UQLrxMBang=="; 4643 - }; 4644 - }; 4645 3724 "jest-haste-map-27.5.1" = { 4646 3725 name = "jest-haste-map"; 4647 3726 packageName = "jest-haste-map"; ··· 4651 3730 sha512 = "7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng=="; 4652 3731 }; 4653 3732 }; 4654 - "jest-https://registry.npmjs.org/jest/-/jest-27.5.0.tgz" = { 4655 - name = "jest"; 4656 - packageName = "jest"; 4657 - version = 1; 4658 - src = fetchurl { 4659 - name = "jest-1.tar.gz"; 4660 - url = "https://registry.npmjs.org/jest/-/jest-27.5.0.tgz"; 4661 - sha512 = "sCMZhL9zy0fiFc4H0cKlXq7BcghMSxm5ZnEyaPWTteArU5ix6JjOKyOXSUBGLTQCmt5kuX9zEvQ9BSshHOPB3A=="; 4662 - }; 4663 - }; 4664 - "jest-jasmine2-27.5.0" = { 4665 - name = "jest-jasmine2"; 4666 - packageName = "jest-jasmine2"; 4667 - version = "27.5.0"; 4668 - src = fetchurl { 4669 - url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.0.tgz"; 4670 - sha512 = "X7sT3HLNjjrBEepilxzPyNhNdyunaFBepo1L3T/fvYb9tb8Wb8qY576gwIa+SZcqYUqAA7/bT3EpZI4lAp0Qew=="; 4671 - }; 4672 - }; 4673 3733 "jest-jasmine2-27.5.1" = { 4674 3734 name = "jest-jasmine2"; 4675 3735 packageName = "jest-jasmine2"; ··· 4679 3739 sha512 = "jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ=="; 4680 3740 }; 4681 3741 }; 4682 - "jest-leak-detector-27.5.0" = { 4683 - name = "jest-leak-detector"; 4684 - packageName = "jest-leak-detector"; 4685 - version = "27.5.0"; 4686 - src = fetchurl { 4687 - url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.0.tgz"; 4688 - sha512 = "Ak3k+DD3ao5d4/zzJrxAQ5UV5wiCrp47jH94ZD4/vXSzQgE6WBVDfg83VtculLILO7Y6/Q/7yzKSrtN9Na8luA=="; 4689 - }; 4690 - }; 4691 3742 "jest-leak-detector-27.5.1" = { 4692 3743 name = "jest-leak-detector"; 4693 3744 packageName = "jest-leak-detector"; ··· 4697 3748 sha512 = "POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ=="; 4698 3749 }; 4699 3750 }; 4700 - "jest-matcher-utils-27.5.0" = { 4701 - name = "jest-matcher-utils"; 4702 - packageName = "jest-matcher-utils"; 4703 - version = "27.5.0"; 4704 - src = fetchurl { 4705 - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.0.tgz"; 4706 - sha512 = "5ruyzWMGb1ilCWD6ECwNdOhQBeIXAjHmHd5c3uO6quR7RIMHPRP2ucOaejz2j+0R0Ko4GanWM6SqXAeF8nYN5g=="; 4707 - }; 4708 - }; 4709 3751 "jest-matcher-utils-27.5.1" = { 4710 3752 name = "jest-matcher-utils"; 4711 3753 packageName = "jest-matcher-utils"; ··· 4715 3757 sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="; 4716 3758 }; 4717 3759 }; 4718 - "jest-message-util-27.5.0" = { 4719 - name = "jest-message-util"; 4720 - packageName = "jest-message-util"; 4721 - version = "27.5.0"; 4722 - src = fetchurl { 4723 - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.0.tgz"; 4724 - sha512 = "lfbWRhTtmZMEHPAtl0SrvNzK1F4UnVNMHOliRQT2BJ4sBFzIb0gBCHA4ebWD4o6l1fUyvDPxM01K9OIMQTAdQw=="; 4725 - }; 4726 - }; 4727 3760 "jest-message-util-27.5.1" = { 4728 3761 name = "jest-message-util"; 4729 3762 packageName = "jest-message-util"; ··· 4733 3766 sha512 = "rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g=="; 4734 3767 }; 4735 3768 }; 4736 - "jest-mock-27.5.0" = { 4737 - name = "jest-mock"; 4738 - packageName = "jest-mock"; 4739 - version = "27.5.0"; 4740 - src = fetchurl { 4741 - url = "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.0.tgz"; 4742 - sha512 = "PHluG6MJGng82/sxh8OiB9fnxzNn3cazceSHCAmAKs4g5rMhc3EZCrJXv+4w61rA2WGagMUj7QLLrA1SRlFpzQ=="; 4743 - }; 4744 - }; 4745 3769 "jest-mock-27.5.1" = { 4746 3770 name = "jest-mock"; 4747 3771 packageName = "jest-mock"; ··· 4760 3784 sha512 = "olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w=="; 4761 3785 }; 4762 3786 }; 4763 - "jest-regex-util-27.5.0" = { 4764 - name = "jest-regex-util"; 4765 - packageName = "jest-regex-util"; 4766 - version = "27.5.0"; 4767 - src = fetchurl { 4768 - url = "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.0.tgz"; 4769 - sha512 = "e9LqSd6HsDsqd7KS3rNyYwmQAaG9jq4U3LbnwVxN/y3nNlDzm2OFs596uo9zrUY+AV1opXq6ome78tRDUCRWfA=="; 4770 - }; 4771 - }; 4772 3787 "jest-regex-util-27.5.1" = { 4773 3788 name = "jest-regex-util"; 4774 3789 packageName = "jest-regex-util"; ··· 4778 3793 sha512 = "4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg=="; 4779 3794 }; 4780 3795 }; 4781 - "jest-resolve-27.5.0" = { 4782 - name = "jest-resolve"; 4783 - packageName = "jest-resolve"; 4784 - version = "27.5.0"; 4785 - src = fetchurl { 4786 - url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.0.tgz"; 4787 - sha512 = "PkDpYEGV/nFqThnIrlPtj8oTxyAV3iuuS6or7dZYyUWaHr/tyyVb5qfBmZS6FEr7ozBHgjrF1bgcgIefnlicbw=="; 4788 - }; 4789 - }; 4790 3796 "jest-resolve-27.5.1" = { 4791 3797 name = "jest-resolve"; 4792 3798 packageName = "jest-resolve"; ··· 4796 3802 sha512 = "FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw=="; 4797 3803 }; 4798 3804 }; 4799 - "jest-resolve-dependencies-27.5.0" = { 4800 - name = "jest-resolve-dependencies"; 4801 - packageName = "jest-resolve-dependencies"; 4802 - version = "27.5.0"; 4803 - src = fetchurl { 4804 - url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.0.tgz"; 4805 - sha512 = "xQsy7CmrT4CJxdNUEdzZU2M/v6YmtQ/pkJM+sx7TA1siG1zfsZuo78PZvzglwRMQFr88f3Su4Om8OEBAic+SMw=="; 4806 - }; 4807 - }; 4808 3805 "jest-resolve-dependencies-27.5.1" = { 4809 3806 name = "jest-resolve-dependencies"; 4810 3807 packageName = "jest-resolve-dependencies"; ··· 4814 3811 sha512 = "QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg=="; 4815 3812 }; 4816 3813 }; 4817 - "jest-runner-27.5.0" = { 4818 - name = "jest-runner"; 4819 - packageName = "jest-runner"; 4820 - version = "27.5.0"; 4821 - src = fetchurl { 4822 - url = "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.0.tgz"; 4823 - sha512 = "RMzXhkJLLOKKgUPY2trpyVBijaFmswMtgoCCBk2PQVRHC6yo1vLd1/jmFP39s5OXXnt7rntuzKSYvxl+QUibqQ=="; 4824 - }; 4825 - }; 4826 3814 "jest-runner-27.5.1" = { 4827 3815 name = "jest-runner"; 4828 3816 packageName = "jest-runner"; ··· 4832 3820 sha512 = "g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ=="; 4833 3821 }; 4834 3822 }; 4835 - "jest-runtime-27.5.0" = { 4836 - name = "jest-runtime"; 4837 - packageName = "jest-runtime"; 4838 - version = "27.5.0"; 4839 - src = fetchurl { 4840 - url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.0.tgz"; 4841 - sha512 = "T7APxCPjN3p3ePcLuypbWtD0UZHyAdvIADZ9ABI/sFZ9t/Rf2xIUd6D7RzZIX+unewJRooVGWrgDIgeUuj0OUA=="; 4842 - }; 4843 - }; 4844 3823 "jest-runtime-27.5.1" = { 4845 3824 name = "jest-runtime"; 4846 3825 packageName = "jest-runtime"; ··· 4850 3829 sha512 = "o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A=="; 4851 3830 }; 4852 3831 }; 4853 - "jest-serializer-27.5.0" = { 4854 - name = "jest-serializer"; 4855 - packageName = "jest-serializer"; 4856 - version = "27.5.0"; 4857 - src = fetchurl { 4858 - url = "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.0.tgz"; 4859 - sha512 = "aSDFqQlVXtBH+Zb5dl9mCvTSFkabixk/9P9cpngL4yJKpmEi9USxfDhONFMzJrtftPvZw3PcltUVmtFZTB93rg=="; 4860 - }; 4861 - }; 4862 3832 "jest-serializer-27.5.1" = { 4863 3833 name = "jest-serializer"; 4864 3834 packageName = "jest-serializer"; ··· 4868 3838 sha512 = "jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w=="; 4869 3839 }; 4870 3840 }; 4871 - "jest-snapshot-27.5.0" = { 4872 - name = "jest-snapshot"; 4873 - packageName = "jest-snapshot"; 4874 - version = "27.5.0"; 4875 - src = fetchurl { 4876 - url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.0.tgz"; 4877 - sha512 = "cAJj15uqWGkro0bfcv/EgusBnqNgCpRruFQZghsMYTq4Fm2lk/VhAf8DgRr8wvhR6Ue1hkeL8tn70Cw4t8x/5A=="; 4878 - }; 4879 - }; 4880 3841 "jest-snapshot-27.5.1" = { 4881 3842 name = "jest-snapshot"; 4882 3843 packageName = "jest-snapshot"; ··· 4886 3847 sha512 = "yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA=="; 4887 3848 }; 4888 3849 }; 4889 - "jest-util-27.5.0" = { 4890 - name = "jest-util"; 4891 - packageName = "jest-util"; 4892 - version = "27.5.0"; 4893 - src = fetchurl { 4894 - url = "https://registry.npmjs.org/jest-util/-/jest-util-27.5.0.tgz"; 4895 - sha512 = "FUUqOx0gAzJy3ytatT1Ss372M1kmhczn8x7aE0++11oPGW1FyD/5NjYBI8w1KOXFm6IVjtaZm2szfJJL+CHs0g=="; 4896 - }; 4897 - }; 4898 3850 "jest-util-27.5.1" = { 4899 3851 name = "jest-util"; 4900 3852 packageName = "jest-util"; ··· 4904 3856 sha512 = "Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw=="; 4905 3857 }; 4906 3858 }; 4907 - "jest-validate-27.5.0" = { 4908 - name = "jest-validate"; 4909 - packageName = "jest-validate"; 4910 - version = "27.5.0"; 4911 - src = fetchurl { 4912 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.0.tgz"; 4913 - sha512 = "2XZzQWNrY9Ypo11mm4ZeVjvr++CQG/45XnmA2aWwx155lTwy1JGFI8LpQ2dBCSAeO21ooqg/FCIvv9WwfnPClA=="; 4914 - }; 4915 - }; 4916 3859 "jest-validate-27.5.1" = { 4917 3860 name = "jest-validate"; 4918 3861 packageName = "jest-validate"; ··· 4922 3865 sha512 = "thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ=="; 4923 3866 }; 4924 3867 }; 4925 - "jest-watcher-27.5.0" = { 4926 - name = "jest-watcher"; 4927 - packageName = "jest-watcher"; 4928 - version = "27.5.0"; 4929 - src = fetchurl { 4930 - url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.0.tgz"; 4931 - sha512 = "MhIeIvEd6dnnspE0OfYrqHOAfZZdyFqx/k8U2nvVFSkLYf22qAFfyNWPVQYcwqKVNobcOhJoT0kV/nRHGbqK8A=="; 4932 - }; 4933 - }; 4934 3868 "jest-watcher-27.5.1" = { 4935 3869 name = "jest-watcher"; 4936 3870 packageName = "jest-watcher"; ··· 4940 3874 sha512 = "z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw=="; 4941 3875 }; 4942 3876 }; 4943 - "jest-worker-27.5.0" = { 4944 - name = "jest-worker"; 4945 - packageName = "jest-worker"; 4946 - version = "27.5.0"; 4947 - src = fetchurl { 4948 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.0.tgz"; 4949 - sha512 = "8OEHiPNOPTfaWnJ2SUHM8fmgeGq37uuGsQBvGKQJl1f+6WIy6g7G3fE2ruI5294bUKUI9FaCWt5hDvO8HSwsSg=="; 4950 - }; 4951 - }; 4952 3877 "jest-worker-27.5.1" = { 4953 3878 name = "jest-worker"; 4954 3879 packageName = "jest-worker"; ··· 5057 3982 sha1 = "9db7b59496ad3f3cfef30a75142d2d930ad72651"; 5058 3983 }; 5059 3984 }; 5060 - "json5-2.2.0" = { 5061 - name = "json5"; 5062 - packageName = "json5"; 5063 - version = "2.2.0"; 5064 - src = fetchurl { 5065 - url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"; 5066 - sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 5067 - }; 5068 - }; 5069 3985 "json5-2.2.1" = { 5070 3986 name = "json5"; 5071 3987 packageName = "json5"; ··· 5075 3991 sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 5076 3992 }; 5077 3993 }; 5078 - "jsonc-parser-3.0.0" = { 5079 - name = "jsonc-parser"; 5080 - packageName = "jsonc-parser"; 5081 - version = "3.0.0"; 5082 - src = fetchurl { 5083 - url = "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz"; 5084 - sha512 = "fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA=="; 5085 - }; 5086 - }; 5087 3994 "kleur-3.0.3" = { 5088 3995 name = "kleur"; 5089 3996 packageName = "kleur"; ··· 5201 4108 sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 5202 4109 }; 5203 4110 }; 5204 - "lunr-2.3.9" = { 5205 - name = "lunr"; 5206 - packageName = "lunr"; 5207 - version = "2.3.9"; 5208 - src = fetchurl { 5209 - url = "https://registry.npmjs.org/lunr/-/lunr-2.3.9.tgz"; 5210 - sha512 = "zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow=="; 5211 - }; 5212 - }; 5213 - "make-dir-2.1.0" = { 5214 - name = "make-dir"; 5215 - packageName = "make-dir"; 5216 - version = "2.1.0"; 5217 - src = fetchurl { 5218 - url = "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz"; 5219 - sha512 = "LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA=="; 5220 - }; 5221 - }; 5222 4111 "make-dir-3.1.0" = { 5223 4112 name = "make-dir"; 5224 4113 packageName = "make-dir"; ··· 5237 4126 sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; 5238 4127 }; 5239 4128 }; 5240 - "marked-4.0.12" = { 5241 - name = "marked"; 5242 - packageName = "marked"; 5243 - version = "4.0.12"; 5244 - src = fetchurl { 5245 - url = "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz"; 5246 - sha512 = "hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ=="; 5247 - }; 5248 - }; 5249 4129 "merge-stream-2.0.0" = { 5250 4130 name = "merge-stream"; 5251 4131 packageName = "merge-stream"; ··· 5264 4144 sha512 = "8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg=="; 5265 4145 }; 5266 4146 }; 5267 - "micromatch-4.0.4" = { 5268 - name = "micromatch"; 5269 - packageName = "micromatch"; 5270 - version = "4.0.4"; 5271 - src = fetchurl { 5272 - url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"; 5273 - sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="; 5274 - }; 5275 - }; 5276 4147 "micromatch-4.0.5" = { 5277 4148 name = "micromatch"; 5278 4149 packageName = "micromatch"; ··· 5291 4162 sha512 = "x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="; 5292 4163 }; 5293 4164 }; 5294 - "mime-db-1.51.0" = { 5295 - name = "mime-db"; 5296 - packageName = "mime-db"; 5297 - version = "1.51.0"; 5298 - src = fetchurl { 5299 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"; 5300 - sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; 5301 - }; 5302 - }; 5303 4165 "mime-db-1.52.0" = { 5304 4166 name = "mime-db"; 5305 4167 packageName = "mime-db"; ··· 5309 4171 sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; 5310 4172 }; 5311 4173 }; 5312 - "mime-types-2.1.34" = { 5313 - name = "mime-types"; 5314 - packageName = "mime-types"; 5315 - version = "2.1.34"; 5316 - src = fetchurl { 5317 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"; 5318 - sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; 5319 - }; 5320 - }; 5321 4174 "mime-types-2.1.35" = { 5322 4175 name = "mime-types"; 5323 4176 packageName = "mime-types"; ··· 5343 4196 src = fetchurl { 5344 4197 url = "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz"; 5345 4198 sha512 = "z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ=="; 5346 - }; 5347 - }; 5348 - "minimatch-3.0.4" = { 5349 - name = "minimatch"; 5350 - packageName = "minimatch"; 5351 - version = "3.0.4"; 5352 - src = fetchurl { 5353 - url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz"; 5354 - sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 5355 4199 }; 5356 4200 }; 5357 4201 "minimatch-3.1.2" = { ··· 5363 4207 sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 5364 4208 }; 5365 4209 }; 5366 - "minimist-1.2.5" = { 5367 - name = "minimist"; 5368 - packageName = "minimist"; 5369 - version = "1.2.5"; 5370 - src = fetchurl { 5371 - url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 5372 - sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 5373 - }; 5374 - }; 5375 4210 "minimist-1.2.6" = { 5376 4211 name = "minimist"; 5377 4212 packageName = "minimist"; ··· 5408 4243 sha512 = "gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A=="; 5409 4244 }; 5410 4245 }; 5411 - "moment-2.29.1" = { 4246 + "moment-2.29.3" = { 5412 4247 name = "moment"; 5413 4248 packageName = "moment"; 5414 - version = "2.29.1"; 4249 + version = "2.29.3"; 5415 4250 src = fetchurl { 5416 - url = "https://registry.npmjs.org/moment/-/moment-2.29.1.tgz"; 5417 - sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; 4251 + url = "https://registry.npmjs.org/moment/-/moment-2.29.3.tgz"; 4252 + sha512 = "c6YRvhEo//6T2Jz/vVtYzqBzwvPT95JBQ+smCytzf7c50oMZRsR/a4w88aD34I+/QVSfnoAnSBFPJHItlOMJVw=="; 5418 4253 }; 5419 4254 }; 5420 4255 "mqtt-4.3.7" = { ··· 5498 4333 sha1 = "4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7"; 5499 4334 }; 5500 4335 }; 5501 - "neo-async-2.6.2" = { 5502 - name = "neo-async"; 5503 - packageName = "neo-async"; 5504 - version = "2.6.2"; 5505 - src = fetchurl { 5506 - url = "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz"; 5507 - sha512 = "Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw=="; 5508 - }; 5509 - }; 5510 - "node-abi-3.8.0" = { 4336 + "node-abi-3.15.0" = { 5511 4337 name = "node-abi"; 5512 4338 packageName = "node-abi"; 5513 - version = "3.8.0"; 4339 + version = "3.15.0"; 5514 4340 src = fetchurl { 5515 - url = "https://registry.npmjs.org/node-abi/-/node-abi-3.8.0.tgz"; 5516 - sha512 = "tzua9qWWi7iW4I42vUPKM+SfaF0vQSLAm4yO5J83mSwB7GeoWrDKC/K+8YCnYNwqP5duwazbw2X9l4m8SC2cUw=="; 4341 + url = "https://registry.npmjs.org/node-abi/-/node-abi-3.15.0.tgz"; 4342 + sha512 = "Ic6z/j6I9RLm4ov7npo1I48UQr2BEyFCqh6p7S1dhEx9jPO0GPGq/e2Rb7x7DroQrmiVMz/Bw1vJm9sPAl2nxA=="; 5517 4343 }; 5518 4344 }; 5519 4345 "node-int64-0.4.0" = { ··· 5525 4351 sha1 = "87a9065cdb355d3182d8f94ce11188b825c68a3b"; 5526 4352 }; 5527 4353 }; 5528 - "node-releases-2.0.1" = { 4354 + "node-releases-2.0.3" = { 5529 4355 name = "node-releases"; 5530 4356 packageName = "node-releases"; 5531 - version = "2.0.1"; 4357 + version = "2.0.3"; 5532 4358 src = fetchurl { 5533 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz"; 5534 - sha512 = "CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA=="; 5535 - }; 5536 - }; 5537 - "node-releases-2.0.2" = { 5538 - name = "node-releases"; 5539 - packageName = "node-releases"; 5540 - version = "2.0.2"; 5541 - src = fetchurl { 5542 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz"; 5543 - sha512 = "XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg=="; 4359 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.3.tgz"; 4360 + sha512 = "maHFz6OLqYxz+VQyCAtA3PTX4UP/53pa05fyDNc9CwjvJ0yEh6+xBwKsgCxMNhS8taUKBFYxfuiaD9U/55iFaw=="; 5544 4361 }; 5545 4362 }; 5546 4363 "normalize-path-3.0.0" = { ··· 5813 4630 sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 5814 4631 }; 5815 4632 }; 5816 - "pify-4.0.1" = { 5817 - name = "pify"; 5818 - packageName = "pify"; 5819 - version = "4.0.1"; 5820 - src = fetchurl { 5821 - url = "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz"; 5822 - sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 5823 - }; 5824 - }; 5825 4633 "pirates-4.0.5" = { 5826 4634 name = "pirates"; 5827 4635 packageName = "pirates"; ··· 5840 4648 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 5841 4649 }; 5842 4650 }; 5843 - "prebuild-install-7.0.1" = { 4651 + "prebuild-install-7.1.0" = { 5844 4652 name = "prebuild-install"; 5845 4653 packageName = "prebuild-install"; 5846 - version = "7.0.1"; 4654 + version = "7.1.0"; 5847 4655 src = fetchurl { 5848 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.1.tgz"; 5849 - sha512 = "QBSab31WqkyxpnMWQxubYAHR5S9B2+r81ucocew34Fkl98FhvKIF50jIJnNOBmAZfyNV7vE5T6gd3hTVWgY6tg=="; 4656 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.0.tgz"; 4657 + sha512 = "CNcMgI1xBypOyGqjp3wOc8AAo1nMhZS3Cwd3iHIxOdAUbb+YxdNuM4Z5iIrZ8RLvOsf3F3bl7b7xGq6DjQoNYA=="; 5850 4658 }; 5851 4659 }; 5852 4660 "prelude-ls-1.1.2" = { ··· 5865 4673 src = fetchurl { 5866 4674 url = "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"; 5867 4675 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 5868 - }; 5869 - }; 5870 - "pretty-format-27.5.0" = { 5871 - name = "pretty-format"; 5872 - packageName = "pretty-format"; 5873 - version = "27.5.0"; 5874 - src = fetchurl { 5875 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.0.tgz"; 5876 - sha512 = "xEi6BRPZ+J1AIS4BAtFC/+rh5jXlXObGZjx5+OSpM95vR/PGla78bFVHMy5GdZjP9wk3AHAMHROXq/r69zXltw=="; 5877 4676 }; 5878 4677 }; 5879 4678 "pretty-format-27.5.1" = { ··· 5984 4783 sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA=="; 5985 4784 }; 5986 4785 }; 5987 - "readdirp-3.6.0" = { 5988 - name = "readdirp"; 5989 - packageName = "readdirp"; 5990 - version = "3.6.0"; 5991 - src = fetchurl { 5992 - url = "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz"; 5993 - sha512 = "hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA=="; 5994 - }; 5995 - }; 5996 4786 "regenerate-1.4.2" = { 5997 4787 name = "regenerate"; 5998 4788 packageName = "regenerate"; ··· 6020 4810 sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA=="; 6021 4811 }; 6022 4812 }; 6023 - "regenerator-transform-0.14.5" = { 4813 + "regenerator-transform-0.15.0" = { 6024 4814 name = "regenerator-transform"; 6025 4815 packageName = "regenerator-transform"; 6026 - version = "0.14.5"; 4816 + version = "0.15.0"; 6027 4817 src = fetchurl { 6028 - url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.5.tgz"; 6029 - sha512 = "eOf6vka5IO151Jfsw2NO9WpGX58W6wWmefK3I1zEGr0lOD0u8rwPaNqQL1aRxUaxLeKO3ArNh3VYg1KbaD+FFw=="; 4818 + url = "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.0.tgz"; 4819 + sha512 = "LsrGtPmbYg19bcPHwdtmXwbW+TqNvtY4riE3P83foeHRroMbH6/2ddFBfab3t7kbzc7v7p4wbkIecHImqt0QNg=="; 6030 4820 }; 6031 4821 }; 6032 4822 "regexpp-3.2.0" = { ··· 6218 5008 sha512 = "5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw=="; 6219 5009 }; 6220 5010 }; 6221 - "semver-5.7.1" = { 6222 - name = "semver"; 6223 - packageName = "semver"; 6224 - version = "5.7.1"; 6225 - src = fetchurl { 6226 - url = "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz"; 6227 - sha512 = "sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ=="; 6228 - }; 6229 - }; 6230 5011 "semver-6.3.0" = { 6231 5012 name = "semver"; 6232 5013 packageName = "semver"; ··· 6245 5026 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 6246 5027 }; 6247 5028 }; 6248 - "semver-7.3.5" = { 5029 + "semver-7.3.7" = { 6249 5030 name = "semver"; 6250 5031 packageName = "semver"; 6251 - version = "7.3.5"; 5032 + version = "7.3.7"; 6252 5033 src = fetchurl { 6253 - url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz"; 6254 - sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 5034 + url = "https://registry.npmjs.org/semver/-/semver-7.3.7.tgz"; 5035 + sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; 6255 5036 }; 6256 5037 }; 6257 5038 "send-0.18.0" = { ··· 6317 5098 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 6318 5099 }; 6319 5100 }; 6320 - "shiki-0.10.0" = { 6321 - name = "shiki"; 6322 - packageName = "shiki"; 6323 - version = "0.10.0"; 6324 - src = fetchurl { 6325 - url = "https://registry.npmjs.org/shiki/-/shiki-0.10.0.tgz"; 6326 - sha512 = "iczxaIYeBFHTFrQPb9DVy2SKgYxC4Wo7Iucm7C17cCh2Ge/refnvHscUOxM85u57MfLoNOtjoEFUWt9gBexblA=="; 6327 - }; 6328 - }; 6329 5101 "signal-exit-3.0.7" = { 6330 5102 name = "signal-exit"; 6331 5103 packageName = "signal-exit"; ··· 6371 5143 sha512 = "bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg=="; 6372 5144 }; 6373 5145 }; 6374 - "slash-2.0.0" = { 6375 - name = "slash"; 6376 - packageName = "slash"; 6377 - version = "2.0.0"; 6378 - src = fetchurl { 6379 - url = "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz"; 6380 - sha512 = "ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A=="; 6381 - }; 6382 - }; 6383 5146 "slash-3.0.0" = { 6384 5147 name = "slash"; 6385 5148 packageName = "slash"; ··· 6893 5656 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 6894 5657 }; 6895 5658 }; 6896 - "typedoc-0.22.11" = { 6897 - name = "typedoc"; 6898 - packageName = "typedoc"; 6899 - version = "0.22.11"; 6900 - src = fetchurl { 6901 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.22.11.tgz"; 6902 - sha512 = "pVr3hh6dkS3lPPaZz1fNpvcrqLdtEvXmXayN55czlamSgvEjh+57GUqfhAI1Xsuu/hNHUT1KNSx8LH2wBP/7SA=="; 6903 - }; 6904 - }; 6905 - "typedoc-https://registry.npmjs.org/typedoc/-/typedoc-0.22.11.tgz" = { 6906 - name = "typedoc"; 6907 - packageName = "typedoc"; 6908 - version = 1; 6909 - src = fetchurl { 6910 - name = "typedoc-1.tar.gz"; 6911 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.22.11.tgz"; 6912 - sha512 = "pVr3hh6dkS3lPPaZz1fNpvcrqLdtEvXmXayN55czlamSgvEjh+57GUqfhAI1Xsuu/hNHUT1KNSx8LH2wBP/7SA=="; 6913 - }; 6914 - }; 6915 - "typedoc-plugin-markdown-3.11.13" = { 6916 - name = "typedoc-plugin-markdown"; 6917 - packageName = "typedoc-plugin-markdown"; 6918 - version = "3.11.13"; 6919 - src = fetchurl { 6920 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.13.tgz"; 6921 - sha512 = "9Y7eWWmUF5i8LMfetPlOP+kTn5L3Q71fm/AUHZhxWYoAiugbybQujhjQk4h09uY2WghPP2BldOivtTxnOwj85A=="; 6922 - }; 6923 - }; 6924 - "typedoc-plugin-markdown-https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.13.tgz" = { 6925 - name = "typedoc-plugin-markdown"; 6926 - packageName = "typedoc-plugin-markdown"; 6927 - version = 1; 6928 - src = fetchurl { 6929 - name = "typedoc-plugin-markdown-1.tar.gz"; 6930 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.13.tgz"; 6931 - sha512 = "9Y7eWWmUF5i8LMfetPlOP+kTn5L3Q71fm/AUHZhxWYoAiugbybQujhjQk4h09uY2WghPP2BldOivtTxnOwj85A=="; 6932 - }; 6933 - }; 6934 - "typedoc-plugin-no-inherit-1.3.1" = { 6935 - name = "typedoc-plugin-no-inherit"; 6936 - packageName = "typedoc-plugin-no-inherit"; 6937 - version = "1.3.1"; 6938 - src = fetchurl { 6939 - url = "https://registry.npmjs.org/typedoc-plugin-no-inherit/-/typedoc-plugin-no-inherit-1.3.1.tgz"; 6940 - sha512 = "3fdPHRaIcCVV1W5gJYpZTdZL+F2VZTlUMd3Hw9xIv931ILh18CcD8IfxZtTtOijJRuKbgRLJ+J/+hVlgCbq1RQ=="; 6941 - }; 6942 - }; 6943 - "typedoc-plugin-no-inherit-https://registry.npmjs.org/typedoc-plugin-no-inherit/-/typedoc-plugin-no-inherit-1.3.1.tgz" = { 6944 - name = "typedoc-plugin-no-inherit"; 6945 - packageName = "typedoc-plugin-no-inherit"; 6946 - version = 1; 6947 - src = fetchurl { 6948 - name = "typedoc-plugin-no-inherit-1.tar.gz"; 6949 - url = "https://registry.npmjs.org/typedoc-plugin-no-inherit/-/typedoc-plugin-no-inherit-1.3.1.tgz"; 6950 - sha512 = "3fdPHRaIcCVV1W5gJYpZTdZL+F2VZTlUMd3Hw9xIv931ILh18CcD8IfxZtTtOijJRuKbgRLJ+J/+hVlgCbq1RQ=="; 6951 - }; 6952 - }; 6953 - "typedoc-plugin-sourcefile-url-1.0.6" = { 6954 - name = "typedoc-plugin-sourcefile-url"; 6955 - packageName = "typedoc-plugin-sourcefile-url"; 6956 - version = "1.0.6"; 6957 - src = fetchurl { 6958 - url = "https://registry.npmjs.org/typedoc-plugin-sourcefile-url/-/typedoc-plugin-sourcefile-url-1.0.6.tgz"; 6959 - sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 6960 - }; 6961 - }; 6962 - "typedoc-plugin-sourcefile-url-https://registry.npmjs.org/typedoc-plugin-sourcefile-url/-/typedoc-plugin-sourcefile-url-1.0.6.tgz" = { 6963 - name = "typedoc-plugin-sourcefile-url"; 6964 - packageName = "typedoc-plugin-sourcefile-url"; 6965 - version = 1; 6966 - src = fetchurl { 6967 - name = "typedoc-plugin-sourcefile-url-1.tar.gz"; 6968 - url = "https://registry.npmjs.org/typedoc-plugin-sourcefile-url/-/typedoc-plugin-sourcefile-url-1.0.6.tgz"; 6969 - sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 6970 - }; 6971 - }; 6972 - "typescript-4.5.5" = { 6973 - name = "typescript"; 6974 - packageName = "typescript"; 6975 - version = "4.5.5"; 6976 - src = fetchurl { 6977 - url = "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz"; 6978 - sha512 = "TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA=="; 6979 - }; 6980 - }; 6981 5659 "typescript-4.6.3" = { 6982 5660 name = "typescript"; 6983 5661 packageName = "typescript"; ··· 6985 5663 src = fetchurl { 6986 5664 url = "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz"; 6987 5665 sha512 = "yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw=="; 6988 - }; 6989 - }; 6990 - "typescript-https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz" = { 6991 - name = "typescript"; 6992 - packageName = "typescript"; 6993 - version = 1; 6994 - src = fetchurl { 6995 - name = "typescript-1.tar.gz"; 6996 - url = "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz"; 6997 - sha512 = "TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA=="; 6998 - }; 6999 - }; 7000 - "uglify-js-3.15.0" = { 7001 - name = "uglify-js"; 7002 - packageName = "uglify-js"; 7003 - version = "3.15.0"; 7004 - src = fetchurl { 7005 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.0.tgz"; 7006 - sha512 = "x+xdeDWq7FiORDvyIJ0q/waWd4PhjBNOm5dQUOq2AKC0IEjxOS66Ha9tctiVDGcRQuh69K7fgU5oRuTK4cysSg=="; 7007 5666 }; 7008 5667 }; 7009 5668 "unicode-canonical-property-names-ecmascript-2.0.0" = { ··· 7105 5764 sha512 = "FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w=="; 7106 5765 }; 7107 5766 }; 7108 - "vscode-oniguruma-1.6.1" = { 7109 - name = "vscode-oniguruma"; 7110 - packageName = "vscode-oniguruma"; 7111 - version = "1.6.1"; 7112 - src = fetchurl { 7113 - url = "https://registry.npmjs.org/vscode-oniguruma/-/vscode-oniguruma-1.6.1.tgz"; 7114 - sha512 = "vc4WhSIaVpgJ0jJIejjYxPvURJavX6QG41vu0mGhqywMkQqulezEqEQ3cO3gc8GvcOpX6ycmKGqRoROEMBNXTQ=="; 7115 - }; 7116 - }; 7117 - "vscode-textmate-5.2.0" = { 7118 - name = "vscode-textmate"; 7119 - packageName = "vscode-textmate"; 7120 - version = "5.2.0"; 7121 - src = fetchurl { 7122 - url = "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz"; 7123 - sha512 = "Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ=="; 7124 - }; 7125 - }; 7126 5767 "w3c-hr-time-1.0.2" = { 7127 5768 name = "w3c-hr-time"; 7128 5769 packageName = "w3c-hr-time"; ··· 7213 5854 sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 7214 5855 }; 7215 5856 }; 7216 - "winston-3.6.0" = { 5857 + "winston-3.7.2" = { 7217 5858 name = "winston"; 7218 5859 packageName = "winston"; 7219 - version = "3.6.0"; 5860 + version = "3.7.2"; 7220 5861 src = fetchurl { 7221 - url = "https://registry.npmjs.org/winston/-/winston-3.6.0.tgz"; 7222 - sha512 = "9j8T75p+bcN6D00sF/zjFVmPp+t8KMPB1MzbbzYjeN9VWxdsYnTB40TkbNUEXAmILEfChMvAMgidlX64OG3p6w=="; 5862 + url = "https://registry.npmjs.org/winston/-/winston-3.7.2.tgz"; 5863 + sha512 = "QziIqtojHBoyzUOdQvQiar1DH0Xp9nF1A1y7NVy2DGEsz82SBDtOalS0ulTRGVT14xPX3WRWkCsdcJKqNflKng=="; 7223 5864 }; 7224 5865 }; 7225 5866 "winston-syslog-2.5.0" = { ··· 7249 5890 sha512 = "Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ=="; 7250 5891 }; 7251 5892 }; 7252 - "wordwrap-1.0.0" = { 7253 - name = "wordwrap"; 7254 - packageName = "wordwrap"; 7255 - version = "1.0.0"; 7256 - src = fetchurl { 7257 - url = "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz"; 7258 - sha1 = "27584810891456a4171c8d0226441ade90cbcaeb"; 7259 - }; 7260 - }; 7261 5893 "wrap-ansi-7.0.0" = { 7262 5894 name = "wrap-ansi"; 7263 5895 packageName = "wrap-ansi"; ··· 7285 5917 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 7286 5918 }; 7287 5919 }; 7288 - "ws-7.5.6" = { 7289 - name = "ws"; 7290 - packageName = "ws"; 7291 - version = "7.5.6"; 7292 - src = fetchurl { 7293 - url = "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz"; 7294 - sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA=="; 7295 - }; 7296 - }; 7297 5920 "ws-7.5.7" = { 7298 5921 name = "ws"; 7299 5922 packageName = "ws"; ··· 7375 5998 sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 7376 5999 }; 7377 6000 }; 7378 - "zigbee-herdsman-0.14.20" = { 6001 + "zigbee-herdsman-0.14.27" = { 7379 6002 name = "zigbee-herdsman"; 7380 6003 packageName = "zigbee-herdsman"; 7381 - version = "0.14.20"; 6004 + version = "0.14.27"; 7382 6005 src = fetchurl { 7383 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.20.tgz"; 7384 - sha512 = "YwvAHEfWtcCLilnoHcIpZ9DCPHSLwpy2iboC2zjJUGNQp0vUClJhjAxb6JdTnaHxrNB2FN6+b3Q6BS8QiTtg5g=="; 6006 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.27.tgz"; 6007 + sha512 = "B7Ofk4GPMwFMZS4KBvUu9IW3C7h5+9Ly6O6M2cXTeMdL2fiyZB3Tpzs7fGscevSbCpnkEOSI4xpK+MeVMwH/Og=="; 7385 6008 }; 7386 6009 }; 7387 - "zigbee-herdsman-converters-14.0.467" = { 6010 + "zigbee-herdsman-converters-14.0.504" = { 7388 6011 name = "zigbee-herdsman-converters"; 7389 6012 packageName = "zigbee-herdsman-converters"; 7390 - version = "14.0.467"; 6013 + version = "14.0.504"; 7391 6014 src = fetchurl { 7392 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.467.tgz"; 7393 - sha512 = "fkOSFkKj/4q/nh2elXHcTHTvPte54Y4hrXq/BZpnkMgNuLr2lkJgZ52ChG5XyI/4wHtAJq8lgnjGubqr8xNNMQ=="; 6015 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.504.tgz"; 6016 + sha512 = "StMDWFt4DBhrgMvapiOqzurMBW02bIbjS1ul8EaiNBYA91cg9qUrTSmJssuZKEPTXs1I8yS7X2OGS8Kzja4z4Q=="; 7394 6017 }; 7395 6018 }; 7396 - "zigbee2mqtt-frontend-0.6.80" = { 6019 + "zigbee2mqtt-frontend-0.6.83" = { 7397 6020 name = "zigbee2mqtt-frontend"; 7398 6021 packageName = "zigbee2mqtt-frontend"; 7399 - version = "0.6.80"; 6022 + version = "0.6.83"; 7400 6023 src = fetchurl { 7401 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.80.tgz"; 7402 - sha512 = "mDRQ35j5SuTKCsn7NvjNng7x0OK0Hv9sqxMnl0ISfoNEAD5RDpvzDiEBS6XGoymTI+PRNmaNdbczC5/DVqo5xQ=="; 6024 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.83.tgz"; 6025 + sha512 = "I44236qdpo/dSVpKyVV54RTCmb6BNpLXpZ414DOIBXXqIhseZhQEx7WC8UZ/ZtxxORBAd8E9LCYp5eWOb+zoNQ=="; 7403 6026 }; 7404 6027 }; 7405 6028 }; 7406 6029 args = { 7407 6030 name = "zigbee2mqtt"; 7408 6031 packageName = "zigbee2mqtt"; 7409 - version = "1.25.0"; 6032 + version = "1.25.1"; 7410 6033 src = ./.; 7411 6034 dependencies = [ 7412 6035 sources."@ampproject/remapping-2.1.2" 7413 6036 sources."@babel/code-frame-7.16.7" 7414 6037 sources."@babel/compat-data-7.17.7" 7415 - (sources."@babel/core-7.17.8" // { 6038 + (sources."@babel/core-7.17.9" // { 7416 6039 dependencies = [ 7417 - sources."debug-4.3.4" 7418 - sources."ms-2.1.2" 7419 6040 sources."semver-6.3.0" 7420 6041 ]; 7421 6042 }) 7422 - (sources."@babel/generator-7.17.7" // { 7423 - dependencies = [ 7424 - sources."source-map-0.5.7" 7425 - ]; 7426 - }) 6043 + sources."@babel/generator-7.17.9" 7427 6044 sources."@babel/helper-annotate-as-pure-7.16.7" 7428 6045 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 7429 6046 (sources."@babel/helper-compilation-targets-7.17.7" // { ··· 7431 6048 sources."semver-6.3.0" 7432 6049 ]; 7433 6050 }) 7434 - sources."@babel/helper-create-class-features-plugin-7.17.6" 6051 + sources."@babel/helper-create-class-features-plugin-7.17.9" 7435 6052 sources."@babel/helper-create-regexp-features-plugin-7.17.0" 7436 6053 (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 7437 6054 dependencies = [ 7438 - sources."debug-4.3.4" 7439 - sources."ms-2.1.2" 7440 6055 sources."semver-6.3.0" 7441 6056 ]; 7442 6057 }) 7443 6058 sources."@babel/helper-environment-visitor-7.16.7" 7444 6059 sources."@babel/helper-explode-assignable-expression-7.16.7" 7445 - sources."@babel/helper-function-name-7.16.7" 7446 - sources."@babel/helper-get-function-arity-7.16.7" 6060 + sources."@babel/helper-function-name-7.17.9" 7447 6061 sources."@babel/helper-hoist-variables-7.16.7" 7448 6062 sources."@babel/helper-member-expression-to-functions-7.17.7" 7449 6063 sources."@babel/helper-module-imports-7.16.7" ··· 7458 6072 sources."@babel/helper-validator-identifier-7.16.7" 7459 6073 sources."@babel/helper-validator-option-7.16.7" 7460 6074 sources."@babel/helper-wrap-function-7.16.8" 7461 - sources."@babel/helpers-7.17.8" 7462 - sources."@babel/highlight-7.16.10" 7463 - sources."@babel/parser-7.17.8" 6075 + sources."@babel/helpers-7.17.9" 6076 + sources."@babel/highlight-7.17.9" 6077 + sources."@babel/parser-7.17.9" 7464 6078 sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 7465 6079 sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 7466 6080 sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 7467 6081 sources."@babel/plugin-proposal-class-properties-7.16.7" 7468 6082 sources."@babel/plugin-proposal-class-static-block-7.17.6" 7469 - sources."@babel/plugin-proposal-decorators-7.17.8" 6083 + sources."@babel/plugin-proposal-decorators-7.17.9" 7470 6084 sources."@babel/plugin-proposal-dynamic-import-7.16.7" 7471 6085 sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 7472 6086 sources."@babel/plugin-proposal-json-strings-7.16.7" ··· 7512 6126 sources."@babel/plugin-transform-literals-7.16.7" 7513 6127 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 7514 6128 sources."@babel/plugin-transform-modules-amd-7.16.7" 7515 - sources."@babel/plugin-transform-modules-commonjs-7.17.7" 6129 + sources."@babel/plugin-transform-modules-commonjs-7.17.9" 7516 6130 sources."@babel/plugin-transform-modules-systemjs-7.17.8" 7517 6131 sources."@babel/plugin-transform-modules-umd-7.16.7" 7518 6132 sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" ··· 7520 6134 sources."@babel/plugin-transform-object-super-7.16.7" 7521 6135 sources."@babel/plugin-transform-parameters-7.16.7" 7522 6136 sources."@babel/plugin-transform-property-literals-7.16.7" 7523 - sources."@babel/plugin-transform-regenerator-7.16.7" 6137 + sources."@babel/plugin-transform-regenerator-7.17.9" 7524 6138 sources."@babel/plugin-transform-reserved-words-7.16.7" 7525 6139 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 7526 6140 sources."@babel/plugin-transform-spread-7.16.7" ··· 7537 6151 }) 7538 6152 sources."@babel/preset-modules-0.1.5" 7539 6153 sources."@babel/preset-typescript-7.16.7" 7540 - sources."@babel/runtime-7.17.8" 6154 + sources."@babel/runtime-7.17.9" 7541 6155 sources."@babel/template-7.16.7" 7542 - (sources."@babel/traverse-7.17.3" // { 7543 - dependencies = [ 7544 - sources."debug-4.3.4" 7545 - sources."ms-2.1.2" 7546 - ]; 7547 - }) 6156 + sources."@babel/traverse-7.17.9" 7548 6157 sources."@babel/types-7.17.0" 7549 6158 sources."@bcoe/v8-coverage-0.2.3" 7550 6159 sources."@colors/colors-1.5.0" 7551 6160 sources."@dabh/diagnostics-2.0.3" 7552 - (sources."@eslint/eslintrc-1.2.1" // { 6161 + (sources."@eslint/eslintrc-1.2.2" // { 7553 6162 dependencies = [ 7554 6163 sources."ajv-6.12.6" 7555 - sources."debug-4.3.4" 7556 6164 sources."globals-13.13.0" 7557 6165 sources."json-schema-traverse-0.4.1" 7558 - sources."ms-2.1.2" 7559 - ]; 7560 - }) 7561 - (sources."@humanwhocodes/config-array-0.9.5" // { 7562 - dependencies = [ 7563 - sources."debug-4.3.4" 7564 - sources."ms-2.1.2" 6166 + sources."type-fest-0.20.2" 7565 6167 ]; 7566 6168 }) 6169 + sources."@humanwhocodes/config-array-0.9.5" 7567 6170 sources."@humanwhocodes/object-schema-1.2.1" 7568 6171 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 7569 6172 dependencies = [ ··· 7602 6205 sources."color-convert-2.0.1" 7603 6206 sources."color-name-1.1.4" 7604 6207 sources."has-flag-4.0.0" 6208 + sources."source-map-0.6.1" 7605 6209 sources."supports-color-7.2.0" 7606 6210 ]; 7607 6211 }) 7608 - sources."@jest/source-map-27.5.1" 6212 + (sources."@jest/source-map-27.5.1" // { 6213 + dependencies = [ 6214 + sources."source-map-0.6.1" 6215 + ]; 6216 + }) 7609 6217 sources."@jest/test-result-27.5.1" 7610 6218 sources."@jest/test-sequencer-27.5.1" 7611 6219 (sources."@jest/transform-27.5.1" // { ··· 7615 6223 sources."color-convert-2.0.1" 7616 6224 sources."color-name-1.1.4" 7617 6225 sources."has-flag-4.0.0" 6226 + sources."source-map-0.6.1" 7618 6227 sources."supports-color-7.2.0" 7619 6228 ]; 7620 6229 }) ··· 7628 6237 sources."supports-color-7.2.0" 7629 6238 ]; 7630 6239 }) 7631 - sources."@jridgewell/resolve-uri-3.0.5" 6240 + sources."@jridgewell/resolve-uri-3.0.6" 7632 6241 sources."@jridgewell/sourcemap-codec-1.4.11" 7633 - sources."@jridgewell/trace-mapping-0.3.4" 6242 + sources."@jridgewell/trace-mapping-0.3.9" 7634 6243 sources."@nodelib/fs.scandir-2.1.5" 7635 6244 sources."@nodelib/fs.stat-2.0.5" 7636 6245 sources."@nodelib/fs.walk-1.2.8" 6246 + sources."@serialport/binding-abstract-9.2.3" 6247 + sources."@serialport/binding-mock-9.2.4" 6248 + sources."@serialport/bindings-9.2.8" 6249 + sources."@serialport/parser-byte-length-9.2.4" 6250 + sources."@serialport/parser-cctalk-9.2.4" 6251 + sources."@serialport/parser-delimiter-9.2.4" 6252 + sources."@serialport/parser-inter-byte-timeout-9.2.4" 6253 + sources."@serialport/parser-readline-9.2.4" 6254 + sources."@serialport/parser-ready-9.2.4" 6255 + sources."@serialport/parser-regex-9.2.4" 6256 + sources."@serialport/stream-9.2.4" 7637 6257 sources."@sinonjs/commons-1.8.3" 7638 6258 sources."@sinonjs/fake-timers-8.1.0" 7639 6259 sources."@tootallnate/once-1.1.2" 7640 6260 sources."@types/babel__core-7.1.19" 7641 6261 sources."@types/babel__generator-7.6.4" 7642 6262 sources."@types/babel__template-7.4.1" 7643 - sources."@types/babel__traverse-7.14.2" 6263 + sources."@types/babel__traverse-7.17.0" 7644 6264 sources."@types/debounce-1.2.1" 7645 6265 sources."@types/finalhandler-1.1.1" 7646 6266 sources."@types/glob-7.2.0" ··· 7653 6273 sources."@types/js-yaml-4.0.5" 7654 6274 sources."@types/json-schema-7.0.11" 7655 6275 sources."@types/minimatch-3.0.5" 7656 - sources."@types/node-17.0.23" 6276 + sources."@types/node-17.0.25" 7657 6277 sources."@types/object-assign-deep-0.4.0" 7658 - sources."@types/prettier-2.4.4" 6278 + sources."@types/prettier-2.6.0" 7659 6279 sources."@types/rimraf-3.0.2" 7660 6280 sources."@types/stack-utils-2.0.1" 7661 6281 sources."@types/ws-8.5.3" 7662 6282 sources."@types/yargs-16.0.4" 7663 6283 sources."@types/yargs-parser-21.0.0" 7664 - (sources."@typescript-eslint/eslint-plugin-5.16.0" // { 7665 - dependencies = [ 7666 - sources."debug-4.3.4" 7667 - sources."ms-2.1.2" 7668 - ]; 7669 - }) 7670 - (sources."@typescript-eslint/parser-5.16.0" // { 7671 - dependencies = [ 7672 - sources."debug-4.3.4" 7673 - sources."ms-2.1.2" 7674 - ]; 7675 - }) 7676 - sources."@typescript-eslint/scope-manager-5.16.0" 7677 - (sources."@typescript-eslint/type-utils-5.16.0" // { 7678 - dependencies = [ 7679 - sources."debug-4.3.4" 7680 - sources."ms-2.1.2" 7681 - ]; 7682 - }) 7683 - sources."@typescript-eslint/types-5.16.0" 7684 - (sources."@typescript-eslint/typescript-estree-5.16.0" // { 7685 - dependencies = [ 7686 - sources."debug-4.3.4" 7687 - sources."ms-2.1.2" 7688 - ]; 7689 - }) 7690 - sources."@typescript-eslint/utils-5.16.0" 7691 - sources."@typescript-eslint/visitor-keys-5.16.0" 7692 - sources."abab-2.0.5" 6284 + sources."@typescript-eslint/eslint-plugin-5.20.0" 6285 + sources."@typescript-eslint/parser-5.20.0" 6286 + sources."@typescript-eslint/scope-manager-5.20.0" 6287 + sources."@typescript-eslint/type-utils-5.20.0" 6288 + sources."@typescript-eslint/types-5.20.0" 6289 + sources."@typescript-eslint/typescript-estree-5.20.0" 6290 + sources."@typescript-eslint/utils-5.20.0" 6291 + sources."@typescript-eslint/visitor-keys-5.20.0" 6292 + sources."abab-2.0.6" 7693 6293 sources."acorn-8.7.0" 7694 6294 (sources."acorn-globals-6.0.0" // { 7695 6295 dependencies = [ ··· 7698 6298 }) 7699 6299 sources."acorn-jsx-5.3.2" 7700 6300 sources."acorn-walk-7.2.0" 7701 - (sources."agent-base-6.0.2" // { 7702 - dependencies = [ 7703 - sources."debug-4.3.4" 7704 - sources."ms-2.1.2" 7705 - ]; 7706 - }) 6301 + sources."agent-base-6.0.2" 7707 6302 sources."ajv-8.11.0" 7708 - (sources."ansi-escapes-4.3.2" // { 7709 - dependencies = [ 7710 - sources."type-fest-0.21.3" 7711 - ]; 7712 - }) 6303 + sources."ansi-escapes-4.3.2" 7713 6304 sources."ansi-regex-5.0.1" 7714 6305 sources."ansi-styles-3.2.1" 6306 + sources."any-promise-1.3.0" 7715 6307 sources."anymatch-3.1.2" 6308 + sources."aproba-1.2.0" 6309 + (sources."are-we-there-yet-1.1.7" // { 6310 + dependencies = [ 6311 + sources."readable-stream-2.3.7" 6312 + sources."string_decoder-1.1.1" 6313 + ]; 6314 + }) 7716 6315 sources."argparse-2.0.1" 7717 6316 sources."array-union-2.1.0" 7718 6317 sources."async-3.2.3" 7719 6318 sources."asynckit-0.4.0" 6319 + (sources."axios-0.27.2" // { 6320 + dependencies = [ 6321 + sources."form-data-4.0.0" 6322 + ]; 6323 + }) 7720 6324 (sources."babel-jest-27.5.1" // { 7721 6325 dependencies = [ 7722 6326 sources."ansi-styles-4.3.0" ··· 7750 6354 sources."browserslist-4.20.2" 7751 6355 sources."bser-2.1.1" 7752 6356 sources."buffer-5.7.1" 6357 + sources."buffer-crc32-0.2.13" 7753 6358 sources."buffer-from-1.1.2" 7754 6359 sources."call-bind-1.0.2" 7755 6360 sources."callsites-3.1.0" 7756 6361 sources."camelcase-5.3.1" 7757 - sources."caniuse-lite-1.0.30001320" 6362 + sources."caniuse-lite-1.0.30001332" 7758 6363 sources."chalk-2.4.2" 7759 6364 sources."char-regex-1.0.2" 7760 6365 sources."charcodes-0.2.0" 6366 + sources."chownr-1.1.4" 7761 6367 sources."ci-info-3.3.0" 7762 6368 sources."cjs-module-lexer-1.2.2" 7763 6369 sources."cliui-7.0.4" 7764 6370 sources."co-4.6.0" 6371 + sources."code-point-at-1.1.0" 7765 6372 sources."collect-v8-coverage-1.0.1" 7766 6373 sources."color-3.2.1" 7767 6374 sources."color-convert-1.9.3" 7768 6375 sources."color-name-1.1.3" 7769 - sources."color-string-1.9.0" 6376 + sources."color-string-1.9.1" 7770 6377 sources."colorspace-1.1.4" 7771 6378 sources."combined-stream-1.0.8" 7772 - sources."commist-1.1.0" 6379 + (sources."commist-1.1.0" // { 6380 + dependencies = [ 6381 + sources."leven-2.1.0" 6382 + ]; 6383 + }) 7773 6384 sources."concat-map-0.0.1" 7774 6385 sources."concat-stream-2.0.0" 7775 - sources."connect-gzip-static-2.1.1" 7776 - (sources."convert-source-map-1.8.0" // { 6386 + (sources."connect-gzip-static-2.1.1" // { 7777 6387 dependencies = [ 7778 - sources."safe-buffer-5.1.2" 6388 + sources."debug-2.6.9" 6389 + sources."ms-2.0.0" 7779 6390 ]; 7780 6391 }) 7781 - sources."core-js-3.21.1" 7782 - (sources."core-js-compat-3.21.1" // { 6392 + sources."console-control-strings-1.1.0" 6393 + sources."convert-source-map-1.8.0" 6394 + sources."core-js-3.22.2" 6395 + (sources."core-js-compat-3.22.2" // { 7783 6396 dependencies = [ 7784 6397 sources."semver-7.0.0" 7785 6398 ]; 7786 6399 }) 6400 + sources."core-util-is-1.0.3" 7787 6401 sources."cross-spawn-7.0.3" 7788 6402 sources."cssom-0.4.4" 7789 6403 (sources."cssstyle-2.3.0" // { ··· 7793 6407 }) 7794 6408 sources."data-urls-2.0.0" 7795 6409 sources."debounce-1.2.1" 7796 - sources."debug-2.6.9" 6410 + sources."debug-4.3.4" 7797 6411 sources."decimal.js-10.3.1" 6412 + sources."decompress-response-6.0.0" 7798 6413 sources."dedent-0.7.0" 6414 + sources."deep-extend-0.6.0" 7799 6415 sources."deep-is-0.1.4" 7800 6416 sources."deep-object-diff-1.1.7" 7801 6417 sources."deepmerge-4.2.2" 7802 - sources."define-properties-1.1.3" 6418 + sources."define-properties-1.1.4" 7803 6419 sources."delayed-stream-1.0.0" 6420 + sources."delegates-1.0.0" 7804 6421 sources."depd-2.0.0" 7805 6422 sources."destroy-1.2.0" 6423 + sources."detect-libc-2.0.1" 7806 6424 sources."detect-newline-3.1.0" 7807 6425 sources."diff-sequences-27.5.1" 7808 6426 sources."dir-glob-3.0.1" ··· 7814 6432 }) 7815 6433 sources."duplexify-4.1.2" 7816 6434 sources."ee-first-1.1.1" 7817 - sources."electron-to-chromium-1.4.95" 6435 + sources."electron-to-chromium-1.4.118" 7818 6436 sources."emittery-0.8.1" 7819 6437 sources."emoji-regex-8.0.0" 7820 6438 sources."enabled-2.0.0" 7821 6439 sources."encodeurl-1.0.2" 7822 6440 sources."end-of-stream-1.4.4" 7823 - (sources."error-ex-1.3.2" // { 7824 - dependencies = [ 7825 - sources."is-arrayish-0.2.1" 7826 - ]; 7827 - }) 6441 + sources."error-ex-1.3.2" 7828 6442 sources."escalade-3.1.1" 7829 6443 sources."escape-html-1.0.3" 7830 6444 sources."escape-string-regexp-1.0.5" ··· 7834 6448 sources."levn-0.3.0" 7835 6449 sources."optionator-0.8.3" 7836 6450 sources."prelude-ls-1.1.2" 6451 + sources."source-map-0.6.1" 7837 6452 sources."type-check-0.3.2" 7838 6453 ]; 7839 6454 }) 7840 - (sources."eslint-8.12.0" // { 6455 + (sources."eslint-8.14.0" // { 7841 6456 dependencies = [ 7842 6457 sources."ajv-6.12.6" 7843 6458 sources."ansi-styles-4.3.0" 7844 6459 sources."chalk-4.1.2" 7845 6460 sources."color-convert-2.0.1" 7846 6461 sources."color-name-1.1.4" 7847 - sources."debug-4.3.4" 7848 6462 sources."escape-string-regexp-4.0.0" 7849 6463 sources."eslint-scope-7.1.1" 7850 6464 sources."estraverse-5.3.0" 7851 - sources."glob-parent-6.0.2" 7852 6465 sources."globals-13.13.0" 7853 6466 sources."has-flag-4.0.0" 7854 6467 sources."json-schema-traverse-0.4.1" 7855 - sources."ms-2.1.2" 7856 6468 sources."supports-color-7.2.0" 6469 + sources."type-fest-0.20.2" 7857 6470 ]; 7858 6471 }) 7859 6472 sources."eslint-config-google-0.14.0" 7860 - sources."eslint-plugin-jest-26.1.3" 6473 + sources."eslint-plugin-jest-26.1.5" 7861 6474 sources."eslint-scope-5.1.1" 7862 6475 (sources."eslint-utils-3.0.0" // { 7863 6476 dependencies = [ ··· 7882 6495 sources."etag-1.8.1" 7883 6496 sources."execa-5.1.1" 7884 6497 sources."exit-0.1.2" 6498 + sources."expand-template-2.0.3" 7885 6499 sources."expect-27.5.1" 7886 6500 sources."fast-deep-equal-3.1.3" 7887 - sources."fast-glob-3.2.11" 6501 + (sources."fast-glob-3.2.11" // { 6502 + dependencies = [ 6503 + sources."glob-parent-5.1.2" 6504 + ]; 6505 + }) 7888 6506 sources."fast-json-stable-stringify-2.1.0" 7889 6507 sources."fast-levenshtein-2.0.6" 7890 6508 sources."fastq-1.13.0" 7891 6509 sources."fb-watchman-2.0.1" 7892 - sources."fecha-4.2.1" 6510 + sources."fecha-4.2.3" 7893 6511 sources."file-entry-cache-6.0.1" 7894 6512 sources."file-uri-to-path-1.0.0" 7895 6513 sources."fill-range-7.0.1" 7896 - sources."finalhandler-1.2.0" 6514 + (sources."finalhandler-1.2.0" // { 6515 + dependencies = [ 6516 + sources."debug-2.6.9" 6517 + sources."ms-2.0.0" 6518 + ]; 6519 + }) 7897 6520 sources."find-0.3.0" 7898 6521 sources."find-up-4.1.0" 7899 6522 sources."flat-cache-3.0.4" 7900 6523 sources."flatted-3.2.5" 7901 6524 sources."fn.name-1.1.0" 6525 + sources."follow-redirects-1.14.9" 7902 6526 sources."form-data-3.0.1" 7903 6527 sources."fresh-0.5.2" 6528 + sources."fs-constants-1.0.0" 7904 6529 sources."fs.realpath-1.0.0" 7905 6530 sources."fsevents-2.3.2" 7906 6531 sources."function-bind-1.1.1" 7907 6532 sources."functional-red-black-tree-1.0.1" 6533 + (sources."gauge-2.7.4" // { 6534 + dependencies = [ 6535 + sources."ansi-regex-2.1.1" 6536 + sources."is-fullwidth-code-point-1.0.0" 6537 + sources."string-width-1.0.2" 6538 + sources."strip-ansi-3.0.1" 6539 + ]; 6540 + }) 7908 6541 sources."gensync-1.0.0-beta.2" 7909 6542 sources."get-caller-file-2.0.5" 7910 6543 sources."get-intrinsic-1.1.1" 7911 6544 sources."get-package-type-0.1.0" 7912 6545 sources."get-stream-6.0.1" 7913 6546 sources."git-last-commit-1.0.1" 6547 + sources."github-from-package-0.0.0" 7914 6548 sources."glob-7.2.0" 7915 - sources."glob-parent-5.1.2" 6549 + sources."glob-parent-6.0.2" 7916 6550 sources."globals-11.12.0" 7917 6551 sources."globby-11.1.0" 7918 6552 sources."glossy-0.1.7" 7919 - sources."graceful-fs-4.2.9" 6553 + sources."graceful-fs-4.2.10" 7920 6554 sources."has-1.0.3" 7921 6555 sources."has-flag-3.0.0" 6556 + sources."has-property-descriptors-1.0.0" 7922 6557 sources."has-symbols-1.0.3" 6558 + sources."has-unicode-2.0.1" 7923 6559 sources."help-me-3.0.0" 7924 6560 sources."html-encoding-sniffer-2.0.1" 7925 6561 sources."html-escaper-2.0.2" 7926 6562 sources."http-errors-2.0.0" 7927 - (sources."http-proxy-agent-4.0.1" // { 7928 - dependencies = [ 7929 - sources."debug-4.3.4" 7930 - sources."ms-2.1.2" 7931 - ]; 7932 - }) 7933 - (sources."https-proxy-agent-5.0.0" // { 7934 - dependencies = [ 7935 - sources."debug-4.3.4" 7936 - sources."ms-2.1.2" 7937 - ]; 7938 - }) 6563 + sources."http-proxy-agent-4.0.1" 6564 + sources."https-proxy-agent-5.0.1" 7939 6565 sources."human-signals-2.1.0" 7940 6566 sources."humanize-duration-3.27.1" 7941 6567 sources."iconv-lite-0.4.24" ··· 7950 6576 sources."imurmurhash-0.1.4" 7951 6577 sources."inflight-1.0.6" 7952 6578 sources."inherits-2.0.4" 7953 - sources."is-arrayish-0.3.2" 7954 - sources."is-core-module-2.8.1" 6579 + sources."ini-1.3.8" 6580 + sources."is-arrayish-0.2.1" 6581 + sources."is-core-module-2.9.0" 7955 6582 sources."is-extglob-2.1.1" 7956 6583 sources."is-fullwidth-code-point-3.0.0" 7957 6584 sources."is-generator-fn-2.1.0" ··· 7960 6587 sources."is-potential-custom-element-name-1.0.1" 7961 6588 sources."is-stream-2.0.1" 7962 6589 sources."is-typedarray-1.0.0" 6590 + sources."isarray-1.0.0" 7963 6591 sources."isexe-2.0.0" 7964 6592 sources."istanbul-lib-coverage-3.2.0" 7965 - (sources."istanbul-lib-instrument-5.1.0" // { 6593 + (sources."istanbul-lib-instrument-5.2.0" // { 7966 6594 dependencies = [ 7967 6595 sources."semver-6.3.0" 7968 6596 ]; ··· 7975 6603 }) 7976 6604 (sources."istanbul-lib-source-maps-4.0.1" // { 7977 6605 dependencies = [ 7978 - sources."debug-4.3.4" 7979 - sources."ms-2.1.2" 6606 + sources."source-map-0.6.1" 7980 6607 ]; 7981 6608 }) 7982 6609 sources."istanbul-reports-3.1.4" 7983 - (sources."jest-27.5.1" // { 6610 + sources."jest-27.5.1" 6611 + sources."jest-changed-files-27.5.1" 6612 + (sources."jest-circus-27.5.1" // { 7984 6613 dependencies = [ 7985 6614 sources."ansi-styles-4.3.0" 7986 6615 sources."chalk-4.1.2" 7987 6616 sources."color-convert-2.0.1" 7988 6617 sources."color-name-1.1.4" 7989 6618 sources."has-flag-4.0.0" 7990 - sources."jest-cli-27.5.1" 7991 6619 sources."supports-color-7.2.0" 7992 6620 ]; 7993 6621 }) 7994 - sources."jest-changed-files-27.5.1" 7995 - (sources."jest-circus-27.5.1" // { 6622 + (sources."jest-cli-27.5.1" // { 7996 6623 dependencies = [ 7997 6624 sources."ansi-styles-4.3.0" 7998 6625 sources."chalk-4.1.2" ··· 8131 6758 sources."color-convert-2.0.1" 8132 6759 sources."color-name-1.1.4" 8133 6760 sources."has-flag-4.0.0" 8134 - sources."leven-3.1.0" 8135 6761 sources."supports-color-7.2.0" 8136 6762 ]; 8137 6763 }) ··· 8166 6792 sources."json5-2.2.1" 8167 6793 sources."kleur-3.0.3" 8168 6794 sources."kuler-2.0.0" 8169 - sources."leven-2.1.0" 6795 + sources."leven-3.1.0" 8170 6796 sources."levn-0.4.1" 8171 6797 sources."lines-and-columns-1.2.4" 8172 6798 sources."locate-path-5.0.0" 8173 6799 sources."lodash-4.17.21" 8174 6800 sources."lodash.debounce-4.0.8" 8175 6801 sources."lodash.merge-4.6.2" 8176 - (sources."logform-2.4.0" // { 8177 - dependencies = [ 8178 - sources."ms-2.1.3" 8179 - ]; 8180 - }) 6802 + sources."logform-2.4.0" 8181 6803 sources."lru-cache-6.0.0" 8182 6804 (sources."make-dir-3.1.0" // { 8183 6805 dependencies = [ ··· 8192 6814 sources."mime-db-1.52.0" 8193 6815 sources."mime-types-2.1.35" 8194 6816 sources."mimic-fn-2.1.0" 6817 + sources."mimic-response-3.1.0" 8195 6818 sources."minimatch-3.1.2" 8196 6819 sources."minimist-1.2.6" 6820 + sources."mixin-deep-2.0.1" 8197 6821 sources."mkdir-recursive-0.4.0" 8198 - sources."moment-2.29.1" 6822 + sources."mkdirp-classic-0.5.3" 6823 + sources."moment-2.29.3" 8199 6824 (sources."mqtt-4.3.7" // { 8200 6825 dependencies = [ 8201 - sources."debug-4.3.4" 8202 - sources."ms-2.1.2" 8203 6826 sources."ws-7.5.7" 8204 6827 ]; 8205 6828 }) 8206 - (sources."mqtt-packet-6.10.0" // { 8207 - dependencies = [ 8208 - sources."debug-4.3.4" 8209 - sources."ms-2.1.2" 8210 - ]; 8211 - }) 8212 - sources."ms-2.0.0" 6829 + sources."mqtt-packet-6.10.0" 6830 + sources."ms-2.1.2" 6831 + sources."mz-2.7.0" 8213 6832 sources."nan-2.15.0" 6833 + sources."napi-build-utils-1.0.2" 8214 6834 sources."natural-compare-1.4.0" 6835 + sources."node-abi-3.15.0" 8215 6836 sources."node-int64-0.4.0" 8216 - sources."node-releases-2.0.2" 6837 + sources."node-releases-2.0.3" 8217 6838 sources."normalize-path-3.0.0" 8218 6839 sources."npm-run-path-4.0.1" 8219 - (sources."number-allocator-1.0.10" // { 8220 - dependencies = [ 8221 - sources."debug-4.3.4" 8222 - sources."ms-2.1.2" 8223 - ]; 8224 - }) 6840 + sources."npmlog-4.1.2" 6841 + sources."number-allocator-1.0.10" 6842 + sources."number-is-nan-1.0.1" 8225 6843 sources."nwsapi-2.2.0" 6844 + sources."object-assign-4.1.1" 8226 6845 sources."object-assign-deep-0.4.0" 8227 6846 sources."object-keys-1.1.1" 8228 6847 sources."object.assign-4.1.2" ··· 8247 6866 sources."picomatch-2.3.1" 8248 6867 sources."pirates-4.0.5" 8249 6868 sources."pkg-dir-4.2.0" 6869 + sources."prebuild-install-7.1.0" 8250 6870 sources."prelude-ls-1.2.1" 8251 6871 (sources."pretty-format-27.5.1" // { 8252 6872 dependencies = [ ··· 8260 6880 sources."punycode-2.1.1" 8261 6881 sources."queue-microtask-1.2.3" 8262 6882 sources."range-parser-1.2.1" 6883 + (sources."rc-1.2.8" // { 6884 + dependencies = [ 6885 + sources."strip-json-comments-2.0.1" 6886 + ]; 6887 + }) 8263 6888 sources."react-is-17.0.2" 8264 6889 sources."readable-stream-3.6.0" 8265 6890 sources."regenerate-1.4.2" 8266 6891 sources."regenerate-unicode-properties-10.0.1" 8267 6892 sources."regenerator-runtime-0.13.9" 8268 - sources."regenerator-transform-0.14.5" 6893 + sources."regenerator-transform-0.15.0" 8269 6894 sources."regexpp-3.2.0" 8270 6895 sources."regexpu-core-5.0.1" 8271 6896 sources."regjsgen-0.6.0" ··· 8285 6910 sources."rfdc-1.3.0" 8286 6911 sources."rimraf-3.0.2" 8287 6912 sources."run-parallel-1.2.0" 8288 - sources."safe-buffer-5.2.1" 6913 + sources."safe-buffer-5.1.2" 8289 6914 sources."safe-stable-stringify-2.3.1" 8290 6915 sources."safer-buffer-2.1.2" 8291 6916 sources."saxes-5.0.1" 8292 - sources."semver-7.3.5" 6917 + sources."semver-7.3.7" 8293 6918 (sources."send-0.18.0" // { 8294 6919 dependencies = [ 6920 + (sources."debug-2.6.9" // { 6921 + dependencies = [ 6922 + sources."ms-2.0.0" 6923 + ]; 6924 + }) 8295 6925 sources."ms-2.1.3" 8296 6926 ]; 8297 6927 }) 6928 + sources."serialport-9.2.8" 8298 6929 sources."serve-static-1.15.0" 6930 + sources."set-blocking-2.0.0" 8299 6931 sources."setprototypeof-1.2.0" 8300 6932 sources."shebang-command-2.0.0" 8301 6933 sources."shebang-regex-3.0.0" 8302 6934 sources."signal-exit-3.0.7" 8303 - sources."simple-swizzle-0.2.2" 6935 + sources."simple-concat-1.0.1" 6936 + sources."simple-get-4.0.1" 6937 + (sources."simple-swizzle-0.2.2" // { 6938 + dependencies = [ 6939 + sources."is-arrayish-0.3.2" 6940 + ]; 6941 + }) 8304 6942 sources."sisteransi-1.0.5" 8305 6943 sources."slash-3.0.0" 8306 - sources."source-map-0.6.1" 8307 - sources."source-map-support-0.5.21" 6944 + sources."slip-1.0.2" 6945 + sources."source-map-0.5.7" 6946 + (sources."source-map-support-0.5.21" // { 6947 + dependencies = [ 6948 + sources."source-map-0.6.1" 6949 + ]; 6950 + }) 8308 6951 sources."split2-3.2.2" 8309 6952 sources."sprintf-js-1.0.3" 8310 6953 sources."stack-trace-0.0.10" ··· 8317 6960 sources."stream-shift-1.0.1" 8318 6961 sources."string-length-4.0.2" 8319 6962 sources."string-width-4.2.3" 8320 - sources."string_decoder-1.3.0" 6963 + (sources."string_decoder-1.3.0" // { 6964 + dependencies = [ 6965 + sources."safe-buffer-5.2.1" 6966 + ]; 6967 + }) 8321 6968 sources."strip-ansi-6.0.1" 8322 6969 sources."strip-bom-4.0.0" 8323 6970 sources."strip-final-newline-2.0.0" ··· 8331 6978 }) 8332 6979 sources."supports-preserve-symlinks-flag-1.0.0" 8333 6980 sources."symbol-tree-3.2.4" 6981 + sources."tar-fs-2.1.1" 6982 + sources."tar-stream-2.2.0" 8334 6983 sources."terminal-link-2.1.1" 8335 6984 sources."test-exclude-6.0.0" 8336 6985 sources."text-hex-1.0.0" 8337 6986 sources."text-table-0.2.0" 6987 + sources."thenify-3.3.1" 6988 + sources."thenify-all-1.6.0" 8338 6989 sources."throat-6.0.1" 8339 6990 sources."tmp-0.2.1" 8340 6991 sources."tmpl-1.0.5" ··· 8347 6998 sources."triple-beam-1.3.0" 8348 6999 sources."tslib-1.14.1" 8349 7000 sources."tsutils-3.21.0" 7001 + sources."tunnel-agent-0.6.0" 8350 7002 sources."type-check-0.4.0" 8351 7003 sources."type-detect-4.0.8" 8352 - sources."type-fest-0.20.2" 7004 + sources."type-fest-0.21.3" 8353 7005 sources."typedarray-0.0.6" 8354 7006 sources."typedarray-to-buffer-3.1.5" 8355 7007 sources."typescript-4.6.3" ··· 8376 7028 sources."whatwg-mimetype-2.3.0" 8377 7029 sources."whatwg-url-8.7.0" 8378 7030 sources."which-2.0.2" 8379 - sources."winston-3.6.0" 7031 + sources."wide-align-1.1.5" 7032 + sources."winston-3.7.2" 8380 7033 sources."winston-syslog-2.5.0" 8381 7034 sources."winston-transport-4.5.0" 8382 7035 sources."word-wrap-1.2.3" ··· 8397 7050 sources."yallist-4.0.0" 8398 7051 sources."yargs-16.2.0" 8399 7052 sources."yargs-parser-20.2.9" 8400 - (sources."zigbee-herdsman-0.14.20" // { 8401 - dependencies = [ 8402 - sources."@ampproject/remapping-2.0.3" 8403 - sources."@babel/cli-7.17.0" 8404 - sources."@babel/code-frame-7.16.7" 8405 - sources."@babel/compat-data-7.17.0" 8406 - (sources."@babel/core-7.17.0" // { 8407 - dependencies = [ 8408 - sources."semver-6.3.0" 8409 - ]; 8410 - }) 8411 - sources."@babel/generator-7.17.0" 8412 - sources."@babel/helper-annotate-as-pure-7.16.7" 8413 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 8414 - (sources."@babel/helper-compilation-targets-7.16.7" // { 8415 - dependencies = [ 8416 - sources."semver-6.3.0" 8417 - ]; 8418 - }) 8419 - sources."@babel/helper-create-class-features-plugin-7.17.1" 8420 - sources."@babel/helper-create-regexp-features-plugin-7.17.0" 8421 - (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 8422 - dependencies = [ 8423 - sources."semver-6.3.0" 8424 - ]; 8425 - }) 8426 - sources."@babel/helper-environment-visitor-7.16.7" 8427 - sources."@babel/helper-explode-assignable-expression-7.16.7" 8428 - sources."@babel/helper-function-name-7.16.7" 8429 - sources."@babel/helper-get-function-arity-7.16.7" 8430 - sources."@babel/helper-hoist-variables-7.16.7" 8431 - sources."@babel/helper-member-expression-to-functions-7.16.7" 8432 - sources."@babel/helper-module-imports-7.16.7" 8433 - sources."@babel/helper-module-transforms-7.16.7" 8434 - sources."@babel/helper-optimise-call-expression-7.16.7" 8435 - sources."@babel/helper-plugin-utils-7.16.7" 8436 - sources."@babel/helper-remap-async-to-generator-7.16.8" 8437 - sources."@babel/helper-replace-supers-7.16.7" 8438 - sources."@babel/helper-simple-access-7.16.7" 8439 - sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 8440 - sources."@babel/helper-split-export-declaration-7.16.7" 8441 - sources."@babel/helper-validator-identifier-7.16.7" 8442 - sources."@babel/helper-validator-option-7.16.7" 8443 - sources."@babel/helper-wrap-function-7.16.8" 8444 - sources."@babel/helpers-7.17.0" 8445 - sources."@babel/highlight-7.16.10" 8446 - sources."@babel/parser-7.17.0" 8447 - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 8448 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 8449 - sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 8450 - sources."@babel/plugin-proposal-class-properties-7.16.7" 8451 - sources."@babel/plugin-proposal-class-static-block-7.16.7" 8452 - sources."@babel/plugin-proposal-dynamic-import-7.16.7" 8453 - sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 8454 - sources."@babel/plugin-proposal-json-strings-7.16.7" 8455 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 8456 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 8457 - sources."@babel/plugin-proposal-numeric-separator-7.16.7" 8458 - sources."@babel/plugin-proposal-object-rest-spread-7.16.7" 8459 - sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 8460 - sources."@babel/plugin-proposal-optional-chaining-7.16.7" 8461 - sources."@babel/plugin-proposal-private-methods-7.16.11" 8462 - sources."@babel/plugin-proposal-private-property-in-object-7.16.7" 8463 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 8464 - sources."@babel/plugin-syntax-async-generators-7.8.4" 8465 - sources."@babel/plugin-syntax-bigint-7.8.3" 8466 - sources."@babel/plugin-syntax-class-properties-7.12.13" 8467 - sources."@babel/plugin-syntax-class-static-block-7.14.5" 8468 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 8469 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 8470 - sources."@babel/plugin-syntax-import-meta-7.10.4" 8471 - sources."@babel/plugin-syntax-json-strings-7.8.3" 8472 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 8473 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 8474 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 8475 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 8476 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 8477 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 8478 - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 8479 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 8480 - sources."@babel/plugin-syntax-typescript-7.16.7" 8481 - sources."@babel/plugin-transform-arrow-functions-7.16.7" 8482 - sources."@babel/plugin-transform-async-to-generator-7.16.8" 8483 - sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 8484 - sources."@babel/plugin-transform-block-scoping-7.16.7" 8485 - sources."@babel/plugin-transform-classes-7.16.7" 8486 - sources."@babel/plugin-transform-computed-properties-7.16.7" 8487 - sources."@babel/plugin-transform-destructuring-7.16.7" 8488 - sources."@babel/plugin-transform-dotall-regex-7.16.7" 8489 - sources."@babel/plugin-transform-duplicate-keys-7.16.7" 8490 - sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 8491 - sources."@babel/plugin-transform-for-of-7.16.7" 8492 - sources."@babel/plugin-transform-function-name-7.16.7" 8493 - sources."@babel/plugin-transform-literals-7.16.7" 8494 - sources."@babel/plugin-transform-member-expression-literals-7.16.7" 8495 - sources."@babel/plugin-transform-modules-amd-7.16.7" 8496 - sources."@babel/plugin-transform-modules-commonjs-7.16.8" 8497 - sources."@babel/plugin-transform-modules-systemjs-7.16.7" 8498 - sources."@babel/plugin-transform-modules-umd-7.16.7" 8499 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 8500 - sources."@babel/plugin-transform-new-target-7.16.7" 8501 - sources."@babel/plugin-transform-object-super-7.16.7" 8502 - sources."@babel/plugin-transform-parameters-7.16.7" 8503 - sources."@babel/plugin-transform-property-literals-7.16.7" 8504 - sources."@babel/plugin-transform-regenerator-7.16.7" 8505 - sources."@babel/plugin-transform-reserved-words-7.16.7" 8506 - sources."@babel/plugin-transform-shorthand-properties-7.16.7" 8507 - sources."@babel/plugin-transform-spread-7.16.7" 8508 - sources."@babel/plugin-transform-sticky-regex-7.16.7" 8509 - sources."@babel/plugin-transform-template-literals-7.16.7" 8510 - sources."@babel/plugin-transform-typeof-symbol-7.16.7" 8511 - sources."@babel/plugin-transform-typescript-7.16.8" 8512 - sources."@babel/plugin-transform-unicode-escapes-7.16.7" 8513 - sources."@babel/plugin-transform-unicode-regex-7.16.7" 8514 - (sources."@babel/preset-env-7.16.11" // { 8515 - dependencies = [ 8516 - sources."semver-6.3.0" 8517 - ]; 8518 - }) 8519 - sources."@babel/preset-modules-0.1.5" 8520 - sources."@babel/preset-typescript-7.16.7" 8521 - sources."@babel/runtime-7.17.0" 8522 - sources."@babel/template-7.16.7" 8523 - sources."@babel/traverse-7.17.0" 8524 - sources."@babel/types-7.17.0" 8525 - sources."@bcoe/v8-coverage-0.2.3" 8526 - (sources."@eslint/eslintrc-1.0.5" // { 8527 - dependencies = [ 8528 - sources."argparse-2.0.1" 8529 - sources."globals-13.12.1" 8530 - sources."ignore-4.0.6" 8531 - sources."js-yaml-4.1.0" 8532 - sources."strip-json-comments-3.1.1" 8533 - ]; 8534 - }) 8535 - sources."@humanwhocodes/config-array-0.9.3" 8536 - sources."@humanwhocodes/object-schema-1.2.1" 8537 - sources."@istanbuljs/load-nyc-config-1.1.0" 8538 - sources."@istanbuljs/schema-0.1.3" 8539 - (sources."@jest/console-27.5.0" // { 8540 - dependencies = [ 8541 - sources."ansi-styles-4.3.0" 8542 - sources."chalk-4.1.2" 8543 - sources."color-convert-2.0.1" 8544 - sources."color-name-1.1.4" 8545 - sources."has-flag-4.0.0" 8546 - sources."slash-3.0.0" 8547 - sources."supports-color-7.2.0" 8548 - ]; 8549 - }) 8550 - (sources."@jest/core-27.5.0" // { 8551 - dependencies = [ 8552 - sources."ansi-regex-5.0.1" 8553 - sources."ansi-styles-4.3.0" 8554 - sources."chalk-4.1.2" 8555 - sources."color-convert-2.0.1" 8556 - sources."color-name-1.1.4" 8557 - sources."has-flag-4.0.0" 8558 - sources."slash-3.0.0" 8559 - sources."strip-ansi-6.0.1" 8560 - sources."supports-color-7.2.0" 8561 - ]; 8562 - }) 8563 - sources."@jest/environment-27.5.0" 8564 - sources."@jest/fake-timers-27.5.0" 8565 - sources."@jest/globals-27.5.0" 8566 - (sources."@jest/reporters-27.5.0" // { 8567 - dependencies = [ 8568 - sources."ansi-styles-4.3.0" 8569 - sources."chalk-4.1.2" 8570 - sources."color-convert-2.0.1" 8571 - sources."color-name-1.1.4" 8572 - sources."has-flag-4.0.0" 8573 - sources."slash-3.0.0" 8574 - sources."source-map-0.6.1" 8575 - sources."supports-color-7.2.0" 8576 - ]; 8577 - }) 8578 - (sources."@jest/source-map-27.5.0" // { 8579 - dependencies = [ 8580 - sources."source-map-0.6.1" 8581 - ]; 8582 - }) 8583 - sources."@jest/test-result-27.5.0" 8584 - sources."@jest/test-sequencer-27.5.0" 8585 - (sources."@jest/transform-27.5.0" // { 8586 - dependencies = [ 8587 - sources."ansi-styles-4.3.0" 8588 - sources."chalk-4.1.2" 8589 - sources."color-convert-2.0.1" 8590 - sources."color-name-1.1.4" 8591 - sources."has-flag-4.0.0" 8592 - sources."slash-3.0.0" 8593 - sources."source-map-0.6.1" 8594 - sources."supports-color-7.2.0" 8595 - ]; 8596 - }) 8597 - (sources."@jest/types-27.5.0" // { 8598 - dependencies = [ 8599 - sources."ansi-styles-4.3.0" 8600 - sources."chalk-4.1.2" 8601 - sources."color-convert-2.0.1" 8602 - sources."color-name-1.1.4" 8603 - sources."has-flag-4.0.0" 8604 - sources."supports-color-7.2.0" 8605 - ]; 8606 - }) 8607 - sources."@jridgewell/resolve-uri-3.0.4" 8608 - sources."@jridgewell/sourcemap-codec-1.4.10" 8609 - sources."@jridgewell/trace-mapping-0.2.7" 8610 - sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents.3" 8611 - sources."@nodelib/fs.scandir-2.1.5" 8612 - sources."@nodelib/fs.stat-2.0.5" 8613 - sources."@nodelib/fs.walk-1.2.8" 8614 - sources."@serialport/binding-abstract-9.2.3" 8615 - sources."@serialport/binding-mock-9.2.4" 8616 - sources."@serialport/bindings-9.2.8" 8617 - sources."@serialport/parser-byte-length-9.2.4" 8618 - sources."@serialport/parser-cctalk-9.2.4" 8619 - sources."@serialport/parser-delimiter-9.2.4" 8620 - sources."@serialport/parser-inter-byte-timeout-9.2.4" 8621 - sources."@serialport/parser-readline-9.2.4" 8622 - sources."@serialport/parser-ready-9.2.4" 8623 - sources."@serialport/parser-regex-9.2.4" 8624 - sources."@serialport/stream-9.2.4" 8625 - sources."@sinonjs/commons-1.8.3" 8626 - sources."@sinonjs/fake-timers-8.1.0" 8627 - sources."@tootallnate/once-1.1.2" 8628 - sources."@types/babel__core-7.1.18" 8629 - sources."@types/babel__generator-7.6.4" 8630 - sources."@types/babel__template-7.4.1" 8631 - sources."@types/babel__traverse-7.14.2" 8632 - sources."@types/debounce-1.2.1" 8633 - sources."@types/debug-4.1.7" 8634 - sources."@types/graceful-fs-4.1.5" 8635 - sources."@types/istanbul-lib-coverage-2.0.4" 8636 - sources."@types/istanbul-lib-report-3.0.0" 8637 - sources."@types/istanbul-reports-3.0.1" 8638 - sources."@types/jest-27.4.0" 8639 - sources."@types/json-schema-7.0.9" 8640 - sources."@types/ms-0.7.31" 8641 - sources."@types/mz-2.7.4" 8642 - sources."@types/nedb-1.8.12" 8643 - sources."@types/node-17.0.15" 8644 - sources."@types/prettier-2.4.3" 8645 - sources."@types/serialport-8.0.2" 8646 - sources."@types/stack-utils-2.0.1" 8647 - sources."@types/yargs-16.0.4" 8648 - sources."@types/yargs-parser-20.2.1" 8649 - sources."@typescript-eslint/eslint-plugin-5.10.2" 8650 - sources."@typescript-eslint/parser-5.10.2" 8651 - sources."@typescript-eslint/scope-manager-5.10.2" 8652 - sources."@typescript-eslint/type-utils-5.10.2" 8653 - sources."@typescript-eslint/types-5.10.2" 8654 - sources."@typescript-eslint/typescript-estree-5.10.2" 8655 - sources."@typescript-eslint/utils-5.10.2" 8656 - sources."@typescript-eslint/visitor-keys-5.10.2" 8657 - sources."abab-2.0.5" 8658 - sources."acorn-8.7.0" 8659 - (sources."acorn-globals-6.0.0" // { 8660 - dependencies = [ 8661 - sources."acorn-7.4.1" 8662 - ]; 8663 - }) 8664 - sources."acorn-jsx-5.3.2" 8665 - sources."acorn-walk-7.2.0" 8666 - sources."agent-base-6.0.2" 8667 - sources."ajv-6.12.6" 8668 - (sources."ansi-escapes-4.3.2" // { 8669 - dependencies = [ 8670 - sources."type-fest-0.21.3" 8671 - ]; 8672 - }) 8673 - sources."ansi-regex-2.1.1" 8674 - sources."ansi-styles-3.2.1" 8675 - sources."any-promise-1.3.0" 8676 - sources."anymatch-3.1.2" 8677 - sources."aproba-1.2.0" 8678 - sources."are-we-there-yet-1.1.7" 8679 - sources."argparse-1.0.10" 8680 - sources."array-union-2.1.0" 8681 - sources."asynckit-0.4.0" 8682 - (sources."babel-jest-27.5.0" // { 8683 - dependencies = [ 8684 - sources."ansi-styles-4.3.0" 8685 - sources."chalk-4.1.2" 8686 - sources."color-convert-2.0.1" 8687 - sources."color-name-1.1.4" 8688 - sources."has-flag-4.0.0" 8689 - sources."slash-3.0.0" 8690 - sources."supports-color-7.2.0" 8691 - ]; 8692 - }) 8693 - sources."babel-plugin-dynamic-import-node-2.3.3" 8694 - sources."babel-plugin-istanbul-6.1.1" 8695 - sources."babel-plugin-jest-hoist-27.5.0" 8696 - (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 8697 - dependencies = [ 8698 - sources."semver-6.3.0" 8699 - ]; 8700 - }) 8701 - sources."babel-plugin-polyfill-corejs3-0.5.2" 8702 - sources."babel-plugin-polyfill-regenerator-0.3.1" 8703 - sources."babel-preset-current-node-syntax-1.0.1" 8704 - sources."babel-preset-jest-27.5.0" 8705 - sources."balanced-match-1.0.2" 8706 - sources."base64-js-1.5.1" 8707 - sources."binary-extensions-2.2.0" 8708 - sources."bindings-1.5.0" 8709 - (sources."bl-4.1.0" // { 8710 - dependencies = [ 8711 - sources."readable-stream-3.6.0" 8712 - ]; 8713 - }) 8714 - sources."brace-expansion-1.1.11" 8715 - sources."braces-3.0.2" 8716 - sources."browser-process-hrtime-1.0.0" 8717 - sources."browserslist-4.19.1" 8718 - sources."bser-2.1.1" 8719 - sources."buffer-5.7.1" 8720 - sources."buffer-from-1.1.2" 8721 - sources."call-bind-1.0.2" 8722 - sources."callsites-3.1.0" 8723 - sources."camelcase-5.3.1" 8724 - sources."caniuse-lite-1.0.30001307" 8725 - sources."chalk-2.4.2" 8726 - sources."char-regex-1.0.2" 8727 - sources."chokidar-3.5.3" 8728 - sources."chownr-1.1.4" 8729 - sources."ci-info-3.3.0" 8730 - sources."cjs-module-lexer-1.2.2" 8731 - (sources."cliui-7.0.4" // { 8732 - dependencies = [ 8733 - sources."ansi-regex-5.0.1" 8734 - sources."is-fullwidth-code-point-3.0.0" 8735 - sources."string-width-4.2.3" 8736 - sources."strip-ansi-6.0.1" 8737 - ]; 8738 - }) 8739 - sources."co-4.6.0" 8740 - sources."code-point-at-1.1.0" 8741 - sources."collect-v8-coverage-1.0.1" 8742 - sources."color-convert-1.9.3" 8743 - sources."color-name-1.1.3" 8744 - sources."combined-stream-1.0.8" 8745 - sources."commander-4.1.1" 8746 - sources."concat-map-0.0.1" 8747 - sources."console-control-strings-1.1.0" 8748 - sources."convert-source-map-1.8.0" 8749 - (sources."core-js-compat-3.21.0" // { 8750 - dependencies = [ 8751 - sources."semver-7.0.0" 8752 - ]; 8753 - }) 8754 - sources."core-util-is-1.0.3" 8755 - sources."cross-spawn-7.0.3" 8756 - sources."cssom-0.4.4" 8757 - (sources."cssstyle-2.3.0" // { 8758 - dependencies = [ 8759 - sources."cssom-0.3.8" 8760 - ]; 8761 - }) 8762 - sources."data-urls-2.0.0" 8763 - sources."debounce-1.2.1" 8764 - sources."debug-4.3.3" 8765 - sources."decimal.js-10.3.1" 8766 - sources."decompress-response-6.0.0" 8767 - sources."dedent-0.7.0" 8768 - sources."deep-extend-0.6.0" 8769 - sources."deep-is-0.1.4" 8770 - sources."deepmerge-4.2.2" 8771 - sources."define-properties-1.1.3" 8772 - sources."delayed-stream-1.0.0" 8773 - sources."delegates-1.0.0" 8774 - sources."detect-libc-2.0.0" 8775 - sources."detect-newline-3.1.0" 8776 - sources."diff-sequences-27.5.0" 8777 - sources."dir-glob-3.0.1" 8778 - sources."doctrine-3.0.0" 8779 - (sources."domexception-2.0.1" // { 8780 - dependencies = [ 8781 - sources."webidl-conversions-5.0.0" 8782 - ]; 8783 - }) 8784 - sources."electron-to-chromium-1.4.65" 8785 - sources."emittery-0.8.1" 8786 - sources."emoji-regex-8.0.0" 8787 - sources."end-of-stream-1.4.4" 8788 - sources."escalade-3.1.1" 8789 - sources."escape-string-regexp-1.0.5" 8790 - (sources."escodegen-2.0.0" // { 8791 - dependencies = [ 8792 - sources."estraverse-5.3.0" 8793 - sources."levn-0.3.0" 8794 - sources."optionator-0.8.3" 8795 - sources."prelude-ls-1.1.2" 8796 - sources."source-map-0.6.1" 8797 - sources."type-check-0.3.2" 8798 - ]; 8799 - }) 8800 - (sources."eslint-8.8.0" // { 8801 - dependencies = [ 8802 - sources."ansi-regex-5.0.1" 8803 - sources."ansi-styles-4.3.0" 8804 - sources."argparse-2.0.1" 8805 - sources."chalk-4.1.2" 8806 - sources."color-convert-2.0.1" 8807 - sources."color-name-1.1.4" 8808 - sources."escape-string-regexp-4.0.0" 8809 - sources."eslint-scope-7.1.0" 8810 - sources."estraverse-5.3.0" 8811 - sources."glob-parent-6.0.2" 8812 - sources."globals-13.12.1" 8813 - sources."has-flag-4.0.0" 8814 - sources."js-yaml-4.1.0" 8815 - sources."strip-ansi-6.0.1" 8816 - sources."strip-json-comments-3.1.1" 8817 - sources."supports-color-7.2.0" 8818 - ]; 8819 - }) 8820 - sources."eslint-scope-5.1.1" 8821 - (sources."eslint-utils-3.0.0" // { 8822 - dependencies = [ 8823 - sources."eslint-visitor-keys-2.1.0" 8824 - ]; 8825 - }) 8826 - sources."eslint-visitor-keys-3.2.0" 8827 - sources."espree-9.3.0" 8828 - sources."esprima-4.0.1" 8829 - (sources."esquery-1.4.0" // { 8830 - dependencies = [ 8831 - sources."estraverse-5.3.0" 8832 - ]; 8833 - }) 8834 - (sources."esrecurse-4.3.0" // { 8835 - dependencies = [ 8836 - sources."estraverse-5.3.0" 8837 - ]; 8838 - }) 8839 - sources."estraverse-4.3.0" 8840 - sources."esutils-2.0.3" 8841 - sources."execa-5.1.1" 8842 - sources."exit-0.1.2" 8843 - sources."expand-template-2.0.3" 8844 - sources."expect-27.5.0" 8845 - sources."fast-deep-equal-3.1.3" 8846 - sources."fast-glob-3.2.11" 8847 - sources."fast-json-stable-stringify-2.1.0" 8848 - sources."fast-levenshtein-2.0.6" 8849 - sources."fastq-1.13.0" 8850 - sources."fb-watchman-2.0.1" 8851 - sources."file-entry-cache-6.0.1" 8852 - sources."file-uri-to-path-1.0.0" 8853 - sources."fill-range-7.0.1" 8854 - sources."find-up-4.1.0" 8855 - sources."flat-cache-3.0.4" 8856 - sources."flatted-3.2.5" 8857 - sources."form-data-3.0.1" 8858 - sources."fs-constants-1.0.0" 8859 - sources."fs-readdir-recursive-1.1.0" 8860 - sources."fs.realpath-1.0.0" 8861 - sources."fsevents-2.3.2" 8862 - sources."function-bind-1.1.1" 8863 - sources."functional-red-black-tree-1.0.1" 8864 - sources."gauge-2.7.4" 8865 - sources."gensync-1.0.0-beta.2" 8866 - sources."get-caller-file-2.0.5" 8867 - sources."get-intrinsic-1.1.1" 8868 - sources."get-package-type-0.1.0" 8869 - sources."get-stream-6.0.1" 8870 - sources."github-from-package-0.0.0" 8871 - sources."glob-7.2.0" 8872 - sources."glob-parent-5.1.2" 8873 - sources."globals-11.12.0" 8874 - (sources."globby-11.1.0" // { 8875 - dependencies = [ 8876 - sources."slash-3.0.0" 8877 - ]; 8878 - }) 8879 - sources."graceful-fs-4.2.9" 8880 - (sources."handlebars-4.7.7" // { 8881 - dependencies = [ 8882 - sources."source-map-0.6.1" 8883 - ]; 8884 - }) 8885 - sources."has-1.0.3" 8886 - sources."has-flag-3.0.0" 8887 - sources."has-symbols-1.0.2" 8888 - sources."has-unicode-2.0.1" 8889 - sources."html-encoding-sniffer-2.0.1" 8890 - sources."html-escaper-2.0.2" 8891 - sources."http-proxy-agent-4.0.1" 8892 - sources."https-proxy-agent-5.0.0" 8893 - sources."human-signals-2.1.0" 8894 - sources."iconv-lite-0.4.24" 8895 - sources."ieee754-1.2.1" 8896 - sources."ignore-5.2.0" 8897 - (sources."import-fresh-3.3.0" // { 8898 - dependencies = [ 8899 - sources."resolve-from-4.0.0" 8900 - ]; 8901 - }) 8902 - sources."import-local-3.1.0" 8903 - sources."imurmurhash-0.1.4" 8904 - sources."inflight-1.0.6" 8905 - sources."inherits-2.0.4" 8906 - sources."ini-1.3.8" 8907 - sources."is-binary-path-2.1.0" 8908 - sources."is-core-module-2.8.1" 8909 - sources."is-extglob-2.1.1" 8910 - sources."is-fullwidth-code-point-1.0.0" 8911 - sources."is-generator-fn-2.1.0" 8912 - sources."is-glob-4.0.3" 8913 - sources."is-number-7.0.0" 8914 - sources."is-potential-custom-element-name-1.0.1" 8915 - sources."is-stream-2.0.1" 8916 - sources."is-typedarray-1.0.0" 8917 - sources."isarray-1.0.0" 8918 - sources."isexe-2.0.0" 8919 - sources."istanbul-lib-coverage-3.2.0" 8920 - (sources."istanbul-lib-instrument-5.1.0" // { 8921 - dependencies = [ 8922 - sources."semver-6.3.0" 8923 - ]; 8924 - }) 8925 - (sources."istanbul-lib-report-3.0.0" // { 8926 - dependencies = [ 8927 - sources."has-flag-4.0.0" 8928 - sources."make-dir-3.1.0" 8929 - sources."semver-6.3.0" 8930 - sources."supports-color-7.2.0" 8931 - ]; 8932 - }) 8933 - (sources."istanbul-lib-source-maps-4.0.1" // { 8934 - dependencies = [ 8935 - sources."source-map-0.6.1" 8936 - ]; 8937 - }) 8938 - sources."istanbul-reports-3.1.4" 8939 - (sources."jest-27.5.0" // { 8940 - dependencies = [ 8941 - sources."ansi-styles-4.3.0" 8942 - sources."chalk-4.1.2" 8943 - sources."color-convert-2.0.1" 8944 - sources."color-name-1.1.4" 8945 - sources."has-flag-4.0.0" 8946 - sources."jest-cli-27.5.0" 8947 - sources."supports-color-7.2.0" 8948 - ]; 8949 - }) 8950 - sources."jest-changed-files-27.5.0" 8951 - (sources."jest-circus-27.5.0" // { 8952 - dependencies = [ 8953 - sources."ansi-styles-4.3.0" 8954 - sources."chalk-4.1.2" 8955 - sources."color-convert-2.0.1" 8956 - sources."color-name-1.1.4" 8957 - sources."has-flag-4.0.0" 8958 - sources."slash-3.0.0" 8959 - sources."supports-color-7.2.0" 8960 - ]; 8961 - }) 8962 - (sources."jest-config-27.5.0" // { 8963 - dependencies = [ 8964 - sources."ansi-styles-4.3.0" 8965 - sources."chalk-4.1.2" 8966 - sources."color-convert-2.0.1" 8967 - sources."color-name-1.1.4" 8968 - sources."has-flag-4.0.0" 8969 - sources."slash-3.0.0" 8970 - sources."supports-color-7.2.0" 8971 - ]; 8972 - }) 8973 - (sources."jest-diff-27.5.0" // { 8974 - dependencies = [ 8975 - sources."ansi-styles-4.3.0" 8976 - sources."chalk-4.1.2" 8977 - sources."color-convert-2.0.1" 8978 - sources."color-name-1.1.4" 8979 - sources."has-flag-4.0.0" 8980 - sources."supports-color-7.2.0" 8981 - ]; 8982 - }) 8983 - sources."jest-docblock-27.5.0" 8984 - (sources."jest-each-27.5.0" // { 8985 - dependencies = [ 8986 - sources."ansi-styles-4.3.0" 8987 - sources."chalk-4.1.2" 8988 - sources."color-convert-2.0.1" 8989 - sources."color-name-1.1.4" 8990 - sources."has-flag-4.0.0" 8991 - sources."supports-color-7.2.0" 8992 - ]; 8993 - }) 8994 - sources."jest-environment-jsdom-27.5.0" 8995 - sources."jest-environment-node-27.5.0" 8996 - sources."jest-get-type-27.5.0" 8997 - sources."jest-haste-map-27.5.0" 8998 - (sources."jest-jasmine2-27.5.0" // { 8999 - dependencies = [ 9000 - sources."ansi-styles-4.3.0" 9001 - sources."chalk-4.1.2" 9002 - sources."color-convert-2.0.1" 9003 - sources."color-name-1.1.4" 9004 - sources."has-flag-4.0.0" 9005 - sources."supports-color-7.2.0" 9006 - ]; 9007 - }) 9008 - sources."jest-leak-detector-27.5.0" 9009 - (sources."jest-matcher-utils-27.5.0" // { 9010 - dependencies = [ 9011 - sources."ansi-styles-4.3.0" 9012 - sources."chalk-4.1.2" 9013 - sources."color-convert-2.0.1" 9014 - sources."color-name-1.1.4" 9015 - sources."has-flag-4.0.0" 9016 - sources."supports-color-7.2.0" 9017 - ]; 9018 - }) 9019 - (sources."jest-message-util-27.5.0" // { 9020 - dependencies = [ 9021 - sources."ansi-styles-4.3.0" 9022 - sources."chalk-4.1.2" 9023 - sources."color-convert-2.0.1" 9024 - sources."color-name-1.1.4" 9025 - sources."has-flag-4.0.0" 9026 - sources."slash-3.0.0" 9027 - sources."supports-color-7.2.0" 9028 - ]; 9029 - }) 9030 - sources."jest-mock-27.5.0" 9031 - sources."jest-pnp-resolver-1.2.2" 9032 - sources."jest-regex-util-27.5.0" 9033 - (sources."jest-resolve-27.5.0" // { 9034 - dependencies = [ 9035 - sources."ansi-styles-4.3.0" 9036 - sources."chalk-4.1.2" 9037 - sources."color-convert-2.0.1" 9038 - sources."color-name-1.1.4" 9039 - sources."has-flag-4.0.0" 9040 - sources."slash-3.0.0" 9041 - sources."supports-color-7.2.0" 9042 - ]; 9043 - }) 9044 - sources."jest-resolve-dependencies-27.5.0" 9045 - (sources."jest-runner-27.5.0" // { 9046 - dependencies = [ 9047 - sources."ansi-styles-4.3.0" 9048 - sources."chalk-4.1.2" 9049 - sources."color-convert-2.0.1" 9050 - sources."color-name-1.1.4" 9051 - sources."has-flag-4.0.0" 9052 - sources."supports-color-7.2.0" 9053 - ]; 9054 - }) 9055 - (sources."jest-runtime-27.5.0" // { 9056 - dependencies = [ 9057 - sources."ansi-styles-4.3.0" 9058 - sources."chalk-4.1.2" 9059 - sources."color-convert-2.0.1" 9060 - sources."color-name-1.1.4" 9061 - sources."has-flag-4.0.0" 9062 - sources."slash-3.0.0" 9063 - sources."supports-color-7.2.0" 9064 - ]; 9065 - }) 9066 - sources."jest-serializer-27.5.0" 9067 - (sources."jest-snapshot-27.5.0" // { 9068 - dependencies = [ 9069 - sources."ansi-styles-4.3.0" 9070 - sources."chalk-4.1.2" 9071 - sources."color-convert-2.0.1" 9072 - sources."color-name-1.1.4" 9073 - sources."has-flag-4.0.0" 9074 - sources."supports-color-7.2.0" 9075 - ]; 9076 - }) 9077 - (sources."jest-util-27.5.0" // { 9078 - dependencies = [ 9079 - sources."ansi-styles-4.3.0" 9080 - sources."chalk-4.1.2" 9081 - sources."color-convert-2.0.1" 9082 - sources."color-name-1.1.4" 9083 - sources."has-flag-4.0.0" 9084 - sources."supports-color-7.2.0" 9085 - ]; 9086 - }) 9087 - (sources."jest-validate-27.5.0" // { 9088 - dependencies = [ 9089 - sources."ansi-styles-4.3.0" 9090 - sources."camelcase-6.3.0" 9091 - sources."chalk-4.1.2" 9092 - sources."color-convert-2.0.1" 9093 - sources."color-name-1.1.4" 9094 - sources."has-flag-4.0.0" 9095 - sources."supports-color-7.2.0" 9096 - ]; 9097 - }) 9098 - (sources."jest-watcher-27.5.0" // { 9099 - dependencies = [ 9100 - sources."ansi-styles-4.3.0" 9101 - sources."chalk-4.1.2" 9102 - sources."color-convert-2.0.1" 9103 - sources."color-name-1.1.4" 9104 - sources."has-flag-4.0.0" 9105 - sources."supports-color-7.2.0" 9106 - ]; 9107 - }) 9108 - (sources."jest-worker-27.5.0" // { 9109 - dependencies = [ 9110 - sources."has-flag-4.0.0" 9111 - sources."supports-color-8.1.1" 9112 - ]; 9113 - }) 9114 - sources."js-tokens-4.0.0" 9115 - sources."js-yaml-3.14.1" 9116 - sources."jsdom-16.7.0" 9117 - sources."jsesc-2.5.2" 9118 - sources."json-schema-traverse-0.4.1" 9119 - sources."json-stable-stringify-without-jsonify-1.0.1" 9120 - sources."json5-2.2.0" 9121 - sources."jsonc-parser-3.0.0" 9122 - sources."kleur-3.0.3" 9123 - sources."leven-3.1.0" 9124 - sources."levn-0.4.1" 9125 - sources."locate-path-5.0.0" 9126 - sources."lodash-4.17.21" 9127 - sources."lodash.debounce-4.0.8" 9128 - sources."lodash.merge-4.6.2" 9129 - sources."lru-cache-6.0.0" 9130 - sources."lunr-2.3.9" 9131 - (sources."make-dir-2.1.0" // { 9132 - dependencies = [ 9133 - sources."semver-5.7.1" 9134 - ]; 9135 - }) 9136 - sources."makeerror-1.0.12" 9137 - sources."marked-4.0.12" 9138 - sources."merge-stream-2.0.0" 9139 - sources."merge2-1.4.1" 9140 - sources."micromatch-4.0.4" 9141 - sources."mime-db-1.51.0" 9142 - sources."mime-types-2.1.34" 9143 - sources."mimic-fn-2.1.0" 9144 - sources."mimic-response-3.1.0" 9145 - sources."minimatch-3.0.4" 9146 - sources."minimist-1.2.5" 9147 - sources."mixin-deep-2.0.1" 9148 - sources."mkdirp-classic-0.5.3" 9149 - sources."ms-2.1.2" 9150 - sources."mz-2.7.0" 9151 - sources."nan-2.15.0" 9152 - sources."napi-build-utils-1.0.2" 9153 - sources."natural-compare-1.4.0" 9154 - sources."neo-async-2.6.2" 9155 - sources."node-abi-3.8.0" 9156 - sources."node-int64-0.4.0" 9157 - sources."node-releases-2.0.1" 9158 - sources."normalize-path-3.0.0" 9159 - sources."npm-run-path-4.0.1" 9160 - sources."npmlog-4.1.2" 9161 - sources."number-is-nan-1.0.1" 9162 - sources."nwsapi-2.2.0" 9163 - sources."object-assign-4.1.1" 9164 - sources."object-keys-1.1.1" 9165 - sources."object.assign-4.1.2" 9166 - sources."once-1.4.0" 9167 - sources."onetime-5.1.2" 9168 - sources."optionator-0.9.1" 9169 - sources."p-limit-2.3.0" 9170 - sources."p-locate-4.1.0" 9171 - sources."p-try-2.2.0" 9172 - sources."parent-module-1.0.1" 9173 - sources."parse5-6.0.1" 9174 - sources."path-exists-4.0.0" 9175 - sources."path-is-absolute-1.0.1" 9176 - sources."path-key-3.1.1" 9177 - sources."path-parse-1.0.7" 9178 - sources."path-type-4.0.0" 9179 - sources."picocolors-1.0.0" 9180 - sources."picomatch-2.3.1" 9181 - sources."pify-4.0.1" 9182 - sources."pirates-4.0.5" 9183 - sources."pkg-dir-4.2.0" 9184 - sources."prebuild-install-7.0.1" 9185 - sources."prelude-ls-1.2.1" 9186 - (sources."pretty-format-27.5.0" // { 9187 - dependencies = [ 9188 - sources."ansi-regex-5.0.1" 9189 - sources."ansi-styles-5.2.0" 9190 - ]; 9191 - }) 9192 - sources."process-nextick-args-2.0.1" 9193 - sources."prompts-2.4.2" 9194 - sources."psl-1.8.0" 9195 - sources."pump-3.0.0" 9196 - sources."punycode-2.1.1" 9197 - sources."queue-microtask-1.2.3" 9198 - sources."rc-1.2.8" 9199 - sources."react-is-17.0.2" 9200 - sources."readable-stream-2.3.7" 9201 - sources."readdirp-3.6.0" 9202 - sources."regenerate-1.4.2" 9203 - sources."regenerate-unicode-properties-10.0.1" 9204 - sources."regenerator-runtime-0.13.9" 9205 - sources."regenerator-transform-0.14.5" 9206 - sources."regexpp-3.2.0" 9207 - sources."regexpu-core-5.0.1" 9208 - sources."regjsgen-0.6.0" 9209 - (sources."regjsparser-0.8.4" // { 9210 - dependencies = [ 9211 - sources."jsesc-0.5.0" 9212 - ]; 9213 - }) 9214 - sources."require-directory-2.1.1" 9215 - sources."resolve-1.22.0" 9216 - sources."resolve-cwd-3.0.0" 9217 - sources."resolve-from-5.0.0" 9218 - sources."resolve.exports-1.1.0" 9219 - sources."reusify-1.0.4" 9220 - sources."rimraf-3.0.2" 9221 - sources."run-parallel-1.2.0" 9222 - sources."safe-buffer-5.1.2" 9223 - sources."safer-buffer-2.1.2" 9224 - sources."saxes-5.0.1" 9225 - sources."semver-7.3.5" 9226 - sources."serialport-9.2.8" 9227 - sources."set-blocking-2.0.0" 9228 - sources."shebang-command-2.0.0" 9229 - sources."shebang-regex-3.0.0" 9230 - sources."shiki-0.10.0" 9231 - sources."signal-exit-3.0.7" 9232 - sources."simple-concat-1.0.1" 9233 - sources."simple-get-4.0.1" 9234 - sources."sisteransi-1.0.5" 9235 - sources."slash-2.0.0" 9236 - sources."slip-1.0.2" 9237 - sources."source-map-0.5.7" 9238 - (sources."source-map-support-0.5.21" // { 9239 - dependencies = [ 9240 - sources."source-map-0.6.1" 9241 - ]; 9242 - }) 9243 - sources."sprintf-js-1.0.3" 9244 - (sources."stack-utils-2.0.5" // { 9245 - dependencies = [ 9246 - sources."escape-string-regexp-2.0.0" 9247 - ]; 9248 - }) 9249 - (sources."string-length-4.0.2" // { 9250 - dependencies = [ 9251 - sources."ansi-regex-5.0.1" 9252 - sources."strip-ansi-6.0.1" 9253 - ]; 9254 - }) 9255 - sources."string-width-1.0.2" 9256 - sources."string_decoder-1.1.1" 9257 - sources."strip-ansi-3.0.1" 9258 - sources."strip-bom-4.0.0" 9259 - sources."strip-final-newline-2.0.0" 9260 - sources."strip-json-comments-2.0.1" 9261 - sources."supports-color-5.5.0" 9262 - (sources."supports-hyperlinks-2.2.0" // { 9263 - dependencies = [ 9264 - sources."has-flag-4.0.0" 9265 - sources."supports-color-7.2.0" 9266 - ]; 9267 - }) 9268 - sources."supports-preserve-symlinks-flag-1.0.0" 9269 - sources."symbol-tree-3.2.4" 9270 - sources."tar-fs-2.1.1" 9271 - (sources."tar-stream-2.2.0" // { 9272 - dependencies = [ 9273 - sources."readable-stream-3.6.0" 9274 - ]; 9275 - }) 9276 - sources."terminal-link-2.1.1" 9277 - sources."test-exclude-6.0.0" 9278 - sources."text-table-0.2.0" 9279 - sources."thenify-3.3.1" 9280 - sources."thenify-all-1.6.0" 9281 - sources."throat-6.0.1" 9282 - sources."tmpl-1.0.5" 9283 - sources."to-fast-properties-2.0.0" 9284 - sources."to-regex-range-5.0.1" 9285 - sources."tough-cookie-4.0.0" 9286 - sources."tr46-2.1.0" 9287 - sources."tslib-1.14.1" 9288 - sources."tsutils-3.21.0" 9289 - sources."tunnel-agent-0.6.0" 9290 - sources."type-check-0.4.0" 9291 - sources."type-detect-4.0.8" 9292 - sources."type-fest-0.20.2" 9293 - sources."typedarray-to-buffer-3.1.5" 9294 - sources."typedoc-0.22.11" 9295 - sources."typedoc-plugin-markdown-3.11.13" 9296 - sources."typedoc-plugin-no-inherit-1.3.1" 9297 - sources."typedoc-plugin-sourcefile-url-1.0.6" 9298 - sources."typescript-4.5.5" 9299 - sources."uglify-js-3.15.0" 9300 - sources."unicode-canonical-property-names-ecmascript-2.0.0" 9301 - sources."unicode-match-property-ecmascript-2.0.0" 9302 - sources."unicode-match-property-value-ecmascript-2.0.0" 9303 - sources."unicode-property-aliases-ecmascript-2.0.0" 9304 - sources."universalify-0.1.2" 9305 - sources."uri-js-4.4.1" 9306 - sources."util-deprecate-1.0.2" 9307 - sources."v8-compile-cache-2.3.0" 9308 - (sources."v8-to-istanbul-8.1.1" // { 9309 - dependencies = [ 9310 - sources."source-map-0.7.3" 9311 - ]; 9312 - }) 9313 - sources."vscode-oniguruma-1.6.1" 9314 - sources."vscode-textmate-5.2.0" 9315 - sources."w3c-hr-time-1.0.2" 9316 - sources."w3c-xmlserializer-2.0.0" 9317 - sources."walker-1.0.8" 9318 - sources."webidl-conversions-6.1.0" 9319 - sources."whatwg-encoding-1.0.5" 9320 - sources."whatwg-mimetype-2.3.0" 9321 - sources."whatwg-url-8.7.0" 9322 - sources."which-2.0.2" 9323 - sources."wide-align-1.1.5" 9324 - sources."word-wrap-1.2.3" 9325 - sources."wordwrap-1.0.0" 9326 - (sources."wrap-ansi-7.0.0" // { 9327 - dependencies = [ 9328 - sources."ansi-regex-5.0.1" 9329 - sources."ansi-styles-4.3.0" 9330 - sources."color-convert-2.0.1" 9331 - sources."color-name-1.1.4" 9332 - sources."is-fullwidth-code-point-3.0.0" 9333 - sources."string-width-4.2.3" 9334 - sources."strip-ansi-6.0.1" 9335 - ]; 9336 - }) 9337 - sources."wrappy-1.0.2" 9338 - sources."write-file-atomic-3.0.3" 9339 - sources."ws-7.5.6" 9340 - sources."xml-name-validator-3.0.0" 9341 - sources."xmlchars-2.2.0" 9342 - sources."y18n-5.0.8" 9343 - sources."yallist-4.0.0" 9344 - (sources."yargs-16.2.0" // { 9345 - dependencies = [ 9346 - sources."ansi-regex-5.0.1" 9347 - sources."is-fullwidth-code-point-3.0.0" 9348 - sources."string-width-4.2.3" 9349 - sources."strip-ansi-6.0.1" 9350 - ]; 9351 - }) 9352 - sources."yargs-parser-20.2.9" 9353 - ]; 9354 - }) 9355 - (sources."zigbee-herdsman-converters-14.0.467" // { 9356 - dependencies = [ 9357 - sources."@ampproject/remapping-2.1.2" 9358 - sources."@babel/code-frame-7.16.7" 9359 - sources."@babel/compat-data-7.17.7" 9360 - (sources."@babel/core-7.17.8" // { 9361 - dependencies = [ 9362 - sources."semver-6.3.0" 9363 - ]; 9364 - }) 9365 - (sources."@babel/generator-7.17.7" // { 9366 - dependencies = [ 9367 - sources."source-map-0.5.7" 9368 - ]; 9369 - }) 9370 - (sources."@babel/helper-compilation-targets-7.17.7" // { 9371 - dependencies = [ 9372 - sources."semver-6.3.0" 9373 - ]; 9374 - }) 9375 - sources."@babel/helper-environment-visitor-7.16.7" 9376 - sources."@babel/helper-function-name-7.16.7" 9377 - sources."@babel/helper-get-function-arity-7.16.7" 9378 - sources."@babel/helper-hoist-variables-7.16.7" 9379 - sources."@babel/helper-module-imports-7.16.7" 9380 - sources."@babel/helper-module-transforms-7.17.7" 9381 - sources."@babel/helper-plugin-utils-7.16.7" 9382 - sources."@babel/helper-simple-access-7.17.7" 9383 - sources."@babel/helper-split-export-declaration-7.16.7" 9384 - sources."@babel/helper-validator-identifier-7.16.7" 9385 - sources."@babel/helper-validator-option-7.16.7" 9386 - sources."@babel/helpers-7.17.8" 9387 - (sources."@babel/highlight-7.16.10" // { 9388 - dependencies = [ 9389 - sources."ansi-styles-3.2.1" 9390 - sources."chalk-2.4.2" 9391 - sources."color-convert-1.9.3" 9392 - sources."color-name-1.1.3" 9393 - sources."escape-string-regexp-1.0.5" 9394 - sources."has-flag-3.0.0" 9395 - sources."supports-color-5.5.0" 9396 - ]; 9397 - }) 9398 - sources."@babel/parser-7.17.8" 9399 - sources."@babel/plugin-syntax-async-generators-7.8.4" 9400 - sources."@babel/plugin-syntax-bigint-7.8.3" 9401 - sources."@babel/plugin-syntax-class-properties-7.12.13" 9402 - sources."@babel/plugin-syntax-import-meta-7.10.4" 9403 - sources."@babel/plugin-syntax-json-strings-7.8.3" 9404 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 9405 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 9406 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 9407 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 9408 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9409 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9410 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 9411 - sources."@babel/plugin-syntax-typescript-7.16.7" 9412 - sources."@babel/template-7.16.7" 9413 - (sources."@babel/traverse-7.17.3" // { 9414 - dependencies = [ 9415 - sources."globals-11.12.0" 9416 - ]; 9417 - }) 9418 - sources."@babel/types-7.17.0" 9419 - sources."@bcoe/v8-coverage-0.2.3" 9420 - sources."@eslint/eslintrc-1.2.1" 9421 - sources."@humanwhocodes/config-array-0.9.5" 9422 - sources."@humanwhocodes/object-schema-1.2.1" 9423 - (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9424 - dependencies = [ 9425 - sources."argparse-1.0.10" 9426 - sources."js-yaml-3.14.1" 9427 - sources."resolve-from-5.0.0" 9428 - ]; 9429 - }) 9430 - sources."@istanbuljs/schema-0.1.3" 9431 - sources."@jest/console-27.5.1" 9432 - sources."@jest/core-27.5.1" 9433 - sources."@jest/environment-27.5.1" 9434 - sources."@jest/fake-timers-27.5.1" 9435 - sources."@jest/globals-27.5.1" 9436 - sources."@jest/reporters-27.5.1" 9437 - sources."@jest/source-map-27.5.1" 9438 - sources."@jest/test-result-27.5.1" 9439 - sources."@jest/test-sequencer-27.5.1" 9440 - sources."@jest/transform-27.5.1" 9441 - sources."@jest/types-27.5.1" 9442 - sources."@jridgewell/resolve-uri-3.0.5" 9443 - sources."@jridgewell/sourcemap-codec-1.4.11" 9444 - sources."@jridgewell/trace-mapping-0.3.4" 9445 - sources."@nodelib/fs.scandir-2.1.5" 9446 - sources."@nodelib/fs.stat-2.0.5" 9447 - sources."@nodelib/fs.walk-1.2.8" 9448 - sources."@sinonjs/commons-1.8.3" 9449 - sources."@sinonjs/fake-timers-8.1.0" 9450 - sources."@tootallnate/once-1.1.2" 9451 - sources."@types/babel__core-7.1.19" 9452 - sources."@types/babel__generator-7.6.4" 9453 - sources."@types/babel__template-7.4.1" 9454 - sources."@types/babel__traverse-7.14.2" 9455 - sources."@types/graceful-fs-4.1.5" 9456 - sources."@types/istanbul-lib-coverage-2.0.4" 9457 - sources."@types/istanbul-lib-report-3.0.0" 9458 - sources."@types/istanbul-reports-3.0.1" 9459 - sources."@types/json-schema-7.0.11" 9460 - sources."@types/node-17.0.23" 9461 - sources."@types/prettier-2.4.4" 9462 - sources."@types/stack-utils-2.0.1" 9463 - sources."@types/yargs-16.0.4" 9464 - sources."@types/yargs-parser-21.0.0" 9465 - sources."@typescript-eslint/scope-manager-5.16.0" 9466 - sources."@typescript-eslint/types-5.16.0" 9467 - sources."@typescript-eslint/typescript-estree-5.16.0" 9468 - (sources."@typescript-eslint/utils-5.16.0" // { 9469 - dependencies = [ 9470 - sources."eslint-scope-5.1.1" 9471 - sources."estraverse-4.3.0" 9472 - ]; 9473 - }) 9474 - sources."@typescript-eslint/visitor-keys-5.16.0" 9475 - sources."abab-2.0.5" 9476 - sources."acorn-8.7.0" 9477 - (sources."acorn-globals-6.0.0" // { 9478 - dependencies = [ 9479 - sources."acorn-7.4.1" 9480 - ]; 9481 - }) 9482 - sources."acorn-jsx-5.3.2" 9483 - sources."acorn-walk-7.2.0" 9484 - sources."agent-base-6.0.2" 9485 - sources."ajv-6.12.6" 9486 - (sources."ansi-escapes-4.3.2" // { 9487 - dependencies = [ 9488 - sources."type-fest-0.21.3" 9489 - ]; 9490 - }) 9491 - sources."ansi-regex-5.0.1" 9492 - sources."ansi-styles-4.3.0" 9493 - sources."anymatch-3.1.2" 9494 - sources."argparse-2.0.1" 9495 - sources."array-union-2.1.0" 9496 - sources."asynckit-0.4.0" 9497 - sources."axios-0.26.1" 9498 - sources."babel-jest-27.5.1" 9499 - sources."babel-plugin-istanbul-6.1.1" 9500 - sources."babel-plugin-jest-hoist-27.5.1" 9501 - sources."babel-preset-current-node-syntax-1.0.1" 9502 - sources."babel-preset-jest-27.5.1" 9503 - sources."balanced-match-1.0.2" 9504 - sources."base64-js-1.5.1" 9505 - sources."bl-4.1.0" 9506 - sources."brace-expansion-1.1.11" 9507 - sources."braces-3.0.2" 9508 - sources."browser-process-hrtime-1.0.0" 9509 - sources."browserslist-4.20.2" 9510 - sources."bser-2.1.1" 9511 - sources."buffer-5.7.1" 9512 - sources."buffer-crc32-0.2.13" 9513 - sources."buffer-from-1.1.2" 9514 - sources."callsites-3.1.0" 9515 - sources."camelcase-5.3.1" 9516 - sources."caniuse-lite-1.0.30001320" 9517 - sources."chalk-4.1.2" 9518 - sources."char-regex-1.0.2" 9519 - sources."ci-info-3.3.0" 9520 - sources."cjs-module-lexer-1.2.2" 9521 - sources."cliui-7.0.4" 9522 - sources."co-4.6.0" 9523 - sources."collect-v8-coverage-1.0.1" 9524 - sources."color-convert-2.0.1" 9525 - sources."color-name-1.1.4" 9526 - sources."combined-stream-1.0.8" 9527 - sources."concat-map-0.0.1" 9528 - sources."convert-source-map-1.8.0" 9529 - sources."cross-spawn-7.0.3" 9530 - sources."cssom-0.4.4" 9531 - (sources."cssstyle-2.3.0" // { 9532 - dependencies = [ 9533 - sources."cssom-0.3.8" 9534 - ]; 9535 - }) 9536 - sources."data-urls-2.0.0" 9537 - sources."debug-4.3.4" 9538 - sources."decimal.js-10.3.1" 9539 - sources."dedent-0.7.0" 9540 - sources."deep-is-0.1.4" 9541 - sources."deepmerge-4.2.2" 9542 - sources."delayed-stream-1.0.0" 9543 - sources."detect-newline-3.1.0" 9544 - sources."diff-sequences-27.5.1" 9545 - sources."dir-glob-3.0.1" 9546 - sources."doctrine-3.0.0" 9547 - (sources."domexception-2.0.1" // { 9548 - dependencies = [ 9549 - sources."webidl-conversions-5.0.0" 9550 - ]; 9551 - }) 9552 - sources."electron-to-chromium-1.4.95" 9553 - sources."emittery-0.8.1" 9554 - sources."emoji-regex-8.0.0" 9555 - sources."end-of-stream-1.4.4" 9556 - sources."error-ex-1.3.2" 9557 - sources."escalade-3.1.1" 9558 - sources."escape-string-regexp-4.0.0" 9559 - (sources."escodegen-2.0.0" // { 9560 - dependencies = [ 9561 - sources."levn-0.3.0" 9562 - sources."optionator-0.8.3" 9563 - sources."prelude-ls-1.1.2" 9564 - sources."type-check-0.3.2" 9565 - ]; 9566 - }) 9567 - sources."eslint-8.12.0" 9568 - sources."eslint-config-google-0.14.0" 9569 - sources."eslint-plugin-jest-26.1.3" 9570 - sources."eslint-scope-7.1.1" 9571 - (sources."eslint-utils-3.0.0" // { 9572 - dependencies = [ 9573 - sources."eslint-visitor-keys-2.1.0" 9574 - ]; 9575 - }) 9576 - sources."eslint-visitor-keys-3.3.0" 9577 - sources."espree-9.3.1" 9578 - sources."esprima-4.0.1" 9579 - sources."esquery-1.4.0" 9580 - sources."esrecurse-4.3.0" 9581 - sources."estraverse-5.3.0" 9582 - sources."esutils-2.0.3" 9583 - sources."execa-5.1.1" 9584 - sources."exit-0.1.2" 9585 - sources."expect-27.5.1" 9586 - sources."fast-deep-equal-3.1.3" 9587 - (sources."fast-glob-3.2.11" // { 9588 - dependencies = [ 9589 - sources."glob-parent-5.1.2" 9590 - ]; 9591 - }) 9592 - sources."fast-json-stable-stringify-2.1.0" 9593 - sources."fast-levenshtein-2.0.6" 9594 - sources."fastq-1.13.0" 9595 - sources."fb-watchman-2.0.1" 9596 - sources."file-entry-cache-6.0.1" 9597 - sources."fill-range-7.0.1" 9598 - sources."find-up-4.1.0" 9599 - sources."flat-cache-3.0.4" 9600 - sources."flatted-3.2.5" 9601 - sources."follow-redirects-1.14.9" 9602 - sources."form-data-3.0.1" 9603 - sources."fs-constants-1.0.0" 9604 - sources."fs.realpath-1.0.0" 9605 - sources."fsevents-2.3.2" 9606 - sources."function-bind-1.1.1" 9607 - sources."functional-red-black-tree-1.0.1" 9608 - sources."gensync-1.0.0-beta.2" 9609 - sources."get-caller-file-2.0.5" 9610 - sources."get-package-type-0.1.0" 9611 - sources."get-stream-6.0.1" 9612 - sources."glob-7.2.0" 9613 - sources."glob-parent-6.0.2" 9614 - sources."globals-13.13.0" 9615 - sources."globby-11.1.0" 9616 - sources."graceful-fs-4.2.9" 9617 - sources."has-1.0.3" 9618 - sources."has-flag-4.0.0" 9619 - sources."html-encoding-sniffer-2.0.1" 9620 - sources."html-escaper-2.0.2" 9621 - sources."http-proxy-agent-4.0.1" 9622 - sources."https-proxy-agent-5.0.0" 9623 - sources."human-signals-2.1.0" 9624 - sources."iconv-lite-0.4.24" 9625 - sources."ieee754-1.2.1" 9626 - sources."ignore-5.2.0" 9627 - sources."import-fresh-3.3.0" 9628 - sources."import-local-3.1.0" 9629 - sources."imurmurhash-0.1.4" 9630 - sources."inflight-1.0.6" 9631 - sources."inherits-2.0.4" 9632 - sources."is-arrayish-0.2.1" 9633 - sources."is-core-module-2.8.1" 9634 - sources."is-extglob-2.1.1" 9635 - sources."is-fullwidth-code-point-3.0.0" 9636 - sources."is-generator-fn-2.1.0" 9637 - sources."is-glob-4.0.3" 9638 - sources."is-number-7.0.0" 9639 - sources."is-potential-custom-element-name-1.0.1" 9640 - sources."is-stream-2.0.1" 9641 - sources."is-typedarray-1.0.0" 9642 - sources."isexe-2.0.0" 9643 - sources."istanbul-lib-coverage-3.2.0" 9644 - (sources."istanbul-lib-instrument-5.1.0" // { 9645 - dependencies = [ 9646 - sources."semver-6.3.0" 9647 - ]; 9648 - }) 9649 - sources."istanbul-lib-report-3.0.0" 9650 - sources."istanbul-lib-source-maps-4.0.1" 9651 - sources."istanbul-reports-3.1.4" 9652 - sources."jest-27.5.1" 9653 - sources."jest-changed-files-27.5.1" 9654 - sources."jest-circus-27.5.1" 9655 - sources."jest-cli-27.5.1" 9656 - sources."jest-config-27.5.1" 9657 - sources."jest-diff-27.5.1" 9658 - sources."jest-docblock-27.5.1" 9659 - sources."jest-each-27.5.1" 9660 - sources."jest-environment-jsdom-27.5.1" 9661 - sources."jest-environment-node-27.5.1" 9662 - sources."jest-get-type-27.5.1" 9663 - sources."jest-haste-map-27.5.1" 9664 - sources."jest-jasmine2-27.5.1" 9665 - sources."jest-leak-detector-27.5.1" 9666 - sources."jest-matcher-utils-27.5.1" 9667 - sources."jest-message-util-27.5.1" 9668 - sources."jest-mock-27.5.1" 9669 - sources."jest-pnp-resolver-1.2.2" 9670 - sources."jest-regex-util-27.5.1" 9671 - sources."jest-resolve-27.5.1" 9672 - sources."jest-resolve-dependencies-27.5.1" 9673 - sources."jest-runner-27.5.1" 9674 - sources."jest-runtime-27.5.1" 9675 - sources."jest-serializer-27.5.1" 9676 - sources."jest-snapshot-27.5.1" 9677 - sources."jest-util-27.5.1" 9678 - (sources."jest-validate-27.5.1" // { 9679 - dependencies = [ 9680 - sources."camelcase-6.3.0" 9681 - ]; 9682 - }) 9683 - sources."jest-watcher-27.5.1" 9684 - (sources."jest-worker-27.5.1" // { 9685 - dependencies = [ 9686 - sources."supports-color-8.1.1" 9687 - ]; 9688 - }) 9689 - sources."js-tokens-4.0.0" 9690 - sources."js-yaml-4.1.0" 9691 - sources."jsdom-16.7.0" 9692 - sources."jsesc-2.5.2" 9693 - sources."json-parse-even-better-errors-2.3.1" 9694 - sources."json-schema-traverse-0.4.1" 9695 - sources."json-stable-stringify-without-jsonify-1.0.1" 9696 - sources."json5-2.2.1" 9697 - sources."kleur-3.0.3" 9698 - sources."leven-3.1.0" 9699 - sources."levn-0.4.1" 9700 - sources."lines-and-columns-1.2.4" 9701 - sources."locate-path-5.0.0" 9702 - sources."lodash-4.17.21" 9703 - sources."lodash.merge-4.6.2" 9704 - sources."lru-cache-6.0.0" 9705 - (sources."make-dir-3.1.0" // { 9706 - dependencies = [ 9707 - sources."semver-6.3.0" 9708 - ]; 9709 - }) 9710 - sources."makeerror-1.0.12" 9711 - sources."merge-stream-2.0.0" 9712 - sources."merge2-1.4.1" 9713 - sources."micromatch-4.0.5" 9714 - sources."mime-db-1.52.0" 9715 - sources."mime-types-2.1.35" 9716 - sources."mimic-fn-2.1.0" 9717 - sources."minimatch-3.1.2" 9718 - sources."ms-2.1.2" 9719 - sources."natural-compare-1.4.0" 9720 - sources."node-int64-0.4.0" 9721 - sources."node-releases-2.0.2" 9722 - sources."normalize-path-3.0.0" 9723 - sources."npm-run-path-4.0.1" 9724 - sources."nwsapi-2.2.0" 9725 - sources."once-1.4.0" 9726 - sources."onetime-5.1.2" 9727 - sources."optionator-0.9.1" 9728 - sources."p-limit-2.3.0" 9729 - sources."p-locate-4.1.0" 9730 - sources."p-try-2.2.0" 9731 - sources."parent-module-1.0.1" 9732 - sources."parse-json-5.2.0" 9733 - sources."parse5-6.0.1" 9734 - sources."path-exists-4.0.0" 9735 - sources."path-is-absolute-1.0.1" 9736 - sources."path-key-3.1.1" 9737 - sources."path-parse-1.0.7" 9738 - sources."path-type-4.0.0" 9739 - sources."picocolors-1.0.0" 9740 - sources."picomatch-2.3.1" 9741 - sources."pirates-4.0.5" 9742 - sources."pkg-dir-4.2.0" 9743 - sources."prelude-ls-1.2.1" 9744 - (sources."pretty-format-27.5.1" // { 9745 - dependencies = [ 9746 - sources."ansi-styles-5.2.0" 9747 - ]; 9748 - }) 9749 - sources."prompts-2.4.2" 9750 - sources."psl-1.8.0" 9751 - sources."punycode-2.1.1" 9752 - sources."queue-microtask-1.2.3" 9753 - sources."react-is-17.0.2" 9754 - sources."readable-stream-3.6.0" 9755 - sources."regexpp-3.2.0" 9756 - sources."require-directory-2.1.1" 9757 - sources."resolve-1.22.0" 9758 - (sources."resolve-cwd-3.0.0" // { 9759 - dependencies = [ 9760 - sources."resolve-from-5.0.0" 9761 - ]; 9762 - }) 9763 - sources."resolve-from-4.0.0" 9764 - sources."resolve.exports-1.1.0" 9765 - sources."reusify-1.0.4" 9766 - sources."rimraf-3.0.2" 9767 - sources."run-parallel-1.2.0" 9768 - sources."safe-buffer-5.1.2" 9769 - sources."safer-buffer-2.1.2" 9770 - sources."saxes-5.0.1" 9771 - sources."semver-7.3.5" 9772 - sources."shebang-command-2.0.0" 9773 - sources."shebang-regex-3.0.0" 9774 - sources."signal-exit-3.0.7" 9775 - sources."sisteransi-1.0.5" 9776 - sources."slash-3.0.0" 9777 - sources."source-map-0.6.1" 9778 - sources."source-map-support-0.5.21" 9779 - sources."sprintf-js-1.0.3" 9780 - (sources."stack-utils-2.0.5" // { 9781 - dependencies = [ 9782 - sources."escape-string-regexp-2.0.0" 9783 - ]; 9784 - }) 9785 - sources."string-length-4.0.2" 9786 - sources."string-width-4.2.3" 9787 - (sources."string_decoder-1.3.0" // { 9788 - dependencies = [ 9789 - sources."safe-buffer-5.2.1" 9790 - ]; 9791 - }) 9792 - sources."strip-ansi-6.0.1" 9793 - sources."strip-bom-4.0.0" 9794 - sources."strip-final-newline-2.0.0" 9795 - sources."strip-json-comments-3.1.1" 9796 - sources."supports-color-7.2.0" 9797 - sources."supports-hyperlinks-2.2.0" 9798 - sources."supports-preserve-symlinks-flag-1.0.0" 9799 - sources."symbol-tree-3.2.4" 9800 - sources."tar-stream-2.2.0" 9801 - sources."terminal-link-2.1.1" 9802 - sources."test-exclude-6.0.0" 9803 - sources."text-table-0.2.0" 9804 - sources."throat-6.0.1" 9805 - sources."tmpl-1.0.5" 9806 - sources."to-fast-properties-2.0.0" 9807 - sources."to-regex-range-5.0.1" 9808 - sources."tough-cookie-4.0.0" 9809 - sources."tr46-2.1.0" 9810 - sources."tslib-1.14.1" 9811 - sources."tsutils-3.21.0" 9812 - sources."type-check-0.4.0" 9813 - sources."type-detect-4.0.8" 9814 - sources."type-fest-0.20.2" 9815 - sources."typedarray-to-buffer-3.1.5" 9816 - sources."typescript-4.6.3" 9817 - sources."universalify-0.1.2" 9818 - sources."uri-js-4.4.1" 9819 - sources."util-deprecate-1.0.2" 9820 - sources."v8-compile-cache-2.3.0" 9821 - (sources."v8-to-istanbul-8.1.1" // { 9822 - dependencies = [ 9823 - sources."source-map-0.7.3" 9824 - ]; 9825 - }) 9826 - sources."w3c-hr-time-1.0.2" 9827 - sources."w3c-xmlserializer-2.0.0" 9828 - sources."walker-1.0.8" 9829 - sources."webidl-conversions-6.1.0" 9830 - sources."whatwg-encoding-1.0.5" 9831 - sources."whatwg-mimetype-2.3.0" 9832 - sources."whatwg-url-8.7.0" 9833 - sources."which-2.0.2" 9834 - sources."word-wrap-1.2.3" 9835 - sources."wrap-ansi-7.0.0" 9836 - sources."wrappy-1.0.2" 9837 - sources."write-file-atomic-3.0.3" 9838 - sources."ws-7.5.7" 9839 - sources."xml-name-validator-3.0.0" 9840 - sources."xmlchars-2.2.0" 9841 - sources."y18n-5.0.8" 9842 - sources."yallist-4.0.0" 9843 - sources."yargs-16.2.0" 9844 - sources."yargs-parser-20.2.9" 9845 - (sources."zigbee-herdsman-0.14.20" // { 9846 - dependencies = [ 9847 - sources."@ampproject/remapping-2.0.3" 9848 - sources."@babel/cli-https://registry.npmjs.org/@babel/cli/-/cli-7.17.0.tgz" 9849 - sources."@babel/code-frame-7.16.7" 9850 - sources."@babel/compat-data-7.17.0" 9851 - (sources."@babel/core-7.17.0" // { 9852 - dependencies = [ 9853 - sources."semver-6.3.0" 9854 - ]; 9855 - }) 9856 - sources."@babel/generator-7.17.0" 9857 - sources."@babel/helper-annotate-as-pure-7.16.7" 9858 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 9859 - (sources."@babel/helper-compilation-targets-7.16.7" // { 9860 - dependencies = [ 9861 - sources."semver-6.3.0" 9862 - ]; 9863 - }) 9864 - sources."@babel/helper-create-class-features-plugin-7.17.1" 9865 - sources."@babel/helper-create-regexp-features-plugin-7.17.0" 9866 - (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 9867 - dependencies = [ 9868 - sources."semver-6.3.0" 9869 - ]; 9870 - }) 9871 - sources."@babel/helper-environment-visitor-7.16.7" 9872 - sources."@babel/helper-explode-assignable-expression-7.16.7" 9873 - sources."@babel/helper-function-name-7.16.7" 9874 - sources."@babel/helper-get-function-arity-7.16.7" 9875 - sources."@babel/helper-hoist-variables-7.16.7" 9876 - sources."@babel/helper-member-expression-to-functions-7.16.7" 9877 - sources."@babel/helper-module-imports-7.16.7" 9878 - sources."@babel/helper-module-transforms-7.16.7" 9879 - sources."@babel/helper-optimise-call-expression-7.16.7" 9880 - sources."@babel/helper-plugin-utils-7.16.7" 9881 - sources."@babel/helper-remap-async-to-generator-7.16.8" 9882 - sources."@babel/helper-replace-supers-7.16.7" 9883 - sources."@babel/helper-simple-access-7.16.7" 9884 - sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 9885 - sources."@babel/helper-split-export-declaration-7.16.7" 9886 - sources."@babel/helper-validator-identifier-7.16.7" 9887 - sources."@babel/helper-validator-option-7.16.7" 9888 - sources."@babel/helper-wrap-function-7.16.8" 9889 - sources."@babel/helpers-7.17.0" 9890 - sources."@babel/highlight-7.16.10" 9891 - sources."@babel/parser-7.17.0" 9892 - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 9893 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 9894 - sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 9895 - sources."@babel/plugin-proposal-class-properties-7.16.7" 9896 - sources."@babel/plugin-proposal-class-static-block-7.16.7" 9897 - sources."@babel/plugin-proposal-dynamic-import-7.16.7" 9898 - sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 9899 - sources."@babel/plugin-proposal-json-strings-7.16.7" 9900 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 9901 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 9902 - sources."@babel/plugin-proposal-numeric-separator-7.16.7" 9903 - sources."@babel/plugin-proposal-object-rest-spread-7.16.7" 9904 - sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 9905 - sources."@babel/plugin-proposal-optional-chaining-7.16.7" 9906 - sources."@babel/plugin-proposal-private-methods-7.16.11" 9907 - sources."@babel/plugin-proposal-private-property-in-object-7.16.7" 9908 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 9909 - sources."@babel/plugin-syntax-async-generators-7.8.4" 9910 - sources."@babel/plugin-syntax-bigint-7.8.3" 9911 - sources."@babel/plugin-syntax-class-properties-7.12.13" 9912 - sources."@babel/plugin-syntax-class-static-block-7.14.5" 9913 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 9914 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 9915 - sources."@babel/plugin-syntax-import-meta-7.10.4" 9916 - sources."@babel/plugin-syntax-json-strings-7.8.3" 9917 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 9918 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 9919 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 9920 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 9921 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 9922 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9923 - sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 9924 - sources."@babel/plugin-syntax-top-level-await-7.14.5" 9925 - sources."@babel/plugin-syntax-typescript-7.16.7" 9926 - sources."@babel/plugin-transform-arrow-functions-7.16.7" 9927 - sources."@babel/plugin-transform-async-to-generator-7.16.8" 9928 - sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 9929 - sources."@babel/plugin-transform-block-scoping-7.16.7" 9930 - sources."@babel/plugin-transform-classes-7.16.7" 9931 - sources."@babel/plugin-transform-computed-properties-7.16.7" 9932 - sources."@babel/plugin-transform-destructuring-7.16.7" 9933 - sources."@babel/plugin-transform-dotall-regex-7.16.7" 9934 - sources."@babel/plugin-transform-duplicate-keys-7.16.7" 9935 - sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 9936 - sources."@babel/plugin-transform-for-of-7.16.7" 9937 - sources."@babel/plugin-transform-function-name-7.16.7" 9938 - sources."@babel/plugin-transform-literals-7.16.7" 9939 - sources."@babel/plugin-transform-member-expression-literals-7.16.7" 9940 - sources."@babel/plugin-transform-modules-amd-7.16.7" 9941 - sources."@babel/plugin-transform-modules-commonjs-7.16.8" 9942 - sources."@babel/plugin-transform-modules-systemjs-7.16.7" 9943 - sources."@babel/plugin-transform-modules-umd-7.16.7" 9944 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 9945 - sources."@babel/plugin-transform-new-target-7.16.7" 9946 - sources."@babel/plugin-transform-object-super-7.16.7" 9947 - sources."@babel/plugin-transform-parameters-7.16.7" 9948 - sources."@babel/plugin-transform-property-literals-7.16.7" 9949 - sources."@babel/plugin-transform-regenerator-7.16.7" 9950 - sources."@babel/plugin-transform-reserved-words-7.16.7" 9951 - sources."@babel/plugin-transform-shorthand-properties-7.16.7" 9952 - sources."@babel/plugin-transform-spread-7.16.7" 9953 - sources."@babel/plugin-transform-sticky-regex-7.16.7" 9954 - sources."@babel/plugin-transform-template-literals-7.16.7" 9955 - sources."@babel/plugin-transform-typeof-symbol-7.16.7" 9956 - sources."@babel/plugin-transform-typescript-7.16.8" 9957 - sources."@babel/plugin-transform-unicode-escapes-7.16.7" 9958 - sources."@babel/plugin-transform-unicode-regex-7.16.7" 9959 - (sources."@babel/preset-env-https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz" // { 9960 - dependencies = [ 9961 - sources."semver-6.3.0" 9962 - ]; 9963 - }) 9964 - sources."@babel/preset-modules-0.1.5" 9965 - sources."@babel/preset-typescript-https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz" 9966 - sources."@babel/runtime-7.17.0" 9967 - sources."@babel/template-7.16.7" 9968 - sources."@babel/traverse-7.17.0" 9969 - sources."@babel/types-7.17.0" 9970 - sources."@bcoe/v8-coverage-0.2.3" 9971 - (sources."@eslint/eslintrc-1.0.5" // { 9972 - dependencies = [ 9973 - sources."argparse-2.0.1" 9974 - sources."globals-13.12.1" 9975 - sources."ignore-4.0.6" 9976 - sources."js-yaml-4.1.0" 9977 - sources."strip-json-comments-3.1.1" 9978 - ]; 9979 - }) 9980 - sources."@humanwhocodes/config-array-0.9.3" 9981 - sources."@humanwhocodes/object-schema-1.2.1" 9982 - sources."@istanbuljs/load-nyc-config-1.1.0" 9983 - sources."@istanbuljs/schema-0.1.3" 9984 - (sources."@jest/console-27.5.0" // { 9985 - dependencies = [ 9986 - sources."ansi-styles-4.3.0" 9987 - sources."chalk-4.1.2" 9988 - sources."color-convert-2.0.1" 9989 - sources."color-name-1.1.4" 9990 - sources."has-flag-4.0.0" 9991 - sources."slash-3.0.0" 9992 - sources."supports-color-7.2.0" 9993 - ]; 9994 - }) 9995 - (sources."@jest/core-27.5.0" // { 9996 - dependencies = [ 9997 - sources."ansi-regex-5.0.1" 9998 - sources."ansi-styles-4.3.0" 9999 - sources."chalk-4.1.2" 10000 - sources."color-convert-2.0.1" 10001 - sources."color-name-1.1.4" 10002 - sources."has-flag-4.0.0" 10003 - sources."slash-3.0.0" 10004 - sources."strip-ansi-6.0.1" 10005 - sources."supports-color-7.2.0" 10006 - ]; 10007 - }) 10008 - sources."@jest/environment-27.5.0" 10009 - sources."@jest/fake-timers-27.5.0" 10010 - sources."@jest/globals-27.5.0" 10011 - (sources."@jest/reporters-27.5.0" // { 10012 - dependencies = [ 10013 - sources."ansi-styles-4.3.0" 10014 - sources."chalk-4.1.2" 10015 - sources."color-convert-2.0.1" 10016 - sources."color-name-1.1.4" 10017 - sources."has-flag-4.0.0" 10018 - sources."slash-3.0.0" 10019 - sources."source-map-0.6.1" 10020 - sources."supports-color-7.2.0" 10021 - ]; 10022 - }) 10023 - (sources."@jest/source-map-27.5.0" // { 10024 - dependencies = [ 10025 - sources."source-map-0.6.1" 10026 - ]; 10027 - }) 10028 - sources."@jest/test-result-27.5.0" 10029 - sources."@jest/test-sequencer-27.5.0" 10030 - (sources."@jest/transform-27.5.0" // { 10031 - dependencies = [ 10032 - sources."ansi-styles-4.3.0" 10033 - sources."chalk-4.1.2" 10034 - sources."color-convert-2.0.1" 10035 - sources."color-name-1.1.4" 10036 - sources."has-flag-4.0.0" 10037 - sources."slash-3.0.0" 10038 - sources."source-map-0.6.1" 10039 - sources."supports-color-7.2.0" 10040 - ]; 10041 - }) 10042 - (sources."@jest/types-27.5.0" // { 10043 - dependencies = [ 10044 - sources."ansi-styles-4.3.0" 10045 - sources."chalk-4.1.2" 10046 - sources."color-convert-2.0.1" 10047 - sources."color-name-1.1.4" 10048 - sources."has-flag-4.0.0" 10049 - sources."supports-color-7.2.0" 10050 - ]; 10051 - }) 10052 - sources."@jridgewell/resolve-uri-3.0.4" 10053 - sources."@jridgewell/sourcemap-codec-1.4.10" 10054 - sources."@jridgewell/trace-mapping-0.2.7" 10055 - sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents.3" 10056 - sources."@nodelib/fs.scandir-2.1.5" 10057 - sources."@nodelib/fs.stat-2.0.5" 10058 - sources."@nodelib/fs.walk-1.2.8" 10059 - sources."@serialport/binding-abstract-9.2.3" 10060 - sources."@serialport/binding-mock-9.2.4" 10061 - sources."@serialport/bindings-9.2.8" 10062 - sources."@serialport/parser-byte-length-9.2.4" 10063 - sources."@serialport/parser-cctalk-9.2.4" 10064 - sources."@serialport/parser-delimiter-9.2.4" 10065 - sources."@serialport/parser-inter-byte-timeout-9.2.4" 10066 - sources."@serialport/parser-readline-9.2.4" 10067 - sources."@serialport/parser-ready-9.2.4" 10068 - sources."@serialport/parser-regex-9.2.4" 10069 - sources."@serialport/stream-9.2.4" 10070 - sources."@sinonjs/commons-1.8.3" 10071 - sources."@sinonjs/fake-timers-8.1.0" 10072 - sources."@tootallnate/once-1.1.2" 10073 - sources."@types/babel__core-7.1.18" 10074 - sources."@types/babel__generator-7.6.4" 10075 - sources."@types/babel__template-7.4.1" 10076 - sources."@types/babel__traverse-7.14.2" 10077 - sources."@types/debounce-https://registry.npmjs.org/@types/debounce/-/debounce-1.2.1.tgz" 10078 - sources."@types/debug-https://registry.npmjs.org/@types/debug/-/debug-4.1.7.tgz" 10079 - sources."@types/graceful-fs-4.1.5" 10080 - sources."@types/istanbul-lib-coverage-2.0.4" 10081 - sources."@types/istanbul-lib-report-3.0.0" 10082 - sources."@types/istanbul-reports-3.0.1" 10083 - sources."@types/jest-https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz" 10084 - sources."@types/json-schema-7.0.9" 10085 - sources."@types/ms-0.7.31" 10086 - sources."@types/mz-https://registry.npmjs.org/@types/mz/-/mz-2.7.4.tgz" 10087 - sources."@types/nedb-https://registry.npmjs.org/@types/nedb/-/nedb-1.8.12.tgz" 10088 - sources."@types/node-17.0.15" 10089 - sources."@types/prettier-2.4.3" 10090 - sources."@types/serialport-https://registry.npmjs.org/@types/serialport/-/serialport-8.0.2.tgz" 10091 - sources."@types/stack-utils-2.0.1" 10092 - sources."@types/yargs-16.0.4" 10093 - sources."@types/yargs-parser-20.2.1" 10094 - sources."@typescript-eslint/eslint-plugin-https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.2.tgz" 10095 - sources."@typescript-eslint/parser-https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.2.tgz" 10096 - sources."@typescript-eslint/scope-manager-5.10.2" 10097 - sources."@typescript-eslint/type-utils-5.10.2" 10098 - sources."@typescript-eslint/types-5.10.2" 10099 - sources."@typescript-eslint/typescript-estree-5.10.2" 10100 - sources."@typescript-eslint/utils-5.10.2" 10101 - sources."@typescript-eslint/visitor-keys-5.10.2" 10102 - sources."abab-2.0.5" 10103 - sources."acorn-8.7.0" 10104 - (sources."acorn-globals-6.0.0" // { 10105 - dependencies = [ 10106 - sources."acorn-7.4.1" 10107 - ]; 10108 - }) 10109 - sources."acorn-jsx-5.3.2" 10110 - sources."acorn-walk-7.2.0" 10111 - sources."agent-base-6.0.2" 10112 - sources."ajv-6.12.6" 10113 - (sources."ansi-escapes-4.3.2" // { 10114 - dependencies = [ 10115 - sources."type-fest-0.21.3" 10116 - ]; 10117 - }) 10118 - sources."ansi-regex-2.1.1" 10119 - sources."ansi-styles-3.2.1" 10120 - sources."any-promise-1.3.0" 10121 - sources."anymatch-3.1.2" 10122 - sources."aproba-1.2.0" 10123 - sources."are-we-there-yet-1.1.7" 10124 - sources."argparse-1.0.10" 10125 - sources."array-union-2.1.0" 10126 - sources."asynckit-0.4.0" 10127 - (sources."babel-jest-27.5.0" // { 10128 - dependencies = [ 10129 - sources."ansi-styles-4.3.0" 10130 - sources."chalk-4.1.2" 10131 - sources."color-convert-2.0.1" 10132 - sources."color-name-1.1.4" 10133 - sources."has-flag-4.0.0" 10134 - sources."slash-3.0.0" 10135 - sources."supports-color-7.2.0" 10136 - ]; 10137 - }) 10138 - sources."babel-plugin-dynamic-import-node-2.3.3" 10139 - sources."babel-plugin-istanbul-6.1.1" 10140 - sources."babel-plugin-jest-hoist-27.5.0" 10141 - (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 10142 - dependencies = [ 10143 - sources."semver-6.3.0" 10144 - ]; 10145 - }) 10146 - sources."babel-plugin-polyfill-corejs3-0.5.2" 10147 - sources."babel-plugin-polyfill-regenerator-0.3.1" 10148 - sources."babel-preset-current-node-syntax-1.0.1" 10149 - sources."babel-preset-jest-27.5.0" 10150 - sources."balanced-match-1.0.2" 10151 - sources."base64-js-1.5.1" 10152 - sources."binary-extensions-2.2.0" 10153 - sources."bindings-1.5.0" 10154 - (sources."bl-4.1.0" // { 10155 - dependencies = [ 10156 - sources."readable-stream-3.6.0" 10157 - ]; 10158 - }) 10159 - sources."brace-expansion-1.1.11" 10160 - sources."braces-3.0.2" 10161 - sources."browser-process-hrtime-1.0.0" 10162 - sources."browserslist-4.19.1" 10163 - sources."bser-2.1.1" 10164 - sources."buffer-5.7.1" 10165 - sources."buffer-from-1.1.2" 10166 - sources."call-bind-1.0.2" 10167 - sources."callsites-3.1.0" 10168 - sources."camelcase-5.3.1" 10169 - sources."caniuse-lite-1.0.30001307" 10170 - sources."chalk-2.4.2" 10171 - sources."char-regex-1.0.2" 10172 - sources."chokidar-3.5.3" 10173 - sources."chownr-1.1.4" 10174 - sources."ci-info-3.3.0" 10175 - sources."cjs-module-lexer-1.2.2" 10176 - (sources."cliui-7.0.4" // { 10177 - dependencies = [ 10178 - sources."ansi-regex-5.0.1" 10179 - sources."is-fullwidth-code-point-3.0.0" 10180 - sources."string-width-4.2.3" 10181 - sources."strip-ansi-6.0.1" 10182 - ]; 10183 - }) 10184 - sources."co-4.6.0" 10185 - sources."code-point-at-1.1.0" 10186 - sources."collect-v8-coverage-1.0.1" 10187 - sources."color-convert-1.9.3" 10188 - sources."color-name-1.1.3" 10189 - sources."combined-stream-1.0.8" 10190 - sources."commander-4.1.1" 10191 - sources."concat-map-0.0.1" 10192 - sources."console-control-strings-1.1.0" 10193 - sources."convert-source-map-1.8.0" 10194 - (sources."core-js-compat-3.21.0" // { 10195 - dependencies = [ 10196 - sources."semver-7.0.0" 10197 - ]; 10198 - }) 10199 - sources."core-util-is-1.0.3" 10200 - sources."cross-spawn-7.0.3" 10201 - sources."cssom-0.4.4" 10202 - (sources."cssstyle-2.3.0" // { 10203 - dependencies = [ 10204 - sources."cssom-0.3.8" 10205 - ]; 10206 - }) 10207 - sources."data-urls-2.0.0" 10208 - sources."debounce-1.2.1" 10209 - sources."debug-4.3.3" 10210 - sources."decimal.js-10.3.1" 10211 - sources."decompress-response-6.0.0" 10212 - sources."dedent-0.7.0" 10213 - sources."deep-extend-0.6.0" 10214 - sources."deep-is-0.1.4" 10215 - sources."deepmerge-4.2.2" 10216 - sources."define-properties-1.1.3" 10217 - sources."delayed-stream-1.0.0" 10218 - sources."delegates-1.0.0" 10219 - sources."detect-libc-2.0.0" 10220 - sources."detect-newline-3.1.0" 10221 - sources."diff-sequences-27.5.0" 10222 - sources."dir-glob-3.0.1" 10223 - sources."doctrine-3.0.0" 10224 - (sources."domexception-2.0.1" // { 10225 - dependencies = [ 10226 - sources."webidl-conversions-5.0.0" 10227 - ]; 10228 - }) 10229 - sources."electron-to-chromium-1.4.65" 10230 - sources."emittery-0.8.1" 10231 - sources."emoji-regex-8.0.0" 10232 - sources."end-of-stream-1.4.4" 10233 - sources."escalade-3.1.1" 10234 - sources."escape-string-regexp-1.0.5" 10235 - (sources."escodegen-2.0.0" // { 10236 - dependencies = [ 10237 - sources."estraverse-5.3.0" 10238 - sources."levn-0.3.0" 10239 - sources."optionator-0.8.3" 10240 - sources."prelude-ls-1.1.2" 10241 - sources."source-map-0.6.1" 10242 - sources."type-check-0.3.2" 10243 - ]; 10244 - }) 10245 - (sources."eslint-https://registry.npmjs.org/eslint/-/eslint-8.8.0.tgz" // { 10246 - dependencies = [ 10247 - sources."ansi-regex-5.0.1" 10248 - sources."ansi-styles-4.3.0" 10249 - sources."argparse-2.0.1" 10250 - sources."chalk-4.1.2" 10251 - sources."color-convert-2.0.1" 10252 - sources."color-name-1.1.4" 10253 - sources."escape-string-regexp-4.0.0" 10254 - sources."eslint-scope-7.1.0" 10255 - sources."estraverse-5.3.0" 10256 - sources."glob-parent-6.0.2" 10257 - sources."globals-13.12.1" 10258 - sources."has-flag-4.0.0" 10259 - sources."js-yaml-4.1.0" 10260 - sources."strip-ansi-6.0.1" 10261 - sources."strip-json-comments-3.1.1" 10262 - sources."supports-color-7.2.0" 10263 - ]; 10264 - }) 10265 - sources."eslint-scope-5.1.1" 10266 - (sources."eslint-utils-3.0.0" // { 10267 - dependencies = [ 10268 - sources."eslint-visitor-keys-2.1.0" 10269 - ]; 10270 - }) 10271 - sources."eslint-visitor-keys-3.2.0" 10272 - sources."espree-9.3.0" 10273 - sources."esprima-4.0.1" 10274 - (sources."esquery-1.4.0" // { 10275 - dependencies = [ 10276 - sources."estraverse-5.3.0" 10277 - ]; 10278 - }) 10279 - (sources."esrecurse-4.3.0" // { 10280 - dependencies = [ 10281 - sources."estraverse-5.3.0" 10282 - ]; 10283 - }) 10284 - sources."estraverse-4.3.0" 10285 - sources."esutils-2.0.3" 10286 - sources."execa-5.1.1" 10287 - sources."exit-0.1.2" 10288 - sources."expand-template-2.0.3" 10289 - sources."expect-27.5.0" 10290 - sources."fast-deep-equal-3.1.3" 10291 - sources."fast-glob-3.2.11" 10292 - sources."fast-json-stable-stringify-2.1.0" 10293 - sources."fast-levenshtein-2.0.6" 10294 - sources."fastq-1.13.0" 10295 - sources."fb-watchman-2.0.1" 10296 - sources."file-entry-cache-6.0.1" 10297 - sources."file-uri-to-path-1.0.0" 10298 - sources."fill-range-7.0.1" 10299 - sources."find-up-4.1.0" 10300 - sources."flat-cache-3.0.4" 10301 - sources."flatted-3.2.5" 10302 - sources."form-data-3.0.1" 10303 - sources."fs-constants-1.0.0" 10304 - sources."fs-readdir-recursive-1.1.0" 10305 - sources."fs.realpath-1.0.0" 10306 - sources."fsevents-2.3.2" 10307 - sources."function-bind-1.1.1" 10308 - sources."functional-red-black-tree-1.0.1" 10309 - sources."gauge-2.7.4" 10310 - sources."gensync-1.0.0-beta.2" 10311 - sources."get-caller-file-2.0.5" 10312 - sources."get-intrinsic-1.1.1" 10313 - sources."get-package-type-0.1.0" 10314 - sources."get-stream-6.0.1" 10315 - sources."github-from-package-0.0.0" 10316 - sources."glob-7.2.0" 10317 - sources."glob-parent-5.1.2" 10318 - sources."globals-11.12.0" 10319 - (sources."globby-11.1.0" // { 10320 - dependencies = [ 10321 - sources."slash-3.0.0" 10322 - ]; 10323 - }) 10324 - sources."graceful-fs-4.2.9" 10325 - (sources."handlebars-4.7.7" // { 10326 - dependencies = [ 10327 - sources."source-map-0.6.1" 10328 - ]; 10329 - }) 10330 - sources."has-1.0.3" 10331 - sources."has-flag-3.0.0" 10332 - sources."has-symbols-1.0.2" 10333 - sources."has-unicode-2.0.1" 10334 - sources."html-encoding-sniffer-2.0.1" 10335 - sources."html-escaper-2.0.2" 10336 - sources."http-proxy-agent-4.0.1" 10337 - sources."https-proxy-agent-5.0.0" 10338 - sources."human-signals-2.1.0" 10339 - sources."iconv-lite-0.4.24" 10340 - sources."ieee754-1.2.1" 10341 - sources."ignore-5.2.0" 10342 - (sources."import-fresh-3.3.0" // { 10343 - dependencies = [ 10344 - sources."resolve-from-4.0.0" 10345 - ]; 10346 - }) 10347 - sources."import-local-3.1.0" 10348 - sources."imurmurhash-0.1.4" 10349 - sources."inflight-1.0.6" 10350 - sources."inherits-2.0.4" 10351 - sources."ini-1.3.8" 10352 - sources."is-binary-path-2.1.0" 10353 - sources."is-core-module-2.8.1" 10354 - sources."is-extglob-2.1.1" 10355 - sources."is-fullwidth-code-point-1.0.0" 10356 - sources."is-generator-fn-2.1.0" 10357 - sources."is-glob-4.0.3" 10358 - sources."is-number-7.0.0" 10359 - sources."is-potential-custom-element-name-1.0.1" 10360 - sources."is-stream-2.0.1" 10361 - sources."is-typedarray-1.0.0" 10362 - sources."isarray-1.0.0" 10363 - sources."isexe-2.0.0" 10364 - sources."istanbul-lib-coverage-3.2.0" 10365 - (sources."istanbul-lib-instrument-5.1.0" // { 10366 - dependencies = [ 10367 - sources."semver-6.3.0" 10368 - ]; 10369 - }) 10370 - (sources."istanbul-lib-report-3.0.0" // { 10371 - dependencies = [ 10372 - sources."has-flag-4.0.0" 10373 - sources."make-dir-3.1.0" 10374 - sources."semver-6.3.0" 10375 - sources."supports-color-7.2.0" 10376 - ]; 10377 - }) 10378 - (sources."istanbul-lib-source-maps-4.0.1" // { 10379 - dependencies = [ 10380 - sources."source-map-0.6.1" 10381 - ]; 10382 - }) 10383 - sources."istanbul-reports-3.1.4" 10384 - (sources."jest-https://registry.npmjs.org/jest/-/jest-27.5.0.tgz" // { 10385 - dependencies = [ 10386 - sources."ansi-styles-4.3.0" 10387 - sources."chalk-4.1.2" 10388 - sources."color-convert-2.0.1" 10389 - sources."color-name-1.1.4" 10390 - sources."has-flag-4.0.0" 10391 - sources."jest-cli-27.5.0" 10392 - sources."supports-color-7.2.0" 10393 - ]; 10394 - }) 10395 - sources."jest-changed-files-27.5.0" 10396 - (sources."jest-circus-27.5.0" // { 10397 - dependencies = [ 10398 - sources."ansi-styles-4.3.0" 10399 - sources."chalk-4.1.2" 10400 - sources."color-convert-2.0.1" 10401 - sources."color-name-1.1.4" 10402 - sources."has-flag-4.0.0" 10403 - sources."slash-3.0.0" 10404 - sources."supports-color-7.2.0" 10405 - ]; 10406 - }) 10407 - (sources."jest-config-27.5.0" // { 10408 - dependencies = [ 10409 - sources."ansi-styles-4.3.0" 10410 - sources."chalk-4.1.2" 10411 - sources."color-convert-2.0.1" 10412 - sources."color-name-1.1.4" 10413 - sources."has-flag-4.0.0" 10414 - sources."slash-3.0.0" 10415 - sources."supports-color-7.2.0" 10416 - ]; 10417 - }) 10418 - (sources."jest-diff-27.5.0" // { 10419 - dependencies = [ 10420 - sources."ansi-styles-4.3.0" 10421 - sources."chalk-4.1.2" 10422 - sources."color-convert-2.0.1" 10423 - sources."color-name-1.1.4" 10424 - sources."has-flag-4.0.0" 10425 - sources."supports-color-7.2.0" 10426 - ]; 10427 - }) 10428 - sources."jest-docblock-27.5.0" 10429 - (sources."jest-each-27.5.0" // { 10430 - dependencies = [ 10431 - sources."ansi-styles-4.3.0" 10432 - sources."chalk-4.1.2" 10433 - sources."color-convert-2.0.1" 10434 - sources."color-name-1.1.4" 10435 - sources."has-flag-4.0.0" 10436 - sources."supports-color-7.2.0" 10437 - ]; 10438 - }) 10439 - sources."jest-environment-jsdom-27.5.0" 10440 - sources."jest-environment-node-27.5.0" 10441 - sources."jest-get-type-27.5.0" 10442 - sources."jest-haste-map-27.5.0" 10443 - (sources."jest-jasmine2-27.5.0" // { 10444 - dependencies = [ 10445 - sources."ansi-styles-4.3.0" 10446 - sources."chalk-4.1.2" 10447 - sources."color-convert-2.0.1" 10448 - sources."color-name-1.1.4" 10449 - sources."has-flag-4.0.0" 10450 - sources."supports-color-7.2.0" 10451 - ]; 10452 - }) 10453 - sources."jest-leak-detector-27.5.0" 10454 - (sources."jest-matcher-utils-27.5.0" // { 10455 - dependencies = [ 10456 - sources."ansi-styles-4.3.0" 10457 - sources."chalk-4.1.2" 10458 - sources."color-convert-2.0.1" 10459 - sources."color-name-1.1.4" 10460 - sources."has-flag-4.0.0" 10461 - sources."supports-color-7.2.0" 10462 - ]; 10463 - }) 10464 - (sources."jest-message-util-27.5.0" // { 10465 - dependencies = [ 10466 - sources."ansi-styles-4.3.0" 10467 - sources."chalk-4.1.2" 10468 - sources."color-convert-2.0.1" 10469 - sources."color-name-1.1.4" 10470 - sources."has-flag-4.0.0" 10471 - sources."slash-3.0.0" 10472 - sources."supports-color-7.2.0" 10473 - ]; 10474 - }) 10475 - sources."jest-mock-27.5.0" 10476 - sources."jest-pnp-resolver-1.2.2" 10477 - sources."jest-regex-util-27.5.0" 10478 - (sources."jest-resolve-27.5.0" // { 10479 - dependencies = [ 10480 - sources."ansi-styles-4.3.0" 10481 - sources."chalk-4.1.2" 10482 - sources."color-convert-2.0.1" 10483 - sources."color-name-1.1.4" 10484 - sources."has-flag-4.0.0" 10485 - sources."slash-3.0.0" 10486 - sources."supports-color-7.2.0" 10487 - ]; 10488 - }) 10489 - sources."jest-resolve-dependencies-27.5.0" 10490 - (sources."jest-runner-27.5.0" // { 10491 - dependencies = [ 10492 - sources."ansi-styles-4.3.0" 10493 - sources."chalk-4.1.2" 10494 - sources."color-convert-2.0.1" 10495 - sources."color-name-1.1.4" 10496 - sources."has-flag-4.0.0" 10497 - sources."supports-color-7.2.0" 10498 - ]; 10499 - }) 10500 - (sources."jest-runtime-27.5.0" // { 10501 - dependencies = [ 10502 - sources."ansi-styles-4.3.0" 10503 - sources."chalk-4.1.2" 10504 - sources."color-convert-2.0.1" 10505 - sources."color-name-1.1.4" 10506 - sources."has-flag-4.0.0" 10507 - sources."slash-3.0.0" 10508 - sources."supports-color-7.2.0" 10509 - ]; 10510 - }) 10511 - sources."jest-serializer-27.5.0" 10512 - (sources."jest-snapshot-27.5.0" // { 10513 - dependencies = [ 10514 - sources."ansi-styles-4.3.0" 10515 - sources."chalk-4.1.2" 10516 - sources."color-convert-2.0.1" 10517 - sources."color-name-1.1.4" 10518 - sources."has-flag-4.0.0" 10519 - sources."supports-color-7.2.0" 10520 - ]; 10521 - }) 10522 - (sources."jest-util-27.5.0" // { 10523 - dependencies = [ 10524 - sources."ansi-styles-4.3.0" 10525 - sources."chalk-4.1.2" 10526 - sources."color-convert-2.0.1" 10527 - sources."color-name-1.1.4" 10528 - sources."has-flag-4.0.0" 10529 - sources."supports-color-7.2.0" 10530 - ]; 10531 - }) 10532 - (sources."jest-validate-27.5.0" // { 10533 - dependencies = [ 10534 - sources."ansi-styles-4.3.0" 10535 - sources."camelcase-6.3.0" 10536 - sources."chalk-4.1.2" 10537 - sources."color-convert-2.0.1" 10538 - sources."color-name-1.1.4" 10539 - sources."has-flag-4.0.0" 10540 - sources."supports-color-7.2.0" 10541 - ]; 10542 - }) 10543 - (sources."jest-watcher-27.5.0" // { 10544 - dependencies = [ 10545 - sources."ansi-styles-4.3.0" 10546 - sources."chalk-4.1.2" 10547 - sources."color-convert-2.0.1" 10548 - sources."color-name-1.1.4" 10549 - sources."has-flag-4.0.0" 10550 - sources."supports-color-7.2.0" 10551 - ]; 10552 - }) 10553 - (sources."jest-worker-27.5.0" // { 10554 - dependencies = [ 10555 - sources."has-flag-4.0.0" 10556 - sources."supports-color-8.1.1" 10557 - ]; 10558 - }) 10559 - sources."js-tokens-4.0.0" 10560 - sources."js-yaml-3.14.1" 10561 - sources."jsdom-16.7.0" 10562 - sources."jsesc-2.5.2" 10563 - sources."json-schema-traverse-0.4.1" 10564 - sources."json-stable-stringify-without-jsonify-1.0.1" 10565 - sources."json5-2.2.0" 10566 - sources."jsonc-parser-3.0.0" 10567 - sources."kleur-3.0.3" 10568 - sources."leven-3.1.0" 10569 - sources."levn-0.4.1" 10570 - sources."locate-path-5.0.0" 10571 - sources."lodash-4.17.21" 10572 - sources."lodash.debounce-4.0.8" 10573 - sources."lodash.merge-4.6.2" 10574 - sources."lru-cache-6.0.0" 10575 - sources."lunr-2.3.9" 10576 - (sources."make-dir-2.1.0" // { 10577 - dependencies = [ 10578 - sources."semver-5.7.1" 10579 - ]; 10580 - }) 10581 - sources."makeerror-1.0.12" 10582 - sources."marked-4.0.12" 10583 - sources."merge-stream-2.0.0" 10584 - sources."merge2-1.4.1" 10585 - sources."micromatch-4.0.4" 10586 - sources."mime-db-1.51.0" 10587 - sources."mime-types-2.1.34" 10588 - sources."mimic-fn-2.1.0" 10589 - sources."mimic-response-3.1.0" 10590 - sources."minimatch-3.0.4" 10591 - sources."minimist-1.2.5" 10592 - sources."mixin-deep-2.0.1" 10593 - sources."mkdirp-classic-0.5.3" 10594 - sources."ms-2.1.2" 10595 - sources."mz-2.7.0" 10596 - sources."nan-2.15.0" 10597 - sources."napi-build-utils-1.0.2" 10598 - sources."natural-compare-1.4.0" 10599 - sources."neo-async-2.6.2" 10600 - sources."node-abi-3.8.0" 10601 - sources."node-int64-0.4.0" 10602 - sources."node-releases-2.0.1" 10603 - sources."normalize-path-3.0.0" 10604 - sources."npm-run-path-4.0.1" 10605 - sources."npmlog-4.1.2" 10606 - sources."number-is-nan-1.0.1" 10607 - sources."nwsapi-2.2.0" 10608 - sources."object-assign-4.1.1" 10609 - sources."object-keys-1.1.1" 10610 - sources."object.assign-4.1.2" 10611 - sources."once-1.4.0" 10612 - sources."onetime-5.1.2" 10613 - sources."optionator-0.9.1" 10614 - sources."p-limit-2.3.0" 10615 - sources."p-locate-4.1.0" 10616 - sources."p-try-2.2.0" 10617 - sources."parent-module-1.0.1" 10618 - sources."parse5-6.0.1" 10619 - sources."path-exists-4.0.0" 10620 - sources."path-is-absolute-1.0.1" 10621 - sources."path-key-3.1.1" 10622 - sources."path-parse-1.0.7" 10623 - sources."path-type-4.0.0" 10624 - sources."picocolors-1.0.0" 10625 - sources."picomatch-2.3.1" 10626 - sources."pify-4.0.1" 10627 - sources."pirates-4.0.5" 10628 - sources."pkg-dir-4.2.0" 10629 - sources."prebuild-install-7.0.1" 10630 - sources."prelude-ls-1.2.1" 10631 - (sources."pretty-format-27.5.0" // { 10632 - dependencies = [ 10633 - sources."ansi-regex-5.0.1" 10634 - sources."ansi-styles-5.2.0" 10635 - ]; 10636 - }) 10637 - sources."process-nextick-args-2.0.1" 10638 - sources."prompts-2.4.2" 10639 - sources."psl-1.8.0" 10640 - sources."pump-3.0.0" 10641 - sources."punycode-2.1.1" 10642 - sources."queue-microtask-1.2.3" 10643 - sources."rc-1.2.8" 10644 - sources."react-is-17.0.2" 10645 - sources."readable-stream-2.3.7" 10646 - sources."readdirp-3.6.0" 10647 - sources."regenerate-1.4.2" 10648 - sources."regenerate-unicode-properties-10.0.1" 10649 - sources."regenerator-runtime-0.13.9" 10650 - sources."regenerator-transform-0.14.5" 10651 - sources."regexpp-3.2.0" 10652 - sources."regexpu-core-5.0.1" 10653 - sources."regjsgen-0.6.0" 10654 - (sources."regjsparser-0.8.4" // { 10655 - dependencies = [ 10656 - sources."jsesc-0.5.0" 10657 - ]; 10658 - }) 10659 - sources."require-directory-2.1.1" 10660 - sources."resolve-1.22.0" 10661 - sources."resolve-cwd-3.0.0" 10662 - sources."resolve-from-5.0.0" 10663 - sources."resolve.exports-1.1.0" 10664 - sources."reusify-1.0.4" 10665 - sources."rimraf-3.0.2" 10666 - sources."run-parallel-1.2.0" 10667 - sources."safe-buffer-5.1.2" 10668 - sources."safer-buffer-2.1.2" 10669 - sources."saxes-5.0.1" 10670 - sources."semver-7.3.5" 10671 - sources."serialport-9.2.8" 10672 - sources."set-blocking-2.0.0" 10673 - sources."shebang-command-2.0.0" 10674 - sources."shebang-regex-3.0.0" 10675 - sources."shiki-0.10.0" 10676 - sources."signal-exit-3.0.7" 10677 - sources."simple-concat-1.0.1" 10678 - sources."simple-get-4.0.1" 10679 - sources."sisteransi-1.0.5" 10680 - sources."slash-2.0.0" 10681 - sources."slip-1.0.2" 10682 - sources."source-map-0.5.7" 10683 - (sources."source-map-support-0.5.21" // { 10684 - dependencies = [ 10685 - sources."source-map-0.6.1" 10686 - ]; 10687 - }) 10688 - sources."sprintf-js-1.0.3" 10689 - (sources."stack-utils-2.0.5" // { 10690 - dependencies = [ 10691 - sources."escape-string-regexp-2.0.0" 10692 - ]; 10693 - }) 10694 - (sources."string-length-4.0.2" // { 10695 - dependencies = [ 10696 - sources."ansi-regex-5.0.1" 10697 - sources."strip-ansi-6.0.1" 10698 - ]; 10699 - }) 10700 - sources."string-width-1.0.2" 10701 - sources."string_decoder-1.1.1" 10702 - sources."strip-ansi-3.0.1" 10703 - sources."strip-bom-4.0.0" 10704 - sources."strip-final-newline-2.0.0" 10705 - sources."strip-json-comments-2.0.1" 10706 - sources."supports-color-5.5.0" 10707 - (sources."supports-hyperlinks-2.2.0" // { 10708 - dependencies = [ 10709 - sources."has-flag-4.0.0" 10710 - sources."supports-color-7.2.0" 10711 - ]; 10712 - }) 10713 - sources."supports-preserve-symlinks-flag-1.0.0" 10714 - sources."symbol-tree-3.2.4" 10715 - sources."tar-fs-2.1.1" 10716 - (sources."tar-stream-2.2.0" // { 10717 - dependencies = [ 10718 - sources."readable-stream-3.6.0" 10719 - ]; 10720 - }) 10721 - sources."terminal-link-2.1.1" 10722 - sources."test-exclude-6.0.0" 10723 - sources."text-table-0.2.0" 10724 - sources."thenify-3.3.1" 10725 - sources."thenify-all-1.6.0" 10726 - sources."throat-6.0.1" 10727 - sources."tmpl-1.0.5" 10728 - sources."to-fast-properties-2.0.0" 10729 - sources."to-regex-range-5.0.1" 10730 - sources."tough-cookie-4.0.0" 10731 - sources."tr46-2.1.0" 10732 - sources."tslib-1.14.1" 10733 - sources."tsutils-3.21.0" 10734 - sources."tunnel-agent-0.6.0" 10735 - sources."type-check-0.4.0" 10736 - sources."type-detect-4.0.8" 10737 - sources."type-fest-0.20.2" 10738 - sources."typedarray-to-buffer-3.1.5" 10739 - sources."typedoc-https://registry.npmjs.org/typedoc/-/typedoc-0.22.11.tgz" 10740 - sources."typedoc-plugin-markdown-https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.13.tgz" 10741 - sources."typedoc-plugin-no-inherit-https://registry.npmjs.org/typedoc-plugin-no-inherit/-/typedoc-plugin-no-inherit-1.3.1.tgz" 10742 - sources."typedoc-plugin-sourcefile-url-https://registry.npmjs.org/typedoc-plugin-sourcefile-url/-/typedoc-plugin-sourcefile-url-1.0.6.tgz" 10743 - sources."typescript-https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz" 10744 - sources."uglify-js-3.15.0" 10745 - sources."unicode-canonical-property-names-ecmascript-2.0.0" 10746 - sources."unicode-match-property-ecmascript-2.0.0" 10747 - sources."unicode-match-property-value-ecmascript-2.0.0" 10748 - sources."unicode-property-aliases-ecmascript-2.0.0" 10749 - sources."universalify-0.1.2" 10750 - sources."uri-js-4.4.1" 10751 - sources."util-deprecate-1.0.2" 10752 - sources."v8-compile-cache-2.3.0" 10753 - (sources."v8-to-istanbul-8.1.1" // { 10754 - dependencies = [ 10755 - sources."source-map-0.7.3" 10756 - ]; 10757 - }) 10758 - sources."vscode-oniguruma-1.6.1" 10759 - sources."vscode-textmate-5.2.0" 10760 - sources."w3c-hr-time-1.0.2" 10761 - sources."w3c-xmlserializer-2.0.0" 10762 - sources."walker-1.0.8" 10763 - sources."webidl-conversions-6.1.0" 10764 - sources."whatwg-encoding-1.0.5" 10765 - sources."whatwg-mimetype-2.3.0" 10766 - sources."whatwg-url-8.7.0" 10767 - sources."which-2.0.2" 10768 - sources."wide-align-1.1.5" 10769 - sources."word-wrap-1.2.3" 10770 - sources."wordwrap-1.0.0" 10771 - (sources."wrap-ansi-7.0.0" // { 10772 - dependencies = [ 10773 - sources."ansi-regex-5.0.1" 10774 - sources."ansi-styles-4.3.0" 10775 - sources."color-convert-2.0.1" 10776 - sources."color-name-1.1.4" 10777 - sources."is-fullwidth-code-point-3.0.0" 10778 - sources."string-width-4.2.3" 10779 - sources."strip-ansi-6.0.1" 10780 - ]; 10781 - }) 10782 - sources."wrappy-1.0.2" 10783 - sources."write-file-atomic-3.0.3" 10784 - sources."ws-7.5.6" 10785 - sources."xml-name-validator-3.0.0" 10786 - sources."xmlchars-2.2.0" 10787 - sources."y18n-5.0.8" 10788 - sources."yallist-4.0.0" 10789 - (sources."yargs-16.2.0" // { 10790 - dependencies = [ 10791 - sources."ansi-regex-5.0.1" 10792 - sources."is-fullwidth-code-point-3.0.0" 10793 - sources."string-width-4.2.3" 10794 - sources."strip-ansi-6.0.1" 10795 - ]; 10796 - }) 10797 - sources."yargs-parser-20.2.9" 10798 - ]; 10799 - }) 10800 - ]; 10801 - }) 10802 - sources."zigbee2mqtt-frontend-0.6.80" 7053 + sources."zigbee-herdsman-0.14.27" 7054 + sources."zigbee-herdsman-converters-14.0.504" 7055 + sources."zigbee2mqtt-frontend-0.6.83" 10803 7056 ]; 10804 7057 buildInputs = globalBuildInputs; 10805 7058 meta = {
+6 -29
pkgs/stdenv/adapters.nix
··· 149 149 }); 150 150 151 151 152 - /* Return a modified stdenv that builds packages with GCC's coverage 153 - instrumentation. The coverage note files (*.gcno) are stored in 154 - $out/.build, along with the source code of the package, to enable 155 - programs like lcov to produce pretty-printed reports. 156 - */ 152 + # remove after 22.05 and before 22.11 157 153 addCoverageInstrumentation = stdenv: 154 + builtins.trace "'addCoverageInstrumentation' adapter is deprecated and will be removed before 22.11" 158 155 overrideInStdenv stdenv [ pkgs.enableGCOVInstrumentation pkgs.keepBuildTree ]; 159 156 160 157 161 - /* Replace the meta.maintainers field of a derivation. This is useful 162 - when you want to fork to update some packages without disturbing other 163 - developers. 164 - 165 - e.g.: in all-packages.nix: 166 - 167 - # remove all maintainers. 168 - defaultStdenv = replaceMaintainersField allStdenvs.stdenv pkgs []; 169 - */ 158 + # remove after 22.05 and before 22.11 170 159 replaceMaintainersField = stdenv: pkgs: maintainers: 160 + builtins.trace "'replaceMaintainersField' adapter is deprecated and will be removed before 22.11" 171 161 stdenv.override (old: { 172 162 mkDerivationFromStdenv = overrideMkDerivationResult (pkg: 173 163 lib.recursiveUpdate pkg { meta.maintainers = maintainers; }); ··· 193 183 }); 194 184 195 185 196 - /* Abort if the license predicate is not verified for a derivation 197 - declared with mkDerivation. 198 - 199 - One possible predicate to avoid all non-free packages can be achieved 200 - with the following function: 201 - 202 - isFree = license: with builtins; 203 - if license == null then true 204 - else if isList license then lib.all isFree license 205 - else license != "non-free" && license != "unfree"; 206 - 207 - This adapter can be defined on the defaultStdenv definition. You can 208 - use it by patching the all-packages.nix file or by using the override 209 - feature of ~/.config/nixpkgs/config.nix . 210 - */ 186 + # remove after 22.05 and before 22.11 211 187 validateLicenses = licensePred: stdenv: 188 + builtins.trace "'validateLicenses' adapter is deprecated and will be removed before 22.11" 212 189 stdenv.override (old: { 213 190 mkDerivationFromStdenv = overrideMkDerivationResult (pkg: 214 191 let
+1 -1
pkgs/stdenv/generic/make-derivation.nix
··· 83 83 # * https://nixos.org/nixpkgs/manual/#sec-using-stdenv 84 84 # Details on how to use this mkDerivation function 85 85 # 86 - # * https://nixos.org/nix/manual/#ssec-derivation 86 + # * https://nixos.org/manual/nix/stable/expressions/derivations.html#derivations 87 87 # Explanation about derivations in general 88 88 { 89 89
+20
pkgs/tools/misc/bdfresize/default.nix
··· 1 + { lib, stdenv, fetchurl }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "bdfresize"; 5 + version = "1.5"; 6 + 7 + src = fetchurl { 8 + url = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/${pname}-${version}.tar.gz"; 9 + hash = "sha256-RAz8BiCgI35GNSwUoHdMqj8wWXWbCiDe/vyU6EkIl6Y="; 10 + }; 11 + 12 + patches = [ ./remove-malloc-declaration.patch ]; 13 + 14 + meta = with lib; { 15 + description = "Tool to resize BDF fonts"; 16 + homepage = "http://openlab.ring.gr.jp/efont/dist/tools/bdfresize/"; 17 + license = licenses.gpl2Only; 18 + maintainers = with maintainers; [ malvo ]; 19 + }; 20 + }
+11
pkgs/tools/misc/bdfresize/remove-malloc-declaration.patch
··· 1 + Remove an unneeded declaration of malloc so gcc doesn't complain. 2 + --- a/charresize.c 3 + +++ b/charresize.c 4 + @@ -46,7 +46,6 @@ static int bit[8] = { 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 }; 5 + void 6 + processChar(void) 7 + { 8 + - char *malloc(); 9 + char *srcimage; 10 + int *dstgray; 11 +
+8 -3
pkgs/tools/networking/cmst/default.nix
··· 1 - { mkDerivation, lib, fetchFromGitHub, qmake, qtbase, qttools }: 1 + { mkDerivation, lib, fetchFromGitHub, qmake, qtbase, qttools, gitUpdater }: 2 2 3 3 mkDerivation rec { 4 4 pname = "cmst"; 5 - version = "2022.03.13"; 5 + version = "2022.05.01"; 6 6 7 7 src = fetchFromGitHub { 8 8 repo = "cmst"; 9 9 owner = "andrew-bibb"; 10 10 rev = "${pname}-${version}"; 11 - sha256 = "sha256-PIS77yYM7tR+0vpTDh9Li/dnaWHUQW+w1NLRb5g+sz8="; 11 + sha256 = "sha256-d3uvJf1tI9vXyq1eIbHkKrinBuPkYoBUcusHsJmSqMA="; 12 12 }; 13 13 14 14 nativeBuildInputs = [ qmake qttools ]; ··· 20 20 substituteInPlace $f --replace /etc $out/etc --replace /usr $out 21 21 done 22 22 ''; 23 + 24 + passthru.updateScript = gitUpdater { 25 + inherit pname version; 26 + rev-prefix = "${pname}-"; 27 + }; 23 28 24 29 meta = with lib; { 25 30 description = "QT GUI for Connman with system tray icon";
+3 -2
pkgs/tools/networking/getmail6/default.nix
··· 5 5 6 6 python3.pkgs.buildPythonApplication rec { 7 7 pname = "getmail6"; 8 - version = "6.18.6"; 8 + version = "6.18.7"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = pname; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "08a5yw6ll1kmd1ardj8rzhsw4wl48zzdc87g5lh4p5snv8w2m4ja"; 14 + hash = "sha256-JghiV0zC9xtOGuGcf0lY5e73/04n6Bat/xOGgXyDWJk="; 15 15 }; 16 16 17 17 # needs a Docker setup ··· 28 28 meta = with lib; { 29 29 description = "A program for retrieving mail"; 30 30 homepage = "https://getmail6.org"; 31 + changelog = "https://github.com/getmail6/getmail6/blob/${src.rev}/docs/CHANGELOG"; 31 32 license = licenses.gpl2Plus; 32 33 maintainers = with maintainers; [ abbe dotlambda ]; 33 34 };
+54
pkgs/tools/networking/netcat-openbsd/default.nix
··· 1 + { lib, stdenv, fetchFromGitLab, pkg-config, libbsd, installShellFiles }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "netcat-openbsd"; 5 + version = "1.218-5"; 6 + 7 + src = fetchFromGitLab { 8 + domain = "salsa.debian.org"; 9 + owner = "debian"; 10 + repo = "netcat-openbsd"; 11 + rev = "refs/tags/debian/${version}"; 12 + sha256 = "sha256-jEJ8x49Z1UN2qOChGp173aQuPkgl2fWwUUJgUdOv60I="; 13 + }; 14 + 15 + strictDeps = true; 16 + nativeBuildInputs = [ pkg-config installShellFiles ]; 17 + buildInputs = [ libbsd ]; 18 + 19 + NIX_CFLAGS_COMPILE = [ 20 + "-I${lib.getDev libbsd}/include/libbsd" 21 + ]; 22 + 23 + NIX_LDFLAGS = [ "-lbsd" ]; 24 + 25 + postPatch = '' 26 + for file in $(cat debian/patches/series); do 27 + patch -p1 < debian/patches/$file 28 + done 29 + ''; 30 + 31 + installPhase = '' 32 + runHook preInstall 33 + 34 + mkdir -p $out/bin 35 + mv nc $out/bin/nc 36 + installManPage nc.1 37 + 38 + runHook postInstall 39 + ''; 40 + 41 + doInstallCheck = true; 42 + installCheckPhase = '' 43 + $out/bin/nc -h 2> /dev/null 44 + ''; 45 + 46 + meta = with lib; { 47 + description = "TCP/IP swiss army knife. OpenBSD variant"; 48 + homepage = "https://salsa.debian.org/debian/netcat-openbsd"; 49 + maintainers = with maintainers; [ artturin ]; 50 + license = licenses.bsd3; 51 + platforms = platforms.unix; 52 + mainProgram = "nc"; 53 + }; 54 + }
+2 -1
pkgs/tools/networking/p2p/tahoe-lafs/default.nix
··· 60 60 html5lib magic-wormhole netifaces pyasn1 pycrypto pyutil pyyaml recommonmark 61 61 service-identity simplejson sphinx_rtd_theme testtools treq twisted zfec 62 62 zope_interface 63 - ]; 63 + ] ++ twisted.extras-require.tls 64 + ++ twisted.extras-require.conch; 64 65 65 66 checkInputs = with python3Packages; [ mock hypothesis twisted ]; 66 67
+2 -2
pkgs/tools/security/swtpm/default.nix
··· 16 16 17 17 stdenv.mkDerivation rec { 18 18 pname = "swtpm"; 19 - version = "0.7.2"; 19 + version = "0.7.3"; 20 20 21 21 src = fetchFromGitHub { 22 22 owner = "stefanberger"; 23 23 repo = "swtpm"; 24 24 rev = "v${version}"; 25 - sha256 = "sha256-qeyPCJTNnwuaCosHzqnrQc0JNznGBfDTLsuDmuKREjU="; 25 + sha256 = "sha256-YaNQgxk0uT8FLUIxF80jpgO/L9ygGRHaABEcs5ukq5E="; 26 26 }; 27 27 28 28 nativeBuildInputs = [
+43
pkgs/tools/virtualization/kubevirt/default.nix
··· 1 + { buildGoModule 2 + , fetchFromGitHub 3 + , lib 4 + , testers 5 + , kubevirt 6 + }: 7 + 8 + buildGoModule rec { 9 + pname = "kubevirt"; 10 + version = "0.52.0"; 11 + 12 + src = fetchFromGitHub { 13 + owner = "kubevirt"; 14 + repo = "kubevirt"; 15 + rev = "v${version}"; 16 + sha256 = "0ldc13nypbk3r9ihbdfibpyvzyzz4m68zzb7g6cq551ks9qdiyma"; 17 + }; 18 + 19 + vendorSha256 = null; 20 + 21 + subPackages = [ "cmd/virtctl" ]; 22 + 23 + tags = [ "selinux" ]; 24 + 25 + ldflags = [ 26 + "-X kubevirt.io/client-go/version.gitCommit=v${version}" 27 + "-X kubevirt.io/client-go/version.gitTreeState=clean" 28 + "-X kubevirt.io/client-go/version.gitVersion=v${version}" 29 + ]; 30 + 31 + passthru.tests.version = testers.testVersion { 32 + package = kubevirt; 33 + command = "virtctl version --client"; 34 + version = "v${version}"; 35 + }; 36 + 37 + meta = with lib; { 38 + description = "Client tool to use advanced features such as console access"; 39 + homepage = "https://kubevirt.io/"; 40 + license = licenses.asl20; 41 + maintainers = with maintainers; [ haslersn ]; 42 + }; 43 + }
-1
pkgs/top-level/aliases.nix
··· 850 850 navit = throw "navit has been removed from nixpkgs, due to being unmaintained"; # Added 2021-06-07 851 851 ncat = throw "'ncat' has been renamed to/replaced by 'nmap'"; # Converted to throw 2022-02-22 852 852 neap = throw "neap was removed from nixpkgs, as it relies on python2"; # Added 2022-01-12 853 - netcat-openbsd = throw "'netcat-openbsd' has been renamed to/replaced by 'libressl.nc'"; # Converted to throw 2022-02-22 854 853 netease-cloud-music = throw "netease-cloud-music has been removed together with deepin"; # Added 2020-08-31 855 854 networkmanager_fortisslvpn = throw "'networkmanager_fortisslvpn' has been renamed to/replaced by 'networkmanager-fortisslvpn'"; # Converted to throw 2022-02-22 856 855 networkmanager_iodine = throw "'networkmanager_iodine' has been renamed to/replaced by 'networkmanager-iodine'"; # Converted to throw 2022-02-22
+16 -2
pkgs/top-level/all-packages.nix
··· 1213 1213 1214 1214 ventoy-bin = callPackage ../tools/cd-dvd/ventoy-bin { }; 1215 1215 1216 + kubevirt = callPackage ../tools/virtualization/kubevirt { }; 1217 + 1216 1218 vopono = callPackage ../tools/networking/vopono { }; 1217 1219 1218 1220 winbox = callPackage ../tools/admin/winbox { ··· 2628 2630 bdf2psf = callPackage ../tools/misc/bdf2psf { }; 2629 2631 2630 2632 bdf2sfd = callPackage ../tools/misc/bdf2sfd { }; 2633 + 2634 + bdfresize = callPackage ../tools/misc/bdfresize { }; 2631 2635 2632 2636 bcache-tools = callPackage ../tools/filesystems/bcache-tools { }; 2633 2637 ··· 8555 8559 8556 8560 netcat-gnu = callPackage ../tools/networking/netcat { }; 8557 8561 8562 + netcat-openbsd = callPackage ../tools/networking/netcat-openbsd { }; 8563 + 8558 8564 netdiscover = callPackage ../tools/networking/netdiscover { }; 8559 8565 8560 8566 nethogs = callPackage ../tools/networking/nethogs { }; ··· 9577 9583 pydf = callPackage ../applications/misc/pydf { }; 9578 9584 9579 9585 pyinfra = with python3Packages; toPythonApplication pyinfra; 9586 + 9587 + pylint = with python3Packages; toPythonApplication pylint; 9580 9588 9581 9589 pympress = callPackage ../applications/office/pympress { }; 9582 9590 ··· 11143 11151 11144 11152 ugrep = callPackage ../tools/text/ugrep { }; 11145 11153 11154 + uhk-agent = callPackage ../os-specific/linux/uhk-agent { }; 11155 + 11156 + uhk-udev-rules = callPackage ../os-specific/linux/uhk-udev-rules { }; 11157 + 11146 11158 uif2iso = callPackage ../tools/cd-dvd/uif2iso { }; 11147 11159 11148 11160 uivonim = callPackage ../applications/editors/uivonim { }; ··· 19953 19965 openvdb = callPackage ../development/libraries/openvdb {}; 19954 19966 19955 19967 inherit (callPackages ../development/libraries/libressl { }) 19956 - libressl_3_4; 19968 + libressl_3_4 19969 + libressl_3_5; 19957 19970 19958 19971 libressl = libressl_3_4; 19959 19972 ··· 20128 20141 protobuf3_8 = callPackage ../development/libraries/protobuf/3.8.nix { }; 20129 20142 protobuf3_7 = callPackage ../development/libraries/protobuf/3.7.nix { }; 20130 20143 protobuf3_6 = callPackage ../development/libraries/protobuf/3.6.nix { }; 20131 - protobuf3_1 = callPackage ../development/libraries/protobuf/3.1.nix { }; 20132 20144 20133 20145 protobufc = callPackage ../development/libraries/protobufc/1.3.nix { }; 20134 20146 ··· 28219 28231 rofi-power-menu = callPackage ../applications/misc/rofi-power-menu { }; 28220 28232 28221 28233 rofi-pulse-select = callPackage ../applications/audio/rofi-pulse-select { }; 28234 + 28235 + rofi-rbw = python3Packages.callPackage ../applications/misc/rofi-rbw { }; 28222 28236 28223 28237 rofi-vpn = callPackage ../applications/networking/rofi-vpn { }; 28224 28238
+1
pkgs/top-level/python-aliases.nix
··· 83 83 loo-py = loopy; # added 2022-05-03 84 84 Markups = markups; # added 2022-02-14 85 85 MechanicalSoup = mechanicalsoup; # added 2021-06-01 86 + memcached = python-memcached; # added 2022-05-06 86 87 net2grid = gridnet; # add 2022-04-22 87 88 nose-cover3 = throw "nose-cover3 has been removed, it was using setuptools 2to3 translation feature, which has been removed in setuptools 58"; # added 2022-02-16 88 89 pam = python-pam; # added 2020-09-07.
+4 -2
pkgs/top-level/python-packages.nix
··· 5194 5194 5195 5195 meld3 = callPackage ../development/python-modules/meld3 { }; 5196 5196 5197 - memcached = callPackage ../development/python-modules/memcached { }; 5198 - 5199 5197 memory-allocator = callPackage ../development/python-modules/memory-allocator { }; 5200 5198 5201 5199 memory_profiler = callPackage ../development/python-modules/memory_profiler { }; ··· 6477 6475 python-keystoneclient = callPackage ../development/python-modules/python-keystoneclient { }; 6478 6476 6479 6477 python-lsp-black = callPackage ../development/python-modules/python-lsp-black { }; 6478 + 6479 + python-memcached = callPackage ../development/python-modules/python-memcached { }; 6480 6480 6481 6481 python-openems = callPackage ../development/python-modules/python-openems { }; 6482 6482 ··· 10581 10581 ukkonen = callPackage ../development/python-modules/ukkonen { }; 10582 10582 10583 10583 ukpostcodeparser = callPackage ../development/python-modules/ukpostcodeparser { }; 10584 + 10585 + ukrainealarm = callPackage ../development/python-modules/ukrainealarm { }; 10584 10586 10585 10587 umalqurra = callPackage ../development/python-modules/umalqurra { }; 10586 10588
+4
pkgs/top-level/qt5-packages.nix
··· 146 146 147 147 mauikit = callPackage ../development/libraries/mauikit { }; 148 148 149 + mauikit-accounts = callPackage ../development/libraries/mauikit-accounts { }; 150 + 149 151 mauikit-filebrowsing = callPackage ../development/libraries/mauikit-filebrowsing { }; 152 + 153 + mauikit-texteditor = callPackage ../development/libraries/mauikit-texteditor { }; 150 154 151 155 mlt = callPackage ../development/libraries/mlt/qt-5.nix { }; 152 156