Merge remote-tracking branch 'origin/staging-next' into staging

+2474 -1844
+7
maintainers/maintainer-list.nix
··· 11811 githubId = 863327; 11812 name = "Tyler Benster"; 11813 }; 11814 tcbravo = { 11815 email = "tomas.bravo@protonmail.ch"; 11816 github = "tcbravo";
··· 11811 githubId = 863327; 11812 name = "Tyler Benster"; 11813 }; 11814 + tboerger = { 11815 + email = "thomas@webhippie.de"; 11816 + matrix = "@tboerger:matrix.org"; 11817 + github = "tboerger"; 11818 + githubId = 156964; 11819 + name = "Thomas Boerger"; 11820 + }; 11821 tcbravo = { 11822 email = "tomas.bravo@protonmail.ch"; 11823 github = "tcbravo";
+8 -1
nixos/lib/utils.nix
··· 149 if [[ -h '${output}' ]]; then 150 rm '${output}' 151 fi 152 '' 153 + concatStringsSep 154 "\n" 155 - (imap1 (index: name: "export secret${toString index}=$(<'${secrets.${name}}')") 156 (attrNames secrets)) 157 + "\n" 158 + "${pkgs.jq}/bin/jq >'${output}' '" ··· 164 ' <<'EOF' 165 ${builtins.toJSON set} 166 EOF 167 ''; 168 169 systemdUtils = {
··· 149 if [[ -h '${output}' ]]; then 150 rm '${output}' 151 fi 152 + 153 + inherit_errexit_restore=$(shopt -p inherit_errexit) 154 + shopt -s inherit_errexit 155 '' 156 + concatStringsSep 157 "\n" 158 + (imap1 (index: name: '' 159 + secret${toString index}=$(<'${secrets.${name}}') 160 + export secret${toString index} 161 + '') 162 (attrNames secrets)) 163 + "\n" 164 + "${pkgs.jq}/bin/jq >'${output}' '" ··· 170 ' <<'EOF' 171 ${builtins.toJSON set} 172 EOF 173 + $inherit_errexit_restore 174 ''; 175 176 systemdUtils = {
+13 -9
nixos/modules/services/misc/gitlab.nix
··· 1131 1132 ExecStartPre = let 1133 preStartFullPrivileges = '' 1134 - shopt -s dotglob nullglob 1135 - set -eu 1136 1137 chown --no-dereference '${cfg.user}':'${cfg.group}' '${cfg.statePath}'/* 1138 if [[ -n "$(ls -A '${cfg.statePath}'/config/)" ]]; then ··· 1142 in "+${pkgs.writeShellScript "gitlab-pre-start-full-privileges" preStartFullPrivileges}"; 1143 1144 ExecStart = pkgs.writeShellScript "gitlab-config" '' 1145 - set -eu 1146 1147 umask u=rwx,g=rx,o= 1148 ··· 1171 rm -f '${cfg.statePath}/config/database.yml' 1172 1173 ${if cfg.databasePasswordFile != null then '' 1174 - export db_password="$(<'${cfg.databasePasswordFile}')" 1175 1176 if [[ -z "$db_password" ]]; then 1177 >&2 echo "Database password was an empty string!" ··· 1195 1196 rm -f '${cfg.statePath}/config/secrets.yml' 1197 1198 - export secret="$(<'${cfg.secrets.secretFile}')" 1199 - export db="$(<'${cfg.secrets.dbFile}')" 1200 - export otp="$(<'${cfg.secrets.otpFile}')" 1201 - export jws="$(<'${cfg.secrets.jwsFile}')" 1202 jq -n '{production: {secret_key_base: $ENV.secret, 1203 otp_key_base: $ENV.otp, 1204 db_key_base: $ENV.db, ··· 1232 RemainAfterExit = true; 1233 1234 ExecStart = pkgs.writeShellScript "gitlab-db-config" '' 1235 - set -eu 1236 umask u=rwx,g=rx,o= 1237 1238 initial_root_password="$(<'${cfg.initialRootPasswordFile}')"
··· 1131 1132 ExecStartPre = let 1133 preStartFullPrivileges = '' 1134 + set -o errexit -o pipefail -o nounset 1135 + shopt -s dotglob nullglob inherit_errexit 1136 1137 chown --no-dereference '${cfg.user}':'${cfg.group}' '${cfg.statePath}'/* 1138 if [[ -n "$(ls -A '${cfg.statePath}'/config/)" ]]; then ··· 1142 in "+${pkgs.writeShellScript "gitlab-pre-start-full-privileges" preStartFullPrivileges}"; 1143 1144 ExecStart = pkgs.writeShellScript "gitlab-config" '' 1145 + set -o errexit -o pipefail -o nounset 1146 + shopt -s inherit_errexit 1147 1148 umask u=rwx,g=rx,o= 1149 ··· 1172 rm -f '${cfg.statePath}/config/database.yml' 1173 1174 ${if cfg.databasePasswordFile != null then '' 1175 + db_password="$(<'${cfg.databasePasswordFile}')" 1176 + export db_password 1177 1178 if [[ -z "$db_password" ]]; then 1179 >&2 echo "Database password was an empty string!" ··· 1197 1198 rm -f '${cfg.statePath}/config/secrets.yml' 1199 1200 + secret="$(<'${cfg.secrets.secretFile}')" 1201 + db="$(<'${cfg.secrets.dbFile}')" 1202 + otp="$(<'${cfg.secrets.otpFile}')" 1203 + jws="$(<'${cfg.secrets.jwsFile}')" 1204 + export secret db otp jws 1205 jq -n '{production: {secret_key_base: $ENV.secret, 1206 otp_key_base: $ENV.otp, 1207 db_key_base: $ENV.db, ··· 1235 RemainAfterExit = true; 1236 1237 ExecStart = pkgs.writeShellScript "gitlab-db-config" '' 1238 + set -o errexit -o pipefail -o nounset 1239 + shopt -s inherit_errexit 1240 umask u=rwx,g=rx,o= 1241 1242 initial_root_password="$(<'${cfg.initialRootPasswordFile}')"
+1 -1
nixos/modules/virtualisation/virtualbox-guest.nix
··· 68 SUBSYSTEM=="misc", KERNEL=="vboxguest", TAG+="systemd" 69 ''; 70 } (mkIf cfg.x11 { 71 - services.xserver.videoDrivers = mkOverride 50 [ "vmware" "virtualbox" "modesetting" ]; 72 73 services.xserver.config = 74 ''
··· 68 SUBSYSTEM=="misc", KERNEL=="vboxguest", TAG+="systemd" 69 ''; 70 } (mkIf cfg.x11 { 71 + services.xserver.videoDrivers = [ "vmware" "virtualbox" "modesetting" ]; 72 73 services.xserver.config = 74 ''
+2 -2
pkgs/applications/audio/sidplayfp/default.nix
··· 16 17 stdenv.mkDerivation rec { 18 pname = "sidplayfp"; 19 - version = "2.2.2"; 20 21 src = fetchFromGitHub { 22 owner = "libsidplayfp"; 23 repo = "sidplayfp"; 24 rev = "v${version}"; 25 - sha256 = "sha256-DBZZf3A0AYkeQxQvHGyHHbsQ2EDuxsZnZPbxkWTNcHA="; 26 }; 27 28 nativeBuildInputs = [ autoreconfHook perl pkg-config ];
··· 16 17 stdenv.mkDerivation rec { 18 pname = "sidplayfp"; 19 + version = "2.2.3"; 20 21 src = fetchFromGitHub { 22 owner = "libsidplayfp"; 23 repo = "sidplayfp"; 24 rev = "v${version}"; 25 + sha256 = "sha256-R60Dh19GYM157ysmN8EOJ47eO8a7sdkEEF1TObG1xzk="; 26 }; 27 28 nativeBuildInputs = [ autoreconfHook perl pkg-config ];
+2 -2
pkgs/applications/networking/browsers/brave/default.nix
··· 93 94 stdenv.mkDerivation rec { 95 pname = "brave"; 96 - version = "1.34.81"; 97 98 src = fetchurl { 99 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 100 - sha256 = "bMNk1l3MguQho0vck78U1e3A+/571DyoWSKKerQVE7s="; 101 }; 102 103 dontConfigure = true;
··· 93 94 stdenv.mkDerivation rec { 95 pname = "brave"; 96 + version = "1.35.100"; 97 98 src = fetchurl { 99 url = "https://github.com/brave/brave-browser/releases/download/v${version}/brave-browser_${version}_amd64.deb"; 100 + sha256 = "ToPh2uhWHMR6CS7wtos26iVuyKLXi3ctOP/dFyeosoM="; 101 }; 102 103 dontConfigure = true;
+3 -3
pkgs/applications/networking/cluster/stern/default.nix
··· 4 in 5 buildGoModule rec { 6 pname = "stern"; 7 - version = "1.20.1"; 8 9 src = fetchFromGitHub { 10 owner = "stern"; 11 repo = "stern"; 12 rev = "v${version}"; 13 - sha256 = "sha256-JredVk2hjnhoaJ9bT7D5k35skBNjcEBLa6GgO8dB2+U="; 14 }; 15 16 - vendorSha256 = "sha256-GMAYu/BCmDrCUfc0x9TVw6HXJu+eE8eigZoPqPodM3Q="; 17 18 subPackages = [ "." ]; 19
··· 4 in 5 buildGoModule rec { 6 pname = "stern"; 7 + version = "1.21.0"; 8 9 src = fetchFromGitHub { 10 owner = "stern"; 11 repo = "stern"; 12 rev = "v${version}"; 13 + sha256 = "sha256-+V0mRSjAwhZoiIS/OpZyqa5rvlqU9pGJwmW0QZ3H2g4="; 14 }; 15 16 + vendorSha256 = "sha256-IPHu23/2e6406FELB1Mwegp0C16cFD65mbW5Ah32D4Q="; 17 18 subPackages = [ "." ]; 19
+2 -2
pkgs/applications/networking/cluster/terragrunt/default.nix
··· 2 3 buildGoModule rec { 4 pname = "terragrunt"; 5 - version = "0.36.0"; 6 7 src = fetchFromGitHub { 8 owner = "gruntwork-io"; 9 repo = pname; 10 rev = "v${version}"; 11 - sha256 = "sha256-HUhV6FcLd75ZOPKw9Fl+7KUsSVG7HpQ6X2JZo9C9eeA="; 12 }; 13 14 vendorSha256 = "sha256-tNgEepKqwiqXhmoRCIEg7VJw7Y0TGt+R+6dZzd8aECg=";
··· 2 3 buildGoModule rec { 4 pname = "terragrunt"; 5 + version = "0.36.1"; 6 7 src = fetchFromGitHub { 8 owner = "gruntwork-io"; 9 repo = pname; 10 rev = "v${version}"; 11 + sha256 = "sha256-aGVhxyPm5GtYjJlFNiPNxkPtdGdOiYOSkRRTlzyF/lM="; 12 }; 13 14 vendorSha256 = "sha256-tNgEepKqwiqXhmoRCIEg7VJw7Y0TGt+R+6dZzd8aECg=";
+2 -2
pkgs/applications/science/misc/cwltool/default.nix
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "cwltool"; 10 - version = "3.1.20220124184855"; 11 format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "common-workflow-language"; 15 repo = pname; 16 rev = version; 17 - sha256 = "0b0mxminfijbi3d9sslhwhs8awnagdsx8d2wh9x9ipdpwipihpmb"; 18 }; 19 20 postPatch = ''
··· 7 8 python3.pkgs.buildPythonApplication rec { 9 pname = "cwltool"; 10 + version = "3.1.20220202173120"; 11 format = "setuptools"; 12 13 src = fetchFromGitHub { 14 owner = "common-workflow-language"; 15 repo = pname; 16 rev = version; 17 + sha256 = "sha256-TC0jSnjQTQ7HkEky8BZYJlqNn5uuPOnjGRxALcvumao="; 18 }; 19 20 postPatch = ''
+2 -2
pkgs/applications/terminal-emulators/kitty/default.nix
··· 23 with python3Packages; 24 buildPythonApplication rec { 25 pname = "kitty"; 26 - version = "0.24.1"; 27 format = "other"; 28 29 src = fetchFromGitHub { 30 owner = "kovidgoyal"; 31 repo = "kitty"; 32 rev = "v${version}"; 33 - sha256 = "sha256-WPkyub7CwNXRksUmqiZeznnSqEPFpyHTeFLQ+D4Fb5c="; 34 }; 35 36 buildInputs = [
··· 23 with python3Packages; 24 buildPythonApplication rec { 25 pname = "kitty"; 26 + version = "0.24.2"; 27 format = "other"; 28 29 src = fetchFromGitHub { 30 owner = "kovidgoyal"; 31 repo = "kitty"; 32 rev = "v${version}"; 33 + sha256 = "sha256-nGBdoOueX8tcxXRDqKQ/Q+woT6rNQeLXwy1MJbwizKs="; 34 }; 35 36 buildInputs = [
+2 -2
pkgs/applications/version-management/git-and-tools/stgit/default.nix
··· 12 13 python3Packages.buildPythonApplication rec { 14 pname = "stgit"; 15 - version = "1.4"; 16 17 src = fetchFromGitHub { 18 owner = "stacked-git"; 19 repo = "stgit"; 20 rev = "v${version}"; 21 - sha256 = "0yx81d61kp33h7n0c14wvcrh8vvjjjq4xjh1qwq2sdbmqc43p3hg"; 22 }; 23 24 nativeBuildInputs = [ installShellFiles asciidoc xmlto docbook_xsl docbook_xml_dtd_45 ];
··· 12 13 python3Packages.buildPythonApplication rec { 14 pname = "stgit"; 15 + version = "1.5"; 16 17 src = fetchFromGitHub { 18 owner = "stacked-git"; 19 repo = "stgit"; 20 rev = "v${version}"; 21 + sha256 = "sha256-TsJr2Riygz/DZrn6UZMPvq1tTfvl3dFEZZNq2wVj1Nw="; 22 }; 23 24 nativeBuildInputs = [ installShellFiles asciidoc xmlto docbook_xsl docbook_xml_dtd_45 ];
+275
pkgs/development/compilers/go/1.18.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + , tzdata 5 + , iana-etc 6 + , runCommand 7 + , perl 8 + , which 9 + , pkg-config 10 + , patch 11 + , procps 12 + , pcre 13 + , cacert 14 + , Security 15 + , Foundation 16 + , xcbuild 17 + , mailcap 18 + , runtimeShell 19 + , buildPackages 20 + , pkgsBuildTarget 21 + , callPackage 22 + }: 23 + 24 + let 25 + go_bootstrap = buildPackages.callPackage ./bootstrap.nix { }; 26 + 27 + goBootstrap = runCommand "go-bootstrap" { } '' 28 + mkdir $out 29 + cp -rf ${go_bootstrap}/* $out/ 30 + chmod -R u+w $out 31 + find $out -name "*.c" -delete 32 + cp -rf $out/bin/* $out/share/go/bin/ 33 + ''; 34 + 35 + goarch = platform: { 36 + "i686" = "386"; 37 + "x86_64" = "amd64"; 38 + "aarch64" = "arm64"; 39 + "arm" = "arm"; 40 + "armv5tel" = "arm"; 41 + "armv6l" = "arm"; 42 + "armv7l" = "arm"; 43 + "mips" = "mips"; 44 + "mipsel" = "mipsle"; 45 + "riscv64" = "riscv64"; 46 + "s390x" = "s390x"; 47 + "powerpc64le" = "ppc64le"; 48 + }.${platform.parsed.cpu.name} or (throw "Unsupported system"); 49 + 50 + # We need a target compiler which is still runnable at build time, 51 + # to handle the cross-building case where build != host == target 52 + targetCC = pkgsBuildTarget.targetPackages.stdenv.cc; 53 + in 54 + 55 + stdenv.mkDerivation rec { 56 + pname = "go"; 57 + version = "1.18beta1"; 58 + 59 + src = fetchurl { 60 + url = "https://go.dev/dl/go${version}.src.tar.gz"; 61 + sha256 = "sha256-QYwCjbFGmctbLUkHrTpBnXn3ibMZFu+HZIZ+SnjmU6E="; 62 + }; 63 + 64 + # perl is used for testing go vet 65 + nativeBuildInputs = [ perl which pkg-config patch procps ]; 66 + buildInputs = [ cacert pcre ] 67 + ++ lib.optionals stdenv.isLinux [ stdenv.cc.libc.out ] 68 + ++ lib.optionals (stdenv.hostPlatform.libc == "glibc") [ stdenv.cc.libc.static ]; 69 + 70 + propagatedBuildInputs = lib.optionals stdenv.isDarwin [ xcbuild ]; 71 + 72 + depsTargetTargetPropagated = lib.optionals stdenv.isDarwin [ Security Foundation ]; 73 + 74 + hardeningDisable = [ "all" ]; 75 + 76 + prePatch = '' 77 + patchShebangs ./ # replace /bin/bash 78 + 79 + # This source produces shell script at run time, 80 + # and thus it is not corrected by patchShebangs. 81 + substituteInPlace misc/cgo/testcarchive/carchive_test.go \ 82 + --replace '#!/usr/bin/env bash' '#!${runtimeShell}' 83 + 84 + # Patch the mimetype database location which is missing on NixOS. 85 + # but also allow static binaries built with NixOS to run outside nix 86 + sed -i 's,\"/etc/mime.types,"${mailcap}/etc/mime.types\"\,\n\t&,' src/mime/type_unix.go 87 + 88 + # Disabling the 'os/http/net' tests (they want files not available in 89 + # chroot builds) 90 + rm src/net/{listen,parse}_test.go 91 + rm src/syscall/exec_linux_test.go 92 + 93 + # !!! substituteInPlace does not seems to be effective. 94 + # The os test wants to read files in an existing path. Just don't let it be /usr/bin. 95 + sed -i 's,/usr/bin,'"`pwd`", src/os/os_test.go 96 + sed -i 's,/bin/pwd,'"`type -P pwd`", src/os/os_test.go 97 + # Fails on aarch64 98 + sed -i '/TestFallocate/aif true \{ return\; \}' src/cmd/link/internal/ld/fallocate_test.go 99 + # Skip this test since ssl patches mess it up. 100 + sed -i '/TestLoadSystemCertsLoadColonSeparatedDirs/aif true \{ return\; \}' src/crypto/x509/root_unix_test.go 101 + # Disable another PIE test which breaks. 102 + sed -i '/TestTrivialPIE/aif true \{ return\; \}' misc/cgo/testshared/shared_test.go 103 + # Disable the BuildModePie test 104 + sed -i '/TestBuildmodePIE/aif true \{ return\; \}' src/cmd/go/go_test.go 105 + # Disable the unix socket test 106 + sed -i '/TestShutdownUnix/aif true \{ return\; \}' src/net/net_test.go 107 + # Disable the hostname test 108 + sed -i '/TestHostname/aif true \{ return\; \}' src/os/os_test.go 109 + # ParseInLocation fails the test 110 + sed -i '/TestParseInSydney/aif true \{ return\; \}' src/time/format_test.go 111 + # Remove the api check as it never worked 112 + sed -i '/src\/cmd\/api\/run.go/ireturn nil' src/cmd/dist/test.go 113 + # Remove the coverage test as we have removed this utility 114 + sed -i '/TestCoverageWithCgo/aif true \{ return\; \}' src/cmd/go/go_test.go 115 + # Remove the timezone naming test 116 + sed -i '/TestLoadFixed/aif true \{ return\; \}' src/time/time_test.go 117 + # Remove disable setgid test 118 + sed -i '/TestRespectSetgidDir/aif true \{ return\; \}' src/cmd/go/internal/work/build_test.go 119 + # Remove cert tests that conflict with NixOS's cert resolution 120 + sed -i '/TestEnvVars/aif true \{ return\; \}' src/crypto/x509/root_unix_test.go 121 + # TestWritevError hangs sometimes 122 + sed -i '/TestWritevError/aif true \{ return\; \}' src/net/writev_test.go 123 + # TestVariousDeadlines fails sometimes 124 + sed -i '/TestVariousDeadlines/aif true \{ return\; \}' src/net/timeout_test.go 125 + 126 + sed -i 's,/etc/protocols,${iana-etc}/etc/protocols,' src/net/lookup_unix.go 127 + sed -i 's,/etc/services,${iana-etc}/etc/services,' src/net/port_unix.go 128 + 129 + # Disable cgo lookup tests not works, they depend on resolver 130 + rm src/net/cgo_unix_test.go 131 + 132 + # prepend the nix path to the zoneinfo files but also leave the original value for static binaries 133 + # that run outside a nix server 134 + sed -i 's,\"/usr/share/zoneinfo/,"${tzdata}/share/zoneinfo/\"\,\n\t&,' src/time/zoneinfo_unix.go 135 + 136 + '' + lib.optionalString stdenv.isAarch32 '' 137 + echo '#!${runtimeShell}' > misc/cgo/testplugin/test.bash 138 + '' + lib.optionalString stdenv.isDarwin '' 139 + substituteInPlace src/race.bash --replace \ 140 + "sysctl machdep.cpu.extfeatures | grep -qv EM64T" true 141 + sed -i 's,strings.Contains(.*sysctl.*,true {,' src/cmd/dist/util.go 142 + sed -i 's,"/etc","'"$TMPDIR"'",' src/os/os_test.go 143 + sed -i 's,/_go_os_test,'"$TMPDIR"'/_go_os_test,' src/os/path_test.go 144 + 145 + sed -i '/TestChdirAndGetwd/aif true \{ return\; \}' src/os/os_test.go 146 + sed -i '/TestCredentialNoSetGroups/aif true \{ return\; \}' src/os/exec/exec_posix_test.go 147 + sed -i '/TestRead0/aif true \{ return\; \}' src/os/os_test.go 148 + sed -i '/TestSystemRoots/aif true \{ return\; \}' src/crypto/x509/root_darwin_test.go 149 + 150 + sed -i '/TestGoInstallRebuildsStalePackagesInOtherGOPATH/aif true \{ return\; \}' src/cmd/go/go_test.go 151 + sed -i '/TestBuildDashIInstallsDependencies/aif true \{ return\; \}' src/cmd/go/go_test.go 152 + 153 + sed -i '/TestDisasmExtld/aif true \{ return\; \}' src/cmd/objdump/objdump_test.go 154 + 155 + sed -i 's/unrecognized/unknown/' src/cmd/link/internal/ld/lib.go 156 + 157 + # TestCurrent fails because Current is not implemented on Darwin 158 + sed -i 's/TestCurrent/testCurrent/g' src/os/user/user_test.go 159 + sed -i 's/TestLookup/testLookup/g' src/os/user/user_test.go 160 + 161 + touch $TMPDIR/group $TMPDIR/hosts $TMPDIR/passwd 162 + ''; 163 + 164 + patches = [ 165 + ./remove-tools-1.11.patch 166 + ./ssl-cert-file-1.16.patch 167 + ./remove-test-pie-1.15.patch 168 + ./creds-test.patch 169 + ./skip-chown-tests-1.16.patch 170 + ./skip-external-network-tests-1.16.patch 171 + ./skip-nohup-tests.patch 172 + ./skip-cgo-tests-1.15.patch 173 + ./go_no_vendor_checks-1.16.patch 174 + ]; 175 + 176 + postPatch = '' 177 + find . -name '*.orig' -exec rm {} ';' 178 + ''; 179 + 180 + GOOS = stdenv.targetPlatform.parsed.kernel.name; 181 + GOARCH = goarch stdenv.targetPlatform; 182 + # GOHOSTOS/GOHOSTARCH must match the building system, not the host system. 183 + # Go will nevertheless build a for host system that we will copy over in 184 + # the install phase. 185 + GOHOSTOS = stdenv.buildPlatform.parsed.kernel.name; 186 + GOHOSTARCH = goarch stdenv.buildPlatform; 187 + 188 + # {CC,CXX}_FOR_TARGET must be only set for cross compilation case as go expect those 189 + # to be different from CC/CXX 190 + CC_FOR_TARGET = 191 + if (stdenv.buildPlatform != stdenv.targetPlatform) then 192 + "${targetCC}/bin/${targetCC.targetPrefix}cc" 193 + else 194 + null; 195 + CXX_FOR_TARGET = 196 + if (stdenv.buildPlatform != stdenv.targetPlatform) then 197 + "${targetCC}/bin/${targetCC.targetPrefix}c++" 198 + else 199 + null; 200 + 201 + GOARM = toString (lib.intersectLists [ (stdenv.hostPlatform.parsed.cpu.version or "") ] [ "5" "6" "7" ]); 202 + GO386 = "softfloat"; # from Arch: don't assume sse2 on i686 203 + CGO_ENABLED = 1; 204 + # Hopefully avoids test timeouts on Hydra 205 + GO_TEST_TIMEOUT_SCALE = 3; 206 + 207 + # Indicate that we are running on build infrastructure 208 + # Some tests assume things like home directories and users exists 209 + GO_BUILDER_NAME = "nix"; 210 + 211 + GOROOT_BOOTSTRAP = "${goBootstrap}/share/go"; 212 + 213 + postConfigure = '' 214 + export GOCACHE=$TMPDIR/go-cache 215 + # this is compiled into the binary 216 + export GOROOT_FINAL=$out/share/go 217 + 218 + export PATH=$(pwd)/bin:$PATH 219 + 220 + ${lib.optionalString (stdenv.buildPlatform != stdenv.targetPlatform) '' 221 + # Independent from host/target, CC should produce code for the building system. 222 + # We only set it when cross-compiling. 223 + export CC=${buildPackages.stdenv.cc}/bin/cc 224 + ''} 225 + ulimit -a 226 + ''; 227 + 228 + postBuild = '' 229 + (cd src && ./make.bash) 230 + ''; 231 + 232 + doCheck = stdenv.hostPlatform == stdenv.targetPlatform && !stdenv.isDarwin; 233 + 234 + checkPhase = '' 235 + runHook preCheck 236 + (cd src && HOME=$TMPDIR GOCACHE=$TMPDIR/go-cache ./run.bash --no-rebuild) 237 + runHook postCheck 238 + ''; 239 + 240 + preInstall = '' 241 + rm -r pkg/obj 242 + # Contains the wrong perl shebang when cross compiling, 243 + # since it is not used for anything we can deleted as well. 244 + rm src/regexp/syntax/make_perl_groups.pl 245 + '' + (if (stdenv.buildPlatform != stdenv.hostPlatform) then '' 246 + mv bin/*_*/* bin 247 + rmdir bin/*_* 248 + ${lib.optionalString (!(GOHOSTARCH == GOARCH && GOOS == GOHOSTOS)) '' 249 + rm -rf pkg/${GOHOSTOS}_${GOHOSTARCH} pkg/tool/${GOHOSTOS}_${GOHOSTARCH} 250 + ''} 251 + '' else if (stdenv.hostPlatform != stdenv.targetPlatform) then '' 252 + rm -rf bin/*_* 253 + ${lib.optionalString (!(GOHOSTARCH == GOARCH && GOOS == GOHOSTOS)) '' 254 + rm -rf pkg/${GOOS}_${GOARCH} pkg/tool/${GOOS}_${GOARCH} 255 + ''} 256 + '' else ""); 257 + 258 + installPhase = '' 259 + runHook preInstall 260 + mkdir -p $GOROOT_FINAL 261 + cp -a bin pkg src lib misc api doc $GOROOT_FINAL 262 + ln -s $GOROOT_FINAL/bin $out/bin 263 + runHook postInstall 264 + ''; 265 + 266 + disallowedReferences = [ goBootstrap ]; 267 + 268 + meta = with lib; { 269 + homepage = "https://go.dev/"; 270 + description = "The Go Programming language"; 271 + license = licenses.bsd3; 272 + maintainers = teams.golang.members; 273 + platforms = platforms.linux ++ platforms.darwin; 274 + }; 275 + }
+42
pkgs/development/compilers/go/skip-chown-tests-1.16.patch
···
··· 1 + From 9a6718a6355d89b73011fbd1eb1bba8dcfa021e6 Mon Sep 17 00:00:00 2001 2 + From: regnat <rg@regnat.ovh> 3 + Date: Wed, 3 Nov 2021 10:17:28 +0100 4 + Subject: [PATCH] Disable the chown tests 5 + 6 + See https://github.com/golang/go/issues/42525 and 7 + https://github.com/NixOS/nix/issues/3245 8 + --- 9 + os/os_unix_test.go | 3 +++ 10 + 1 file changed, 3 insertions(+) 11 + 12 + diff --git a/os/os_unix_test.go b/os/os_unix_test.go 13 + index 51693fd..0936542 100644 14 + --- a/src/os/os_unix_test.go 15 + +++ b/src/os/os_unix_test.go 16 + @@ -40,6 +40,7 @@ func checkUidGid(t *testing.T, path string, uid, gid int) { 17 + } 18 + 19 + func TestChown(t *testing.T) { 20 + + t.Skipf("https://github.com/golang/go/issues/42525") 21 + // Use TempDir() to make sure we're on a local file system, 22 + // so that the group ids returned by Getgroups will be allowed 23 + // on the file. On NFS, the Getgroups groups are 24 + @@ -83,6 +84,7 @@ func TestChown(t *testing.T) { 25 + } 26 + 27 + func TestFileChown(t *testing.T) { 28 + + t.Skipf("https://github.com/golang/go/issues/42525") 29 + // Use TempDir() to make sure we're on a local file system, 30 + // so that the group ids returned by Getgroups will be allowed 31 + // on the file. On NFS, the Getgroups groups are 32 + @@ -126,6 +128,7 @@ func TestFileChown(t *testing.T) { 33 + } 34 + 35 + func TestLchown(t *testing.T) { 36 + + t.Skipf("https://github.com/golang/go/issues/42525") 37 + // Use TempDir() to make sure we're on a local file system, 38 + // so that the group ids returned by Getgroups will be allowed 39 + // on the file. On NFS, the Getgroups groups are 40 + -- 41 + 2.31.1 42 +
+4 -7
pkgs/development/libraries/libnatpmp/default.nix
··· 10 sha256 = "1c1n8n7mp0amsd6vkz32n8zj3vnsckv308bb7na0dg0r8969rap1"; 11 }; 12 13 - postPatch = '' 14 - substituteInPlace Makefile \ 15 - --replace "gcc" "${stdenv.cc.targetPrefix}cc" \ 16 - --replace "ar" "${stdenv.cc.targetPrefix}ar" 17 - ''; 18 - 19 - makeFlags = [ "INSTALLPREFIX=$(out)" ]; 20 21 postFixup = '' 22 chmod +x $out/lib/*
··· 10 sha256 = "1c1n8n7mp0amsd6vkz32n8zj3vnsckv308bb7na0dg0r8969rap1"; 11 }; 12 13 + makeFlags = [ 14 + "INSTALLPREFIX=$(out)" 15 + "CC:=$(CC)" 16 + ]; 17 18 postFixup = '' 19 chmod +x $out/lib/*
+2 -2
pkgs/development/libraries/rocksdb/default.nix
··· 15 16 stdenv.mkDerivation rec { 17 pname = "rocksdb"; 18 - version = "6.27.3"; 19 20 src = fetchFromGitHub { 21 owner = "facebook"; 22 repo = pname; 23 rev = "v${version}"; 24 - sha256 = "sha256-s3vBW/vN6lUvOp3vlx/Wo2ZrzobZ2s8MHujFouSU2NM="; 25 }; 26 27 nativeBuildInputs = [ cmake ninja ];
··· 15 16 stdenv.mkDerivation rec { 17 pname = "rocksdb"; 18 + version = "6.28.2"; 19 20 src = fetchFromGitHub { 21 owner = "facebook"; 22 repo = pname; 23 rev = "v${version}"; 24 + sha256 = "sha256-0T/ANHTRzk0ymezRQbvJt6aL350Z004gcj4JapAyAnQ="; 25 }; 26 27 nativeBuildInputs = [ cmake ninja ];
+1 -1
pkgs/development/ocaml-modules/webbrowser/default.nix
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 - name = "ocaml${ocaml.version}-webbrowser-${version}"; 7 version = "0.6.1"; 8 src = fetchurl { 9 url = "https://erratique.ch/software/webbrowser/releases/webbrowser-${version}.tbz";
··· 3 }: 4 5 stdenv.mkDerivation rec { 6 + pname = "ocaml${ocaml.version}-webbrowser"; 7 version = "0.6.1"; 8 src = fetchurl { 9 url = "https://erratique.ch/software/webbrowser/releases/webbrowser-${version}.tbz";
+43
pkgs/development/python-modules/adax-local/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , bleak 4 + , buildPythonPackage 5 + , fetchFromGitHub 6 + , async-timeout 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "adax-local"; 12 + version = "0.1.3"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "Danielhiversen"; 19 + repo = "pyAdaxLocal"; 20 + rev = version; 21 + hash = "sha256-SGVXzSjtYNRVJN5fUjjskko55/e0L3P8aB90G4HuBOE="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + bleak 27 + async-timeout 28 + ]; 29 + 30 + # Module has no tests 31 + doCheck = false; 32 + 33 + pythonImportsCheck = [ 34 + "adax_local" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Module for local access to Adax"; 39 + homepage = "https://github.com/Danielhiversen/pyAdaxLocal"; 40 + license = with licenses; [ mit ]; 41 + maintainers = with maintainers; [ fab ]; 42 + }; 43 + }
+39
pkgs/development/python-modules/aioaseko/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aioaseko"; 10 + version = "0.0.1"; 11 + format = "pyproject"; 12 + 13 + disabled = pythonOlder "3.8"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "milanmeu"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + hash = "sha256-dfU2J4aDKNR+GoEmdq/NhX4Mrmm9tmCkse1tb+V5EFQ="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + aiohttp 24 + ]; 25 + 26 + # Module has no tests 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ 30 + "aioaseko" 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "Module to interact with the Aseko Pool Live API"; 35 + homepage = "https://github.com/milanmeu/aioaseko"; 36 + license = with licenses; [ lgpl3Plus ]; 37 + maintainers = with maintainers; [ fab ]; 38 + }; 39 + }
+44
pkgs/development/python-modules/aiooncue/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aiooncue"; 10 + version = "0.3.2"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "bdraco"; 17 + repo = pname; 18 + rev = version; 19 + hash = "sha256-6GnXuYpggUMisfeOnl52xvWFIZRV+oCwsFKAjPwscTU="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + aiohttp 24 + ]; 25 + 26 + # Module doesn't have tests 27 + doCheck = false; 28 + 29 + postPatch = '' 30 + substituteInPlace setup.py \ 31 + --replace '"pytest-runner",' "" 32 + ''; 33 + 34 + pythonImportsCheck = [ 35 + "aiooncue" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Module to interact with the Kohler Oncue API"; 40 + homepage = "https://github.com/bdraco/aiooncue"; 41 + license = with licenses; [ asl20 ]; 42 + maintainers = with maintainers; [ fab ]; 43 + }; 44 + }
+39
pkgs/development/python-modules/aiowebostv/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pythonOlder 5 + , websockets 6 + }: 7 + 8 + buildPythonPackage rec { 9 + pname = "aiowebostv"; 10 + version = "0.1.2"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.8"; 14 + 15 + src = fetchFromGitHub { 16 + owner = "home-assistant-libs"; 17 + repo = pname; 18 + rev = "v${version}"; 19 + hash = "sha256-YSrttPoU5XQ9tqNxhHBUqZqKaEZdUdYYJ2CsSREVbbg="; 20 + }; 21 + 22 + propagatedBuildInputs = [ 23 + websockets 24 + ]; 25 + 26 + # Module doesn't have tests 27 + doCheck = false; 28 + 29 + pythonImportsCheck = [ 30 + "aiowebostv" 31 + ]; 32 + 33 + meta = with lib; { 34 + description = "Module to interact with LG webOS based TV devices"; 35 + homepage = "https://github.com/home-assistant-libs/aiowebostv"; 36 + license = with licenses; [ asl20 ]; 37 + maintainers = with maintainers; [ fab ]; 38 + }; 39 + }
+43
pkgs/development/python-modules/aurorapy/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitLab 4 + , future 5 + , pyserial 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "aurorapy"; 12 + version = "0.2.6"; 13 + format = "pyproject"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitLab { 18 + owner = "energievalsabbia"; 19 + repo = pname; 20 + rev = version; 21 + hash = "sha256-DMlzzLe94dbeHjESmLc045v7vQ//IEsngAv7TeVznHE="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + future 26 + pyserial 27 + ]; 28 + 29 + checkInputs = [ 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "aurorapy" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Implementation of the communication protocol for Power-One Aurora inverters"; 39 + homepage = "https://gitlab.com/energievalsabbia/aurorapy"; 40 + license = with licenses; [ mit ]; 41 + maintainers = with maintainers; [ fab ]; 42 + }; 43 + }
+2 -2
pkgs/development/python-modules/awscrt/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "awscrt"; 5 - version = "0.13.0"; 6 7 buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ]; 8 ··· 22 23 src = fetchPypi { 24 inherit pname version; 25 - sha256 = "f8c46335bdf94a5e48d3df2018edbd07c4c903635501c62c1bea4153f407531a"; 26 }; 27 28 meta = with lib; {
··· 2 3 buildPythonPackage rec { 4 pname = "awscrt"; 5 + version = "0.13.1"; 6 7 buildInputs = lib.optionals stdenv.isDarwin [ CoreFoundation Security ]; 8 ··· 22 23 src = fetchPypi { 24 inherit pname version; 25 + sha256 = "sha256-1Qx3fcZ0I9RONLpFPDyXHkUEAF09KBgXV64NvepmDm8="; 26 }; 27 28 meta = with lib; {
+2 -2
pkgs/development/python-modules/azure-batch/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "azure-batch"; 11 - version = "11.0.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 - sha256 = "ce5fdb0ec962eddfe85cd82205e9177cb0bbdb445265746e38b3bbbf1f16dc73"; 17 }; 18 19 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "azure-batch"; 11 + version = "12.0.0"; 12 13 src = fetchPypi { 14 inherit pname version; 15 extension = "zip"; 16 + sha256 = "sha256-GpseF4mEp79JWvZ7zOUfDbHkqKlXr7KeM1VKFKlnTes="; 17 }; 18 19 propagatedBuildInputs = [
+32
pkgs/development/python-modules/circuit-webhook/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pythonOlder 5 + }: 6 + 7 + buildPythonPackage rec { 8 + pname = "circuit-webhook"; 9 + version = "1.0.1"; 10 + format = "setuptools"; 11 + 12 + disabled = pythonOlder "3.8"; 13 + 14 + src = fetchPypi { 15 + inherit pname version; 16 + hash = "sha256-NhePKBfzdkw7iVHmVrOxf8ZcQrb1Sq2xMIfu4P9+Ppw="; 17 + }; 18 + 19 + # Module has no tests 20 + doCheck = false; 21 + 22 + pythonImportsCheck = [ 23 + "circuit_webhook" 24 + ]; 25 + 26 + meta = with lib; { 27 + description = "Module for Unify Circuit API webhooks"; 28 + homepage = "https://github.com/braam/unify/tree/master/circuit-webhook-python"; 29 + license = licenses.mit; 30 + maintainers = with maintainers; [ fab ]; 31 + }; 32 + }
+2 -2
pkgs/development/python-modules/deezer-python/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "deezer-python"; 16 - version = "5.0.1"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.6"; ··· 22 owner = "browniebroke"; 23 repo = pname; 24 rev = "v${version}"; 25 - sha256 = "sha256-dL1d1bF+hHIQrsyk6t1Afj22yNC/cIpuID5Ajgal5bA="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "deezer-python"; 16 + version = "5.1.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.6"; ··· 22 owner = "browniebroke"; 23 repo = pname; 24 rev = "v${version}"; 25 + sha256 = "sha256-hBZBbREPxfAkGf2KRZtO3BpscFGlYiecQjM5l1/Edo0="; 26 }; 27 28 nativeBuildInputs = [
+2 -2
pkgs/development/python-modules/django_classytags/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "django-classy-tags"; 10 - version = "3.0.0"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "2ef8b82b4f7d77d4fd152b25c45128d926e7a5840d862f2ecd3e5faf6acbe343"; 15 }; 16 17 propagatedBuildInputs = [ django six ];
··· 7 8 buildPythonPackage rec { 9 pname = "django-classy-tags"; 10 + version = "3.0.1"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-0iK0VQKsmeVQpWZmeDnvrvlUucc2amST8UOGKqvqyHg="; 15 }; 16 17 propagatedBuildInputs = [ django six ];
+2 -2
pkgs/development/python-modules/filetype/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "filetype"; 9 - version = "1.0.9"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "7124e1bc6a97ffc7c6bead5b8fb2e129baf312a9e60db5772bc27c741799d475"; 14 }; 15 16 checkPhase = ''
··· 6 7 buildPythonPackage rec { 8 pname = "filetype"; 9 + version = "1.0.10"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-MjoTUAcxtsZaJTvDkwu86aVt+6cekLYP/ZaKtp2a6Tc="; 14 }; 15 16 checkPhase = ''
-5
pkgs/development/python-modules/glances-api/default.nix
··· 37 pytestCheckHook 38 ]; 39 40 - postPatch = '' 41 - substituteInPlace pyproject.toml \ 42 - --replace 'httpx = ">=0.20,<1"' 'httpx = ">=0.19,<1"' 43 - ''; 44 - 45 pythonImportsCheck = [ 46 "glances_api" 47 ];
··· 37 pytestCheckHook 38 ]; 39 40 pythonImportsCheck = [ 41 "glances_api" 42 ];
+2 -12
pkgs/development/python-modules/homematicip/default.nix
··· 5 , async-timeout 6 , buildPythonPackage 7 , fetchFromGitHub 8 - , fetchpatch 9 , pytestCheckHook 10 , pythonAtLeast 11 , pythonOlder ··· 18 19 buildPythonPackage rec { 20 pname = "homematicip"; 21 - version = "1.0.1"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.6"; ··· 27 owner = "coreGreenberet"; 28 repo = "homematicip-rest-api"; 29 rev = version; 30 - sha256 = "008snxx9ijpi1zr1pi1v4a6g74j821hyw0khs9lmi08v2mcabm36"; 31 }; 32 - 33 - patches = [ 34 - (fetchpatch { 35 - # Drop loop kwarg from async_timeout.timeout 36 - # https://github.com/coreGreenberet/homematicip-rest-api/pull/424 37 - url = "https://github.com/coreGreenberet/homematicip-rest-api/commit/90efb335667e3d462b7f9ef113d2e0b8bb4e96b4.patch"; 38 - sha256 = "0f2bbs0666mf6sc7p4n8fwh29yjilkq36qf5pn0waf6iqdzxqwih"; 39 - }) 40 - ]; 41 42 propagatedBuildInputs = [ 43 aenum
··· 5 , async-timeout 6 , buildPythonPackage 7 , fetchFromGitHub 8 , pytestCheckHook 9 , pythonAtLeast 10 , pythonOlder ··· 17 18 buildPythonPackage rec { 19 pname = "homematicip"; 20 + version = "1.0.2"; 21 format = "setuptools"; 22 23 disabled = pythonOlder "3.6"; ··· 26 owner = "coreGreenberet"; 27 repo = "homematicip-rest-api"; 28 rev = version; 29 + sha256 = "sha256-j2ansly05auevlcDY5TFz6PZR/pNIGIbtkJuU8L5b0o="; 30 }; 31 32 propagatedBuildInputs = [ 33 aenum
+1 -1
pkgs/development/python-modules/i-pi/default.nix
··· 3 } : 4 5 buildPythonPackage rec { 6 - name = "i-pi"; 7 version = "2.4.0"; 8 9 src = fetchFromGitHub {
··· 3 } : 4 5 buildPythonPackage rec { 6 + pname = "i-pi"; 7 version = "2.4.0"; 8 9 src = fetchFromGitHub {
+45
pkgs/development/python-modules/intellifire4py/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pydantic 6 + , pytestCheckHook 7 + , pythonOlder 8 + , requests 9 + }: 10 + 11 + buildPythonPackage rec { 12 + pname = "intellifire4py"; 13 + version = "0.5"; 14 + format = "setuptools"; 15 + 16 + disabled = pythonOlder "3.7"; 17 + 18 + src = fetchFromGitHub { 19 + owner = "jeeftor"; 20 + repo = pname; 21 + rev = version; 22 + hash = "sha256-ESNFTlzwxv0SZA/vVU3aIjkt5nCX3D4VbwIRNSzMIK4="; 23 + }; 24 + 25 + propagatedBuildInputs = [ 26 + aiohttp 27 + pydantic 28 + requests 29 + ]; 30 + 31 + checkInputs = [ 32 + pytestCheckHook 33 + ]; 34 + 35 + pythonImportsCheck = [ 36 + "intellifire4py" 37 + ]; 38 + 39 + meta = with lib; { 40 + description = "Module to read Intellifire fireplace status data"; 41 + homepage = "https://github.com/jeeftor/intellifire4py"; 42 + license = with licenses; [ mit ]; 43 + maintainers = with maintainers; [ fab ]; 44 + }; 45 + }
+2 -2
pkgs/development/python-modules/limnoria/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "limnoria"; 18 - version = "2022.1.1.post1"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; 22 23 src = fetchPypi { 24 inherit pname version; 25 - hash = "sha256-9p06yD95emBOFKtTZMVR/3ySAB24pB3QRmzVEnqeb9U="; 26 }; 27 28 propagatedBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "limnoria"; 18 + version = "2022.1.29"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; 22 23 src = fetchPypi { 24 inherit pname version; 25 + hash = "sha256-fBIWmFo3uTswLfxmSaYixALeJ89HCpLcooldw1UZwCw="; 26 }; 27 28 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/mautrix/default.nix
··· 4 5 buildPythonPackage rec { 6 pname = "mautrix"; 7 - version = "0.14.8"; 8 9 src = fetchPypi { 10 inherit pname version; 11 - sha256 = "sha256-0GB6LDsZlWmNS3O01nHWu20JCgSptyih7iBjbEFoZaE="; 12 }; 13 14 propagatedBuildInputs = [
··· 4 5 buildPythonPackage rec { 6 pname = "mautrix"; 7 + version = "0.14.10"; 8 9 src = fetchPypi { 10 inherit pname version; 11 + sha256 = "sha256-mO0bKUepIjb50UKEOvFIaepHAskehkBajevsTRST8e4="; 12 }; 13 14 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/meshtastic/default.nix
··· 18 19 buildPythonPackage rec { 20 pname = "meshtastic"; 21 - version = "1.2.80"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.6"; ··· 27 owner = "meshtastic"; 28 repo = "Meshtastic-python"; 29 rev = version; 30 - sha256 = "sha256-w1pFTp/34o+fJS99SFXKWpFaaD7XrgRh723smjaoXzE="; 31 }; 32 33 propagatedBuildInputs = [
··· 18 19 buildPythonPackage rec { 20 pname = "meshtastic"; 21 + version = "1.2.81"; 22 format = "setuptools"; 23 24 disabled = pythonOlder "3.6"; ··· 27 owner = "meshtastic"; 28 repo = "Meshtastic-python"; 29 rev = version; 30 + sha256 = "sha256-ITE3gtcvXMisARlmnhlSzkZr/tGLiDq8aSO6d6jmlOw="; 31 }; 32 33 propagatedBuildInputs = [
+88 -33
pkgs/development/python-modules/papis/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub, xdg-utils 2 - , requests, filetype, pyparsing, configparser, arxiv2bib 3 - , pyyaml, chardet, beautifulsoup4, colorama, bibtexparser 4 - , click, python-slugify, habanero, isbnlib, typing-extensions 5 - , prompt-toolkit, pygments, stevedore, tqdm, lxml 6 - , python-doi, isPy3k, pytest-cov 7 - #, optional, dependencies 8 - , whoosh, pytest 9 , stdenv 10 }: 11 12 buildPythonPackage rec { 13 pname = "papis"; 14 version = "0.11.1"; 15 - disabled = !isPy3k; 16 17 - # Missing tests on Pypi 18 src = fetchFromGitHub { 19 owner = "papis"; 20 repo = pname; 21 rev = "v${version}"; 22 - sha256 = "0bbkjyw1fsvvp0380l404h2lys8ib4xqga5s6401k1y1hld28nl6"; 23 }; 24 25 propagatedBuildInputs = [ 26 - requests filetype pyparsing configparser arxiv2bib 27 - pyyaml chardet beautifulsoup4 colorama bibtexparser 28 - click python-slugify habanero isbnlib 29 - prompt-toolkit pygments typing-extensions 30 - stevedore tqdm lxml 31 python-doi 32 - # optional dependencies 33 whoosh 34 ]; 35 36 postPatch = '' 37 substituteInPlace setup.py \ 38 - --replace "lxml<=4.3.5" "lxml~=4.3" \ 39 - --replace "isbnlib>=3.9.1,<3.10" "isbnlib~=3.9" \ 40 - --replace "python-slugify>=1.2.6,<4" "python-slugify" 41 ''; 42 43 - doCheck = !stdenv.isDarwin; 44 45 checkInputs = ([ 46 - pytest pytest-cov 47 ]) ++ [ 48 xdg-utils 49 ]; 50 51 - # most of the downloader tests and 4 other tests require a network connection 52 - # test_export_yaml and test_citations check for the exact output produced by pyyaml 3.x and 53 - # fail with 5.x 54 - checkPhase = '' 55 - HOME=$(mktemp -d) pytest papis tests --ignore tests/downloaders \ 56 - -k "not test_get_data and not test_doi_to_data and not test_general and not get_document_url \ 57 - and not test_validate_arxivid and not test_downloader_getter and not match" 58 ''; 59 60 - meta = { 61 description = "Powerful command-line document and bibliography manager"; 62 - homepage = "https://papis.readthedocs.io/en/latest/"; 63 - license = lib.licenses.gpl3; 64 - maintainers = with lib.maintainers; [ nico202 teto ]; 65 }; 66 }
··· 1 + { lib 2 , stdenv 3 + , arxiv2bib 4 + , beautifulsoup4 5 + , bibtexparser 6 + , buildPythonPackage 7 + , chardet 8 + , click 9 + , colorama 10 + , configparser 11 + , fetchFromGitHub 12 + , filetype 13 + , habanero 14 + , isbnlib 15 + , lxml 16 + , prompt-toolkit 17 + , pygments 18 + , pyparsing 19 + , pytestCheckHook 20 + , python-doi 21 + , python-slugify 22 + , pythonAtLeast 23 + , pythonOlder 24 + , pyyaml 25 + , requests 26 + , stevedore 27 + , tqdm 28 + , typing-extensions 29 + , whoosh 30 + , xdg-utils 31 }: 32 33 buildPythonPackage rec { 34 pname = "papis"; 35 version = "0.11.1"; 36 + format = "setuptools"; 37 + 38 + disabled = pythonOlder "3.7"; 39 40 src = fetchFromGitHub { 41 owner = "papis"; 42 repo = pname; 43 rev = "v${version}"; 44 + hash = "sha256-hlokGoXBhxkAMbqohztZEWlPBSSAUIAGuHtrF7iXcy0="; 45 }; 46 47 propagatedBuildInputs = [ 48 + arxiv2bib 49 + beautifulsoup4 50 + bibtexparser 51 + chardet 52 + click 53 + colorama 54 + configparser 55 + filetype 56 + habanero 57 + isbnlib 58 + lxml 59 + prompt-toolkit 60 + pygments 61 + pyparsing 62 python-doi 63 + python-slugify 64 + pyyaml 65 + requests 66 + stevedore 67 + tqdm 68 + typing-extensions 69 whoosh 70 ]; 71 72 postPatch = '' 73 substituteInPlace setup.py \ 74 + --replace "isbnlib>=3.9.1,<3.10" "isbnlib>=3.9" 75 + substituteInPlace setup.cfg \ 76 + --replace "--cov=papis" "" 77 ''; 78 79 + # Tests are failing on Python > 3.9 80 + doCheck = !stdenv.isDarwin && !(pythonAtLeast "3.10"); 81 82 checkInputs = ([ 83 + pytestCheckHook 84 ]) ++ [ 85 xdg-utils 86 ]; 87 88 + preCheck = '' 89 + export HOME=$(mktemp -d); 90 ''; 91 92 + pytestFlagsArray = [ 93 + "papis tests" 94 + ]; 95 + 96 + disabledTestPaths = [ 97 + "tests/downloaders" 98 + ]; 99 + 100 + disabledTests = [ 101 + "get_document_url" 102 + "match" 103 + "test_doi_to_data" 104 + "test_downloader_getter" 105 + "test_general" 106 + "test_get_data" 107 + "test_validate_arxivid" 108 + "test_yaml" 109 + ]; 110 + 111 + pythonImportsCheck = [ 112 + "papis" 113 + ]; 114 + 115 + meta = with lib; { 116 description = "Powerful command-line document and bibliography manager"; 117 + homepage = "https://papis.readthedocs.io/"; 118 + license = licenses.gpl3Only; 119 + maintainers = with maintainers; [ nico202 teto ]; 120 }; 121 }
+2 -2
pkgs/development/python-modules/pvo/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "pvo"; 16 - version = "0.2.0"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "frenck"; 23 repo = "python-pvoutput"; 24 rev = "v${version}"; 25 - sha256 = "sha256-liV5Ae3Bz6MZT3KQ/1aNt6P4Wsg4SOfAMQKI0Qpxvao="; 26 }; 27 28 nativeBuildInputs = [
··· 13 14 buildPythonPackage rec { 15 pname = "pvo"; 16 + version = "0.2.1"; 17 format = "pyproject"; 18 19 disabled = pythonOlder "3.8"; ··· 22 owner = "frenck"; 23 repo = "python-pvoutput"; 24 rev = "v${version}"; 25 + sha256 = "sha256-IXK4DvmwSLdxyW4418pe1/UOeQELUBSnTO+P6TzPnKw="; 26 }; 27 28 nativeBuildInputs = [
+44
pkgs/development/python-modules/pyaussiebb/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pythonOlder 6 + , loguru 7 + , requests 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "pyaussiebb"; 12 + version = "0.0.9"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "yaleman"; 19 + repo = "aussiebb"; 20 + rev = "v${version}"; 21 + hash = "sha256-DMU29dTqDaPLQS20iuHIph6mhBdj6ni3+MA9KkRMtzg="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + requests 27 + loguru 28 + ]; 29 + 30 + # Tests require network access 31 + # https://github.com/yaleman/aussiebb/issues/6 32 + doCheck = false; 33 + 34 + pythonImportsCheck = [ 35 + "aussiebb" 36 + ]; 37 + 38 + meta = with lib; { 39 + description = "Module for interacting with the Aussie Broadband APIs"; 40 + homepage = "https://github.com/yaleman/aussiebb"; 41 + license = with licenses; [ mit ]; 42 + maintainers = with maintainers; [ fab ]; 43 + }; 44 + }
+47
pkgs/development/python-modules/pyqvrpro/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 + , pytest-vcr 5 + , pytestCheckHook 6 + , pythonOlder 7 + , pyyaml 8 + , requests 9 + , untangle 10 + }: 11 + 12 + buildPythonPackage rec { 13 + pname = "pyqvrpro"; 14 + version = "0.52"; 15 + format = "setuptools"; 16 + 17 + disabled = pythonOlder "3.7"; 18 + 19 + src = fetchFromGitHub { 20 + owner = "oblogic7"; 21 + repo = pname; 22 + rev = "v${version}"; 23 + hash = "sha256-lOd2AqnrkexNqT/usmJts5NW7vJtV8CRsliYgkhgRaU="; 24 + }; 25 + 26 + propagatedBuildInputs = [ 27 + pyyaml 28 + requests 29 + untangle 30 + ]; 31 + 32 + checkInputs = [ 33 + pytest-vcr 34 + pytestCheckHook 35 + ]; 36 + 37 + pythonImportsCheck = [ 38 + "pyqvrpro" 39 + ]; 40 + 41 + meta = with lib; { 42 + description = "Module for interfacing with QVR Pro API"; 43 + homepage = "https://github.com/oblogic7/pyqvrpro"; 44 + license = licenses.mit; 45 + maintainers = with maintainers; [ fab ]; 46 + }; 47 + }
+2 -2
pkgs/development/python-modules/pyshp/default.nix
··· 2 , setuptools }: 3 4 buildPythonPackage rec { 5 - version = "2.1.3"; 6 pname = "pyshp"; 7 8 src = fetchPypi { 9 inherit pname version; 10 - sha256 = "e32b4a6832a3b97986df442df63b4c4a7dcc846b326c903189530a5cc6df0260"; 11 }; 12 13 buildInputs = [ setuptools ];
··· 2 , setuptools }: 3 4 buildPythonPackage rec { 5 + version = "2.2.0"; 6 pname = "pyshp"; 7 8 src = fetchPypi { 9 inherit pname version; 10 + sha256 = "sha256-Dtogm9YvM0VwHE9nmbY4wRTOtn/uKClc3bThyvBT6UQ="; 11 }; 12 13 buildInputs = [ setuptools ];
+2 -2
pkgs/development/python-modules/pytrends/default.nix
··· 9 10 buildPythonPackage rec { 11 pname = "pytrends"; 12 - version = "4.7.3"; 13 disabled = isPy27; # python2 pandas is too old 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "8ccb06c57c31fa157b978a0d810de7718ee46583d28cf818250d45f36abd2faa"; 18 }; 19 20 propagatedBuildInputs = [ requests lxml pandas ];
··· 9 10 buildPythonPackage rec { 11 pname = "pytrends"; 12 + version = "4.8.0"; 13 disabled = isPy27; # python2 pandas is too old 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "sha256-BLezPrbfwSCqictGQGiKi2MzNydrbdzqRP8Mf2tiQ9I="; 18 }; 19 20 propagatedBuildInputs = [ requests lxml pandas ];
+43
pkgs/development/python-modules/rtsp-to-webrtc/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , fetchFromGitHub 5 + , pytest-aiohttp 6 + , pytestCheckHook 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "rtsp-to-webrtc"; 12 + version = "0.5.0"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "allenporter"; 19 + repo = "rtsp-to-webrtc-client"; 20 + rev = version; 21 + hash = "sha256-ry6xNymWgkkvYXliVLUFOUiPz8gbCsQDrSuGmCaH4ZE="; 22 + }; 23 + 24 + propagatedBuildInputs = [ 25 + aiohttp 26 + ]; 27 + 28 + checkInputs = [ 29 + pytest-aiohttp 30 + pytestCheckHook 31 + ]; 32 + 33 + pythonImportsCheck = [ 34 + "rtsp_to_webrtc" 35 + ]; 36 + 37 + meta = with lib; { 38 + description = "Module for RTSPtoWeb and RTSPtoWebRTC"; 39 + homepage = "https://github.com/allenporter/rtsp-to-webrtc-client"; 40 + license = with licenses; [ asl20 ]; 41 + maintainers = with maintainers; [ fab ]; 42 + }; 43 + }
+3 -3
pkgs/development/python-modules/seatconnect/default.nix
··· 13 14 buildPythonPackage rec { 15 pname = "seatconnect"; 16 - version = "1.1.4"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.8"; ··· 21 src = fetchFromGitHub { 22 owner = "farfar"; 23 repo = pname; 24 - rev = "v${version}"; 25 - sha256 = "sha256-NA/UiapJ/SyUmrj9hd2xGV5WWy1KhxwQtqGLV73TfHk="; 26 }; 27 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 13 14 buildPythonPackage rec { 15 pname = "seatconnect"; 16 + version = "1.1.5"; 17 format = "setuptools"; 18 19 disabled = pythonOlder "3.8"; ··· 21 src = fetchFromGitHub { 22 owner = "farfar"; 23 repo = pname; 24 + rev = version; 25 + hash = "sha256-NA/UiapJ/SyUmrj9hd2xGV5WWy1KhxwQtqGLV73TfHk="; 26 }; 27 28 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+2 -2
pkgs/development/python-modules/skein/skeinjar.nix
··· 4 skeinRepo = callPackage ./skeinrepo.nix { inherit src version; }; 5 in 6 stdenv.mkDerivation rec { 7 - name = "skein-${version}.jar"; 8 9 - inherit src; 10 11 nativeBuildInputs = [ maven ]; 12
··· 4 skeinRepo = callPackage ./skeinrepo.nix { inherit src version; }; 5 in 6 stdenv.mkDerivation rec { 7 + pname = "skein.jar"; 8 9 + inherit version src; 10 11 nativeBuildInputs = [ maven ]; 12
+2 -2
pkgs/development/python-modules/skein/skeinrepo.nix
··· 1 { autoPatchelfHook, lib, maven, stdenv, src, version }: 2 3 stdenv.mkDerivation rec { 4 - name = "skein-${version}-maven-repo"; 5 6 - inherit src; 7 8 nativeBuildInputs = [ maven ] ++ lib.optional stdenv.isLinux autoPatchelfHook; 9
··· 1 { autoPatchelfHook, lib, maven, stdenv, src, version }: 2 3 stdenv.mkDerivation rec { 4 + pname = "skein-maven-repo"; 5 6 + inherit version src; 7 8 nativeBuildInputs = [ maven ] ++ lib.optional stdenv.isLinux autoPatchelfHook; 9
+3 -3
pkgs/development/python-modules/skodaconnect/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "skodaconnect"; 15 - version = "1.1.14"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchFromGitHub { 21 owner = "lendy007"; 22 repo = pname; 23 - rev = "v${version}"; 24 - sha256 = "sha256-aMyowz5+4Iu7bb8FSnHzx6QGp1WzzMXQZI23OZcr/kM="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
··· 12 13 buildPythonPackage rec { 14 pname = "skodaconnect"; 15 + version = "1.1.17"; 16 format = "setuptools"; 17 18 disabled = pythonOlder "3.8"; ··· 20 src = fetchFromGitHub { 21 owner = "lendy007"; 22 repo = pname; 23 + rev = version; 24 + hash = "sha256-aMyowz5+4Iu7bb8FSnHzx6QGp1WzzMXQZI23OZcr/kM="; 25 }; 26 27 SETUPTOOLS_SCM_PRETEND_VERSION = version;
+46
pkgs/development/python-modules/ttls/default.nix
···
··· 1 + { lib 2 + , aiohttp 3 + , buildPythonPackage 4 + , colour 5 + , fetchFromGitHub 6 + , poetry-core 7 + , pythonOlder 8 + }: 9 + 10 + buildPythonPackage rec { 11 + pname = "ttls"; 12 + version = "1.4.2"; 13 + format = "pyproject"; 14 + 15 + disabled = pythonOlder "3.8"; 16 + 17 + src = fetchFromGitHub { 18 + owner = "jschlyter"; 19 + repo = pname; 20 + rev = "v${version}"; 21 + hash = "sha256-zDMgH9o9obfuihX8pXj226T1eMiKx33xyYOGKjdB1wk="; 22 + }; 23 + 24 + nativeBuildInputs = [ 25 + poetry-core 26 + ]; 27 + 28 + propagatedBuildInputs = [ 29 + aiohttp 30 + colour 31 + ]; 32 + 33 + # Module has no tests 34 + doCheck = false; 35 + 36 + pythonImportsCheck = [ 37 + "ttls" 38 + ]; 39 + 40 + meta = with lib; { 41 + description = "Module to interact with Twinkly LEDs"; 42 + homepage = "https://github.com/jschlyter/ttls"; 43 + license = licenses.mit; 44 + maintainers = with maintainers; [ fab ]; 45 + }; 46 + }
+2 -2
pkgs/development/python-modules/xml2rfc/default.nix
··· 22 23 buildPythonPackage rec { 24 pname = "xml2rfc"; 25 - version = "3.12.0"; 26 27 disabled = pythonOlder "3.6"; 28 29 src = fetchPypi { 30 inherit pname version; 31 - sha256 = "25deadb9ee95f0dc71376a60e9c1e34636b5016c1952ad5597a6246495e34464"; 32 }; 33 34 propagatedBuildInputs = [
··· 22 23 buildPythonPackage rec { 24 pname = "xml2rfc"; 25 + version = "3.12.1"; 26 27 disabled = pythonOlder "3.6"; 28 29 src = fetchPypi { 30 inherit pname version; 31 + sha256 = "sha256-xIStWb03CygnqB92AXf0uxMLw7pLhSE3mLQ8l1J6dZM="; 32 }; 33 34 propagatedBuildInputs = [
+2 -2
pkgs/development/tools/analysis/binlore/default.nix
··· 30 src = fetchFromGitHub { 31 owner = "abathur"; 32 repo = "binlore"; 33 - rev = "v0.1.3"; 34 - hash = "sha256-+rgv8gAQ3ptOpL/EhbKr/jq+k/4Lpn06/2qON+Ps2wE="; 35 }; 36 /* 37 binlore has one one more yallbacks responsible for
··· 30 src = fetchFromGitHub { 31 owner = "abathur"; 32 repo = "binlore"; 33 + rev = "v0.1.4"; 34 + hash = "sha256-+N0Bqyaj/mAwrcgFtUI8czmKo3VW6J8ZRxaPEghp7QM="; 35 }; 36 /* 37 binlore has one one more yallbacks responsible for
+3 -6
pkgs/development/tools/analysis/cccc/default.nix
··· 1 { lib, stdenv, fetchurl }: 2 3 - let 4 - name = "cccc"; 5 version = "3.1.4"; 6 - in 7 - stdenv.mkDerivation { 8 - name = "${name}-${version}"; 9 10 src = fetchurl { 11 - url = "mirror://sourceforge/${name}/${version}/${name}-${version}.tar.gz"; 12 sha256 = "1gsdzzisrk95kajs3gfxks3bjvfd9g680fin6a9pjrism2lyrcr7"; 13 }; 14
··· 1 { lib, stdenv, fetchurl }: 2 3 + stdenv.mkDerivation rec { 4 + pname = "cccc"; 5 version = "3.1.4"; 6 7 src = fetchurl { 8 + url = "mirror://sourceforge/cccc/${version}/cccc-${version}.tar.gz"; 9 sha256 = "1gsdzzisrk95kajs3gfxks3bjvfd9g680fin6a9pjrism2lyrcr7"; 10 }; 11
+2 -2
pkgs/development/tools/analysis/ikos/default.nix
··· 10 in 11 12 stdenv.mkDerivation rec { 13 - name = "ikos"; 14 version = "3.0"; 15 16 src = fetchFromGitHub { 17 owner = "NASA-SW-VnV"; 18 - repo = name; 19 rev = "v${version}"; 20 sha256 = "0k3kp1af0qx3l1x6a4sl4fm8qlwchjvwkvs2ck0fhfnc62q2im5f"; 21 };
··· 10 in 11 12 stdenv.mkDerivation rec { 13 + pname = "ikos"; 14 version = "3.0"; 15 16 src = fetchFromGitHub { 17 owner = "NASA-SW-VnV"; 18 + repo = "ikos"; 19 rev = "v${version}"; 20 sha256 = "0k3kp1af0qx3l1x6a4sl4fm8qlwchjvwkvs2ck0fhfnc62q2im5f"; 21 };
+3 -5
pkgs/development/tools/analysis/qcachegrind/default.nix
··· 1 { lib, stdenv, qmake, qtbase, perl, python2, php, kcachegrind, wrapQtAppsHook }: 2 3 - let 4 - name = lib.replaceStrings ["kcachegrind"] ["qcachegrind"] kcachegrind.name; 5 - 6 - in stdenv.mkDerivation { 7 - inherit name; 8 9 src = kcachegrind.src; 10
··· 1 { lib, stdenv, qmake, qtbase, perl, python2, php, kcachegrind, wrapQtAppsHook }: 2 3 + stdenv.mkDerivation { 4 + pname = "qcachegrind"; 5 + version = kcachegrind.version; 6 7 src = kcachegrind.src; 8
+1 -1
pkgs/development/tools/bazel-watcher/default.nix
··· 12 ]; 13 in 14 buildBazelPackage rec { 15 - name = "bazel-watcher-${version}"; 16 version = "0.14.0"; 17 18 src = fetchFromGitHub {
··· 12 ]; 13 in 14 buildBazelPackage rec { 15 + pname = "bazel-watcher"; 16 version = "0.14.0"; 17 18 src = fetchFromGitHub {
+2 -2
pkgs/development/tools/build-managers/bazel/bazel_0_26/default.nix
··· 114 bashTools = callPackage ./bash-tools-test.nix {}; 115 }; 116 117 - name = "bazel-${version}"; 118 119 src = fetchurl { 120 - url = "https://github.com/bazelbuild/bazel/releases/download/${version}/${name}-dist.zip"; 121 sha256 = "d26dadf62959255d58e523da3448a6222af768fe1224e321b120c1d5bbe4b4f2"; 122 }; 123
··· 114 bashTools = callPackage ./bash-tools-test.nix {}; 115 }; 116 117 + pname = "bazel"; 118 119 src = fetchurl { 120 + url = "https://github.com/bazelbuild/bazel/releases/download/${version}/bazel-${version}-dist.zip"; 121 sha256 = "d26dadf62959255d58e523da3448a6222af768fe1224e321b120c1d5bbe4b4f2"; 122 }; 123
+1 -1
pkgs/development/tools/continuous-integration/buildkite-agent/default.nix
··· 2 makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep, 3 nixosTests }: 4 buildGoModule rec { 5 - name = "buildkite-agent-${version}"; 6 version = "3.33.3"; 7 8 src = fetchFromGitHub {
··· 2 makeWrapper, coreutils, git, openssh, bash, gnused, gnugrep, 3 nixosTests }: 4 buildGoModule rec { 5 + pname = "buildkite-agent"; 6 version = "3.33.3"; 7 8 src = fetchFromGitHub {
+1 -1
pkgs/development/tools/continuous-integration/gocd-agent/default.nix
··· 1 { lib, stdenv, fetchurl, unzip }: 2 3 stdenv.mkDerivation rec { 4 - name = "gocd-agent-${version}-${rev}"; 5 version = "19.3.0"; 6 rev = "8959"; 7
··· 1 { lib, stdenv, fetchurl, unzip }: 2 3 stdenv.mkDerivation rec { 4 + pname = "gocd-agent"; 5 version = "19.3.0"; 6 rev = "8959"; 7
+1 -1
pkgs/development/tools/continuous-integration/gocd-server/default.nix
··· 1 { lib, stdenv, fetchurl, unzip }: 2 3 stdenv.mkDerivation rec { 4 - name = "gocd-server-${version}-${rev}"; 5 version = "19.3.0"; 6 rev = "8959"; 7
··· 1 { lib, stdenv, fetchurl, unzip }: 2 3 stdenv.mkDerivation rec { 4 + pname = "gocd-server"; 5 version = "19.3.0"; 6 rev = "8959"; 7
+3 -4
pkgs/development/tools/corgi/default.nix
··· 1 { lib, buildGoPackage, fetchFromGitHub }: 2 3 buildGoPackage rec { 4 - name = "corgi-${rev}"; 5 - rev = "v0.2.4"; 6 7 goPackagePath = "github.com/DrakeW/corgi"; 8 9 src = fetchFromGitHub { 10 - inherit rev; 11 - 12 owner = "DrakeW"; 13 repo = "corgi"; 14 sha256 = "0h9rjv1j129n1ichwpiiyspgim1273asi3s6hgizvbc75gbbb8fn"; 15 }; 16
··· 1 { lib, buildGoPackage, fetchFromGitHub }: 2 3 buildGoPackage rec { 4 + pname = "corgi"; 5 + version = "0.2.4"; 6 7 goPackagePath = "github.com/DrakeW/corgi"; 8 9 src = fetchFromGitHub { 10 owner = "DrakeW"; 11 repo = "corgi"; 12 + rev = "v${version}"; 13 sha256 = "0h9rjv1j129n1ichwpiiyspgim1273asi3s6hgizvbc75gbbb8fn"; 14 }; 15
+2
pkgs/development/tools/gocode-gomod/default.nix
··· 24 mv $out/bin/gocode $out/bin/gocode-gomod 25 ''; 26 27 meta = with lib; { 28 description = "An autocompletion daemon for the Go programming language"; 29 longDescription = ''
··· 24 mv $out/bin/gocode $out/bin/gocode-gomod 25 ''; 26 27 + doCheck = false; # fails on go 1.17 28 + 29 meta = with lib; { 30 description = "An autocompletion daemon for the Go programming language"; 31 longDescription = ''
+1 -1
pkgs/development/tools/gopls/default.nix
··· 12 }; 13 14 modRoot = "gopls"; 15 - vendorSha256 = "sha256-nKjJjtVHk/RLIHI/5v8tO4RcaLLZhr0A6llYGsB0ifQ="; 16 17 doCheck = false; 18
··· 12 }; 13 14 modRoot = "gopls"; 15 + vendorSha256 = "sha256-8osb5C5G58x9KWCxqiepmN6J0jp+q6aR+As/pJeeTKM="; 16 17 doCheck = false; 18
+2 -1
pkgs/development/tools/vgo2nix/default.nix
··· 17 sha256 = "0n9pf0i5y59kiiv6dq8h8w1plaz9w6s67rqr2acqgxa45iq36mkh"; 18 }; 19 20 - vendorSha256 = "1lzhhg9wimn8nfzrrla5bshgk1ghnlsdfmq6iask0zqz311g96bv"; 21 22 subPackages = [ "." ]; 23
··· 17 sha256 = "0n9pf0i5y59kiiv6dq8h8w1plaz9w6s67rqr2acqgxa45iq36mkh"; 18 }; 19 20 + vendorSha256 = "1xgl4avq0rblzqqpaxl4dwg4ysrhacwhfd21vb0v9ffr3zcpdw9n"; 21 + proxyVendor = true; 22 23 subPackages = [ "." ]; 24
+1 -1
pkgs/misc/vim-plugins/overrides.nix
··· 692 let 693 # Based on the comment at the top of https://github.com/gittup/tup/blob/master/contrib/syntax/tup.vim 694 ftdetect = builtins.toFile "tup.vim" '' 695 - au BufNewFile,BufRead Tupfile, *.tup set filetype=tup 696 ''; 697 in 698 buildVimPluginFrom2Nix {
··· 692 let 693 # Based on the comment at the top of https://github.com/gittup/tup/blob/master/contrib/syntax/tup.vim 694 ftdetect = builtins.toFile "tup.vim" '' 695 + au BufNewFile,BufRead Tupfile,*.tup setf tup 696 ''; 697 in 698 buildVimPluginFrom2Nix {
+36
pkgs/os-specific/darwin/mysides/default.nix
···
··· 1 + { lib, stdenv, fetchurl, libarchive, p7zip }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "mysides"; 5 + version = "1.0.1"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/mosen/mysides/releases/download/v${version}/mysides-${version}.pkg"; 9 + sha256 = "sha256-dpRrj3xb9xQSXXXxragUDgNPBaniiMc6evRF12wqVRQ="; 10 + }; 11 + 12 + dontBuild = true; 13 + nativeBuildInputs = [ libarchive p7zip ]; 14 + 15 + unpackPhase = '' 16 + 7z x $src 17 + bsdtar -xf Payload~ 18 + ''; 19 + 20 + installPhase = '' 21 + runHook preInstall 22 + 23 + mkdir -p $out/bin 24 + install -Dm755 usr/local/bin/mysides -t $out/bin 25 + 26 + runHook postInstall 27 + ''; 28 + 29 + meta = with lib; { 30 + description = "Manage macOS Finder sidebar favorites"; 31 + homepage = "https://github.com/mosen/mysides"; 32 + license = licenses.mit; 33 + maintainers = with maintainers; [ tboerger ]; 34 + platforms = platforms.darwin; 35 + }; 36 + }
+2 -10
pkgs/servers/gemini/gmid/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gmid"; 5 - version = "1.7.5"; 6 7 src = fetchFromGitHub { 8 owner = "omar-polo"; 9 repo = pname; 10 rev = version; 11 - sha256 = "sha256-BBd0AL5jRRslxzDnxcTZRR+8J5D23NAQ7mp9K+leXAQ="; 12 }; 13 - 14 - patches = [ 15 - # Fix cross-compilation 16 - (fetchpatch { 17 - url = "https://github.com/omar-polo/gmid/commit/eb77afa8d308a2f4f422df2ff19f023b5b2cc591.patch"; 18 - sha256 = "sha256-rTTZUpfXOg7X0Ad0Y9evyU7k+aVYpJ0t9SEkNA/sSdk="; 19 - }) 20 - ]; 21 22 nativeBuildInputs = [ bison ]; 23
··· 2 3 stdenv.mkDerivation rec { 4 pname = "gmid"; 5 + version = "1.8"; 6 7 src = fetchFromGitHub { 8 owner = "omar-polo"; 9 repo = pname; 10 rev = version; 11 + sha256 = "sha256-CwJPaZefRDyn2fliOd9FnOLXq70HFu2RsUZhzWQdE3E"; 12 }; 13 14 nativeBuildInputs = [ bison ]; 15
+20 -11
pkgs/servers/home-assistant/component-packages.nix
··· 9 "acer_projector" = ps: with ps; [ pyserial ]; 10 "acmeda" = ps: with ps; [ aiopulse ]; 11 "actiontec" = ps: with ps; [ ]; 12 - "adax" = ps: with ps; [ adax ]; # missing inputs: Adax-local 13 "adguard" = ps: with ps; [ adguardhome ]; 14 "ads" = ps: with ps; [ pyads ]; 15 "advantage_air" = ps: with ps; [ advantage-air ]; ··· 56 "arris_tg2492lg" = ps: with ps; [ ]; # missing inputs: arris-tg2492lg 57 "aruba" = ps: with ps; [ pexpect ]; 58 "arwn" = ps: with ps; [ aiohttp-cors paho-mqtt ]; 59 - "aseko_pool_live" = ps: with ps; [ ]; # missing inputs: aioaseko 60 "asterisk_cdr" = ps: with ps; [ ]; # missing inputs: asterisk_mbox 61 "asterisk_mbox" = ps: with ps; [ ]; # missing inputs: asterisk_mbox 62 "asuswrt" = ps: with ps; [ aioasuswrt ]; ··· 65 "atome" = ps: with ps; [ pyatome ]; 66 "august" = ps: with ps; [ yalexs ]; 67 "aurora" = ps: with ps; [ auroranoaa ]; 68 - "aurora_abb_powerone" = ps: with ps; [ ]; # missing inputs: aurorapy 69 - "aussie_broadband" = ps: with ps; [ ]; # missing inputs: pyaussiebb 70 "auth" = ps: with ps; [ aiohttp-cors ]; 71 "automation" = ps: with ps; [ aiohttp-cors ]; 72 "avea" = ps: with ps; [ avea ]; ··· 122 "cast" = ps: with ps; [ pyturbojpeg aiohttp-cors hass-nabucasa ifaddr mutagen plexapi plexauth plexwebsocket PyChromecast zeroconf ]; 123 "cert_expiry" = ps: with ps; [ ]; 124 "channels" = ps: with ps; [ pychannels ]; 125 - "circuit" = ps: with ps; [ ]; # missing inputs: circuit-webhook 126 "cisco_ios" = ps: with ps; [ pexpect ]; 127 "cisco_mobility_express" = ps: with ps; [ ciscomobilityexpress ]; 128 "cisco_webex_teams" = ps: with ps; [ webexteamssdk ]; ··· 414 "input_text" = ps: with ps; [ ]; 415 "insteon" = ps: with ps; [ pyinsteon ]; 416 "integration" = ps: with ps; [ ]; 417 - "intellifire" = ps: with ps; [ ]; # missing inputs: intellifire4py 418 "intent" = ps: with ps; [ aiohttp-cors ]; 419 "intent_script" = ps: with ps; [ ]; 420 "intesishome" = ps: with ps; [ pyintesishome ]; ··· 609 "ombi" = ps: with ps; [ pyombi ]; 610 "omnilogic" = ps: with ps; [ omnilogic ]; 611 "onboarding" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow sqlalchemy ]; 612 - "oncue" = ps: with ps; [ ]; # missing inputs: aiooncue 613 "ondilo_ico" = ps: with ps; [ aiohttp-cors ondilo ]; 614 "onewire" = ps: with ps; [ ]; # missing inputs: pi1wire pyownet 615 "onkyo" = ps: with ps; [ onkyo-eiscp ]; ··· 693 "qnap" = ps: with ps; [ ]; # missing inputs: qnapstats 694 "qrcode" = ps: with ps; [ pillow ]; # missing inputs: pyzbar 695 "quantum_gateway" = ps: with ps; [ quantum-gateway ]; 696 - "qvr_pro" = ps: with ps; [ ]; # missing inputs: pyqvrpro 697 "qwikswitch" = ps: with ps; [ ]; # missing inputs: pyqwikswitch 698 "rachio" = ps: with ps; [ pyturbojpeg aiohttp-cors hass-nabucasa rachiopy ]; 699 "radarr" = ps: with ps; [ ]; ··· 740 "rpi_rf" = ps: with ps; [ ]; # missing inputs: RPi.GPIO rpi-rf 741 "rss_feed_template" = ps: with ps; [ aiohttp-cors ]; 742 "rtorrent" = ps: with ps; [ ]; 743 - "rtsp_to_webrtc" = ps: with ps; [ pyturbojpeg aiohttp-cors ]; # missing inputs: rtsp-to-webrtc 744 "ruckus_unleashed" = ps: with ps; [ pyruckus ]; 745 "russound_rio" = ps: with ps; [ ]; # missing inputs: russound_rio 746 "russound_rnet" = ps: with ps; [ ]; # missing inputs: russound ··· 923 "twilio" = ps: with ps; [ aiohttp-cors twilio ]; 924 "twilio_call" = ps: with ps; [ aiohttp-cors twilio ]; 925 "twilio_sms" = ps: with ps; [ aiohttp-cors twilio ]; 926 - "twinkly" = ps: with ps; [ ]; # missing inputs: ttls 927 "twitch" = ps: with ps; [ python-twitch-client ]; 928 "twitter" = ps: with ps; [ twitterapi ]; 929 "ubus" = ps: with ps; [ openwrt-ubus-rpc ]; ··· 981 "waze_travel_time" = ps: with ps; [ wazeroutecalculator ]; 982 "weather" = ps: with ps; [ ]; 983 "webhook" = ps: with ps; [ aiohttp-cors ]; 984 - "webostv" = ps: with ps; [ sqlalchemy ]; # missing inputs: aiowebostv 985 "websocket_api" = ps: with ps; [ aiohttp-cors ]; 986 "wemo" = ps: with ps; [ pywemo ]; 987 "whirlpool" = ps: with ps; [ whirlpool-sixth-sense ]; ··· 1037 "abode" 1038 "accuweather" 1039 "acmeda" 1040 "adguard" 1041 "advantage_air" 1042 "aemet" ··· 1065 "aprs" 1066 "arcam_fmj" 1067 "arlo" 1068 "asuswrt" 1069 "atag" 1070 "august" 1071 "aurora" 1072 "auth" 1073 "automation" 1074 "awair" ··· 1277 "input_text" 1278 "insteon" 1279 "integration" 1280 "intent" 1281 "intent_script" 1282 "ios" ··· 1379 "octoprint" 1380 "omnilogic" 1381 "onboarding" 1382 "ondilo_ico" 1383 "open_meteo" 1384 "openalpr_cloud" ··· 1443 "roon" 1444 "rpi_power" 1445 "rss_feed_template" 1446 "ruckus_unleashed" 1447 "safe_mode" 1448 "samsungtv" ··· 1546 "tuya" 1547 "twentemilieu" 1548 "twilio" 1549 "twitch" 1550 "uk_transport" 1551 "unifi" ··· 1582 "waze_travel_time" 1583 "weather" 1584 "webhook" 1585 "websocket_api" 1586 "wemo" 1587 "whirlpool"
··· 9 "acer_projector" = ps: with ps; [ pyserial ]; 10 "acmeda" = ps: with ps; [ aiopulse ]; 11 "actiontec" = ps: with ps; [ ]; 12 + "adax" = ps: with ps; [ adax-local adax ]; 13 "adguard" = ps: with ps; [ adguardhome ]; 14 "ads" = ps: with ps; [ pyads ]; 15 "advantage_air" = ps: with ps; [ advantage-air ]; ··· 56 "arris_tg2492lg" = ps: with ps; [ ]; # missing inputs: arris-tg2492lg 57 "aruba" = ps: with ps; [ pexpect ]; 58 "arwn" = ps: with ps; [ aiohttp-cors paho-mqtt ]; 59 + "aseko_pool_live" = ps: with ps; [ aioaseko ]; 60 "asterisk_cdr" = ps: with ps; [ ]; # missing inputs: asterisk_mbox 61 "asterisk_mbox" = ps: with ps; [ ]; # missing inputs: asterisk_mbox 62 "asuswrt" = ps: with ps; [ aioasuswrt ]; ··· 65 "atome" = ps: with ps; [ pyatome ]; 66 "august" = ps: with ps; [ yalexs ]; 67 "aurora" = ps: with ps; [ auroranoaa ]; 68 + "aurora_abb_powerone" = ps: with ps; [ aurorapy ]; 69 + "aussie_broadband" = ps: with ps; [ pyaussiebb ]; 70 "auth" = ps: with ps; [ aiohttp-cors ]; 71 "automation" = ps: with ps; [ aiohttp-cors ]; 72 "avea" = ps: with ps; [ avea ]; ··· 122 "cast" = ps: with ps; [ pyturbojpeg aiohttp-cors hass-nabucasa ifaddr mutagen plexapi plexauth plexwebsocket PyChromecast zeroconf ]; 123 "cert_expiry" = ps: with ps; [ ]; 124 "channels" = ps: with ps; [ pychannels ]; 125 + "circuit" = ps: with ps; [ circuit-webhook ]; 126 "cisco_ios" = ps: with ps; [ pexpect ]; 127 "cisco_mobility_express" = ps: with ps; [ ciscomobilityexpress ]; 128 "cisco_webex_teams" = ps: with ps; [ webexteamssdk ]; ··· 414 "input_text" = ps: with ps; [ ]; 415 "insteon" = ps: with ps; [ pyinsteon ]; 416 "integration" = ps: with ps; [ ]; 417 + "intellifire" = ps: with ps; [ intellifire4py ]; 418 "intent" = ps: with ps; [ aiohttp-cors ]; 419 "intent_script" = ps: with ps; [ ]; 420 "intesishome" = ps: with ps; [ pyintesishome ]; ··· 609 "ombi" = ps: with ps; [ pyombi ]; 610 "omnilogic" = ps: with ps; [ omnilogic ]; 611 "onboarding" = ps: with ps; [ aiohttp-cors home-assistant-frontend pillow sqlalchemy ]; 612 + "oncue" = ps: with ps; [ aiooncue ]; 613 "ondilo_ico" = ps: with ps; [ aiohttp-cors ondilo ]; 614 "onewire" = ps: with ps; [ ]; # missing inputs: pi1wire pyownet 615 "onkyo" = ps: with ps; [ onkyo-eiscp ]; ··· 693 "qnap" = ps: with ps; [ ]; # missing inputs: qnapstats 694 "qrcode" = ps: with ps; [ pillow ]; # missing inputs: pyzbar 695 "quantum_gateway" = ps: with ps; [ quantum-gateway ]; 696 + "qvr_pro" = ps: with ps; [ pyqvrpro ]; 697 "qwikswitch" = ps: with ps; [ ]; # missing inputs: pyqwikswitch 698 "rachio" = ps: with ps; [ pyturbojpeg aiohttp-cors hass-nabucasa rachiopy ]; 699 "radarr" = ps: with ps; [ ]; ··· 740 "rpi_rf" = ps: with ps; [ ]; # missing inputs: RPi.GPIO rpi-rf 741 "rss_feed_template" = ps: with ps; [ aiohttp-cors ]; 742 "rtorrent" = ps: with ps; [ ]; 743 + "rtsp_to_webrtc" = ps: with ps; [ pyturbojpeg aiohttp-cors rtsp-to-webrtc ]; 744 "ruckus_unleashed" = ps: with ps; [ pyruckus ]; 745 "russound_rio" = ps: with ps; [ ]; # missing inputs: russound_rio 746 "russound_rnet" = ps: with ps; [ ]; # missing inputs: russound ··· 923 "twilio" = ps: with ps; [ aiohttp-cors twilio ]; 924 "twilio_call" = ps: with ps; [ aiohttp-cors twilio ]; 925 "twilio_sms" = ps: with ps; [ aiohttp-cors twilio ]; 926 + "twinkly" = ps: with ps; [ ttls ]; 927 "twitch" = ps: with ps; [ python-twitch-client ]; 928 "twitter" = ps: with ps; [ twitterapi ]; 929 "ubus" = ps: with ps; [ openwrt-ubus-rpc ]; ··· 981 "waze_travel_time" = ps: with ps; [ wazeroutecalculator ]; 982 "weather" = ps: with ps; [ ]; 983 "webhook" = ps: with ps; [ aiohttp-cors ]; 984 + "webostv" = ps: with ps; [ aiowebostv sqlalchemy ]; 985 "websocket_api" = ps: with ps; [ aiohttp-cors ]; 986 "wemo" = ps: with ps; [ pywemo ]; 987 "whirlpool" = ps: with ps; [ whirlpool-sixth-sense ]; ··· 1037 "abode" 1038 "accuweather" 1039 "acmeda" 1040 + "adax" 1041 "adguard" 1042 "advantage_air" 1043 "aemet" ··· 1066 "aprs" 1067 "arcam_fmj" 1068 "arlo" 1069 + "aseko_pool_live" 1070 "asuswrt" 1071 "atag" 1072 "august" 1073 "aurora" 1074 + "aurora_abb_powerone" 1075 + "aussie_broadband" 1076 "auth" 1077 "automation" 1078 "awair" ··· 1281 "input_text" 1282 "insteon" 1283 "integration" 1284 + "intellifire" 1285 "intent" 1286 "intent_script" 1287 "ios" ··· 1384 "octoprint" 1385 "omnilogic" 1386 "onboarding" 1387 + "oncue" 1388 "ondilo_ico" 1389 "open_meteo" 1390 "openalpr_cloud" ··· 1449 "roon" 1450 "rpi_power" 1451 "rss_feed_template" 1452 + "rtsp_to_webrtc" 1453 "ruckus_unleashed" 1454 "safe_mode" 1455 "samsungtv" ··· 1553 "tuya" 1554 "twentemilieu" 1555 "twilio" 1556 + "twinkly" 1557 "twitch" 1558 "uk_transport" 1559 "unifi" ··· 1590 "waze_travel_time" 1591 "weather" 1592 "webhook" 1593 + "webostv" 1594 "websocket_api" 1595 "wemo" 1596 "whirlpool"
+3 -3
pkgs/servers/soft-serve/default.nix
··· 2 3 buildGoModule rec { 4 pname = "soft-serve"; 5 - version = "0.1.2"; 6 7 src = fetchFromGitHub { 8 owner = "charmbracelet"; 9 repo = "soft-serve"; 10 rev = "v${version}"; 11 - sha256 = "sha256-sRlEF1ee+oBnYOGSN6rDOvNr3OnfAqV+1Wx5XOyIylw="; 12 }; 13 14 - vendorSha256 = "sha256-txC85Y5t880XGgJb7tumDgqWTdTRCXXgATAtlWXF7n8="; 15 16 doCheck = false; 17
··· 2 3 buildGoModule rec { 4 pname = "soft-serve"; 5 + version = "0.1.3"; 6 7 src = fetchFromGitHub { 8 owner = "charmbracelet"; 9 repo = "soft-serve"; 10 rev = "v${version}"; 11 + sha256 = "sha256-DEtWFWzUytj9xhNCVTPgSy2vR3sL2VYG76UmF6Dx78M="; 12 }; 13 14 + vendorSha256 = "sha256-ljbUAsbgonEFDVY6cSeVPkjieXWgF9JFGl6c7J6/164="; 15 16 doCheck = false; 17
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package; 4 in 5 package.override rec { 6 - version = "1.22.2"; 7 reconstructLock = true; 8 9 src = pkgs.fetchFromGitHub { 10 owner = "Koenkk"; 11 repo = "zigbee2mqtt"; 12 rev = version; 13 - sha256 = "181al3530zdbng6fpcpz35q28cxi3p46ydxff7a2bpm9i7kxnc3i"; 14 }; 15 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
··· 3 package = (import ./node.nix { inherit pkgs; inherit (stdenv.hostPlatform) system; }).package; 4 in 5 package.override rec { 6 + version = "1.23.0"; 7 reconstructLock = true; 8 9 src = pkgs.fetchFromGitHub { 10 owner = "Koenkk"; 11 repo = "zigbee2mqtt"; 12 rev = version; 13 + sha256 = "0mf6ya5pw5gh0ld0j5dlsicx3ndhfrm3q683faqcm4ks7c5kjhax"; 14 }; 15 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+1326 -1635
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 4 5 let 6 sources = { 7 - "@babel/cli-7.16.0" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; 10 - version = "7.16.0"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.16.0.tgz"; 13 - sha512 = "WLrM42vKX/4atIoQB+eb0ovUof53UUvecb4qGjU2PDDWRiZr50ZpiV8NpcLo7iSxeGYrRG0Mqembsa+UrTAV6Q=="; 14 - }; 15 - }; 16 - "@babel/code-frame-7.16.0" = { 17 - name = "_at_babel_slash_code-frame"; 18 - packageName = "@babel/code-frame"; 19 - version = "7.16.0"; 20 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"; 22 - sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; 23 }; 24 }; 25 "@babel/code-frame-7.16.7" = { ··· 31 sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 32 }; 33 }; 34 - "@babel/compat-data-7.16.4" = { 35 name = "_at_babel_slash_compat-data"; 36 packageName = "@babel/compat-data"; 37 - version = "7.16.4"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz"; 40 - sha512 = "1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="; 41 }; 42 }; 43 - "@babel/core-7.16.5" = { 44 name = "_at_babel_slash_core"; 45 packageName = "@babel/core"; 46 - version = "7.16.5"; 47 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/core/-/core-7.16.5.tgz"; 49 - sha512 = "wUcenlLzuWMZ9Zt8S0KmFwGlH6QKRh3vsm/dhDA3CHkiTA45YuG1XkHRcNRl73EFPXDp/d5kVOU0/y7x2w6OaQ=="; 50 }; 51 }; 52 - "@babel/core-7.16.7" = { 53 - name = "_at_babel_slash_core"; 54 - packageName = "@babel/core"; 55 - version = "7.16.7"; 56 - src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/core/-/core-7.16.7.tgz"; 58 - sha512 = "aeLaqcqThRNZYmbMqtulsetOQZ/5gbR/dWruUCJcpas4Qoyy+QeagfDsPdMrqwsPRDNxJvBlRiZxxX7THO7qtA=="; 59 - }; 60 - }; 61 - "@babel/generator-7.16.5" = { 62 name = "_at_babel_slash_generator"; 63 packageName = "@babel/generator"; 64 - version = "7.16.5"; 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz"; 67 - sha512 = "kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA=="; 68 }; 69 }; 70 - "@babel/generator-7.16.7" = { 71 - name = "_at_babel_slash_generator"; 72 - packageName = "@babel/generator"; 73 - version = "7.16.7"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.7.tgz"; 76 - sha512 = "/ST3Sg8MLGY5HVYmrjOgL60ENux/HfO/CsUh7y4MalThufhE/Ff/6EibFDHi4jiDCaWfJKoqbE6oTh21c5hrRg=="; 77 - }; 78 - }; 79 - "@babel/helper-annotate-as-pure-7.16.0" = { 80 name = "_at_babel_slash_helper-annotate-as-pure"; 81 packageName = "@babel/helper-annotate-as-pure"; 82 - version = "7.16.0"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz"; 85 - sha512 = "ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg=="; 86 }; 87 }; 88 - "@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" = { 89 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 90 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 91 - version = "7.16.5"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz"; 94 - sha512 = "3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA=="; 95 - }; 96 - }; 97 - "@babel/helper-compilation-targets-7.16.3" = { 98 - name = "_at_babel_slash_helper-compilation-targets"; 99 - packageName = "@babel/helper-compilation-targets"; 100 - version = "7.16.3"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz"; 103 - sha512 = "vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="; 104 }; 105 }; 106 "@babel/helper-compilation-targets-7.16.7" = { ··· 112 sha512 = "mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="; 113 }; 114 }; 115 - "@babel/helper-create-class-features-plugin-7.16.5" = { 116 name = "_at_babel_slash_helper-create-class-features-plugin"; 117 packageName = "@babel/helper-create-class-features-plugin"; 118 - version = "7.16.5"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz"; 121 - sha512 = "NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg=="; 122 }; 123 }; 124 - "@babel/helper-create-regexp-features-plugin-7.16.0" = { 125 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 126 packageName = "@babel/helper-create-regexp-features-plugin"; 127 - version = "7.16.0"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz"; 130 - sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA=="; 131 }; 132 }; 133 - "@babel/helper-define-polyfill-provider-0.3.0" = { 134 name = "_at_babel_slash_helper-define-polyfill-provider"; 135 packageName = "@babel/helper-define-polyfill-provider"; 136 - version = "0.3.0"; 137 - src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.0.tgz"; 139 - sha512 = "7hfT8lUljl/tM3h+izTX/pO3W3frz2ok6Pk+gzys8iJqDfZrZy2pXjRTZAvG2YmfHun1X4q8/UZRLatMfqc5Tg=="; 140 - }; 141 - }; 142 - "@babel/helper-environment-visitor-7.16.5" = { 143 - name = "_at_babel_slash_helper-environment-visitor"; 144 - packageName = "@babel/helper-environment-visitor"; 145 - version = "7.16.5"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz"; 148 - sha512 = "ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg=="; 149 }; 150 }; 151 "@babel/helper-environment-visitor-7.16.7" = { ··· 157 sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; 158 }; 159 }; 160 - "@babel/helper-explode-assignable-expression-7.16.0" = { 161 name = "_at_babel_slash_helper-explode-assignable-expression"; 162 packageName = "@babel/helper-explode-assignable-expression"; 163 - version = "7.16.0"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz"; 166 - sha512 = "Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ=="; 167 - }; 168 - }; 169 - "@babel/helper-function-name-7.16.0" = { 170 - name = "_at_babel_slash_helper-function-name"; 171 - packageName = "@babel/helper-function-name"; 172 - version = "7.16.0"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"; 175 - sha512 = "BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="; 176 }; 177 }; 178 "@babel/helper-function-name-7.16.7" = { ··· 184 sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 185 }; 186 }; 187 - "@babel/helper-get-function-arity-7.16.0" = { 188 - name = "_at_babel_slash_helper-get-function-arity"; 189 - packageName = "@babel/helper-get-function-arity"; 190 - version = "7.16.0"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"; 193 - sha512 = "ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="; 194 - }; 195 - }; 196 "@babel/helper-get-function-arity-7.16.7" = { 197 name = "_at_babel_slash_helper-get-function-arity"; 198 packageName = "@babel/helper-get-function-arity"; ··· 200 src = fetchurl { 201 url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; 202 sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; 203 - }; 204 - }; 205 - "@babel/helper-hoist-variables-7.16.0" = { 206 - name = "_at_babel_slash_helper-hoist-variables"; 207 - packageName = "@babel/helper-hoist-variables"; 208 - version = "7.16.0"; 209 - src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"; 211 - sha512 = "1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="; 212 }; 213 }; 214 "@babel/helper-hoist-variables-7.16.7" = { ··· 220 sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="; 221 }; 222 }; 223 - "@babel/helper-member-expression-to-functions-7.16.5" = { 224 name = "_at_babel_slash_helper-member-expression-to-functions"; 225 packageName = "@babel/helper-member-expression-to-functions"; 226 - version = "7.16.5"; 227 - src = fetchurl { 228 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz"; 229 - sha512 = "7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw=="; 230 - }; 231 - }; 232 - "@babel/helper-module-imports-7.16.0" = { 233 - name = "_at_babel_slash_helper-module-imports"; 234 - packageName = "@babel/helper-module-imports"; 235 - version = "7.16.0"; 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"; 238 - sha512 = "kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="; 239 }; 240 }; 241 "@babel/helper-module-imports-7.16.7" = { ··· 247 sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 248 }; 249 }; 250 - "@babel/helper-module-transforms-7.16.5" = { 251 - name = "_at_babel_slash_helper-module-transforms"; 252 - packageName = "@babel/helper-module-transforms"; 253 - version = "7.16.5"; 254 - src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz"; 256 - sha512 = "CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ=="; 257 - }; 258 - }; 259 "@babel/helper-module-transforms-7.16.7" = { 260 name = "_at_babel_slash_helper-module-transforms"; 261 packageName = "@babel/helper-module-transforms"; ··· 265 sha512 = "gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng=="; 266 }; 267 }; 268 - "@babel/helper-optimise-call-expression-7.16.0" = { 269 name = "_at_babel_slash_helper-optimise-call-expression"; 270 packageName = "@babel/helper-optimise-call-expression"; 271 - version = "7.16.0"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz"; 274 - sha512 = "SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw=="; 275 - }; 276 - }; 277 - "@babel/helper-plugin-utils-7.16.5" = { 278 - name = "_at_babel_slash_helper-plugin-utils"; 279 - packageName = "@babel/helper-plugin-utils"; 280 - version = "7.16.5"; 281 - src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz"; 283 - sha512 = "59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ=="; 284 }; 285 }; 286 "@babel/helper-plugin-utils-7.16.7" = { ··· 292 sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="; 293 }; 294 }; 295 - "@babel/helper-remap-async-to-generator-7.16.5" = { 296 name = "_at_babel_slash_helper-remap-async-to-generator"; 297 packageName = "@babel/helper-remap-async-to-generator"; 298 - version = "7.16.5"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz"; 301 - sha512 = "X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw=="; 302 }; 303 }; 304 - "@babel/helper-replace-supers-7.16.5" = { 305 name = "_at_babel_slash_helper-replace-supers"; 306 packageName = "@babel/helper-replace-supers"; 307 - version = "7.16.5"; 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz"; 310 - sha512 = "ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ=="; 311 - }; 312 - }; 313 - "@babel/helper-simple-access-7.16.0" = { 314 - name = "_at_babel_slash_helper-simple-access"; 315 - packageName = "@babel/helper-simple-access"; 316 - version = "7.16.0"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz"; 319 - sha512 = "o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw=="; 320 }; 321 }; 322 "@babel/helper-simple-access-7.16.7" = { ··· 337 sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; 338 }; 339 }; 340 - "@babel/helper-split-export-declaration-7.16.0" = { 341 - name = "_at_babel_slash_helper-split-export-declaration"; 342 - packageName = "@babel/helper-split-export-declaration"; 343 - version = "7.16.0"; 344 - src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"; 346 - sha512 = "0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="; 347 - }; 348 - }; 349 "@babel/helper-split-export-declaration-7.16.7" = { 350 name = "_at_babel_slash_helper-split-export-declaration"; 351 packageName = "@babel/helper-split-export-declaration"; ··· 355 sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="; 356 }; 357 }; 358 - "@babel/helper-validator-identifier-7.15.7" = { 359 - name = "_at_babel_slash_helper-validator-identifier"; 360 - packageName = "@babel/helper-validator-identifier"; 361 - version = "7.15.7"; 362 - src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 364 - sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 365 - }; 366 - }; 367 "@babel/helper-validator-identifier-7.16.7" = { 368 name = "_at_babel_slash_helper-validator-identifier"; 369 packageName = "@babel/helper-validator-identifier"; ··· 373 sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="; 374 }; 375 }; 376 - "@babel/helper-validator-option-7.14.5" = { 377 - name = "_at_babel_slash_helper-validator-option"; 378 - packageName = "@babel/helper-validator-option"; 379 - version = "7.14.5"; 380 - src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 382 - sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 383 - }; 384 - }; 385 "@babel/helper-validator-option-7.16.7" = { 386 name = "_at_babel_slash_helper-validator-option"; 387 packageName = "@babel/helper-validator-option"; ··· 391 sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="; 392 }; 393 }; 394 - "@babel/helper-wrap-function-7.16.5" = { 395 name = "_at_babel_slash_helper-wrap-function"; 396 packageName = "@babel/helper-wrap-function"; 397 - version = "7.16.5"; 398 - src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz"; 400 - sha512 = "2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA=="; 401 - }; 402 - }; 403 - "@babel/helpers-7.16.5" = { 404 - name = "_at_babel_slash_helpers"; 405 - packageName = "@babel/helpers"; 406 - version = "7.16.5"; 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz"; 409 - sha512 = "TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw=="; 410 }; 411 }; 412 "@babel/helpers-7.16.7" = { ··· 418 sha512 = "9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw=="; 419 }; 420 }; 421 - "@babel/highlight-7.16.0" = { 422 name = "_at_babel_slash_highlight"; 423 packageName = "@babel/highlight"; 424 - version = "7.16.0"; 425 src = fetchurl { 426 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"; 427 - sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="; 428 }; 429 }; 430 - "@babel/highlight-7.16.7" = { 431 - name = "_at_babel_slash_highlight"; 432 - packageName = "@babel/highlight"; 433 - version = "7.16.7"; 434 - src = fetchurl { 435 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.7.tgz"; 436 - sha512 = "aKpPMfLvGO3Q97V0qhw/V2SWNWlwfJknuwAunU7wZLSfrM4xTBvg7E5opUVi1kJTBKihE38CPg4nBiqX83PWYw=="; 437 - }; 438 - }; 439 - "@babel/parser-7.16.6" = { 440 name = "_at_babel_slash_parser"; 441 packageName = "@babel/parser"; 442 - version = "7.16.6"; 443 src = fetchurl { 444 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz"; 445 - sha512 = "Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ=="; 446 }; 447 }; 448 - "@babel/parser-7.16.7" = { 449 - name = "_at_babel_slash_parser"; 450 - packageName = "@babel/parser"; 451 - version = "7.16.7"; 452 - src = fetchurl { 453 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.7.tgz"; 454 - sha512 = "sR4eaSrnM7BV7QPzGfEX5paG/6wrZM3I0HDzfIAK06ESvo9oy3xBuVBxE3MbQaKNhvg8g/ixjMWo2CGpzpHsDA=="; 455 - }; 456 - }; 457 - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" = { 458 name = "_at_babel_slash_plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 459 packageName = "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 460 - version = "7.16.2"; 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2.tgz"; 463 - sha512 = "h37CvpLSf8gb2lIJ2CgC3t+EjFbi0t8qS7LCS1xcJIlEXE4czlofwaW7W1HA8zpgOCzI9C1nmoqNR1zWkk0pQg=="; 464 }; 465 }; 466 - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" = { 467 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 468 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 469 - version = "7.16.0"; 470 src = fetchurl { 471 - url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0.tgz"; 472 - sha512 = "4tcFwwicpWTrpl9qjf7UsoosaArgImF85AxqCRZlgc3IQDvkUHjJpruXAL58Wmj+T6fypWTC/BakfEkwIL/pwA=="; 473 }; 474 }; 475 - "@babel/plugin-proposal-async-generator-functions-7.16.5" = { 476 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 477 packageName = "@babel/plugin-proposal-async-generator-functions"; 478 - version = "7.16.5"; 479 src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz"; 481 - sha512 = "C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA=="; 482 }; 483 }; 484 - "@babel/plugin-proposal-class-properties-7.16.5" = { 485 name = "_at_babel_slash_plugin-proposal-class-properties"; 486 packageName = "@babel/plugin-proposal-class-properties"; 487 - version = "7.16.5"; 488 src = fetchurl { 489 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz"; 490 - sha512 = "pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A=="; 491 }; 492 }; 493 - "@babel/plugin-proposal-class-static-block-7.16.5" = { 494 name = "_at_babel_slash_plugin-proposal-class-static-block"; 495 packageName = "@babel/plugin-proposal-class-static-block"; 496 - version = "7.16.5"; 497 src = fetchurl { 498 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.5.tgz"; 499 - sha512 = "EEFzuLZcm/rNJ8Q5krK+FRKdVkd6FjfzT9tuSZql9sQn64K0hHA2KLJ0DqVot9/iV6+SsuadC5yI39zWnm+nmQ=="; 500 }; 501 }; 502 - "@babel/plugin-proposal-decorators-7.16.5" = { 503 name = "_at_babel_slash_plugin-proposal-decorators"; 504 packageName = "@babel/plugin-proposal-decorators"; 505 - version = "7.16.5"; 506 src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.16.5.tgz"; 508 - sha512 = "XAiZll5oCdp2Dd2RbXA3LVPlFyIRhhcQy+G34p9ePpl6mjFkbqHAYHovyw2j5mqUrlBf0/+MtOIJ3JGYtz8qaw=="; 509 }; 510 }; 511 - "@babel/plugin-proposal-dynamic-import-7.16.5" = { 512 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 513 packageName = "@babel/plugin-proposal-dynamic-import"; 514 - version = "7.16.5"; 515 src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz"; 517 - sha512 = "P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ=="; 518 }; 519 }; 520 - "@babel/plugin-proposal-export-namespace-from-7.16.5" = { 521 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 522 packageName = "@babel/plugin-proposal-export-namespace-from"; 523 - version = "7.16.5"; 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz"; 526 - sha512 = "i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw=="; 527 }; 528 }; 529 - "@babel/plugin-proposal-json-strings-7.16.5" = { 530 name = "_at_babel_slash_plugin-proposal-json-strings"; 531 packageName = "@babel/plugin-proposal-json-strings"; 532 - version = "7.16.5"; 533 src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz"; 535 - sha512 = "QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ=="; 536 }; 537 }; 538 - "@babel/plugin-proposal-logical-assignment-operators-7.16.5" = { 539 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 540 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 541 - version = "7.16.5"; 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz"; 544 - sha512 = "xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA=="; 545 }; 546 }; 547 - "@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" = { 548 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 549 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 550 - version = "7.16.5"; 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz"; 553 - sha512 = "YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg=="; 554 }; 555 }; 556 - "@babel/plugin-proposal-numeric-separator-7.16.5" = { 557 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 558 packageName = "@babel/plugin-proposal-numeric-separator"; 559 - version = "7.16.5"; 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz"; 562 - sha512 = "DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw=="; 563 }; 564 }; 565 - "@babel/plugin-proposal-object-rest-spread-7.16.5" = { 566 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 567 packageName = "@babel/plugin-proposal-object-rest-spread"; 568 - version = "7.16.5"; 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz"; 571 - sha512 = "UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw=="; 572 }; 573 }; 574 - "@babel/plugin-proposal-optional-catch-binding-7.16.5" = { 575 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 576 packageName = "@babel/plugin-proposal-optional-catch-binding"; 577 - version = "7.16.5"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz"; 580 - sha512 = "ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ=="; 581 }; 582 }; 583 - "@babel/plugin-proposal-optional-chaining-7.16.5" = { 584 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 585 packageName = "@babel/plugin-proposal-optional-chaining"; 586 - version = "7.16.5"; 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz"; 589 - sha512 = "kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A=="; 590 }; 591 }; 592 - "@babel/plugin-proposal-private-methods-7.16.5" = { 593 name = "_at_babel_slash_plugin-proposal-private-methods"; 594 packageName = "@babel/plugin-proposal-private-methods"; 595 - version = "7.16.5"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz"; 598 - sha512 = "+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA=="; 599 }; 600 }; 601 - "@babel/plugin-proposal-private-property-in-object-7.16.5" = { 602 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 603 packageName = "@babel/plugin-proposal-private-property-in-object"; 604 - version = "7.16.5"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.5.tgz"; 607 - sha512 = "+YGh5Wbw0NH3y/E5YMu6ci5qTDmAEVNoZ3I54aB6nVEOZ5BQ7QJlwKq5pYVucQilMByGn/bvX0af+uNaPRCabA=="; 608 }; 609 }; 610 - "@babel/plugin-proposal-unicode-property-regex-7.16.5" = { 611 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 612 packageName = "@babel/plugin-proposal-unicode-property-regex"; 613 - version = "7.16.5"; 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz"; 616 - sha512 = "s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg=="; 617 }; 618 }; 619 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 652 sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; 653 }; 654 }; 655 - "@babel/plugin-syntax-decorators-7.16.5" = { 656 name = "_at_babel_slash_plugin-syntax-decorators"; 657 packageName = "@babel/plugin-syntax-decorators"; 658 - version = "7.16.5"; 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.16.5.tgz"; 661 - sha512 = "3CbYTXfflvyy8O819uhZcZSMedZG4J8yS/NLTc/8T24M9ke1GssTGvg8VZu3Yn2LU5IyQSv1CmPq0a9JWHXJwg=="; 662 }; 663 }; 664 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 769 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 770 }; 771 }; 772 - "@babel/plugin-syntax-typescript-7.16.5" = { 773 - name = "_at_babel_slash_plugin-syntax-typescript"; 774 - packageName = "@babel/plugin-syntax-typescript"; 775 - version = "7.16.5"; 776 - src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.16.5.tgz"; 778 - sha512 = "/d4//lZ1Vqb4mZ5xTep3dDK888j7BGM/iKqBmndBaoYAFPlPKrGU608VVBz5JeyAb6YQDjRu1UKqj86UhwWVgw=="; 779 - }; 780 - }; 781 "@babel/plugin-syntax-typescript-7.16.7" = { 782 name = "_at_babel_slash_plugin-syntax-typescript"; 783 packageName = "@babel/plugin-syntax-typescript"; ··· 787 sha512 = "YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A=="; 788 }; 789 }; 790 - "@babel/plugin-transform-arrow-functions-7.16.5" = { 791 name = "_at_babel_slash_plugin-transform-arrow-functions"; 792 packageName = "@babel/plugin-transform-arrow-functions"; 793 - version = "7.16.5"; 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz"; 796 - sha512 = "8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ=="; 797 }; 798 }; 799 - "@babel/plugin-transform-async-to-generator-7.16.5" = { 800 name = "_at_babel_slash_plugin-transform-async-to-generator"; 801 packageName = "@babel/plugin-transform-async-to-generator"; 802 - version = "7.16.5"; 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz"; 805 - sha512 = "TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w=="; 806 }; 807 }; 808 - "@babel/plugin-transform-block-scoped-functions-7.16.5" = { 809 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 810 packageName = "@babel/plugin-transform-block-scoped-functions"; 811 - version = "7.16.5"; 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz"; 814 - sha512 = "BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw=="; 815 }; 816 }; 817 - "@babel/plugin-transform-block-scoping-7.16.5" = { 818 name = "_at_babel_slash_plugin-transform-block-scoping"; 819 packageName = "@babel/plugin-transform-block-scoping"; 820 - version = "7.16.5"; 821 src = fetchurl { 822 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz"; 823 - sha512 = "JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ=="; 824 }; 825 }; 826 - "@babel/plugin-transform-classes-7.16.5" = { 827 name = "_at_babel_slash_plugin-transform-classes"; 828 packageName = "@babel/plugin-transform-classes"; 829 - version = "7.16.5"; 830 src = fetchurl { 831 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz"; 832 - sha512 = "DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA=="; 833 }; 834 }; 835 - "@babel/plugin-transform-computed-properties-7.16.5" = { 836 name = "_at_babel_slash_plugin-transform-computed-properties"; 837 packageName = "@babel/plugin-transform-computed-properties"; 838 - version = "7.16.5"; 839 src = fetchurl { 840 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz"; 841 - sha512 = "n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg=="; 842 }; 843 }; 844 - "@babel/plugin-transform-destructuring-7.16.5" = { 845 name = "_at_babel_slash_plugin-transform-destructuring"; 846 packageName = "@babel/plugin-transform-destructuring"; 847 - version = "7.16.5"; 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz"; 850 - sha512 = "GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg=="; 851 }; 852 }; 853 - "@babel/plugin-transform-dotall-regex-7.16.5" = { 854 name = "_at_babel_slash_plugin-transform-dotall-regex"; 855 packageName = "@babel/plugin-transform-dotall-regex"; 856 - version = "7.16.5"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz"; 859 - sha512 = "iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw=="; 860 }; 861 }; 862 - "@babel/plugin-transform-duplicate-keys-7.16.5" = { 863 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 864 packageName = "@babel/plugin-transform-duplicate-keys"; 865 - version = "7.16.5"; 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz"; 868 - sha512 = "81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg=="; 869 }; 870 }; 871 - "@babel/plugin-transform-exponentiation-operator-7.16.5" = { 872 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 873 packageName = "@babel/plugin-transform-exponentiation-operator"; 874 - version = "7.16.5"; 875 src = fetchurl { 876 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz"; 877 - sha512 = "12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA=="; 878 }; 879 }; 880 - "@babel/plugin-transform-for-of-7.16.5" = { 881 name = "_at_babel_slash_plugin-transform-for-of"; 882 packageName = "@babel/plugin-transform-for-of"; 883 - version = "7.16.5"; 884 src = fetchurl { 885 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz"; 886 - sha512 = "+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw=="; 887 }; 888 }; 889 - "@babel/plugin-transform-function-name-7.16.5" = { 890 name = "_at_babel_slash_plugin-transform-function-name"; 891 packageName = "@babel/plugin-transform-function-name"; 892 - version = "7.16.5"; 893 src = fetchurl { 894 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz"; 895 - sha512 = "Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ=="; 896 }; 897 }; 898 - "@babel/plugin-transform-literals-7.16.5" = { 899 name = "_at_babel_slash_plugin-transform-literals"; 900 packageName = "@babel/plugin-transform-literals"; 901 - version = "7.16.5"; 902 src = fetchurl { 903 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz"; 904 - sha512 = "B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw=="; 905 }; 906 }; 907 - "@babel/plugin-transform-member-expression-literals-7.16.5" = { 908 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 909 packageName = "@babel/plugin-transform-member-expression-literals"; 910 - version = "7.16.5"; 911 src = fetchurl { 912 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz"; 913 - sha512 = "d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ=="; 914 }; 915 }; 916 - "@babel/plugin-transform-modules-amd-7.16.5" = { 917 name = "_at_babel_slash_plugin-transform-modules-amd"; 918 packageName = "@babel/plugin-transform-modules-amd"; 919 - version = "7.16.5"; 920 src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz"; 922 - sha512 = "oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ=="; 923 }; 924 }; 925 - "@babel/plugin-transform-modules-commonjs-7.16.5" = { 926 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 927 packageName = "@babel/plugin-transform-modules-commonjs"; 928 - version = "7.16.5"; 929 src = fetchurl { 930 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz"; 931 - sha512 = "ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ=="; 932 }; 933 }; 934 - "@babel/plugin-transform-modules-systemjs-7.16.5" = { 935 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 936 packageName = "@babel/plugin-transform-modules-systemjs"; 937 - version = "7.16.5"; 938 src = fetchurl { 939 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz"; 940 - sha512 = "53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA=="; 941 }; 942 }; 943 - "@babel/plugin-transform-modules-umd-7.16.5" = { 944 name = "_at_babel_slash_plugin-transform-modules-umd"; 945 packageName = "@babel/plugin-transform-modules-umd"; 946 - version = "7.16.5"; 947 src = fetchurl { 948 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz"; 949 - sha512 = "qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw=="; 950 }; 951 }; 952 - "@babel/plugin-transform-named-capturing-groups-regex-7.16.5" = { 953 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 954 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 955 - version = "7.16.5"; 956 src = fetchurl { 957 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz"; 958 - sha512 = "/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA=="; 959 }; 960 }; 961 - "@babel/plugin-transform-new-target-7.16.5" = { 962 name = "_at_babel_slash_plugin-transform-new-target"; 963 packageName = "@babel/plugin-transform-new-target"; 964 - version = "7.16.5"; 965 src = fetchurl { 966 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz"; 967 - sha512 = "ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg=="; 968 }; 969 }; 970 - "@babel/plugin-transform-object-super-7.16.5" = { 971 name = "_at_babel_slash_plugin-transform-object-super"; 972 packageName = "@babel/plugin-transform-object-super"; 973 - version = "7.16.5"; 974 src = fetchurl { 975 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz"; 976 - sha512 = "tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg=="; 977 }; 978 }; 979 - "@babel/plugin-transform-parameters-7.16.5" = { 980 name = "_at_babel_slash_plugin-transform-parameters"; 981 packageName = "@babel/plugin-transform-parameters"; 982 - version = "7.16.5"; 983 src = fetchurl { 984 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz"; 985 - sha512 = "B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA=="; 986 }; 987 }; 988 - "@babel/plugin-transform-property-literals-7.16.5" = { 989 name = "_at_babel_slash_plugin-transform-property-literals"; 990 packageName = "@babel/plugin-transform-property-literals"; 991 - version = "7.16.5"; 992 src = fetchurl { 993 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz"; 994 - sha512 = "+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg=="; 995 }; 996 }; 997 - "@babel/plugin-transform-regenerator-7.16.5" = { 998 name = "_at_babel_slash_plugin-transform-regenerator"; 999 packageName = "@babel/plugin-transform-regenerator"; 1000 - version = "7.16.5"; 1001 src = fetchurl { 1002 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz"; 1003 - sha512 = "2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg=="; 1004 }; 1005 }; 1006 - "@babel/plugin-transform-reserved-words-7.16.5" = { 1007 name = "_at_babel_slash_plugin-transform-reserved-words"; 1008 packageName = "@babel/plugin-transform-reserved-words"; 1009 - version = "7.16.5"; 1010 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz"; 1012 - sha512 = "aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw=="; 1013 }; 1014 }; 1015 - "@babel/plugin-transform-shorthand-properties-7.16.5" = { 1016 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 1017 packageName = "@babel/plugin-transform-shorthand-properties"; 1018 - version = "7.16.5"; 1019 src = fetchurl { 1020 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz"; 1021 - sha512 = "ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg=="; 1022 }; 1023 }; 1024 - "@babel/plugin-transform-spread-7.16.5" = { 1025 name = "_at_babel_slash_plugin-transform-spread"; 1026 packageName = "@babel/plugin-transform-spread"; 1027 - version = "7.16.5"; 1028 src = fetchurl { 1029 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz"; 1030 - sha512 = "5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw=="; 1031 }; 1032 }; 1033 - "@babel/plugin-transform-sticky-regex-7.16.5" = { 1034 name = "_at_babel_slash_plugin-transform-sticky-regex"; 1035 packageName = "@babel/plugin-transform-sticky-regex"; 1036 - version = "7.16.5"; 1037 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz"; 1039 - sha512 = "usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg=="; 1040 }; 1041 }; 1042 - "@babel/plugin-transform-template-literals-7.16.5" = { 1043 name = "_at_babel_slash_plugin-transform-template-literals"; 1044 packageName = "@babel/plugin-transform-template-literals"; 1045 - version = "7.16.5"; 1046 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz"; 1048 - sha512 = "gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ=="; 1049 }; 1050 }; 1051 - "@babel/plugin-transform-typeof-symbol-7.16.5" = { 1052 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 1053 packageName = "@babel/plugin-transform-typeof-symbol"; 1054 - version = "7.16.5"; 1055 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz"; 1057 - sha512 = "ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ=="; 1058 }; 1059 }; 1060 - "@babel/plugin-transform-typescript-7.16.1" = { 1061 name = "_at_babel_slash_plugin-transform-typescript"; 1062 packageName = "@babel/plugin-transform-typescript"; 1063 - version = "7.16.1"; 1064 src = fetchurl { 1065 - url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.1.tgz"; 1066 - sha512 = "NO4XoryBng06jjw/qWEU2LhcLJr1tWkhpMam/H4eas/CDKMX/b2/Ylb6EI256Y7+FVPCawwSM1rrJNOpDiz+Lg=="; 1067 }; 1068 }; 1069 - "@babel/plugin-transform-unicode-escapes-7.16.5" = { 1070 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 1071 packageName = "@babel/plugin-transform-unicode-escapes"; 1072 - version = "7.16.5"; 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz"; 1075 - sha512 = "shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q=="; 1076 }; 1077 }; 1078 - "@babel/plugin-transform-unicode-regex-7.16.5" = { 1079 name = "_at_babel_slash_plugin-transform-unicode-regex"; 1080 packageName = "@babel/plugin-transform-unicode-regex"; 1081 - version = "7.16.5"; 1082 src = fetchurl { 1083 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz"; 1084 - sha512 = "GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw=="; 1085 }; 1086 }; 1087 - "@babel/preset-env-7.16.5" = { 1088 name = "_at_babel_slash_preset-env"; 1089 packageName = "@babel/preset-env"; 1090 - version = "7.16.5"; 1091 src = fetchurl { 1092 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.5.tgz"; 1093 - sha512 = "MiJJW5pwsktG61NDxpZ4oJ1CKxM1ncam9bzRtx9g40/WkLRkxFP6mhpkYV0/DxcciqoiHicx291+eUQrXb/SfQ=="; 1094 }; 1095 }; 1096 "@babel/preset-modules-0.1.5" = { ··· 1102 sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; 1103 }; 1104 }; 1105 - "@babel/preset-typescript-7.16.5" = { 1106 name = "_at_babel_slash_preset-typescript"; 1107 packageName = "@babel/preset-typescript"; 1108 - version = "7.16.5"; 1109 src = fetchurl { 1110 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.5.tgz"; 1111 - sha512 = "lmAWRoJ9iOSvs3DqOndQpj8XqXkzaiQs50VG/zESiI9D3eoZhGriU675xNCr0UwvsuXrhMAGvyk1w+EVWF3u8Q=="; 1112 }; 1113 }; 1114 - "@babel/runtime-7.16.5" = { 1115 name = "_at_babel_slash_runtime"; 1116 packageName = "@babel/runtime"; 1117 - version = "7.16.5"; 1118 - src = fetchurl { 1119 - url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.5.tgz"; 1120 - sha512 = "TXWihFIS3Pyv5hzR7j6ihmeLkZfrXGxAr5UfSl8CHf+6q/wpiYDkUau0czckpYG8QmnCIuPpdLtuA9VmuGGyMA=="; 1121 - }; 1122 - }; 1123 - "@babel/template-7.16.0" = { 1124 - name = "_at_babel_slash_template"; 1125 - packageName = "@babel/template"; 1126 - version = "7.16.0"; 1127 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz"; 1129 - sha512 = "MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="; 1130 }; 1131 }; 1132 "@babel/template-7.16.7" = { ··· 1138 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 1139 }; 1140 }; 1141 - "@babel/traverse-7.16.5" = { 1142 name = "_at_babel_slash_traverse"; 1143 packageName = "@babel/traverse"; 1144 - version = "7.16.5"; 1145 src = fetchurl { 1146 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz"; 1147 - sha512 = "FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ=="; 1148 }; 1149 }; 1150 - "@babel/traverse-7.16.7" = { 1151 - name = "_at_babel_slash_traverse"; 1152 - packageName = "@babel/traverse"; 1153 - version = "7.16.7"; 1154 - src = fetchurl { 1155 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.7.tgz"; 1156 - sha512 = "8KWJPIb8c2VvY8AJrydh6+fVRo2ODx1wYBU2398xJVq0JomuLBZmVQzLPBblJgHIGYG4znCpUZUZ0Pt2vdmVYQ=="; 1157 - }; 1158 - }; 1159 - "@babel/types-7.16.0" = { 1160 name = "_at_babel_slash_types"; 1161 packageName = "@babel/types"; 1162 - version = "7.16.0"; 1163 src = fetchurl { 1164 - url = "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz"; 1165 - sha512 = "PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="; 1166 - }; 1167 - }; 1168 - "@babel/types-7.16.7" = { 1169 - name = "_at_babel_slash_types"; 1170 - packageName = "@babel/types"; 1171 - version = "7.16.7"; 1172 - src = fetchurl { 1173 - url = "https://registry.npmjs.org/@babel/types/-/types-7.16.7.tgz"; 1174 - sha512 = "E8HuV7FO9qLpx6OtoGfUQ2cjIYnbFwvZWYBS+87EwtdMvmUPJSwykpovFB+8insbpF0uJcpr8KMUi64XZntZcg=="; 1175 }; 1176 }; 1177 "@bcoe/v8-coverage-0.2.3" = { ··· 1201 sha512 = "BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ=="; 1202 }; 1203 }; 1204 - "@humanwhocodes/config-array-0.9.2" = { 1205 name = "_at_humanwhocodes_slash_config-array"; 1206 packageName = "@humanwhocodes/config-array"; 1207 - version = "0.9.2"; 1208 src = fetchurl { 1209 - url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.2.tgz"; 1210 - sha512 = "UXOuFCGcwciWckOpmfKDq/GyhlTf9pN/BzG//x8p8zTOFEcGuA68ANXheFS0AGvy3qgZqLBUkMs7hqzqCKOVwA=="; 1211 }; 1212 }; 1213 "@humanwhocodes/object-schema-1.2.1" = { ··· 1237 sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 1238 }; 1239 }; 1240 - "@jest/console-27.4.2" = { 1241 name = "_at_jest_slash_console"; 1242 packageName = "@jest/console"; 1243 - version = "27.4.2"; 1244 src = fetchurl { 1245 - url = "https://registry.npmjs.org/@jest/console/-/console-27.4.2.tgz"; 1246 - sha512 = "xknHThRsPB/To1FUbi6pCe43y58qFC03zfb6R7fDb/FfC7k2R3i1l+izRBJf8DI46KhYGRaF14Eo9A3qbBoixg=="; 1247 }; 1248 }; 1249 - "@jest/core-27.4.5" = { 1250 name = "_at_jest_slash_core"; 1251 packageName = "@jest/core"; 1252 - version = "27.4.5"; 1253 src = fetchurl { 1254 - url = "https://registry.npmjs.org/@jest/core/-/core-27.4.5.tgz"; 1255 - sha512 = "3tm/Pevmi8bDsgvo73nX8p/WPng6KWlCyScW10FPEoN1HU4pwI83tJ3TsFvi1FfzsjwUlMNEPowgb/rPau/LTQ=="; 1256 }; 1257 }; 1258 - "@jest/environment-27.4.4" = { 1259 name = "_at_jest_slash_environment"; 1260 packageName = "@jest/environment"; 1261 - version = "27.4.4"; 1262 src = fetchurl { 1263 - url = "https://registry.npmjs.org/@jest/environment/-/environment-27.4.4.tgz"; 1264 - sha512 = "q+niMx7cJgt/t/b6dzLOh4W8Ef/8VyKG7hxASK39jakijJzbFBGpptx3RXz13FFV7OishQ9lTbv+dQ5K3EhfDQ=="; 1265 }; 1266 }; 1267 - "@jest/fake-timers-27.4.2" = { 1268 name = "_at_jest_slash_fake-timers"; 1269 packageName = "@jest/fake-timers"; 1270 - version = "27.4.2"; 1271 src = fetchurl { 1272 - url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.2.tgz"; 1273 - sha512 = "f/Xpzn5YQk5adtqBgvw1V6bF8Nx3hY0OIRRpCvWcfPl0EAjdqWPdhH3t/3XpiWZqtjIEHDyMKP9ajpva1l4Zmg=="; 1274 }; 1275 }; 1276 - "@jest/globals-27.4.4" = { 1277 name = "_at_jest_slash_globals"; 1278 packageName = "@jest/globals"; 1279 - version = "27.4.4"; 1280 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@jest/globals/-/globals-27.4.4.tgz"; 1282 - sha512 = "bqpqQhW30BOreXM8bA8t8JbOQzsq/WnPTnBl+It3UxAD9J8yxEAaBEylHx1dtBapAr/UBk8GidXbzmqnee8tYQ=="; 1283 }; 1284 }; 1285 - "@jest/reporters-27.4.5" = { 1286 name = "_at_jest_slash_reporters"; 1287 packageName = "@jest/reporters"; 1288 - version = "27.4.5"; 1289 src = fetchurl { 1290 - url = "https://registry.npmjs.org/@jest/reporters/-/reporters-27.4.5.tgz"; 1291 - sha512 = "3orsG4vi8zXuBqEoy2LbnC1kuvkg1KQUgqNxmxpQgIOQEPeV0onvZu+qDQnEoX8qTQErtqn/xzcnbpeTuOLSiA=="; 1292 }; 1293 }; 1294 "@jest/source-map-27.4.0" = { ··· 1300 sha512 = "Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ=="; 1301 }; 1302 }; 1303 - "@jest/test-result-27.4.2" = { 1304 name = "_at_jest_slash_test-result"; 1305 packageName = "@jest/test-result"; 1306 - version = "27.4.2"; 1307 src = fetchurl { 1308 - url = "https://registry.npmjs.org/@jest/test-result/-/test-result-27.4.2.tgz"; 1309 - sha512 = "kr+bCrra9jfTgxHXHa2UwoQjxvQk3Am6QbpAiJ5x/50LW8llOYrxILkqY0lZRW/hu8FXesnudbql263+EW9iNA=="; 1310 }; 1311 }; 1312 - "@jest/test-sequencer-27.4.5" = { 1313 name = "_at_jest_slash_test-sequencer"; 1314 packageName = "@jest/test-sequencer"; 1315 - version = "27.4.5"; 1316 src = fetchurl { 1317 - url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.4.5.tgz"; 1318 - sha512 = "n5woIn/1v+FT+9hniymHPARA9upYUmfi5Pw9ewVwXCDlK4F5/Gkees9v8vdjGdAIJ2MPHLHodiajLpZZanWzEQ=="; 1319 }; 1320 }; 1321 - "@jest/transform-27.4.5" = { 1322 name = "_at_jest_slash_transform"; 1323 packageName = "@jest/transform"; 1324 - version = "27.4.5"; 1325 src = fetchurl { 1326 - url = "https://registry.npmjs.org/@jest/transform/-/transform-27.4.5.tgz"; 1327 - sha512 = "PuMet2UlZtlGzwc6L+aZmR3I7CEBpqadO03pU40l2RNY2fFJ191b9/ITB44LNOhVtsyykx0OZvj0PCyuLm7Eew=="; 1328 }; 1329 }; 1330 "@jest/types-27.4.2" = { ··· 1498 sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="; 1499 }; 1500 }; 1501 - "@types/babel__core-7.1.17" = { 1502 - name = "_at_types_slash_babel__core"; 1503 - packageName = "@types/babel__core"; 1504 - version = "7.1.17"; 1505 - src = fetchurl { 1506 - url = "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.17.tgz"; 1507 - sha512 = "6zzkezS9QEIL8yCBvXWxPTJPNuMeECJVxSOhxNY/jfq9LxOTHivaYTqr37n9LknWWRTIkzqH2UilS5QFvfa90A=="; 1508 - }; 1509 - }; 1510 "@types/babel__core-7.1.18" = { 1511 name = "_at_types_slash_babel__core"; 1512 packageName = "@types/babel__core"; ··· 1624 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 1625 }; 1626 }; 1627 - "@types/jest-27.0.3" = { 1628 name = "_at_types_slash_jest"; 1629 packageName = "@types/jest"; 1630 - version = "27.0.3"; 1631 src = fetchurl { 1632 - url = "https://registry.npmjs.org/@types/jest/-/jest-27.0.3.tgz"; 1633 - sha512 = "cmmwv9t7gBYt7hNKH5Spu7Kuu/DotGa+Ff+JGRKZ4db5eh8PnKS4LuebJ3YLUoyOyIHraTGyULn23YtEAm0VSg=="; 1634 }; 1635 }; 1636 "@types/js-yaml-4.0.5" = { ··· 1687 sha512 = "ICDoQMORMjOSqfNFXT4ENXfwwCir1BPblXNm0SPH7C4Q10ou+pvVagcFAJ+rrzf3A47tGU4K/KbzKu7wO9j45Q=="; 1688 }; 1689 }; 1690 - "@types/node-17.0.4" = { 1691 name = "_at_types_slash_node"; 1692 packageName = "@types/node"; 1693 - version = "17.0.4"; 1694 src = fetchurl { 1695 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.4.tgz"; 1696 - sha512 = "6xwbrW4JJiJLgF+zNypN5wr2ykM9/jHcL7rQ8fZe2vuftggjzZeRSM4OwRc6Xk8qWjwJ99qVHo/JgOGmomWRog=="; 1697 }; 1698 }; 1699 - "@types/node-17.0.5" = { 1700 name = "_at_types_slash_node"; 1701 packageName = "@types/node"; 1702 - version = "17.0.5"; 1703 src = fetchurl { 1704 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.5.tgz"; 1705 - sha512 = "w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw=="; 1706 }; 1707 }; 1708 "@types/object-assign-deep-0.4.0" = { ··· 1714 sha512 = "3D0F3rHRNDc8cQSXNzwF1jBrJi28Mdrhc10ZLlqbJWDPYRWTTWB9Tc8JoKrgBvLKioXoPoHT6Uzf3s2F7akCUg=="; 1715 }; 1716 }; 1717 - "@types/prettier-2.4.2" = { 1718 name = "_at_types_slash_prettier"; 1719 packageName = "@types/prettier"; 1720 - version = "2.4.2"; 1721 src = fetchurl { 1722 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.2.tgz"; 1723 - sha512 = "ekoj4qOQYp7CvjX8ZDBgN86w3MqQhLE1hczEJbEIjgFEumDy+na/4AJAbLXfgEWFNB2pKadM5rPFtuSGMWK7xA=="; 1724 }; 1725 }; 1726 "@types/rimraf-3.0.2" = { ··· 1777 sha512 = "7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="; 1778 }; 1779 }; 1780 - "@typescript-eslint/eslint-plugin-5.8.0" = { 1781 name = "_at_typescript-eslint_slash_eslint-plugin"; 1782 packageName = "@typescript-eslint/eslint-plugin"; 1783 - version = "5.8.0"; 1784 - src = fetchurl { 1785 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.8.0.tgz"; 1786 - sha512 = "spu1UW7QuBn0nJ6+psnfCc3iVoQAifjKORgBngKOmC8U/1tbe2YJMzYQqDGYB4JCss7L8+RM2kKLb1B1Aw9BNA=="; 1787 - }; 1788 - }; 1789 - "@typescript-eslint/experimental-utils-5.8.0" = { 1790 - name = "_at_typescript-eslint_slash_experimental-utils"; 1791 - packageName = "@typescript-eslint/experimental-utils"; 1792 - version = "5.8.0"; 1793 - src = fetchurl { 1794 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.8.0.tgz"; 1795 - sha512 = "KN5FvNH71bhZ8fKtL+lhW7bjm7cxs1nt+hrDZWIqb6ViCffQcWyLunGrgvISgkRojIDcXIsH+xlFfI4RCDA0xA=="; 1796 - }; 1797 - }; 1798 - "@typescript-eslint/experimental-utils-5.8.1" = { 1799 - name = "_at_typescript-eslint_slash_experimental-utils"; 1800 - packageName = "@typescript-eslint/experimental-utils"; 1801 - version = "5.8.1"; 1802 src = fetchurl { 1803 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.8.1.tgz"; 1804 - sha512 = "fbodVnjIDU4JpeXWRDsG5IfIjYBxEvs8EBO8W1+YVdtrc2B9ppfof5sZhVEDOtgTfFHnYQJDI8+qdqLYO4ceww=="; 1805 }; 1806 }; 1807 - "@typescript-eslint/parser-5.8.0" = { 1808 name = "_at_typescript-eslint_slash_parser"; 1809 packageName = "@typescript-eslint/parser"; 1810 - version = "5.8.0"; 1811 src = fetchurl { 1812 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.8.0.tgz"; 1813 - sha512 = "Gleacp/ZhRtJRYs5/T8KQR3pAQjQI89Dn/k+OzyCKOsLiZH2/Vh60cFBTnFsHNI6WAD+lNUo/xGZ4NeA5u0Ipw=="; 1814 }; 1815 }; 1816 - "@typescript-eslint/scope-manager-5.8.0" = { 1817 name = "_at_typescript-eslint_slash_scope-manager"; 1818 packageName = "@typescript-eslint/scope-manager"; 1819 - version = "5.8.0"; 1820 src = fetchurl { 1821 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.8.0.tgz"; 1822 - sha512 = "x82CYJsLOjPCDuFFEbS6e7K1QEWj7u5Wk1alw8A+gnJiYwNnDJk0ib6PCegbaPMjrfBvFKa7SxE3EOnnIQz2Gg=="; 1823 }; 1824 }; 1825 - "@typescript-eslint/scope-manager-5.8.1" = { 1826 name = "_at_typescript-eslint_slash_scope-manager"; 1827 packageName = "@typescript-eslint/scope-manager"; 1828 - version = "5.8.1"; 1829 src = fetchurl { 1830 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.8.1.tgz"; 1831 - sha512 = "DGxJkNyYruFH3NIZc3PwrzwOQAg7vvgsHsHCILOLvUpupgkwDZdNq/cXU3BjF4LNrCsVg0qxEyWasys5AiJ85Q=="; 1832 }; 1833 }; 1834 - "@typescript-eslint/types-5.8.0" = { 1835 name = "_at_typescript-eslint_slash_types"; 1836 packageName = "@typescript-eslint/types"; 1837 - version = "5.8.0"; 1838 src = fetchurl { 1839 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.8.0.tgz"; 1840 - sha512 = "LdCYOqeqZWqCMOmwFnum6YfW9F3nKuxJiR84CdIRN5nfHJ7gyvGpXWqL/AaW0k3Po0+wm93ARAsOdzlZDPCcXg=="; 1841 }; 1842 }; 1843 - "@typescript-eslint/types-5.8.1" = { 1844 name = "_at_typescript-eslint_slash_types"; 1845 packageName = "@typescript-eslint/types"; 1846 - version = "5.8.1"; 1847 src = fetchurl { 1848 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.8.1.tgz"; 1849 - sha512 = "L/FlWCCgnjKOLefdok90/pqInkomLnAcF9UAzNr+DSqMC3IffzumHTQTrINXhP1gVp9zlHiYYjvozVZDPleLcA=="; 1850 }; 1851 }; 1852 - "@typescript-eslint/typescript-estree-5.8.0" = { 1853 name = "_at_typescript-eslint_slash_typescript-estree"; 1854 packageName = "@typescript-eslint/typescript-estree"; 1855 - version = "5.8.0"; 1856 src = fetchurl { 1857 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.8.0.tgz"; 1858 - sha512 = "srfeZ3URdEcUsSLbkOFqS7WoxOqn8JNil2NSLO9O+I2/Uyc85+UlfpEvQHIpj5dVts7KKOZnftoJD/Fdv0L7nQ=="; 1859 }; 1860 }; 1861 - "@typescript-eslint/typescript-estree-5.8.1" = { 1862 name = "_at_typescript-eslint_slash_typescript-estree"; 1863 packageName = "@typescript-eslint/typescript-estree"; 1864 - version = "5.8.1"; 1865 src = fetchurl { 1866 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.8.1.tgz"; 1867 - sha512 = "26lQ8l8tTbG7ri7xEcCFT9ijU5Fk+sx/KRRyyzCv7MQ+rZZlqiDPtMKWLC8P7o+dtCnby4c+OlxuX1tp8WfafQ=="; 1868 }; 1869 }; 1870 - "@typescript-eslint/visitor-keys-5.8.0" = { 1871 name = "_at_typescript-eslint_slash_visitor-keys"; 1872 packageName = "@typescript-eslint/visitor-keys"; 1873 - version = "5.8.0"; 1874 src = fetchurl { 1875 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.8.0.tgz"; 1876 - sha512 = "+HDIGOEMnqbxdAHegxvnOqESUH6RWFRR2b8qxP1W9CZnnYh4Usz6MBL+2KMAgPk/P0o9c1HqnYtwzVH6GTIqug=="; 1877 }; 1878 }; 1879 - "@typescript-eslint/visitor-keys-5.8.1" = { 1880 name = "_at_typescript-eslint_slash_visitor-keys"; 1881 packageName = "@typescript-eslint/visitor-keys"; 1882 - version = "5.8.1"; 1883 src = fetchurl { 1884 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.8.1.tgz"; 1885 - sha512 = "SWgiWIwocK6NralrJarPZlWdr0hZnj5GXHIgfdm8hNkyKvpeQuFyLP6YjSIe9kf3YBIfU6OHSZLYkQ+smZwtNg=="; 1886 }; 1887 }; 1888 "abab-2.0.5" = { ··· 1903 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1904 }; 1905 }; 1906 - "acorn-8.6.0" = { 1907 - name = "acorn"; 1908 - packageName = "acorn"; 1909 - version = "8.6.0"; 1910 - src = fetchurl { 1911 - url = "https://registry.npmjs.org/acorn/-/acorn-8.6.0.tgz"; 1912 - sha512 = "U1riIR+lBSNi3IbxtaHOIKdH8sLFv3NYfNv8sg7ZsNhcfl4HF2++BfqqrNAxoCLQW1iiylOj76ecnaUxz+z9yw=="; 1913 - }; 1914 - }; 1915 "acorn-8.7.0" = { 1916 name = "acorn"; 1917 packageName = "acorn"; ··· 1966 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1967 }; 1968 }; 1969 - "ajv-8.8.2" = { 1970 name = "ajv"; 1971 packageName = "ajv"; 1972 - version = "8.8.2"; 1973 src = fetchurl { 1974 - url = "https://registry.npmjs.org/ajv/-/ajv-8.8.2.tgz"; 1975 - sha512 = "x9VuX+R/jcFj1DHo/fCp99esgGDWiHENrKxaCENuCxpoMCmAt/COCGVDwA7kleEpEzJjDnvh3yGoOuLu0Dtllw=="; 1976 - }; 1977 - }; 1978 - "ansi-colors-4.1.1" = { 1979 - name = "ansi-colors"; 1980 - packageName = "ansi-colors"; 1981 - version = "4.1.1"; 1982 - src = fetchurl { 1983 - url = "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.1.tgz"; 1984 - sha512 = "JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA=="; 1985 }; 1986 }; 1987 "ansi-escapes-4.3.2" = { ··· 2101 sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; 2102 }; 2103 }; 2104 - "async-3.2.2" = { 2105 name = "async"; 2106 packageName = "async"; 2107 - version = "3.2.2"; 2108 src = fetchurl { 2109 - url = "https://registry.npmjs.org/async/-/async-3.2.2.tgz"; 2110 - sha512 = "H0E+qZaDEfx/FY4t7iLRv1W2fFI6+pyCeTw1uN20AQPiwqwM6ojPxHxdLv4z8hi2DtnW9BOckSspLucW7pIE5g=="; 2111 }; 2112 }; 2113 "asynckit-0.4.0" = { ··· 2119 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 2120 }; 2121 }; 2122 - "axios-0.24.0" = { 2123 name = "axios"; 2124 packageName = "axios"; 2125 - version = "0.24.0"; 2126 src = fetchurl { 2127 - url = "https://registry.npmjs.org/axios/-/axios-0.24.0.tgz"; 2128 - sha512 = "Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA=="; 2129 }; 2130 }; 2131 - "babel-jest-27.4.5" = { 2132 name = "babel-jest"; 2133 packageName = "babel-jest"; 2134 - version = "27.4.5"; 2135 src = fetchurl { 2136 - url = "https://registry.npmjs.org/babel-jest/-/babel-jest-27.4.5.tgz"; 2137 - sha512 = "3uuUTjXbgtODmSv/DXO9nZfD52IyC2OYTFaXGRzL0kpykzroaquCrD5+lZNafTvZlnNqZHt5pb0M08qVBZnsnA=="; 2138 }; 2139 }; 2140 "babel-plugin-dynamic-import-node-2.3.3" = { ··· 2164 sha512 = "Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw=="; 2165 }; 2166 }; 2167 - "babel-plugin-polyfill-corejs2-0.3.0" = { 2168 name = "babel-plugin-polyfill-corejs2"; 2169 packageName = "babel-plugin-polyfill-corejs2"; 2170 - version = "0.3.0"; 2171 src = fetchurl { 2172 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.0.tgz"; 2173 - sha512 = "wMDoBJ6uG4u4PNFh72Ty6t3EgfA91puCuAwKIazbQlci+ENb/UU9A3xG5lutjUIiXCIn1CY5L15r9LimiJyrSA=="; 2174 }; 2175 }; 2176 - "babel-plugin-polyfill-corejs3-0.4.0" = { 2177 name = "babel-plugin-polyfill-corejs3"; 2178 packageName = "babel-plugin-polyfill-corejs3"; 2179 - version = "0.4.0"; 2180 src = fetchurl { 2181 - url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.4.0.tgz"; 2182 - sha512 = "YxFreYwUfglYKdLUGvIF2nJEsGwj+RhWSX/ije3D2vQPOXuyMLMtg/cCGMDpOA7Nd+MwlNdnGODbd2EwUZPlsw=="; 2183 }; 2184 }; 2185 - "babel-plugin-polyfill-regenerator-0.3.0" = { 2186 name = "babel-plugin-polyfill-regenerator"; 2187 packageName = "babel-plugin-polyfill-regenerator"; 2188 - version = "0.3.0"; 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.0.tgz"; 2191 - sha512 = "dhAPTDLGoMW5/84wkgwiLRwMnio2i1fUe53EuvtKMv0pn2p3S8OCoV1xAzfJPl0KOX7IB89s2ib85vbYiea3jg=="; 2192 }; 2193 }; 2194 "babel-preset-current-node-syntax-1.0.1" = { ··· 2362 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2363 }; 2364 }; 2365 - "camelcase-6.2.1" = { 2366 name = "camelcase"; 2367 packageName = "camelcase"; 2368 - version = "6.2.1"; 2369 src = fetchurl { 2370 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz"; 2371 - sha512 = "tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA=="; 2372 }; 2373 }; 2374 - "caniuse-lite-1.0.30001292" = { 2375 name = "caniuse-lite"; 2376 packageName = "caniuse-lite"; 2377 - version = "1.0.30001292"; 2378 src = fetchurl { 2379 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001292.tgz"; 2380 - sha512 = "jnT4Tq0Q4ma+6nncYQVe7d73kmDmE9C3OGTx3MvW7lBM/eY1S1DZTMBON7dqV481RhNiS5OxD7k9JQvmDOTirw=="; 2381 - }; 2382 - }; 2383 - "caniuse-lite-1.0.30001294" = { 2384 - name = "caniuse-lite"; 2385 - packageName = "caniuse-lite"; 2386 - version = "1.0.30001294"; 2387 - src = fetchurl { 2388 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz"; 2389 - sha512 = "LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g=="; 2390 }; 2391 }; 2392 "chalk-2.4.2" = { ··· 2416 sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; 2417 }; 2418 }; 2419 - "chokidar-3.5.2" = { 2420 name = "chokidar"; 2421 packageName = "chokidar"; 2422 - version = "3.5.2"; 2423 src = fetchurl { 2424 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 2425 - sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 2426 }; 2427 }; 2428 "chownr-1.1.4" = { ··· 2486 src = fetchurl { 2487 url = "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"; 2488 sha512 = "iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="; 2489 - }; 2490 - }; 2491 - "collections-5.1.12" = { 2492 - name = "collections"; 2493 - packageName = "collections"; 2494 - version = "5.1.12"; 2495 - src = fetchurl { 2496 - url = "https://registry.npmjs.org/collections/-/collections-5.1.12.tgz"; 2497 - sha512 = "7WV0gdGlQFHjB//+/5JW4CdMnOlf7fWMMeM3EWvuao7RbK0MeFS01bZOgWmIH5DHDejSutf455QUZ56ZjjROXw=="; 2498 }; 2499 }; 2500 "color-3.2.1" = { ··· 2641 sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2642 }; 2643 }; 2644 - "core-js-3.20.1" = { 2645 name = "core-js"; 2646 packageName = "core-js"; 2647 - version = "3.20.1"; 2648 src = fetchurl { 2649 - url = "https://registry.npmjs.org/core-js/-/core-js-3.20.1.tgz"; 2650 - sha512 = "btdpStYFQScnNVQ5slVcr858KP0YWYjV16eGJQw8Gg7CWtu/2qNvIM3qVRIR3n1pK2R9NNOrTevbvAYxajwEjg=="; 2651 }; 2652 }; 2653 - "core-js-compat-3.20.1" = { 2654 name = "core-js-compat"; 2655 packageName = "core-js-compat"; 2656 - version = "3.20.1"; 2657 src = fetchurl { 2658 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.1.tgz"; 2659 - sha512 = "AVhKZNpqMV3Jz8hU0YEXXE06qoxtQGsAqU0u1neUngz5IusDJRX/ZJ6t3i7mS7QxNyEONbCo14GprkBrxPlTZA=="; 2660 }; 2661 }; 2662 "core-util-is-1.0.3" = { ··· 2785 sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 2786 }; 2787 }; 2788 - "deep-object-diff-1.1.0" = { 2789 name = "deep-object-diff"; 2790 packageName = "deep-object-diff"; 2791 - version = "1.1.0"; 2792 src = fetchurl { 2793 - url = "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.0.tgz"; 2794 - sha512 = "b+QLs5vHgS+IoSNcUE4n9HP2NwcHj7aqnJWsjPtuG75Rh5TOaGt0OjAYInh77d5T16V5cRDC+Pw/6ZZZiETBGw=="; 2795 }; 2796 }; 2797 "deepmerge-4.2.2" = { ··· 2848 sha1 = "978857442c44749e4206613e37946205826abd80"; 2849 }; 2850 }; 2851 - "detect-libc-1.0.3" = { 2852 name = "detect-libc"; 2853 packageName = "detect-libc"; 2854 - version = "1.0.3"; 2855 src = fetchurl { 2856 - url = "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz"; 2857 - sha1 = "fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"; 2858 }; 2859 }; 2860 "detect-newline-3.1.0" = { ··· 2920 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2921 }; 2922 }; 2923 - "electron-to-chromium-1.4.28" = { 2924 name = "electron-to-chromium"; 2925 packageName = "electron-to-chromium"; 2926 - version = "1.4.28"; 2927 src = fetchurl { 2928 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.28.tgz"; 2929 - sha512 = "Gzbf0wUtKfyPaqf0Plz+Ctinf9eQIzxEqBHwSvbGfeOm9GMNdLxyu1dNiCUfM+x6r4BE0xUJNh3Nmg9gfAtTmg=="; 2930 }; 2931 }; 2932 - "electron-to-chromium-1.4.31" = { 2933 name = "electron-to-chromium"; 2934 packageName = "electron-to-chromium"; 2935 - version = "1.4.31"; 2936 src = fetchurl { 2937 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.31.tgz"; 2938 - sha512 = "t3XVQtk+Frkv6aTD4RRk0OqosU+VLe1dQFW83MDer78ZD6a52frgXuYOIsLYTQiH2Lm+JB2OKYcn7zrX+YGAiQ=="; 2939 }; 2940 }; 2941 "emittery-0.8.1" = { ··· 2983 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 2984 }; 2985 }; 2986 - "enquirer-2.3.6" = { 2987 - name = "enquirer"; 2988 - packageName = "enquirer"; 2989 - version = "2.3.6"; 2990 - src = fetchurl { 2991 - url = "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz"; 2992 - sha512 = "yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg=="; 2993 - }; 2994 - }; 2995 "escalade-3.1.1" = { 2996 name = "escalade"; 2997 packageName = "escalade"; ··· 3046 sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 3047 }; 3048 }; 3049 - "eslint-8.5.0" = { 3050 - name = "eslint"; 3051 - packageName = "eslint"; 3052 - version = "8.5.0"; 3053 - src = fetchurl { 3054 - url = "https://registry.npmjs.org/eslint/-/eslint-8.5.0.tgz"; 3055 - sha512 = "tVGSkgNbOfiHyVte8bCM8OmX+xG9PzVG/B4UCF60zx7j61WIVY/AqJECDgpLD4DbbESD0e174gOg3ZlrX15GDg=="; 3056 - }; 3057 - }; 3058 - "eslint-8.6.0" = { 3059 name = "eslint"; 3060 packageName = "eslint"; 3061 - version = "8.6.0"; 3062 src = fetchurl { 3063 - url = "https://registry.npmjs.org/eslint/-/eslint-8.6.0.tgz"; 3064 - sha512 = "UvxdOJ7mXFlw7iuHZA4jmzPaUqIw54mZrv+XPYKNbKdLR0et4rf60lIZUU9kiNtnzzMzGWxMV+tQ7uG7JG8DPw=="; 3065 }; 3066 }; 3067 "eslint-config-google-0.14.0" = { ··· 3073 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 3074 }; 3075 }; 3076 - "eslint-plugin-jest-25.3.0" = { 3077 - name = "eslint-plugin-jest"; 3078 - packageName = "eslint-plugin-jest"; 3079 - version = "25.3.0"; 3080 - src = fetchurl { 3081 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.3.0.tgz"; 3082 - sha512 = "79WQtuBsTN1S8Y9+7euBYwxIOia/k7ykkl9OCBHL3xuww5ecursHy/D8GCIlvzHVWv85gOkS5Kv6Sh7RxOgK1Q=="; 3083 - }; 3084 - }; 3085 - "eslint-plugin-jest-25.3.3" = { 3086 name = "eslint-plugin-jest"; 3087 packageName = "eslint-plugin-jest"; 3088 - version = "25.3.3"; 3089 src = fetchurl { 3090 - url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.3.3.tgz"; 3091 - sha512 = "qi7aduaU4/oWegWo0zH4kbJbx8+Be+ABTr72OnO68zTMcJeeSuyH1CduTGF4ATyNFgpE1zp0u10/gIhe+QDSfg=="; 3092 }; 3093 }; 3094 "eslint-scope-5.1.1" = { ··· 3127 sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 3128 }; 3129 }; 3130 - "eslint-visitor-keys-3.1.0" = { 3131 name = "eslint-visitor-keys"; 3132 packageName = "eslint-visitor-keys"; 3133 - version = "3.1.0"; 3134 - src = fetchurl { 3135 - url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.1.0.tgz"; 3136 - sha512 = "yWJFpu4DtjsWKkt5GeNBBuZMlNcYVs6vRCLoCVEJrTjaSB6LC98gFipNK/erM2Heg/E8mIK+hXG/pJMLK+eRZA=="; 3137 - }; 3138 - }; 3139 - "espree-9.2.0" = { 3140 - name = "espree"; 3141 - packageName = "espree"; 3142 - version = "9.2.0"; 3143 src = fetchurl { 3144 - url = "https://registry.npmjs.org/espree/-/espree-9.2.0.tgz"; 3145 - sha512 = "oP3utRkynpZWF/F2x/HZJ+AGtnIclaR7z1pYPxy7NYM2fSO6LgK/Rkny8anRSPK/VwEA1eqm2squui0T7ZMOBg=="; 3146 }; 3147 }; 3148 "espree-9.3.0" = { ··· 3244 sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 3245 }; 3246 }; 3247 - "expect-27.4.2" = { 3248 name = "expect"; 3249 packageName = "expect"; 3250 - version = "27.4.2"; 3251 src = fetchurl { 3252 - url = "https://registry.npmjs.org/expect/-/expect-27.4.2.tgz"; 3253 - sha512 = "BjAXIDC6ZOW+WBFNg96J22D27Nq5ohn+oGcuP2rtOtcjuxNoV9McpQ60PcQWhdFOSBIQdR72e+4HdnbZTFSTyg=="; 3254 }; 3255 }; 3256 "fast-deep-equal-3.1.3" = { ··· 3262 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 3263 }; 3264 }; 3265 - "fast-glob-3.2.7" = { 3266 name = "fast-glob"; 3267 packageName = "fast-glob"; 3268 - version = "3.2.7"; 3269 src = fetchurl { 3270 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz"; 3271 - sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q=="; 3272 }; 3273 }; 3274 "fast-json-stable-stringify-2.1.0" = { ··· 3379 sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 3380 }; 3381 }; 3382 - "flatted-3.2.4" = { 3383 name = "flatted"; 3384 packageName = "flatted"; 3385 - version = "3.2.4"; 3386 src = fetchurl { 3387 - url = "https://registry.npmjs.org/flatted/-/flatted-3.2.4.tgz"; 3388 - sha512 = "8/sOawo8tJ4QOBX8YlQBMxL8+RLZfxMQOif9o0KUKTNTjMYElWPE0r/m5VNFxTRd0NSw8qSy8dajrwX4RYI1Hw=="; 3389 }; 3390 }; 3391 "fn.name-1.1.0" = { ··· 3397 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 3398 }; 3399 }; 3400 - "follow-redirects-1.14.6" = { 3401 name = "follow-redirects"; 3402 packageName = "follow-redirects"; 3403 - version = "1.14.6"; 3404 src = fetchurl { 3405 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.6.tgz"; 3406 - sha512 = "fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A=="; 3407 }; 3408 }; 3409 "form-data-3.0.1" = { ··· 3595 sha512 = "uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg=="; 3596 }; 3597 }; 3598 - "globby-11.0.4" = { 3599 name = "globby"; 3600 packageName = "globby"; 3601 - version = "11.0.4"; 3602 src = fetchurl { 3603 - url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 3604 - sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 3605 }; 3606 }; 3607 "glossy-0.1.7" = { ··· 3613 sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b"; 3614 }; 3615 }; 3616 - "graceful-fs-4.2.8" = { 3617 name = "graceful-fs"; 3618 packageName = "graceful-fs"; 3619 - version = "4.2.8"; 3620 src = fetchurl { 3621 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 3622 - sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 3623 }; 3624 }; 3625 "handlebars-4.7.7" = { ··· 3793 sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 3794 }; 3795 }; 3796 - "import-local-3.0.3" = { 3797 name = "import-local"; 3798 packageName = "import-local"; 3799 - version = "3.0.3"; 3800 src = fetchurl { 3801 - url = "https://registry.npmjs.org/import-local/-/import-local-3.0.3.tgz"; 3802 - sha512 = "bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA=="; 3803 }; 3804 }; 3805 "imurmurhash-0.1.4" = { ··· 3856 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 3857 }; 3858 }; 3859 - "is-core-module-2.8.0" = { 3860 name = "is-core-module"; 3861 packageName = "is-core-module"; 3862 - version = "2.8.0"; 3863 src = fetchurl { 3864 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz"; 3865 - sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw=="; 3866 }; 3867 }; 3868 "is-extglob-2.1.1" = { ··· 3973 sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 3974 }; 3975 }; 3976 - "istanbul-lib-instrument-4.0.3" = { 3977 - name = "istanbul-lib-instrument"; 3978 - packageName = "istanbul-lib-instrument"; 3979 - version = "4.0.3"; 3980 - src = fetchurl { 3981 - url = "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz"; 3982 - sha512 = "BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ=="; 3983 - }; 3984 - }; 3985 "istanbul-lib-instrument-5.1.0" = { 3986 name = "istanbul-lib-instrument"; 3987 packageName = "istanbul-lib-instrument"; ··· 4009 sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; 4010 }; 4011 }; 4012 - "istanbul-reports-3.1.2" = { 4013 - name = "istanbul-reports"; 4014 - packageName = "istanbul-reports"; 4015 - version = "3.1.2"; 4016 - src = fetchurl { 4017 - url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.2.tgz"; 4018 - sha512 = "0gHxuT1NNC0aEIL1zbJ+MTgPbbHhU77eJPuU35WKA7TgXiSNlCAx4PENoMrH0Or6M2H80TaZcWKhM0IK6V8gRw=="; 4019 - }; 4020 - }; 4021 "istanbul-reports-3.1.3" = { 4022 name = "istanbul-reports"; 4023 packageName = "istanbul-reports"; ··· 4027 sha512 = "x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg=="; 4028 }; 4029 }; 4030 - "jest-27.4.5" = { 4031 name = "jest"; 4032 packageName = "jest"; 4033 - version = "27.4.5"; 4034 src = fetchurl { 4035 - url = "https://registry.npmjs.org/jest/-/jest-27.4.5.tgz"; 4036 - sha512 = "uT5MiVN3Jppt314kidCk47MYIRilJjA/l2mxwiuzzxGUeJIvA8/pDaJOAX5KWvjAo7SCydcW0/4WEtgbLMiJkg=="; 4037 }; 4038 }; 4039 "jest-changed-files-27.4.2" = { ··· 4045 sha512 = "/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A=="; 4046 }; 4047 }; 4048 - "jest-circus-27.4.5" = { 4049 name = "jest-circus"; 4050 packageName = "jest-circus"; 4051 - version = "27.4.5"; 4052 src = fetchurl { 4053 - url = "https://registry.npmjs.org/jest-circus/-/jest-circus-27.4.5.tgz"; 4054 - sha512 = "eTNWa9wsvBwPykhMMShheafbwyakcdHZaEYh5iRrQ0PFJxkDP/e3U/FvzGuKWu2WpwUA3C3hPlfpuzvOdTVqnw=="; 4055 }; 4056 }; 4057 - "jest-cli-27.4.5" = { 4058 name = "jest-cli"; 4059 packageName = "jest-cli"; 4060 - version = "27.4.5"; 4061 src = fetchurl { 4062 - url = "https://registry.npmjs.org/jest-cli/-/jest-cli-27.4.5.tgz"; 4063 - sha512 = "hrky3DSgE0u7sQxaCL7bdebEPHx5QzYmrGuUjaPLmPE8jx5adtvGuOlRspvMoVLTTDOHRnZDoRLYJuA+VCI7Hg=="; 4064 }; 4065 }; 4066 - "jest-config-27.4.5" = { 4067 name = "jest-config"; 4068 packageName = "jest-config"; 4069 - version = "27.4.5"; 4070 src = fetchurl { 4071 - url = "https://registry.npmjs.org/jest-config/-/jest-config-27.4.5.tgz"; 4072 - sha512 = "t+STVJtPt+fpqQ8GBw850NtSQbnDOw/UzdPfzDaHQ48/AylQlW7LHj3dH+ndxhC1UxJ0Q3qkq7IH+nM1skwTwA=="; 4073 }; 4074 }; 4075 - "jest-diff-27.4.2" = { 4076 name = "jest-diff"; 4077 packageName = "jest-diff"; 4078 - version = "27.4.2"; 4079 src = fetchurl { 4080 - url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.2.tgz"; 4081 - sha512 = "ujc9ToyUZDh9KcqvQDkk/gkbf6zSaeEg9AiBxtttXW59H/AcqEYp1ciXAtJp+jXWva5nAf/ePtSsgWwE5mqp4Q=="; 4082 }; 4083 }; 4084 "jest-docblock-27.4.0" = { ··· 4090 sha512 = "7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg=="; 4091 }; 4092 }; 4093 - "jest-each-27.4.2" = { 4094 name = "jest-each"; 4095 packageName = "jest-each"; 4096 - version = "27.4.2"; 4097 src = fetchurl { 4098 - url = "https://registry.npmjs.org/jest-each/-/jest-each-27.4.2.tgz"; 4099 - sha512 = "53V2MNyW28CTruB3lXaHNk6PkiIFuzdOC9gR3C6j8YE/ACfrPnz+slB0s17AgU1TtxNzLuHyvNlLJ+8QYw9nBg=="; 4100 }; 4101 }; 4102 - "jest-environment-jsdom-27.4.4" = { 4103 name = "jest-environment-jsdom"; 4104 packageName = "jest-environment-jsdom"; 4105 - version = "27.4.4"; 4106 src = fetchurl { 4107 - url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.4.tgz"; 4108 - sha512 = "cYR3ndNfHBqQgFvS1RL7dNqSvD//K56j/q1s2ygNHcfTCAp12zfIromO1w3COmXrxS8hWAh7+CmZmGCIoqGcGA=="; 4109 }; 4110 }; 4111 - "jest-environment-node-27.4.4" = { 4112 name = "jest-environment-node"; 4113 packageName = "jest-environment-node"; 4114 - version = "27.4.4"; 4115 src = fetchurl { 4116 - url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.4.4.tgz"; 4117 - sha512 = "D+v3lbJ2GjQTQR23TK0kY3vFVmSeea05giInI41HHOaJnAwOnmUHTZgUaZL+VxUB43pIzoa7PMwWtCVlIUoVoA=="; 4118 }; 4119 }; 4120 "jest-get-type-27.4.0" = { ··· 4126 sha512 = "tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ=="; 4127 }; 4128 }; 4129 - "jest-haste-map-27.4.5" = { 4130 name = "jest-haste-map"; 4131 packageName = "jest-haste-map"; 4132 - version = "27.4.5"; 4133 src = fetchurl { 4134 - url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.5.tgz"; 4135 - sha512 = "oJm1b5qhhPs78K24EDGifWS0dELYxnoBiDhatT/FThgB9yxqUm5F6li3Pv+Q+apMBmmPNzOBnZ7ZxWMB1Leq1Q=="; 4136 }; 4137 }; 4138 - "jest-jasmine2-27.4.5" = { 4139 name = "jest-jasmine2"; 4140 packageName = "jest-jasmine2"; 4141 - version = "27.4.5"; 4142 src = fetchurl { 4143 - url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.4.5.tgz"; 4144 - sha512 = "oUnvwhJDj2LhOiUB1kdnJjkx8C5PwgUZQb9urF77mELH9DGR4e2GqpWQKBOYXWs5+uTN9BGDqRz3Aeg5Wts7aw=="; 4145 }; 4146 }; 4147 - "jest-leak-detector-27.4.2" = { 4148 name = "jest-leak-detector"; 4149 packageName = "jest-leak-detector"; 4150 - version = "27.4.2"; 4151 src = fetchurl { 4152 - url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.4.2.tgz"; 4153 - sha512 = "ml0KvFYZllzPBJWDei3mDzUhyp/M4ubKebX++fPaudpe8OsxUE+m+P6ciVLboQsrzOCWDjE20/eXew9QMx/VGw=="; 4154 }; 4155 }; 4156 - "jest-matcher-utils-27.4.2" = { 4157 name = "jest-matcher-utils"; 4158 packageName = "jest-matcher-utils"; 4159 - version = "27.4.2"; 4160 src = fetchurl { 4161 - url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.2.tgz"; 4162 - sha512 = "jyP28er3RRtMv+fmYC/PKG8wvAmfGcSNproVTW2Y0P/OY7/hWUOmsPfxN1jOhM+0u2xU984u2yEagGivz9OBGQ=="; 4163 }; 4164 }; 4165 - "jest-message-util-27.4.2" = { 4166 name = "jest-message-util"; 4167 packageName = "jest-message-util"; 4168 - version = "27.4.2"; 4169 src = fetchurl { 4170 - url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.2.tgz"; 4171 - sha512 = "OMRqRNd9E0DkBLZpFtZkAGYOXl6ZpoMtQJWTAREJKDOFa0M6ptB7L67tp+cszMBkvSgKOhNtQp2Vbcz3ZZKo/w=="; 4172 }; 4173 }; 4174 - "jest-mock-27.4.2" = { 4175 name = "jest-mock"; 4176 packageName = "jest-mock"; 4177 - version = "27.4.2"; 4178 src = fetchurl { 4179 - url = "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.2.tgz"; 4180 - sha512 = "PDDPuyhoukk20JrQKeofK12hqtSka7mWH0QQuxSNgrdiPsrnYYLS6wbzu/HDlxZRzji5ylLRULeuI/vmZZDrYA=="; 4181 }; 4182 }; 4183 "jest-pnp-resolver-1.2.2" = { ··· 4198 sha512 = "WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg=="; 4199 }; 4200 }; 4201 - "jest-resolve-27.4.5" = { 4202 name = "jest-resolve"; 4203 packageName = "jest-resolve"; 4204 - version = "27.4.5"; 4205 src = fetchurl { 4206 - url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.4.5.tgz"; 4207 - sha512 = "xU3z1BuOz/hUhVUL+918KqUgK+skqOuUsAi7A+iwoUldK6/+PW+utK8l8cxIWT9AW7IAhGNXjSAh1UYmjULZZw=="; 4208 }; 4209 }; 4210 - "jest-resolve-dependencies-27.4.5" = { 4211 name = "jest-resolve-dependencies"; 4212 packageName = "jest-resolve-dependencies"; 4213 - version = "27.4.5"; 4214 src = fetchurl { 4215 - url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.5.tgz"; 4216 - sha512 = "elEVvkvRK51y037NshtEkEnukMBWvlPzZHiL847OrIljJ8yIsujD2GXRPqDXC4rEVKbcdsy7W0FxoZb4WmEs7w=="; 4217 }; 4218 }; 4219 - "jest-runner-27.4.5" = { 4220 name = "jest-runner"; 4221 packageName = "jest-runner"; 4222 - version = "27.4.5"; 4223 src = fetchurl { 4224 - url = "https://registry.npmjs.org/jest-runner/-/jest-runner-27.4.5.tgz"; 4225 - sha512 = "/irauncTfmY1WkTaRQGRWcyQLzK1g98GYG/8QvIPviHgO1Fqz1JYeEIsSfF+9mc/UTA6S+IIHFgKyvUrtiBIZg=="; 4226 }; 4227 }; 4228 - "jest-runtime-27.4.5" = { 4229 name = "jest-runtime"; 4230 packageName = "jest-runtime"; 4231 - version = "27.4.5"; 4232 src = fetchurl { 4233 - url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.4.5.tgz"; 4234 - sha512 = "CIYqwuJQXHQtPd/idgrx4zgJ6iCb6uBjQq1RSAGQrw2S8XifDmoM1Ot8NRd80ooAm+ZNdHVwsktIMGlA1F1FAQ=="; 4235 }; 4236 }; 4237 "jest-serializer-27.4.0" = { ··· 4243 sha512 = "RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ=="; 4244 }; 4245 }; 4246 - "jest-snapshot-27.4.5" = { 4247 name = "jest-snapshot"; 4248 packageName = "jest-snapshot"; 4249 - version = "27.4.5"; 4250 src = fetchurl { 4251 - url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.4.5.tgz"; 4252 - sha512 = "eCi/iM1YJFrJWiT9de4+RpWWWBqsHiYxFG9V9o/n0WXs6GpW4lUt4FAHAgFPTLPqCUVzrMQmSmTZSgQzwqR7IQ=="; 4253 }; 4254 }; 4255 "jest-util-27.4.2" = { ··· 4261 sha512 = "YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA=="; 4262 }; 4263 }; 4264 - "jest-validate-27.4.2" = { 4265 name = "jest-validate"; 4266 packageName = "jest-validate"; 4267 - version = "27.4.2"; 4268 src = fetchurl { 4269 - url = "https://registry.npmjs.org/jest-validate/-/jest-validate-27.4.2.tgz"; 4270 - sha512 = "hWYsSUej+Fs8ZhOm5vhWzwSLmVaPAxRy+Mr+z5MzeaHm9AxUpXdoVMEW4R86y5gOobVfBsMFLk4Rb+QkiEpx1A=="; 4271 }; 4272 }; 4273 - "jest-watcher-27.4.2" = { 4274 name = "jest-watcher"; 4275 packageName = "jest-watcher"; 4276 - version = "27.4.2"; 4277 src = fetchurl { 4278 - url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.4.2.tgz"; 4279 - sha512 = "NJvMVyyBeXfDezhWzUOCOYZrUmkSCiatpjpm+nFUid74OZEHk6aMLrZAukIiFDwdbqp6mTM6Ui1w4oc+8EobQg=="; 4280 }; 4281 }; 4282 - "jest-worker-27.4.5" = { 4283 name = "jest-worker"; 4284 packageName = "jest-worker"; 4285 - version = "27.4.5"; 4286 src = fetchurl { 4287 - url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.5.tgz"; 4288 - sha512 = "f2s8kEdy15cv9r7q4KkzGXvlY0JTcmCbMHZBfSQDwW77REr45IDWwd0lksDFeVHH2jJ5pqb90T77XscrjeGzzg=="; 4289 }; 4290 }; 4291 "js-tokens-4.0.0" = { ··· 4477 sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 4478 }; 4479 }; 4480 - "logform-2.3.0" = { 4481 name = "logform"; 4482 packageName = "logform"; 4483 - version = "2.3.0"; 4484 src = fetchurl { 4485 - url = "https://registry.npmjs.org/logform/-/logform-2.3.0.tgz"; 4486 - sha512 = "graeoWUH2knKbGthMtuG1EfaSPMZFZBIrhuJHhkS5ZseFBrc7DupCzihOQAzsK/qIKPQaPJ/lFQFctILUY5ARQ=="; 4487 }; 4488 }; 4489 "lru-cache-6.0.0" = { ··· 4531 sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; 4532 }; 4533 }; 4534 - "marked-3.0.8" = { 4535 name = "marked"; 4536 packageName = "marked"; 4537 - version = "3.0.8"; 4538 src = fetchurl { 4539 - url = "https://registry.npmjs.org/marked/-/marked-3.0.8.tgz"; 4540 - sha512 = "0gVrAjo5m0VZSJb4rpL59K1unJAMb/hm8HRXqasD8VeC8m91ytDPMritgFSlKonfdt+rRYYpP/JfLxgIX8yoSw=="; 4541 }; 4542 }; 4543 "merge-stream-2.0.0" = { ··· 4666 sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; 4667 }; 4668 }; 4669 - "mqtt-4.3.1" = { 4670 name = "mqtt"; 4671 packageName = "mqtt"; 4672 - version = "4.3.1"; 4673 src = fetchurl { 4674 - url = "https://registry.npmjs.org/mqtt/-/mqtt-4.3.1.tgz"; 4675 - sha512 = "262jQ0K3CHnG8WxDvWTqQ99gSI26+gGKax4xoTizkLQZInX8jhwqS9YCCO5F8kCdqpKnEkNdlMva6n7PFbxDfw=="; 4676 }; 4677 }; 4678 "mqtt-packet-6.10.0" = { ··· 4810 sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; 4811 }; 4812 }; 4813 - "number-allocator-1.0.7" = { 4814 name = "number-allocator"; 4815 packageName = "number-allocator"; 4816 - version = "1.0.7"; 4817 src = fetchurl { 4818 - url = "https://registry.npmjs.org/number-allocator/-/number-allocator-1.0.7.tgz"; 4819 - sha512 = "l8nkXEe+uaRWbP3qqPKRphy5BpYOYKOhrY0vE7NVQvNpVto+zSNsEMiQ4UHbGP1LrVeDTFFBVBoGaSoi9OWMqQ=="; 4820 }; 4821 }; 4822 "number-is-nan-1.0.1" = { ··· 5035 sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 5036 }; 5037 }; 5038 - "picomatch-2.3.0" = { 5039 name = "picomatch"; 5040 packageName = "picomatch"; 5041 - version = "2.3.0"; 5042 src = fetchurl { 5043 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 5044 - sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 5045 }; 5046 }; 5047 "pify-4.0.1" = { ··· 5053 sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 5054 }; 5055 }; 5056 - "pirates-4.0.4" = { 5057 name = "pirates"; 5058 packageName = "pirates"; 5059 - version = "4.0.4"; 5060 src = fetchurl { 5061 - url = "https://registry.npmjs.org/pirates/-/pirates-4.0.4.tgz"; 5062 - sha512 = "ZIrVPH+A52Dw84R0L3/VS9Op04PuQ2SEoJL6bkshmiTic/HldyW9Tf7oH5mhJZBK7NmDx27vSMrYEXPXclpDKw=="; 5063 }; 5064 }; 5065 "pkg-dir-4.2.0" = { ··· 5071 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 5072 }; 5073 }; 5074 - "prebuild-install-7.0.0" = { 5075 name = "prebuild-install"; 5076 packageName = "prebuild-install"; 5077 - version = "7.0.0"; 5078 src = fetchurl { 5079 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.0.tgz"; 5080 - sha512 = "IvSenf33K7JcgddNz2D5w521EgO+4aMMjFt73Uk9FRzQ7P+QZPKrp7qPsDydsSwjGt3T5xRNnM1bj1zMTD5fTA=="; 5081 }; 5082 }; 5083 "prelude-ls-1.1.2" = { ··· 5098 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 5099 }; 5100 }; 5101 - "pretty-format-27.4.2" = { 5102 name = "pretty-format"; 5103 packageName = "pretty-format"; 5104 - version = "27.4.2"; 5105 src = fetchurl { 5106 - url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.2.tgz"; 5107 - sha512 = "p0wNtJ9oLuvgOQDEIZ9zQjZffK7KtyR6Si0jnXULIDwrlNF8Cuir3AZP0hHv0jmKuNN/edOnbMjnzd4uTcmWiw=="; 5108 }; 5109 }; 5110 "process-nextick-args-2.0.1" = { ··· 5116 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 5117 }; 5118 }; 5119 - "progress-2.0.3" = { 5120 - name = "progress"; 5121 - packageName = "progress"; 5122 - version = "2.0.3"; 5123 - src = fetchurl { 5124 - url = "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz"; 5125 - sha512 = "7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA=="; 5126 - }; 5127 - }; 5128 "prompts-2.4.2" = { 5129 name = "prompts"; 5130 packageName = "prompts"; ··· 5323 sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 5324 }; 5325 }; 5326 - "resolve-1.20.0" = { 5327 name = "resolve"; 5328 packageName = "resolve"; 5329 - version = "1.20.0"; 5330 src = fetchurl { 5331 - url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"; 5332 - sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; 5333 }; 5334 }; 5335 "resolve-cwd-3.0.0" = { ··· 5431 sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; 5432 }; 5433 }; 5434 "safer-buffer-2.1.2" = { 5435 name = "safer-buffer"; 5436 packageName = "safer-buffer"; ··· 5548 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 5549 }; 5550 }; 5551 - "shiki-0.9.15" = { 5552 name = "shiki"; 5553 packageName = "shiki"; 5554 - version = "0.9.15"; 5555 src = fetchurl { 5556 - url = "https://registry.npmjs.org/shiki/-/shiki-0.9.15.tgz"; 5557 - sha512 = "/Y0z9IzhJ8nD9nbceORCqu6NgT9X6I8Fk8c3SICHI5NbZRLdZYFaB233gwct9sU0vvSypyaL/qaKvzyQGJBZSw=="; 5558 }; 5559 }; 5560 "signal-exit-3.0.6" = { ··· 5575 sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="; 5576 }; 5577 }; 5578 - "simple-get-4.0.0" = { 5579 name = "simple-get"; 5580 packageName = "simple-get"; 5581 - version = "4.0.0"; 5582 src = fetchurl { 5583 - url = "https://registry.npmjs.org/simple-get/-/simple-get-4.0.0.tgz"; 5584 - sha512 = "ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ=="; 5585 }; 5586 }; 5587 "simple-swizzle-0.2.2" = { ··· 5854 sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; 5855 }; 5856 }; 5857 "symbol-tree-3.2.4" = { 5858 name = "symbol-tree"; 5859 packageName = "symbol-tree"; ··· 6115 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 6116 }; 6117 }; 6118 - "typedoc-0.22.10" = { 6119 name = "typedoc"; 6120 packageName = "typedoc"; 6121 - version = "0.22.10"; 6122 src = fetchurl { 6123 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.22.10.tgz"; 6124 - sha512 = "hQYZ4WtoMZ61wDC6w10kxA42+jclWngdmztNZsDvIz7BMJg7F2xnT+uYsUa7OluyKossdFj9E9Ye4QOZKTy8SA=="; 6125 }; 6126 }; 6127 - "typedoc-plugin-markdown-3.11.8" = { 6128 name = "typedoc-plugin-markdown"; 6129 packageName = "typedoc-plugin-markdown"; 6130 - version = "3.11.8"; 6131 src = fetchurl { 6132 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.8.tgz"; 6133 - sha512 = "j2Kwi/RnwDwiNr9CMy4lrwB9+1alwjrMakb9+7S0Bz9gnDsdqamOguZ6e27iB97U18nK6GBeR8qDarIyoJYDCg=="; 6134 }; 6135 }; 6136 "typedoc-plugin-no-inherit-1.3.1" = { ··· 6151 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 6152 }; 6153 }; 6154 - "typescript-4.5.4" = { 6155 name = "typescript"; 6156 packageName = "typescript"; 6157 - version = "4.5.4"; 6158 src = fetchurl { 6159 - url = "https://registry.npmjs.org/typescript/-/typescript-4.5.4.tgz"; 6160 - sha512 = "VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg=="; 6161 }; 6162 }; 6163 - "uglify-js-3.14.5" = { 6164 name = "uglify-js"; 6165 packageName = "uglify-js"; 6166 - version = "3.14.5"; 6167 src = fetchurl { 6168 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.5.tgz"; 6169 - sha512 = "qZukoSxOG0urUTvjc2ERMTcAy+BiFh3weWAkeurLwjrCba73poHmG3E36XEjd/JGukMzwTL7uCxZiAexj8ppvQ=="; 6170 }; 6171 }; 6172 "unicode-canonical-property-names-ecmascript-2.0.0" = { ··· 6259 sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 6260 }; 6261 }; 6262 - "v8-to-istanbul-8.1.0" = { 6263 name = "v8-to-istanbul"; 6264 packageName = "v8-to-istanbul"; 6265 - version = "8.1.0"; 6266 src = fetchurl { 6267 - url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz"; 6268 - sha512 = "/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA=="; 6269 }; 6270 }; 6271 "vscode-oniguruma-1.6.1" = { ··· 6313 sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; 6314 }; 6315 }; 6316 - "weak-map-1.0.5" = { 6317 - name = "weak-map"; 6318 - packageName = "weak-map"; 6319 - version = "1.0.5"; 6320 - src = fetchurl { 6321 - url = "https://registry.npmjs.org/weak-map/-/weak-map-1.0.5.tgz"; 6322 - sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; 6323 - }; 6324 - }; 6325 "webidl-conversions-5.0.0" = { 6326 name = "webidl-conversions"; 6327 packageName = "webidl-conversions"; ··· 6385 sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 6386 }; 6387 }; 6388 - "winston-3.3.3" = { 6389 name = "winston"; 6390 packageName = "winston"; 6391 - version = "3.3.3"; 6392 src = fetchurl { 6393 - url = "https://registry.npmjs.org/winston/-/winston-3.3.3.tgz"; 6394 - sha512 = "oEXTISQnC8VlSAKf1KYSSd7J6IWuRPQqDdo8eoRNaYKLvwSb5+79Z3Yi1lrl6KDpU6/VWaxpakDAtb1oQ4n9aw=="; 6395 }; 6396 }; 6397 "winston-syslog-2.4.4" = { ··· 6403 sha512 = "zDjoKO932Yszvzq8WtbIFMXHwAT2MOxpWC9s6djw2tvjdRESWw3au6l+0xDMatMhNWVoVaVNkDXF+r/eyoBUVA=="; 6404 }; 6405 }; 6406 - "winston-transport-4.4.1" = { 6407 name = "winston-transport"; 6408 packageName = "winston-transport"; 6409 - version = "4.4.1"; 6410 src = fetchurl { 6411 - url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.1.tgz"; 6412 - sha512 = "ciZRlU4CSjHqHe8RQG1iPxKMRVwv6ZJ0RC7DxStKWd0KjpAhPDy5gVYSCpIUq+5CUsP+IyNOTZy1X0tO2QZqjg=="; 6413 }; 6414 }; 6415 "word-wrap-1.2.3" = { ··· 6466 sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA=="; 6467 }; 6468 }; 6469 - "ws-8.4.0" = { 6470 name = "ws"; 6471 packageName = "ws"; 6472 - version = "8.4.0"; 6473 src = fetchurl { 6474 - url = "https://registry.npmjs.org/ws/-/ws-8.4.0.tgz"; 6475 - sha512 = "IHVsKe2pjajSUIl4KYMQOdlyliovpEPquKkqbwswulszzI7r0SfQrxnXdWAEqOlDCLrVSJzo+O1hAwdog2sKSQ=="; 6476 }; 6477 }; 6478 "xml-name-validator-3.0.0" = { ··· 6538 sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 6539 }; 6540 }; 6541 - "zigbee-herdsman-0.13.188" = { 6542 name = "zigbee-herdsman"; 6543 packageName = "zigbee-herdsman"; 6544 - version = "0.13.188"; 6545 src = fetchurl { 6546 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.188.tgz"; 6547 - sha512 = "eaI91kwl46TgumM7v9WtpEIfwblHlLjpLOM51DqWlnIqq3ehTwu2wTMQcTsxqxcNKzx4CpCmkBAbdaKc1ZlRVQ=="; 6548 }; 6549 }; 6550 - "zigbee-herdsman-converters-14.0.366" = { 6551 name = "zigbee-herdsman-converters"; 6552 packageName = "zigbee-herdsman-converters"; 6553 - version = "14.0.366"; 6554 src = fetchurl { 6555 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.366.tgz"; 6556 - sha512 = "GGxWDhU1aBYwWJaM9SkX9nVVTORc5wumy9D9Z5TDJBSKkVrobAFYBDXB9GTvk+ZMrqVXgIdKgwalgoJjQg5qag=="; 6557 }; 6558 }; 6559 - "zigbee2mqtt-frontend-0.6.67" = { 6560 name = "zigbee2mqtt-frontend"; 6561 packageName = "zigbee2mqtt-frontend"; 6562 - version = "0.6.67"; 6563 src = fetchurl { 6564 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.67.tgz"; 6565 - sha512 = "yILqMfe5UsT4Z/AccR/N8jQ40qs9u/3ObVJPtc7iLhYSKIPAl9dPrK0k5vsI7i8oVCVC2h1dqOpKfnXarmmc/Q=="; 6566 }; 6567 }; 6568 }; 6569 args = { 6570 name = "zigbee2mqtt"; 6571 packageName = "zigbee2mqtt"; 6572 - version = "1.22.2"; 6573 src = ./.; 6574 dependencies = [ 6575 - sources."@babel/code-frame-7.16.0" 6576 - sources."@babel/compat-data-7.16.4" 6577 - (sources."@babel/core-7.16.5" // { 6578 dependencies = [ 6579 sources."debug-4.3.3" 6580 sources."ms-2.1.2" ··· 6582 sources."source-map-0.5.7" 6583 ]; 6584 }) 6585 - (sources."@babel/generator-7.16.5" // { 6586 dependencies = [ 6587 sources."source-map-0.5.7" 6588 ]; 6589 }) 6590 - sources."@babel/helper-annotate-as-pure-7.16.0" 6591 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" 6592 - (sources."@babel/helper-compilation-targets-7.16.3" // { 6593 dependencies = [ 6594 sources."semver-6.3.0" 6595 ]; 6596 }) 6597 - sources."@babel/helper-create-class-features-plugin-7.16.5" 6598 - sources."@babel/helper-create-regexp-features-plugin-7.16.0" 6599 - (sources."@babel/helper-define-polyfill-provider-0.3.0" // { 6600 dependencies = [ 6601 sources."debug-4.3.3" 6602 sources."ms-2.1.2" 6603 sources."semver-6.3.0" 6604 ]; 6605 }) 6606 - sources."@babel/helper-environment-visitor-7.16.5" 6607 - sources."@babel/helper-explode-assignable-expression-7.16.0" 6608 - sources."@babel/helper-function-name-7.16.0" 6609 - sources."@babel/helper-get-function-arity-7.16.0" 6610 - sources."@babel/helper-hoist-variables-7.16.0" 6611 - sources."@babel/helper-member-expression-to-functions-7.16.5" 6612 - sources."@babel/helper-module-imports-7.16.0" 6613 - sources."@babel/helper-module-transforms-7.16.5" 6614 - sources."@babel/helper-optimise-call-expression-7.16.0" 6615 - sources."@babel/helper-plugin-utils-7.16.5" 6616 - sources."@babel/helper-remap-async-to-generator-7.16.5" 6617 - sources."@babel/helper-replace-supers-7.16.5" 6618 - sources."@babel/helper-simple-access-7.16.0" 6619 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 6620 - sources."@babel/helper-split-export-declaration-7.16.0" 6621 - sources."@babel/helper-validator-identifier-7.15.7" 6622 - sources."@babel/helper-validator-option-7.14.5" 6623 - sources."@babel/helper-wrap-function-7.16.5" 6624 - sources."@babel/helpers-7.16.5" 6625 - sources."@babel/highlight-7.16.0" 6626 - sources."@babel/parser-7.16.6" 6627 - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 6628 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 6629 - sources."@babel/plugin-proposal-async-generator-functions-7.16.5" 6630 - sources."@babel/plugin-proposal-class-properties-7.16.5" 6631 - sources."@babel/plugin-proposal-class-static-block-7.16.5" 6632 - sources."@babel/plugin-proposal-decorators-7.16.5" 6633 - sources."@babel/plugin-proposal-dynamic-import-7.16.5" 6634 - sources."@babel/plugin-proposal-export-namespace-from-7.16.5" 6635 - sources."@babel/plugin-proposal-json-strings-7.16.5" 6636 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5" 6637 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" 6638 - sources."@babel/plugin-proposal-numeric-separator-7.16.5" 6639 - sources."@babel/plugin-proposal-object-rest-spread-7.16.5" 6640 - sources."@babel/plugin-proposal-optional-catch-binding-7.16.5" 6641 - sources."@babel/plugin-proposal-optional-chaining-7.16.5" 6642 - sources."@babel/plugin-proposal-private-methods-7.16.5" 6643 - sources."@babel/plugin-proposal-private-property-in-object-7.16.5" 6644 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.5" 6645 sources."@babel/plugin-syntax-async-generators-7.8.4" 6646 sources."@babel/plugin-syntax-bigint-7.8.3" 6647 sources."@babel/plugin-syntax-class-properties-7.12.13" 6648 sources."@babel/plugin-syntax-class-static-block-7.14.5" 6649 - sources."@babel/plugin-syntax-decorators-7.16.5" 6650 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 6651 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 6652 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 6659 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 6660 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 6661 sources."@babel/plugin-syntax-top-level-await-7.14.5" 6662 - sources."@babel/plugin-syntax-typescript-7.16.5" 6663 - sources."@babel/plugin-transform-arrow-functions-7.16.5" 6664 - sources."@babel/plugin-transform-async-to-generator-7.16.5" 6665 - sources."@babel/plugin-transform-block-scoped-functions-7.16.5" 6666 - sources."@babel/plugin-transform-block-scoping-7.16.5" 6667 - sources."@babel/plugin-transform-classes-7.16.5" 6668 - sources."@babel/plugin-transform-computed-properties-7.16.5" 6669 - sources."@babel/plugin-transform-destructuring-7.16.5" 6670 - sources."@babel/plugin-transform-dotall-regex-7.16.5" 6671 - sources."@babel/plugin-transform-duplicate-keys-7.16.5" 6672 - sources."@babel/plugin-transform-exponentiation-operator-7.16.5" 6673 - sources."@babel/plugin-transform-for-of-7.16.5" 6674 - sources."@babel/plugin-transform-function-name-7.16.5" 6675 - sources."@babel/plugin-transform-literals-7.16.5" 6676 - sources."@babel/plugin-transform-member-expression-literals-7.16.5" 6677 - sources."@babel/plugin-transform-modules-amd-7.16.5" 6678 - sources."@babel/plugin-transform-modules-commonjs-7.16.5" 6679 - sources."@babel/plugin-transform-modules-systemjs-7.16.5" 6680 - sources."@babel/plugin-transform-modules-umd-7.16.5" 6681 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5" 6682 - sources."@babel/plugin-transform-new-target-7.16.5" 6683 - sources."@babel/plugin-transform-object-super-7.16.5" 6684 - sources."@babel/plugin-transform-parameters-7.16.5" 6685 - sources."@babel/plugin-transform-property-literals-7.16.5" 6686 - sources."@babel/plugin-transform-regenerator-7.16.5" 6687 - sources."@babel/plugin-transform-reserved-words-7.16.5" 6688 - sources."@babel/plugin-transform-shorthand-properties-7.16.5" 6689 - sources."@babel/plugin-transform-spread-7.16.5" 6690 - sources."@babel/plugin-transform-sticky-regex-7.16.5" 6691 - sources."@babel/plugin-transform-template-literals-7.16.5" 6692 - sources."@babel/plugin-transform-typeof-symbol-7.16.5" 6693 - sources."@babel/plugin-transform-typescript-7.16.1" 6694 - sources."@babel/plugin-transform-unicode-escapes-7.16.5" 6695 - sources."@babel/plugin-transform-unicode-regex-7.16.5" 6696 - (sources."@babel/preset-env-7.16.5" // { 6697 dependencies = [ 6698 sources."semver-6.3.0" 6699 ]; 6700 }) 6701 sources."@babel/preset-modules-0.1.5" 6702 - sources."@babel/preset-typescript-7.16.5" 6703 - sources."@babel/runtime-7.16.5" 6704 - sources."@babel/template-7.16.0" 6705 - (sources."@babel/traverse-7.16.5" // { 6706 dependencies = [ 6707 sources."debug-4.3.3" 6708 sources."ms-2.1.2" 6709 ]; 6710 }) 6711 - sources."@babel/types-7.16.0" 6712 sources."@bcoe/v8-coverage-0.2.3" 6713 sources."@dabh/diagnostics-2.0.2" 6714 (sources."@eslint/eslintrc-1.0.5" // { ··· 6721 sources."ms-2.1.2" 6722 ]; 6723 }) 6724 - (sources."@humanwhocodes/config-array-0.9.2" // { 6725 dependencies = [ 6726 sources."debug-4.3.3" 6727 sources."ms-2.1.2" ··· 6735 ]; 6736 }) 6737 sources."@istanbuljs/schema-0.1.3" 6738 - (sources."@jest/console-27.4.2" // { 6739 dependencies = [ 6740 sources."ansi-styles-4.3.0" 6741 sources."chalk-4.1.2" ··· 6745 sources."supports-color-7.2.0" 6746 ]; 6747 }) 6748 - (sources."@jest/core-27.4.5" // { 6749 dependencies = [ 6750 sources."ansi-styles-4.3.0" 6751 sources."chalk-4.1.2" ··· 6755 sources."supports-color-7.2.0" 6756 ]; 6757 }) 6758 - sources."@jest/environment-27.4.4" 6759 - sources."@jest/fake-timers-27.4.2" 6760 - sources."@jest/globals-27.4.4" 6761 - (sources."@jest/reporters-27.4.5" // { 6762 dependencies = [ 6763 sources."ansi-styles-4.3.0" 6764 sources."chalk-4.1.2" 6765 sources."color-convert-2.0.1" 6766 sources."color-name-1.1.4" 6767 sources."has-flag-4.0.0" 6768 - sources."istanbul-lib-instrument-4.0.3" 6769 - sources."semver-6.3.0" 6770 sources."supports-color-7.2.0" 6771 ]; 6772 }) 6773 sources."@jest/source-map-27.4.0" 6774 - sources."@jest/test-result-27.4.2" 6775 - sources."@jest/test-sequencer-27.4.5" 6776 - (sources."@jest/transform-27.4.5" // { 6777 dependencies = [ 6778 sources."ansi-styles-4.3.0" 6779 sources."chalk-4.1.2" ··· 6799 sources."@sinonjs/commons-1.8.3" 6800 sources."@sinonjs/fake-timers-8.1.0" 6801 sources."@tootallnate/once-1.1.2" 6802 - sources."@types/babel__core-7.1.17" 6803 sources."@types/babel__generator-7.6.4" 6804 sources."@types/babel__template-7.4.1" 6805 sources."@types/babel__traverse-7.14.2" ··· 6811 sources."@types/istanbul-lib-coverage-2.0.4" 6812 sources."@types/istanbul-lib-report-3.0.0" 6813 sources."@types/istanbul-reports-3.0.1" 6814 - sources."@types/jest-27.0.3" 6815 sources."@types/js-yaml-4.0.5" 6816 sources."@types/json-schema-7.0.9" 6817 sources."@types/minimatch-3.0.5" 6818 - sources."@types/node-17.0.4" 6819 sources."@types/object-assign-deep-0.4.0" 6820 - sources."@types/prettier-2.4.2" 6821 sources."@types/rimraf-3.0.2" 6822 sources."@types/stack-utils-2.0.1" 6823 sources."@types/ws-8.2.2" 6824 sources."@types/yargs-16.0.4" 6825 sources."@types/yargs-parser-20.2.1" 6826 - (sources."@typescript-eslint/eslint-plugin-5.8.0" // { 6827 dependencies = [ 6828 sources."debug-4.3.3" 6829 sources."ms-2.1.2" 6830 ]; 6831 }) 6832 - sources."@typescript-eslint/experimental-utils-5.8.0" 6833 - (sources."@typescript-eslint/parser-5.8.0" // { 6834 dependencies = [ 6835 sources."debug-4.3.3" 6836 sources."ms-2.1.2" 6837 ]; 6838 }) 6839 - sources."@typescript-eslint/scope-manager-5.8.0" 6840 - sources."@typescript-eslint/types-5.8.0" 6841 - (sources."@typescript-eslint/typescript-estree-5.8.0" // { 6842 dependencies = [ 6843 sources."debug-4.3.3" 6844 sources."ms-2.1.2" 6845 ]; 6846 }) 6847 - sources."@typescript-eslint/visitor-keys-5.8.0" 6848 sources."abab-2.0.5" 6849 - sources."acorn-8.6.0" 6850 (sources."acorn-globals-6.0.0" // { 6851 dependencies = [ 6852 sources."acorn-7.4.1" ··· 6860 sources."ms-2.1.2" 6861 ]; 6862 }) 6863 - sources."ajv-8.8.2" 6864 - sources."ansi-colors-4.1.1" 6865 (sources."ansi-escapes-4.3.2" // { 6866 dependencies = [ 6867 sources."type-fest-0.21.3" ··· 6872 sources."anymatch-3.1.2" 6873 sources."argparse-2.0.1" 6874 sources."array-union-2.1.0" 6875 - sources."async-3.2.2" 6876 sources."asynckit-0.4.0" 6877 - (sources."babel-jest-27.4.5" // { 6878 dependencies = [ 6879 sources."ansi-styles-4.3.0" 6880 sources."chalk-4.1.2" ··· 6887 sources."babel-plugin-dynamic-import-node-2.3.3" 6888 sources."babel-plugin-istanbul-6.1.1" 6889 sources."babel-plugin-jest-hoist-27.4.0" 6890 - (sources."babel-plugin-polyfill-corejs2-0.3.0" // { 6891 dependencies = [ 6892 sources."semver-6.3.0" 6893 ]; 6894 }) 6895 - sources."babel-plugin-polyfill-corejs3-0.4.0" 6896 - sources."babel-plugin-polyfill-regenerator-0.3.0" 6897 sources."babel-preset-current-node-syntax-1.0.1" 6898 sources."babel-preset-jest-27.4.0" 6899 sources."balanced-match-1.0.2" ··· 6911 sources."call-bind-1.0.2" 6912 sources."callsites-3.1.0" 6913 sources."camelcase-5.3.1" 6914 - sources."caniuse-lite-1.0.30001292" 6915 sources."chalk-2.4.2" 6916 sources."char-regex-1.0.2" 6917 sources."ci-info-3.3.0" ··· 6919 sources."cliui-7.0.4" 6920 sources."co-4.6.0" 6921 sources."collect-v8-coverage-1.0.1" 6922 - sources."collections-5.1.12" 6923 sources."color-3.2.1" 6924 sources."color-convert-1.9.3" 6925 sources."color-name-1.1.3" ··· 6936 sources."safe-buffer-5.1.2" 6937 ]; 6938 }) 6939 - sources."core-js-3.20.1" 6940 - (sources."core-js-compat-3.20.1" // { 6941 dependencies = [ 6942 sources."semver-7.0.0" 6943 ]; ··· 6955 sources."decimal.js-10.3.1" 6956 sources."dedent-0.7.0" 6957 sources."deep-is-0.1.4" 6958 - sources."deep-object-diff-1.1.0" 6959 sources."deepmerge-4.2.2" 6960 sources."define-properties-1.1.3" 6961 sources."delayed-stream-1.0.0" ··· 6972 }) 6973 sources."duplexify-4.1.2" 6974 sources."ee-first-1.1.1" 6975 - sources."electron-to-chromium-1.4.28" 6976 sources."emittery-0.8.1" 6977 sources."emoji-regex-8.0.0" 6978 sources."enabled-2.0.0" 6979 sources."encodeurl-1.0.2" 6980 sources."end-of-stream-1.4.4" 6981 - sources."enquirer-2.3.6" 6982 sources."escalade-3.1.1" 6983 sources."escape-html-1.0.3" 6984 sources."escape-string-regexp-1.0.5" ··· 6991 sources."type-check-0.3.2" 6992 ]; 6993 }) 6994 - (sources."eslint-8.5.0" // { 6995 dependencies = [ 6996 sources."ajv-6.12.6" 6997 sources."ansi-styles-4.3.0" ··· 7005 sources."glob-parent-6.0.2" 7006 sources."globals-13.12.0" 7007 sources."has-flag-4.0.0" 7008 - sources."ignore-4.0.6" 7009 sources."json-schema-traverse-0.4.1" 7010 sources."ms-2.1.2" 7011 sources."supports-color-7.2.0" 7012 ]; 7013 }) 7014 sources."eslint-config-google-0.14.0" 7015 - sources."eslint-plugin-jest-25.3.0" 7016 sources."eslint-scope-5.1.1" 7017 (sources."eslint-utils-3.0.0" // { 7018 dependencies = [ 7019 sources."eslint-visitor-keys-2.1.0" 7020 ]; 7021 }) 7022 - sources."eslint-visitor-keys-3.1.0" 7023 - sources."espree-9.2.0" 7024 sources."esprima-4.0.1" 7025 (sources."esquery-1.4.0" // { 7026 dependencies = [ ··· 7037 sources."etag-1.8.1" 7038 sources."execa-5.1.1" 7039 sources."exit-0.1.2" 7040 - (sources."expect-27.4.2" // { 7041 - dependencies = [ 7042 - sources."ansi-styles-5.2.0" 7043 - ]; 7044 - }) 7045 sources."fast-deep-equal-3.1.3" 7046 - sources."fast-glob-3.2.7" 7047 sources."fast-json-stable-stringify-2.1.0" 7048 sources."fast-levenshtein-2.0.6" 7049 sources."fastq-1.13.0" ··· 7056 sources."find-0.3.0" 7057 sources."find-up-4.1.0" 7058 sources."flat-cache-3.0.4" 7059 - sources."flatted-3.2.4" 7060 sources."fn.name-1.1.0" 7061 sources."form-data-3.0.1" 7062 sources."fresh-0.5.2" ··· 7073 sources."glob-7.2.0" 7074 sources."glob-parent-5.1.2" 7075 sources."globals-11.12.0" 7076 - sources."globby-11.0.4" 7077 sources."glossy-0.1.7" 7078 - sources."graceful-fs-4.2.8" 7079 sources."has-1.0.3" 7080 sources."has-flag-3.0.0" 7081 sources."has-symbols-1.0.2" ··· 7105 sources."resolve-from-4.0.0" 7106 ]; 7107 }) 7108 - sources."import-local-3.0.3" 7109 sources."imurmurhash-0.1.4" 7110 sources."inflight-1.0.6" 7111 sources."inherits-2.0.4" 7112 sources."is-arrayish-0.3.2" 7113 - sources."is-core-module-2.8.0" 7114 sources."is-extglob-2.1.1" 7115 sources."is-fullwidth-code-point-3.0.0" 7116 sources."is-generator-fn-2.1.0" ··· 7138 sources."ms-2.1.2" 7139 ]; 7140 }) 7141 - sources."istanbul-reports-3.1.2" 7142 - (sources."jest-27.4.5" // { 7143 dependencies = [ 7144 sources."ansi-styles-4.3.0" 7145 sources."chalk-4.1.2" 7146 sources."color-convert-2.0.1" 7147 sources."color-name-1.1.4" 7148 sources."has-flag-4.0.0" 7149 - sources."jest-cli-27.4.5" 7150 sources."supports-color-7.2.0" 7151 ]; 7152 }) 7153 sources."jest-changed-files-27.4.2" 7154 - (sources."jest-circus-27.4.5" // { 7155 dependencies = [ 7156 sources."ansi-styles-4.3.0" 7157 sources."chalk-4.1.2" ··· 7161 sources."supports-color-7.2.0" 7162 ]; 7163 }) 7164 - (sources."jest-config-27.4.5" // { 7165 dependencies = [ 7166 sources."ansi-styles-4.3.0" 7167 sources."chalk-4.1.2" ··· 7171 sources."supports-color-7.2.0" 7172 ]; 7173 }) 7174 - (sources."jest-diff-27.4.2" // { 7175 dependencies = [ 7176 sources."ansi-styles-4.3.0" 7177 sources."chalk-4.1.2" ··· 7182 ]; 7183 }) 7184 sources."jest-docblock-27.4.0" 7185 - (sources."jest-each-27.4.2" // { 7186 dependencies = [ 7187 sources."ansi-styles-4.3.0" 7188 sources."chalk-4.1.2" ··· 7192 sources."supports-color-7.2.0" 7193 ]; 7194 }) 7195 - sources."jest-environment-jsdom-27.4.4" 7196 - sources."jest-environment-node-27.4.4" 7197 sources."jest-get-type-27.4.0" 7198 - sources."jest-haste-map-27.4.5" 7199 - (sources."jest-jasmine2-27.4.5" // { 7200 dependencies = [ 7201 sources."ansi-styles-4.3.0" 7202 sources."chalk-4.1.2" ··· 7206 sources."supports-color-7.2.0" 7207 ]; 7208 }) 7209 - sources."jest-leak-detector-27.4.2" 7210 - (sources."jest-matcher-utils-27.4.2" // { 7211 dependencies = [ 7212 sources."ansi-styles-4.3.0" 7213 sources."chalk-4.1.2" ··· 7217 sources."supports-color-7.2.0" 7218 ]; 7219 }) 7220 - (sources."jest-message-util-27.4.2" // { 7221 dependencies = [ 7222 sources."ansi-styles-4.3.0" 7223 sources."chalk-4.1.2" ··· 7227 sources."supports-color-7.2.0" 7228 ]; 7229 }) 7230 - sources."jest-mock-27.4.2" 7231 sources."jest-pnp-resolver-1.2.2" 7232 sources."jest-regex-util-27.4.0" 7233 - (sources."jest-resolve-27.4.5" // { 7234 dependencies = [ 7235 sources."ansi-styles-4.3.0" 7236 sources."chalk-4.1.2" ··· 7240 sources."supports-color-7.2.0" 7241 ]; 7242 }) 7243 - sources."jest-resolve-dependencies-27.4.5" 7244 - (sources."jest-runner-27.4.5" // { 7245 dependencies = [ 7246 sources."ansi-styles-4.3.0" 7247 sources."chalk-4.1.2" ··· 7251 sources."supports-color-7.2.0" 7252 ]; 7253 }) 7254 - (sources."jest-runtime-27.4.5" // { 7255 dependencies = [ 7256 sources."ansi-styles-4.3.0" 7257 sources."chalk-4.1.2" ··· 7262 ]; 7263 }) 7264 sources."jest-serializer-27.4.0" 7265 - (sources."jest-snapshot-27.4.5" // { 7266 dependencies = [ 7267 sources."ansi-styles-4.3.0" 7268 sources."chalk-4.1.2" ··· 7282 sources."supports-color-7.2.0" 7283 ]; 7284 }) 7285 - (sources."jest-validate-27.4.2" // { 7286 dependencies = [ 7287 sources."ansi-styles-4.3.0" 7288 - sources."camelcase-6.2.1" 7289 sources."chalk-4.1.2" 7290 sources."color-convert-2.0.1" 7291 sources."color-name-1.1.4" ··· 7294 sources."supports-color-7.2.0" 7295 ]; 7296 }) 7297 - (sources."jest-watcher-27.4.2" // { 7298 dependencies = [ 7299 sources."ansi-styles-4.3.0" 7300 sources."chalk-4.1.2" ··· 7304 sources."supports-color-7.2.0" 7305 ]; 7306 }) 7307 - (sources."jest-worker-27.4.5" // { 7308 dependencies = [ 7309 sources."has-flag-4.0.0" 7310 sources."supports-color-8.1.1" 7311 ]; 7312 }) 7313 sources."js-tokens-4.0.0" 7314 sources."js-yaml-4.1.0" 7315 (sources."jsdom-16.7.0" // { ··· 7329 sources."lodash-4.17.21" 7330 sources."lodash.debounce-4.0.8" 7331 sources."lodash.merge-4.6.2" 7332 - (sources."logform-2.3.0" // { 7333 dependencies = [ 7334 sources."ms-2.1.3" 7335 ]; 7336 }) 7337 sources."lru-cache-6.0.0" ··· 7352 sources."minimist-1.2.5" 7353 sources."mkdir-recursive-0.4.0" 7354 sources."moment-2.29.1" 7355 - (sources."mqtt-4.3.1" // { 7356 dependencies = [ 7357 sources."debug-4.3.3" 7358 sources."ms-2.1.2" ··· 7372 sources."node-releases-2.0.1" 7373 sources."normalize-path-3.0.0" 7374 sources."npm-run-path-4.0.1" 7375 - (sources."number-allocator-1.0.7" // { 7376 dependencies = [ 7377 sources."debug-4.3.3" 7378 sources."ms-2.1.2" ··· 7399 sources."path-parse-1.0.7" 7400 sources."path-type-4.0.0" 7401 sources."picocolors-1.0.0" 7402 - sources."picomatch-2.3.0" 7403 - sources."pirates-4.0.4" 7404 sources."pkg-dir-4.2.0" 7405 sources."prelude-ls-1.2.1" 7406 - (sources."pretty-format-27.4.2" // { 7407 dependencies = [ 7408 sources."ansi-styles-5.2.0" 7409 ]; 7410 }) 7411 sources."process-nextick-args-2.0.1" 7412 - sources."progress-2.0.3" 7413 sources."prompts-2.4.2" 7414 sources."psl-1.8.0" 7415 sources."pump-3.0.0" ··· 7433 sources."reinterval-1.1.0" 7434 sources."require-directory-2.1.1" 7435 sources."require-from-string-2.0.2" 7436 - sources."resolve-1.20.0" 7437 sources."resolve-cwd-3.0.0" 7438 sources."resolve-from-5.0.0" 7439 sources."resolve.exports-1.1.0" ··· 7442 sources."rimraf-3.0.2" 7443 sources."run-parallel-1.2.0" 7444 sources."safe-buffer-5.2.1" 7445 - sources."safe-stable-stringify-1.1.1" 7446 sources."safer-buffer-2.1.2" 7447 sources."saxes-5.0.1" 7448 sources."semver-7.3.5" ··· 7485 sources."supports-color-7.2.0" 7486 ]; 7487 }) 7488 sources."symbol-tree-3.2.4" 7489 sources."terminal-link-2.1.1" 7490 sources."test-exclude-6.0.0" ··· 7507 sources."type-fest-0.20.2" 7508 sources."typedarray-0.0.6" 7509 sources."typedarray-to-buffer-3.1.5" 7510 - sources."typescript-4.5.4" 7511 sources."unicode-canonical-property-names-ecmascript-2.0.0" 7512 sources."unicode-match-property-ecmascript-2.0.0" 7513 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 7518 sources."uri-js-4.4.1" 7519 sources."util-deprecate-1.0.2" 7520 sources."v8-compile-cache-2.3.0" 7521 - (sources."v8-to-istanbul-8.1.0" // { 7522 dependencies = [ 7523 sources."source-map-0.7.3" 7524 ]; ··· 7526 sources."w3c-hr-time-1.0.2" 7527 sources."w3c-xmlserializer-2.0.0" 7528 sources."walker-1.0.8" 7529 - sources."weak-map-1.0.5" 7530 sources."webidl-conversions-6.1.0" 7531 sources."whatwg-encoding-1.0.5" 7532 sources."whatwg-mimetype-2.3.0" 7533 sources."whatwg-url-8.7.0" 7534 sources."which-2.0.2" 7535 - sources."winston-3.3.3" 7536 sources."winston-syslog-2.4.4" 7537 - sources."winston-transport-4.4.1" 7538 sources."word-wrap-1.2.3" 7539 (sources."wrap-ansi-7.0.0" // { 7540 dependencies = [ ··· 7545 }) 7546 sources."wrappy-1.0.2" 7547 sources."write-file-atomic-3.0.3" 7548 - sources."ws-8.4.0" 7549 sources."xml-name-validator-3.0.0" 7550 sources."xmlchars-2.2.0" 7551 sources."xtend-4.0.2" ··· 7553 sources."yallist-4.0.0" 7554 sources."yargs-16.2.0" 7555 sources."yargs-parser-20.2.9" 7556 - (sources."zigbee-herdsman-0.13.188" // { 7557 dependencies = [ 7558 - sources."@babel/cli-7.16.0" 7559 - sources."@babel/code-frame-7.16.0" 7560 - sources."@babel/compat-data-7.16.4" 7561 - (sources."@babel/core-7.16.5" // { 7562 dependencies = [ 7563 sources."semver-6.3.0" 7564 ]; 7565 }) 7566 - sources."@babel/generator-7.16.5" 7567 - sources."@babel/helper-annotate-as-pure-7.16.0" 7568 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" 7569 - (sources."@babel/helper-compilation-targets-7.16.3" // { 7570 dependencies = [ 7571 sources."semver-6.3.0" 7572 ]; 7573 }) 7574 - sources."@babel/helper-create-class-features-plugin-7.16.5" 7575 - sources."@babel/helper-create-regexp-features-plugin-7.16.0" 7576 - (sources."@babel/helper-define-polyfill-provider-0.3.0" // { 7577 dependencies = [ 7578 sources."semver-6.3.0" 7579 ]; 7580 }) 7581 - sources."@babel/helper-environment-visitor-7.16.5" 7582 - sources."@babel/helper-explode-assignable-expression-7.16.0" 7583 - sources."@babel/helper-function-name-7.16.0" 7584 - sources."@babel/helper-get-function-arity-7.16.0" 7585 - sources."@babel/helper-hoist-variables-7.16.0" 7586 - sources."@babel/helper-member-expression-to-functions-7.16.5" 7587 - sources."@babel/helper-module-imports-7.16.0" 7588 - sources."@babel/helper-module-transforms-7.16.5" 7589 - sources."@babel/helper-optimise-call-expression-7.16.0" 7590 - sources."@babel/helper-plugin-utils-7.16.5" 7591 - sources."@babel/helper-remap-async-to-generator-7.16.5" 7592 - sources."@babel/helper-replace-supers-7.16.5" 7593 - sources."@babel/helper-simple-access-7.16.0" 7594 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 7595 - sources."@babel/helper-split-export-declaration-7.16.0" 7596 - sources."@babel/helper-validator-identifier-7.15.7" 7597 - sources."@babel/helper-validator-option-7.14.5" 7598 - sources."@babel/helper-wrap-function-7.16.5" 7599 - sources."@babel/helpers-7.16.5" 7600 - sources."@babel/highlight-7.16.0" 7601 - sources."@babel/parser-7.16.6" 7602 - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 7603 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 7604 - sources."@babel/plugin-proposal-async-generator-functions-7.16.5" 7605 - sources."@babel/plugin-proposal-class-properties-7.16.5" 7606 - sources."@babel/plugin-proposal-class-static-block-7.16.5" 7607 - sources."@babel/plugin-proposal-dynamic-import-7.16.5" 7608 - sources."@babel/plugin-proposal-export-namespace-from-7.16.5" 7609 - sources."@babel/plugin-proposal-json-strings-7.16.5" 7610 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5" 7611 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" 7612 - sources."@babel/plugin-proposal-numeric-separator-7.16.5" 7613 - sources."@babel/plugin-proposal-object-rest-spread-7.16.5" 7614 - sources."@babel/plugin-proposal-optional-catch-binding-7.16.5" 7615 - sources."@babel/plugin-proposal-optional-chaining-7.16.5" 7616 - sources."@babel/plugin-proposal-private-methods-7.16.5" 7617 - sources."@babel/plugin-proposal-private-property-in-object-7.16.5" 7618 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.5" 7619 sources."@babel/plugin-syntax-async-generators-7.8.4" 7620 sources."@babel/plugin-syntax-bigint-7.8.3" 7621 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 7632 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 7633 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 7634 sources."@babel/plugin-syntax-top-level-await-7.14.5" 7635 - sources."@babel/plugin-syntax-typescript-7.16.5" 7636 - sources."@babel/plugin-transform-arrow-functions-7.16.5" 7637 - sources."@babel/plugin-transform-async-to-generator-7.16.5" 7638 - sources."@babel/plugin-transform-block-scoped-functions-7.16.5" 7639 - sources."@babel/plugin-transform-block-scoping-7.16.5" 7640 - sources."@babel/plugin-transform-classes-7.16.5" 7641 - sources."@babel/plugin-transform-computed-properties-7.16.5" 7642 - sources."@babel/plugin-transform-destructuring-7.16.5" 7643 - sources."@babel/plugin-transform-dotall-regex-7.16.5" 7644 - sources."@babel/plugin-transform-duplicate-keys-7.16.5" 7645 - sources."@babel/plugin-transform-exponentiation-operator-7.16.5" 7646 - sources."@babel/plugin-transform-for-of-7.16.5" 7647 - sources."@babel/plugin-transform-function-name-7.16.5" 7648 - sources."@babel/plugin-transform-literals-7.16.5" 7649 - sources."@babel/plugin-transform-member-expression-literals-7.16.5" 7650 - sources."@babel/plugin-transform-modules-amd-7.16.5" 7651 - sources."@babel/plugin-transform-modules-commonjs-7.16.5" 7652 - sources."@babel/plugin-transform-modules-systemjs-7.16.5" 7653 - sources."@babel/plugin-transform-modules-umd-7.16.5" 7654 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5" 7655 - sources."@babel/plugin-transform-new-target-7.16.5" 7656 - sources."@babel/plugin-transform-object-super-7.16.5" 7657 - sources."@babel/plugin-transform-parameters-7.16.5" 7658 - sources."@babel/plugin-transform-property-literals-7.16.5" 7659 - sources."@babel/plugin-transform-regenerator-7.16.5" 7660 - sources."@babel/plugin-transform-reserved-words-7.16.5" 7661 - sources."@babel/plugin-transform-shorthand-properties-7.16.5" 7662 - sources."@babel/plugin-transform-spread-7.16.5" 7663 - sources."@babel/plugin-transform-sticky-regex-7.16.5" 7664 - sources."@babel/plugin-transform-template-literals-7.16.5" 7665 - sources."@babel/plugin-transform-typeof-symbol-7.16.5" 7666 - sources."@babel/plugin-transform-typescript-7.16.1" 7667 - sources."@babel/plugin-transform-unicode-escapes-7.16.5" 7668 - sources."@babel/plugin-transform-unicode-regex-7.16.5" 7669 - (sources."@babel/preset-env-7.16.5" // { 7670 dependencies = [ 7671 sources."semver-6.3.0" 7672 ]; 7673 }) 7674 sources."@babel/preset-modules-0.1.5" 7675 - sources."@babel/preset-typescript-7.16.5" 7676 - sources."@babel/runtime-7.16.5" 7677 - sources."@babel/template-7.16.0" 7678 - sources."@babel/traverse-7.16.5" 7679 - sources."@babel/types-7.16.0" 7680 sources."@bcoe/v8-coverage-0.2.3" 7681 (sources."@eslint/eslintrc-1.0.5" // { 7682 dependencies = [ ··· 7687 sources."strip-json-comments-3.1.1" 7688 ]; 7689 }) 7690 - sources."@humanwhocodes/config-array-0.9.2" 7691 sources."@humanwhocodes/object-schema-1.2.1" 7692 sources."@istanbuljs/load-nyc-config-1.1.0" 7693 sources."@istanbuljs/schema-0.1.3" 7694 - (sources."@jest/console-27.4.2" // { 7695 dependencies = [ 7696 sources."ansi-styles-4.3.0" 7697 sources."chalk-4.1.2" ··· 7702 sources."supports-color-7.2.0" 7703 ]; 7704 }) 7705 - (sources."@jest/core-27.4.5" // { 7706 dependencies = [ 7707 sources."ansi-regex-5.0.1" 7708 sources."ansi-styles-4.3.0" ··· 7715 sources."supports-color-7.2.0" 7716 ]; 7717 }) 7718 - sources."@jest/environment-27.4.4" 7719 - sources."@jest/fake-timers-27.4.2" 7720 - sources."@jest/globals-27.4.4" 7721 - (sources."@jest/reporters-27.4.5" // { 7722 dependencies = [ 7723 sources."ansi-styles-4.3.0" 7724 sources."chalk-4.1.2" 7725 sources."color-convert-2.0.1" 7726 sources."color-name-1.1.4" 7727 sources."has-flag-4.0.0" 7728 - sources."istanbul-lib-instrument-4.0.3" 7729 - sources."semver-6.3.0" 7730 sources."slash-3.0.0" 7731 sources."source-map-0.6.1" 7732 sources."supports-color-7.2.0" ··· 7737 sources."source-map-0.6.1" 7738 ]; 7739 }) 7740 - sources."@jest/test-result-27.4.2" 7741 - sources."@jest/test-sequencer-27.4.5" 7742 - (sources."@jest/transform-27.4.5" // { 7743 dependencies = [ 7744 sources."ansi-styles-4.3.0" 7745 sources."chalk-4.1.2" ··· 7779 sources."@sinonjs/commons-1.8.3" 7780 sources."@sinonjs/fake-timers-8.1.0" 7781 sources."@tootallnate/once-1.1.2" 7782 - sources."@types/babel__core-7.1.17" 7783 sources."@types/babel__generator-7.6.4" 7784 sources."@types/babel__template-7.4.1" 7785 sources."@types/babel__traverse-7.14.2" ··· 7789 sources."@types/istanbul-lib-coverage-2.0.4" 7790 sources."@types/istanbul-lib-report-3.0.0" 7791 sources."@types/istanbul-reports-3.0.1" 7792 - sources."@types/jest-27.0.3" 7793 sources."@types/json-schema-7.0.9" 7794 sources."@types/ms-0.7.31" 7795 sources."@types/mz-2.7.4" 7796 sources."@types/nedb-1.8.12" 7797 - sources."@types/node-17.0.4" 7798 - sources."@types/prettier-2.4.2" 7799 sources."@types/serialport-8.0.2" 7800 sources."@types/stack-utils-2.0.1" 7801 sources."@types/yargs-16.0.4" 7802 sources."@types/yargs-parser-20.2.1" 7803 - sources."@typescript-eslint/eslint-plugin-5.8.0" 7804 - sources."@typescript-eslint/experimental-utils-5.8.0" 7805 - sources."@typescript-eslint/parser-5.8.0" 7806 - sources."@typescript-eslint/scope-manager-5.8.0" 7807 - sources."@typescript-eslint/types-5.8.0" 7808 - sources."@typescript-eslint/typescript-estree-5.8.0" 7809 - sources."@typescript-eslint/visitor-keys-5.8.0" 7810 sources."abab-2.0.5" 7811 - sources."acorn-8.6.0" 7812 (sources."acorn-globals-6.0.0" // { 7813 dependencies = [ 7814 sources."acorn-7.4.1" ··· 7818 sources."acorn-walk-7.2.0" 7819 sources."agent-base-6.0.2" 7820 sources."ajv-6.12.6" 7821 - sources."ansi-colors-4.1.1" 7822 (sources."ansi-escapes-4.3.2" // { 7823 dependencies = [ 7824 sources."type-fest-0.21.3" ··· 7833 sources."argparse-1.0.10" 7834 sources."array-union-2.1.0" 7835 sources."asynckit-0.4.0" 7836 - (sources."babel-jest-27.4.5" // { 7837 dependencies = [ 7838 sources."ansi-styles-4.3.0" 7839 sources."chalk-4.1.2" ··· 7847 sources."babel-plugin-dynamic-import-node-2.3.3" 7848 sources."babel-plugin-istanbul-6.1.1" 7849 sources."babel-plugin-jest-hoist-27.4.0" 7850 - (sources."babel-plugin-polyfill-corejs2-0.3.0" // { 7851 dependencies = [ 7852 sources."semver-6.3.0" 7853 ]; 7854 }) 7855 - sources."babel-plugin-polyfill-corejs3-0.4.0" 7856 - sources."babel-plugin-polyfill-regenerator-0.3.0" 7857 sources."babel-preset-current-node-syntax-1.0.1" 7858 sources."babel-preset-jest-27.4.0" 7859 sources."balanced-match-1.0.2" ··· 7875 sources."call-bind-1.0.2" 7876 sources."callsites-3.1.0" 7877 sources."camelcase-5.3.1" 7878 - sources."caniuse-lite-1.0.30001292" 7879 sources."chalk-2.4.2" 7880 sources."char-regex-1.0.2" 7881 - sources."chokidar-3.5.2" 7882 sources."chownr-1.1.4" 7883 sources."ci-info-3.3.0" 7884 sources."cjs-module-lexer-1.2.2" ··· 7900 sources."concat-map-0.0.1" 7901 sources."console-control-strings-1.1.0" 7902 sources."convert-source-map-1.8.0" 7903 - (sources."core-js-compat-3.20.1" // { 7904 dependencies = [ 7905 sources."semver-7.0.0" 7906 ]; ··· 7925 sources."define-properties-1.1.3" 7926 sources."delayed-stream-1.0.0" 7927 sources."delegates-1.0.0" 7928 - sources."detect-libc-1.0.3" 7929 sources."detect-newline-3.1.0" 7930 sources."diff-sequences-27.4.0" 7931 sources."dir-glob-3.0.1" ··· 7935 sources."webidl-conversions-5.0.0" 7936 ]; 7937 }) 7938 - sources."electron-to-chromium-1.4.28" 7939 sources."emittery-0.8.1" 7940 sources."emoji-regex-8.0.0" 7941 sources."end-of-stream-1.4.4" 7942 - sources."enquirer-2.3.6" 7943 sources."escalade-3.1.1" 7944 sources."escape-string-regexp-1.0.5" 7945 (sources."escodegen-2.0.0" // { ··· 7952 sources."type-check-0.3.2" 7953 ]; 7954 }) 7955 - (sources."eslint-8.5.0" // { 7956 dependencies = [ 7957 sources."ansi-regex-5.0.1" 7958 sources."ansi-styles-4.3.0" ··· 7966 sources."glob-parent-6.0.2" 7967 sources."globals-13.12.0" 7968 sources."has-flag-4.0.0" 7969 - sources."ignore-4.0.6" 7970 sources."js-yaml-4.1.0" 7971 sources."strip-ansi-6.0.1" 7972 sources."strip-json-comments-3.1.1" ··· 7979 sources."eslint-visitor-keys-2.1.0" 7980 ]; 7981 }) 7982 - sources."eslint-visitor-keys-3.1.0" 7983 - sources."espree-9.2.0" 7984 sources."esprima-4.0.1" 7985 (sources."esquery-1.4.0" // { 7986 dependencies = [ ··· 7997 sources."execa-5.1.1" 7998 sources."exit-0.1.2" 7999 sources."expand-template-2.0.3" 8000 - (sources."expect-27.4.2" // { 8001 - dependencies = [ 8002 - sources."ansi-styles-5.2.0" 8003 - ]; 8004 - }) 8005 sources."fast-deep-equal-3.1.3" 8006 - sources."fast-glob-3.2.7" 8007 sources."fast-json-stable-stringify-2.1.0" 8008 sources."fast-levenshtein-2.0.6" 8009 sources."fastq-1.13.0" ··· 8013 sources."fill-range-7.0.1" 8014 sources."find-up-4.1.0" 8015 sources."flat-cache-3.0.4" 8016 - sources."flatted-3.2.4" 8017 sources."form-data-3.0.1" 8018 sources."fs-constants-1.0.0" 8019 sources."fs-readdir-recursive-1.1.0" ··· 8031 sources."glob-7.2.0" 8032 sources."glob-parent-5.1.2" 8033 sources."globals-11.12.0" 8034 - (sources."globby-11.0.4" // { 8035 dependencies = [ 8036 sources."slash-3.0.0" 8037 ]; 8038 }) 8039 - sources."graceful-fs-4.2.8" 8040 (sources."handlebars-4.7.7" // { 8041 dependencies = [ 8042 sources."source-map-0.6.1" ··· 8059 sources."resolve-from-4.0.0" 8060 ]; 8061 }) 8062 - sources."import-local-3.0.3" 8063 sources."imurmurhash-0.1.4" 8064 sources."inflight-1.0.6" 8065 sources."inherits-2.0.4" 8066 sources."ini-1.3.8" 8067 sources."is-binary-path-2.1.0" 8068 - sources."is-core-module-2.8.0" 8069 sources."is-extglob-2.1.1" 8070 sources."is-fullwidth-code-point-1.0.0" 8071 sources."is-generator-fn-2.1.0" ··· 8095 sources."source-map-0.6.1" 8096 ]; 8097 }) 8098 - sources."istanbul-reports-3.1.2" 8099 - (sources."jest-27.4.5" // { 8100 dependencies = [ 8101 sources."ansi-styles-4.3.0" 8102 sources."chalk-4.1.2" 8103 sources."color-convert-2.0.1" 8104 sources."color-name-1.1.4" 8105 sources."has-flag-4.0.0" 8106 - sources."jest-cli-27.4.5" 8107 sources."supports-color-7.2.0" 8108 ]; 8109 }) 8110 sources."jest-changed-files-27.4.2" 8111 - (sources."jest-circus-27.4.5" // { 8112 dependencies = [ 8113 sources."ansi-styles-4.3.0" 8114 sources."chalk-4.1.2" ··· 8119 sources."supports-color-7.2.0" 8120 ]; 8121 }) 8122 - (sources."jest-config-27.4.5" // { 8123 dependencies = [ 8124 sources."ansi-styles-4.3.0" 8125 sources."chalk-4.1.2" ··· 8130 sources."supports-color-7.2.0" 8131 ]; 8132 }) 8133 - (sources."jest-diff-27.4.2" // { 8134 dependencies = [ 8135 sources."ansi-styles-4.3.0" 8136 sources."chalk-4.1.2" ··· 8141 ]; 8142 }) 8143 sources."jest-docblock-27.4.0" 8144 - (sources."jest-each-27.4.2" // { 8145 dependencies = [ 8146 sources."ansi-styles-4.3.0" 8147 sources."chalk-4.1.2" ··· 8151 sources."supports-color-7.2.0" 8152 ]; 8153 }) 8154 - sources."jest-environment-jsdom-27.4.4" 8155 - sources."jest-environment-node-27.4.4" 8156 sources."jest-get-type-27.4.0" 8157 - sources."jest-haste-map-27.4.5" 8158 - (sources."jest-jasmine2-27.4.5" // { 8159 dependencies = [ 8160 sources."ansi-styles-4.3.0" 8161 sources."chalk-4.1.2" ··· 8165 sources."supports-color-7.2.0" 8166 ]; 8167 }) 8168 - sources."jest-leak-detector-27.4.2" 8169 - (sources."jest-matcher-utils-27.4.2" // { 8170 dependencies = [ 8171 sources."ansi-styles-4.3.0" 8172 sources."chalk-4.1.2" ··· 8176 sources."supports-color-7.2.0" 8177 ]; 8178 }) 8179 - (sources."jest-message-util-27.4.2" // { 8180 dependencies = [ 8181 sources."ansi-styles-4.3.0" 8182 sources."chalk-4.1.2" ··· 8187 sources."supports-color-7.2.0" 8188 ]; 8189 }) 8190 - sources."jest-mock-27.4.2" 8191 sources."jest-pnp-resolver-1.2.2" 8192 sources."jest-regex-util-27.4.0" 8193 - (sources."jest-resolve-27.4.5" // { 8194 dependencies = [ 8195 sources."ansi-styles-4.3.0" 8196 sources."chalk-4.1.2" ··· 8201 sources."supports-color-7.2.0" 8202 ]; 8203 }) 8204 - sources."jest-resolve-dependencies-27.4.5" 8205 - (sources."jest-runner-27.4.5" // { 8206 dependencies = [ 8207 sources."ansi-styles-4.3.0" 8208 sources."chalk-4.1.2" ··· 8212 sources."supports-color-7.2.0" 8213 ]; 8214 }) 8215 - (sources."jest-runtime-27.4.5" // { 8216 dependencies = [ 8217 sources."ansi-styles-4.3.0" 8218 sources."chalk-4.1.2" ··· 8224 ]; 8225 }) 8226 sources."jest-serializer-27.4.0" 8227 - (sources."jest-snapshot-27.4.5" // { 8228 dependencies = [ 8229 sources."ansi-styles-4.3.0" 8230 sources."chalk-4.1.2" ··· 8244 sources."supports-color-7.2.0" 8245 ]; 8246 }) 8247 - (sources."jest-validate-27.4.2" // { 8248 dependencies = [ 8249 sources."ansi-styles-4.3.0" 8250 - sources."camelcase-6.2.1" 8251 sources."chalk-4.1.2" 8252 sources."color-convert-2.0.1" 8253 sources."color-name-1.1.4" ··· 8255 sources."supports-color-7.2.0" 8256 ]; 8257 }) 8258 - (sources."jest-watcher-27.4.2" // { 8259 dependencies = [ 8260 sources."ansi-styles-4.3.0" 8261 sources."chalk-4.1.2" ··· 8265 sources."supports-color-7.2.0" 8266 ]; 8267 }) 8268 - (sources."jest-worker-27.4.5" // { 8269 dependencies = [ 8270 sources."has-flag-4.0.0" 8271 sources."supports-color-8.1.1" ··· 8294 ]; 8295 }) 8296 sources."makeerror-1.0.12" 8297 - sources."marked-3.0.8" 8298 sources."merge-stream-2.0.0" 8299 sources."merge2-1.4.1" 8300 sources."micromatch-4.0.4" ··· 8337 sources."path-parse-1.0.7" 8338 sources."path-type-4.0.0" 8339 sources."picocolors-1.0.0" 8340 - sources."picomatch-2.3.0" 8341 sources."pify-4.0.1" 8342 - sources."pirates-4.0.4" 8343 sources."pkg-dir-4.2.0" 8344 - sources."prebuild-install-7.0.0" 8345 sources."prelude-ls-1.2.1" 8346 - (sources."pretty-format-27.4.2" // { 8347 dependencies = [ 8348 sources."ansi-regex-5.0.1" 8349 sources."ansi-styles-5.2.0" 8350 ]; 8351 }) 8352 sources."process-nextick-args-2.0.1" 8353 - sources."progress-2.0.3" 8354 sources."prompts-2.4.2" 8355 sources."psl-1.8.0" 8356 sources."pump-3.0.0" ··· 8373 ]; 8374 }) 8375 sources."require-directory-2.1.1" 8376 - sources."resolve-1.20.0" 8377 sources."resolve-cwd-3.0.0" 8378 sources."resolve-from-5.0.0" 8379 sources."resolve.exports-1.1.0" ··· 8388 sources."set-blocking-2.0.0" 8389 sources."shebang-command-2.0.0" 8390 sources."shebang-regex-3.0.0" 8391 - sources."shiki-0.9.15" 8392 sources."signal-exit-3.0.6" 8393 sources."simple-concat-1.0.1" 8394 - sources."simple-get-4.0.0" 8395 sources."sisteransi-1.0.5" 8396 sources."slash-2.0.0" 8397 sources."slip-1.0.2" ··· 8426 sources."supports-color-7.2.0" 8427 ]; 8428 }) 8429 sources."symbol-tree-3.2.4" 8430 sources."tar-fs-2.1.1" 8431 (sources."tar-stream-2.2.0" // { ··· 8451 sources."type-detect-4.0.8" 8452 sources."type-fest-0.20.2" 8453 sources."typedarray-to-buffer-3.1.5" 8454 - sources."typedoc-0.22.10" 8455 - sources."typedoc-plugin-markdown-3.11.8" 8456 sources."typedoc-plugin-no-inherit-1.3.1" 8457 sources."typedoc-plugin-sourcefile-url-1.0.6" 8458 - sources."typescript-4.5.4" 8459 - sources."uglify-js-3.14.5" 8460 sources."unicode-canonical-property-names-ecmascript-2.0.0" 8461 sources."unicode-match-property-ecmascript-2.0.0" 8462 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 8465 sources."uri-js-4.4.1" 8466 sources."util-deprecate-1.0.2" 8467 sources."v8-compile-cache-2.3.0" 8468 - (sources."v8-to-istanbul-8.1.0" // { 8469 dependencies = [ 8470 sources."source-map-0.7.3" 8471 ]; ··· 8512 sources."yargs-parser-20.2.9" 8513 ]; 8514 }) 8515 - (sources."zigbee-herdsman-converters-14.0.366" // { 8516 dependencies = [ 8517 sources."@babel/code-frame-7.16.7" 8518 - sources."@babel/compat-data-7.16.4" 8519 - (sources."@babel/core-7.16.7" // { 8520 dependencies = [ 8521 sources."semver-6.3.0" 8522 sources."source-map-0.5.7" 8523 ]; 8524 }) 8525 - (sources."@babel/generator-7.16.7" // { 8526 dependencies = [ 8527 sources."source-map-0.5.7" 8528 ]; ··· 8544 sources."@babel/helper-validator-identifier-7.16.7" 8545 sources."@babel/helper-validator-option-7.16.7" 8546 sources."@babel/helpers-7.16.7" 8547 - (sources."@babel/highlight-7.16.7" // { 8548 dependencies = [ 8549 sources."ansi-styles-3.2.1" 8550 sources."chalk-2.4.2" ··· 8555 sources."supports-color-5.5.0" 8556 ]; 8557 }) 8558 - sources."@babel/parser-7.16.7" 8559 sources."@babel/plugin-syntax-async-generators-7.8.4" 8560 sources."@babel/plugin-syntax-bigint-7.8.3" 8561 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 8570 sources."@babel/plugin-syntax-top-level-await-7.14.5" 8571 sources."@babel/plugin-syntax-typescript-7.16.7" 8572 sources."@babel/template-7.16.7" 8573 - (sources."@babel/traverse-7.16.7" // { 8574 dependencies = [ 8575 sources."globals-11.12.0" 8576 ]; 8577 }) 8578 - sources."@babel/types-7.16.7" 8579 sources."@bcoe/v8-coverage-0.2.3" 8580 - sources."@eslint/eslintrc-1.0.5" 8581 - sources."@humanwhocodes/config-array-0.9.2" 8582 sources."@humanwhocodes/object-schema-1.2.1" 8583 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 8584 dependencies = [ ··· 8588 ]; 8589 }) 8590 sources."@istanbuljs/schema-0.1.3" 8591 - sources."@jest/console-27.4.2" 8592 - sources."@jest/core-27.4.5" 8593 - sources."@jest/environment-27.4.4" 8594 - sources."@jest/fake-timers-27.4.2" 8595 - sources."@jest/globals-27.4.4" 8596 - sources."@jest/reporters-27.4.5" 8597 sources."@jest/source-map-27.4.0" 8598 - sources."@jest/test-result-27.4.2" 8599 - sources."@jest/test-sequencer-27.4.5" 8600 - sources."@jest/transform-27.4.5" 8601 sources."@jest/types-27.4.2" 8602 sources."@nodelib/fs.scandir-2.1.5" 8603 sources."@nodelib/fs.stat-2.0.5" ··· 8614 sources."@types/istanbul-lib-report-3.0.0" 8615 sources."@types/istanbul-reports-3.0.1" 8616 sources."@types/json-schema-7.0.9" 8617 - sources."@types/node-17.0.5" 8618 - sources."@types/prettier-2.4.2" 8619 sources."@types/stack-utils-2.0.1" 8620 sources."@types/yargs-16.0.4" 8621 sources."@types/yargs-parser-20.2.1" 8622 - (sources."@typescript-eslint/experimental-utils-5.8.1" // { 8623 dependencies = [ 8624 sources."eslint-scope-5.1.1" 8625 sources."estraverse-4.3.0" 8626 ]; 8627 }) 8628 - sources."@typescript-eslint/scope-manager-5.8.1" 8629 - sources."@typescript-eslint/types-5.8.1" 8630 - sources."@typescript-eslint/typescript-estree-5.8.1" 8631 - sources."@typescript-eslint/visitor-keys-5.8.1" 8632 sources."abab-2.0.5" 8633 sources."acorn-8.7.0" 8634 (sources."acorn-globals-6.0.0" // { ··· 8640 sources."acorn-walk-7.2.0" 8641 sources."agent-base-6.0.2" 8642 sources."ajv-6.12.6" 8643 - sources."ansi-colors-4.1.1" 8644 (sources."ansi-escapes-4.3.2" // { 8645 dependencies = [ 8646 sources."type-fest-0.21.3" ··· 8652 sources."argparse-2.0.1" 8653 sources."array-union-2.1.0" 8654 sources."asynckit-0.4.0" 8655 - sources."axios-0.24.0" 8656 - sources."babel-jest-27.4.5" 8657 - (sources."babel-plugin-istanbul-6.1.1" // { 8658 - dependencies = [ 8659 - sources."istanbul-lib-instrument-5.1.0" 8660 - sources."semver-6.3.0" 8661 - ]; 8662 - }) 8663 sources."babel-plugin-jest-hoist-27.4.0" 8664 sources."babel-preset-current-node-syntax-1.0.1" 8665 sources."babel-preset-jest-27.4.0" ··· 8676 sources."buffer-from-1.1.2" 8677 sources."callsites-3.1.0" 8678 sources."camelcase-5.3.1" 8679 - sources."caniuse-lite-1.0.30001294" 8680 sources."chalk-4.1.2" 8681 sources."char-regex-1.0.2" 8682 sources."ci-info-3.3.0" ··· 8716 sources."webidl-conversions-5.0.0" 8717 ]; 8718 }) 8719 - sources."electron-to-chromium-1.4.31" 8720 sources."emittery-0.8.1" 8721 sources."emoji-regex-8.0.0" 8722 sources."end-of-stream-1.4.4" 8723 - sources."enquirer-2.3.6" 8724 sources."escalade-3.1.1" 8725 sources."escape-string-regexp-4.0.0" 8726 (sources."escodegen-2.0.0" // { ··· 8731 sources."type-check-0.3.2" 8732 ]; 8733 }) 8734 - sources."eslint-8.6.0" 8735 sources."eslint-config-google-0.14.0" 8736 - sources."eslint-plugin-jest-25.3.3" 8737 sources."eslint-scope-7.1.0" 8738 (sources."eslint-utils-3.0.0" // { 8739 dependencies = [ 8740 sources."eslint-visitor-keys-2.1.0" 8741 ]; 8742 }) 8743 - sources."eslint-visitor-keys-3.1.0" 8744 sources."espree-9.3.0" 8745 sources."esprima-4.0.1" 8746 sources."esquery-1.4.0" ··· 8749 sources."esutils-2.0.3" 8750 sources."execa-5.1.1" 8751 sources."exit-0.1.2" 8752 - (sources."expect-27.4.2" // { 8753 - dependencies = [ 8754 - sources."ansi-styles-5.2.0" 8755 - ]; 8756 - }) 8757 sources."fast-deep-equal-3.1.3" 8758 - (sources."fast-glob-3.2.7" // { 8759 dependencies = [ 8760 sources."glob-parent-5.1.2" 8761 ]; ··· 8768 sources."fill-range-7.0.1" 8769 sources."find-up-4.1.0" 8770 sources."flat-cache-3.0.4" 8771 - sources."flatted-3.2.4" 8772 - sources."follow-redirects-1.14.6" 8773 sources."form-data-3.0.1" 8774 sources."fs-constants-1.0.0" 8775 sources."fs.realpath-1.0.0" ··· 8783 sources."glob-7.2.0" 8784 sources."glob-parent-6.0.2" 8785 sources."globals-13.12.0" 8786 - (sources."globby-11.0.4" // { 8787 - dependencies = [ 8788 - sources."ignore-5.2.0" 8789 - ]; 8790 - }) 8791 - sources."graceful-fs-4.2.8" 8792 sources."has-1.0.3" 8793 sources."has-flag-4.0.0" 8794 sources."html-encoding-sniffer-2.0.1" ··· 8798 sources."human-signals-2.1.0" 8799 sources."iconv-lite-0.4.24" 8800 sources."ieee754-1.2.1" 8801 - sources."ignore-4.0.6" 8802 sources."import-fresh-3.3.0" 8803 - sources."import-local-3.0.3" 8804 sources."imurmurhash-0.1.4" 8805 sources."inflight-1.0.6" 8806 sources."inherits-2.0.4" 8807 - sources."is-core-module-2.8.0" 8808 sources."is-extglob-2.1.1" 8809 sources."is-fullwidth-code-point-3.0.0" 8810 sources."is-generator-fn-2.1.0" ··· 8815 sources."is-typedarray-1.0.0" 8816 sources."isexe-2.0.0" 8817 sources."istanbul-lib-coverage-3.2.0" 8818 - (sources."istanbul-lib-instrument-4.0.3" // { 8819 dependencies = [ 8820 sources."semver-6.3.0" 8821 ]; ··· 8823 sources."istanbul-lib-report-3.0.0" 8824 sources."istanbul-lib-source-maps-4.0.1" 8825 sources."istanbul-reports-3.1.3" 8826 - (sources."jest-27.4.5" // { 8827 dependencies = [ 8828 - sources."jest-cli-27.4.5" 8829 ]; 8830 }) 8831 sources."jest-changed-files-27.4.2" 8832 - sources."jest-circus-27.4.5" 8833 - sources."jest-config-27.4.5" 8834 - sources."jest-diff-27.4.2" 8835 sources."jest-docblock-27.4.0" 8836 - sources."jest-each-27.4.2" 8837 - sources."jest-environment-jsdom-27.4.4" 8838 - sources."jest-environment-node-27.4.4" 8839 sources."jest-get-type-27.4.0" 8840 - sources."jest-haste-map-27.4.5" 8841 - sources."jest-jasmine2-27.4.5" 8842 - sources."jest-leak-detector-27.4.2" 8843 - sources."jest-matcher-utils-27.4.2" 8844 - sources."jest-message-util-27.4.2" 8845 - sources."jest-mock-27.4.2" 8846 sources."jest-pnp-resolver-1.2.2" 8847 sources."jest-regex-util-27.4.0" 8848 - sources."jest-resolve-27.4.5" 8849 - sources."jest-resolve-dependencies-27.4.5" 8850 - sources."jest-runner-27.4.5" 8851 - sources."jest-runtime-27.4.5" 8852 sources."jest-serializer-27.4.0" 8853 - sources."jest-snapshot-27.4.5" 8854 sources."jest-util-27.4.2" 8855 - (sources."jest-validate-27.4.2" // { 8856 dependencies = [ 8857 - sources."camelcase-6.2.1" 8858 ]; 8859 }) 8860 - sources."jest-watcher-27.4.2" 8861 - (sources."jest-worker-27.4.5" // { 8862 dependencies = [ 8863 sources."supports-color-8.1.1" 8864 ]; ··· 8912 sources."path-parse-1.0.7" 8913 sources."path-type-4.0.0" 8914 sources."picocolors-1.0.0" 8915 - sources."picomatch-2.3.0" 8916 - sources."pirates-4.0.4" 8917 sources."pkg-dir-4.2.0" 8918 sources."prelude-ls-1.2.1" 8919 - (sources."pretty-format-27.4.2" // { 8920 dependencies = [ 8921 sources."ansi-styles-5.2.0" 8922 ]; 8923 }) 8924 - sources."progress-2.0.3" 8925 sources."prompts-2.4.2" 8926 sources."psl-1.8.0" 8927 sources."punycode-2.1.1" ··· 8930 sources."readable-stream-3.6.0" 8931 sources."regexpp-3.2.0" 8932 sources."require-directory-2.1.1" 8933 - sources."resolve-1.20.0" 8934 (sources."resolve-cwd-3.0.0" // { 8935 dependencies = [ 8936 sources."resolve-from-5.0.0" ··· 8967 sources."strip-json-comments-3.1.1" 8968 sources."supports-color-7.2.0" 8969 sources."supports-hyperlinks-2.2.0" 8970 sources."symbol-tree-3.2.4" 8971 sources."tar-stream-2.2.0" 8972 sources."terminal-link-2.1.1" ··· 8988 sources."uri-js-4.4.1" 8989 sources."util-deprecate-1.0.2" 8990 sources."v8-compile-cache-2.3.0" 8991 - (sources."v8-to-istanbul-8.1.0" // { 8992 dependencies = [ 8993 sources."source-map-0.7.3" 8994 ]; ··· 9012 sources."yallist-4.0.0" 9013 sources."yargs-16.2.0" 9014 sources."yargs-parser-20.2.9" 9015 - (sources."zigbee-herdsman-0.13.188" // { 9016 dependencies = [ 9017 - sources."@babel/cli-7.16.0" 9018 - sources."@babel/code-frame-7.16.0" 9019 - sources."@babel/compat-data-7.16.4" 9020 - (sources."@babel/core-7.16.5" // { 9021 dependencies = [ 9022 sources."semver-6.3.0" 9023 ]; 9024 }) 9025 - sources."@babel/generator-7.16.5" 9026 - sources."@babel/helper-annotate-as-pure-7.16.0" 9027 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" 9028 - (sources."@babel/helper-compilation-targets-7.16.3" // { 9029 dependencies = [ 9030 sources."semver-6.3.0" 9031 ]; 9032 }) 9033 - sources."@babel/helper-create-class-features-plugin-7.16.5" 9034 - sources."@babel/helper-create-regexp-features-plugin-7.16.0" 9035 - (sources."@babel/helper-define-polyfill-provider-0.3.0" // { 9036 dependencies = [ 9037 sources."semver-6.3.0" 9038 ]; 9039 }) 9040 - sources."@babel/helper-environment-visitor-7.16.5" 9041 - sources."@babel/helper-explode-assignable-expression-7.16.0" 9042 - sources."@babel/helper-function-name-7.16.0" 9043 - sources."@babel/helper-get-function-arity-7.16.0" 9044 - sources."@babel/helper-hoist-variables-7.16.0" 9045 - sources."@babel/helper-member-expression-to-functions-7.16.5" 9046 - sources."@babel/helper-module-imports-7.16.0" 9047 - sources."@babel/helper-module-transforms-7.16.5" 9048 - sources."@babel/helper-optimise-call-expression-7.16.0" 9049 - sources."@babel/helper-plugin-utils-7.16.5" 9050 - sources."@babel/helper-remap-async-to-generator-7.16.5" 9051 - sources."@babel/helper-replace-supers-7.16.5" 9052 - sources."@babel/helper-simple-access-7.16.0" 9053 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 9054 - sources."@babel/helper-split-export-declaration-7.16.0" 9055 - sources."@babel/helper-validator-identifier-7.15.7" 9056 - sources."@babel/helper-validator-option-7.14.5" 9057 - sources."@babel/helper-wrap-function-7.16.5" 9058 - sources."@babel/helpers-7.16.5" 9059 - sources."@babel/highlight-7.16.0" 9060 - sources."@babel/parser-7.16.6" 9061 - sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.2" 9062 - sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.0" 9063 - sources."@babel/plugin-proposal-async-generator-functions-7.16.5" 9064 - sources."@babel/plugin-proposal-class-properties-7.16.5" 9065 - sources."@babel/plugin-proposal-class-static-block-7.16.5" 9066 - sources."@babel/plugin-proposal-dynamic-import-7.16.5" 9067 - sources."@babel/plugin-proposal-export-namespace-from-7.16.5" 9068 - sources."@babel/plugin-proposal-json-strings-7.16.5" 9069 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5" 9070 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" 9071 - sources."@babel/plugin-proposal-numeric-separator-7.16.5" 9072 - sources."@babel/plugin-proposal-object-rest-spread-7.16.5" 9073 - sources."@babel/plugin-proposal-optional-catch-binding-7.16.5" 9074 - sources."@babel/plugin-proposal-optional-chaining-7.16.5" 9075 - sources."@babel/plugin-proposal-private-methods-7.16.5" 9076 - sources."@babel/plugin-proposal-private-property-in-object-7.16.5" 9077 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.5" 9078 sources."@babel/plugin-syntax-async-generators-7.8.4" 9079 sources."@babel/plugin-syntax-bigint-7.8.3" 9080 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 9091 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9092 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 9093 sources."@babel/plugin-syntax-top-level-await-7.14.5" 9094 - sources."@babel/plugin-syntax-typescript-7.16.5" 9095 - sources."@babel/plugin-transform-arrow-functions-7.16.5" 9096 - sources."@babel/plugin-transform-async-to-generator-7.16.5" 9097 - sources."@babel/plugin-transform-block-scoped-functions-7.16.5" 9098 - sources."@babel/plugin-transform-block-scoping-7.16.5" 9099 - sources."@babel/plugin-transform-classes-7.16.5" 9100 - sources."@babel/plugin-transform-computed-properties-7.16.5" 9101 - sources."@babel/plugin-transform-destructuring-7.16.5" 9102 - sources."@babel/plugin-transform-dotall-regex-7.16.5" 9103 - sources."@babel/plugin-transform-duplicate-keys-7.16.5" 9104 - sources."@babel/plugin-transform-exponentiation-operator-7.16.5" 9105 - sources."@babel/plugin-transform-for-of-7.16.5" 9106 - sources."@babel/plugin-transform-function-name-7.16.5" 9107 - sources."@babel/plugin-transform-literals-7.16.5" 9108 - sources."@babel/plugin-transform-member-expression-literals-7.16.5" 9109 - sources."@babel/plugin-transform-modules-amd-7.16.5" 9110 - sources."@babel/plugin-transform-modules-commonjs-7.16.5" 9111 - sources."@babel/plugin-transform-modules-systemjs-7.16.5" 9112 - sources."@babel/plugin-transform-modules-umd-7.16.5" 9113 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5" 9114 - sources."@babel/plugin-transform-new-target-7.16.5" 9115 - sources."@babel/plugin-transform-object-super-7.16.5" 9116 - sources."@babel/plugin-transform-parameters-7.16.5" 9117 - sources."@babel/plugin-transform-property-literals-7.16.5" 9118 - sources."@babel/plugin-transform-regenerator-7.16.5" 9119 - sources."@babel/plugin-transform-reserved-words-7.16.5" 9120 - sources."@babel/plugin-transform-shorthand-properties-7.16.5" 9121 - sources."@babel/plugin-transform-spread-7.16.5" 9122 - sources."@babel/plugin-transform-sticky-regex-7.16.5" 9123 - sources."@babel/plugin-transform-template-literals-7.16.5" 9124 - sources."@babel/plugin-transform-typeof-symbol-7.16.5" 9125 - sources."@babel/plugin-transform-typescript-7.16.1" 9126 - sources."@babel/plugin-transform-unicode-escapes-7.16.5" 9127 - sources."@babel/plugin-transform-unicode-regex-7.16.5" 9128 - (sources."@babel/preset-env-7.16.5" // { 9129 dependencies = [ 9130 sources."semver-6.3.0" 9131 ]; 9132 }) 9133 sources."@babel/preset-modules-0.1.5" 9134 - sources."@babel/preset-typescript-7.16.5" 9135 - sources."@babel/runtime-7.16.5" 9136 - sources."@babel/template-7.16.0" 9137 - sources."@babel/traverse-7.16.5" 9138 - sources."@babel/types-7.16.0" 9139 sources."@bcoe/v8-coverage-0.2.3" 9140 (sources."@eslint/eslintrc-1.0.5" // { 9141 dependencies = [ ··· 9146 sources."strip-json-comments-3.1.1" 9147 ]; 9148 }) 9149 - sources."@humanwhocodes/config-array-0.9.2" 9150 sources."@humanwhocodes/object-schema-1.2.1" 9151 sources."@istanbuljs/load-nyc-config-1.1.0" 9152 sources."@istanbuljs/schema-0.1.3" 9153 - (sources."@jest/console-27.4.2" // { 9154 dependencies = [ 9155 sources."ansi-styles-4.3.0" 9156 sources."chalk-4.1.2" ··· 9161 sources."supports-color-7.2.0" 9162 ]; 9163 }) 9164 - (sources."@jest/core-27.4.5" // { 9165 dependencies = [ 9166 sources."ansi-regex-5.0.1" 9167 sources."ansi-styles-4.3.0" ··· 9174 sources."supports-color-7.2.0" 9175 ]; 9176 }) 9177 - sources."@jest/environment-27.4.4" 9178 - sources."@jest/fake-timers-27.4.2" 9179 - sources."@jest/globals-27.4.4" 9180 - (sources."@jest/reporters-27.4.5" // { 9181 dependencies = [ 9182 sources."ansi-styles-4.3.0" 9183 sources."chalk-4.1.2" 9184 sources."color-convert-2.0.1" 9185 sources."color-name-1.1.4" 9186 sources."has-flag-4.0.0" 9187 - sources."istanbul-lib-instrument-4.0.3" 9188 - sources."semver-6.3.0" 9189 sources."slash-3.0.0" 9190 sources."source-map-0.6.1" 9191 sources."supports-color-7.2.0" ··· 9196 sources."source-map-0.6.1" 9197 ]; 9198 }) 9199 - sources."@jest/test-result-27.4.2" 9200 - sources."@jest/test-sequencer-27.4.5" 9201 - (sources."@jest/transform-27.4.5" // { 9202 dependencies = [ 9203 sources."ansi-styles-4.3.0" 9204 sources."chalk-4.1.2" ··· 9238 sources."@sinonjs/commons-1.8.3" 9239 sources."@sinonjs/fake-timers-8.1.0" 9240 sources."@tootallnate/once-1.1.2" 9241 - sources."@types/babel__core-7.1.17" 9242 sources."@types/babel__generator-7.6.4" 9243 sources."@types/babel__template-7.4.1" 9244 sources."@types/babel__traverse-7.14.2" ··· 9248 sources."@types/istanbul-lib-coverage-2.0.4" 9249 sources."@types/istanbul-lib-report-3.0.0" 9250 sources."@types/istanbul-reports-3.0.1" 9251 - sources."@types/jest-27.0.3" 9252 sources."@types/json-schema-7.0.9" 9253 sources."@types/ms-0.7.31" 9254 sources."@types/mz-2.7.4" 9255 sources."@types/nedb-1.8.12" 9256 - sources."@types/node-17.0.4" 9257 - sources."@types/prettier-2.4.2" 9258 sources."@types/serialport-8.0.2" 9259 sources."@types/stack-utils-2.0.1" 9260 sources."@types/yargs-16.0.4" 9261 sources."@types/yargs-parser-20.2.1" 9262 - sources."@typescript-eslint/eslint-plugin-5.8.0" 9263 - sources."@typescript-eslint/experimental-utils-5.8.0" 9264 - sources."@typescript-eslint/parser-5.8.0" 9265 - sources."@typescript-eslint/scope-manager-5.8.0" 9266 - sources."@typescript-eslint/types-5.8.0" 9267 - sources."@typescript-eslint/typescript-estree-5.8.0" 9268 - sources."@typescript-eslint/visitor-keys-5.8.0" 9269 sources."abab-2.0.5" 9270 - sources."acorn-8.6.0" 9271 (sources."acorn-globals-6.0.0" // { 9272 dependencies = [ 9273 sources."acorn-7.4.1" ··· 9277 sources."acorn-walk-7.2.0" 9278 sources."agent-base-6.0.2" 9279 sources."ajv-6.12.6" 9280 - sources."ansi-colors-4.1.1" 9281 (sources."ansi-escapes-4.3.2" // { 9282 dependencies = [ 9283 sources."type-fest-0.21.3" ··· 9292 sources."argparse-1.0.10" 9293 sources."array-union-2.1.0" 9294 sources."asynckit-0.4.0" 9295 - (sources."babel-jest-27.4.5" // { 9296 dependencies = [ 9297 sources."ansi-styles-4.3.0" 9298 sources."chalk-4.1.2" ··· 9306 sources."babel-plugin-dynamic-import-node-2.3.3" 9307 sources."babel-plugin-istanbul-6.1.1" 9308 sources."babel-plugin-jest-hoist-27.4.0" 9309 - (sources."babel-plugin-polyfill-corejs2-0.3.0" // { 9310 dependencies = [ 9311 sources."semver-6.3.0" 9312 ]; 9313 }) 9314 - sources."babel-plugin-polyfill-corejs3-0.4.0" 9315 - sources."babel-plugin-polyfill-regenerator-0.3.0" 9316 sources."babel-preset-current-node-syntax-1.0.1" 9317 sources."babel-preset-jest-27.4.0" 9318 sources."balanced-match-1.0.2" ··· 9334 sources."call-bind-1.0.2" 9335 sources."callsites-3.1.0" 9336 sources."camelcase-5.3.1" 9337 - sources."caniuse-lite-1.0.30001292" 9338 sources."chalk-2.4.2" 9339 sources."char-regex-1.0.2" 9340 - sources."chokidar-3.5.2" 9341 sources."chownr-1.1.4" 9342 sources."ci-info-3.3.0" 9343 sources."cjs-module-lexer-1.2.2" ··· 9359 sources."concat-map-0.0.1" 9360 sources."console-control-strings-1.1.0" 9361 sources."convert-source-map-1.8.0" 9362 - (sources."core-js-compat-3.20.1" // { 9363 dependencies = [ 9364 sources."semver-7.0.0" 9365 ]; ··· 9384 sources."define-properties-1.1.3" 9385 sources."delayed-stream-1.0.0" 9386 sources."delegates-1.0.0" 9387 - sources."detect-libc-1.0.3" 9388 sources."detect-newline-3.1.0" 9389 sources."diff-sequences-27.4.0" 9390 sources."dir-glob-3.0.1" ··· 9394 sources."webidl-conversions-5.0.0" 9395 ]; 9396 }) 9397 - sources."electron-to-chromium-1.4.28" 9398 sources."emittery-0.8.1" 9399 sources."emoji-regex-8.0.0" 9400 sources."end-of-stream-1.4.4" 9401 - sources."enquirer-2.3.6" 9402 sources."escalade-3.1.1" 9403 sources."escape-string-regexp-1.0.5" 9404 (sources."escodegen-2.0.0" // { ··· 9411 sources."type-check-0.3.2" 9412 ]; 9413 }) 9414 - (sources."eslint-8.5.0" // { 9415 dependencies = [ 9416 sources."ansi-regex-5.0.1" 9417 sources."ansi-styles-4.3.0" ··· 9425 sources."glob-parent-6.0.2" 9426 sources."globals-13.12.0" 9427 sources."has-flag-4.0.0" 9428 - sources."ignore-4.0.6" 9429 sources."js-yaml-4.1.0" 9430 sources."strip-ansi-6.0.1" 9431 sources."strip-json-comments-3.1.1" ··· 9438 sources."eslint-visitor-keys-2.1.0" 9439 ]; 9440 }) 9441 - sources."eslint-visitor-keys-3.1.0" 9442 - sources."espree-9.2.0" 9443 sources."esprima-4.0.1" 9444 (sources."esquery-1.4.0" // { 9445 dependencies = [ ··· 9456 sources."execa-5.1.1" 9457 sources."exit-0.1.2" 9458 sources."expand-template-2.0.3" 9459 - (sources."expect-27.4.2" // { 9460 - dependencies = [ 9461 - sources."ansi-styles-5.2.0" 9462 - ]; 9463 - }) 9464 sources."fast-deep-equal-3.1.3" 9465 - sources."fast-glob-3.2.7" 9466 sources."fast-json-stable-stringify-2.1.0" 9467 sources."fast-levenshtein-2.0.6" 9468 sources."fastq-1.13.0" ··· 9472 sources."fill-range-7.0.1" 9473 sources."find-up-4.1.0" 9474 sources."flat-cache-3.0.4" 9475 - sources."flatted-3.2.4" 9476 sources."form-data-3.0.1" 9477 sources."fs-constants-1.0.0" 9478 sources."fs-readdir-recursive-1.1.0" ··· 9490 sources."glob-7.2.0" 9491 sources."glob-parent-5.1.2" 9492 sources."globals-11.12.0" 9493 - (sources."globby-11.0.4" // { 9494 dependencies = [ 9495 sources."slash-3.0.0" 9496 ]; 9497 }) 9498 - sources."graceful-fs-4.2.8" 9499 (sources."handlebars-4.7.7" // { 9500 dependencies = [ 9501 sources."source-map-0.6.1" ··· 9518 sources."resolve-from-4.0.0" 9519 ]; 9520 }) 9521 - sources."import-local-3.0.3" 9522 sources."imurmurhash-0.1.4" 9523 sources."inflight-1.0.6" 9524 sources."inherits-2.0.4" 9525 sources."ini-1.3.8" 9526 sources."is-binary-path-2.1.0" 9527 - sources."is-core-module-2.8.0" 9528 sources."is-extglob-2.1.1" 9529 sources."is-fullwidth-code-point-1.0.0" 9530 sources."is-generator-fn-2.1.0" ··· 9554 sources."source-map-0.6.1" 9555 ]; 9556 }) 9557 - sources."istanbul-reports-3.1.2" 9558 - (sources."jest-27.4.5" // { 9559 dependencies = [ 9560 sources."ansi-styles-4.3.0" 9561 sources."chalk-4.1.2" 9562 sources."color-convert-2.0.1" 9563 sources."color-name-1.1.4" 9564 sources."has-flag-4.0.0" 9565 - sources."jest-cli-27.4.5" 9566 sources."supports-color-7.2.0" 9567 ]; 9568 }) 9569 sources."jest-changed-files-27.4.2" 9570 - (sources."jest-circus-27.4.5" // { 9571 dependencies = [ 9572 sources."ansi-styles-4.3.0" 9573 sources."chalk-4.1.2" ··· 9578 sources."supports-color-7.2.0" 9579 ]; 9580 }) 9581 - (sources."jest-config-27.4.5" // { 9582 dependencies = [ 9583 sources."ansi-styles-4.3.0" 9584 sources."chalk-4.1.2" ··· 9589 sources."supports-color-7.2.0" 9590 ]; 9591 }) 9592 - (sources."jest-diff-27.4.2" // { 9593 dependencies = [ 9594 sources."ansi-styles-4.3.0" 9595 sources."chalk-4.1.2" ··· 9600 ]; 9601 }) 9602 sources."jest-docblock-27.4.0" 9603 - (sources."jest-each-27.4.2" // { 9604 dependencies = [ 9605 sources."ansi-styles-4.3.0" 9606 sources."chalk-4.1.2" ··· 9610 sources."supports-color-7.2.0" 9611 ]; 9612 }) 9613 - sources."jest-environment-jsdom-27.4.4" 9614 - sources."jest-environment-node-27.4.4" 9615 sources."jest-get-type-27.4.0" 9616 - sources."jest-haste-map-27.4.5" 9617 - (sources."jest-jasmine2-27.4.5" // { 9618 dependencies = [ 9619 sources."ansi-styles-4.3.0" 9620 sources."chalk-4.1.2" ··· 9624 sources."supports-color-7.2.0" 9625 ]; 9626 }) 9627 - sources."jest-leak-detector-27.4.2" 9628 - (sources."jest-matcher-utils-27.4.2" // { 9629 dependencies = [ 9630 sources."ansi-styles-4.3.0" 9631 sources."chalk-4.1.2" ··· 9635 sources."supports-color-7.2.0" 9636 ]; 9637 }) 9638 - (sources."jest-message-util-27.4.2" // { 9639 dependencies = [ 9640 sources."ansi-styles-4.3.0" 9641 sources."chalk-4.1.2" ··· 9646 sources."supports-color-7.2.0" 9647 ]; 9648 }) 9649 - sources."jest-mock-27.4.2" 9650 sources."jest-pnp-resolver-1.2.2" 9651 sources."jest-regex-util-27.4.0" 9652 - (sources."jest-resolve-27.4.5" // { 9653 dependencies = [ 9654 sources."ansi-styles-4.3.0" 9655 sources."chalk-4.1.2" ··· 9660 sources."supports-color-7.2.0" 9661 ]; 9662 }) 9663 - sources."jest-resolve-dependencies-27.4.5" 9664 - (sources."jest-runner-27.4.5" // { 9665 dependencies = [ 9666 sources."ansi-styles-4.3.0" 9667 sources."chalk-4.1.2" ··· 9671 sources."supports-color-7.2.0" 9672 ]; 9673 }) 9674 - (sources."jest-runtime-27.4.5" // { 9675 dependencies = [ 9676 sources."ansi-styles-4.3.0" 9677 sources."chalk-4.1.2" ··· 9683 ]; 9684 }) 9685 sources."jest-serializer-27.4.0" 9686 - (sources."jest-snapshot-27.4.5" // { 9687 dependencies = [ 9688 sources."ansi-styles-4.3.0" 9689 sources."chalk-4.1.2" ··· 9703 sources."supports-color-7.2.0" 9704 ]; 9705 }) 9706 - (sources."jest-validate-27.4.2" // { 9707 dependencies = [ 9708 sources."ansi-styles-4.3.0" 9709 - sources."camelcase-6.2.1" 9710 sources."chalk-4.1.2" 9711 sources."color-convert-2.0.1" 9712 sources."color-name-1.1.4" ··· 9714 sources."supports-color-7.2.0" 9715 ]; 9716 }) 9717 - (sources."jest-watcher-27.4.2" // { 9718 dependencies = [ 9719 sources."ansi-styles-4.3.0" 9720 sources."chalk-4.1.2" ··· 9724 sources."supports-color-7.2.0" 9725 ]; 9726 }) 9727 - (sources."jest-worker-27.4.5" // { 9728 dependencies = [ 9729 sources."has-flag-4.0.0" 9730 sources."supports-color-8.1.1" ··· 9753 ]; 9754 }) 9755 sources."makeerror-1.0.12" 9756 - sources."marked-3.0.8" 9757 sources."merge-stream-2.0.0" 9758 sources."merge2-1.4.1" 9759 sources."micromatch-4.0.4" ··· 9796 sources."path-parse-1.0.7" 9797 sources."path-type-4.0.0" 9798 sources."picocolors-1.0.0" 9799 - sources."picomatch-2.3.0" 9800 sources."pify-4.0.1" 9801 - sources."pirates-4.0.4" 9802 sources."pkg-dir-4.2.0" 9803 - sources."prebuild-install-7.0.0" 9804 sources."prelude-ls-1.2.1" 9805 - (sources."pretty-format-27.4.2" // { 9806 dependencies = [ 9807 sources."ansi-regex-5.0.1" 9808 sources."ansi-styles-5.2.0" 9809 ]; 9810 }) 9811 sources."process-nextick-args-2.0.1" 9812 - sources."progress-2.0.3" 9813 sources."prompts-2.4.2" 9814 sources."psl-1.8.0" 9815 sources."pump-3.0.0" ··· 9832 ]; 9833 }) 9834 sources."require-directory-2.1.1" 9835 - sources."resolve-1.20.0" 9836 sources."resolve-cwd-3.0.0" 9837 sources."resolve-from-5.0.0" 9838 sources."resolve.exports-1.1.0" ··· 9847 sources."set-blocking-2.0.0" 9848 sources."shebang-command-2.0.0" 9849 sources."shebang-regex-3.0.0" 9850 - sources."shiki-0.9.15" 9851 sources."signal-exit-3.0.6" 9852 sources."simple-concat-1.0.1" 9853 - sources."simple-get-4.0.0" 9854 sources."sisteransi-1.0.5" 9855 sources."slash-2.0.0" 9856 sources."slip-1.0.2" ··· 9885 sources."supports-color-7.2.0" 9886 ]; 9887 }) 9888 sources."symbol-tree-3.2.4" 9889 sources."tar-fs-2.1.1" 9890 (sources."tar-stream-2.2.0" // { ··· 9910 sources."type-detect-4.0.8" 9911 sources."type-fest-0.20.2" 9912 sources."typedarray-to-buffer-3.1.5" 9913 - sources."typedoc-0.22.10" 9914 - sources."typedoc-plugin-markdown-3.11.8" 9915 sources."typedoc-plugin-no-inherit-1.3.1" 9916 sources."typedoc-plugin-sourcefile-url-1.0.6" 9917 - sources."typescript-4.5.4" 9918 - sources."uglify-js-3.14.5" 9919 sources."unicode-canonical-property-names-ecmascript-2.0.0" 9920 sources."unicode-match-property-ecmascript-2.0.0" 9921 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 9924 sources."uri-js-4.4.1" 9925 sources."util-deprecate-1.0.2" 9926 sources."v8-compile-cache-2.3.0" 9927 - (sources."v8-to-istanbul-8.1.0" // { 9928 dependencies = [ 9929 sources."source-map-0.7.3" 9930 ]; ··· 9973 }) 9974 ]; 9975 }) 9976 - sources."zigbee2mqtt-frontend-0.6.67" 9977 ]; 9978 buildInputs = globalBuildInputs; 9979 meta = {
··· 4 5 let 6 sources = { 7 + "@babel/cli-7.16.8" = { 8 name = "_at_babel_slash_cli"; 9 packageName = "@babel/cli"; 10 + version = "7.16.8"; 11 src = fetchurl { 12 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.16.8.tgz"; 13 + sha512 = "FTKBbxyk5TclXOGmwYyqelqP5IF6hMxaeJskd85jbR5jBfYlwqgwAbJwnixi1ZBbTqKfFuAA95mdmUFeSRwyJA=="; 14 }; 15 }; 16 "@babel/code-frame-7.16.7" = { ··· 22 sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 23 }; 24 }; 25 + "@babel/compat-data-7.16.8" = { 26 name = "_at_babel_slash_compat-data"; 27 packageName = "@babel/compat-data"; 28 + version = "7.16.8"; 29 src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.8.tgz"; 31 + sha512 = "m7OkX0IdKLKPpBlJtF561YJal5y/jyI5fNfWbPxh2D/nbzzGI4qRyrD8xO2jB24u7l+5I2a43scCG2IrfjC50Q=="; 32 }; 33 }; 34 + "@babel/core-7.16.12" = { 35 name = "_at_babel_slash_core"; 36 packageName = "@babel/core"; 37 + version = "7.16.12"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.16.12.tgz"; 40 + sha512 = "dK5PtG1uiN2ikk++5OzSYsitZKny4wOCD0nrO4TqnW4BVBTQ2NGS3NgilvT/TEyxTST7LNyWV/T4tXDoD3fOgg=="; 41 }; 42 }; 43 + "@babel/generator-7.16.8" = { 44 name = "_at_babel_slash_generator"; 45 packageName = "@babel/generator"; 46 + version = "7.16.8"; 47 src = fetchurl { 48 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.8.tgz"; 49 + sha512 = "1ojZwE9+lOXzcWdWmO6TbUzDfqLD39CmEhN8+2cX9XkDo5yW1OpgfejfliysR2AWLpMamTiOiAp/mtroaymhpw=="; 50 }; 51 }; 52 + "@babel/helper-annotate-as-pure-7.16.7" = { 53 name = "_at_babel_slash_helper-annotate-as-pure"; 54 packageName = "@babel/helper-annotate-as-pure"; 55 + version = "7.16.7"; 56 src = fetchurl { 57 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"; 58 + sha512 = "s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="; 59 }; 60 }; 61 + "@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" = { 62 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 63 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 64 + version = "7.16.7"; 65 src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"; 67 + sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; 68 }; 69 }; 70 "@babel/helper-compilation-targets-7.16.7" = { ··· 76 sha512 = "mGojBwIWcwGD6rfqgRXVlVYmPAv7eOpIemUG3dGnDdCY4Pae70ROij3XmfrH6Fa1h1aiDylpglbZyktfzyo/hA=="; 77 }; 78 }; 79 + "@babel/helper-create-class-features-plugin-7.16.10" = { 80 name = "_at_babel_slash_helper-create-class-features-plugin"; 81 packageName = "@babel/helper-create-class-features-plugin"; 82 + version = "7.16.10"; 83 src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.10.tgz"; 85 + sha512 = "wDeej0pu3WN/ffTxMNCPW5UCiOav8IcLRxSIyp/9+IF2xJUM9h/OYjg0IJLHaL6F8oU8kqMz9nc1vryXhMsgXg=="; 86 }; 87 }; 88 + "@babel/helper-create-regexp-features-plugin-7.16.7" = { 89 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 90 packageName = "@babel/helper-create-regexp-features-plugin"; 91 + version = "7.16.7"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.7.tgz"; 94 + sha512 = "fk5A6ymfp+O5+p2yCkXAu5Kyj6v0xh0RBeNcAkYUMDvvAAoxvSKXn+Jb37t/yWFiQVDFK1ELpUTD8/aLhCPu+g=="; 95 }; 96 }; 97 + "@babel/helper-define-polyfill-provider-0.3.1" = { 98 name = "_at_babel_slash_helper-define-polyfill-provider"; 99 packageName = "@babel/helper-define-polyfill-provider"; 100 + version = "0.3.1"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.1.tgz"; 103 + sha512 = "J9hGMpJQmtWmj46B3kBHmL38UhJGhYX7eqkcq+2gsstyYt341HmPeWspihX43yVRA0mS+8GGk2Gckc7bY/HCmA=="; 104 }; 105 }; 106 "@babel/helper-environment-visitor-7.16.7" = { ··· 112 sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; 113 }; 114 }; 115 + "@babel/helper-explode-assignable-expression-7.16.7" = { 116 name = "_at_babel_slash_helper-explode-assignable-expression"; 117 packageName = "@babel/helper-explode-assignable-expression"; 118 + version = "7.16.7"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"; 121 + sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 122 }; 123 }; 124 "@babel/helper-function-name-7.16.7" = { ··· 130 sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 131 }; 132 }; 133 "@babel/helper-get-function-arity-7.16.7" = { 134 name = "_at_babel_slash_helper-get-function-arity"; 135 packageName = "@babel/helper-get-function-arity"; ··· 137 src = fetchurl { 138 url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; 139 sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; 140 }; 141 }; 142 "@babel/helper-hoist-variables-7.16.7" = { ··· 148 sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="; 149 }; 150 }; 151 + "@babel/helper-member-expression-to-functions-7.16.7" = { 152 name = "_at_babel_slash_helper-member-expression-to-functions"; 153 packageName = "@babel/helper-member-expression-to-functions"; 154 + version = "7.16.7"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.7.tgz"; 157 + sha512 = "VtJ/65tYiU/6AbMTDwyoXGPKHgTsfRarivm+YbB5uAzKUyuPjgZSgAFeG87FCigc7KNHu2Pegh1XIT3lXjvz3Q=="; 158 }; 159 }; 160 "@babel/helper-module-imports-7.16.7" = { ··· 166 sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 167 }; 168 }; 169 "@babel/helper-module-transforms-7.16.7" = { 170 name = "_at_babel_slash_helper-module-transforms"; 171 packageName = "@babel/helper-module-transforms"; ··· 175 sha512 = "gaqtLDxJEFCeQbYp9aLAefjhkKdjKcdh6DB7jniIGU3Pz52WAmP268zK0VgPz9hUNkMSYeH976K2/Y6yPadpng=="; 176 }; 177 }; 178 + "@babel/helper-optimise-call-expression-7.16.7" = { 179 name = "_at_babel_slash_helper-optimise-call-expression"; 180 packageName = "@babel/helper-optimise-call-expression"; 181 + version = "7.16.7"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"; 184 + sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="; 185 }; 186 }; 187 "@babel/helper-plugin-utils-7.16.7" = { ··· 193 sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="; 194 }; 195 }; 196 + "@babel/helper-remap-async-to-generator-7.16.8" = { 197 name = "_at_babel_slash_helper-remap-async-to-generator"; 198 packageName = "@babel/helper-remap-async-to-generator"; 199 + version = "7.16.8"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"; 202 + sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="; 203 }; 204 }; 205 + "@babel/helper-replace-supers-7.16.7" = { 206 name = "_at_babel_slash_helper-replace-supers"; 207 packageName = "@babel/helper-replace-supers"; 208 + version = "7.16.7"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"; 211 + sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="; 212 }; 213 }; 214 "@babel/helper-simple-access-7.16.7" = { ··· 229 sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; 230 }; 231 }; 232 "@babel/helper-split-export-declaration-7.16.7" = { 233 name = "_at_babel_slash_helper-split-export-declaration"; 234 packageName = "@babel/helper-split-export-declaration"; ··· 238 sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="; 239 }; 240 }; 241 "@babel/helper-validator-identifier-7.16.7" = { 242 name = "_at_babel_slash_helper-validator-identifier"; 243 packageName = "@babel/helper-validator-identifier"; ··· 247 sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="; 248 }; 249 }; 250 "@babel/helper-validator-option-7.16.7" = { 251 name = "_at_babel_slash_helper-validator-option"; 252 packageName = "@babel/helper-validator-option"; ··· 256 sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="; 257 }; 258 }; 259 + "@babel/helper-wrap-function-7.16.8" = { 260 name = "_at_babel_slash_helper-wrap-function"; 261 packageName = "@babel/helper-wrap-function"; 262 + version = "7.16.8"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"; 265 + sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 266 }; 267 }; 268 "@babel/helpers-7.16.7" = { ··· 274 sha512 = "9ZDoqtfY7AuEOt3cxchfii6C7GDyyMBffktR5B2jvWv8u2+efwvpnVKXMWzNehqy68tKgAfSwfdw/lWpthS2bw=="; 275 }; 276 }; 277 + "@babel/highlight-7.16.10" = { 278 name = "_at_babel_slash_highlight"; 279 packageName = "@babel/highlight"; 280 + version = "7.16.10"; 281 src = fetchurl { 282 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"; 283 + sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; 284 }; 285 }; 286 + "@babel/parser-7.16.12" = { 287 name = "_at_babel_slash_parser"; 288 packageName = "@babel/parser"; 289 + version = "7.16.12"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.12.tgz"; 292 + sha512 = "VfaV15po8RiZssrkPweyvbGVSe4x2y+aciFCgn0n0/SJMR22cwofRV1mtnJQYcSB1wUTaA/X1LnA3es66MCO5A=="; 293 }; 294 }; 295 + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" = { 296 name = "_at_babel_slash_plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 297 packageName = "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression"; 298 + version = "7.16.7"; 299 src = fetchurl { 300 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7.tgz"; 301 + sha512 = "anv/DObl7waiGEnC24O9zqL0pSuI9hljihqiDuFHC8d7/bjr/4RLGPWuc8rYOff/QPzbEPSkzG8wGG9aDuhHRg=="; 302 }; 303 }; 304 + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" = { 305 name = "_at_babel_slash_plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 306 packageName = "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining"; 307 + version = "7.16.7"; 308 src = fetchurl { 309 + url = "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7.tgz"; 310 + sha512 = "di8vUHRdf+4aJ7ltXhaDbPoszdkh59AQtJM5soLsuHpQJdFQZOA4uGj0V2u/CZ8bJ/u8ULDL5yq6FO/bCXnKHw=="; 311 }; 312 }; 313 + "@babel/plugin-proposal-async-generator-functions-7.16.8" = { 314 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 315 packageName = "@babel/plugin-proposal-async-generator-functions"; 316 + version = "7.16.8"; 317 src = fetchurl { 318 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"; 319 + sha512 = "71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ=="; 320 }; 321 }; 322 + "@babel/plugin-proposal-class-properties-7.16.7" = { 323 name = "_at_babel_slash_plugin-proposal-class-properties"; 324 packageName = "@babel/plugin-proposal-class-properties"; 325 + version = "7.16.7"; 326 src = fetchurl { 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"; 328 + sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww=="; 329 }; 330 }; 331 + "@babel/plugin-proposal-class-static-block-7.16.7" = { 332 name = "_at_babel_slash_plugin-proposal-class-static-block"; 333 packageName = "@babel/plugin-proposal-class-static-block"; 334 + version = "7.16.7"; 335 src = fetchurl { 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.16.7.tgz"; 337 + sha512 = "dgqJJrcZoG/4CkMopzhPJjGxsIe9A8RlkQLnL/Vhhx8AA9ZuaRwGSlscSh42hazc7WSrya/IK7mTeoF0DP9tEw=="; 338 }; 339 }; 340 + "@babel/plugin-proposal-decorators-7.16.7" = { 341 name = "_at_babel_slash_plugin-proposal-decorators"; 342 packageName = "@babel/plugin-proposal-decorators"; 343 + version = "7.16.7"; 344 src = fetchurl { 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.16.7.tgz"; 346 + sha512 = "DoEpnuXK14XV9btI1k8tzNGCutMclpj4yru8aXKoHlVmbO1s+2A+g2+h4JhcjrxkFJqzbymnLG6j/niOf3iFXQ=="; 347 }; 348 }; 349 + "@babel/plugin-proposal-dynamic-import-7.16.7" = { 350 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 351 packageName = "@babel/plugin-proposal-dynamic-import"; 352 + version = "7.16.7"; 353 src = fetchurl { 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"; 355 + sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="; 356 }; 357 }; 358 + "@babel/plugin-proposal-export-namespace-from-7.16.7" = { 359 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 360 packageName = "@babel/plugin-proposal-export-namespace-from"; 361 + version = "7.16.7"; 362 src = fetchurl { 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"; 364 + sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA=="; 365 }; 366 }; 367 + "@babel/plugin-proposal-json-strings-7.16.7" = { 368 name = "_at_babel_slash_plugin-proposal-json-strings"; 369 packageName = "@babel/plugin-proposal-json-strings"; 370 + version = "7.16.7"; 371 src = fetchurl { 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; 373 + sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ=="; 374 }; 375 }; 376 + "@babel/plugin-proposal-logical-assignment-operators-7.16.7" = { 377 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 378 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 379 + version = "7.16.7"; 380 src = fetchurl { 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"; 382 + sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg=="; 383 }; 384 }; 385 + "@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" = { 386 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 387 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 388 + version = "7.16.7"; 389 src = fetchurl { 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; 391 + sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ=="; 392 }; 393 }; 394 + "@babel/plugin-proposal-numeric-separator-7.16.7" = { 395 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 396 packageName = "@babel/plugin-proposal-numeric-separator"; 397 + version = "7.16.7"; 398 src = fetchurl { 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"; 400 + sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="; 401 }; 402 }; 403 + "@babel/plugin-proposal-object-rest-spread-7.16.7" = { 404 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 405 packageName = "@babel/plugin-proposal-object-rest-spread"; 406 + version = "7.16.7"; 407 src = fetchurl { 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.7.tgz"; 409 + sha512 = "3O0Y4+dw94HA86qSg9IHfyPktgR7q3gpNVAeiKQd+8jBKFaU5NQS1Yatgo4wY+UFNuLjvxcSmzcsHqrhgTyBUA=="; 410 }; 411 }; 412 + "@babel/plugin-proposal-optional-catch-binding-7.16.7" = { 413 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 414 packageName = "@babel/plugin-proposal-optional-catch-binding"; 415 + version = "7.16.7"; 416 src = fetchurl { 417 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"; 418 + sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA=="; 419 }; 420 }; 421 + "@babel/plugin-proposal-optional-chaining-7.16.7" = { 422 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 423 packageName = "@babel/plugin-proposal-optional-chaining"; 424 + version = "7.16.7"; 425 src = fetchurl { 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; 427 + sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA=="; 428 }; 429 }; 430 + "@babel/plugin-proposal-private-methods-7.16.11" = { 431 name = "_at_babel_slash_plugin-proposal-private-methods"; 432 packageName = "@babel/plugin-proposal-private-methods"; 433 + version = "7.16.11"; 434 src = fetchurl { 435 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"; 436 + sha512 = "F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw=="; 437 }; 438 }; 439 + "@babel/plugin-proposal-private-property-in-object-7.16.7" = { 440 name = "_at_babel_slash_plugin-proposal-private-property-in-object"; 441 packageName = "@babel/plugin-proposal-private-property-in-object"; 442 + version = "7.16.7"; 443 src = fetchurl { 444 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.16.7.tgz"; 445 + sha512 = "rMQkjcOFbm+ufe3bTZLyOfsOUOxyvLXZJCTARhJr+8UMSoZmqTe1K1BgkFcrW37rAchWg57yI69ORxiWvUINuQ=="; 446 }; 447 }; 448 + "@babel/plugin-proposal-unicode-property-regex-7.16.7" = { 449 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 450 packageName = "@babel/plugin-proposal-unicode-property-regex"; 451 + version = "7.16.7"; 452 src = fetchurl { 453 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; 454 + sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg=="; 455 }; 456 }; 457 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 490 sha512 = "b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw=="; 491 }; 492 }; 493 + "@babel/plugin-syntax-decorators-7.16.7" = { 494 name = "_at_babel_slash_plugin-syntax-decorators"; 495 packageName = "@babel/plugin-syntax-decorators"; 496 + version = "7.16.7"; 497 src = fetchurl { 498 + url = "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.16.7.tgz"; 499 + sha512 = "vQ+PxL+srA7g6Rx6I1e15m55gftknl2X8GCUW1JTlkTaXZLJOS0UcaY0eK9jYT7IYf4awn6qwyghVHLDz1WyMw=="; 500 }; 501 }; 502 "@babel/plugin-syntax-dynamic-import-7.8.3" = { ··· 607 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 608 }; 609 }; 610 "@babel/plugin-syntax-typescript-7.16.7" = { 611 name = "_at_babel_slash_plugin-syntax-typescript"; 612 packageName = "@babel/plugin-syntax-typescript"; ··· 616 sha512 = "YhUIJHHGkqPgEcMYkPCKTyGUdoGKWtopIycQyjJH8OjvRgOYsXsaKehLVPScKJWAULPxMa4N1vCe6szREFlZ7A=="; 617 }; 618 }; 619 + "@babel/plugin-transform-arrow-functions-7.16.7" = { 620 name = "_at_babel_slash_plugin-transform-arrow-functions"; 621 packageName = "@babel/plugin-transform-arrow-functions"; 622 + version = "7.16.7"; 623 src = fetchurl { 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"; 625 + sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ=="; 626 }; 627 }; 628 + "@babel/plugin-transform-async-to-generator-7.16.8" = { 629 name = "_at_babel_slash_plugin-transform-async-to-generator"; 630 packageName = "@babel/plugin-transform-async-to-generator"; 631 + version = "7.16.8"; 632 src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; 634 + sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg=="; 635 }; 636 }; 637 + "@babel/plugin-transform-block-scoped-functions-7.16.7" = { 638 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 639 packageName = "@babel/plugin-transform-block-scoped-functions"; 640 + version = "7.16.7"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"; 643 + sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg=="; 644 }; 645 }; 646 + "@babel/plugin-transform-block-scoping-7.16.7" = { 647 name = "_at_babel_slash_plugin-transform-block-scoping"; 648 packageName = "@babel/plugin-transform-block-scoping"; 649 + version = "7.16.7"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; 652 + sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ=="; 653 }; 654 }; 655 + "@babel/plugin-transform-classes-7.16.7" = { 656 name = "_at_babel_slash_plugin-transform-classes"; 657 packageName = "@babel/plugin-transform-classes"; 658 + version = "7.16.7"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"; 661 + sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ=="; 662 }; 663 }; 664 + "@babel/plugin-transform-computed-properties-7.16.7" = { 665 name = "_at_babel_slash_plugin-transform-computed-properties"; 666 packageName = "@babel/plugin-transform-computed-properties"; 667 + version = "7.16.7"; 668 src = fetchurl { 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; 670 + sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; 671 }; 672 }; 673 + "@babel/plugin-transform-destructuring-7.16.7" = { 674 name = "_at_babel_slash_plugin-transform-destructuring"; 675 packageName = "@babel/plugin-transform-destructuring"; 676 + version = "7.16.7"; 677 src = fetchurl { 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.7.tgz"; 679 + sha512 = "VqAwhTHBnu5xBVDCvrvqJbtLUa++qZaWC0Fgr2mqokBlulZARGyIvZDoqbPlPaKImQ9dKAcCzbv+ul//uqu70A=="; 680 }; 681 }; 682 + "@babel/plugin-transform-dotall-regex-7.16.7" = { 683 name = "_at_babel_slash_plugin-transform-dotall-regex"; 684 packageName = "@babel/plugin-transform-dotall-regex"; 685 + version = "7.16.7"; 686 src = fetchurl { 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"; 688 + sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ=="; 689 }; 690 }; 691 + "@babel/plugin-transform-duplicate-keys-7.16.7" = { 692 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 693 packageName = "@babel/plugin-transform-duplicate-keys"; 694 + version = "7.16.7"; 695 src = fetchurl { 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"; 697 + sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw=="; 698 }; 699 }; 700 + "@babel/plugin-transform-exponentiation-operator-7.16.7" = { 701 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 702 packageName = "@babel/plugin-transform-exponentiation-operator"; 703 + version = "7.16.7"; 704 src = fetchurl { 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"; 706 + sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="; 707 }; 708 }; 709 + "@babel/plugin-transform-for-of-7.16.7" = { 710 name = "_at_babel_slash_plugin-transform-for-of"; 711 packageName = "@babel/plugin-transform-for-of"; 712 + version = "7.16.7"; 713 src = fetchurl { 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"; 715 + sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg=="; 716 }; 717 }; 718 + "@babel/plugin-transform-function-name-7.16.7" = { 719 name = "_at_babel_slash_plugin-transform-function-name"; 720 packageName = "@babel/plugin-transform-function-name"; 721 + version = "7.16.7"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"; 724 + sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="; 725 }; 726 }; 727 + "@babel/plugin-transform-literals-7.16.7" = { 728 name = "_at_babel_slash_plugin-transform-literals"; 729 packageName = "@babel/plugin-transform-literals"; 730 + version = "7.16.7"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"; 733 + sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ=="; 734 }; 735 }; 736 + "@babel/plugin-transform-member-expression-literals-7.16.7" = { 737 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 738 packageName = "@babel/plugin-transform-member-expression-literals"; 739 + version = "7.16.7"; 740 src = fetchurl { 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"; 742 + sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="; 743 }; 744 }; 745 + "@babel/plugin-transform-modules-amd-7.16.7" = { 746 name = "_at_babel_slash_plugin-transform-modules-amd"; 747 packageName = "@babel/plugin-transform-modules-amd"; 748 + version = "7.16.7"; 749 src = fetchurl { 750 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"; 751 + sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 752 }; 753 }; 754 + "@babel/plugin-transform-modules-commonjs-7.16.8" = { 755 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 756 packageName = "@babel/plugin-transform-modules-commonjs"; 757 + version = "7.16.8"; 758 src = fetchurl { 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.8.tgz"; 760 + sha512 = "oflKPvsLT2+uKQopesJt3ApiaIS2HW+hzHFcwRNtyDGieAeC/dIHZX8buJQ2J2X1rxGPy4eRcUijm3qcSPjYcA=="; 761 }; 762 }; 763 + "@babel/plugin-transform-modules-systemjs-7.16.7" = { 764 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 765 packageName = "@babel/plugin-transform-modules-systemjs"; 766 + version = "7.16.7"; 767 src = fetchurl { 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.7.tgz"; 769 + sha512 = "DuK5E3k+QQmnOqBR9UkusByy5WZWGRxfzV529s9nPra1GE7olmxfqO2FHobEOYSPIjPBTr4p66YDcjQnt8cBmw=="; 770 }; 771 }; 772 + "@babel/plugin-transform-modules-umd-7.16.7" = { 773 name = "_at_babel_slash_plugin-transform-modules-umd"; 774 packageName = "@babel/plugin-transform-modules-umd"; 775 + version = "7.16.7"; 776 src = fetchurl { 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; 778 + sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; 779 }; 780 }; 781 + "@babel/plugin-transform-named-capturing-groups-regex-7.16.8" = { 782 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 783 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 784 + version = "7.16.8"; 785 src = fetchurl { 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"; 787 + sha512 = "j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw=="; 788 }; 789 }; 790 + "@babel/plugin-transform-new-target-7.16.7" = { 791 name = "_at_babel_slash_plugin-transform-new-target"; 792 packageName = "@babel/plugin-transform-new-target"; 793 + version = "7.16.7"; 794 src = fetchurl { 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; 796 + sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg=="; 797 }; 798 }; 799 + "@babel/plugin-transform-object-super-7.16.7" = { 800 name = "_at_babel_slash_plugin-transform-object-super"; 801 packageName = "@babel/plugin-transform-object-super"; 802 + version = "7.16.7"; 803 src = fetchurl { 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"; 805 + sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw=="; 806 }; 807 }; 808 + "@babel/plugin-transform-parameters-7.16.7" = { 809 name = "_at_babel_slash_plugin-transform-parameters"; 810 packageName = "@babel/plugin-transform-parameters"; 811 + version = "7.16.7"; 812 src = fetchurl { 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; 814 + sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw=="; 815 }; 816 }; 817 + "@babel/plugin-transform-property-literals-7.16.7" = { 818 name = "_at_babel_slash_plugin-transform-property-literals"; 819 packageName = "@babel/plugin-transform-property-literals"; 820 + version = "7.16.7"; 821 src = fetchurl { 822 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"; 823 + sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="; 824 }; 825 }; 826 + "@babel/plugin-transform-regenerator-7.16.7" = { 827 name = "_at_babel_slash_plugin-transform-regenerator"; 828 packageName = "@babel/plugin-transform-regenerator"; 829 + version = "7.16.7"; 830 src = fetchurl { 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 832 + sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 833 }; 834 }; 835 + "@babel/plugin-transform-reserved-words-7.16.7" = { 836 name = "_at_babel_slash_plugin-transform-reserved-words"; 837 packageName = "@babel/plugin-transform-reserved-words"; 838 + version = "7.16.7"; 839 src = fetchurl { 840 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"; 841 + sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg=="; 842 }; 843 }; 844 + "@babel/plugin-transform-shorthand-properties-7.16.7" = { 845 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 846 packageName = "@babel/plugin-transform-shorthand-properties"; 847 + version = "7.16.7"; 848 src = fetchurl { 849 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"; 850 + sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; 851 }; 852 }; 853 + "@babel/plugin-transform-spread-7.16.7" = { 854 name = "_at_babel_slash_plugin-transform-spread"; 855 packageName = "@babel/plugin-transform-spread"; 856 + version = "7.16.7"; 857 src = fetchurl { 858 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"; 859 + sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg=="; 860 }; 861 }; 862 + "@babel/plugin-transform-sticky-regex-7.16.7" = { 863 name = "_at_babel_slash_plugin-transform-sticky-regex"; 864 packageName = "@babel/plugin-transform-sticky-regex"; 865 + version = "7.16.7"; 866 src = fetchurl { 867 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"; 868 + sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="; 869 }; 870 }; 871 + "@babel/plugin-transform-template-literals-7.16.7" = { 872 name = "_at_babel_slash_plugin-transform-template-literals"; 873 packageName = "@babel/plugin-transform-template-literals"; 874 + version = "7.16.7"; 875 src = fetchurl { 876 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"; 877 + sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA=="; 878 }; 879 }; 880 + "@babel/plugin-transform-typeof-symbol-7.16.7" = { 881 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 882 packageName = "@babel/plugin-transform-typeof-symbol"; 883 + version = "7.16.7"; 884 src = fetchurl { 885 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"; 886 + sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ=="; 887 }; 888 }; 889 + "@babel/plugin-transform-typescript-7.16.8" = { 890 name = "_at_babel_slash_plugin-transform-typescript"; 891 packageName = "@babel/plugin-transform-typescript"; 892 + version = "7.16.8"; 893 src = fetchurl { 894 + url = "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.16.8.tgz"; 895 + sha512 = "bHdQ9k7YpBDO2d0NVfkj51DpQcvwIzIusJ7mEUaMlbZq3Kt/U47j24inXZHQ5MDiYpCs+oZiwnXyKedE8+q7AQ=="; 896 }; 897 }; 898 + "@babel/plugin-transform-unicode-escapes-7.16.7" = { 899 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 900 packageName = "@babel/plugin-transform-unicode-escapes"; 901 + version = "7.16.7"; 902 src = fetchurl { 903 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"; 904 + sha512 = "TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q=="; 905 }; 906 }; 907 + "@babel/plugin-transform-unicode-regex-7.16.7" = { 908 name = "_at_babel_slash_plugin-transform-unicode-regex"; 909 packageName = "@babel/plugin-transform-unicode-regex"; 910 + version = "7.16.7"; 911 src = fetchurl { 912 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"; 913 + sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q=="; 914 }; 915 }; 916 + "@babel/preset-env-7.16.11" = { 917 name = "_at_babel_slash_preset-env"; 918 packageName = "@babel/preset-env"; 919 + version = "7.16.11"; 920 src = fetchurl { 921 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.16.11.tgz"; 922 + sha512 = "qcmWG8R7ZW6WBRPZK//y+E3Cli151B20W1Rv7ln27vuPaXU/8TKms6jFdiJtF7UDTxcrb7mZd88tAeK9LjdT8g=="; 923 }; 924 }; 925 "@babel/preset-modules-0.1.5" = { ··· 931 sha512 = "A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA=="; 932 }; 933 }; 934 + "@babel/preset-typescript-7.16.7" = { 935 name = "_at_babel_slash_preset-typescript"; 936 packageName = "@babel/preset-typescript"; 937 + version = "7.16.7"; 938 src = fetchurl { 939 + url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.16.7.tgz"; 940 + sha512 = "WbVEmgXdIyvzB77AQjGBEyYPZx+8tTsO50XtfozQrkW8QB2rLJpH2lgx0TRw5EJrBxOZQ+wCcyPVQvS8tjEHpQ=="; 941 }; 942 }; 943 + "@babel/runtime-7.16.7" = { 944 name = "_at_babel_slash_runtime"; 945 packageName = "@babel/runtime"; 946 + version = "7.16.7"; 947 src = fetchurl { 948 + url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.16.7.tgz"; 949 + sha512 = "9E9FJowqAsytyOY6LG+1KuueckRL+aQW+mKvXRXnuFGyRAyepJPmEo9vgMfXUA6O9u3IeEdv9MAkppFcaQwogQ=="; 950 }; 951 }; 952 "@babel/template-7.16.7" = { ··· 958 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 959 }; 960 }; 961 + "@babel/traverse-7.16.10" = { 962 name = "_at_babel_slash_traverse"; 963 packageName = "@babel/traverse"; 964 + version = "7.16.10"; 965 src = fetchurl { 966 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.10.tgz"; 967 + sha512 = "yzuaYXoRJBGMlBhsMJoUW7G1UmSb/eXr/JHYM/MsOJgavJibLwASijW7oXBdw3NQ6T0bW7Ty5P/VarOs9cHmqw=="; 968 }; 969 }; 970 + "@babel/types-7.16.8" = { 971 name = "_at_babel_slash_types"; 972 packageName = "@babel/types"; 973 + version = "7.16.8"; 974 src = fetchurl { 975 + url = "https://registry.npmjs.org/@babel/types/-/types-7.16.8.tgz"; 976 + sha512 = "smN2DQc5s4M7fntyjGtyIPbRJv6wW4rU/94fmYJ7PKQuZkC0qGMHXJbg6sNGt12JmVr4k5YaptI/XtiLJBnmIg=="; 977 }; 978 }; 979 "@bcoe/v8-coverage-0.2.3" = { ··· 1003 sha512 = "BLxsnmK3KyPunz5wmCCpqy0YelEoxxGmH73Is+Z74oOTMtExcjkr3dDR6quwrjh1YspA8DH9gnX1o069KiS9AQ=="; 1004 }; 1005 }; 1006 + "@humanwhocodes/config-array-0.9.3" = { 1007 name = "_at_humanwhocodes_slash_config-array"; 1008 packageName = "@humanwhocodes/config-array"; 1009 + version = "0.9.3"; 1010 src = fetchurl { 1011 + url = "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.3.tgz"; 1012 + sha512 = "3xSMlXHh03hCcCmFc0rbKp3Ivt2PFEJnQUJDDMTJQ2wkECZWdq4GePs2ctc5H8zV+cHPaq8k2vU8mrQjA6iHdQ=="; 1013 }; 1014 }; 1015 "@humanwhocodes/object-schema-1.2.1" = { ··· 1039 sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA=="; 1040 }; 1041 }; 1042 + "@jest/console-27.4.6" = { 1043 name = "_at_jest_slash_console"; 1044 packageName = "@jest/console"; 1045 + version = "27.4.6"; 1046 src = fetchurl { 1047 + url = "https://registry.npmjs.org/@jest/console/-/console-27.4.6.tgz"; 1048 + sha512 = "jauXyacQD33n47A44KrlOVeiXHEXDqapSdfb9kTekOchH/Pd18kBIO1+xxJQRLuG+LUuljFCwTG92ra4NW7SpA=="; 1049 }; 1050 }; 1051 + "@jest/core-27.4.7" = { 1052 name = "_at_jest_slash_core"; 1053 packageName = "@jest/core"; 1054 + version = "27.4.7"; 1055 src = fetchurl { 1056 + url = "https://registry.npmjs.org/@jest/core/-/core-27.4.7.tgz"; 1057 + sha512 = "n181PurSJkVMS+kClIFSX/LLvw9ExSb+4IMtD6YnfxZVerw9ANYtW0bPrm0MJu2pfe9SY9FJ9FtQ+MdZkrZwjg=="; 1058 }; 1059 }; 1060 + "@jest/environment-27.4.6" = { 1061 name = "_at_jest_slash_environment"; 1062 packageName = "@jest/environment"; 1063 + version = "27.4.6"; 1064 src = fetchurl { 1065 + url = "https://registry.npmjs.org/@jest/environment/-/environment-27.4.6.tgz"; 1066 + sha512 = "E6t+RXPfATEEGVidr84WngLNWZ8ffCPky8RqqRK6u1Bn0LK92INe0MDttyPl/JOzaq92BmDzOeuqk09TvM22Sg=="; 1067 }; 1068 }; 1069 + "@jest/fake-timers-27.4.6" = { 1070 name = "_at_jest_slash_fake-timers"; 1071 packageName = "@jest/fake-timers"; 1072 + version = "27.4.6"; 1073 src = fetchurl { 1074 + url = "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-27.4.6.tgz"; 1075 + sha512 = "mfaethuYF8scV8ntPpiVGIHQgS0XIALbpY2jt2l7wb/bvq4Q5pDLk4EP4D7SAvYT1QrPOPVZAtbdGAOOyIgs7A=="; 1076 }; 1077 }; 1078 + "@jest/globals-27.4.6" = { 1079 name = "_at_jest_slash_globals"; 1080 packageName = "@jest/globals"; 1081 + version = "27.4.6"; 1082 src = fetchurl { 1083 + url = "https://registry.npmjs.org/@jest/globals/-/globals-27.4.6.tgz"; 1084 + sha512 = "kAiwMGZ7UxrgPzu8Yv9uvWmXXxsy0GciNejlHvfPIfWkSxChzv6bgTS3YqBkGuHcis+ouMFI2696n2t+XYIeFw=="; 1085 }; 1086 }; 1087 + "@jest/reporters-27.4.6" = { 1088 name = "_at_jest_slash_reporters"; 1089 packageName = "@jest/reporters"; 1090 + version = "27.4.6"; 1091 src = fetchurl { 1092 + url = "https://registry.npmjs.org/@jest/reporters/-/reporters-27.4.6.tgz"; 1093 + sha512 = "+Zo9gV81R14+PSq4wzee4GC2mhAN9i9a7qgJWL90Gpx7fHYkWpTBvwWNZUXvJByYR9tAVBdc8VxDWqfJyIUrIQ=="; 1094 }; 1095 }; 1096 "@jest/source-map-27.4.0" = { ··· 1102 sha512 = "Ntjx9jzP26Bvhbm93z/AKcPRj/9wrkI88/gK60glXDx1q+IeI0rf7Lw2c89Ch6ofonB0On/iRDreQuQ6te9pgQ=="; 1103 }; 1104 }; 1105 + "@jest/test-result-27.4.6" = { 1106 name = "_at_jest_slash_test-result"; 1107 packageName = "@jest/test-result"; 1108 + version = "27.4.6"; 1109 src = fetchurl { 1110 + url = "https://registry.npmjs.org/@jest/test-result/-/test-result-27.4.6.tgz"; 1111 + sha512 = "fi9IGj3fkOrlMmhQqa/t9xum8jaJOOAi/lZlm6JXSc55rJMXKHxNDN1oCP39B0/DhNOa2OMupF9BcKZnNtXMOQ=="; 1112 }; 1113 }; 1114 + "@jest/test-sequencer-27.4.6" = { 1115 name = "_at_jest_slash_test-sequencer"; 1116 packageName = "@jest/test-sequencer"; 1117 + version = "27.4.6"; 1118 src = fetchurl { 1119 + url = "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-27.4.6.tgz"; 1120 + sha512 = "3GL+nsf6E1PsyNsJuvPyIz+DwFuCtBdtvPpm/LMXVkBJbdFvQYCDpccYT56qq5BGniXWlE81n2qk1sdXfZebnw=="; 1121 }; 1122 }; 1123 + "@jest/transform-27.4.6" = { 1124 name = "_at_jest_slash_transform"; 1125 packageName = "@jest/transform"; 1126 + version = "27.4.6"; 1127 src = fetchurl { 1128 + url = "https://registry.npmjs.org/@jest/transform/-/transform-27.4.6.tgz"; 1129 + sha512 = "9MsufmJC8t5JTpWEQJ0OcOOAXaH5ioaIX6uHVBLBMoCZPfKKQF+EqP8kACAvCZ0Y1h2Zr3uOccg8re+Dr5jxyw=="; 1130 }; 1131 }; 1132 "@jest/types-27.4.2" = { ··· 1300 sha512 = "RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw=="; 1301 }; 1302 }; 1303 "@types/babel__core-7.1.18" = { 1304 name = "_at_types_slash_babel__core"; 1305 packageName = "@types/babel__core"; ··· 1417 sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 1418 }; 1419 }; 1420 + "@types/jest-27.4.0" = { 1421 name = "_at_types_slash_jest"; 1422 packageName = "@types/jest"; 1423 + version = "27.4.0"; 1424 src = fetchurl { 1425 + url = "https://registry.npmjs.org/@types/jest/-/jest-27.4.0.tgz"; 1426 + sha512 = "gHl8XuC1RZ8H2j5sHv/JqsaxXkDDM9iDOgu0Wp8sjs4u/snb2PVehyWXJPr+ORA0RPpgw231mnutWI1+0hgjIQ=="; 1427 }; 1428 }; 1429 "@types/js-yaml-4.0.5" = { ··· 1480 sha512 = "ICDoQMORMjOSqfNFXT4ENXfwwCir1BPblXNm0SPH7C4Q10ou+pvVagcFAJ+rrzf3A47tGU4K/KbzKu7wO9j45Q=="; 1481 }; 1482 }; 1483 + "@types/node-17.0.13" = { 1484 name = "_at_types_slash_node"; 1485 packageName = "@types/node"; 1486 + version = "17.0.13"; 1487 src = fetchurl { 1488 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.13.tgz"; 1489 + sha512 = "Y86MAxASe25hNzlDbsviXl8jQHb0RDvKt4c40ZJQ1Don0AAL0STLZSs4N+6gLEO55pedy7r2cLwS+ZDxPm/2Bw=="; 1490 }; 1491 }; 1492 + "@types/node-17.0.14" = { 1493 name = "_at_types_slash_node"; 1494 packageName = "@types/node"; 1495 + version = "17.0.14"; 1496 src = fetchurl { 1497 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.14.tgz"; 1498 + sha512 = "SbjLmERksKOGzWzPNuW7fJM7fk3YXVTFiZWB/Hs99gwhk+/dnrQRPBQjPW9aO+fi1tAffi9PrwFvsmOKmDTyng=="; 1499 }; 1500 }; 1501 "@types/object-assign-deep-0.4.0" = { ··· 1507 sha512 = "3D0F3rHRNDc8cQSXNzwF1jBrJi28Mdrhc10ZLlqbJWDPYRWTTWB9Tc8JoKrgBvLKioXoPoHT6Uzf3s2F7akCUg=="; 1508 }; 1509 }; 1510 + "@types/prettier-2.4.3" = { 1511 name = "_at_types_slash_prettier"; 1512 packageName = "@types/prettier"; 1513 + version = "2.4.3"; 1514 src = fetchurl { 1515 + url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.4.3.tgz"; 1516 + sha512 = "QzSuZMBuG5u8HqYz01qtMdg/Jfctlnvj1z/lYnIDXs/golxw0fxtRAHd9KrzjR7Yxz1qVeI00o0kiO3PmVdJ9w=="; 1517 }; 1518 }; 1519 "@types/rimraf-3.0.2" = { ··· 1570 sha512 = "7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw=="; 1571 }; 1572 }; 1573 + "@typescript-eslint/eslint-plugin-5.10.1" = { 1574 name = "_at_typescript-eslint_slash_eslint-plugin"; 1575 packageName = "@typescript-eslint/eslint-plugin"; 1576 + version = "5.10.1"; 1577 src = fetchurl { 1578 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.10.1.tgz"; 1579 + sha512 = "xN3CYqFlyE/qOcy978/L0xLR2HlcAGIyIK5sMOasxaaAPfQRj/MmMV6OC3I7NZO84oEUdWCOju34Z9W8E0pFDQ=="; 1580 }; 1581 }; 1582 + "@typescript-eslint/parser-5.10.1" = { 1583 name = "_at_typescript-eslint_slash_parser"; 1584 packageName = "@typescript-eslint/parser"; 1585 + version = "5.10.1"; 1586 src = fetchurl { 1587 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.10.1.tgz"; 1588 + sha512 = "GReo3tjNBwR5RnRO0K2wDIDN31cM3MmDtgyQ85oAxAmC5K3j/g85IjP+cDfcqDsDDBf1HNKQAD0WqOYL8jXqUA=="; 1589 }; 1590 }; 1591 + "@typescript-eslint/scope-manager-5.10.1" = { 1592 name = "_at_typescript-eslint_slash_scope-manager"; 1593 packageName = "@typescript-eslint/scope-manager"; 1594 + version = "5.10.1"; 1595 src = fetchurl { 1596 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.1.tgz"; 1597 + sha512 = "Lyvi559Gvpn94k7+ElXNMEnXu/iundV5uFmCUNnftbFrUbAJ1WBoaGgkbOBm07jVZa682oaBU37ao/NGGX4ZDg=="; 1598 }; 1599 }; 1600 + "@typescript-eslint/scope-manager-5.10.2" = { 1601 name = "_at_typescript-eslint_slash_scope-manager"; 1602 packageName = "@typescript-eslint/scope-manager"; 1603 + version = "5.10.2"; 1604 + src = fetchurl { 1605 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.10.2.tgz"; 1606 + sha512 = "39Tm6f4RoZoVUWBYr3ekS75TYgpr5Y+X0xLZxXqcZNDWZdJdYbKd3q2IR4V9y5NxxiPu/jxJ8XP7EgHiEQtFnw=="; 1607 + }; 1608 + }; 1609 + "@typescript-eslint/type-utils-5.10.1" = { 1610 + name = "_at_typescript-eslint_slash_type-utils"; 1611 + packageName = "@typescript-eslint/type-utils"; 1612 + version = "5.10.1"; 1613 src = fetchurl { 1614 + url = "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.10.1.tgz"; 1615 + sha512 = "AfVJkV8uck/UIoDqhu+ptEdBoQATON9GXnhOpPLzkQRJcSChkvD//qsz9JVffl2goxX+ybs5klvacE9vmrQyCw=="; 1616 }; 1617 }; 1618 + "@typescript-eslint/types-5.10.1" = { 1619 name = "_at_typescript-eslint_slash_types"; 1620 packageName = "@typescript-eslint/types"; 1621 + version = "5.10.1"; 1622 src = fetchurl { 1623 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.1.tgz"; 1624 + sha512 = "ZvxQ2QMy49bIIBpTqFiOenucqUyjTQ0WNLhBM6X1fh1NNlYAC6Kxsx8bRTY3jdYsYg44a0Z/uEgQkohbR0H87Q=="; 1625 }; 1626 }; 1627 + "@typescript-eslint/types-5.10.2" = { 1628 name = "_at_typescript-eslint_slash_types"; 1629 packageName = "@typescript-eslint/types"; 1630 + version = "5.10.2"; 1631 src = fetchurl { 1632 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.10.2.tgz"; 1633 + sha512 = "Qfp0qk/5j2Rz3p3/WhWgu4S1JtMcPgFLnmAKAW061uXxKSa7VWKZsDXVaMXh2N60CX9h6YLaBoy9PJAfCOjk3w=="; 1634 }; 1635 }; 1636 + "@typescript-eslint/typescript-estree-5.10.1" = { 1637 name = "_at_typescript-eslint_slash_typescript-estree"; 1638 packageName = "@typescript-eslint/typescript-estree"; 1639 + version = "5.10.1"; 1640 src = fetchurl { 1641 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.1.tgz"; 1642 + sha512 = "PwIGnH7jIueXv4opcwEbVGDATjGPO1dx9RkUl5LlHDSe+FXxPwFL5W/qYd5/NHr7f6lo/vvTrAzd0KlQtRusJQ=="; 1643 }; 1644 }; 1645 + "@typescript-eslint/typescript-estree-5.10.2" = { 1646 name = "_at_typescript-eslint_slash_typescript-estree"; 1647 packageName = "@typescript-eslint/typescript-estree"; 1648 + version = "5.10.2"; 1649 + src = fetchurl { 1650 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.10.2.tgz"; 1651 + sha512 = "WHHw6a9vvZls6JkTgGljwCsMkv8wu8XU8WaYKeYhxhWXH/atZeiMW6uDFPLZOvzNOGmuSMvHtZKd6AuC8PrwKQ=="; 1652 + }; 1653 + }; 1654 + "@typescript-eslint/utils-5.10.1" = { 1655 + name = "_at_typescript-eslint_slash_utils"; 1656 + packageName = "@typescript-eslint/utils"; 1657 + version = "5.10.1"; 1658 + src = fetchurl { 1659 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.1.tgz"; 1660 + sha512 = "RRmlITiUbLuTRtn/gcPRi4202niF+q7ylFLCKu4c+O/PcpRvZ/nAUwQ2G00bZgpWkhrNLNnvhZLbDn8Ml0qsQw=="; 1661 + }; 1662 + }; 1663 + "@typescript-eslint/utils-5.10.2" = { 1664 + name = "_at_typescript-eslint_slash_utils"; 1665 + packageName = "@typescript-eslint/utils"; 1666 + version = "5.10.2"; 1667 src = fetchurl { 1668 + url = "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.10.2.tgz"; 1669 + sha512 = "vuJaBeig1NnBRkf7q9tgMLREiYD7zsMrsN1DA3wcoMDvr3BTFiIpKjGiYZoKPllfEwN7spUjv7ZqD+JhbVjEPg=="; 1670 }; 1671 }; 1672 + "@typescript-eslint/visitor-keys-5.10.1" = { 1673 name = "_at_typescript-eslint_slash_visitor-keys"; 1674 packageName = "@typescript-eslint/visitor-keys"; 1675 + version = "5.10.1"; 1676 src = fetchurl { 1677 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.1.tgz"; 1678 + sha512 = "NjQ0Xinhy9IL979tpoTRuLKxMc0zJC7QVSdeerXs2/QvOy2yRkzX5dRb10X5woNUdJgU8G3nYRDlI33sq1K4YQ=="; 1679 }; 1680 }; 1681 + "@typescript-eslint/visitor-keys-5.10.2" = { 1682 name = "_at_typescript-eslint_slash_visitor-keys"; 1683 packageName = "@typescript-eslint/visitor-keys"; 1684 + version = "5.10.2"; 1685 src = fetchurl { 1686 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.10.2.tgz"; 1687 + sha512 = "zHIhYGGGrFJvvyfwHk5M08C5B5K4bewkm+rrvNTKk1/S15YHR+SA/QUF8ZWscXSfEaB8Nn2puZj+iHcoxVOD/Q=="; 1688 }; 1689 }; 1690 "abab-2.0.5" = { ··· 1705 sha512 = "nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="; 1706 }; 1707 }; 1708 "acorn-8.7.0" = { 1709 name = "acorn"; 1710 packageName = "acorn"; ··· 1759 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1760 }; 1761 }; 1762 + "ajv-8.9.0" = { 1763 name = "ajv"; 1764 packageName = "ajv"; 1765 + version = "8.9.0"; 1766 src = fetchurl { 1767 + url = "https://registry.npmjs.org/ajv/-/ajv-8.9.0.tgz"; 1768 + sha512 = "qOKJyNj/h+OWx7s5DePL6Zu1KeM9jPZhwBqs+7DzP6bGOvqzVCSf0xueYmVuaC/oQ/VtS2zLMLHdQFbkka+XDQ=="; 1769 }; 1770 }; 1771 "ansi-escapes-4.3.2" = { ··· 1885 sha512 = "HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw=="; 1886 }; 1887 }; 1888 + "async-3.2.3" = { 1889 name = "async"; 1890 packageName = "async"; 1891 + version = "3.2.3"; 1892 src = fetchurl { 1893 + url = "https://registry.npmjs.org/async/-/async-3.2.3.tgz"; 1894 + sha512 = "spZRyzKL5l5BZQrr/6m/SqFdBN0q3OCI0f9rjfBzCMBIP4p75P620rR3gTmaksNOhmzgdxcaxdNfMy6anrbM0g=="; 1895 }; 1896 }; 1897 "asynckit-0.4.0" = { ··· 1903 sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 1904 }; 1905 }; 1906 + "axios-0.25.0" = { 1907 name = "axios"; 1908 packageName = "axios"; 1909 + version = "0.25.0"; 1910 src = fetchurl { 1911 + url = "https://registry.npmjs.org/axios/-/axios-0.25.0.tgz"; 1912 + sha512 = "cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g=="; 1913 }; 1914 }; 1915 + "babel-jest-27.4.6" = { 1916 name = "babel-jest"; 1917 packageName = "babel-jest"; 1918 + version = "27.4.6"; 1919 src = fetchurl { 1920 + url = "https://registry.npmjs.org/babel-jest/-/babel-jest-27.4.6.tgz"; 1921 + sha512 = "qZL0JT0HS1L+lOuH+xC2DVASR3nunZi/ozGhpgauJHgmI7f8rudxf6hUjEHympdQ/J64CdKmPkgfJ+A3U6QCrg=="; 1922 }; 1923 }; 1924 "babel-plugin-dynamic-import-node-2.3.3" = { ··· 1948 sha512 = "Jcu7qS4OX5kTWBc45Hz7BMmgXuJqRnhatqpUhnzGC3OBYpOmf2tv6jFNwZpwM7wU7MUuv2r9IPS/ZlYOuburVw=="; 1949 }; 1950 }; 1951 + "babel-plugin-polyfill-corejs2-0.3.1" = { 1952 name = "babel-plugin-polyfill-corejs2"; 1953 packageName = "babel-plugin-polyfill-corejs2"; 1954 + version = "0.3.1"; 1955 src = fetchurl { 1956 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.1.tgz"; 1957 + sha512 = "v7/T6EQcNfVLfcN2X8Lulb7DjprieyLWJK/zOWH5DUYcAgex9sP3h25Q+DLsX9TloXe3y1O8l2q2Jv9q8UVB9w=="; 1958 }; 1959 }; 1960 + "babel-plugin-polyfill-corejs3-0.5.1" = { 1961 name = "babel-plugin-polyfill-corejs3"; 1962 packageName = "babel-plugin-polyfill-corejs3"; 1963 + version = "0.5.1"; 1964 src = fetchurl { 1965 + url = "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.5.1.tgz"; 1966 + sha512 = "TihqEe4sQcb/QcPJvxe94/9RZuLQuF1+To4WqQcRvc+3J3gLCPIPgDKzGLG6zmQLfH3nn25heRuDNkS2KR4I8A=="; 1967 }; 1968 }; 1969 + "babel-plugin-polyfill-regenerator-0.3.1" = { 1970 name = "babel-plugin-polyfill-regenerator"; 1971 packageName = "babel-plugin-polyfill-regenerator"; 1972 + version = "0.3.1"; 1973 src = fetchurl { 1974 + url = "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.3.1.tgz"; 1975 + sha512 = "Y2B06tvgHYt1x0yz17jGkGeeMr5FeKUu+ASJ+N6nB5lQ8Dapfg42i0OVrf8PNGJ3zKL4A23snMi1IRwrqqND7A=="; 1976 }; 1977 }; 1978 "babel-preset-current-node-syntax-1.0.1" = { ··· 2146 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2147 }; 2148 }; 2149 + "camelcase-6.3.0" = { 2150 name = "camelcase"; 2151 packageName = "camelcase"; 2152 + version = "6.3.0"; 2153 src = fetchurl { 2154 + url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"; 2155 + sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 2156 }; 2157 }; 2158 + "caniuse-lite-1.0.30001304" = { 2159 name = "caniuse-lite"; 2160 packageName = "caniuse-lite"; 2161 + version = "1.0.30001304"; 2162 src = fetchurl { 2163 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001304.tgz"; 2164 + sha512 = "bdsfZd6K6ap87AGqSHJP/s1V+U6Z5lyrcbBu3ovbCCf8cSYpwTtGrCBObMpJqwxfTbLW6YTIdbb1jEeTelcpYQ=="; 2165 }; 2166 }; 2167 "chalk-2.4.2" = { ··· 2191 sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; 2192 }; 2193 }; 2194 + "chokidar-3.5.3" = { 2195 name = "chokidar"; 2196 packageName = "chokidar"; 2197 + version = "3.5.3"; 2198 src = fetchurl { 2199 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 2200 + sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 2201 }; 2202 }; 2203 "chownr-1.1.4" = { ··· 2261 src = fetchurl { 2262 url = "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz"; 2263 sha512 = "iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg=="; 2264 }; 2265 }; 2266 "color-3.2.1" = { ··· 2407 sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA=="; 2408 }; 2409 }; 2410 + "core-js-3.20.3" = { 2411 name = "core-js"; 2412 packageName = "core-js"; 2413 + version = "3.20.3"; 2414 src = fetchurl { 2415 + url = "https://registry.npmjs.org/core-js/-/core-js-3.20.3.tgz"; 2416 + sha512 = "vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag=="; 2417 }; 2418 }; 2419 + "core-js-compat-3.20.3" = { 2420 name = "core-js-compat"; 2421 packageName = "core-js-compat"; 2422 + version = "3.20.3"; 2423 src = fetchurl { 2424 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.3.tgz"; 2425 + sha512 = "c8M5h0IkNZ+I92QhIpuSijOxGAcj3lgpsWdkCqmUTZNwidujF4r3pi6x1DCN+Vcs5qTS2XWWMfWSuCqyupX8gw=="; 2426 }; 2427 }; 2428 "core-util-is-1.0.3" = { ··· 2551 sha512 = "oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ=="; 2552 }; 2553 }; 2554 + "deep-object-diff-1.1.7" = { 2555 name = "deep-object-diff"; 2556 packageName = "deep-object-diff"; 2557 + version = "1.1.7"; 2558 src = fetchurl { 2559 + url = "https://registry.npmjs.org/deep-object-diff/-/deep-object-diff-1.1.7.tgz"; 2560 + sha512 = "QkgBca0mL08P6HiOjoqvmm6xOAl2W6CT2+34Ljhg0OeFan8cwlcdq8jrLKsBBuUFAZLsN5b6y491KdKEoSo9lg=="; 2561 }; 2562 }; 2563 "deepmerge-4.2.2" = { ··· 2614 sha1 = "978857442c44749e4206613e37946205826abd80"; 2615 }; 2616 }; 2617 + "detect-libc-2.0.0" = { 2618 name = "detect-libc"; 2619 packageName = "detect-libc"; 2620 + version = "2.0.0"; 2621 src = fetchurl { 2622 + url = "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.0.tgz"; 2623 + sha512 = "S55LzUl8HUav8l9E2PBTlC5PAJrHK7tkM+XXFGD+fbsbkTzhCpG6K05LxJcUOEWzMa4v6ptcMZ9s3fOdJDu0Zw=="; 2624 }; 2625 }; 2626 "detect-newline-3.1.0" = { ··· 2686 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2687 }; 2688 }; 2689 + "electron-to-chromium-1.4.57" = { 2690 name = "electron-to-chromium"; 2691 packageName = "electron-to-chromium"; 2692 + version = "1.4.57"; 2693 src = fetchurl { 2694 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.57.tgz"; 2695 + sha512 = "FNC+P5K1n6pF+M0zIK+gFCoXcJhhzDViL3DRIGy2Fv5PohuSES1JHR7T+GlwxSxlzx4yYbsuzCZvHxcBSRCIOw=="; 2696 }; 2697 }; 2698 + "electron-to-chromium-1.4.59" = { 2699 name = "electron-to-chromium"; 2700 packageName = "electron-to-chromium"; 2701 + version = "1.4.59"; 2702 src = fetchurl { 2703 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.59.tgz"; 2704 + sha512 = "AOJ3cAE0TWxz4fQ9zkND5hWrQg16nsZKVz9INOot1oV//u4wWu5xrj9CQMmPTYskkZRunSRc9sAnr4EkexXokg=="; 2705 }; 2706 }; 2707 "emittery-0.8.1" = { ··· 2749 sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q=="; 2750 }; 2751 }; 2752 "escalade-3.1.1" = { 2753 name = "escalade"; 2754 packageName = "escalade"; ··· 2803 sha512 = "mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw=="; 2804 }; 2805 }; 2806 + "eslint-8.8.0" = { 2807 name = "eslint"; 2808 packageName = "eslint"; 2809 + version = "8.8.0"; 2810 src = fetchurl { 2811 + url = "https://registry.npmjs.org/eslint/-/eslint-8.8.0.tgz"; 2812 + sha512 = "H3KXAzQGBH1plhYS3okDix2ZthuYJlQQEGE5k0IKuEqUSiyu4AmxxlJ2MtTYeJ3xB4jDhcYCwGOg2TXYdnDXlQ=="; 2813 }; 2814 }; 2815 "eslint-config-google-0.14.0" = { ··· 2821 sha512 = "WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw=="; 2822 }; 2823 }; 2824 + "eslint-plugin-jest-26.0.0" = { 2825 name = "eslint-plugin-jest"; 2826 packageName = "eslint-plugin-jest"; 2827 + version = "26.0.0"; 2828 src = fetchurl { 2829 + url = "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-26.0.0.tgz"; 2830 + sha512 = "Fvs0YgJ/nw9FTrnqTuMGVrkozkd07jkQzWm0ajqyHlfcsdkxGfAuv30fgfWHOnHiCr9+1YQ365CcDX7vrNhqQg=="; 2831 }; 2832 }; 2833 "eslint-scope-5.1.1" = { ··· 2866 sha512 = "0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw=="; 2867 }; 2868 }; 2869 + "eslint-visitor-keys-3.2.0" = { 2870 name = "eslint-visitor-keys"; 2871 packageName = "eslint-visitor-keys"; 2872 + version = "3.2.0"; 2873 src = fetchurl { 2874 + url = "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.2.0.tgz"; 2875 + sha512 = "IOzT0X126zn7ALX0dwFiUQEdsfzrm4+ISsQS8nukaJXwEyYKRSnEIIDULYg1mCtGp7UUXgfGl7BIolXREQK+XQ=="; 2876 }; 2877 }; 2878 "espree-9.3.0" = { ··· 2974 sha512 = "XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg=="; 2975 }; 2976 }; 2977 + "expect-27.4.6" = { 2978 name = "expect"; 2979 packageName = "expect"; 2980 + version = "27.4.6"; 2981 src = fetchurl { 2982 + url = "https://registry.npmjs.org/expect/-/expect-27.4.6.tgz"; 2983 + sha512 = "1M/0kAALIaj5LaG66sFJTbRsWTADnylly82cu4bspI0nl+pgP4E6Bh/aqdHlTUjul06K7xQnnrAoqfxVU0+/ag=="; 2984 }; 2985 }; 2986 "fast-deep-equal-3.1.3" = { ··· 2992 sha512 = "f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="; 2993 }; 2994 }; 2995 + "fast-glob-3.2.11" = { 2996 name = "fast-glob"; 2997 packageName = "fast-glob"; 2998 + version = "3.2.11"; 2999 src = fetchurl { 3000 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz"; 3001 + sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="; 3002 }; 3003 }; 3004 "fast-json-stable-stringify-2.1.0" = { ··· 3109 sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 3110 }; 3111 }; 3112 + "flatted-3.2.5" = { 3113 name = "flatted"; 3114 packageName = "flatted"; 3115 + version = "3.2.5"; 3116 src = fetchurl { 3117 + url = "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz"; 3118 + sha512 = "WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg=="; 3119 }; 3120 }; 3121 "fn.name-1.1.0" = { ··· 3127 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 3128 }; 3129 }; 3130 + "follow-redirects-1.14.7" = { 3131 name = "follow-redirects"; 3132 packageName = "follow-redirects"; 3133 + version = "1.14.7"; 3134 src = fetchurl { 3135 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.7.tgz"; 3136 + sha512 = "+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ=="; 3137 }; 3138 }; 3139 "form-data-3.0.1" = { ··· 3325 sha512 = "uS8X6lSKN2JumVoXrbUz+uG4BYG+eiawqm3qFcT7ammfbUHeCBoJMlHcec/S3krSk73/AE/f0szYFmgAA3kYZg=="; 3326 }; 3327 }; 3328 + "globby-11.1.0" = { 3329 name = "globby"; 3330 packageName = "globby"; 3331 + version = "11.1.0"; 3332 src = fetchurl { 3333 + url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 3334 + sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 3335 }; 3336 }; 3337 "glossy-0.1.7" = { ··· 3343 sha1 = "769b5984a96f6066ab9ea758224825ee6c210f0b"; 3344 }; 3345 }; 3346 + "graceful-fs-4.2.9" = { 3347 name = "graceful-fs"; 3348 packageName = "graceful-fs"; 3349 + version = "4.2.9"; 3350 src = fetchurl { 3351 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; 3352 + sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; 3353 }; 3354 }; 3355 "handlebars-4.7.7" = { ··· 3523 sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 3524 }; 3525 }; 3526 + "import-local-3.1.0" = { 3527 name = "import-local"; 3528 packageName = "import-local"; 3529 + version = "3.1.0"; 3530 src = fetchurl { 3531 + url = "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz"; 3532 + sha512 = "ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg=="; 3533 }; 3534 }; 3535 "imurmurhash-0.1.4" = { ··· 3586 sha512 = "ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw=="; 3587 }; 3588 }; 3589 + "is-core-module-2.8.1" = { 3590 name = "is-core-module"; 3591 packageName = "is-core-module"; 3592 + version = "2.8.1"; 3593 src = fetchurl { 3594 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz"; 3595 + sha512 = "SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA=="; 3596 }; 3597 }; 3598 "is-extglob-2.1.1" = { ··· 3703 sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw=="; 3704 }; 3705 }; 3706 "istanbul-lib-instrument-5.1.0" = { 3707 name = "istanbul-lib-instrument"; 3708 packageName = "istanbul-lib-instrument"; ··· 3730 sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw=="; 3731 }; 3732 }; 3733 "istanbul-reports-3.1.3" = { 3734 name = "istanbul-reports"; 3735 packageName = "istanbul-reports"; ··· 3739 sha512 = "x9LtDVtfm/t1GFiLl3NffC7hz+I1ragvgX1P/Lg1NlIagifZDKUkuuaAxH/qpwj2IuEfD8G2Bs/UKp+sZ/pKkg=="; 3740 }; 3741 }; 3742 + "jest-27.4.7" = { 3743 name = "jest"; 3744 packageName = "jest"; 3745 + version = "27.4.7"; 3746 src = fetchurl { 3747 + url = "https://registry.npmjs.org/jest/-/jest-27.4.7.tgz"; 3748 + sha512 = "8heYvsx7nV/m8m24Vk26Y87g73Ba6ueUd0MWed/NXMhSZIm62U/llVbS0PJe1SHunbyXjJ/BqG1z9bFjGUIvTg=="; 3749 }; 3750 }; 3751 "jest-changed-files-27.4.2" = { ··· 3757 sha512 = "/9x8MjekuzUQoPjDHbBiXbNEBauhrPU2ct7m8TfCg69ywt1y/N+yYwGh3gCpnqUS3klYWDU/lSNgv+JhoD2k1A=="; 3758 }; 3759 }; 3760 + "jest-circus-27.4.6" = { 3761 name = "jest-circus"; 3762 packageName = "jest-circus"; 3763 + version = "27.4.6"; 3764 src = fetchurl { 3765 + url = "https://registry.npmjs.org/jest-circus/-/jest-circus-27.4.6.tgz"; 3766 + sha512 = "UA7AI5HZrW4wRM72Ro80uRR2Fg+7nR0GESbSI/2M+ambbzVuA63mn5T1p3Z/wlhntzGpIG1xx78GP2YIkf6PhQ=="; 3767 }; 3768 }; 3769 + "jest-cli-27.4.7" = { 3770 name = "jest-cli"; 3771 packageName = "jest-cli"; 3772 + version = "27.4.7"; 3773 src = fetchurl { 3774 + url = "https://registry.npmjs.org/jest-cli/-/jest-cli-27.4.7.tgz"; 3775 + sha512 = "zREYhvjjqe1KsGV15mdnxjThKNDgza1fhDT+iUsXWLCq3sxe9w5xnvyctcYVT5PcdLSjv7Y5dCwTS3FCF1tiuw=="; 3776 }; 3777 }; 3778 + "jest-config-27.4.7" = { 3779 name = "jest-config"; 3780 packageName = "jest-config"; 3781 + version = "27.4.7"; 3782 src = fetchurl { 3783 + url = "https://registry.npmjs.org/jest-config/-/jest-config-27.4.7.tgz"; 3784 + sha512 = "xz/o/KJJEedHMrIY9v2ParIoYSrSVY6IVeE4z5Z3i101GoA5XgfbJz+1C8EYPsv7u7f39dS8F9v46BHDhn0vlw=="; 3785 }; 3786 }; 3787 + "jest-diff-27.4.6" = { 3788 name = "jest-diff"; 3789 packageName = "jest-diff"; 3790 + version = "27.4.6"; 3791 src = fetchurl { 3792 + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.4.6.tgz"; 3793 + sha512 = "zjaB0sh0Lb13VyPsd92V7HkqF6yKRH9vm33rwBt7rPYrpQvS1nCvlIy2pICbKta+ZjWngYLNn4cCK4nyZkjS/w=="; 3794 }; 3795 }; 3796 "jest-docblock-27.4.0" = { ··· 3802 sha512 = "7TBazUdCKGV7svZ+gh7C8esAnweJoG+SvcF6Cjqj4l17zA2q1cMwx2JObSioubk317H+cjcHgP+7fTs60paulg=="; 3803 }; 3804 }; 3805 + "jest-each-27.4.6" = { 3806 name = "jest-each"; 3807 packageName = "jest-each"; 3808 + version = "27.4.6"; 3809 src = fetchurl { 3810 + url = "https://registry.npmjs.org/jest-each/-/jest-each-27.4.6.tgz"; 3811 + sha512 = "n6QDq8y2Hsmn22tRkgAk+z6MCX7MeVlAzxmZDshfS2jLcaBlyhpF3tZSJLR+kXmh23GEvS0ojMR8i6ZeRvpQcA=="; 3812 }; 3813 }; 3814 + "jest-environment-jsdom-27.4.6" = { 3815 name = "jest-environment-jsdom"; 3816 packageName = "jest-environment-jsdom"; 3817 + version = "27.4.6"; 3818 src = fetchurl { 3819 + url = "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.4.6.tgz"; 3820 + sha512 = "o3dx5p/kHPbUlRvSNjypEcEtgs6LmvESMzgRFQE6c+Prwl2JLA4RZ7qAnxc5VM8kutsGRTB15jXeeSbJsKN9iA=="; 3821 }; 3822 }; 3823 + "jest-environment-node-27.4.6" = { 3824 name = "jest-environment-node"; 3825 packageName = "jest-environment-node"; 3826 + version = "27.4.6"; 3827 src = fetchurl { 3828 + url = "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.4.6.tgz"; 3829 + sha512 = "yfHlZ9m+kzTKZV0hVfhVu6GuDxKAYeFHrfulmy7Jxwsq4V7+ZK7f+c0XP/tbVDMQW7E4neG2u147hFkuVz0MlQ=="; 3830 }; 3831 }; 3832 "jest-get-type-27.4.0" = { ··· 3838 sha512 = "tk9o+ld5TWq41DkK14L4wox4s2D9MtTpKaAVzXfr5CUKm5ZK2ExcaFE0qls2W71zE/6R2TxxrK9w2r6svAFDBQ=="; 3839 }; 3840 }; 3841 + "jest-haste-map-27.4.6" = { 3842 name = "jest-haste-map"; 3843 packageName = "jest-haste-map"; 3844 + version = "27.4.6"; 3845 src = fetchurl { 3846 + url = "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.4.6.tgz"; 3847 + sha512 = "0tNpgxg7BKurZeFkIOvGCkbmOHbLFf4LUQOxrQSMjvrQaQe3l6E8x6jYC1NuWkGo5WDdbr8FEzUxV2+LWNawKQ=="; 3848 }; 3849 }; 3850 + "jest-jasmine2-27.4.6" = { 3851 name = "jest-jasmine2"; 3852 packageName = "jest-jasmine2"; 3853 + version = "27.4.6"; 3854 src = fetchurl { 3855 + url = "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.4.6.tgz"; 3856 + sha512 = "uAGNXF644I/whzhsf7/qf74gqy9OuhvJ0XYp8SDecX2ooGeaPnmJMjXjKt0mqh1Rl5dtRGxJgNrHlBQIBfS5Nw=="; 3857 }; 3858 }; 3859 + "jest-leak-detector-27.4.6" = { 3860 name = "jest-leak-detector"; 3861 packageName = "jest-leak-detector"; 3862 + version = "27.4.6"; 3863 src = fetchurl { 3864 + url = "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.4.6.tgz"; 3865 + sha512 = "kkaGixDf9R7CjHm2pOzfTxZTQQQ2gHTIWKY/JZSiYTc90bZp8kSZnUMS3uLAfwTZwc0tcMRoEX74e14LG1WapA=="; 3866 }; 3867 }; 3868 + "jest-matcher-utils-27.4.6" = { 3869 name = "jest-matcher-utils"; 3870 packageName = "jest-matcher-utils"; 3871 + version = "27.4.6"; 3872 src = fetchurl { 3873 + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.4.6.tgz"; 3874 + sha512 = "XD4PKT3Wn1LQnRAq7ZsTI0VRuEc9OrCPFiO1XL7bftTGmfNF0DcEwMHRgqiu7NGf8ZoZDREpGrCniDkjt79WbA=="; 3875 }; 3876 }; 3877 + "jest-message-util-27.4.6" = { 3878 name = "jest-message-util"; 3879 packageName = "jest-message-util"; 3880 + version = "27.4.6"; 3881 src = fetchurl { 3882 + url = "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.4.6.tgz"; 3883 + sha512 = "0p5szriFU0U74czRSFjH6RyS7UYIAkn/ntwMuOwTGWrQIOh5NzXXrq72LOqIkJKKvFbPq+byZKuBz78fjBERBA=="; 3884 }; 3885 }; 3886 + "jest-mock-27.4.6" = { 3887 name = "jest-mock"; 3888 packageName = "jest-mock"; 3889 + version = "27.4.6"; 3890 src = fetchurl { 3891 + url = "https://registry.npmjs.org/jest-mock/-/jest-mock-27.4.6.tgz"; 3892 + sha512 = "kvojdYRkst8iVSZ1EJ+vc1RRD9llueBjKzXzeCytH3dMM7zvPV/ULcfI2nr0v0VUgm3Bjt3hBCQvOeaBz+ZTHw=="; 3893 }; 3894 }; 3895 "jest-pnp-resolver-1.2.2" = { ··· 3910 sha512 = "WeCpMpNnqJYMQoOjm1nTtsgbR4XHAk1u00qDoNBQoykM280+/TmgA5Qh5giC1ecy6a5d4hbSsHzpBtu5yvlbEg=="; 3911 }; 3912 }; 3913 + "jest-resolve-27.4.6" = { 3914 name = "jest-resolve"; 3915 packageName = "jest-resolve"; 3916 + version = "27.4.6"; 3917 src = fetchurl { 3918 + url = "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.4.6.tgz"; 3919 + sha512 = "SFfITVApqtirbITKFAO7jOVN45UgFzcRdQanOFzjnbd+CACDoyeX7206JyU92l4cRr73+Qy/TlW51+4vHGt+zw=="; 3920 }; 3921 }; 3922 + "jest-resolve-dependencies-27.4.6" = { 3923 name = "jest-resolve-dependencies"; 3924 packageName = "jest-resolve-dependencies"; 3925 + version = "27.4.6"; 3926 src = fetchurl { 3927 + url = "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.4.6.tgz"; 3928 + sha512 = "W85uJZcFXEVZ7+MZqIPCscdjuctruNGXUZ3OHSXOfXR9ITgbUKeHj+uGcies+0SsvI5GtUfTw4dY7u9qjTvQOw=="; 3929 }; 3930 }; 3931 + "jest-runner-27.4.6" = { 3932 name = "jest-runner"; 3933 packageName = "jest-runner"; 3934 + version = "27.4.6"; 3935 src = fetchurl { 3936 + url = "https://registry.npmjs.org/jest-runner/-/jest-runner-27.4.6.tgz"; 3937 + sha512 = "IDeFt2SG4DzqalYBZRgbbPmpwV3X0DcntjezPBERvnhwKGWTW7C5pbbA5lVkmvgteeNfdd/23gwqv3aiilpYPg=="; 3938 }; 3939 }; 3940 + "jest-runtime-27.4.6" = { 3941 name = "jest-runtime"; 3942 packageName = "jest-runtime"; 3943 + version = "27.4.6"; 3944 src = fetchurl { 3945 + url = "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.4.6.tgz"; 3946 + sha512 = "eXYeoR/MbIpVDrjqy5d6cGCFOYBFFDeKaNWqTp0h6E74dK0zLHzASQXJpl5a2/40euBmKnprNLJ0Kh0LCndnWQ=="; 3947 }; 3948 }; 3949 "jest-serializer-27.4.0" = { ··· 3955 sha512 = "RDhpcn5f1JYTX2pvJAGDcnsNTnsV9bjYPU8xcV+xPwOXnUPOQwf4ZEuiU6G9H1UztH+OapMgu/ckEVwO87PwnQ=="; 3956 }; 3957 }; 3958 + "jest-snapshot-27.4.6" = { 3959 name = "jest-snapshot"; 3960 packageName = "jest-snapshot"; 3961 + version = "27.4.6"; 3962 src = fetchurl { 3963 + url = "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.4.6.tgz"; 3964 + sha512 = "fafUCDLQfzuNP9IRcEqaFAMzEe7u5BF7mude51wyWv7VRex60WznZIC7DfKTgSIlJa8aFzYmXclmN328aqSDmQ=="; 3965 }; 3966 }; 3967 "jest-util-27.4.2" = { ··· 3973 sha512 = "YuxxpXU6nlMan9qyLuxHaMMOzXAl5aGZWCSzben5DhLHemYQxCc4YK+4L3ZrCutT8GPQ+ui9k5D8rUJoDioMnA=="; 3974 }; 3975 }; 3976 + "jest-validate-27.4.6" = { 3977 name = "jest-validate"; 3978 packageName = "jest-validate"; 3979 + version = "27.4.6"; 3980 src = fetchurl { 3981 + url = "https://registry.npmjs.org/jest-validate/-/jest-validate-27.4.6.tgz"; 3982 + sha512 = "872mEmCPVlBqbA5dToC57vA3yJaMRfIdpCoD3cyHWJOMx+SJwLNw0I71EkWs41oza/Er9Zno9XuTkRYCPDUJXQ=="; 3983 }; 3984 }; 3985 + "jest-watcher-27.4.6" = { 3986 name = "jest-watcher"; 3987 packageName = "jest-watcher"; 3988 + version = "27.4.6"; 3989 src = fetchurl { 3990 + url = "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.4.6.tgz"; 3991 + sha512 = "yKQ20OMBiCDigbD0quhQKLkBO+ObGN79MO4nT7YaCuQ5SM+dkBNWE8cZX0FjU6czwMvWw6StWbe+Wv4jJPJ+fw=="; 3992 }; 3993 }; 3994 + "jest-worker-27.4.6" = { 3995 name = "jest-worker"; 3996 packageName = "jest-worker"; 3997 + version = "27.4.6"; 3998 + src = fetchurl { 3999 + url = "https://registry.npmjs.org/jest-worker/-/jest-worker-27.4.6.tgz"; 4000 + sha512 = "gHWJF/6Xi5CTG5QCvROr6GcmpIqNYpDJyc8A1h/DyXqH1tD6SnRCM0d3U5msV31D2LB/U+E0M+W4oyvKV44oNw=="; 4001 + }; 4002 + }; 4003 + "js-sdsl-2.1.4" = { 4004 + name = "js-sdsl"; 4005 + packageName = "js-sdsl"; 4006 + version = "2.1.4"; 4007 src = fetchurl { 4008 + url = "https://registry.npmjs.org/js-sdsl/-/js-sdsl-2.1.4.tgz"; 4009 + sha512 = "/Ew+CJWHNddr7sjwgxaVeIORIH4AMVC9dy0hPf540ZGMVgS9d3ajwuVdyhDt6/QUvT8ATjR3yuYBKsS79F+H4A=="; 4010 }; 4011 }; 4012 "js-tokens-4.0.0" = { ··· 4198 sha512 = "0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ=="; 4199 }; 4200 }; 4201 + "logform-2.3.2" = { 4202 name = "logform"; 4203 packageName = "logform"; 4204 + version = "2.3.2"; 4205 src = fetchurl { 4206 + url = "https://registry.npmjs.org/logform/-/logform-2.3.2.tgz"; 4207 + sha512 = "V6JiPThZzTsbVRspNO6TmHkR99oqYTs8fivMBYQkjZj6rxW92KxtDCPE6IkAk1DNBnYKNkjm4jYBm6JDUcyhOA=="; 4208 }; 4209 }; 4210 "lru-cache-6.0.0" = { ··· 4252 sha512 = "JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg=="; 4253 }; 4254 }; 4255 + "marked-4.0.12" = { 4256 name = "marked"; 4257 packageName = "marked"; 4258 + version = "4.0.12"; 4259 src = fetchurl { 4260 + url = "https://registry.npmjs.org/marked/-/marked-4.0.12.tgz"; 4261 + sha512 = "hgibXWrEDNBWgGiK18j/4lkS6ihTe9sxtV4Q1OQppb/0zzyPSzoFANBa5MfsG/zgsWklmNnhm0XACZOH/0HBiQ=="; 4262 }; 4263 }; 4264 "merge-stream-2.0.0" = { ··· 4387 sha512 = "kHmoybcPV8Sqy59DwNDY3Jefr64lK/by/da0ViFcuA4DH0vQg5Q6Ze5VimxkfQNSC+Mls/Kx53s7TjP1RhFEDQ=="; 4388 }; 4389 }; 4390 + "mqtt-4.3.4" = { 4391 name = "mqtt"; 4392 packageName = "mqtt"; 4393 + version = "4.3.4"; 4394 src = fetchurl { 4395 + url = "https://registry.npmjs.org/mqtt/-/mqtt-4.3.4.tgz"; 4396 + sha512 = "yAVDfVHz3Cjn6K68z54mf7fTni/AWsPhiEsRwZSvet2wO47R6NFUn2psWxYIph2JxWtL3ZKa/da8pjJKSaXPdQ=="; 4397 }; 4398 }; 4399 "mqtt-packet-6.10.0" = { ··· 4531 sha512 = "2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg=="; 4532 }; 4533 }; 4534 + "number-allocator-1.0.9" = { 4535 name = "number-allocator"; 4536 packageName = "number-allocator"; 4537 + version = "1.0.9"; 4538 src = fetchurl { 4539 + url = "https://registry.npmjs.org/number-allocator/-/number-allocator-1.0.9.tgz"; 4540 + sha512 = "sIIF0dZKMs3roPUD7rLreH8H3x47QKV9dHZ+PeSnH24gL0CxKxz/823woGZC0hLBSb2Ar/rOOeHiNbnPBum/Mw=="; 4541 }; 4542 }; 4543 "number-is-nan-1.0.1" = { ··· 4756 sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 4757 }; 4758 }; 4759 + "picomatch-2.3.1" = { 4760 name = "picomatch"; 4761 packageName = "picomatch"; 4762 + version = "2.3.1"; 4763 src = fetchurl { 4764 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 4765 + sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 4766 }; 4767 }; 4768 "pify-4.0.1" = { ··· 4774 sha512 = "uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g=="; 4775 }; 4776 }; 4777 + "pirates-4.0.5" = { 4778 name = "pirates"; 4779 packageName = "pirates"; 4780 + version = "4.0.5"; 4781 src = fetchurl { 4782 + url = "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz"; 4783 + sha512 = "8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ=="; 4784 }; 4785 }; 4786 "pkg-dir-4.2.0" = { ··· 4792 sha512 = "HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ=="; 4793 }; 4794 }; 4795 + "prebuild-install-7.0.1" = { 4796 name = "prebuild-install"; 4797 packageName = "prebuild-install"; 4798 + version = "7.0.1"; 4799 src = fetchurl { 4800 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.0.1.tgz"; 4801 + sha512 = "QBSab31WqkyxpnMWQxubYAHR5S9B2+r81ucocew34Fkl98FhvKIF50jIJnNOBmAZfyNV7vE5T6gd3hTVWgY6tg=="; 4802 }; 4803 }; 4804 "prelude-ls-1.1.2" = { ··· 4819 sha512 = "vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g=="; 4820 }; 4821 }; 4822 + "pretty-format-27.4.6" = { 4823 name = "pretty-format"; 4824 packageName = "pretty-format"; 4825 + version = "27.4.6"; 4826 src = fetchurl { 4827 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.4.6.tgz"; 4828 + sha512 = "NblstegA1y/RJW2VyML+3LlpFjzx62cUrtBIKIWDXEDkjNeleA7Od7nrzcs/VLQvAeV4CgSYhrN39DRN88Qi/g=="; 4829 }; 4830 }; 4831 "process-nextick-args-2.0.1" = { ··· 4837 sha512 = "3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag=="; 4838 }; 4839 }; 4840 "prompts-2.4.2" = { 4841 name = "prompts"; 4842 packageName = "prompts"; ··· 5035 sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 5036 }; 5037 }; 5038 + "resolve-1.22.0" = { 5039 name = "resolve"; 5040 packageName = "resolve"; 5041 + version = "1.22.0"; 5042 src = fetchurl { 5043 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"; 5044 + sha512 = "Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw=="; 5045 }; 5046 }; 5047 "resolve-cwd-3.0.0" = { ··· 5143 sha512 = "ERq4hUjKDbJfE4+XtZLFPCDi8Vb1JqaxAPTxWFLBx8XcAlf9Bda/ZJdVezs/NAfsMQScyIlUMx+Yeu7P7rx5jw=="; 5144 }; 5145 }; 5146 + "safe-stable-stringify-2.3.1" = { 5147 + name = "safe-stable-stringify"; 5148 + packageName = "safe-stable-stringify"; 5149 + version = "2.3.1"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.3.1.tgz"; 5152 + sha512 = "kYBSfT+troD9cDA85VDnHZ1rpHC50O0g1e6WlGHVCz/g+JS+9WKLj+XwFYyR8UbrZN8ll9HUpDAAddY58MGisg=="; 5153 + }; 5154 + }; 5155 "safer-buffer-2.1.2" = { 5156 name = "safer-buffer"; 5157 packageName = "safer-buffer"; ··· 5269 sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A=="; 5270 }; 5271 }; 5272 + "shiki-0.10.0" = { 5273 name = "shiki"; 5274 packageName = "shiki"; 5275 + version = "0.10.0"; 5276 src = fetchurl { 5277 + url = "https://registry.npmjs.org/shiki/-/shiki-0.10.0.tgz"; 5278 + sha512 = "iczxaIYeBFHTFrQPb9DVy2SKgYxC4Wo7Iucm7C17cCh2Ge/refnvHscUOxM85u57MfLoNOtjoEFUWt9gBexblA=="; 5279 }; 5280 }; 5281 "signal-exit-3.0.6" = { ··· 5296 sha512 = "cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q=="; 5297 }; 5298 }; 5299 + "simple-get-4.0.1" = { 5300 name = "simple-get"; 5301 packageName = "simple-get"; 5302 + version = "4.0.1"; 5303 src = fetchurl { 5304 + url = "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz"; 5305 + sha512 = "brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA=="; 5306 }; 5307 }; 5308 "simple-swizzle-0.2.2" = { ··· 5575 sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; 5576 }; 5577 }; 5578 + "supports-preserve-symlinks-flag-1.0.0" = { 5579 + name = "supports-preserve-symlinks-flag"; 5580 + packageName = "supports-preserve-symlinks-flag"; 5581 + version = "1.0.0"; 5582 + src = fetchurl { 5583 + url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 5584 + sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 5585 + }; 5586 + }; 5587 "symbol-tree-3.2.4" = { 5588 name = "symbol-tree"; 5589 packageName = "symbol-tree"; ··· 5845 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 5846 }; 5847 }; 5848 + "typedoc-0.22.11" = { 5849 name = "typedoc"; 5850 packageName = "typedoc"; 5851 + version = "0.22.11"; 5852 src = fetchurl { 5853 + url = "https://registry.npmjs.org/typedoc/-/typedoc-0.22.11.tgz"; 5854 + sha512 = "pVr3hh6dkS3lPPaZz1fNpvcrqLdtEvXmXayN55czlamSgvEjh+57GUqfhAI1Xsuu/hNHUT1KNSx8LH2wBP/7SA=="; 5855 }; 5856 }; 5857 + "typedoc-plugin-markdown-3.11.12" = { 5858 name = "typedoc-plugin-markdown"; 5859 packageName = "typedoc-plugin-markdown"; 5860 + version = "3.11.12"; 5861 src = fetchurl { 5862 + url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.11.12.tgz"; 5863 + sha512 = "gb/RuzgZ1zCnRUOqUg6firIqU7xDs9s7hq0vlU/gAsFfVCnpl3NTM9vPyPON75nnpfVFCxr/hmKQ01k1CYY/Qg=="; 5864 }; 5865 }; 5866 "typedoc-plugin-no-inherit-1.3.1" = { ··· 5881 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 5882 }; 5883 }; 5884 + "typescript-4.5.5" = { 5885 name = "typescript"; 5886 packageName = "typescript"; 5887 + version = "4.5.5"; 5888 src = fetchurl { 5889 + url = "https://registry.npmjs.org/typescript/-/typescript-4.5.5.tgz"; 5890 + sha512 = "TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA=="; 5891 }; 5892 }; 5893 + "uglify-js-3.15.0" = { 5894 name = "uglify-js"; 5895 packageName = "uglify-js"; 5896 + version = "3.15.0"; 5897 src = fetchurl { 5898 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.15.0.tgz"; 5899 + sha512 = "x+xdeDWq7FiORDvyIJ0q/waWd4PhjBNOm5dQUOq2AKC0IEjxOS66Ha9tctiVDGcRQuh69K7fgU5oRuTK4cysSg=="; 5900 }; 5901 }; 5902 "unicode-canonical-property-names-ecmascript-2.0.0" = { ··· 5989 sha512 = "l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA=="; 5990 }; 5991 }; 5992 + "v8-to-istanbul-8.1.1" = { 5993 name = "v8-to-istanbul"; 5994 packageName = "v8-to-istanbul"; 5995 + version = "8.1.1"; 5996 src = fetchurl { 5997 + url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-8.1.1.tgz"; 5998 + sha512 = "FGtKtv3xIpR6BYhvgH8MI/y78oT7d8Au3ww4QIxymrCtZEh5b8gCw2siywE+puhEmuWKDtmfrvF5UlB298ut3w=="; 5999 }; 6000 }; 6001 "vscode-oniguruma-1.6.1" = { ··· 6043 sha512 = "ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ=="; 6044 }; 6045 }; 6046 "webidl-conversions-5.0.0" = { 6047 name = "webidl-conversions"; 6048 packageName = "webidl-conversions"; ··· 6106 sha512 = "eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg=="; 6107 }; 6108 }; 6109 + "winston-3.5.0" = { 6110 name = "winston"; 6111 packageName = "winston"; 6112 + version = "3.5.0"; 6113 src = fetchurl { 6114 + url = "https://registry.npmjs.org/winston/-/winston-3.5.0.tgz"; 6115 + sha512 = "OQMbmLsIdVHvm2hSurrYZs+iZNIImXneYJ6pX7LseSMEq20HdTETXiNnNX3FDwN4LB/xDRZLF6JYOY+AI112Kw=="; 6116 }; 6117 }; 6118 "winston-syslog-2.4.4" = { ··· 6124 sha512 = "zDjoKO932Yszvzq8WtbIFMXHwAT2MOxpWC9s6djw2tvjdRESWw3au6l+0xDMatMhNWVoVaVNkDXF+r/eyoBUVA=="; 6125 }; 6126 }; 6127 + "winston-transport-4.4.2" = { 6128 name = "winston-transport"; 6129 packageName = "winston-transport"; 6130 + version = "4.4.2"; 6131 src = fetchurl { 6132 + url = "https://registry.npmjs.org/winston-transport/-/winston-transport-4.4.2.tgz"; 6133 + sha512 = "9jmhltAr5ygt5usgUTQbEiw/7RYXpyUbEAFRCSicIacpUzPkrnQsQZSPGEI12aLK9Jth4zNcYJx3Cvznwrl8pw=="; 6134 }; 6135 }; 6136 "word-wrap-1.2.3" = { ··· 6187 sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA=="; 6188 }; 6189 }; 6190 + "ws-8.4.2" = { 6191 name = "ws"; 6192 packageName = "ws"; 6193 + version = "8.4.2"; 6194 src = fetchurl { 6195 + url = "https://registry.npmjs.org/ws/-/ws-8.4.2.tgz"; 6196 + sha512 = "Kbk4Nxyq7/ZWqr/tarI9yIt/+iNNFOjBXEWgTb4ydaNHBNGgvf2QHbS9fdfsndfjFlFwEd4Al+mw83YkaD10ZA=="; 6197 }; 6198 }; 6199 "xml-name-validator-3.0.0" = { ··· 6259 sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w=="; 6260 }; 6261 }; 6262 + "zigbee-herdsman-0.14.10" = { 6263 name = "zigbee-herdsman"; 6264 packageName = "zigbee-herdsman"; 6265 + version = "0.14.10"; 6266 src = fetchurl { 6267 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.14.10.tgz"; 6268 + sha512 = "exPtxyJij2fByFhrJpVro9DeL11D1OpjfvEPkEMaPF12C3/fMDdEjZZX66a2mU07KvhlTqynQ+wZFwsighrimg=="; 6269 }; 6270 }; 6271 + "zigbee-herdsman-converters-14.0.406" = { 6272 name = "zigbee-herdsman-converters"; 6273 packageName = "zigbee-herdsman-converters"; 6274 + version = "14.0.406"; 6275 src = fetchurl { 6276 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.406.tgz"; 6277 + sha512 = "vc5xBAI4rfv4jWBQi0Gj4gFK4LftS9J/T/mytgfh73e4N+U3rmNaiA+3syovydsDB1G0PLphIWy5CLrMKLM6UA=="; 6278 }; 6279 }; 6280 + "zigbee2mqtt-frontend-0.6.71" = { 6281 name = "zigbee2mqtt-frontend"; 6282 packageName = "zigbee2mqtt-frontend"; 6283 + version = "0.6.71"; 6284 src = fetchurl { 6285 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.6.71.tgz"; 6286 + sha512 = "+7cbMrbxhR5sPY7/trBoY6vzjFfNL4zlgfoOvE5pDmg4t5ZcJpf5VoCnK7c9ALEMQnBCPxTFfXjkivarQktrpA=="; 6287 }; 6288 }; 6289 }; 6290 args = { 6291 name = "zigbee2mqtt"; 6292 packageName = "zigbee2mqtt"; 6293 + version = "1.23.0"; 6294 src = ./.; 6295 dependencies = [ 6296 + sources."@babel/code-frame-7.16.7" 6297 + sources."@babel/compat-data-7.16.8" 6298 + (sources."@babel/core-7.16.12" // { 6299 dependencies = [ 6300 sources."debug-4.3.3" 6301 sources."ms-2.1.2" ··· 6303 sources."source-map-0.5.7" 6304 ]; 6305 }) 6306 + (sources."@babel/generator-7.16.8" // { 6307 dependencies = [ 6308 sources."source-map-0.5.7" 6309 ]; 6310 }) 6311 + sources."@babel/helper-annotate-as-pure-7.16.7" 6312 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 6313 + (sources."@babel/helper-compilation-targets-7.16.7" // { 6314 dependencies = [ 6315 sources."semver-6.3.0" 6316 ]; 6317 }) 6318 + sources."@babel/helper-create-class-features-plugin-7.16.10" 6319 + sources."@babel/helper-create-regexp-features-plugin-7.16.7" 6320 + (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 6321 dependencies = [ 6322 sources."debug-4.3.3" 6323 sources."ms-2.1.2" 6324 sources."semver-6.3.0" 6325 ]; 6326 }) 6327 + sources."@babel/helper-environment-visitor-7.16.7" 6328 + sources."@babel/helper-explode-assignable-expression-7.16.7" 6329 + sources."@babel/helper-function-name-7.16.7" 6330 + sources."@babel/helper-get-function-arity-7.16.7" 6331 + sources."@babel/helper-hoist-variables-7.16.7" 6332 + sources."@babel/helper-member-expression-to-functions-7.16.7" 6333 + sources."@babel/helper-module-imports-7.16.7" 6334 + sources."@babel/helper-module-transforms-7.16.7" 6335 + sources."@babel/helper-optimise-call-expression-7.16.7" 6336 + sources."@babel/helper-plugin-utils-7.16.7" 6337 + sources."@babel/helper-remap-async-to-generator-7.16.8" 6338 + sources."@babel/helper-replace-supers-7.16.7" 6339 + sources."@babel/helper-simple-access-7.16.7" 6340 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 6341 + sources."@babel/helper-split-export-declaration-7.16.7" 6342 + sources."@babel/helper-validator-identifier-7.16.7" 6343 + sources."@babel/helper-validator-option-7.16.7" 6344 + sources."@babel/helper-wrap-function-7.16.8" 6345 + sources."@babel/helpers-7.16.7" 6346 + sources."@babel/highlight-7.16.10" 6347 + sources."@babel/parser-7.16.12" 6348 + sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 6349 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 6350 + sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 6351 + sources."@babel/plugin-proposal-class-properties-7.16.7" 6352 + sources."@babel/plugin-proposal-class-static-block-7.16.7" 6353 + sources."@babel/plugin-proposal-decorators-7.16.7" 6354 + sources."@babel/plugin-proposal-dynamic-import-7.16.7" 6355 + sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 6356 + sources."@babel/plugin-proposal-json-strings-7.16.7" 6357 + sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 6358 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 6359 + sources."@babel/plugin-proposal-numeric-separator-7.16.7" 6360 + sources."@babel/plugin-proposal-object-rest-spread-7.16.7" 6361 + sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 6362 + sources."@babel/plugin-proposal-optional-chaining-7.16.7" 6363 + sources."@babel/plugin-proposal-private-methods-7.16.11" 6364 + sources."@babel/plugin-proposal-private-property-in-object-7.16.7" 6365 + sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 6366 sources."@babel/plugin-syntax-async-generators-7.8.4" 6367 sources."@babel/plugin-syntax-bigint-7.8.3" 6368 sources."@babel/plugin-syntax-class-properties-7.12.13" 6369 sources."@babel/plugin-syntax-class-static-block-7.14.5" 6370 + sources."@babel/plugin-syntax-decorators-7.16.7" 6371 sources."@babel/plugin-syntax-dynamic-import-7.8.3" 6372 sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 6373 sources."@babel/plugin-syntax-import-meta-7.10.4" ··· 6380 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 6381 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 6382 sources."@babel/plugin-syntax-top-level-await-7.14.5" 6383 + sources."@babel/plugin-syntax-typescript-7.16.7" 6384 + sources."@babel/plugin-transform-arrow-functions-7.16.7" 6385 + sources."@babel/plugin-transform-async-to-generator-7.16.8" 6386 + sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 6387 + sources."@babel/plugin-transform-block-scoping-7.16.7" 6388 + sources."@babel/plugin-transform-classes-7.16.7" 6389 + sources."@babel/plugin-transform-computed-properties-7.16.7" 6390 + sources."@babel/plugin-transform-destructuring-7.16.7" 6391 + sources."@babel/plugin-transform-dotall-regex-7.16.7" 6392 + sources."@babel/plugin-transform-duplicate-keys-7.16.7" 6393 + sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 6394 + sources."@babel/plugin-transform-for-of-7.16.7" 6395 + sources."@babel/plugin-transform-function-name-7.16.7" 6396 + sources."@babel/plugin-transform-literals-7.16.7" 6397 + sources."@babel/plugin-transform-member-expression-literals-7.16.7" 6398 + sources."@babel/plugin-transform-modules-amd-7.16.7" 6399 + sources."@babel/plugin-transform-modules-commonjs-7.16.8" 6400 + sources."@babel/plugin-transform-modules-systemjs-7.16.7" 6401 + sources."@babel/plugin-transform-modules-umd-7.16.7" 6402 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 6403 + sources."@babel/plugin-transform-new-target-7.16.7" 6404 + sources."@babel/plugin-transform-object-super-7.16.7" 6405 + sources."@babel/plugin-transform-parameters-7.16.7" 6406 + sources."@babel/plugin-transform-property-literals-7.16.7" 6407 + sources."@babel/plugin-transform-regenerator-7.16.7" 6408 + sources."@babel/plugin-transform-reserved-words-7.16.7" 6409 + sources."@babel/plugin-transform-shorthand-properties-7.16.7" 6410 + sources."@babel/plugin-transform-spread-7.16.7" 6411 + sources."@babel/plugin-transform-sticky-regex-7.16.7" 6412 + sources."@babel/plugin-transform-template-literals-7.16.7" 6413 + sources."@babel/plugin-transform-typeof-symbol-7.16.7" 6414 + sources."@babel/plugin-transform-typescript-7.16.8" 6415 + sources."@babel/plugin-transform-unicode-escapes-7.16.7" 6416 + sources."@babel/plugin-transform-unicode-regex-7.16.7" 6417 + (sources."@babel/preset-env-7.16.11" // { 6418 dependencies = [ 6419 sources."semver-6.3.0" 6420 ]; 6421 }) 6422 sources."@babel/preset-modules-0.1.5" 6423 + sources."@babel/preset-typescript-7.16.7" 6424 + sources."@babel/runtime-7.16.7" 6425 + sources."@babel/template-7.16.7" 6426 + (sources."@babel/traverse-7.16.10" // { 6427 dependencies = [ 6428 sources."debug-4.3.3" 6429 sources."ms-2.1.2" 6430 ]; 6431 }) 6432 + sources."@babel/types-7.16.8" 6433 sources."@bcoe/v8-coverage-0.2.3" 6434 sources."@dabh/diagnostics-2.0.2" 6435 (sources."@eslint/eslintrc-1.0.5" // { ··· 6442 sources."ms-2.1.2" 6443 ]; 6444 }) 6445 + (sources."@humanwhocodes/config-array-0.9.3" // { 6446 dependencies = [ 6447 sources."debug-4.3.3" 6448 sources."ms-2.1.2" ··· 6456 ]; 6457 }) 6458 sources."@istanbuljs/schema-0.1.3" 6459 + (sources."@jest/console-27.4.6" // { 6460 dependencies = [ 6461 sources."ansi-styles-4.3.0" 6462 sources."chalk-4.1.2" ··· 6466 sources."supports-color-7.2.0" 6467 ]; 6468 }) 6469 + (sources."@jest/core-27.4.7" // { 6470 dependencies = [ 6471 sources."ansi-styles-4.3.0" 6472 sources."chalk-4.1.2" ··· 6476 sources."supports-color-7.2.0" 6477 ]; 6478 }) 6479 + sources."@jest/environment-27.4.6" 6480 + sources."@jest/fake-timers-27.4.6" 6481 + sources."@jest/globals-27.4.6" 6482 + (sources."@jest/reporters-27.4.6" // { 6483 dependencies = [ 6484 sources."ansi-styles-4.3.0" 6485 sources."chalk-4.1.2" 6486 sources."color-convert-2.0.1" 6487 sources."color-name-1.1.4" 6488 sources."has-flag-4.0.0" 6489 sources."supports-color-7.2.0" 6490 ]; 6491 }) 6492 sources."@jest/source-map-27.4.0" 6493 + sources."@jest/test-result-27.4.6" 6494 + sources."@jest/test-sequencer-27.4.6" 6495 + (sources."@jest/transform-27.4.6" // { 6496 dependencies = [ 6497 sources."ansi-styles-4.3.0" 6498 sources."chalk-4.1.2" ··· 6518 sources."@sinonjs/commons-1.8.3" 6519 sources."@sinonjs/fake-timers-8.1.0" 6520 sources."@tootallnate/once-1.1.2" 6521 + sources."@types/babel__core-7.1.18" 6522 sources."@types/babel__generator-7.6.4" 6523 sources."@types/babel__template-7.4.1" 6524 sources."@types/babel__traverse-7.14.2" ··· 6530 sources."@types/istanbul-lib-coverage-2.0.4" 6531 sources."@types/istanbul-lib-report-3.0.0" 6532 sources."@types/istanbul-reports-3.0.1" 6533 + sources."@types/jest-27.4.0" 6534 sources."@types/js-yaml-4.0.5" 6535 sources."@types/json-schema-7.0.9" 6536 sources."@types/minimatch-3.0.5" 6537 + sources."@types/node-17.0.13" 6538 sources."@types/object-assign-deep-0.4.0" 6539 + sources."@types/prettier-2.4.3" 6540 sources."@types/rimraf-3.0.2" 6541 sources."@types/stack-utils-2.0.1" 6542 sources."@types/ws-8.2.2" 6543 sources."@types/yargs-16.0.4" 6544 sources."@types/yargs-parser-20.2.1" 6545 + (sources."@typescript-eslint/eslint-plugin-5.10.1" // { 6546 + dependencies = [ 6547 + sources."debug-4.3.3" 6548 + sources."ms-2.1.2" 6549 + ]; 6550 + }) 6551 + (sources."@typescript-eslint/parser-5.10.1" // { 6552 dependencies = [ 6553 sources."debug-4.3.3" 6554 sources."ms-2.1.2" 6555 ]; 6556 }) 6557 + sources."@typescript-eslint/scope-manager-5.10.1" 6558 + (sources."@typescript-eslint/type-utils-5.10.1" // { 6559 dependencies = [ 6560 sources."debug-4.3.3" 6561 sources."ms-2.1.2" 6562 ]; 6563 }) 6564 + sources."@typescript-eslint/types-5.10.1" 6565 + (sources."@typescript-eslint/typescript-estree-5.10.1" // { 6566 dependencies = [ 6567 sources."debug-4.3.3" 6568 sources."ms-2.1.2" 6569 ]; 6570 }) 6571 + sources."@typescript-eslint/utils-5.10.1" 6572 + sources."@typescript-eslint/visitor-keys-5.10.1" 6573 sources."abab-2.0.5" 6574 + sources."acorn-8.7.0" 6575 (sources."acorn-globals-6.0.0" // { 6576 dependencies = [ 6577 sources."acorn-7.4.1" ··· 6585 sources."ms-2.1.2" 6586 ]; 6587 }) 6588 + sources."ajv-8.9.0" 6589 (sources."ansi-escapes-4.3.2" // { 6590 dependencies = [ 6591 sources."type-fest-0.21.3" ··· 6596 sources."anymatch-3.1.2" 6597 sources."argparse-2.0.1" 6598 sources."array-union-2.1.0" 6599 + sources."async-3.2.3" 6600 sources."asynckit-0.4.0" 6601 + (sources."babel-jest-27.4.6" // { 6602 dependencies = [ 6603 sources."ansi-styles-4.3.0" 6604 sources."chalk-4.1.2" ··· 6611 sources."babel-plugin-dynamic-import-node-2.3.3" 6612 sources."babel-plugin-istanbul-6.1.1" 6613 sources."babel-plugin-jest-hoist-27.4.0" 6614 + (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 6615 dependencies = [ 6616 sources."semver-6.3.0" 6617 ]; 6618 }) 6619 + sources."babel-plugin-polyfill-corejs3-0.5.1" 6620 + sources."babel-plugin-polyfill-regenerator-0.3.1" 6621 sources."babel-preset-current-node-syntax-1.0.1" 6622 sources."babel-preset-jest-27.4.0" 6623 sources."balanced-match-1.0.2" ··· 6635 sources."call-bind-1.0.2" 6636 sources."callsites-3.1.0" 6637 sources."camelcase-5.3.1" 6638 + sources."caniuse-lite-1.0.30001304" 6639 sources."chalk-2.4.2" 6640 sources."char-regex-1.0.2" 6641 sources."ci-info-3.3.0" ··· 6643 sources."cliui-7.0.4" 6644 sources."co-4.6.0" 6645 sources."collect-v8-coverage-1.0.1" 6646 sources."color-3.2.1" 6647 sources."color-convert-1.9.3" 6648 sources."color-name-1.1.3" ··· 6659 sources."safe-buffer-5.1.2" 6660 ]; 6661 }) 6662 + sources."core-js-3.20.3" 6663 + (sources."core-js-compat-3.20.3" // { 6664 dependencies = [ 6665 sources."semver-7.0.0" 6666 ]; ··· 6678 sources."decimal.js-10.3.1" 6679 sources."dedent-0.7.0" 6680 sources."deep-is-0.1.4" 6681 + sources."deep-object-diff-1.1.7" 6682 sources."deepmerge-4.2.2" 6683 sources."define-properties-1.1.3" 6684 sources."delayed-stream-1.0.0" ··· 6695 }) 6696 sources."duplexify-4.1.2" 6697 sources."ee-first-1.1.1" 6698 + sources."electron-to-chromium-1.4.57" 6699 sources."emittery-0.8.1" 6700 sources."emoji-regex-8.0.0" 6701 sources."enabled-2.0.0" 6702 sources."encodeurl-1.0.2" 6703 sources."end-of-stream-1.4.4" 6704 sources."escalade-3.1.1" 6705 sources."escape-html-1.0.3" 6706 sources."escape-string-regexp-1.0.5" ··· 6713 sources."type-check-0.3.2" 6714 ]; 6715 }) 6716 + (sources."eslint-8.8.0" // { 6717 dependencies = [ 6718 sources."ajv-6.12.6" 6719 sources."ansi-styles-4.3.0" ··· 6727 sources."glob-parent-6.0.2" 6728 sources."globals-13.12.0" 6729 sources."has-flag-4.0.0" 6730 sources."json-schema-traverse-0.4.1" 6731 sources."ms-2.1.2" 6732 sources."supports-color-7.2.0" 6733 ]; 6734 }) 6735 sources."eslint-config-google-0.14.0" 6736 + sources."eslint-plugin-jest-26.0.0" 6737 sources."eslint-scope-5.1.1" 6738 (sources."eslint-utils-3.0.0" // { 6739 dependencies = [ 6740 sources."eslint-visitor-keys-2.1.0" 6741 ]; 6742 }) 6743 + sources."eslint-visitor-keys-3.2.0" 6744 + sources."espree-9.3.0" 6745 sources."esprima-4.0.1" 6746 (sources."esquery-1.4.0" // { 6747 dependencies = [ ··· 6758 sources."etag-1.8.1" 6759 sources."execa-5.1.1" 6760 sources."exit-0.1.2" 6761 + sources."expect-27.4.6" 6762 sources."fast-deep-equal-3.1.3" 6763 + sources."fast-glob-3.2.11" 6764 sources."fast-json-stable-stringify-2.1.0" 6765 sources."fast-levenshtein-2.0.6" 6766 sources."fastq-1.13.0" ··· 6773 sources."find-0.3.0" 6774 sources."find-up-4.1.0" 6775 sources."flat-cache-3.0.4" 6776 + sources."flatted-3.2.5" 6777 sources."fn.name-1.1.0" 6778 sources."form-data-3.0.1" 6779 sources."fresh-0.5.2" ··· 6790 sources."glob-7.2.0" 6791 sources."glob-parent-5.1.2" 6792 sources."globals-11.12.0" 6793 + sources."globby-11.1.0" 6794 sources."glossy-0.1.7" 6795 + sources."graceful-fs-4.2.9" 6796 sources."has-1.0.3" 6797 sources."has-flag-3.0.0" 6798 sources."has-symbols-1.0.2" ··· 6822 sources."resolve-from-4.0.0" 6823 ]; 6824 }) 6825 + sources."import-local-3.1.0" 6826 sources."imurmurhash-0.1.4" 6827 sources."inflight-1.0.6" 6828 sources."inherits-2.0.4" 6829 sources."is-arrayish-0.3.2" 6830 + sources."is-core-module-2.8.1" 6831 sources."is-extglob-2.1.1" 6832 sources."is-fullwidth-code-point-3.0.0" 6833 sources."is-generator-fn-2.1.0" ··· 6855 sources."ms-2.1.2" 6856 ]; 6857 }) 6858 + sources."istanbul-reports-3.1.3" 6859 + (sources."jest-27.4.7" // { 6860 dependencies = [ 6861 sources."ansi-styles-4.3.0" 6862 sources."chalk-4.1.2" 6863 sources."color-convert-2.0.1" 6864 sources."color-name-1.1.4" 6865 sources."has-flag-4.0.0" 6866 + sources."jest-cli-27.4.7" 6867 sources."supports-color-7.2.0" 6868 ]; 6869 }) 6870 sources."jest-changed-files-27.4.2" 6871 + (sources."jest-circus-27.4.6" // { 6872 dependencies = [ 6873 sources."ansi-styles-4.3.0" 6874 sources."chalk-4.1.2" ··· 6878 sources."supports-color-7.2.0" 6879 ]; 6880 }) 6881 + (sources."jest-config-27.4.7" // { 6882 dependencies = [ 6883 sources."ansi-styles-4.3.0" 6884 sources."chalk-4.1.2" ··· 6888 sources."supports-color-7.2.0" 6889 ]; 6890 }) 6891 + (sources."jest-diff-27.4.6" // { 6892 dependencies = [ 6893 sources."ansi-styles-4.3.0" 6894 sources."chalk-4.1.2" ··· 6899 ]; 6900 }) 6901 sources."jest-docblock-27.4.0" 6902 + (sources."jest-each-27.4.6" // { 6903 dependencies = [ 6904 sources."ansi-styles-4.3.0" 6905 sources."chalk-4.1.2" ··· 6909 sources."supports-color-7.2.0" 6910 ]; 6911 }) 6912 + sources."jest-environment-jsdom-27.4.6" 6913 + sources."jest-environment-node-27.4.6" 6914 sources."jest-get-type-27.4.0" 6915 + sources."jest-haste-map-27.4.6" 6916 + (sources."jest-jasmine2-27.4.6" // { 6917 dependencies = [ 6918 sources."ansi-styles-4.3.0" 6919 sources."chalk-4.1.2" ··· 6923 sources."supports-color-7.2.0" 6924 ]; 6925 }) 6926 + sources."jest-leak-detector-27.4.6" 6927 + (sources."jest-matcher-utils-27.4.6" // { 6928 dependencies = [ 6929 sources."ansi-styles-4.3.0" 6930 sources."chalk-4.1.2" ··· 6934 sources."supports-color-7.2.0" 6935 ]; 6936 }) 6937 + (sources."jest-message-util-27.4.6" // { 6938 dependencies = [ 6939 sources."ansi-styles-4.3.0" 6940 sources."chalk-4.1.2" ··· 6944 sources."supports-color-7.2.0" 6945 ]; 6946 }) 6947 + sources."jest-mock-27.4.6" 6948 sources."jest-pnp-resolver-1.2.2" 6949 sources."jest-regex-util-27.4.0" 6950 + (sources."jest-resolve-27.4.6" // { 6951 dependencies = [ 6952 sources."ansi-styles-4.3.0" 6953 sources."chalk-4.1.2" ··· 6957 sources."supports-color-7.2.0" 6958 ]; 6959 }) 6960 + sources."jest-resolve-dependencies-27.4.6" 6961 + (sources."jest-runner-27.4.6" // { 6962 dependencies = [ 6963 sources."ansi-styles-4.3.0" 6964 sources."chalk-4.1.2" ··· 6968 sources."supports-color-7.2.0" 6969 ]; 6970 }) 6971 + (sources."jest-runtime-27.4.6" // { 6972 dependencies = [ 6973 sources."ansi-styles-4.3.0" 6974 sources."chalk-4.1.2" ··· 6979 ]; 6980 }) 6981 sources."jest-serializer-27.4.0" 6982 + (sources."jest-snapshot-27.4.6" // { 6983 dependencies = [ 6984 sources."ansi-styles-4.3.0" 6985 sources."chalk-4.1.2" ··· 6999 sources."supports-color-7.2.0" 7000 ]; 7001 }) 7002 + (sources."jest-validate-27.4.6" // { 7003 dependencies = [ 7004 sources."ansi-styles-4.3.0" 7005 + sources."camelcase-6.3.0" 7006 sources."chalk-4.1.2" 7007 sources."color-convert-2.0.1" 7008 sources."color-name-1.1.4" ··· 7011 sources."supports-color-7.2.0" 7012 ]; 7013 }) 7014 + (sources."jest-watcher-27.4.6" // { 7015 dependencies = [ 7016 sources."ansi-styles-4.3.0" 7017 sources."chalk-4.1.2" ··· 7021 sources."supports-color-7.2.0" 7022 ]; 7023 }) 7024 + (sources."jest-worker-27.4.6" // { 7025 dependencies = [ 7026 sources."has-flag-4.0.0" 7027 sources."supports-color-8.1.1" 7028 ]; 7029 }) 7030 + sources."js-sdsl-2.1.4" 7031 sources."js-tokens-4.0.0" 7032 sources."js-yaml-4.1.0" 7033 (sources."jsdom-16.7.0" // { ··· 7047 sources."lodash-4.17.21" 7048 sources."lodash.debounce-4.0.8" 7049 sources."lodash.merge-4.6.2" 7050 + (sources."logform-2.3.2" // { 7051 dependencies = [ 7052 sources."ms-2.1.3" 7053 + sources."safe-stable-stringify-1.1.1" 7054 ]; 7055 }) 7056 sources."lru-cache-6.0.0" ··· 7071 sources."minimist-1.2.5" 7072 sources."mkdir-recursive-0.4.0" 7073 sources."moment-2.29.1" 7074 + (sources."mqtt-4.3.4" // { 7075 dependencies = [ 7076 sources."debug-4.3.3" 7077 sources."ms-2.1.2" ··· 7091 sources."node-releases-2.0.1" 7092 sources."normalize-path-3.0.0" 7093 sources."npm-run-path-4.0.1" 7094 + (sources."number-allocator-1.0.9" // { 7095 dependencies = [ 7096 sources."debug-4.3.3" 7097 sources."ms-2.1.2" ··· 7118 sources."path-parse-1.0.7" 7119 sources."path-type-4.0.0" 7120 sources."picocolors-1.0.0" 7121 + sources."picomatch-2.3.1" 7122 + sources."pirates-4.0.5" 7123 sources."pkg-dir-4.2.0" 7124 sources."prelude-ls-1.2.1" 7125 + (sources."pretty-format-27.4.6" // { 7126 dependencies = [ 7127 sources."ansi-styles-5.2.0" 7128 ]; 7129 }) 7130 sources."process-nextick-args-2.0.1" 7131 sources."prompts-2.4.2" 7132 sources."psl-1.8.0" 7133 sources."pump-3.0.0" ··· 7151 sources."reinterval-1.1.0" 7152 sources."require-directory-2.1.1" 7153 sources."require-from-string-2.0.2" 7154 + sources."resolve-1.22.0" 7155 sources."resolve-cwd-3.0.0" 7156 sources."resolve-from-5.0.0" 7157 sources."resolve.exports-1.1.0" ··· 7160 sources."rimraf-3.0.2" 7161 sources."run-parallel-1.2.0" 7162 sources."safe-buffer-5.2.1" 7163 + sources."safe-stable-stringify-2.3.1" 7164 sources."safer-buffer-2.1.2" 7165 sources."saxes-5.0.1" 7166 sources."semver-7.3.5" ··· 7203 sources."supports-color-7.2.0" 7204 ]; 7205 }) 7206 + sources."supports-preserve-symlinks-flag-1.0.0" 7207 sources."symbol-tree-3.2.4" 7208 sources."terminal-link-2.1.1" 7209 sources."test-exclude-6.0.0" ··· 7226 sources."type-fest-0.20.2" 7227 sources."typedarray-0.0.6" 7228 sources."typedarray-to-buffer-3.1.5" 7229 + sources."typescript-4.5.5" 7230 sources."unicode-canonical-property-names-ecmascript-2.0.0" 7231 sources."unicode-match-property-ecmascript-2.0.0" 7232 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 7237 sources."uri-js-4.4.1" 7238 sources."util-deprecate-1.0.2" 7239 sources."v8-compile-cache-2.3.0" 7240 + (sources."v8-to-istanbul-8.1.1" // { 7241 dependencies = [ 7242 sources."source-map-0.7.3" 7243 ]; ··· 7245 sources."w3c-hr-time-1.0.2" 7246 sources."w3c-xmlserializer-2.0.0" 7247 sources."walker-1.0.8" 7248 sources."webidl-conversions-6.1.0" 7249 sources."whatwg-encoding-1.0.5" 7250 sources."whatwg-mimetype-2.3.0" 7251 sources."whatwg-url-8.7.0" 7252 sources."which-2.0.2" 7253 + sources."winston-3.5.0" 7254 sources."winston-syslog-2.4.4" 7255 + sources."winston-transport-4.4.2" 7256 sources."word-wrap-1.2.3" 7257 (sources."wrap-ansi-7.0.0" // { 7258 dependencies = [ ··· 7263 }) 7264 sources."wrappy-1.0.2" 7265 sources."write-file-atomic-3.0.3" 7266 + sources."ws-8.4.2" 7267 sources."xml-name-validator-3.0.0" 7268 sources."xmlchars-2.2.0" 7269 sources."xtend-4.0.2" ··· 7271 sources."yallist-4.0.0" 7272 sources."yargs-16.2.0" 7273 sources."yargs-parser-20.2.9" 7274 + (sources."zigbee-herdsman-0.14.10" // { 7275 dependencies = [ 7276 + sources."@babel/cli-7.16.8" 7277 + sources."@babel/code-frame-7.16.7" 7278 + sources."@babel/compat-data-7.16.8" 7279 + (sources."@babel/core-7.16.12" // { 7280 dependencies = [ 7281 sources."semver-6.3.0" 7282 ]; 7283 }) 7284 + sources."@babel/generator-7.16.8" 7285 + sources."@babel/helper-annotate-as-pure-7.16.7" 7286 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 7287 + (sources."@babel/helper-compilation-targets-7.16.7" // { 7288 dependencies = [ 7289 sources."semver-6.3.0" 7290 ]; 7291 }) 7292 + sources."@babel/helper-create-class-features-plugin-7.16.10" 7293 + sources."@babel/helper-create-regexp-features-plugin-7.16.7" 7294 + (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 7295 dependencies = [ 7296 sources."semver-6.3.0" 7297 ]; 7298 }) 7299 + sources."@babel/helper-environment-visitor-7.16.7" 7300 + sources."@babel/helper-explode-assignable-expression-7.16.7" 7301 + sources."@babel/helper-function-name-7.16.7" 7302 + sources."@babel/helper-get-function-arity-7.16.7" 7303 + sources."@babel/helper-hoist-variables-7.16.7" 7304 + sources."@babel/helper-member-expression-to-functions-7.16.7" 7305 + sources."@babel/helper-module-imports-7.16.7" 7306 + sources."@babel/helper-module-transforms-7.16.7" 7307 + sources."@babel/helper-optimise-call-expression-7.16.7" 7308 + sources."@babel/helper-plugin-utils-7.16.7" 7309 + sources."@babel/helper-remap-async-to-generator-7.16.8" 7310 + sources."@babel/helper-replace-supers-7.16.7" 7311 + sources."@babel/helper-simple-access-7.16.7" 7312 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 7313 + sources."@babel/helper-split-export-declaration-7.16.7" 7314 + sources."@babel/helper-validator-identifier-7.16.7" 7315 + sources."@babel/helper-validator-option-7.16.7" 7316 + sources."@babel/helper-wrap-function-7.16.8" 7317 + sources."@babel/helpers-7.16.7" 7318 + sources."@babel/highlight-7.16.10" 7319 + sources."@babel/parser-7.16.12" 7320 + sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 7321 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 7322 + sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 7323 + sources."@babel/plugin-proposal-class-properties-7.16.7" 7324 + sources."@babel/plugin-proposal-class-static-block-7.16.7" 7325 + sources."@babel/plugin-proposal-dynamic-import-7.16.7" 7326 + sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 7327 + sources."@babel/plugin-proposal-json-strings-7.16.7" 7328 + sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 7329 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 7330 + sources."@babel/plugin-proposal-numeric-separator-7.16.7" 7331 + sources."@babel/plugin-proposal-object-rest-spread-7.16.7" 7332 + sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 7333 + sources."@babel/plugin-proposal-optional-chaining-7.16.7" 7334 + sources."@babel/plugin-proposal-private-methods-7.16.11" 7335 + sources."@babel/plugin-proposal-private-property-in-object-7.16.7" 7336 + sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 7337 sources."@babel/plugin-syntax-async-generators-7.8.4" 7338 sources."@babel/plugin-syntax-bigint-7.8.3" 7339 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 7350 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 7351 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 7352 sources."@babel/plugin-syntax-top-level-await-7.14.5" 7353 + sources."@babel/plugin-syntax-typescript-7.16.7" 7354 + sources."@babel/plugin-transform-arrow-functions-7.16.7" 7355 + sources."@babel/plugin-transform-async-to-generator-7.16.8" 7356 + sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 7357 + sources."@babel/plugin-transform-block-scoping-7.16.7" 7358 + sources."@babel/plugin-transform-classes-7.16.7" 7359 + sources."@babel/plugin-transform-computed-properties-7.16.7" 7360 + sources."@babel/plugin-transform-destructuring-7.16.7" 7361 + sources."@babel/plugin-transform-dotall-regex-7.16.7" 7362 + sources."@babel/plugin-transform-duplicate-keys-7.16.7" 7363 + sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 7364 + sources."@babel/plugin-transform-for-of-7.16.7" 7365 + sources."@babel/plugin-transform-function-name-7.16.7" 7366 + sources."@babel/plugin-transform-literals-7.16.7" 7367 + sources."@babel/plugin-transform-member-expression-literals-7.16.7" 7368 + sources."@babel/plugin-transform-modules-amd-7.16.7" 7369 + sources."@babel/plugin-transform-modules-commonjs-7.16.8" 7370 + sources."@babel/plugin-transform-modules-systemjs-7.16.7" 7371 + sources."@babel/plugin-transform-modules-umd-7.16.7" 7372 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 7373 + sources."@babel/plugin-transform-new-target-7.16.7" 7374 + sources."@babel/plugin-transform-object-super-7.16.7" 7375 + sources."@babel/plugin-transform-parameters-7.16.7" 7376 + sources."@babel/plugin-transform-property-literals-7.16.7" 7377 + sources."@babel/plugin-transform-regenerator-7.16.7" 7378 + sources."@babel/plugin-transform-reserved-words-7.16.7" 7379 + sources."@babel/plugin-transform-shorthand-properties-7.16.7" 7380 + sources."@babel/plugin-transform-spread-7.16.7" 7381 + sources."@babel/plugin-transform-sticky-regex-7.16.7" 7382 + sources."@babel/plugin-transform-template-literals-7.16.7" 7383 + sources."@babel/plugin-transform-typeof-symbol-7.16.7" 7384 + sources."@babel/plugin-transform-typescript-7.16.8" 7385 + sources."@babel/plugin-transform-unicode-escapes-7.16.7" 7386 + sources."@babel/plugin-transform-unicode-regex-7.16.7" 7387 + (sources."@babel/preset-env-7.16.11" // { 7388 dependencies = [ 7389 sources."semver-6.3.0" 7390 ]; 7391 }) 7392 sources."@babel/preset-modules-0.1.5" 7393 + sources."@babel/preset-typescript-7.16.7" 7394 + sources."@babel/runtime-7.16.7" 7395 + sources."@babel/template-7.16.7" 7396 + sources."@babel/traverse-7.16.10" 7397 + sources."@babel/types-7.16.8" 7398 sources."@bcoe/v8-coverage-0.2.3" 7399 (sources."@eslint/eslintrc-1.0.5" // { 7400 dependencies = [ ··· 7405 sources."strip-json-comments-3.1.1" 7406 ]; 7407 }) 7408 + sources."@humanwhocodes/config-array-0.9.3" 7409 sources."@humanwhocodes/object-schema-1.2.1" 7410 sources."@istanbuljs/load-nyc-config-1.1.0" 7411 sources."@istanbuljs/schema-0.1.3" 7412 + (sources."@jest/console-27.4.6" // { 7413 dependencies = [ 7414 sources."ansi-styles-4.3.0" 7415 sources."chalk-4.1.2" ··· 7420 sources."supports-color-7.2.0" 7421 ]; 7422 }) 7423 + (sources."@jest/core-27.4.7" // { 7424 dependencies = [ 7425 sources."ansi-regex-5.0.1" 7426 sources."ansi-styles-4.3.0" ··· 7433 sources."supports-color-7.2.0" 7434 ]; 7435 }) 7436 + sources."@jest/environment-27.4.6" 7437 + sources."@jest/fake-timers-27.4.6" 7438 + sources."@jest/globals-27.4.6" 7439 + (sources."@jest/reporters-27.4.6" // { 7440 dependencies = [ 7441 sources."ansi-styles-4.3.0" 7442 sources."chalk-4.1.2" 7443 sources."color-convert-2.0.1" 7444 sources."color-name-1.1.4" 7445 sources."has-flag-4.0.0" 7446 sources."slash-3.0.0" 7447 sources."source-map-0.6.1" 7448 sources."supports-color-7.2.0" ··· 7453 sources."source-map-0.6.1" 7454 ]; 7455 }) 7456 + sources."@jest/test-result-27.4.6" 7457 + sources."@jest/test-sequencer-27.4.6" 7458 + (sources."@jest/transform-27.4.6" // { 7459 dependencies = [ 7460 sources."ansi-styles-4.3.0" 7461 sources."chalk-4.1.2" ··· 7495 sources."@sinonjs/commons-1.8.3" 7496 sources."@sinonjs/fake-timers-8.1.0" 7497 sources."@tootallnate/once-1.1.2" 7498 + sources."@types/babel__core-7.1.18" 7499 sources."@types/babel__generator-7.6.4" 7500 sources."@types/babel__template-7.4.1" 7501 sources."@types/babel__traverse-7.14.2" ··· 7505 sources."@types/istanbul-lib-coverage-2.0.4" 7506 sources."@types/istanbul-lib-report-3.0.0" 7507 sources."@types/istanbul-reports-3.0.1" 7508 + sources."@types/jest-27.4.0" 7509 sources."@types/json-schema-7.0.9" 7510 sources."@types/ms-0.7.31" 7511 sources."@types/mz-2.7.4" 7512 sources."@types/nedb-1.8.12" 7513 + sources."@types/node-17.0.13" 7514 + sources."@types/prettier-2.4.3" 7515 sources."@types/serialport-8.0.2" 7516 sources."@types/stack-utils-2.0.1" 7517 sources."@types/yargs-16.0.4" 7518 sources."@types/yargs-parser-20.2.1" 7519 + sources."@typescript-eslint/eslint-plugin-5.10.1" 7520 + sources."@typescript-eslint/parser-5.10.1" 7521 + sources."@typescript-eslint/scope-manager-5.10.1" 7522 + sources."@typescript-eslint/type-utils-5.10.1" 7523 + sources."@typescript-eslint/types-5.10.1" 7524 + sources."@typescript-eslint/typescript-estree-5.10.1" 7525 + sources."@typescript-eslint/utils-5.10.1" 7526 + sources."@typescript-eslint/visitor-keys-5.10.1" 7527 sources."abab-2.0.5" 7528 + sources."acorn-8.7.0" 7529 (sources."acorn-globals-6.0.0" // { 7530 dependencies = [ 7531 sources."acorn-7.4.1" ··· 7535 sources."acorn-walk-7.2.0" 7536 sources."agent-base-6.0.2" 7537 sources."ajv-6.12.6" 7538 (sources."ansi-escapes-4.3.2" // { 7539 dependencies = [ 7540 sources."type-fest-0.21.3" ··· 7549 sources."argparse-1.0.10" 7550 sources."array-union-2.1.0" 7551 sources."asynckit-0.4.0" 7552 + (sources."babel-jest-27.4.6" // { 7553 dependencies = [ 7554 sources."ansi-styles-4.3.0" 7555 sources."chalk-4.1.2" ··· 7563 sources."babel-plugin-dynamic-import-node-2.3.3" 7564 sources."babel-plugin-istanbul-6.1.1" 7565 sources."babel-plugin-jest-hoist-27.4.0" 7566 + (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 7567 dependencies = [ 7568 sources."semver-6.3.0" 7569 ]; 7570 }) 7571 + sources."babel-plugin-polyfill-corejs3-0.5.1" 7572 + sources."babel-plugin-polyfill-regenerator-0.3.1" 7573 sources."babel-preset-current-node-syntax-1.0.1" 7574 sources."babel-preset-jest-27.4.0" 7575 sources."balanced-match-1.0.2" ··· 7591 sources."call-bind-1.0.2" 7592 sources."callsites-3.1.0" 7593 sources."camelcase-5.3.1" 7594 + sources."caniuse-lite-1.0.30001304" 7595 sources."chalk-2.4.2" 7596 sources."char-regex-1.0.2" 7597 + sources."chokidar-3.5.3" 7598 sources."chownr-1.1.4" 7599 sources."ci-info-3.3.0" 7600 sources."cjs-module-lexer-1.2.2" ··· 7616 sources."concat-map-0.0.1" 7617 sources."console-control-strings-1.1.0" 7618 sources."convert-source-map-1.8.0" 7619 + (sources."core-js-compat-3.20.3" // { 7620 dependencies = [ 7621 sources."semver-7.0.0" 7622 ]; ··· 7641 sources."define-properties-1.1.3" 7642 sources."delayed-stream-1.0.0" 7643 sources."delegates-1.0.0" 7644 + sources."detect-libc-2.0.0" 7645 sources."detect-newline-3.1.0" 7646 sources."diff-sequences-27.4.0" 7647 sources."dir-glob-3.0.1" ··· 7651 sources."webidl-conversions-5.0.0" 7652 ]; 7653 }) 7654 + sources."electron-to-chromium-1.4.57" 7655 sources."emittery-0.8.1" 7656 sources."emoji-regex-8.0.0" 7657 sources."end-of-stream-1.4.4" 7658 sources."escalade-3.1.1" 7659 sources."escape-string-regexp-1.0.5" 7660 (sources."escodegen-2.0.0" // { ··· 7667 sources."type-check-0.3.2" 7668 ]; 7669 }) 7670 + (sources."eslint-8.8.0" // { 7671 dependencies = [ 7672 sources."ansi-regex-5.0.1" 7673 sources."ansi-styles-4.3.0" ··· 7681 sources."glob-parent-6.0.2" 7682 sources."globals-13.12.0" 7683 sources."has-flag-4.0.0" 7684 sources."js-yaml-4.1.0" 7685 sources."strip-ansi-6.0.1" 7686 sources."strip-json-comments-3.1.1" ··· 7693 sources."eslint-visitor-keys-2.1.0" 7694 ]; 7695 }) 7696 + sources."eslint-visitor-keys-3.2.0" 7697 + sources."espree-9.3.0" 7698 sources."esprima-4.0.1" 7699 (sources."esquery-1.4.0" // { 7700 dependencies = [ ··· 7711 sources."execa-5.1.1" 7712 sources."exit-0.1.2" 7713 sources."expand-template-2.0.3" 7714 + sources."expect-27.4.6" 7715 sources."fast-deep-equal-3.1.3" 7716 + sources."fast-glob-3.2.11" 7717 sources."fast-json-stable-stringify-2.1.0" 7718 sources."fast-levenshtein-2.0.6" 7719 sources."fastq-1.13.0" ··· 7723 sources."fill-range-7.0.1" 7724 sources."find-up-4.1.0" 7725 sources."flat-cache-3.0.4" 7726 + sources."flatted-3.2.5" 7727 sources."form-data-3.0.1" 7728 sources."fs-constants-1.0.0" 7729 sources."fs-readdir-recursive-1.1.0" ··· 7741 sources."glob-7.2.0" 7742 sources."glob-parent-5.1.2" 7743 sources."globals-11.12.0" 7744 + (sources."globby-11.1.0" // { 7745 dependencies = [ 7746 sources."slash-3.0.0" 7747 ]; 7748 }) 7749 + sources."graceful-fs-4.2.9" 7750 (sources."handlebars-4.7.7" // { 7751 dependencies = [ 7752 sources."source-map-0.6.1" ··· 7769 sources."resolve-from-4.0.0" 7770 ]; 7771 }) 7772 + sources."import-local-3.1.0" 7773 sources."imurmurhash-0.1.4" 7774 sources."inflight-1.0.6" 7775 sources."inherits-2.0.4" 7776 sources."ini-1.3.8" 7777 sources."is-binary-path-2.1.0" 7778 + sources."is-core-module-2.8.1" 7779 sources."is-extglob-2.1.1" 7780 sources."is-fullwidth-code-point-1.0.0" 7781 sources."is-generator-fn-2.1.0" ··· 7805 sources."source-map-0.6.1" 7806 ]; 7807 }) 7808 + sources."istanbul-reports-3.1.3" 7809 + (sources."jest-27.4.7" // { 7810 dependencies = [ 7811 sources."ansi-styles-4.3.0" 7812 sources."chalk-4.1.2" 7813 sources."color-convert-2.0.1" 7814 sources."color-name-1.1.4" 7815 sources."has-flag-4.0.0" 7816 + sources."jest-cli-27.4.7" 7817 sources."supports-color-7.2.0" 7818 ]; 7819 }) 7820 sources."jest-changed-files-27.4.2" 7821 + (sources."jest-circus-27.4.6" // { 7822 dependencies = [ 7823 sources."ansi-styles-4.3.0" 7824 sources."chalk-4.1.2" ··· 7829 sources."supports-color-7.2.0" 7830 ]; 7831 }) 7832 + (sources."jest-config-27.4.7" // { 7833 dependencies = [ 7834 sources."ansi-styles-4.3.0" 7835 sources."chalk-4.1.2" ··· 7840 sources."supports-color-7.2.0" 7841 ]; 7842 }) 7843 + (sources."jest-diff-27.4.6" // { 7844 dependencies = [ 7845 sources."ansi-styles-4.3.0" 7846 sources."chalk-4.1.2" ··· 7851 ]; 7852 }) 7853 sources."jest-docblock-27.4.0" 7854 + (sources."jest-each-27.4.6" // { 7855 dependencies = [ 7856 sources."ansi-styles-4.3.0" 7857 sources."chalk-4.1.2" ··· 7861 sources."supports-color-7.2.0" 7862 ]; 7863 }) 7864 + sources."jest-environment-jsdom-27.4.6" 7865 + sources."jest-environment-node-27.4.6" 7866 sources."jest-get-type-27.4.0" 7867 + sources."jest-haste-map-27.4.6" 7868 + (sources."jest-jasmine2-27.4.6" // { 7869 dependencies = [ 7870 sources."ansi-styles-4.3.0" 7871 sources."chalk-4.1.2" ··· 7875 sources."supports-color-7.2.0" 7876 ]; 7877 }) 7878 + sources."jest-leak-detector-27.4.6" 7879 + (sources."jest-matcher-utils-27.4.6" // { 7880 dependencies = [ 7881 sources."ansi-styles-4.3.0" 7882 sources."chalk-4.1.2" ··· 7886 sources."supports-color-7.2.0" 7887 ]; 7888 }) 7889 + (sources."jest-message-util-27.4.6" // { 7890 dependencies = [ 7891 sources."ansi-styles-4.3.0" 7892 sources."chalk-4.1.2" ··· 7897 sources."supports-color-7.2.0" 7898 ]; 7899 }) 7900 + sources."jest-mock-27.4.6" 7901 sources."jest-pnp-resolver-1.2.2" 7902 sources."jest-regex-util-27.4.0" 7903 + (sources."jest-resolve-27.4.6" // { 7904 dependencies = [ 7905 sources."ansi-styles-4.3.0" 7906 sources."chalk-4.1.2" ··· 7911 sources."supports-color-7.2.0" 7912 ]; 7913 }) 7914 + sources."jest-resolve-dependencies-27.4.6" 7915 + (sources."jest-runner-27.4.6" // { 7916 dependencies = [ 7917 sources."ansi-styles-4.3.0" 7918 sources."chalk-4.1.2" ··· 7922 sources."supports-color-7.2.0" 7923 ]; 7924 }) 7925 + (sources."jest-runtime-27.4.6" // { 7926 dependencies = [ 7927 sources."ansi-styles-4.3.0" 7928 sources."chalk-4.1.2" ··· 7934 ]; 7935 }) 7936 sources."jest-serializer-27.4.0" 7937 + (sources."jest-snapshot-27.4.6" // { 7938 dependencies = [ 7939 sources."ansi-styles-4.3.0" 7940 sources."chalk-4.1.2" ··· 7954 sources."supports-color-7.2.0" 7955 ]; 7956 }) 7957 + (sources."jest-validate-27.4.6" // { 7958 dependencies = [ 7959 sources."ansi-styles-4.3.0" 7960 + sources."camelcase-6.3.0" 7961 sources."chalk-4.1.2" 7962 sources."color-convert-2.0.1" 7963 sources."color-name-1.1.4" ··· 7965 sources."supports-color-7.2.0" 7966 ]; 7967 }) 7968 + (sources."jest-watcher-27.4.6" // { 7969 dependencies = [ 7970 sources."ansi-styles-4.3.0" 7971 sources."chalk-4.1.2" ··· 7975 sources."supports-color-7.2.0" 7976 ]; 7977 }) 7978 + (sources."jest-worker-27.4.6" // { 7979 dependencies = [ 7980 sources."has-flag-4.0.0" 7981 sources."supports-color-8.1.1" ··· 8004 ]; 8005 }) 8006 sources."makeerror-1.0.12" 8007 + sources."marked-4.0.12" 8008 sources."merge-stream-2.0.0" 8009 sources."merge2-1.4.1" 8010 sources."micromatch-4.0.4" ··· 8047 sources."path-parse-1.0.7" 8048 sources."path-type-4.0.0" 8049 sources."picocolors-1.0.0" 8050 + sources."picomatch-2.3.1" 8051 sources."pify-4.0.1" 8052 + sources."pirates-4.0.5" 8053 sources."pkg-dir-4.2.0" 8054 + sources."prebuild-install-7.0.1" 8055 sources."prelude-ls-1.2.1" 8056 + (sources."pretty-format-27.4.6" // { 8057 dependencies = [ 8058 sources."ansi-regex-5.0.1" 8059 sources."ansi-styles-5.2.0" 8060 ]; 8061 }) 8062 sources."process-nextick-args-2.0.1" 8063 sources."prompts-2.4.2" 8064 sources."psl-1.8.0" 8065 sources."pump-3.0.0" ··· 8082 ]; 8083 }) 8084 sources."require-directory-2.1.1" 8085 + sources."resolve-1.22.0" 8086 sources."resolve-cwd-3.0.0" 8087 sources."resolve-from-5.0.0" 8088 sources."resolve.exports-1.1.0" ··· 8097 sources."set-blocking-2.0.0" 8098 sources."shebang-command-2.0.0" 8099 sources."shebang-regex-3.0.0" 8100 + sources."shiki-0.10.0" 8101 sources."signal-exit-3.0.6" 8102 sources."simple-concat-1.0.1" 8103 + sources."simple-get-4.0.1" 8104 sources."sisteransi-1.0.5" 8105 sources."slash-2.0.0" 8106 sources."slip-1.0.2" ··· 8135 sources."supports-color-7.2.0" 8136 ]; 8137 }) 8138 + sources."supports-preserve-symlinks-flag-1.0.0" 8139 sources."symbol-tree-3.2.4" 8140 sources."tar-fs-2.1.1" 8141 (sources."tar-stream-2.2.0" // { ··· 8161 sources."type-detect-4.0.8" 8162 sources."type-fest-0.20.2" 8163 sources."typedarray-to-buffer-3.1.5" 8164 + sources."typedoc-0.22.11" 8165 + sources."typedoc-plugin-markdown-3.11.12" 8166 sources."typedoc-plugin-no-inherit-1.3.1" 8167 sources."typedoc-plugin-sourcefile-url-1.0.6" 8168 + sources."typescript-4.5.5" 8169 + sources."uglify-js-3.15.0" 8170 sources."unicode-canonical-property-names-ecmascript-2.0.0" 8171 sources."unicode-match-property-ecmascript-2.0.0" 8172 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 8175 sources."uri-js-4.4.1" 8176 sources."util-deprecate-1.0.2" 8177 sources."v8-compile-cache-2.3.0" 8178 + (sources."v8-to-istanbul-8.1.1" // { 8179 dependencies = [ 8180 sources."source-map-0.7.3" 8181 ]; ··· 8222 sources."yargs-parser-20.2.9" 8223 ]; 8224 }) 8225 + (sources."zigbee-herdsman-converters-14.0.406" // { 8226 dependencies = [ 8227 sources."@babel/code-frame-7.16.7" 8228 + sources."@babel/compat-data-7.16.8" 8229 + (sources."@babel/core-7.16.12" // { 8230 dependencies = [ 8231 sources."semver-6.3.0" 8232 sources."source-map-0.5.7" 8233 ]; 8234 }) 8235 + (sources."@babel/generator-7.16.8" // { 8236 dependencies = [ 8237 sources."source-map-0.5.7" 8238 ]; ··· 8254 sources."@babel/helper-validator-identifier-7.16.7" 8255 sources."@babel/helper-validator-option-7.16.7" 8256 sources."@babel/helpers-7.16.7" 8257 + (sources."@babel/highlight-7.16.10" // { 8258 dependencies = [ 8259 sources."ansi-styles-3.2.1" 8260 sources."chalk-2.4.2" ··· 8265 sources."supports-color-5.5.0" 8266 ]; 8267 }) 8268 + sources."@babel/parser-7.16.12" 8269 sources."@babel/plugin-syntax-async-generators-7.8.4" 8270 sources."@babel/plugin-syntax-bigint-7.8.3" 8271 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 8280 sources."@babel/plugin-syntax-top-level-await-7.14.5" 8281 sources."@babel/plugin-syntax-typescript-7.16.7" 8282 sources."@babel/template-7.16.7" 8283 + (sources."@babel/traverse-7.16.10" // { 8284 dependencies = [ 8285 sources."globals-11.12.0" 8286 ]; 8287 }) 8288 + sources."@babel/types-7.16.8" 8289 sources."@bcoe/v8-coverage-0.2.3" 8290 + (sources."@eslint/eslintrc-1.0.5" // { 8291 + dependencies = [ 8292 + sources."ignore-4.0.6" 8293 + ]; 8294 + }) 8295 + sources."@humanwhocodes/config-array-0.9.3" 8296 sources."@humanwhocodes/object-schema-1.2.1" 8297 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 8298 dependencies = [ ··· 8302 ]; 8303 }) 8304 sources."@istanbuljs/schema-0.1.3" 8305 + sources."@jest/console-27.4.6" 8306 + sources."@jest/core-27.4.7" 8307 + sources."@jest/environment-27.4.6" 8308 + sources."@jest/fake-timers-27.4.6" 8309 + sources."@jest/globals-27.4.6" 8310 + sources."@jest/reporters-27.4.6" 8311 sources."@jest/source-map-27.4.0" 8312 + sources."@jest/test-result-27.4.6" 8313 + sources."@jest/test-sequencer-27.4.6" 8314 + sources."@jest/transform-27.4.6" 8315 sources."@jest/types-27.4.2" 8316 sources."@nodelib/fs.scandir-2.1.5" 8317 sources."@nodelib/fs.stat-2.0.5" ··· 8328 sources."@types/istanbul-lib-report-3.0.0" 8329 sources."@types/istanbul-reports-3.0.1" 8330 sources."@types/json-schema-7.0.9" 8331 + sources."@types/node-17.0.14" 8332 + sources."@types/prettier-2.4.3" 8333 sources."@types/stack-utils-2.0.1" 8334 sources."@types/yargs-16.0.4" 8335 sources."@types/yargs-parser-20.2.1" 8336 + sources."@typescript-eslint/scope-manager-5.10.2" 8337 + sources."@typescript-eslint/types-5.10.2" 8338 + sources."@typescript-eslint/typescript-estree-5.10.2" 8339 + (sources."@typescript-eslint/utils-5.10.2" // { 8340 dependencies = [ 8341 sources."eslint-scope-5.1.1" 8342 sources."estraverse-4.3.0" 8343 ]; 8344 }) 8345 + sources."@typescript-eslint/visitor-keys-5.10.2" 8346 sources."abab-2.0.5" 8347 sources."acorn-8.7.0" 8348 (sources."acorn-globals-6.0.0" // { ··· 8354 sources."acorn-walk-7.2.0" 8355 sources."agent-base-6.0.2" 8356 sources."ajv-6.12.6" 8357 (sources."ansi-escapes-4.3.2" // { 8358 dependencies = [ 8359 sources."type-fest-0.21.3" ··· 8365 sources."argparse-2.0.1" 8366 sources."array-union-2.1.0" 8367 sources."asynckit-0.4.0" 8368 + sources."axios-0.25.0" 8369 + sources."babel-jest-27.4.6" 8370 + sources."babel-plugin-istanbul-6.1.1" 8371 sources."babel-plugin-jest-hoist-27.4.0" 8372 sources."babel-preset-current-node-syntax-1.0.1" 8373 sources."babel-preset-jest-27.4.0" ··· 8384 sources."buffer-from-1.1.2" 8385 sources."callsites-3.1.0" 8386 sources."camelcase-5.3.1" 8387 + sources."caniuse-lite-1.0.30001304" 8388 sources."chalk-4.1.2" 8389 sources."char-regex-1.0.2" 8390 sources."ci-info-3.3.0" ··· 8424 sources."webidl-conversions-5.0.0" 8425 ]; 8426 }) 8427 + sources."electron-to-chromium-1.4.59" 8428 sources."emittery-0.8.1" 8429 sources."emoji-regex-8.0.0" 8430 sources."end-of-stream-1.4.4" 8431 sources."escalade-3.1.1" 8432 sources."escape-string-regexp-4.0.0" 8433 (sources."escodegen-2.0.0" // { ··· 8438 sources."type-check-0.3.2" 8439 ]; 8440 }) 8441 + sources."eslint-8.8.0" 8442 sources."eslint-config-google-0.14.0" 8443 + sources."eslint-plugin-jest-26.0.0" 8444 sources."eslint-scope-7.1.0" 8445 (sources."eslint-utils-3.0.0" // { 8446 dependencies = [ 8447 sources."eslint-visitor-keys-2.1.0" 8448 ]; 8449 }) 8450 + sources."eslint-visitor-keys-3.2.0" 8451 sources."espree-9.3.0" 8452 sources."esprima-4.0.1" 8453 sources."esquery-1.4.0" ··· 8456 sources."esutils-2.0.3" 8457 sources."execa-5.1.1" 8458 sources."exit-0.1.2" 8459 + sources."expect-27.4.6" 8460 sources."fast-deep-equal-3.1.3" 8461 + (sources."fast-glob-3.2.11" // { 8462 dependencies = [ 8463 sources."glob-parent-5.1.2" 8464 ]; ··· 8471 sources."fill-range-7.0.1" 8472 sources."find-up-4.1.0" 8473 sources."flat-cache-3.0.4" 8474 + sources."flatted-3.2.5" 8475 + sources."follow-redirects-1.14.7" 8476 sources."form-data-3.0.1" 8477 sources."fs-constants-1.0.0" 8478 sources."fs.realpath-1.0.0" ··· 8486 sources."glob-7.2.0" 8487 sources."glob-parent-6.0.2" 8488 sources."globals-13.12.0" 8489 + sources."globby-11.1.0" 8490 + sources."graceful-fs-4.2.9" 8491 sources."has-1.0.3" 8492 sources."has-flag-4.0.0" 8493 sources."html-encoding-sniffer-2.0.1" ··· 8497 sources."human-signals-2.1.0" 8498 sources."iconv-lite-0.4.24" 8499 sources."ieee754-1.2.1" 8500 + sources."ignore-5.2.0" 8501 sources."import-fresh-3.3.0" 8502 + sources."import-local-3.1.0" 8503 sources."imurmurhash-0.1.4" 8504 sources."inflight-1.0.6" 8505 sources."inherits-2.0.4" 8506 + sources."is-core-module-2.8.1" 8507 sources."is-extglob-2.1.1" 8508 sources."is-fullwidth-code-point-3.0.0" 8509 sources."is-generator-fn-2.1.0" ··· 8514 sources."is-typedarray-1.0.0" 8515 sources."isexe-2.0.0" 8516 sources."istanbul-lib-coverage-3.2.0" 8517 + (sources."istanbul-lib-instrument-5.1.0" // { 8518 dependencies = [ 8519 sources."semver-6.3.0" 8520 ]; ··· 8522 sources."istanbul-lib-report-3.0.0" 8523 sources."istanbul-lib-source-maps-4.0.1" 8524 sources."istanbul-reports-3.1.3" 8525 + (sources."jest-27.4.7" // { 8526 dependencies = [ 8527 + sources."jest-cli-27.4.7" 8528 ]; 8529 }) 8530 sources."jest-changed-files-27.4.2" 8531 + sources."jest-circus-27.4.6" 8532 + sources."jest-config-27.4.7" 8533 + sources."jest-diff-27.4.6" 8534 sources."jest-docblock-27.4.0" 8535 + sources."jest-each-27.4.6" 8536 + sources."jest-environment-jsdom-27.4.6" 8537 + sources."jest-environment-node-27.4.6" 8538 sources."jest-get-type-27.4.0" 8539 + sources."jest-haste-map-27.4.6" 8540 + sources."jest-jasmine2-27.4.6" 8541 + sources."jest-leak-detector-27.4.6" 8542 + sources."jest-matcher-utils-27.4.6" 8543 + sources."jest-message-util-27.4.6" 8544 + sources."jest-mock-27.4.6" 8545 sources."jest-pnp-resolver-1.2.2" 8546 sources."jest-regex-util-27.4.0" 8547 + sources."jest-resolve-27.4.6" 8548 + sources."jest-resolve-dependencies-27.4.6" 8549 + sources."jest-runner-27.4.6" 8550 + sources."jest-runtime-27.4.6" 8551 sources."jest-serializer-27.4.0" 8552 + sources."jest-snapshot-27.4.6" 8553 sources."jest-util-27.4.2" 8554 + (sources."jest-validate-27.4.6" // { 8555 dependencies = [ 8556 + sources."camelcase-6.3.0" 8557 ]; 8558 }) 8559 + sources."jest-watcher-27.4.6" 8560 + (sources."jest-worker-27.4.6" // { 8561 dependencies = [ 8562 sources."supports-color-8.1.1" 8563 ]; ··· 8611 sources."path-parse-1.0.7" 8612 sources."path-type-4.0.0" 8613 sources."picocolors-1.0.0" 8614 + sources."picomatch-2.3.1" 8615 + sources."pirates-4.0.5" 8616 sources."pkg-dir-4.2.0" 8617 sources."prelude-ls-1.2.1" 8618 + (sources."pretty-format-27.4.6" // { 8619 dependencies = [ 8620 sources."ansi-styles-5.2.0" 8621 ]; 8622 }) 8623 sources."prompts-2.4.2" 8624 sources."psl-1.8.0" 8625 sources."punycode-2.1.1" ··· 8628 sources."readable-stream-3.6.0" 8629 sources."regexpp-3.2.0" 8630 sources."require-directory-2.1.1" 8631 + sources."resolve-1.22.0" 8632 (sources."resolve-cwd-3.0.0" // { 8633 dependencies = [ 8634 sources."resolve-from-5.0.0" ··· 8665 sources."strip-json-comments-3.1.1" 8666 sources."supports-color-7.2.0" 8667 sources."supports-hyperlinks-2.2.0" 8668 + sources."supports-preserve-symlinks-flag-1.0.0" 8669 sources."symbol-tree-3.2.4" 8670 sources."tar-stream-2.2.0" 8671 sources."terminal-link-2.1.1" ··· 8687 sources."uri-js-4.4.1" 8688 sources."util-deprecate-1.0.2" 8689 sources."v8-compile-cache-2.3.0" 8690 + (sources."v8-to-istanbul-8.1.1" // { 8691 dependencies = [ 8692 sources."source-map-0.7.3" 8693 ]; ··· 8711 sources."yallist-4.0.0" 8712 sources."yargs-16.2.0" 8713 sources."yargs-parser-20.2.9" 8714 + (sources."zigbee-herdsman-0.14.10" // { 8715 dependencies = [ 8716 + sources."@babel/cli-7.16.8" 8717 + sources."@babel/code-frame-7.16.7" 8718 + sources."@babel/compat-data-7.16.8" 8719 + (sources."@babel/core-7.16.12" // { 8720 dependencies = [ 8721 sources."semver-6.3.0" 8722 ]; 8723 }) 8724 + sources."@babel/generator-7.16.8" 8725 + sources."@babel/helper-annotate-as-pure-7.16.7" 8726 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 8727 + (sources."@babel/helper-compilation-targets-7.16.7" // { 8728 dependencies = [ 8729 sources."semver-6.3.0" 8730 ]; 8731 }) 8732 + sources."@babel/helper-create-class-features-plugin-7.16.10" 8733 + sources."@babel/helper-create-regexp-features-plugin-7.16.7" 8734 + (sources."@babel/helper-define-polyfill-provider-0.3.1" // { 8735 dependencies = [ 8736 sources."semver-6.3.0" 8737 ]; 8738 }) 8739 + sources."@babel/helper-environment-visitor-7.16.7" 8740 + sources."@babel/helper-explode-assignable-expression-7.16.7" 8741 + sources."@babel/helper-function-name-7.16.7" 8742 + sources."@babel/helper-get-function-arity-7.16.7" 8743 + sources."@babel/helper-hoist-variables-7.16.7" 8744 + sources."@babel/helper-member-expression-to-functions-7.16.7" 8745 + sources."@babel/helper-module-imports-7.16.7" 8746 + sources."@babel/helper-module-transforms-7.16.7" 8747 + sources."@babel/helper-optimise-call-expression-7.16.7" 8748 + sources."@babel/helper-plugin-utils-7.16.7" 8749 + sources."@babel/helper-remap-async-to-generator-7.16.8" 8750 + sources."@babel/helper-replace-supers-7.16.7" 8751 + sources."@babel/helper-simple-access-7.16.7" 8752 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 8753 + sources."@babel/helper-split-export-declaration-7.16.7" 8754 + sources."@babel/helper-validator-identifier-7.16.7" 8755 + sources."@babel/helper-validator-option-7.16.7" 8756 + sources."@babel/helper-wrap-function-7.16.8" 8757 + sources."@babel/helpers-7.16.7" 8758 + sources."@babel/highlight-7.16.10" 8759 + sources."@babel/parser-7.16.12" 8760 + sources."@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.16.7" 8761 + sources."@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.16.7" 8762 + sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 8763 + sources."@babel/plugin-proposal-class-properties-7.16.7" 8764 + sources."@babel/plugin-proposal-class-static-block-7.16.7" 8765 + sources."@babel/plugin-proposal-dynamic-import-7.16.7" 8766 + sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 8767 + sources."@babel/plugin-proposal-json-strings-7.16.7" 8768 + sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 8769 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 8770 + sources."@babel/plugin-proposal-numeric-separator-7.16.7" 8771 + sources."@babel/plugin-proposal-object-rest-spread-7.16.7" 8772 + sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 8773 + sources."@babel/plugin-proposal-optional-chaining-7.16.7" 8774 + sources."@babel/plugin-proposal-private-methods-7.16.11" 8775 + sources."@babel/plugin-proposal-private-property-in-object-7.16.7" 8776 + sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 8777 sources."@babel/plugin-syntax-async-generators-7.8.4" 8778 sources."@babel/plugin-syntax-bigint-7.8.3" 8779 sources."@babel/plugin-syntax-class-properties-7.12.13" ··· 8790 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 8791 sources."@babel/plugin-syntax-private-property-in-object-7.14.5" 8792 sources."@babel/plugin-syntax-top-level-await-7.14.5" 8793 + sources."@babel/plugin-syntax-typescript-7.16.7" 8794 + sources."@babel/plugin-transform-arrow-functions-7.16.7" 8795 + sources."@babel/plugin-transform-async-to-generator-7.16.8" 8796 + sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 8797 + sources."@babel/plugin-transform-block-scoping-7.16.7" 8798 + sources."@babel/plugin-transform-classes-7.16.7" 8799 + sources."@babel/plugin-transform-computed-properties-7.16.7" 8800 + sources."@babel/plugin-transform-destructuring-7.16.7" 8801 + sources."@babel/plugin-transform-dotall-regex-7.16.7" 8802 + sources."@babel/plugin-transform-duplicate-keys-7.16.7" 8803 + sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 8804 + sources."@babel/plugin-transform-for-of-7.16.7" 8805 + sources."@babel/plugin-transform-function-name-7.16.7" 8806 + sources."@babel/plugin-transform-literals-7.16.7" 8807 + sources."@babel/plugin-transform-member-expression-literals-7.16.7" 8808 + sources."@babel/plugin-transform-modules-amd-7.16.7" 8809 + sources."@babel/plugin-transform-modules-commonjs-7.16.8" 8810 + sources."@babel/plugin-transform-modules-systemjs-7.16.7" 8811 + sources."@babel/plugin-transform-modules-umd-7.16.7" 8812 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 8813 + sources."@babel/plugin-transform-new-target-7.16.7" 8814 + sources."@babel/plugin-transform-object-super-7.16.7" 8815 + sources."@babel/plugin-transform-parameters-7.16.7" 8816 + sources."@babel/plugin-transform-property-literals-7.16.7" 8817 + sources."@babel/plugin-transform-regenerator-7.16.7" 8818 + sources."@babel/plugin-transform-reserved-words-7.16.7" 8819 + sources."@babel/plugin-transform-shorthand-properties-7.16.7" 8820 + sources."@babel/plugin-transform-spread-7.16.7" 8821 + sources."@babel/plugin-transform-sticky-regex-7.16.7" 8822 + sources."@babel/plugin-transform-template-literals-7.16.7" 8823 + sources."@babel/plugin-transform-typeof-symbol-7.16.7" 8824 + sources."@babel/plugin-transform-typescript-7.16.8" 8825 + sources."@babel/plugin-transform-unicode-escapes-7.16.7" 8826 + sources."@babel/plugin-transform-unicode-regex-7.16.7" 8827 + (sources."@babel/preset-env-7.16.11" // { 8828 dependencies = [ 8829 sources."semver-6.3.0" 8830 ]; 8831 }) 8832 sources."@babel/preset-modules-0.1.5" 8833 + sources."@babel/preset-typescript-7.16.7" 8834 + sources."@babel/runtime-7.16.7" 8835 + sources."@babel/template-7.16.7" 8836 + sources."@babel/traverse-7.16.10" 8837 + sources."@babel/types-7.16.8" 8838 sources."@bcoe/v8-coverage-0.2.3" 8839 (sources."@eslint/eslintrc-1.0.5" // { 8840 dependencies = [ ··· 8845 sources."strip-json-comments-3.1.1" 8846 ]; 8847 }) 8848 + sources."@humanwhocodes/config-array-0.9.3" 8849 sources."@humanwhocodes/object-schema-1.2.1" 8850 sources."@istanbuljs/load-nyc-config-1.1.0" 8851 sources."@istanbuljs/schema-0.1.3" 8852 + (sources."@jest/console-27.4.6" // { 8853 dependencies = [ 8854 sources."ansi-styles-4.3.0" 8855 sources."chalk-4.1.2" ··· 8860 sources."supports-color-7.2.0" 8861 ]; 8862 }) 8863 + (sources."@jest/core-27.4.7" // { 8864 dependencies = [ 8865 sources."ansi-regex-5.0.1" 8866 sources."ansi-styles-4.3.0" ··· 8873 sources."supports-color-7.2.0" 8874 ]; 8875 }) 8876 + sources."@jest/environment-27.4.6" 8877 + sources."@jest/fake-timers-27.4.6" 8878 + sources."@jest/globals-27.4.6" 8879 + (sources."@jest/reporters-27.4.6" // { 8880 dependencies = [ 8881 sources."ansi-styles-4.3.0" 8882 sources."chalk-4.1.2" 8883 sources."color-convert-2.0.1" 8884 sources."color-name-1.1.4" 8885 sources."has-flag-4.0.0" 8886 sources."slash-3.0.0" 8887 sources."source-map-0.6.1" 8888 sources."supports-color-7.2.0" ··· 8893 sources."source-map-0.6.1" 8894 ]; 8895 }) 8896 + sources."@jest/test-result-27.4.6" 8897 + sources."@jest/test-sequencer-27.4.6" 8898 + (sources."@jest/transform-27.4.6" // { 8899 dependencies = [ 8900 sources."ansi-styles-4.3.0" 8901 sources."chalk-4.1.2" ··· 8935 sources."@sinonjs/commons-1.8.3" 8936 sources."@sinonjs/fake-timers-8.1.0" 8937 sources."@tootallnate/once-1.1.2" 8938 + sources."@types/babel__core-7.1.18" 8939 sources."@types/babel__generator-7.6.4" 8940 sources."@types/babel__template-7.4.1" 8941 sources."@types/babel__traverse-7.14.2" ··· 8945 sources."@types/istanbul-lib-coverage-2.0.4" 8946 sources."@types/istanbul-lib-report-3.0.0" 8947 sources."@types/istanbul-reports-3.0.1" 8948 + sources."@types/jest-27.4.0" 8949 sources."@types/json-schema-7.0.9" 8950 sources."@types/ms-0.7.31" 8951 sources."@types/mz-2.7.4" 8952 sources."@types/nedb-1.8.12" 8953 + sources."@types/node-17.0.13" 8954 + sources."@types/prettier-2.4.3" 8955 sources."@types/serialport-8.0.2" 8956 sources."@types/stack-utils-2.0.1" 8957 sources."@types/yargs-16.0.4" 8958 sources."@types/yargs-parser-20.2.1" 8959 + sources."@typescript-eslint/eslint-plugin-5.10.1" 8960 + sources."@typescript-eslint/parser-5.10.1" 8961 + sources."@typescript-eslint/scope-manager-5.10.1" 8962 + sources."@typescript-eslint/type-utils-5.10.1" 8963 + sources."@typescript-eslint/types-5.10.1" 8964 + sources."@typescript-eslint/typescript-estree-5.10.1" 8965 + sources."@typescript-eslint/utils-5.10.1" 8966 + sources."@typescript-eslint/visitor-keys-5.10.1" 8967 sources."abab-2.0.5" 8968 + sources."acorn-8.7.0" 8969 (sources."acorn-globals-6.0.0" // { 8970 dependencies = [ 8971 sources."acorn-7.4.1" ··· 8975 sources."acorn-walk-7.2.0" 8976 sources."agent-base-6.0.2" 8977 sources."ajv-6.12.6" 8978 (sources."ansi-escapes-4.3.2" // { 8979 dependencies = [ 8980 sources."type-fest-0.21.3" ··· 8989 sources."argparse-1.0.10" 8990 sources."array-union-2.1.0" 8991 sources."asynckit-0.4.0" 8992 + (sources."babel-jest-27.4.6" // { 8993 dependencies = [ 8994 sources."ansi-styles-4.3.0" 8995 sources."chalk-4.1.2" ··· 9003 sources."babel-plugin-dynamic-import-node-2.3.3" 9004 sources."babel-plugin-istanbul-6.1.1" 9005 sources."babel-plugin-jest-hoist-27.4.0" 9006 + (sources."babel-plugin-polyfill-corejs2-0.3.1" // { 9007 dependencies = [ 9008 sources."semver-6.3.0" 9009 ]; 9010 }) 9011 + sources."babel-plugin-polyfill-corejs3-0.5.1" 9012 + sources."babel-plugin-polyfill-regenerator-0.3.1" 9013 sources."babel-preset-current-node-syntax-1.0.1" 9014 sources."babel-preset-jest-27.4.0" 9015 sources."balanced-match-1.0.2" ··· 9031 sources."call-bind-1.0.2" 9032 sources."callsites-3.1.0" 9033 sources."camelcase-5.3.1" 9034 + sources."caniuse-lite-1.0.30001304" 9035 sources."chalk-2.4.2" 9036 sources."char-regex-1.0.2" 9037 + sources."chokidar-3.5.3" 9038 sources."chownr-1.1.4" 9039 sources."ci-info-3.3.0" 9040 sources."cjs-module-lexer-1.2.2" ··· 9056 sources."concat-map-0.0.1" 9057 sources."console-control-strings-1.1.0" 9058 sources."convert-source-map-1.8.0" 9059 + (sources."core-js-compat-3.20.3" // { 9060 dependencies = [ 9061 sources."semver-7.0.0" 9062 ]; ··· 9081 sources."define-properties-1.1.3" 9082 sources."delayed-stream-1.0.0" 9083 sources."delegates-1.0.0" 9084 + sources."detect-libc-2.0.0" 9085 sources."detect-newline-3.1.0" 9086 sources."diff-sequences-27.4.0" 9087 sources."dir-glob-3.0.1" ··· 9091 sources."webidl-conversions-5.0.0" 9092 ]; 9093 }) 9094 + sources."electron-to-chromium-1.4.57" 9095 sources."emittery-0.8.1" 9096 sources."emoji-regex-8.0.0" 9097 sources."end-of-stream-1.4.4" 9098 sources."escalade-3.1.1" 9099 sources."escape-string-regexp-1.0.5" 9100 (sources."escodegen-2.0.0" // { ··· 9107 sources."type-check-0.3.2" 9108 ]; 9109 }) 9110 + (sources."eslint-8.8.0" // { 9111 dependencies = [ 9112 sources."ansi-regex-5.0.1" 9113 sources."ansi-styles-4.3.0" ··· 9121 sources."glob-parent-6.0.2" 9122 sources."globals-13.12.0" 9123 sources."has-flag-4.0.0" 9124 sources."js-yaml-4.1.0" 9125 sources."strip-ansi-6.0.1" 9126 sources."strip-json-comments-3.1.1" ··· 9133 sources."eslint-visitor-keys-2.1.0" 9134 ]; 9135 }) 9136 + sources."eslint-visitor-keys-3.2.0" 9137 + sources."espree-9.3.0" 9138 sources."esprima-4.0.1" 9139 (sources."esquery-1.4.0" // { 9140 dependencies = [ ··· 9151 sources."execa-5.1.1" 9152 sources."exit-0.1.2" 9153 sources."expand-template-2.0.3" 9154 + sources."expect-27.4.6" 9155 sources."fast-deep-equal-3.1.3" 9156 + sources."fast-glob-3.2.11" 9157 sources."fast-json-stable-stringify-2.1.0" 9158 sources."fast-levenshtein-2.0.6" 9159 sources."fastq-1.13.0" ··· 9163 sources."fill-range-7.0.1" 9164 sources."find-up-4.1.0" 9165 sources."flat-cache-3.0.4" 9166 + sources."flatted-3.2.5" 9167 sources."form-data-3.0.1" 9168 sources."fs-constants-1.0.0" 9169 sources."fs-readdir-recursive-1.1.0" ··· 9181 sources."glob-7.2.0" 9182 sources."glob-parent-5.1.2" 9183 sources."globals-11.12.0" 9184 + (sources."globby-11.1.0" // { 9185 dependencies = [ 9186 sources."slash-3.0.0" 9187 ]; 9188 }) 9189 + sources."graceful-fs-4.2.9" 9190 (sources."handlebars-4.7.7" // { 9191 dependencies = [ 9192 sources."source-map-0.6.1" ··· 9209 sources."resolve-from-4.0.0" 9210 ]; 9211 }) 9212 + sources."import-local-3.1.0" 9213 sources."imurmurhash-0.1.4" 9214 sources."inflight-1.0.6" 9215 sources."inherits-2.0.4" 9216 sources."ini-1.3.8" 9217 sources."is-binary-path-2.1.0" 9218 + sources."is-core-module-2.8.1" 9219 sources."is-extglob-2.1.1" 9220 sources."is-fullwidth-code-point-1.0.0" 9221 sources."is-generator-fn-2.1.0" ··· 9245 sources."source-map-0.6.1" 9246 ]; 9247 }) 9248 + sources."istanbul-reports-3.1.3" 9249 + (sources."jest-27.4.7" // { 9250 dependencies = [ 9251 sources."ansi-styles-4.3.0" 9252 sources."chalk-4.1.2" 9253 sources."color-convert-2.0.1" 9254 sources."color-name-1.1.4" 9255 sources."has-flag-4.0.0" 9256 + sources."jest-cli-27.4.7" 9257 sources."supports-color-7.2.0" 9258 ]; 9259 }) 9260 sources."jest-changed-files-27.4.2" 9261 + (sources."jest-circus-27.4.6" // { 9262 dependencies = [ 9263 sources."ansi-styles-4.3.0" 9264 sources."chalk-4.1.2" ··· 9269 sources."supports-color-7.2.0" 9270 ]; 9271 }) 9272 + (sources."jest-config-27.4.7" // { 9273 dependencies = [ 9274 sources."ansi-styles-4.3.0" 9275 sources."chalk-4.1.2" ··· 9280 sources."supports-color-7.2.0" 9281 ]; 9282 }) 9283 + (sources."jest-diff-27.4.6" // { 9284 dependencies = [ 9285 sources."ansi-styles-4.3.0" 9286 sources."chalk-4.1.2" ··· 9291 ]; 9292 }) 9293 sources."jest-docblock-27.4.0" 9294 + (sources."jest-each-27.4.6" // { 9295 dependencies = [ 9296 sources."ansi-styles-4.3.0" 9297 sources."chalk-4.1.2" ··· 9301 sources."supports-color-7.2.0" 9302 ]; 9303 }) 9304 + sources."jest-environment-jsdom-27.4.6" 9305 + sources."jest-environment-node-27.4.6" 9306 sources."jest-get-type-27.4.0" 9307 + sources."jest-haste-map-27.4.6" 9308 + (sources."jest-jasmine2-27.4.6" // { 9309 dependencies = [ 9310 sources."ansi-styles-4.3.0" 9311 sources."chalk-4.1.2" ··· 9315 sources."supports-color-7.2.0" 9316 ]; 9317 }) 9318 + sources."jest-leak-detector-27.4.6" 9319 + (sources."jest-matcher-utils-27.4.6" // { 9320 dependencies = [ 9321 sources."ansi-styles-4.3.0" 9322 sources."chalk-4.1.2" ··· 9326 sources."supports-color-7.2.0" 9327 ]; 9328 }) 9329 + (sources."jest-message-util-27.4.6" // { 9330 dependencies = [ 9331 sources."ansi-styles-4.3.0" 9332 sources."chalk-4.1.2" ··· 9337 sources."supports-color-7.2.0" 9338 ]; 9339 }) 9340 + sources."jest-mock-27.4.6" 9341 sources."jest-pnp-resolver-1.2.2" 9342 sources."jest-regex-util-27.4.0" 9343 + (sources."jest-resolve-27.4.6" // { 9344 dependencies = [ 9345 sources."ansi-styles-4.3.0" 9346 sources."chalk-4.1.2" ··· 9351 sources."supports-color-7.2.0" 9352 ]; 9353 }) 9354 + sources."jest-resolve-dependencies-27.4.6" 9355 + (sources."jest-runner-27.4.6" // { 9356 dependencies = [ 9357 sources."ansi-styles-4.3.0" 9358 sources."chalk-4.1.2" ··· 9362 sources."supports-color-7.2.0" 9363 ]; 9364 }) 9365 + (sources."jest-runtime-27.4.6" // { 9366 dependencies = [ 9367 sources."ansi-styles-4.3.0" 9368 sources."chalk-4.1.2" ··· 9374 ]; 9375 }) 9376 sources."jest-serializer-27.4.0" 9377 + (sources."jest-snapshot-27.4.6" // { 9378 dependencies = [ 9379 sources."ansi-styles-4.3.0" 9380 sources."chalk-4.1.2" ··· 9394 sources."supports-color-7.2.0" 9395 ]; 9396 }) 9397 + (sources."jest-validate-27.4.6" // { 9398 dependencies = [ 9399 sources."ansi-styles-4.3.0" 9400 + sources."camelcase-6.3.0" 9401 sources."chalk-4.1.2" 9402 sources."color-convert-2.0.1" 9403 sources."color-name-1.1.4" ··· 9405 sources."supports-color-7.2.0" 9406 ]; 9407 }) 9408 + (sources."jest-watcher-27.4.6" // { 9409 dependencies = [ 9410 sources."ansi-styles-4.3.0" 9411 sources."chalk-4.1.2" ··· 9415 sources."supports-color-7.2.0" 9416 ]; 9417 }) 9418 + (sources."jest-worker-27.4.6" // { 9419 dependencies = [ 9420 sources."has-flag-4.0.0" 9421 sources."supports-color-8.1.1" ··· 9444 ]; 9445 }) 9446 sources."makeerror-1.0.12" 9447 + sources."marked-4.0.12" 9448 sources."merge-stream-2.0.0" 9449 sources."merge2-1.4.1" 9450 sources."micromatch-4.0.4" ··· 9487 sources."path-parse-1.0.7" 9488 sources."path-type-4.0.0" 9489 sources."picocolors-1.0.0" 9490 + sources."picomatch-2.3.1" 9491 sources."pify-4.0.1" 9492 + sources."pirates-4.0.5" 9493 sources."pkg-dir-4.2.0" 9494 + sources."prebuild-install-7.0.1" 9495 sources."prelude-ls-1.2.1" 9496 + (sources."pretty-format-27.4.6" // { 9497 dependencies = [ 9498 sources."ansi-regex-5.0.1" 9499 sources."ansi-styles-5.2.0" 9500 ]; 9501 }) 9502 sources."process-nextick-args-2.0.1" 9503 sources."prompts-2.4.2" 9504 sources."psl-1.8.0" 9505 sources."pump-3.0.0" ··· 9522 ]; 9523 }) 9524 sources."require-directory-2.1.1" 9525 + sources."resolve-1.22.0" 9526 sources."resolve-cwd-3.0.0" 9527 sources."resolve-from-5.0.0" 9528 sources."resolve.exports-1.1.0" ··· 9537 sources."set-blocking-2.0.0" 9538 sources."shebang-command-2.0.0" 9539 sources."shebang-regex-3.0.0" 9540 + sources."shiki-0.10.0" 9541 sources."signal-exit-3.0.6" 9542 sources."simple-concat-1.0.1" 9543 + sources."simple-get-4.0.1" 9544 sources."sisteransi-1.0.5" 9545 sources."slash-2.0.0" 9546 sources."slip-1.0.2" ··· 9575 sources."supports-color-7.2.0" 9576 ]; 9577 }) 9578 + sources."supports-preserve-symlinks-flag-1.0.0" 9579 sources."symbol-tree-3.2.4" 9580 sources."tar-fs-2.1.1" 9581 (sources."tar-stream-2.2.0" // { ··· 9601 sources."type-detect-4.0.8" 9602 sources."type-fest-0.20.2" 9603 sources."typedarray-to-buffer-3.1.5" 9604 + sources."typedoc-0.22.11" 9605 + sources."typedoc-plugin-markdown-3.11.12" 9606 sources."typedoc-plugin-no-inherit-1.3.1" 9607 sources."typedoc-plugin-sourcefile-url-1.0.6" 9608 + sources."typescript-4.5.5" 9609 + sources."uglify-js-3.15.0" 9610 sources."unicode-canonical-property-names-ecmascript-2.0.0" 9611 sources."unicode-match-property-ecmascript-2.0.0" 9612 sources."unicode-match-property-value-ecmascript-2.0.0" ··· 9615 sources."uri-js-4.4.1" 9616 sources."util-deprecate-1.0.2" 9617 sources."v8-compile-cache-2.3.0" 9618 + (sources."v8-to-istanbul-8.1.1" // { 9619 dependencies = [ 9620 sources."source-map-0.7.3" 9621 ]; ··· 9664 }) 9665 ]; 9666 }) 9667 + sources."zigbee2mqtt-frontend-0.6.71" 9668 ]; 9669 buildInputs = globalBuildInputs; 9670 meta = {
+1 -1
pkgs/tools/admin/azure-cli/python-packages.nix
··· 118 }; 119 120 azure-batch = overrideAzureMgmtPackage super.azure-batch "11.0.0" "zip" 121 - "83d7a2b0be42ca456ac2b56fa3dc6ce704c130e888d37d924072c1d3718f32da"; 122 123 azure-mgmt-apimanagement = overrideAzureMgmtPackage super.azure-mgmt-apimanagement "0.2.0" "zip" 124 "0whx3s8ri9939r3pdvjf8iqcslas1xy6cnccidmp10r5ng0023vr";
··· 118 }; 119 120 azure-batch = overrideAzureMgmtPackage super.azure-batch "11.0.0" "zip" 121 + "sha256-zl/bDsli7d/oXNgiBekXfLC720RSZXRuOLO7vx8W3HM="; 122 123 azure-mgmt-apimanagement = overrideAzureMgmtPackage super.azure-mgmt-apimanagement "0.2.0" "zip" 124 "0whx3s8ri9939r3pdvjf8iqcslas1xy6cnccidmp10r5ng0023vr";
+2 -2
pkgs/tools/misc/yt-dlp/default.nix
··· 20 # The websites yt-dlp deals with are a very moving target. That means that 21 # downloads break constantly. Because of that, updates should always be backported 22 # to the latest stable release. 23 - version = "2022.1.21"; 24 25 src = fetchPypi { 26 inherit pname; 27 version = builtins.replaceStrings [ ".0" ] [ "." ] version; 28 - sha256 = "sha256-Ig7EBzibXqcuJd/BHDDlQ0ibkAdcVTEdUlXiBF24qeI="; 29 }; 30 31 propagatedBuildInputs = [ websockets mutagen ]
··· 20 # The websites yt-dlp deals with are a very moving target. That means that 21 # downloads break constantly. Because of that, updates should always be backported 22 # to the latest stable release. 23 + version = "2022.2.3"; 24 25 src = fetchPypi { 26 inherit pname; 27 version = builtins.replaceStrings [ ".0" ] [ "." ] version; 28 + sha256 = "sha256-lV3RgUq9F4uv8jg9FULv7kit/J3p4vXIZ4SwnNb1omI="; 29 }; 30 31 propagatedBuildInputs = [ websockets mutagen ]
+2 -2
pkgs/tools/networking/tcpreplay/default.nix
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tcpreplay"; 5 - version = "4.3.4"; 6 7 src = fetchurl { 8 url = "https://github.com/appneta/tcpreplay/releases/download/v${version}/tcpreplay-${version}.tar.gz"; 9 - sha256 = "sha256-7gZTEIBsIuL9NvAU4euzMbmKfsTblY6Rw9nL2gZA2Sw="; 10 }; 11 12 buildInputs = [ libpcap ]
··· 2 3 stdenv.mkDerivation rec { 4 pname = "tcpreplay"; 5 + version = "4.4.0"; 6 7 src = fetchurl { 8 url = "https://github.com/appneta/tcpreplay/releases/download/v${version}/tcpreplay-${version}.tar.gz"; 9 + sha256 = "sha256-o7ElwDGb0JbWj4IcSggFGy09kni6xv4Yz+PJIBcDpWc="; 10 }; 11 12 buildInputs = [ libpcap ]
+8 -1
pkgs/tools/package-management/rpm/default.nix
··· 1 { stdenv, lib 2 , pkg-config, autoreconfHook 3 , fetchurl, cpio, zlib, bzip2, file, elfutils, libbfd, libgcrypt, libarchive, nspr, nss, popt, db, xz, python, lua, llvmPackages 4 - , sqlite, zstd 5 }: 6 7 stdenv.mkDerivation rec { ··· 35 "--enable-zstd" 36 "--localstatedir=/var" 37 "--sharedstatedir=/com" 38 ]; 39 40 postPatch = ''
··· 1 { stdenv, lib 2 , pkg-config, autoreconfHook 3 , fetchurl, cpio, zlib, bzip2, file, elfutils, libbfd, libgcrypt, libarchive, nspr, nss, popt, db, xz, python, lua, llvmPackages 4 + , sqlite, zstd, fetchpatch 5 }: 6 7 stdenv.mkDerivation rec { ··· 35 "--enable-zstd" 36 "--localstatedir=/var" 37 "--sharedstatedir=/com" 38 + ]; 39 + 40 + patches = lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) [ # Fix build for macOS aarch64 41 + (fetchpatch { 42 + url = "https://github.com/rpm-software-management/rpm/commit/ad87ced3990c7e14b6b593fa411505e99412e248.patch"; 43 + hash = "sha256-WYlxPGcPB5lGQmkyJ/IpGoqVfAKtMxKzlr5flTqn638="; 44 + }) 45 ]; 46 47 postPatch = ''
+25
pkgs/tools/security/dontgo403/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "dontgo403"; 8 + version = "0.3"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "devploit"; 12 + repo = pname; 13 + rev = version; 14 + hash = "sha256-QHkmnhOLdyci3PAhf/JIiYlCta8DJ3cZb1S6Sim0qGQ="; 15 + }; 16 + 17 + vendorSha256 = "sha256-jF+CSmLHMdlFpttYf3pK84wdfFAHSVPAK8S5zunUzB0="; 18 + 19 + meta = with lib; { 20 + description = "Tool to bypass 40X response codes"; 21 + homepage = "https://github.com/devploit/dontgo403"; 22 + license = licenses.asl20; 23 + maintainers = with maintainers; [ fab ]; 24 + }; 25 + }
+4 -3
pkgs/tools/security/ghidra/build.nix
··· 19 let 20 pkg_path = "$out/lib/ghidra"; 21 pname = "ghidra"; 22 - version = "10.1.1"; 23 24 src = fetchFromGitHub { 25 owner = "NationalSecurityAgency"; 26 repo = "Ghidra"; 27 rev = "Ghidra_${version}_build"; 28 - sha256 = "sha256-0hj9IVvTxgStCbfnTzqeKD+Q5GnGowDsIkMvk2GqJqY="; 29 }; 30 31 desktopItem = makeDesktopItem { ··· 101 ''; 102 outputHashAlgo = "sha256"; 103 outputHashMode = "recursive"; 104 - outputHash = "sha256-Yxf6g908+fRRUh40PrwNUCTvxzlvSmwzE8R+3ZkRIvs="; 105 }; 106 107 in stdenv.mkDerivation rec { ··· 172 homepage = "https://ghidra-sre.org/"; 173 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 174 license = licenses.asl20; 175 }; 176 177 }
··· 19 let 20 pkg_path = "$out/lib/ghidra"; 21 pname = "ghidra"; 22 + version = "10.1.2"; 23 24 src = fetchFromGitHub { 25 owner = "NationalSecurityAgency"; 26 repo = "Ghidra"; 27 rev = "Ghidra_${version}_build"; 28 + sha256 = "sha256-gnSIXje0hUpAculNXAyiS7Twc5XWitMgYp7svyZQxzE="; 29 }; 30 31 desktopItem = makeDesktopItem { ··· 101 ''; 102 outputHashAlgo = "sha256"; 103 outputHashMode = "recursive"; 104 + outputHash = "sha256-UHV7Z2HaVTOCY5U0zjUtkchJicrXMBfYBHvL8AA7NTg="; 105 }; 106 107 in stdenv.mkDerivation rec { ··· 172 homepage = "https://ghidra-sre.org/"; 173 platforms = [ "x86_64-linux" "x86_64-darwin" ]; 174 license = licenses.asl20; 175 + maintainers = [ "roblabla" ]; 176 }; 177 178 }
+1 -1
pkgs/tools/security/keybase/default.nix
··· 18 rev = "v${version}"; 19 sha256 = "sha256-WAI/rl6awVLbXqdqYAq8fyABAO2qet+GYucuiwClylI="; 20 }; 21 - vendorSha256 = "sha256-ZZTM1s/kFHkCjnaDYuP7xCrkW2an3I6kvcMXMy63ySE="; 22 23 patches = [ 24 (substituteAll {
··· 18 rev = "v${version}"; 19 sha256 = "sha256-WAI/rl6awVLbXqdqYAq8fyABAO2qet+GYucuiwClylI="; 20 }; 21 + vendorSha256 = "sha256-ckAnSSSEF00gbgxnPAi2Pi8TNu3nmAahK7TP6HnfmNo="; 22 23 patches = [ 24 (substituteAll {
+3 -3
pkgs/tools/security/saml2aws/default.nix
··· 2 3 buildGoModule rec { 4 pname = "saml2aws"; 5 - version = "2.33.0"; 6 7 src = fetchFromGitHub { 8 owner = "Versent"; 9 repo = "saml2aws"; 10 rev = "v${version}"; 11 - sha256 = "sha256-99URhGJJKO4l+ztMGljiuNKVTYIG2iyWUMBXG1WTPdI="; 12 }; 13 14 - vendorSha256 = "sha256-oUEgJ1DDzhKUpYevylIr+1X28xFGaWMh5+q1HTqOHaU="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ AppKit ]; 17
··· 2 3 buildGoModule rec { 4 pname = "saml2aws"; 5 + version = "2.34.0"; 6 7 src = fetchFromGitHub { 8 owner = "Versent"; 9 repo = "saml2aws"; 10 rev = "v${version}"; 11 + sha256 = "sha256-JRJjuVF0MkV7KVmbAZhiWPWVwDORByCsZqPwdTuVRoA="; 12 }; 13 14 + vendorSha256 = "sha256-/N/RYqt+lhhECK+uq99vkm3Mg7PWpdE0GYLXkIYthNw="; 15 16 buildInputs = lib.optionals stdenv.isDarwin [ AppKit ]; 17
+3 -3
pkgs/tools/security/vaultwarden/default.nix
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "vaultwarden"; 8 - version = "1.23.1"; 9 10 src = fetchFromGitHub { 11 owner = "dani-garcia"; 12 repo = pname; 13 rev = version; 14 - sha256 = "sha256-UMeltpuGUPdB5j4NBxA6SuLUqzinrF8USCaJk9SjDJA="; 15 }; 16 17 - cargoSha256 = "sha256-8SjCWioOK/bk6G+0Yfl0ilgbLu83hn+AtuX9QWrnQEc="; 18 19 postPatch = '' 20 # Upstream specifies 1.57; nixpkgs has 1.56 which also produces a working
··· 5 6 rustPlatform.buildRustPackage rec { 7 pname = "vaultwarden"; 8 + version = "1.24.0"; 9 10 src = fetchFromGitHub { 11 owner = "dani-garcia"; 12 repo = pname; 13 rev = version; 14 + sha256 = "sha256-zeMVdsTSp1z8cwebU2N6w7436N8CcI7PzNedDOSvEx4="; 15 }; 16 17 + cargoSha256 = "sha256-Sn6DuzV2OfaywE0W2afRG0h8PfOprqMtZtYM/exGEww="; 18 19 postPatch = '' 20 # Upstream specifies 1.57; nixpkgs has 1.56 which also produces a working
+30 -17
pkgs/top-level/all-packages.nix
··· 1735 1736 dkimpy = with python3Packages; toPythonApplication dkimpy; 1737 1738 dpt-rp1-py = callPackage ../tools/misc/dpt-rp1-py { }; 1739 1740 dot-http = callPackage ../development/tools/dot-http { ··· 2989 2990 element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { 2991 inherit (darwin.apple_sdk.frameworks) Security AppKit CoreServices; 2992 - electron = electron_13; 2993 }; 2994 element-desktop-wayland = writeScriptBin "element-desktop" '' 2995 #!/bin/sh ··· 12535 buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 12536 }); 12537 12538 go_2-dev = callPackage ../development/compilers/go/2-dev.nix ({ 12539 inherit (darwin.apple_sdk.frameworks) Security Foundation; 12540 } // lib.optionalAttrs (stdenv.cc.isGNU && stdenv.isAarch64) { ··· 12542 buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 12543 }); 12544 12545 - go = go_1_16; 12546 12547 go-repo-root = callPackage ../development/tools/go-repo-root { }; 12548 ··· 20826 buildGo116Package = callPackage ../development/go-packages/generic { 20827 go = buildPackages.go_1_16; 20828 }; 20829 - # go_1_17 has go module changes which may not be portable 20830 - # across different go versions and/or platforms: 20831 - # https://github.com/NixOS/nixpkgs/issues/144667 20832 - # 20833 - # That's why `buildGoPackage != buildGo117Package`. 20834 buildGo117Package = callPackage ../development/go-packages/generic { 20835 go = buildPackages.go_1_17; 20836 }; 20837 20838 - buildGoPackage = buildGo116Package; 20839 20840 buildGo116Module = callPackage ../development/go-modules/generic { 20841 go = buildPackages.go_1_16; 20842 }; 20843 - # go_1_17 has go module changes which may not be portable 20844 - # across different go versions and/or platforms: 20845 - # https://github.com/NixOS/nixpkgs/issues/144667 20846 - # 20847 - # That's why `buildGoModule != buildGo117Module`. 20848 buildGo117Module = callPackage ../development/go-modules/generic { 20849 go = buildPackages.go_1_17; 20850 }; 20851 20852 - buildGoModule = buildGo116Module; 20853 20854 go2nix = callPackage ../development/tools/go2nix { }; 20855 ··· 21938 21939 redstore = callPackage ../servers/http/redstore { }; 21940 21941 - reproxy = callPackage ../servers/reproxy { }; 21942 21943 restic = callPackage ../tools/backup/restic { }; 21944 ··· 22115 buildGoModule = buildGo116Module; 22116 }; 22117 22118 - victoriametrics = callPackage ../servers/nosql/victoriametrics { }; 22119 22120 virtiofsd = callPackage ../servers/misc/virtiofsd { }; 22121 ··· 27724 27725 onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { }; 27726 27727 - open-policy-agent = callPackage ../development/tools/open-policy-agent { }; 27728 27729 openshift = callPackage ../applications/networking/cluster/openshift { }; 27730 ··· 33319 musly = callPackage ../applications/audio/musly { }; 33320 33321 mynewt-newt = callPackage ../tools/package-management/mynewt-newt { }; 33322 33323 nar-serve = callPackage ../tools/nix/nar-serve { }; 33324
··· 1735 1736 dkimpy = with python3Packages; toPythonApplication dkimpy; 1737 1738 + dontgo403 = callPackage ../tools/security/dontgo403 { }; 1739 + 1740 dpt-rp1-py = callPackage ../tools/misc/dpt-rp1-py { }; 1741 1742 dot-http = callPackage ../development/tools/dot-http { ··· 2991 2992 element-desktop = callPackage ../applications/networking/instant-messengers/element/element-desktop.nix { 2993 inherit (darwin.apple_sdk.frameworks) Security AppKit CoreServices; 2994 + electron = electron_15; 2995 }; 2996 element-desktop-wayland = writeScriptBin "element-desktop" '' 2997 #!/bin/sh ··· 12537 buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 12538 }); 12539 12540 + go_1_18 = callPackage ../development/compilers/go/1.18.nix ({ 12541 + inherit (darwin.apple_sdk.frameworks) Security Foundation; 12542 + } // lib.optionalAttrs (stdenv.cc.isGNU && stdenv.isAarch64) { 12543 + stdenv = gcc8Stdenv; 12544 + buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 12545 + }); 12546 + 12547 go_2-dev = callPackage ../development/compilers/go/2-dev.nix ({ 12548 inherit (darwin.apple_sdk.frameworks) Security Foundation; 12549 } // lib.optionalAttrs (stdenv.cc.isGNU && stdenv.isAarch64) { ··· 12551 buildPackages = buildPackages // { stdenv = buildPackages.gcc8Stdenv; }; 12552 }); 12553 12554 + go = go_1_17; 12555 12556 go-repo-root = callPackage ../development/tools/go-repo-root { }; 12557 ··· 20835 buildGo116Package = callPackage ../development/go-packages/generic { 20836 go = buildPackages.go_1_16; 20837 }; 20838 buildGo117Package = callPackage ../development/go-packages/generic { 20839 go = buildPackages.go_1_17; 20840 }; 20841 + buildGo118Package = callPackage ../development/go-packages/generic { 20842 + go = buildPackages.go_1_18; 20843 + }; 20844 20845 + buildGoPackage = buildGo117Package; 20846 20847 buildGo116Module = callPackage ../development/go-modules/generic { 20848 go = buildPackages.go_1_16; 20849 }; 20850 buildGo117Module = callPackage ../development/go-modules/generic { 20851 go = buildPackages.go_1_17; 20852 }; 20853 + buildGo118Module = callPackage ../development/go-modules/generic { 20854 + go = buildPackages.go_1_18; 20855 + }; 20856 20857 + buildGoModule = buildGo117Module; 20858 20859 go2nix = callPackage ../development/tools/go2nix { }; 20860 ··· 21943 21944 redstore = callPackage ../servers/http/redstore { }; 21945 21946 + reproxy = callPackage ../servers/reproxy { 21947 + buildGoModule = buildGo116Module; 21948 + }; 21949 21950 restic = callPackage ../tools/backup/restic { }; 21951 ··· 22122 buildGoModule = buildGo116Module; 22123 }; 22124 22125 + victoriametrics = callPackage ../servers/nosql/victoriametrics { 22126 + buildGoModule = buildGo116Module; 22127 + }; 22128 22129 virtiofsd = callPackage ../servers/misc/virtiofsd { }; 22130 ··· 27733 27734 onlyoffice-bin = callPackage ../applications/office/onlyoffice-bin { }; 27735 27736 + open-policy-agent = callPackage ../development/tools/open-policy-agent { 27737 + buildGoModule = buildGo116Module; 27738 + }; 27739 27740 openshift = callPackage ../applications/networking/cluster/openshift { }; 27741 ··· 33330 musly = callPackage ../applications/audio/musly { }; 33331 33332 mynewt-newt = callPackage ../tools/package-management/mynewt-newt { }; 33333 + 33334 + mysides = callPackage ../os-specific/darwin/mysides { }; 33335 33336 nar-serve = callPackage ../tools/nix/nar-serve { }; 33337
+1 -1
pkgs/top-level/perl-packages.nix
··· 3683 }; 3684 }; 3685 3686 - ConfigIniFiles = buildPerlModule { 3687 pname = "Config-IniFiles"; 3688 version = "3.000003"; 3689 src = fetchurl {
··· 3683 }; 3684 }; 3685 3686 + ConfigIniFiles = buildPerlPackage { 3687 pname = "Config-IniFiles"; 3688 version = "3.000003"; 3689 src = fetchurl {
+22
pkgs/top-level/python-packages.nix
··· 194 195 adax = callPackage ../development/python-modules/adax { }; 196 197 adb-enhanced = callPackage ../development/python-modules/adb-enhanced { }; 198 199 adb-homeassistant = callPackage ../development/python-modules/adb-homeassistant { }; ··· 257 ailment = callPackage ../development/python-modules/ailment { }; 258 259 aioamqp = callPackage ../development/python-modules/aioamqp { }; 260 261 aioasuswrt = callPackage ../development/python-modules/aioasuswrt { }; 262 ··· 362 363 aionotion = callPackage ../development/python-modules/aionotion { }; 364 365 aiopg = callPackage ../development/python-modules/aiopg { }; 366 367 aioprocessing = callPackage ../development/python-modules/aioprocessing { }; ··· 415 aiovlc = callPackage ../development/python-modules/aiovlc { }; 416 417 aiowatttime = callPackage ../development/python-modules/aiowatttime { }; 418 419 aiowinreg = callPackage ../development/python-modules/aiowinreg { }; 420 ··· 745 }; 746 747 auroranoaa = callPackage ../development/python-modules/auroranoaa { }; 748 749 auth0-python = callPackage ../development/python-modules/auth0-python { }; 750 ··· 1579 1580 ci-py = callPackage ../development/python-modules/ci-py { }; 1581 1582 circuitbreaker = callPackage ../development/python-modules/circuitbreaker { }; 1583 1584 cirq = callPackage ../development/python-modules/cirq { }; ··· 3990 intbitset = callPackage ../development/python-modules/intbitset { }; 3991 3992 intelhex = callPackage ../development/python-modules/intelhex { }; 3993 3994 intensity-normalization = callPackage ../development/python-modules/intensity-normalization { }; 3995 ··· 6530 6531 pyaudio = callPackage ../development/python-modules/pyaudio { }; 6532 6533 pyautogui = callPackage ../development/python-modules/pyautogui { }; 6534 6535 pyavm = callPackage ../development/python-modules/pyavm { }; ··· 7335 7336 pyquil = callPackage ../development/python-modules/pyquil { }; 7337 7338 pyrabbit2 = callPackage ../development/python-modules/pyrabbit2 { }; 7339 7340 pyrad = callPackage ../development/python-modules/pyrad { }; ··· 8723 8724 rtslib = callPackage ../development/python-modules/rtslib { }; 8725 8726 ruamel-base = callPackage ../development/python-modules/ruamel-base { }; 8727 8728 ruamel-yaml = callPackage ../development/python-modules/ruamel-yaml { }; ··· 9932 trustme = callPackage ../development/python-modules/trustme { }; 9933 9934 trytond = callPackage ../development/python-modules/trytond { }; 9935 9936 ttp = callPackage ../development/python-modules/ttp { }; 9937
··· 194 195 adax = callPackage ../development/python-modules/adax { }; 196 197 + adax-local = callPackage ../development/python-modules/adax-local { }; 198 + 199 adb-enhanced = callPackage ../development/python-modules/adb-enhanced { }; 200 201 adb-homeassistant = callPackage ../development/python-modules/adb-homeassistant { }; ··· 259 ailment = callPackage ../development/python-modules/ailment { }; 260 261 aioamqp = callPackage ../development/python-modules/aioamqp { }; 262 + 263 + aioaseko = callPackage ../development/python-modules/aioaseko { }; 264 265 aioasuswrt = callPackage ../development/python-modules/aioasuswrt { }; 266 ··· 366 367 aionotion = callPackage ../development/python-modules/aionotion { }; 368 369 + aiooncue = callPackage ../development/python-modules/aiooncue { }; 370 + 371 aiopg = callPackage ../development/python-modules/aiopg { }; 372 373 aioprocessing = callPackage ../development/python-modules/aioprocessing { }; ··· 421 aiovlc = callPackage ../development/python-modules/aiovlc { }; 422 423 aiowatttime = callPackage ../development/python-modules/aiowatttime { }; 424 + 425 + aiowebostv = callPackage ../development/python-modules/aiowebostv { }; 426 427 aiowinreg = callPackage ../development/python-modules/aiowinreg { }; 428 ··· 753 }; 754 755 auroranoaa = callPackage ../development/python-modules/auroranoaa { }; 756 + 757 + aurorapy = callPackage ../development/python-modules/aurorapy { }; 758 759 auth0-python = callPackage ../development/python-modules/auth0-python { }; 760 ··· 1589 1590 ci-py = callPackage ../development/python-modules/ci-py { }; 1591 1592 + circuit-webhook = callPackage ../development/python-modules/circuit-webhook { }; 1593 + 1594 circuitbreaker = callPackage ../development/python-modules/circuitbreaker { }; 1595 1596 cirq = callPackage ../development/python-modules/cirq { }; ··· 4002 intbitset = callPackage ../development/python-modules/intbitset { }; 4003 4004 intelhex = callPackage ../development/python-modules/intelhex { }; 4005 + 4006 + intellifire4py = callPackage ../development/python-modules/intellifire4py { }; 4007 4008 intensity-normalization = callPackage ../development/python-modules/intensity-normalization { }; 4009 ··· 6544 6545 pyaudio = callPackage ../development/python-modules/pyaudio { }; 6546 6547 + pyaussiebb = callPackage ../development/python-modules/pyaussiebb { }; 6548 + 6549 pyautogui = callPackage ../development/python-modules/pyautogui { }; 6550 6551 pyavm = callPackage ../development/python-modules/pyavm { }; ··· 7351 7352 pyquil = callPackage ../development/python-modules/pyquil { }; 7353 7354 + pyqvrpro = callPackage ../development/python-modules/pyqvrpro { }; 7355 + 7356 pyrabbit2 = callPackage ../development/python-modules/pyrabbit2 { }; 7357 7358 pyrad = callPackage ../development/python-modules/pyrad { }; ··· 8741 8742 rtslib = callPackage ../development/python-modules/rtslib { }; 8743 8744 + rtsp-to-webrtc = callPackage ../development/python-modules/rtsp-to-webrtc { }; 8745 + 8746 ruamel-base = callPackage ../development/python-modules/ruamel-base { }; 8747 8748 ruamel-yaml = callPackage ../development/python-modules/ruamel-yaml { }; ··· 9952 trustme = callPackage ../development/python-modules/trustme { }; 9953 9954 trytond = callPackage ../development/python-modules/trytond { }; 9955 + 9956 + ttls = callPackage ../development/python-modules/ttls { }; 9957 9958 ttp = callPackage ../development/python-modules/ttp { }; 9959