Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
09be4e77 6ab169b9

+1026 -905
+1 -1
nixos/modules/misc/ids.nix
··· 229 229 grafana = 196; 230 230 skydns = 197; 231 231 # ripple-rest = 198; # unused, removed 2017-08-12 232 - nix-serve = 199; 232 + # nix-serve = 199; # unused, removed 2020-12-12 233 233 tvheadend = 200; 234 234 uwsgi = 201; 235 235 gitit = 202;
+7 -4
nixos/modules/services/monitoring/telegraf.nix
··· 25 25 default = []; 26 26 example = "/run/keys/telegraf.env"; 27 27 description = '' 28 - File to load as environment file. Environment variables 29 - from this file will be interpolated into the config file 30 - using envsubst with this syntax: 31 - <literal>$ENVIRONMENT ''${VARIABLE}</literal> 28 + File to load as environment file. Environment variables from this file 29 + will be interpolated into the config file using envsubst with this 30 + syntax: <literal>$ENVIRONMENT</literal> or <literal>''${VARIABLE}</literal>. 32 31 This is useful to avoid putting secrets into the nix store. 33 32 ''; 34 33 }; ··· 73 72 ExecReload="${pkgs.coreutils}/bin/kill -HUP $MAINPID"; 74 73 RuntimeDirectory = "telegraf"; 75 74 User = "telegraf"; 75 + Group = "telegraf"; 76 76 Restart = "on-failure"; 77 77 # for ping probes 78 78 AmbientCapabilities = [ "CAP_NET_RAW" ]; ··· 81 81 82 82 users.users.telegraf = { 83 83 uid = config.ids.uids.telegraf; 84 + group = "telegraf"; 84 85 description = "telegraf daemon user"; 85 86 }; 87 + 88 + users.groups.telegraf = {}; 86 89 }; 87 90 }
+2 -6
nixos/modules/services/networking/nix-serve.nix
··· 69 69 ExecStart = "${pkgs.nix-serve}/bin/nix-serve " + 70 70 "--listen ${cfg.bindAddress}:${toString cfg.port} ${cfg.extraParams}"; 71 71 User = "nix-serve"; 72 - Group = "nogroup"; 72 + Group = "nix-serve"; 73 + DynamicUser = true; 73 74 }; 74 - }; 75 - 76 - users.users.nix-serve = { 77 - description = "Nix-serve user"; 78 - uid = config.ids.uids.nix-serve; 79 75 }; 80 76 }; 81 77 }
+1
nixos/tests/all-tests.nix
··· 296 296 nginx-sandbox = handleTestOn ["x86_64-linux"] ./nginx-sandbox.nix {}; 297 297 nginx-sso = handleTest ./nginx-sso.nix {}; 298 298 nginx-variants = handleTest ./nginx-variants.nix {}; 299 + nix-serve = handleTest ./nix-ssh-serve.nix {}; 299 300 nix-ssh-serve = handleTest ./nix-ssh-serve.nix {}; 300 301 nixos-generate-config = handleTest ./nixos-generate-config.nix {}; 301 302 nomad = handleTest ./nomad.nix {};
+22
nixos/tests/nix-serve.nix
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: 2 + { 3 + name = "nix-serve"; 4 + machine = { pkgs, ... }: { 5 + services.nix-serve.enable = true; 6 + environment.systemPackages = [ 7 + pkgs.hello 8 + ]; 9 + }; 10 + testScript = let 11 + pkgHash = builtins.head ( 12 + builtins.match "${builtins.storeDir}/([^-]+).+" (toString pkgs.hello) 13 + ); 14 + in '' 15 + start_all() 16 + machine.wait_for_unit("nix-serve.service") 17 + machine.wait_for_open_port(5000) 18 + machine.succeed( 19 + "curl --fail -g http://0.0.0.0:5000/nar/${pkgHash}.nar -o /tmp/hello.nar" 20 + ) 21 + ''; 22 + })
+2 -2
pkgs/applications/networking/instant-messengers/deltachat-electron/default.nix
··· 2 2 3 3 let 4 4 pname = "deltachat-electron"; 5 - version = "1.15.5"; 5 + version = "1.20.3"; 6 6 name = "${pname}-${version}"; 7 7 8 8 src = fetchurl { 9 9 url = "https://download.delta.chat/desktop/v${version}/DeltaChat-${version}.AppImage"; 10 - sha256 = "sha256-BTGwgC0zSr1tq/X4v/fS/12E7/mGVYQ0m+Bt6o7VL4o="; 10 + sha256 = "sha256-u0YjaXb+6BOBWaZANPcaxp7maqlBWAtecSsCGbr67dk="; 11 11 }; 12 12 13 13 appimageContents = appimageTools.extract { inherit name src; };
+12 -11
pkgs/applications/science/math/pcalc/default.nix
··· 1 - { lib, stdenv, fetchgit, bison, flex }: 2 - 3 - with lib; 1 + { lib, stdenv, fetchFromGitHub, bison, flex }: 4 2 5 3 stdenv.mkDerivation rec { 6 4 pname = "pcalc"; 7 - version = "20141224"; 5 + version = "20181202"; 8 6 9 - src = fetchgit { 10 - url = "git://git.code.sf.net/p/pcalc/code"; 11 - rev = "181d60d3c880da4344fef7138065943eb3b9255f"; 12 - sha256 = "1hd5bh20j5xzvv6qa0fmzmv0h8sf38r7zgi7y0b6nk17pjq33v90"; 7 + src = fetchFromGitHub { 8 + owner = "vapier"; 9 + repo = "pcalc"; 10 + rev = "d93be9e19ecc0b2674cf00ec91cbb79d32ccb01d"; 11 + sha256 = "sha256-m4xdsEJGKxLgp/d5ipxQ+cKG3z7rlvpPL6hELnDu6Hk="; 13 12 }; 14 13 15 14 makeFlags = [ "DESTDIR= BINDIR=$(out)/bin" ]; 16 - buildInputs = [ bison flex ]; 15 + nativeBuildInputs = [ bison flex ]; 16 + 17 + enableParallelBuilding = true; 17 18 18 - meta = { 19 - homepage = "http://pcalc.sourceforge.net/"; 19 + meta = with lib; { 20 + homepage = "https://vapier.github.io/pcalc/"; 20 21 description = "Programmer's calculator"; 21 22 license = licenses.gpl2; 22 23 maintainers = with lib.maintainers; [ ftrvxmtrx ];
+2
pkgs/desktops/lxde/core/lxappearance/default.nix
··· 5 5 , libX11 6 6 , gtk2 7 7 , gtk3 8 + , wrapGAppsHook 8 9 , withGtk3 ? true 9 10 }: 10 11 ··· 20 21 nativeBuildInputs = [ 21 22 pkg-config 22 23 intltool 24 + wrapGAppsHook 23 25 ]; 24 26 25 27 buildInputs = [
+13 -1
pkgs/development/node-packages/default.nix
··· 14 14 ''; 15 15 }; 16 16 17 + autoprefixer = super.autoprefixer.override { 18 + nativeBuildInputs = [ pkgs.makeWrapper ]; 19 + postInstall = '' 20 + wrapProgram "$out/bin/autoprefixer" \ 21 + --prefix NODE_PATH : ${self.postcss}/lib/node_modules 22 + ''; 23 + passthru.tests = { 24 + simple-execution = pkgs.callPackage ./package-tests/autoprefixer.nix { inherit (self) autoprefixer; }; 25 + }; 26 + }; 27 + 17 28 aws-azure-login = super.aws-azure-login.override { 18 29 meta.platforms = pkgs.lib.platforms.linux; 19 30 nativeBuildInputs = [ pkgs.makeWrapper ]; ··· 262 273 nativeBuildInputs = [ pkgs.makeWrapper ]; 263 274 postInstall = '' 264 275 wrapProgram "$out/bin/postcss" \ 265 - --prefix NODE_PATH : ${self.postcss}/lib/node_modules 276 + --prefix NODE_PATH : ${self.postcss}/lib/node_modules \ 277 + --prefix NODE_PATH : ${self.autoprefixer}/lib/node_modules 266 278 ''; 267 279 meta.mainProgram = "postcss"; 268 280 };
+1
pkgs/development/node-packages/node-packages.json
··· 13 13 , "@webassemblyjs/wast-refmt" 14 14 , "alloy" 15 15 , "asar" 16 + , "autoprefixer" 16 17 , "aws-azure-login" 17 18 , "balanceofsatoshis" 18 19 , "bash-language-server"
+925 -877
pkgs/development/node-packages/node-packages.nix
··· 2047 2047 sha512 = "8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg=="; 2048 2048 }; 2049 2049 }; 2050 + "@eslint/eslintrc-0.4.3" = { 2051 + name = "_at_eslint_slash_eslintrc"; 2052 + packageName = "@eslint/eslintrc"; 2053 + version = "0.4.3"; 2054 + src = fetchurl { 2055 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.4.3.tgz"; 2056 + sha512 = "J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw=="; 2057 + }; 2058 + }; 2050 2059 "@exodus/schemasafe-1.0.0-rc.3" = { 2051 2060 name = "_at_exodus_slash_schemasafe"; 2052 2061 packageName = "@exodus/schemasafe"; ··· 2074 2083 sha512 = "Ydf4LidRB/EBI+YrB+cVLqIseiRfjUI/AeHBgjGMtq3GroraDu81OV7zqophRgupngoL3iS3JUMDMnxO7g39qA=="; 2075 2084 }; 2076 2085 }; 2077 - "@expo/config-5.0.3" = { 2086 + "@expo/config-5.0.5" = { 2078 2087 name = "_at_expo_slash_config"; 2079 2088 packageName = "@expo/config"; 2080 - version = "5.0.3"; 2089 + version = "5.0.5"; 2081 2090 src = fetchurl { 2082 - url = "https://registry.npmjs.org/@expo/config/-/config-5.0.3.tgz"; 2083 - sha512 = "FMv2Jk/v3QZXaNN/mGKqj3wLvsbAa1RjtSTNhJ7QxMiSLl6vlmfMutmKyBiuzk2KDCbELR65JkDf15m4sAZCGg=="; 2091 + url = "https://registry.npmjs.org/@expo/config/-/config-5.0.5.tgz"; 2092 + sha512 = "r3/Y6mFhOmGqEfhhkUncP6/Qg8Aexg1G66TzDzd97iNezCY2LP9c2hwyN7SwhBv5l1YBNc2zeT556xXe0v4Qgw=="; 2084 2093 }; 2085 2094 }; 2086 - "@expo/config-plugins-3.0.3" = { 2095 + "@expo/config-plugins-3.0.5" = { 2087 2096 name = "_at_expo_slash_config-plugins"; 2088 2097 packageName = "@expo/config-plugins"; 2089 - version = "3.0.3"; 2098 + version = "3.0.5"; 2090 2099 src = fetchurl { 2091 - url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.0.3.tgz"; 2092 - sha512 = "+DWHd/2L3O+njVercxGSzcBUXMm5CSzdvIK+7dU+FRhoiF57y2NzBhfNQcReYx/EY1coBrYOsMtENPhV1tWoWQ=="; 2100 + url = "https://registry.npmjs.org/@expo/config-plugins/-/config-plugins-3.0.5.tgz"; 2101 + sha512 = "hHKr6i201QG16ms93XiXwcI1IhDYhITCRt7hWNO1UPxt2Cm7yDOG2YoGkauP0V/nAN3TEocDYbCrltGFBdoCTg=="; 2093 2102 }; 2094 2103 }; 2095 - "@expo/config-types-41.0.0" = { 2104 + "@expo/config-types-42.0.0" = { 2096 2105 name = "_at_expo_slash_config-types"; 2097 2106 packageName = "@expo/config-types"; 2098 - version = "41.0.0"; 2107 + version = "42.0.0"; 2099 2108 src = fetchurl { 2100 - url = "https://registry.npmjs.org/@expo/config-types/-/config-types-41.0.0.tgz"; 2101 - sha512 = "Ax0pHuY5OQaSrzplOkT9DdpdmNzaVDnq9VySb4Ujq7UJ4U4jriLy8u93W98zunOXpcu0iiKubPsqD6lCiq0pig=="; 2109 + url = "https://registry.npmjs.org/@expo/config-types/-/config-types-42.0.0.tgz"; 2110 + sha512 = "Rj02OMZke2MrGa/1Y/EScmR7VuWbDEHPJyvfFyyLbadUt+Yv6isCdeFzDt71I7gJlPR9T4fzixeYLrtXXOTq0w=="; 2102 2111 }; 2103 2112 }; 2104 - "@expo/dev-server-0.1.78" = { 2113 + "@expo/dev-server-0.1.80" = { 2105 2114 name = "_at_expo_slash_dev-server"; 2106 2115 packageName = "@expo/dev-server"; 2107 - version = "0.1.78"; 2116 + version = "0.1.80"; 2108 2117 src = fetchurl { 2109 - url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.78.tgz"; 2110 - sha512 = "GfJOvZPW5ezJifsXfxz9Lz7z9+r2UaEUlnsM0wt1EFSfHxDE1w90lkwldJws8D1PsfYxUx2WiV7GJGxi5jqSmw=="; 2118 + url = "https://registry.npmjs.org/@expo/dev-server/-/dev-server-0.1.80.tgz"; 2119 + sha512 = "+5HaLrd0QM8/CpqDhK9qDghZl1DkdqGz0QnSkPZDexnfZjTrEjPX8aXd0H5mv67W9ev1eUtoiABY6iU0wZ7czg=="; 2111 2120 }; 2112 2121 }; 2113 - "@expo/dev-tools-0.13.108" = { 2122 + "@expo/dev-tools-0.13.110" = { 2114 2123 name = "_at_expo_slash_dev-tools"; 2115 2124 packageName = "@expo/dev-tools"; 2116 - version = "0.13.108"; 2125 + version = "0.13.110"; 2117 2126 src = fetchurl { 2118 - url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.108.tgz"; 2119 - sha512 = "qrof+JzotgF2qHcwebeLxT7Qae2dMohdrGr3Lc0gAeaiVXTJmDc9qU+8dYpmszFTMLDMO6QiTXIF+JbCZjgCMg=="; 2127 + url = "https://registry.npmjs.org/@expo/dev-tools/-/dev-tools-0.13.110.tgz"; 2128 + sha512 = "heG6yXLwN87o0jMn90xstsl5GULNABtDx03/jPS6sy3Yqgf6SiqZpwXCWp+kZgSi+fWFE6TRAsk91eWhLRHjug=="; 2120 2129 }; 2121 2130 }; 2122 2131 "@expo/devcert-1.0.0" = { ··· 2128 2137 sha512 = "cahGyQCmpZmHpn2U04NR9KwsOIZy7Rhsw8Fg4q+A6563lIJxbkrgPnxq/O3NQAh3ohEvOXOOnoFx0b4yycCkpQ=="; 2129 2138 }; 2130 2139 }; 2131 - "@expo/image-utils-0.3.14" = { 2140 + "@expo/image-utils-0.3.15" = { 2132 2141 name = "_at_expo_slash_image-utils"; 2133 2142 packageName = "@expo/image-utils"; 2134 - version = "0.3.14"; 2143 + version = "0.3.15"; 2135 2144 src = fetchurl { 2136 - url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.14.tgz"; 2137 - sha512 = "n+JkLZ71CWuNKLVVsPTzMGRwmbeKiVQw/2b99Ro7znCKzJy3tyE5T2C6WBvYh/5h/hjg8TqEODjXXWucRIzMXA=="; 2145 + url = "https://registry.npmjs.org/@expo/image-utils/-/image-utils-0.3.15.tgz"; 2146 + sha512 = "uLJMNZ6ux5nBpLxxP1tUtFjpPG6stv0IGEBug6nVZfwQgR/BAsEao+RqZFqrcKhiXw2rIwhKhkspfWU5G6e1dw=="; 2138 2147 }; 2139 2148 }; 2140 - "@expo/json-file-8.2.30" = { 2149 + "@expo/json-file-8.2.31" = { 2141 2150 name = "_at_expo_slash_json-file"; 2142 2151 packageName = "@expo/json-file"; 2143 - version = "8.2.30"; 2152 + version = "8.2.31"; 2144 2153 src = fetchurl { 2145 - url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.30.tgz"; 2146 - sha512 = "vrgGyPEXBoFI5NY70IegusCSoSVIFV3T3ry4tjJg1MFQKTUlR7E0r+8g8XR6qC705rc2PawaZQjqXMAVtV6s2A=="; 2154 + url = "https://registry.npmjs.org/@expo/json-file/-/json-file-8.2.31.tgz"; 2155 + sha512 = "GvbL1tQnM3kGOM9hG+lwGbPJ/1tX+Sb8ZkqRrJlRpWGRa4DwnpLvIZHlWMb1ug/ye1QC7+RK/KwRZ7xcAXergA=="; 2147 2156 }; 2148 2157 }; 2149 - "@expo/metro-config-0.1.78" = { 2158 + "@expo/metro-config-0.1.80" = { 2150 2159 name = "_at_expo_slash_metro-config"; 2151 2160 packageName = "@expo/metro-config"; 2152 - version = "0.1.78"; 2161 + version = "0.1.80"; 2153 2162 src = fetchurl { 2154 - url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.78.tgz"; 2155 - sha512 = "DupLWdi1YaZoqMlF/jGca8COeaIMfs4LWHwAfgLKhMfZN7VXXg97njvmx/wg5S70n8vRu2XQmbNryKuD97jEFA=="; 2163 + url = "https://registry.npmjs.org/@expo/metro-config/-/metro-config-0.1.80.tgz"; 2164 + sha512 = "A2jFV4XWNaT/LR7oKkLMFbCNTpI7JWCbns1mmhjA3zKf8k03Kj2mLEoJMI17JtLtz0WuH9hvqr5OuaK7jlmegQ=="; 2156 2165 }; 2157 2166 }; 2158 - "@expo/osascript-2.0.28" = { 2167 + "@expo/osascript-2.0.29" = { 2159 2168 name = "_at_expo_slash_osascript"; 2160 2169 packageName = "@expo/osascript"; 2161 - version = "2.0.28"; 2170 + version = "2.0.29"; 2162 2171 src = fetchurl { 2163 - url = "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.28.tgz"; 2164 - sha512 = "+0R/+DK/kTjFmkFShPlwowO3Ro0X0nQ3F7uRaOsXomZVjvrjSaOQOlFYRDr0Ci3pbEWS8MGUhlC7GXlba4VsTw=="; 2172 + url = "https://registry.npmjs.org/@expo/osascript/-/osascript-2.0.29.tgz"; 2173 + sha512 = "R0DtZY0NOGCwd+JHS/OO6I/Jkg7acpHAqFFDuwCPfEPgL9HJPr1fKc1rTuMYE7+der5/Pe1EXlo1/c3GFYlHxw=="; 2165 2174 }; 2166 2175 }; 2167 - "@expo/package-manager-0.0.43" = { 2176 + "@expo/package-manager-0.0.44" = { 2168 2177 name = "_at_expo_slash_package-manager"; 2169 2178 packageName = "@expo/package-manager"; 2170 - version = "0.0.43"; 2179 + version = "0.0.44"; 2171 2180 src = fetchurl { 2172 - url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.43.tgz"; 2173 - sha512 = "Keguxd7fH1JbFd/4fU3PuN3h4usZ3NyRFXgi7ZjAYul8uKt+/XB2HBvliukdThGJKhypMeVWcNYWuLCUm74B1Q=="; 2181 + url = "https://registry.npmjs.org/@expo/package-manager/-/package-manager-0.0.44.tgz"; 2182 + sha512 = "Yw8gHc1+kt64VXcUtrZ3w6ljy7Xxb5P0YY5acZiAaW6cdeOYtkeCtYcKrCAWlQaGdg8mYOWtfPEF1Ydy8IOjpg=="; 2174 2183 }; 2175 2184 }; 2176 2185 "@expo/plist-0.0.13" = { ··· 2182 2191 sha512 = "zGPSq9OrCn7lWvwLLHLpHUUq2E40KptUFXn53xyZXPViI0k9lbApcR9KlonQZ95C+ELsf0BQ3gRficwK92Ivcw=="; 2183 2192 }; 2184 2193 }; 2185 - "@expo/prebuild-config-2.0.3" = { 2194 + "@expo/prebuild-config-2.0.5" = { 2186 2195 name = "_at_expo_slash_prebuild-config"; 2187 2196 packageName = "@expo/prebuild-config"; 2188 - version = "2.0.3"; 2197 + version = "2.0.5"; 2189 2198 src = fetchurl { 2190 - url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.0.3.tgz"; 2191 - sha512 = "ruZHhdEB0nv7mHwssUFXeYeGQ8Atfeben0CdO461cmjQ/CwxmlusrkFdGfMucj5CocR9WujBr/nIMvfm4FIDIA=="; 2199 + url = "https://registry.npmjs.org/@expo/prebuild-config/-/prebuild-config-2.0.5.tgz"; 2200 + sha512 = "TTqKtfnavnlNSMKsdAVfR8bNOYQrR2WM6QpyOISgT9Cuu11ykxMbrmFEGazvIIGmYJhh6f9+CVwoqoZbf9hH7Q=="; 2192 2201 }; 2193 2202 }; 2194 2203 "@expo/results-1.0.0" = { ··· 2200 2209 sha512 = "qECzzXX5oJot3m2Gu9pfRDz50USdBieQVwYAzeAtQRUTD3PVeTK1tlRUoDcrK8PSruDLuVYdKkLebX4w/o55VA=="; 2201 2210 }; 2202 2211 }; 2203 - "@expo/schemer-1.3.29" = { 2212 + "@expo/schemer-1.3.30" = { 2204 2213 name = "_at_expo_slash_schemer"; 2205 2214 packageName = "@expo/schemer"; 2206 - version = "1.3.29"; 2215 + version = "1.3.30"; 2207 2216 src = fetchurl { 2208 - url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.29.tgz"; 2209 - sha512 = "7Ch3c39xZunAo/yv8lj62pc9m5jmKKeyCrz7wKe4p3dETvcvLpqaaxl8ylWm//Nok27D290y1q/pE5i12KA+Pg=="; 2217 + url = "https://registry.npmjs.org/@expo/schemer/-/schemer-1.3.30.tgz"; 2218 + sha512 = "RYg6eiz2i3ETGlydUejszHoKkj9OaCedp3eVVr3065DY2MYTPoPwyfapU8CBljIJBeKpW9tc/Yvr9ZJbXibkVg=="; 2219 + }; 2220 + }; 2221 + "@expo/sdk-runtime-versions-1.0.0" = { 2222 + name = "_at_expo_slash_sdk-runtime-versions"; 2223 + packageName = "@expo/sdk-runtime-versions"; 2224 + version = "1.0.0"; 2225 + src = fetchurl { 2226 + url = "https://registry.npmjs.org/@expo/sdk-runtime-versions/-/sdk-runtime-versions-1.0.0.tgz"; 2227 + sha512 = "Doz2bfiPndXYFPMRwPyGa1k5QaKDVpY806UJj570epIiMzWaYyCtobasyfC++qfIXVb5Ocy7r3tP9d62hAQ7IQ=="; 2210 2228 }; 2211 2229 }; 2212 2230 "@expo/simple-spinner-1.0.2" = { ··· 2227 2245 sha512 = "LB7jWkqrHo+5fJHNrLAFdimuSXQ2MQ4lA7SQW5bf/HbsXuV2VrT/jN/M8f/KoWt0uJMGN4k/j7Opx4AvOOxSew=="; 2228 2246 }; 2229 2247 }; 2230 - "@expo/webpack-config-0.12.82" = { 2248 + "@expo/webpack-config-0.13.1" = { 2231 2249 name = "_at_expo_slash_webpack-config"; 2232 2250 packageName = "@expo/webpack-config"; 2233 - version = "0.12.82"; 2251 + version = "0.13.1"; 2234 2252 src = fetchurl { 2235 - url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.12.82.tgz"; 2236 - sha512 = "fQ8efRIbPYOF5ZtofXyxkUPwk8J/k0sPUSCXS/a9ZCYBIWiLbFeKpJTDiZCraZ7lzZQIVwllpNi+LjcqpzEjfA=="; 2253 + url = "https://registry.npmjs.org/@expo/webpack-config/-/webpack-config-0.13.1.tgz"; 2254 + sha512 = "OaTtB5nQp4Vqxx+ORDIn7ROL4yEqQBFYPp3TnPVKi9AxOOxqjatxvcIUreDJlb2r9G+Eeub9dW0DSF6ETtBnGg=="; 2237 2255 }; 2238 2256 }; 2239 2257 "@expo/xcpretty-3.1.4" = { ··· 2713 2731 sha512 = "QD1PhQk+s31P1ixsX0H0Suoupp3VMXzIVMSwobR3F3MSUO2YCV0B7xqLcUw/Bh8yuvd3LhpyqLQWTNcRmp6IdQ=="; 2714 2732 }; 2715 2733 }; 2716 - "@hapi/address-4.1.0" = { 2717 - name = "_at_hapi_slash_address"; 2718 - packageName = "@hapi/address"; 2719 - version = "4.1.0"; 2720 - src = fetchurl { 2721 - url = "https://registry.npmjs.org/@hapi/address/-/address-4.1.0.tgz"; 2722 - sha512 = "SkszZf13HVgGmChdHo/PxchnSaCJ6cetVqLzyciudzZRT0jcOouIF/Q93mgjw8cce+D+4F4C1Z/WrfFN+O3VHQ=="; 2723 - }; 2724 - }; 2725 2734 "@hapi/bourne-1.3.2" = { 2726 2735 name = "_at_hapi_slash_bourne"; 2727 2736 packageName = "@hapi/bourne"; ··· 2731 2740 sha512 = "1dVNHT76Uu5N3eJNTYcvxee+jzX4Z9lfciqRRHCU27ihbUcYi+iSc2iml5Ke1LXe1SyJCLA0+14Jh4tXJgOppA=="; 2732 2741 }; 2733 2742 }; 2734 - "@hapi/formula-2.0.0" = { 2743 + "@hapi/formula-1.2.0" = { 2735 2744 name = "_at_hapi_slash_formula"; 2736 2745 packageName = "@hapi/formula"; 2737 - version = "2.0.0"; 2746 + version = "1.2.0"; 2738 2747 src = fetchurl { 2739 - url = "https://registry.npmjs.org/@hapi/formula/-/formula-2.0.0.tgz"; 2740 - sha512 = "V87P8fv7PI0LH7LiVi8Lkf3x+KCO7pQozXRssAHNXXL9L1K+uyu4XypLXwxqVDKgyQai6qj3/KteNlrqDx4W5A=="; 2748 + url = "https://registry.npmjs.org/@hapi/formula/-/formula-1.2.0.tgz"; 2749 + sha512 = "UFbtbGPjstz0eWHb+ga/GM3Z9EzqKXFWIbSOFURU0A/Gku0Bky4bCk9/h//K2Xr3IrCfjFNhMm4jyZ5dbCewGA=="; 2741 2750 }; 2742 2751 }; 2743 2752 "@hapi/hoek-8.5.1" = { ··· 2767 2776 sha512 = "entf8ZMOK8sc+8YfeOlM8pCfg3b5+WZIKBfUaaJT8UsjAAPjartzxIYm3TIbjvA4u+u++KbcXD38k682nVHDAQ=="; 2768 2777 }; 2769 2778 }; 2770 - "@hapi/joi-17.1.1" = { 2779 + "@hapi/joi-16.1.8" = { 2771 2780 name = "_at_hapi_slash_joi"; 2772 2781 packageName = "@hapi/joi"; 2773 - version = "17.1.1"; 2782 + version = "16.1.8"; 2774 2783 src = fetchurl { 2775 - url = "https://registry.npmjs.org/@hapi/joi/-/joi-17.1.1.tgz"; 2776 - sha512 = "p4DKeZAoeZW4g3u7ZeRo+vCDuSDgSvtsB/NpfjXEHTUjSeINAi/RrVOWiVQ1isaoLzMvFEhe8n5065mQq1AdQg=="; 2784 + url = "https://registry.npmjs.org/@hapi/joi/-/joi-16.1.8.tgz"; 2785 + sha512 = "wAsVvTPe+FwSrsAurNt5vkg3zo+TblvC5Bb1zMVK6SJzZqw9UrJnexxR+76cpePmtUZKHAPxcQ2Bf7oVHyahhg=="; 2777 2786 }; 2778 2787 }; 2779 - "@hapi/pinpoint-2.0.0" = { 2788 + "@hapi/pinpoint-1.0.2" = { 2780 2789 name = "_at_hapi_slash_pinpoint"; 2781 2790 packageName = "@hapi/pinpoint"; 2782 - version = "2.0.0"; 2791 + version = "1.0.2"; 2783 2792 src = fetchurl { 2784 - url = "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-2.0.0.tgz"; 2785 - sha512 = "vzXR5MY7n4XeIvLpfl3HtE3coZYO4raKXW766R6DZw/6aLqR26iuZ109K7a0NtF2Db0jxqh7xz2AxkUwpUFybw=="; 2793 + url = "https://registry.npmjs.org/@hapi/pinpoint/-/pinpoint-1.0.2.tgz"; 2794 + sha512 = "dtXC/WkZBfC5vxscazuiJ6iq4j9oNx1SHknmIr8hofarpKUZKmlUVYVIhNVzIEgK5Wrc4GMHL5lZtt1uS2flmQ=="; 2786 2795 }; 2787 2796 }; 2788 2797 "@hapi/topo-3.1.6" = { ··· 3062 3071 src = fetchurl { 3063 3072 url = "https://registry.npmjs.org/@jest/types/-/types-25.5.0.tgz"; 3064 3073 sha512 = "OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw=="; 3074 + }; 3075 + }; 3076 + "@jest/types-26.6.2" = { 3077 + name = "_at_jest_slash_types"; 3078 + packageName = "@jest/types"; 3079 + version = "26.6.2"; 3080 + src = fetchurl { 3081 + url = "https://registry.npmjs.org/@jest/types/-/types-26.6.2.tgz"; 3082 + sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 3065 3083 }; 3066 3084 }; 3067 3085 "@jimp/bmp-0.12.1" = { ··· 3451 3469 sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="; 3452 3470 }; 3453 3471 }; 3454 - "@leichtgewicht/ip-codec-2.0.2" = { 3472 + "@leichtgewicht/ip-codec-2.0.3" = { 3455 3473 name = "_at_leichtgewicht_slash_ip-codec"; 3456 3474 packageName = "@leichtgewicht/ip-codec"; 3457 - version = "2.0.2"; 3475 + version = "2.0.3"; 3458 3476 src = fetchurl { 3459 - url = "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.2.tgz"; 3460 - sha512 = "PjsLKLzJ0jWM1iM4xdYkrMyonAHP4kHGiXm81FRNfcnjToQA9UOknwZE28bxq0AGmEAMVBPSuuHurzla2wyYyA=="; 3477 + url = "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.3.tgz"; 3478 + sha512 = "nkalE/f1RvRGChwBnEIoBfSEYOXnCRdleKuv6+lePbMDrMZXeDQnqak5XDOeBgrPPyPfAdcCu/B5z+v3VhplGg=="; 3461 3479 }; 3462 3480 }; 3463 3481 "@lerna/add-4.0.0" = { ··· 4126 4144 sha512 = "mlRYq9FSsOd4m+3wZWatemn3hGFZPWNJ4JQOdrir4rrMK2PyIk26idKBoUWrqF3HJJHl+5GpRU+M0wEruJwecg=="; 4127 4145 }; 4128 4146 }; 4129 - "@nestjs/schematics-8.0.1" = { 4147 + "@nestjs/schematics-8.0.2" = { 4130 4148 name = "_at_nestjs_slash_schematics"; 4131 4149 packageName = "@nestjs/schematics"; 4132 - version = "8.0.1"; 4150 + version = "8.0.2"; 4133 4151 src = fetchurl { 4134 - url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.1.tgz"; 4135 - sha512 = "rD/eqpguJpjOVI4uK1MOpqC1vPz+XvC/xT1IYiWDFU9rdJMVhHC5maTKVs/RjkwYRmPzNRTWAoMV3yOD/jC+gw=="; 4152 + url = "https://registry.npmjs.org/@nestjs/schematics/-/schematics-8.0.2.tgz"; 4153 + sha512 = "iWtpXfn1Zh4Vm37BzY8OSJ60Y9TqNOjk8J+KLIwcql9EuP+0C/C4WUn+vIQMfmnut3MxRmAYFE2B/LFYrjGC5Q=="; 4136 4154 }; 4137 4155 }; 4138 4156 "@netflix/nerror-1.1.3" = { ··· 4225 4243 sha512 = "shUFM+l1ALeGCgy4Lag2wQzOD3zcHW0+HFdWXCRsvtjHdNwTMBnbYg7ztnWurwgMthwiQ1jiTmWr8hFrui7Vng=="; 4226 4244 }; 4227 4245 }; 4228 - "@netlify/plugins-list-2.19.2" = { 4246 + "@netlify/plugins-list-2.19.3" = { 4229 4247 name = "_at_netlify_slash_plugins-list"; 4230 4248 packageName = "@netlify/plugins-list"; 4231 - version = "2.19.2"; 4249 + version = "2.19.3"; 4232 4250 src = fetchurl { 4233 - url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-2.19.2.tgz"; 4234 - sha512 = "b1HONWSfqmkSExpelWjonK1plrKwoYxITXFZ0GnS8v3Ek+C8md+e4CvXVBnTCKEpqgERaiG6LQA9H8Tkm6nk5g=="; 4251 + url = "https://registry.npmjs.org/@netlify/plugins-list/-/plugins-list-2.19.3.tgz"; 4252 + sha512 = "Z2RNrNhO7fsNFmpUQ+eNawgtfHwbGH/4Hji2g+GCRYL7W60kgK5rsWxveky1Nrye45I2OQn/4ZGapKqB1IqTaw=="; 4235 4253 }; 4236 4254 }; 4237 4255 "@netlify/routing-local-proxy-0.30.2" = { ··· 4747 4765 sha512 = "t4fKikazahwNKmwD+CE/icHyuZldWvNMupJhjxdk9T/KxHFx3zCGjHT3MKavwYP6abzgAAm5WwzD1oHlmj7dyg=="; 4748 4766 }; 4749 4767 }; 4750 - "@ot-builder/bin-composite-types-1.0.10" = { 4768 + "@ot-builder/bin-composite-types-1.0.11" = { 4751 4769 name = "_at_ot-builder_slash_bin-composite-types"; 4752 4770 packageName = "@ot-builder/bin-composite-types"; 4753 - version = "1.0.10"; 4771 + version = "1.0.11"; 4754 4772 src = fetchurl { 4755 - url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.10.tgz"; 4756 - sha512 = "kDjxW+Lu3Gvzelw97S9NgjDH0g56w39fH3dJwH6mSg0RPeVpxWf4ZH1jZRxlRFLhCFCIW+RuDzdNc1PRXkfBTg=="; 4773 + url = "https://registry.npmjs.org/@ot-builder/bin-composite-types/-/bin-composite-types-1.0.11.tgz"; 4774 + sha512 = "EZaye0ulSh5+SVBSz8loz+EOT+wEhrn5hqL3mGYMVMIXHf/JNexwB1n/uffbENfmRQcFLp+GRlVhsEyw+k2HdA=="; 4757 4775 }; 4758 4776 }; 4759 - "@ot-builder/bin-util-1.0.10" = { 4777 + "@ot-builder/bin-util-1.0.11" = { 4760 4778 name = "_at_ot-builder_slash_bin-util"; 4761 4779 packageName = "@ot-builder/bin-util"; 4762 - version = "1.0.10"; 4780 + version = "1.0.11"; 4763 4781 src = fetchurl { 4764 - url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.10.tgz"; 4765 - sha512 = "hr3/6pGrZMBijEjPorRTBlu04sTcC0SzKYDQij5VhpDyIDyijiaEEVMjOyPqx/5Ty+vQRi+Ouclc0iADahY7Iw=="; 4782 + url = "https://registry.npmjs.org/@ot-builder/bin-util/-/bin-util-1.0.11.tgz"; 4783 + sha512 = "pH7MhJDe3WjlkPsbnUz+nLJedIpDhwqgCPKUDmyLeVaS+JD/+gRERRWDPycywzOwusHlHD6GBMDT68Phy9BuCw=="; 4766 4784 }; 4767 4785 }; 4768 - "@ot-builder/cli-help-shower-1.0.10" = { 4786 + "@ot-builder/cli-help-shower-1.0.11" = { 4769 4787 name = "_at_ot-builder_slash_cli-help-shower"; 4770 4788 packageName = "@ot-builder/cli-help-shower"; 4771 - version = "1.0.10"; 4789 + version = "1.0.11"; 4772 4790 src = fetchurl { 4773 - url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.10.tgz"; 4774 - sha512 = "3V/hx6UH/jKwyemYTmebFg7X23tP7r7WoLE8YnsxHPCd6OtoziTJ7QOTHWXjXZZRZOL542rPsGgGqk+5LND+2w=="; 4791 + url = "https://registry.npmjs.org/@ot-builder/cli-help-shower/-/cli-help-shower-1.0.11.tgz"; 4792 + sha512 = "vGn9lGxBBknfGLYQ97fUd6fujTkv8IcOUJtsAG6VlMeu4BdMUNsSeAWX7nA/ZWrKPblBSV9E/H8TbiLwLcOWwg=="; 4775 4793 }; 4776 4794 }; 4777 - "@ot-builder/cli-proc-1.0.10" = { 4795 + "@ot-builder/cli-proc-1.0.11" = { 4778 4796 name = "_at_ot-builder_slash_cli-proc"; 4779 4797 packageName = "@ot-builder/cli-proc"; 4780 - version = "1.0.10"; 4798 + version = "1.0.11"; 4781 4799 src = fetchurl { 4782 - url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.10.tgz"; 4783 - sha512 = "3bbWGzeD68FfEkRSWwnsYMnVR8G9a8mC2a53z9oo12EOgVD4QHbdg0fSMs3YZiXVELrbJnixgwd5CNxakKAIFw=="; 4800 + url = "https://registry.npmjs.org/@ot-builder/cli-proc/-/cli-proc-1.0.11.tgz"; 4801 + sha512 = "icbfgW3eXE7G7sK6MxIzyUkeCoJxW3UCVXCyhQKgs7MVgQo/xEl6Mj04YE2fz62L+IsTccEdvMIFJXWUPjw44g=="; 4784 4802 }; 4785 4803 }; 4786 - "@ot-builder/cli-shared-1.0.10" = { 4804 + "@ot-builder/cli-shared-1.0.11" = { 4787 4805 name = "_at_ot-builder_slash_cli-shared"; 4788 4806 packageName = "@ot-builder/cli-shared"; 4789 - version = "1.0.10"; 4807 + version = "1.0.11"; 4790 4808 src = fetchurl { 4791 - url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.10.tgz"; 4792 - sha512 = "MD2MAr8A4kuE9hIwOSXxxVf4Zq4ZaE0KTLRT9n7Pk4d4vxB2lgneAZdB/I8tpJ0eBqui4vYeFggm4kJOgEd4JQ=="; 4809 + url = "https://registry.npmjs.org/@ot-builder/cli-shared/-/cli-shared-1.0.11.tgz"; 4810 + sha512 = "PBdRmB3Mp5mHCxd889UJHq0eJwHUJiiSMY+M9VXfxgu4WxbA0NUY5IpiEs69RnfJhiSUjvdkiaWH5xJzB9+mdA=="; 4793 4811 }; 4794 4812 }; 4795 - "@ot-builder/common-impl-1.0.10" = { 4813 + "@ot-builder/common-impl-1.0.11" = { 4796 4814 name = "_at_ot-builder_slash_common-impl"; 4797 4815 packageName = "@ot-builder/common-impl"; 4798 - version = "1.0.10"; 4816 + version = "1.0.11"; 4799 4817 src = fetchurl { 4800 - url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.10.tgz"; 4801 - sha512 = "gtStJv1GGuG/P0JPfphzpjpWiVZMhiodgSThwBJQYvJqjY/xeNmr7i/yo2C2FcTJv8rQxaVt2mCSZKGpnUI74Q=="; 4818 + url = "https://registry.npmjs.org/@ot-builder/common-impl/-/common-impl-1.0.11.tgz"; 4819 + sha512 = "7FCjFJb32++fIlPpXzzuNZB7TtrwkYKB32VOBlVz/u/wGAI3DcQEeG4jqAIF9XOUb9jtISQUcEUj7YHDYdOKWQ=="; 4802 4820 }; 4803 4821 }; 4804 - "@ot-builder/errors-1.0.10" = { 4822 + "@ot-builder/errors-1.0.11" = { 4805 4823 name = "_at_ot-builder_slash_errors"; 4806 4824 packageName = "@ot-builder/errors"; 4807 - version = "1.0.10"; 4825 + version = "1.0.11"; 4808 4826 src = fetchurl { 4809 - url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.10.tgz"; 4810 - sha512 = "jrII0X2C+z/gTBxrN309ob65FsPNtm93nsWBaLYvP4Bc6dG49naFuhAKP4VIeom+TFrioKm4T/GW/lUc1Sn0oA=="; 4827 + url = "https://registry.npmjs.org/@ot-builder/errors/-/errors-1.0.11.tgz"; 4828 + sha512 = "hNMMJRVYNLgue0tYY2FKEk1RZmUKm4eY3CzoBOkhCNG7FAS1M2m2MGeE/TNaxxlJz3VTEiSXl1uMaFKXQLgrWw=="; 4811 4829 }; 4812 4830 }; 4813 - "@ot-builder/io-bin-cff-1.0.10" = { 4831 + "@ot-builder/io-bin-cff-1.0.11" = { 4814 4832 name = "_at_ot-builder_slash_io-bin-cff"; 4815 4833 packageName = "@ot-builder/io-bin-cff"; 4816 - version = "1.0.10"; 4834 + version = "1.0.11"; 4817 4835 src = fetchurl { 4818 - url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.10.tgz"; 4819 - sha512 = "zEHyCo6qL70JpTRwB1Z2n49gzx9/YouZn8uc/6UBvOB1SBUp3kypAYwpS3zYzPOWyJRPQGfJMIHtSCmqmXqSIg=="; 4836 + url = "https://registry.npmjs.org/@ot-builder/io-bin-cff/-/io-bin-cff-1.0.11.tgz"; 4837 + sha512 = "gcD/FhE6s6Xk2AIurJh8cXjwdB7N1hLhQFf8YkOGgZ4jX1lpSmm9Dx7GrwYx9iii7LodXBDVS5AJh4N+hpaESw=="; 4820 4838 }; 4821 4839 }; 4822 - "@ot-builder/io-bin-encoding-1.0.10" = { 4840 + "@ot-builder/io-bin-encoding-1.0.11" = { 4823 4841 name = "_at_ot-builder_slash_io-bin-encoding"; 4824 4842 packageName = "@ot-builder/io-bin-encoding"; 4825 - version = "1.0.10"; 4843 + version = "1.0.11"; 4826 4844 src = fetchurl { 4827 - url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.10.tgz"; 4828 - sha512 = "py4vmJF6eDbjhOanIG71OJ0BV+vdAr+HTYcY/s5kMNIvkLsS54ob3Z2W0KA05bnt9GuhAa22s3juVsFi61OrAg=="; 4845 + url = "https://registry.npmjs.org/@ot-builder/io-bin-encoding/-/io-bin-encoding-1.0.11.tgz"; 4846 + sha512 = "5ytVt41rCuyDKi6XCrKOIaW88xf8b3gTKzjSvTRvYcsK/0uqJocpdbB7OIGU2TqpUNVuEs3IktDpMBiUrcFjuw=="; 4829 4847 }; 4830 4848 }; 4831 - "@ot-builder/io-bin-ext-private-1.0.10" = { 4849 + "@ot-builder/io-bin-ext-private-1.0.11" = { 4832 4850 name = "_at_ot-builder_slash_io-bin-ext-private"; 4833 4851 packageName = "@ot-builder/io-bin-ext-private"; 4834 - version = "1.0.10"; 4852 + version = "1.0.11"; 4835 4853 src = fetchurl { 4836 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.10.tgz"; 4837 - sha512 = "iUQSRQIhiq2+jT/n/58vT5bm33dKBfMnoJZXm8B3jHPq4bo42jPI+8qUTZtlUQ9DlDvvbZh2nJp1Ooeg+3ZwXg=="; 4854 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ext-private/-/io-bin-ext-private-1.0.11.tgz"; 4855 + sha512 = "BwG9QBsPebZR1ycakpAYHc1zuCpKcpDr9pxp6D7kNSZAaZsosVinqI1cW0h/AbK99TYblI1MN4+FA2c4DJxWAg=="; 4838 4856 }; 4839 4857 }; 4840 - "@ot-builder/io-bin-font-1.0.10" = { 4858 + "@ot-builder/io-bin-font-1.0.11" = { 4841 4859 name = "_at_ot-builder_slash_io-bin-font"; 4842 4860 packageName = "@ot-builder/io-bin-font"; 4843 - version = "1.0.10"; 4861 + version = "1.0.11"; 4844 4862 src = fetchurl { 4845 - url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.10.tgz"; 4846 - sha512 = "sui/frjfKCh8+G7T2PxRc7BTwnYLZrCj4nW4lt8gMjsRNbik7Tw7nGO3R0egLdD01G5k6mu1TUl1NhjRaLjihg=="; 4863 + url = "https://registry.npmjs.org/@ot-builder/io-bin-font/-/io-bin-font-1.0.11.tgz"; 4864 + sha512 = "xtGq9iU48CUAB/xm+a9wsvWKd2K4K637SqRjc9y0jou0h9TZ3g9fDF6RRCva1VJkAPHT4gJes6wALMuoLb9lfg=="; 4847 4865 }; 4848 4866 }; 4849 - "@ot-builder/io-bin-glyph-store-1.0.10" = { 4867 + "@ot-builder/io-bin-glyph-store-1.0.11" = { 4850 4868 name = "_at_ot-builder_slash_io-bin-glyph-store"; 4851 4869 packageName = "@ot-builder/io-bin-glyph-store"; 4852 - version = "1.0.10"; 4870 + version = "1.0.11"; 4853 4871 src = fetchurl { 4854 - url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.10.tgz"; 4855 - sha512 = "hw7eUoml6PKYin0BRAudASjVvlAngeaDAfdQqL68aamZ9lLzwPx5bZ9wEEfqm3oIcRXOQw6q+UvdxJ5WQ7feAA=="; 4872 + url = "https://registry.npmjs.org/@ot-builder/io-bin-glyph-store/-/io-bin-glyph-store-1.0.11.tgz"; 4873 + sha512 = "ipBYDaX7jsLiaJgpbyrTxeLqCB55KZ3UumVfxxTt8AUEKT1m6PUnG9BvaLBzvZxyjBF0sfiJDVQaS+mznbVj0Q=="; 4856 4874 }; 4857 4875 }; 4858 - "@ot-builder/io-bin-layout-1.0.10" = { 4876 + "@ot-builder/io-bin-layout-1.0.11" = { 4859 4877 name = "_at_ot-builder_slash_io-bin-layout"; 4860 4878 packageName = "@ot-builder/io-bin-layout"; 4861 - version = "1.0.10"; 4879 + version = "1.0.11"; 4862 4880 src = fetchurl { 4863 - url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.10.tgz"; 4864 - sha512 = "EDtmQIgIFaVO8moA8cSaN86bgR9So56O6xC8SsrzyX6PvWO+KQmXMAiSkXFFv6Tb6MrauBEZEsv45K4sRoDG6g=="; 4881 + url = "https://registry.npmjs.org/@ot-builder/io-bin-layout/-/io-bin-layout-1.0.11.tgz"; 4882 + sha512 = "5oquyNtdX/hRmtnmcgvdy0rxFiC1sqjRIi+6ycPNtMvJx9Z7z5USplveTf14W53Iyr/qGBsbk0QfNmv++fWEiQ=="; 4865 4883 }; 4866 4884 }; 4867 - "@ot-builder/io-bin-metadata-1.0.10" = { 4885 + "@ot-builder/io-bin-metadata-1.0.11" = { 4868 4886 name = "_at_ot-builder_slash_io-bin-metadata"; 4869 4887 packageName = "@ot-builder/io-bin-metadata"; 4870 - version = "1.0.10"; 4888 + version = "1.0.11"; 4871 4889 src = fetchurl { 4872 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.10.tgz"; 4873 - sha512 = "jOqwS7l/W4arpp2FJfwjeIRTPsEU5eB8lTzRycxDTDxV7hZj9ZphrnuxVITIjlOmTB15LF6whBCtP6Hfa/L3qQ=="; 4890 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metadata/-/io-bin-metadata-1.0.11.tgz"; 4891 + sha512 = "JdUp6qrHAfaa8UsCOKnWRveUiQGqa7QYQaPNLKaOVKvzo6jdIKB5uELX+GOc6qQU5ktGIjRuCbKWq2jZxcZToQ=="; 4874 4892 }; 4875 4893 }; 4876 - "@ot-builder/io-bin-metric-1.0.10" = { 4894 + "@ot-builder/io-bin-metric-1.0.11" = { 4877 4895 name = "_at_ot-builder_slash_io-bin-metric"; 4878 4896 packageName = "@ot-builder/io-bin-metric"; 4879 - version = "1.0.10"; 4897 + version = "1.0.11"; 4880 4898 src = fetchurl { 4881 - url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.10.tgz"; 4882 - sha512 = "shTvXxon2iG+vlOYxSeJNn15aGOMaf7po7iakvnVIN77Jrl2tqO6h9ssKVeP6osD9R3PrljSVEDwTkK5AahhqQ=="; 4899 + url = "https://registry.npmjs.org/@ot-builder/io-bin-metric/-/io-bin-metric-1.0.11.tgz"; 4900 + sha512 = "5mjN6J6hOO7TDUazjI8Hl0eCkogLsod0N1u38UAVL4JmDAVEY6NCwYXVe0TDoNBRG17jfoOW+/xoz40uCI37AA=="; 4883 4901 }; 4884 4902 }; 4885 - "@ot-builder/io-bin-name-1.0.10" = { 4903 + "@ot-builder/io-bin-name-1.0.11" = { 4886 4904 name = "_at_ot-builder_slash_io-bin-name"; 4887 4905 packageName = "@ot-builder/io-bin-name"; 4888 - version = "1.0.10"; 4906 + version = "1.0.11"; 4889 4907 src = fetchurl { 4890 - url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.10.tgz"; 4891 - sha512 = "B0Q2JuBirG35g0DrKPyzRz3JAFefbW2QQrp5fo8eyXjFhxB6Q+65V9bvqCieGi85phnS8eBAMsslIbRjaVYojA=="; 4908 + url = "https://registry.npmjs.org/@ot-builder/io-bin-name/-/io-bin-name-1.0.11.tgz"; 4909 + sha512 = "SjeUgpDTPIqGo/lA7ACvk/L2SAIzzMfKs4WV+QYRh6hzN9IRfhoj2OYepxXpvInOiNj9FHqTzEnYz5l7mskqmw=="; 4892 4910 }; 4893 4911 }; 4894 - "@ot-builder/io-bin-sfnt-1.0.10" = { 4912 + "@ot-builder/io-bin-sfnt-1.0.11" = { 4895 4913 name = "_at_ot-builder_slash_io-bin-sfnt"; 4896 4914 packageName = "@ot-builder/io-bin-sfnt"; 4897 - version = "1.0.10"; 4915 + version = "1.0.11"; 4898 4916 src = fetchurl { 4899 - url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.10.tgz"; 4900 - sha512 = "yIQSbNyHp9G42JDzF9JKB0os69rhvtnvKPS+PVW45e2KvMBySnWtUx6QS9icFv9+qaHEFCIxik0xyDcoGt+fXw=="; 4917 + url = "https://registry.npmjs.org/@ot-builder/io-bin-sfnt/-/io-bin-sfnt-1.0.11.tgz"; 4918 + sha512 = "/AhSr/xsXEDY8mCVO+yJTmOKwaUjVuhKtJ9kZrJymV8I7xm1gJjdH+JdTPtikhm36Mc9WWC+KY/2zot+pN2PtQ=="; 4901 4919 }; 4902 4920 }; 4903 - "@ot-builder/io-bin-ttf-1.0.10" = { 4921 + "@ot-builder/io-bin-ttf-1.0.11" = { 4904 4922 name = "_at_ot-builder_slash_io-bin-ttf"; 4905 4923 packageName = "@ot-builder/io-bin-ttf"; 4906 - version = "1.0.10"; 4924 + version = "1.0.11"; 4907 4925 src = fetchurl { 4908 - url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.10.tgz"; 4909 - sha512 = "Z7SzRmk/j4hkUYQ8yN5iQgokpQ5/lVVxfAjC2G/q+5ZNfnMq1gyIIcY8IWVc0/YWOn3++qxbNr8eFk2v/+YJJA=="; 4926 + url = "https://registry.npmjs.org/@ot-builder/io-bin-ttf/-/io-bin-ttf-1.0.11.tgz"; 4927 + sha512 = "euZnFeumI9V21VmezT7yVNFYm2HuBJhWhy9JE8V9aaoIo2Qj5lVpMu+3WAuhCDp1qk2fs+o5JlI83lXrdWeWmQ=="; 4910 4928 }; 4911 4929 }; 4912 - "@ot-builder/ot-1.0.10" = { 4930 + "@ot-builder/ot-1.0.11" = { 4913 4931 name = "_at_ot-builder_slash_ot"; 4914 4932 packageName = "@ot-builder/ot"; 4915 - version = "1.0.10"; 4933 + version = "1.0.11"; 4916 4934 src = fetchurl { 4917 - url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.10.tgz"; 4918 - sha512 = "YPi9qrkYyfVPFbTPz7ZWMORZGXWpWpyDIlkPLp1wiSNfwEQWN908yU+NfxBZDY5C0BzxdDU0lSnCXTKSfS2KyA=="; 4935 + url = "https://registry.npmjs.org/@ot-builder/ot/-/ot-1.0.11.tgz"; 4936 + sha512 = "TARoyL9D+i6gEzIijuh2C4MG4rNjY+Jkk1L5yMM/cVnzhLTy4PY+bTkszf2GJgcNi8iH8+XL213oHUOcEN8gWg=="; 4919 4937 }; 4920 4938 }; 4921 - "@ot-builder/ot-encoding-1.0.10" = { 4939 + "@ot-builder/ot-encoding-1.0.11" = { 4922 4940 name = "_at_ot-builder_slash_ot-encoding"; 4923 4941 packageName = "@ot-builder/ot-encoding"; 4924 - version = "1.0.10"; 4942 + version = "1.0.11"; 4925 4943 src = fetchurl { 4926 - url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.10.tgz"; 4927 - sha512 = "YvH9Uq6xs06gGPnoBDwkhPdOaGTKvh4Dzmefu6yBTsdzD8FylQ6AqFgpSd1oRf9HS73Jjf8eQ0N21MvAsYweFQ=="; 4944 + url = "https://registry.npmjs.org/@ot-builder/ot-encoding/-/ot-encoding-1.0.11.tgz"; 4945 + sha512 = "Z6ZIuIq+R9E+2HpvrBsXVXTkjJLWWyJgBssTl1n5DRF8nIWIwmKufoCjMXHMtCCMHMK8jlDCCv8U3AAhPjvAZQ=="; 4928 4946 }; 4929 4947 }; 4930 - "@ot-builder/ot-ext-private-1.0.10" = { 4948 + "@ot-builder/ot-ext-private-1.0.11" = { 4931 4949 name = "_at_ot-builder_slash_ot-ext-private"; 4932 4950 packageName = "@ot-builder/ot-ext-private"; 4933 - version = "1.0.10"; 4951 + version = "1.0.11"; 4934 4952 src = fetchurl { 4935 - url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.10.tgz"; 4936 - sha512 = "rN5PYFzdITRVKMq/Ob5R/ehYjhfehTc84qQO8ZqAW/Er2EB0P5Zw3STK/ZDiCwOPnUSVlLl84D0u+R0dI77Acg=="; 4953 + url = "https://registry.npmjs.org/@ot-builder/ot-ext-private/-/ot-ext-private-1.0.11.tgz"; 4954 + sha512 = "7dOIKMYaAEgYj6FtKCxWFqctNhT05zAaCVRRh6QVfOrQf7cldxmIVHW76aHa27eHTWPdtXWBxtb3eA0BVbEzHA=="; 4937 4955 }; 4938 4956 }; 4939 - "@ot-builder/ot-glyphs-1.0.10" = { 4957 + "@ot-builder/ot-glyphs-1.0.11" = { 4940 4958 name = "_at_ot-builder_slash_ot-glyphs"; 4941 4959 packageName = "@ot-builder/ot-glyphs"; 4942 - version = "1.0.10"; 4960 + version = "1.0.11"; 4943 4961 src = fetchurl { 4944 - url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.10.tgz"; 4945 - sha512 = "89yFC/xjI9Ha3knR75GazNZAczn+9OXtL0kY9t6tiHTGPjMci2Y5zlp4HilwXW5SGQoD1o8cPK0A8BCrNgXyBw=="; 4962 + url = "https://registry.npmjs.org/@ot-builder/ot-glyphs/-/ot-glyphs-1.0.11.tgz"; 4963 + sha512 = "NuhRdeS6vJnV6HVUEUMKDrNxW1PHYS2IWRsz+Dtr2ffrQ/GXtX857MXeZPd8cTrH+i0arfQeIUJPY0ZRmvXlJA=="; 4946 4964 }; 4947 4965 }; 4948 - "@ot-builder/ot-layout-1.0.10" = { 4966 + "@ot-builder/ot-layout-1.0.11" = { 4949 4967 name = "_at_ot-builder_slash_ot-layout"; 4950 4968 packageName = "@ot-builder/ot-layout"; 4951 - version = "1.0.10"; 4969 + version = "1.0.11"; 4952 4970 src = fetchurl { 4953 - url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.10.tgz"; 4954 - sha512 = "Scc/bBwUk+3xbB3xaspxTq8goiWBBmFiD2DOlf23XLe6rSVkZ5+mbWybQhfUtzIhzQjfBooWutuKG/w7mbAC8w=="; 4971 + url = "https://registry.npmjs.org/@ot-builder/ot-layout/-/ot-layout-1.0.11.tgz"; 4972 + sha512 = "x2K3Nnv5WVyOZ6b23p0fOPB5oMqNuj8UyNZ7OCpgZTMTFEXjrIvnkuWpjnYRd6JfWXAYF0vfZdBMHd7F0l+Y4A=="; 4955 4973 }; 4956 4974 }; 4957 - "@ot-builder/ot-metadata-1.0.10" = { 4975 + "@ot-builder/ot-metadata-1.0.11" = { 4958 4976 name = "_at_ot-builder_slash_ot-metadata"; 4959 4977 packageName = "@ot-builder/ot-metadata"; 4960 - version = "1.0.10"; 4978 + version = "1.0.11"; 4961 4979 src = fetchurl { 4962 - url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.10.tgz"; 4963 - sha512 = "TDctk+kMgMD/+z9UNFcSyQfMlWCXrOmeNb8OHnBbovnonKALW0fSFeImirKH1UR6E3lPeGGhT4kMNdxAEZanYg=="; 4980 + url = "https://registry.npmjs.org/@ot-builder/ot-metadata/-/ot-metadata-1.0.11.tgz"; 4981 + sha512 = "yInNtU6UkmzXIGJYARl5VZcA63UOLP3xc6o0APkHwVQNN53e5nN35GFwaDbeaWYYe0uRq/7/bDzeVsqr2GaV0Q=="; 4964 4982 }; 4965 4983 }; 4966 - "@ot-builder/ot-name-1.0.10" = { 4984 + "@ot-builder/ot-name-1.0.11" = { 4967 4985 name = "_at_ot-builder_slash_ot-name"; 4968 4986 packageName = "@ot-builder/ot-name"; 4969 - version = "1.0.10"; 4987 + version = "1.0.11"; 4970 4988 src = fetchurl { 4971 - url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.10.tgz"; 4972 - sha512 = "L5IAWUkF7ZXsBDxXhr0cznc6XyZh8XJ+lJyWJBh7oqBnnwXYX1HFdBVImc4j+8A0c3nTwXtkep0De1al8etkhw=="; 4989 + url = "https://registry.npmjs.org/@ot-builder/ot-name/-/ot-name-1.0.11.tgz"; 4990 + sha512 = "opSvFhUgrveV+cpOhKFnD/nrfNj3pbW6Z1mem1Rz/oWnrkx73g8kgDyip+8acW5h3iulYHGWL3XsKVOm4UpKug=="; 4973 4991 }; 4974 4992 }; 4975 - "@ot-builder/ot-sfnt-1.0.10" = { 4993 + "@ot-builder/ot-sfnt-1.0.11" = { 4976 4994 name = "_at_ot-builder_slash_ot-sfnt"; 4977 4995 packageName = "@ot-builder/ot-sfnt"; 4978 - version = "1.0.10"; 4996 + version = "1.0.11"; 4979 4997 src = fetchurl { 4980 - url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.10.tgz"; 4981 - sha512 = "ny6E7Ii7tsRLqiPHahPmCgt5hp2B4qe6MTyowY/TRbJmXcIfzXPggh1t4GUqyn8jC97H5HFcZNrx7FNnqQDi9A=="; 4998 + url = "https://registry.npmjs.org/@ot-builder/ot-sfnt/-/ot-sfnt-1.0.11.tgz"; 4999 + sha512 = "w254e5eLINkwS00N0UY4UMTK4UCHN7/Oh8p7/e7INw6EaCR7Gg1j7VKnbU6Fldg2leHDQ939tkGSNIU6uHisKg=="; 4982 5000 }; 4983 5001 }; 4984 - "@ot-builder/ot-standard-glyph-namer-1.0.10" = { 5002 + "@ot-builder/ot-standard-glyph-namer-1.0.11" = { 4985 5003 name = "_at_ot-builder_slash_ot-standard-glyph-namer"; 4986 5004 packageName = "@ot-builder/ot-standard-glyph-namer"; 4987 - version = "1.0.10"; 5005 + version = "1.0.11"; 4988 5006 src = fetchurl { 4989 - url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.10.tgz"; 4990 - sha512 = "GtpuR7BHnfTQ8YMoaC9AyQZgj0LXj82nt95rOvirWez9KEO6dHSr6z7isE+jWlnq4cz6lG37XQ9cwJDLfDC4MQ=="; 5007 + url = "https://registry.npmjs.org/@ot-builder/ot-standard-glyph-namer/-/ot-standard-glyph-namer-1.0.11.tgz"; 5008 + sha512 = "bynoGWRfxaVhqF6SjQZn7Vo+ApmMePBQn7HRwcnsS3CxxSTzP+O9Z2FtoN7/NiaQiENWrciMkTsDY2VH6iBo4A=="; 4991 5009 }; 4992 5010 }; 4993 - "@ot-builder/prelude-1.0.10" = { 5011 + "@ot-builder/prelude-1.0.11" = { 4994 5012 name = "_at_ot-builder_slash_prelude"; 4995 5013 packageName = "@ot-builder/prelude"; 4996 - version = "1.0.10"; 5014 + version = "1.0.11"; 4997 5015 src = fetchurl { 4998 - url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.10.tgz"; 4999 - sha512 = "4KtMBNsyiuCoousOs5Q8tCkM3dC4jzgRHwftadB3LeTuLPllXFO0wl38RKKkOhrbjDFu30wUvmOEt4c3+URBlw=="; 5016 + url = "https://registry.npmjs.org/@ot-builder/prelude/-/prelude-1.0.11.tgz"; 5017 + sha512 = "BM1TmmUrGsA/goZ8RIGpjvw18nRDeFEWC7wFel/i4hFQuCKbfgfKixEDJ2iKzVXm6nGUl7/7xWZ0pfu3ij6tuA=="; 5000 5018 }; 5001 5019 }; 5002 - "@ot-builder/primitive-1.0.10" = { 5020 + "@ot-builder/primitive-1.0.11" = { 5003 5021 name = "_at_ot-builder_slash_primitive"; 5004 5022 packageName = "@ot-builder/primitive"; 5005 - version = "1.0.10"; 5023 + version = "1.0.11"; 5006 5024 src = fetchurl { 5007 - url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.10.tgz"; 5008 - sha512 = "+3iORh9ukSW94NL5Tdd/GyO0FmKancRgG7C1dHYTJEfI0sTdMdOz8Eyxrx4LEFdR94NDCdQfdA4X+2VClfrxvw=="; 5025 + url = "https://registry.npmjs.org/@ot-builder/primitive/-/primitive-1.0.11.tgz"; 5026 + sha512 = "Hh6QGMC0XuAfiLWl7Q0eZSAOoEqkO6BPO9d3OFAxaNg05ekRJBzVvtB3iSEkdigbmg1aZChTy4HDFRw9D5SmGw=="; 5009 5027 }; 5010 5028 }; 5011 - "@ot-builder/rectify-1.0.10" = { 5029 + "@ot-builder/rectify-1.0.11" = { 5012 5030 name = "_at_ot-builder_slash_rectify"; 5013 5031 packageName = "@ot-builder/rectify"; 5014 - version = "1.0.10"; 5032 + version = "1.0.11"; 5015 5033 src = fetchurl { 5016 - url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.10.tgz"; 5017 - sha512 = "6wetSzyXEFmOPttyfCE/5NqGw/NTVnqL9BTLnh8CcLxS5A4HsF41vjSuyXNjdBfpNPf34aLH4fdr408TuSobiA=="; 5034 + url = "https://registry.npmjs.org/@ot-builder/rectify/-/rectify-1.0.11.tgz"; 5035 + sha512 = "B3hzfmONslDbTtFqX+tKff6zlrDMVD1B0yyC44Sm8iP6OFt1HgPwNKyVUntEs3Wzod9SCCN/hOcRFAeaXTM5RA=="; 5018 5036 }; 5019 5037 }; 5020 - "@ot-builder/stat-glyphs-1.0.10" = { 5038 + "@ot-builder/stat-glyphs-1.0.11" = { 5021 5039 name = "_at_ot-builder_slash_stat-glyphs"; 5022 5040 packageName = "@ot-builder/stat-glyphs"; 5023 - version = "1.0.10"; 5041 + version = "1.0.11"; 5024 5042 src = fetchurl { 5025 - url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.10.tgz"; 5026 - sha512 = "dGIeJ2QI6dLrw/KzchzQasJmswMJyoGNDOVGPZhl1VWnjcFsxYwMZ1o14ds6GYSqU9laQKTM7V+FVY5hJdbY3w=="; 5043 + url = "https://registry.npmjs.org/@ot-builder/stat-glyphs/-/stat-glyphs-1.0.11.tgz"; 5044 + sha512 = "ldzOx2QtDKsqdQolgCM6cCRzCcdS/B46a4Emu3vuMRs2M0yNAoy4EzVkX6h0nEnTBcgq2NKFFL4BxWIG4la1ZQ=="; 5027 5045 }; 5028 5046 }; 5029 - "@ot-builder/trace-1.0.10" = { 5047 + "@ot-builder/trace-1.0.11" = { 5030 5048 name = "_at_ot-builder_slash_trace"; 5031 5049 packageName = "@ot-builder/trace"; 5032 - version = "1.0.10"; 5050 + version = "1.0.11"; 5033 5051 src = fetchurl { 5034 - url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.10.tgz"; 5035 - sha512 = "Vwj1JF8M4Z58uFm8m4rXlfB4h8Vbd1Z0zzLGBX6WKWoMl9psCafMOy1vnGHQOjaKxjRw/O/X8qo87alqiHxBEg=="; 5052 + url = "https://registry.npmjs.org/@ot-builder/trace/-/trace-1.0.11.tgz"; 5053 + sha512 = "feOrmdS9Tc0+lnXHtPsq2QfMpI4zQqsIOEBYzzGGK4UPrdwO1a7DhBLgOEJt1C8o7d+2QeLE8KJnB4NGgx6kHQ=="; 5036 5054 }; 5037 5055 }; 5038 - "@ot-builder/var-store-1.0.10" = { 5056 + "@ot-builder/var-store-1.0.11" = { 5039 5057 name = "_at_ot-builder_slash_var-store"; 5040 5058 packageName = "@ot-builder/var-store"; 5041 - version = "1.0.10"; 5059 + version = "1.0.11"; 5042 5060 src = fetchurl { 5043 - url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.10.tgz"; 5044 - sha512 = "TE1j/Ecrt3aFBl3/LpqazEXCJmrFgx0hZ5EXPkQUSI346F7DaZQR7qZv8D45C4tbjkiUkWrOwe4ZISVwTPiHsA=="; 5061 + url = "https://registry.npmjs.org/@ot-builder/var-store/-/var-store-1.0.11.tgz"; 5062 + sha512 = "kg1T34FaRepMJ7vgatiVSjScH1H9c2H87vPauNR6lft8oeMORUuowJyFIzeckfaKcUFm/0uip6H5zj8Bypu9Wg=="; 5045 5063 }; 5046 5064 }; 5047 - "@ot-builder/variance-1.0.10" = { 5065 + "@ot-builder/variance-1.0.11" = { 5048 5066 name = "_at_ot-builder_slash_variance"; 5049 5067 packageName = "@ot-builder/variance"; 5050 - version = "1.0.10"; 5068 + version = "1.0.11"; 5051 5069 src = fetchurl { 5052 - url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.10.tgz"; 5053 - sha512 = "f1q+fONxy+daHWZMxpkXMGmCJt8NPYnfbsS/Rvf5Z2rCa6iOLGhWgXPyBnOmJMBwI+Kxf96K8+x7Ld//L9WOmg=="; 5070 + url = "https://registry.npmjs.org/@ot-builder/variance/-/variance-1.0.11.tgz"; 5071 + sha512 = "p1VXo+2ZZl5SDMWPLTzz2rtIlfY3G3RgPDAdG4dwWPjH9PLtZlrWDLQR9SGmisAe3p1NIUQh82TD6X2a9XMnXA=="; 5054 5072 }; 5055 5073 }; 5056 5074 "@parcel/fs-1.11.0" = { ··· 5260 5278 sha512 = "+mtn9wjlB9NN2CNnnC/BRYtwdKBfSyyasPYraNAyvaV1occr/5NnB4CVzjEZipNHwYebQwcndGUmpFzxAUoqSA=="; 5261 5279 }; 5262 5280 }; 5263 - "@react-native-community/cli-debugger-ui-4.13.1" = { 5281 + "@react-native-community/cli-debugger-ui-5.0.1" = { 5264 5282 name = "_at_react-native-community_slash_cli-debugger-ui"; 5265 5283 packageName = "@react-native-community/cli-debugger-ui"; 5266 - version = "4.13.1"; 5284 + version = "5.0.1"; 5267 5285 src = fetchurl { 5268 - url = "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-4.13.1.tgz"; 5269 - sha512 = "UFnkg5RTq3s2X15fSkrWY9+5BKOFjihNSnJjTV2H5PtTUFbd55qnxxPw8CxSfK0bXb1IrSvCESprk2LEpqr5cg=="; 5286 + url = "https://registry.npmjs.org/@react-native-community/cli-debugger-ui/-/cli-debugger-ui-5.0.1.tgz"; 5287 + sha512 = "5gGKaaXYOVE423BUqxIfvfAVSj5Cg1cU/TpGbeg/iqpy2CfqyWqJB3tTuVUbOOiOvR5wbU8tti6pIi1pchJ+oA=="; 5270 5288 }; 5271 5289 }; 5272 - "@react-native-community/cli-server-api-4.9.0" = { 5290 + "@react-native-community/cli-server-api-5.0.1" = { 5273 5291 name = "_at_react-native-community_slash_cli-server-api"; 5274 5292 packageName = "@react-native-community/cli-server-api"; 5275 - version = "4.9.0"; 5293 + version = "5.0.1"; 5276 5294 src = fetchurl { 5277 - url = "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-4.9.0.tgz"; 5278 - sha512 = "lKBIXJjFLyu4+6Vhhj/QzD41aQGkVi8xWLqTYCgi26d61kjLuuZs0Xer02DPJK3+YADKExVdWrJzVHfJ7zYlTA=="; 5295 + url = "https://registry.npmjs.org/@react-native-community/cli-server-api/-/cli-server-api-5.0.1.tgz"; 5296 + sha512 = "OOxL+y9AOZayQzmSW+h5T54wQe+QBc/f67Y9QlWzzJhkKJdYx+S4VOooHoD5PFJzGbYaxhu2YF17p517pcEIIA=="; 5279 5297 }; 5280 5298 }; 5281 - "@react-native-community/cli-tools-4.13.0" = { 5299 + "@react-native-community/cli-tools-5.0.1" = { 5282 5300 name = "_at_react-native-community_slash_cli-tools"; 5283 5301 packageName = "@react-native-community/cli-tools"; 5284 - version = "4.13.0"; 5302 + version = "5.0.1"; 5285 5303 src = fetchurl { 5286 - url = "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-4.13.0.tgz"; 5287 - sha512 = "s4f489h5+EJksn4CfheLgv5PGOM0CDmK1UEBLw2t/ncWs3cW2VI7vXzndcd/WJHTv3GntJhXDcJMuL+Z2IAOgg=="; 5304 + url = "https://registry.npmjs.org/@react-native-community/cli-tools/-/cli-tools-5.0.1.tgz"; 5305 + sha512 = "XOX5w98oSE8+KnkMZZPMRT7I5TaP8fLbDl0tCu40S7Epz+Zz924n80fmdu6nUDIfPT1nV6yH1hmHmWAWTDOR+Q=="; 5288 5306 }; 5289 5307 }; 5290 5308 "@redocly/ajv-8.6.2" = { ··· 5366 5384 src = fetchurl { 5367 5385 url = "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-11.2.1.tgz"; 5368 5386 sha512 = "yc2n43jcqVyGE2sqV5/YCmocy9ArjVAP/BeXyTtADTBBX6V0e5UMqwO8CdQ0kzjb6zu5P1qMzsScCMRvE9OlVg=="; 5387 + }; 5388 + }; 5389 + "@rollup/plugin-replace-2.4.2" = { 5390 + name = "_at_rollup_slash_plugin-replace"; 5391 + packageName = "@rollup/plugin-replace"; 5392 + version = "2.4.2"; 5393 + src = fetchurl { 5394 + url = "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-2.4.2.tgz"; 5395 + sha512 = "IGcu+cydlUMZ5En85jxHH4qj2hta/11BHq95iHEyb2sbgiN0eCdzvUcHw5gt9pBL5lTi4JDYJ1acCoMGpTvEZg=="; 5369 5396 }; 5370 5397 }; 5371 5398 "@rollup/pluginutils-3.1.0" = { ··· 5476 5503 sha512 = "YAV5V/y+XIOfd+HEVeXfPWZb8C6QLruFk9tBivoX2roQLWVq145s4uxf8D0QioCueuRzkukHUS4JIj+KVoS34A=="; 5477 5504 }; 5478 5505 }; 5479 - "@serverless/platform-client-4.2.4" = { 5506 + "@serverless/platform-client-4.2.5" = { 5480 5507 name = "_at_serverless_slash_platform-client"; 5481 5508 packageName = "@serverless/platform-client"; 5482 - version = "4.2.4"; 5509 + version = "4.2.5"; 5483 5510 src = fetchurl { 5484 - url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-4.2.4.tgz"; 5485 - sha512 = "DMq4GfckQ+Us64NQZJOtdtKHA3PQU5FZNXwi7QdV5QaVw3PtLjLN65FD7t8PcZ9YmCwL7QOsrCfT5oPJBblBNg=="; 5511 + url = "https://registry.npmjs.org/@serverless/platform-client/-/platform-client-4.2.5.tgz"; 5512 + sha512 = "PqQptakqHs6DHVY3fCqyMqdaFSKgehvUGrobWBUhcsmovnGY1Fzw9s3uqnqt2jmaCICNzPn/hPN+P+JbsG7itA=="; 5486 5513 }; 5487 5514 }; 5488 5515 "@serverless/platform-client-china-2.2.0" = { ··· 5521 5548 sha512 = "cl5uPaGg72z0sCUpF0zsOhwYYUV72Gxc1FwFfxltO8hSvMeFDvwD7JrNE4kHcIcKRjwPGbSH0fdVPUpErZ8Mog=="; 5522 5549 }; 5523 5550 }; 5524 - "@serverless/utils-5.3.0" = { 5551 + "@serverless/utils-5.4.0" = { 5525 5552 name = "_at_serverless_slash_utils"; 5526 5553 packageName = "@serverless/utils"; 5527 - version = "5.3.0"; 5554 + version = "5.4.0"; 5528 5555 src = fetchurl { 5529 - url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.3.0.tgz"; 5530 - sha512 = "cUt1ZYXZ/6Khe/foCucqraRpaTtejc4mICWVjQynwaPaK86/3g4Afu4pV1kEumnbet7N0PLbi+SKr8SHTf6tNQ=="; 5556 + url = "https://registry.npmjs.org/@serverless/utils/-/utils-5.4.0.tgz"; 5557 + sha512 = "abEYhQ8Bgh48w/8uzvv8hlfOXsbkvTns3vuMU4THpb0nhbhqL7Y4AWf6z4wJFxcMd0yffkgUQWwSzYHwGJp3kA=="; 5531 5558 }; 5532 5559 }; 5533 5560 "@serverless/utils-china-1.1.4" = { ··· 5996 6023 src = fetchurl { 5997 6024 url = "https://registry.npmjs.org/@stylelint/postcss-markdown/-/postcss-markdown-0.36.2.tgz"; 5998 6025 sha512 = "2kGbqUVJUGE8dM+bMzXG/PYUWKkjLIkRLWNh39OaADkiabDRdw8ATFCgbMz5xdIcvwspPAluSL7uY+ZiTWdWmQ=="; 6026 + }; 6027 + }; 6028 + "@surma/rollup-plugin-off-main-thread-1.4.2" = { 6029 + name = "_at_surma_slash_rollup-plugin-off-main-thread"; 6030 + packageName = "@surma/rollup-plugin-off-main-thread"; 6031 + version = "1.4.2"; 6032 + src = fetchurl { 6033 + url = "https://registry.npmjs.org/@surma/rollup-plugin-off-main-thread/-/rollup-plugin-off-main-thread-1.4.2.tgz"; 6034 + sha512 = "yBMPqmd1yEJo/280PAMkychuaALyQ9Lkb5q1ck3mjJrFuEobIfhnQ4J3mbvBoISmR3SWMWV+cGB/I0lCQee79A=="; 5999 6035 }; 6000 6036 }; 6001 6037 "@szmarczak/http-timer-1.1.2" = { ··· 6808 6844 sha512 = "P/W9yOX/3oPZSpaYOCQzGqgCQRXn0FFO/V8bWrCQs+wLmvVVxk6CRBXALEvNs9OHIatlnlFokfhuDo2ug01ciw=="; 6809 6845 }; 6810 6846 }; 6847 + "@types/istanbul-reports-3.0.1" = { 6848 + name = "_at_types_slash_istanbul-reports"; 6849 + packageName = "@types/istanbul-reports"; 6850 + version = "3.0.1"; 6851 + src = fetchurl { 6852 + url = "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz"; 6853 + sha512 = "c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw=="; 6854 + }; 6855 + }; 6811 6856 "@types/jquery-3.5.6" = { 6812 6857 name = "_at_types_slash_jquery"; 6813 6858 packageName = "@types/jquery"; ··· 6961 7006 sha512 = "559S2XW9YMwHznROJ4WFhZJOerJPuxLfqOX+LIKukyLo2NbVgpULwXUsrBlCwhZ4+ACHgVAE23CC3RS52lFxwA=="; 6962 7007 }; 6963 7008 }; 6964 - "@types/mdast-3.0.4" = { 7009 + "@types/mdast-3.0.7" = { 6965 7010 name = "_at_types_slash_mdast"; 6966 7011 packageName = "@types/mdast"; 6967 - version = "3.0.4"; 7012 + version = "3.0.7"; 6968 7013 src = fetchurl { 6969 - url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.4.tgz"; 6970 - sha512 = "gIdhbLDFlspL53xzol2hVzrXAbzt71erJHoOwQZWssjaiouOotf03lNtMmFm9VfFkvnLWccSVjUAZGQ5Kqw+jA=="; 7014 + url = "https://registry.npmjs.org/@types/mdast/-/mdast-3.0.7.tgz"; 7015 + sha512 = "YwR7OK8aPmaBvMMUi+pZXBNoW2unbVbfok4YRqGMJBe1dpDlzpRkJrYEYmvjxgs5JhuQmKfDexrN98u941Zasg=="; 6971 7016 }; 6972 7017 }; 6973 7018 "@types/mime-1.3.2" = { ··· 7141 7186 sha512 = "7EIraBEyRHEe7CH+Fm1XvgqU6uwZN8Q7jppJGcqjROMT29qhAuuOxYB1uEY5UMYQKEmA5D+5tBnhdaPXSsLONA=="; 7142 7187 }; 7143 7188 }; 7144 - "@types/node-16.0.0" = { 7145 - name = "_at_types_slash_node"; 7146 - packageName = "@types/node"; 7147 - version = "16.0.0"; 7148 - src = fetchurl { 7149 - url = "https://registry.npmjs.org/@types/node/-/node-16.0.0.tgz"; 7150 - sha512 = "TmCW5HoZ2o2/z2EYi109jLqIaPIi9y/lc2LmDCWzuCi35bcaQ+OtUh6nwBiFK7SOu25FAU5+YKdqFZUwtqGSdg=="; 7151 - }; 7152 - }; 7153 - "@types/node-16.0.1" = { 7189 + "@types/node-16.3.2" = { 7154 7190 name = "_at_types_slash_node"; 7155 7191 packageName = "@types/node"; 7156 - version = "16.0.1"; 7192 + version = "16.3.2"; 7157 7193 src = fetchurl { 7158 - url = "https://registry.npmjs.org/@types/node/-/node-16.0.1.tgz"; 7159 - sha512 = "hBOx4SUlEPKwRi6PrXuTGw1z6lz0fjsibcWCM378YxsSu/6+C30L6CR49zIBKHiwNWCYIcOLjg4OHKZaFeLAug=="; 7194 + url = "https://registry.npmjs.org/@types/node/-/node-16.3.2.tgz"; 7195 + sha512 = "jJs9ErFLP403I+hMLGnqDRWT0RYKSvArxuBVh2veudHV7ifEC1WAmjJADacZ7mRbA2nWgHtn8xyECMAot0SkAw=="; 7160 7196 }; 7161 7197 }; 7162 - "@types/node-16.3.2" = { 7198 + "@types/node-16.3.3" = { 7163 7199 name = "_at_types_slash_node"; 7164 7200 packageName = "@types/node"; 7165 - version = "16.3.2"; 7201 + version = "16.3.3"; 7166 7202 src = fetchurl { 7167 - url = "https://registry.npmjs.org/@types/node/-/node-16.3.2.tgz"; 7168 - sha512 = "jJs9ErFLP403I+hMLGnqDRWT0RYKSvArxuBVh2veudHV7ifEC1WAmjJADacZ7mRbA2nWgHtn8xyECMAot0SkAw=="; 7203 + url = "https://registry.npmjs.org/@types/node/-/node-16.3.3.tgz"; 7204 + sha512 = "8h7k1YgQKxKXWckzFCMfsIwn0Y61UK6tlD6y2lOb3hTOIMlK3t9/QwHOhc81TwU+RMf0As5fj7NPjroERCnejQ=="; 7169 7205 }; 7170 7206 }; 7171 7207 "@types/node-6.14.13" = { ··· 7915 7951 sha512 = "B6PedV/H2kcGEAgnqncwjHe3E8fqUNXCLv1BsrNwkHHWQJXkDN7dFeuEB4oaucBOVbjhH7KGLJ6JAiXPE3S7xA=="; 7916 7952 }; 7917 7953 }; 7918 - "@vue/compiler-core-3.1.4" = { 7954 + "@vue/compiler-core-3.1.5" = { 7919 7955 name = "_at_vue_slash_compiler-core"; 7920 7956 packageName = "@vue/compiler-core"; 7921 - version = "3.1.4"; 7957 + version = "3.1.5"; 7922 7958 src = fetchurl { 7923 - url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.1.4.tgz"; 7924 - sha512 = "TnUz+1z0y74O/A4YKAbzsdUfamyHV73MihrEfvettWpm9bQKVoZd1nEmR1cGN9LsXWlwAvVQBetBlWdOjmQO5Q=="; 7959 + url = "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.1.5.tgz"; 7960 + sha512 = "TXBhFinoBaXKDykJzY26UEuQU1K07FOp/0Ie+OXySqqk0bS0ZO7Xvl7UmiTUPYcLrWbxWBR7Bs/y55AI0MNc2Q=="; 7925 7961 }; 7926 7962 }; 7927 - "@vue/compiler-dom-3.1.4" = { 7963 + "@vue/compiler-dom-3.1.5" = { 7928 7964 name = "_at_vue_slash_compiler-dom"; 7929 7965 packageName = "@vue/compiler-dom"; 7930 - version = "3.1.4"; 7966 + version = "3.1.5"; 7931 7967 src = fetchurl { 7932 - url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.1.4.tgz"; 7933 - sha512 = "3tG2ScHkghhUBuFwl9KgyZhrS8CPFZsO7hUDekJgIp5b1OMkROr4AvxHu6rRMl4WkyvYkvidFNBS2VfOnwa6Kw=="; 7968 + url = "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.1.5.tgz"; 7969 + sha512 = "ZsL3jqJ52OjGU/YiT/9XiuZAmWClKInZM2aFJh9gnsAPqOrj2JIELMbkIFpVKR/CrVO/f2VxfPiiQdQTr65jcQ=="; 7934 7970 }; 7935 7971 }; 7936 - "@vue/shared-3.1.4" = { 7972 + "@vue/shared-3.1.5" = { 7937 7973 name = "_at_vue_slash_shared"; 7938 7974 packageName = "@vue/shared"; 7939 - version = "3.1.4"; 7975 + version = "3.1.5"; 7940 7976 src = fetchurl { 7941 - url = "https://registry.npmjs.org/@vue/shared/-/shared-3.1.4.tgz"; 7942 - sha512 = "6O45kZAmkLvzGLToBxEz4lR2W6kXohCtebV2UxjH9GXjd8X9AhEn68FN9eNanFtWNzvgw1hqd6HkPRVQalqf7Q=="; 7977 + url = "https://registry.npmjs.org/@vue/shared/-/shared-3.1.5.tgz"; 7978 + sha512 = "oJ4F3TnvpXaQwZJNF3ZK+kLPHKarDmJjJ6jyzVNDKH9md1dptjC7lWR//jrGuLdek/U6iltWxqAnYOu8gCiOvA=="; 7943 7979 }; 7944 7980 }; 7945 7981 "@webassemblyjs/ast-1.11.1" = { ··· 9175 9211 sha512 = "cnUG4NSBiM4YFBxgZIj/In3/6KX+rQ2l2YPRVcvAMQGWEPKuXoPIhxzwqh31jA3IPbI4qEOp/5ILI4ynioXsGQ=="; 9176 9212 }; 9177 9213 }; 9178 - "ajv-8.6.1" = { 9214 + "ajv-8.6.2" = { 9179 9215 name = "ajv"; 9180 9216 packageName = "ajv"; 9181 - version = "8.6.1"; 9217 + version = "8.6.2"; 9182 9218 src = fetchurl { 9183 - url = "https://registry.npmjs.org/ajv/-/ajv-8.6.1.tgz"; 9184 - sha512 = "42VLtQUOLefAvKFAQIxIZDaThq6om/PrfP0CYk3/vn+y4BMNkKnbli8ON2QCiHov4KkzOSJ/xSoBJdayiiYvVQ=="; 9219 + url = "https://registry.npmjs.org/ajv/-/ajv-8.6.2.tgz"; 9220 + sha512 = "9807RlWAgT564wT+DjeyU5OFMPjmzxVobvDFmNAhY+5zD6A2ly3jDp6sgnfyDtlIQ+7H97oc/DGCzzfu9rjw9w=="; 9185 9221 }; 9186 9222 }; 9187 9223 "ajv-errors-1.0.1" = { ··· 11191 11227 sha512 = "tbMZ/Y2rRo6R6TTBODJXTiil+MXaoT6Qzotws3yvI1IWGpYxKo7N/3L06XB8ul8tCG0TigxIOY70SMICM70Ppg=="; 11192 11228 }; 11193 11229 }; 11194 - "aws-sdk-2.946.0" = { 11230 + "aws-sdk-2.948.0" = { 11195 11231 name = "aws-sdk"; 11196 11232 packageName = "aws-sdk"; 11197 - version = "2.946.0"; 11233 + version = "2.948.0"; 11198 11234 src = fetchurl { 11199 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.946.0.tgz"; 11200 - sha512 = "d0fbVNHdpoeszGUcxOV8m+/kLNxUfKP5QsGwaRjcQfvEokFmvdKsvw87LhepFOa00NaI4J3jt8AbsX4mvmcChg=="; 11201 - }; 11202 - }; 11203 - "aws-sdk-2.947.0" = { 11204 - name = "aws-sdk"; 11205 - packageName = "aws-sdk"; 11206 - version = "2.947.0"; 11207 - src = fetchurl { 11208 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.947.0.tgz"; 11209 - sha512 = "m58mW/0Yg2RnRCJSzWZS8JUMhoBQ4trjKf+uJ3bD24jeV+Nf6iIHQ1s4ogP2O2XXUreSRsJNe8l0cOPSOM37Lg=="; 11235 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.948.0.tgz"; 11236 + sha512 = "UJaCwccNaNNFtbhlvg+BmcaVWNI7RPonZA16nca0s3O+UnHm5y5H/nN6XpuJp+NUrxrLgTFaztPvjmBp5q6p+g=="; 11210 11237 }; 11211 11238 }; 11212 11239 "aws-sign2-0.6.0" = { ··· 11324 11351 src = fetchurl { 11325 11352 url = "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz"; 11326 11353 sha512 = "ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg=="; 11327 - }; 11328 - }; 11329 - "babel-extract-comments-1.0.0" = { 11330 - name = "babel-extract-comments"; 11331 - packageName = "babel-extract-comments"; 11332 - version = "1.0.0"; 11333 - src = fetchurl { 11334 - url = "https://registry.npmjs.org/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz"; 11335 - sha512 = "qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ=="; 11336 11354 }; 11337 11355 }; 11338 11356 "babel-helper-evaluate-path-0.5.0" = { ··· 11614 11632 sha1 = "0af32a9a6e13ca7a3fd5069e62d7b0f58d0d8946"; 11615 11633 }; 11616 11634 }; 11617 - "babel-plugin-syntax-object-rest-spread-6.13.0" = { 11618 - name = "babel-plugin-syntax-object-rest-spread"; 11619 - packageName = "babel-plugin-syntax-object-rest-spread"; 11620 - version = "6.13.0"; 11621 - src = fetchurl { 11622 - url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; 11623 - sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; 11624 - }; 11625 - }; 11626 11635 "babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0" = { 11627 11636 name = "babel-plugin-syntax-trailing-function-commas"; 11628 11637 packageName = "babel-plugin-syntax-trailing-function-commas"; ··· 11675 11684 src = fetchurl { 11676 11685 url = "https://registry.npmjs.org/babel-plugin-transform-minify-booleans/-/babel-plugin-transform-minify-booleans-6.9.4.tgz"; 11677 11686 sha1 = "acbb3e56a3555dd23928e4b582d285162dd2b198"; 11678 - }; 11679 - }; 11680 - "babel-plugin-transform-object-rest-spread-6.26.0" = { 11681 - name = "babel-plugin-transform-object-rest-spread"; 11682 - packageName = "babel-plugin-transform-object-rest-spread"; 11683 - version = "6.26.0"; 11684 - src = fetchurl { 11685 - url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz"; 11686 - sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06"; 11687 11687 }; 11688 11688 }; 11689 11689 "babel-plugin-transform-property-literals-6.9.4" = { ··· 16420 16420 sha512 = "vXTJhHebByxZn3lDvDJYw4lR5+uB3vuoHsuYA5AKuxRVn5wzzIfQKGLBmgdVRHKTJYeK5rvJcHnrd0Li49CFpg=="; 16421 16421 }; 16422 16422 }; 16423 - "color-3.1.3" = { 16423 + "color-3.2.0" = { 16424 16424 name = "color"; 16425 16425 packageName = "color"; 16426 - version = "3.1.3"; 16426 + version = "3.2.0"; 16427 16427 src = fetchurl { 16428 - url = "https://registry.npmjs.org/color/-/color-3.1.3.tgz"; 16429 - sha512 = "xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ=="; 16428 + url = "https://registry.npmjs.org/color/-/color-3.2.0.tgz"; 16429 + sha512 = "4ximSqKXLTQmYLJuvrRHtpOqniR+ASoaVK+Rxdy6ZpfsLvUqtIM7oGGgopRG+O4p9NRv/AfuVD3jsvdxyXqozQ=="; 16430 16430 }; 16431 16431 }; 16432 16432 "color-convert-1.9.3" = { ··· 16465 16465 sha512 = "dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA=="; 16466 16466 }; 16467 16467 }; 16468 - "color-string-1.5.5" = { 16468 + "color-string-1.6.0" = { 16469 16469 name = "color-string"; 16470 16470 packageName = "color-string"; 16471 - version = "1.5.5"; 16471 + version = "1.6.0"; 16472 16472 src = fetchurl { 16473 - url = "https://registry.npmjs.org/color-string/-/color-string-1.5.5.tgz"; 16474 - sha512 = "jgIoum0OfQfq9Whcfc2z/VhCNcmQjWbey6qBX0vqt7YICflUmBCh9E9CiQD5GSJ+Uehixm3NUwHVhqUAWRivZg=="; 16473 + url = "https://registry.npmjs.org/color-string/-/color-string-1.6.0.tgz"; 16474 + sha512 = "c/hGS+kRWJutUBEngKKmk4iH3sD59MBkoxVapS/0wgpCz2u7XsNloxknyvBhzwEs1IbV36D9PwqLPJ2DTu3vMA=="; 16475 16475 }; 16476 16476 }; 16477 16477 "color-support-1.1.3" = { ··· 17447 17447 sha1 = "0e790b3abfef90f6ecb77ae8585db9099caf7578"; 17448 17448 }; 17449 17449 }; 17450 - "contentful-management-7.29.0" = { 17450 + "contentful-management-7.30.0" = { 17451 17451 name = "contentful-management"; 17452 17452 packageName = "contentful-management"; 17453 - version = "7.29.0"; 17453 + version = "7.30.0"; 17454 17454 src = fetchurl { 17455 - url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.29.0.tgz"; 17456 - sha512 = "Wdyh+uaocvR2cim3NGEA43gX5Nw/rGTijE56zgjK2UFy0lg5Vm6p3wYetVTPO5cyTvnEWeoOIk9zJHUPaJtfCg=="; 17455 + url = "https://registry.npmjs.org/contentful-management/-/contentful-management-7.30.0.tgz"; 17456 + sha512 = "2aAIqLrxxCJt2bWg1LN+wxjYaevAHTsfZGkIPA5QRKK11WhpffrUMkTthbED6UWaY58BAM0TYXT3Z0s7nFu5zg=="; 17457 17457 }; 17458 17458 }; 17459 17459 "contentful-sdk-core-6.8.0" = { ··· 22037 22037 sha512 = "1sQ1DRtQGpglFhc3urD4olMJzt/wxlbnAAsf+WY2xHf5c50ZovivZvCXSpVgTOP9f4TzOMvelWyspyfhxQKHzQ=="; 22038 22038 }; 22039 22039 }; 22040 - "electron-to-chromium-1.3.776" = { 22040 + "electron-to-chromium-1.3.779" = { 22041 22041 name = "electron-to-chromium"; 22042 22042 packageName = "electron-to-chromium"; 22043 - version = "1.3.776"; 22043 + version = "1.3.779"; 22044 22044 src = fetchurl { 22045 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.776.tgz"; 22046 - sha512 = "V0w7eFSBoFPpdw4xexjVPZ770UDZIevSwkkj4W97XbE3IsCsTRFpa7/yXGZ88EOQAUEA09JMMsWK0xsw0kRAYw=="; 22045 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.779.tgz"; 22046 + sha512 = "nreave0y/1Qhmo8XtO6C/LpawNyC6U26+q7d814/e+tIqUK073pM+4xW7WUXyqCRa5K4wdxHmNMBAi8ap9nEew=="; 22047 22047 }; 22048 22048 }; 22049 22049 "electrum-client-git://github.com/janoside/electrum-client" = { ··· 23083 23083 sha512 = "VLqz80i3as3NdloY44BQSJpFw534L9Oh+6zJOUaViV4JPd+DaHwutqP7tcpkW3YiXbK6s05RZl7yl7cQn+lijg=="; 23084 23084 }; 23085 23085 }; 23086 + "eslint-7.31.0" = { 23087 + name = "eslint"; 23088 + packageName = "eslint"; 23089 + version = "7.31.0"; 23090 + src = fetchurl { 23091 + url = "https://registry.npmjs.org/eslint/-/eslint-7.31.0.tgz"; 23092 + sha512 = "vafgJpSh2ia8tnTkNUkwxGmnumgckLh5aAbLa1xRmIn9+owi8qBNGKL+B881kNKNTy7FFqTEkpNkUvmw0n6PkA=="; 23093 + }; 23094 + }; 23086 23095 "eslint-config-prettier-8.3.0" = { 23087 23096 name = "eslint-config-prettier"; 23088 23097 packageName = "eslint-config-prettier"; ··· 23875 23884 sha512 = "0FU2hZ5Hh6iQnarpRtQurM/aAvp3RIbfvgLHrcqJYzhXyV2KFruhuChf9NC6waAhiUR7FFtlugkI4p7f2Fqlow=="; 23876 23885 }; 23877 23886 }; 23878 - "executable-4.1.1" = { 23879 - name = "executable"; 23880 - packageName = "executable"; 23881 - version = "4.1.1"; 23882 - src = fetchurl { 23883 - url = "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz"; 23884 - sha512 = "8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg=="; 23885 - }; 23886 - }; 23887 23887 "exegesis-2.5.7" = { 23888 23888 name = "exegesis"; 23889 23889 packageName = "exegesis"; ··· 24001 24001 sha1 = "a793d3ac0cad4c6ab571e9968fbbab6cb2532929"; 24002 24002 }; 24003 24003 }; 24004 - "expo-pwa-0.0.88" = { 24004 + "expo-pwa-0.0.90" = { 24005 24005 name = "expo-pwa"; 24006 24006 packageName = "expo-pwa"; 24007 - version = "0.0.88"; 24007 + version = "0.0.90"; 24008 24008 src = fetchurl { 24009 - url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.88.tgz"; 24010 - sha512 = "lQuJKKv7P8RLovMoLd+cdTtny2ePIAmBahK1btjYkoOzzpZ+JlTkU/BumddlUajkow/jNpQKTr3XdZE5KgNFSw=="; 24009 + url = "https://registry.npmjs.org/expo-pwa/-/expo-pwa-0.0.90.tgz"; 24010 + sha512 = "0uVXBgpe4Vt3xBKgAu7mmT+TMxiRJHXtMcP7FhaAPv1LkCxDrtMuK+SYERRJlTYRLX/qA2yDIWix3ySzvpWWzA=="; 24011 24011 }; 24012 24012 }; 24013 24013 "express-2.5.11" = { ··· 25630 25630 sha512 = "jlbUu0XkbpXeXhan5xyTqVK1jmEKNxE8hpzznI3TThHTr76GiFwK0iRzhDo4KNy+S9h/KxHaqVhTP86vA6wHCg=="; 25631 25631 }; 25632 25632 }; 25633 - "flow-parser-0.155.0" = { 25633 + "flow-parser-0.155.1" = { 25634 25634 name = "flow-parser"; 25635 25635 packageName = "flow-parser"; 25636 - version = "0.155.0"; 25636 + version = "0.155.1"; 25637 25637 src = fetchurl { 25638 - url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.155.0.tgz"; 25639 - sha512 = "DegBwxIjw8ZmgLO9Qae/uSDWlioenV7mbfMoPem97y1OZVxlTAXNVHt5JthwrGLwk4kpmHQ3VRcp1Jxj84NcWw=="; 25638 + url = "https://registry.npmjs.org/flow-parser/-/flow-parser-0.155.1.tgz"; 25639 + sha512 = "EU55hHBilG20Qu80tMYrVjEIqB3FcXPPJwndNcf6UryvhiF74dQ2FX8zPV1LIpuvkW3P13wgZlsnG94oRihgpw=="; 25640 25640 }; 25641 25641 }; 25642 25642 "fluent-ffmpeg-2.1.2" = { ··· 26080 26080 sha512 = "X2KfTIV0cxIk3d7/2Pvp/pxL/xr2MV1WooyEzKtTWYSc1+52VF4YzjBTXqeOlSiZsPCxIBpDGfT9Dyo7WEY0DQ=="; 26081 26081 }; 26082 26082 }; 26083 + "fraction.js-4.1.1" = { 26084 + name = "fraction.js"; 26085 + packageName = "fraction.js"; 26086 + version = "4.1.1"; 26087 + src = fetchurl { 26088 + url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.1.tgz"; 26089 + sha512 = "MHOhvvxHTfRFpF1geTK9czMIZ6xclsEor2wkIGYYq+PxcQqT7vStJqjhe6S1TenZrMZzo+wlqOufBDVepUEgPg=="; 26090 + }; 26091 + }; 26083 26092 "fragment-cache-0.2.1" = { 26084 26093 name = "fragment-cache"; 26085 26094 packageName = "fragment-cache"; ··· 27764 27773 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 27765 27774 }; 27766 27775 }; 27767 - "google-gax-2.18.0" = { 27776 + "google-gax-2.19.0" = { 27768 27777 name = "google-gax"; 27769 27778 packageName = "google-gax"; 27770 - version = "2.18.0"; 27779 + version = "2.19.0"; 27771 27780 src = fetchurl { 27772 - url = "https://registry.npmjs.org/google-gax/-/google-gax-2.18.0.tgz"; 27773 - sha512 = "PosKicp9XjnMIBMFOWkUfmVVEY6T9EdEs4t24Z3s7t/NOiL7zQAHBuIdCZ5/voxPiZr4SbyCOHF59/KqDjS70A=="; 27781 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.19.0.tgz"; 27782 + sha512 = "2a6WY+p6YMVMmwXmkRqiLreXx67xHDZhkmflcL8aDUkl1csx9ywxEI01veoDXy6T1l0JJD6zLbl5TIbWimmXrw=="; 27774 27783 }; 27775 27784 }; 27776 27785 "google-p12-pem-3.1.0" = { ··· 29067 29076 src = fetchurl { 29068 29077 url = "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz"; 29069 29078 sha1 = "20bb7403d3cea398e91dc4710a8ff1b8274a25ed"; 29070 - }; 29071 - }; 29072 - "hoek-4.2.1" = { 29073 - name = "hoek"; 29074 - packageName = "hoek"; 29075 - version = "4.2.1"; 29076 - src = fetchurl { 29077 - url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz"; 29078 - sha512 = "QLg82fGkfnJ/4iy1xZ81/9SIJiq1NGFUMGs6ParyjBZr6jW2Ufj/snDqTHixNlHdPNwN2RLVD0Pi3igeK9+JfA=="; 29079 29079 }; 29080 29080 }; 29081 29081 "hogan.js-3.0.2" = { ··· 33066 33066 sha1 = "06d4912255093419477d425633606e0e90782967"; 33067 33067 }; 33068 33068 }; 33069 - "joi-11.4.0" = { 33070 - name = "joi"; 33071 - packageName = "joi"; 33072 - version = "11.4.0"; 33073 - src = fetchurl { 33074 - url = "https://registry.npmjs.org/joi/-/joi-11.4.0.tgz"; 33075 - sha512 = "O7Uw+w/zEWgbL6OcHbyACKSj0PkQeUgmehdoXVSxt92QFCq4+1390Rwh5moI2K/OgC7D8RHRZqHZxT2husMJHA=="; 33076 - }; 33077 - }; 33078 33069 "joi-17.4.1" = { 33079 33070 name = "joi"; 33080 33071 packageName = "joi"; ··· 35164 35155 sha512 = "tq7AAMpjQ9sl58pW/qis/vOBzN7MCQ4F4n+ox4VQhyv1qVA+P2LgJq36I1Y6b4RX68+hK48u1eHDzSt527fEXA=="; 35165 35156 }; 35166 35157 }; 35167 - "lightning-3.3.13" = { 35158 + "lightning-3.3.16" = { 35168 35159 name = "lightning"; 35169 35160 packageName = "lightning"; 35170 - version = "3.3.13"; 35161 + version = "3.3.16"; 35171 35162 src = fetchurl { 35172 - url = "https://registry.npmjs.org/lightning/-/lightning-3.3.13.tgz"; 35173 - sha512 = "sb2ll58VifSr82EBzppKO7H6Vwix/xiAJNmzWEym/mRApe9D2/eW/Fy8anpjICefPFmMRV1lovPUFHw+wuxF2Q=="; 35174 - }; 35175 - }; 35176 - "lightning-3.3.15" = { 35177 - name = "lightning"; 35178 - packageName = "lightning"; 35179 - version = "3.3.15"; 35180 - src = fetchurl { 35181 - url = "https://registry.npmjs.org/lightning/-/lightning-3.3.15.tgz"; 35182 - sha512 = "blbivgD+cHlwUbwMQmY9CVDaRAPCxrk8AKl/zr4F+P7Qqky4iKgm/aHmJ/4eGKa3caGftU3fR1q9pJh/mbRO2g=="; 35163 + url = "https://registry.npmjs.org/lightning/-/lightning-3.3.16.tgz"; 35164 + sha512 = "5rltlQighO0X6IjTbdsabtfT3ZY3kE6MZN6jmK4wz6Jt3eikxMbmzVBC5/UeyMb/3Fad3iHJIneXuhu76/eY/A=="; 35183 35165 }; 35184 35166 }; 35185 35167 "lightning-3.3.9" = { ··· 35353 35335 sha512 = "1SU0eG9/LDy6k3UGXaahmoe1wOahAJkaidWpLX5Nmlfq72I0arad420smma5ZGXAW4wNlGR/gx68KZzzYI5D4A=="; 35354 35336 }; 35355 35337 }; 35356 - "ln-service-51.8.6" = { 35357 - name = "ln-service"; 35358 - packageName = "ln-service"; 35359 - version = "51.8.6"; 35360 - src = fetchurl { 35361 - url = "https://registry.npmjs.org/ln-service/-/ln-service-51.8.6.tgz"; 35362 - sha512 = "r6beG0PFkK+yhbOQjvTAPf5XDNbzPZr8CE0W1k56T8Jg8mjmHrJCSOb0Tl646xgQgzFaIWe+MRdSButS5xvHAQ=="; 35363 - }; 35364 - }; 35365 - "ln-service-51.8.8" = { 35338 + "ln-service-51.9.0" = { 35366 35339 name = "ln-service"; 35367 35340 packageName = "ln-service"; 35368 - version = "51.8.8"; 35341 + version = "51.9.0"; 35369 35342 src = fetchurl { 35370 - url = "https://registry.npmjs.org/ln-service/-/ln-service-51.8.8.tgz"; 35371 - sha512 = "q3Aljr743seIqtaS5N7UUaFbHGhSQXsOs1zCuAWt6sFTq6A8BLJAjYbzHje9bwPEaiwIDOFeqKjCVp4IjE1Arw=="; 35343 + url = "https://registry.npmjs.org/ln-service/-/ln-service-51.9.0.tgz"; 35344 + sha512 = "4lbC1QZ/a4BuvO/0wd8DxRr5DxdYGugENoDo9X8xnUts9tGmYLb7g5yEXuk/Ff2LPTVUlK5imAsduobUVXOzlA=="; 35372 35345 }; 35373 35346 }; 35374 35347 "ln-sync-0.4.6" = { ··· 35380 35353 sha512 = "FMfcEISlboFVz+wLTAJ+FnEIQkoMR7IHcUg4l5JNwsU/UOijM1vTQDFhHVqg5fEQAFboZe3lNd7Rh1uxxqs47Q=="; 35381 35354 }; 35382 35355 }; 35383 - "ln-telegram-3.2.8" = { 35356 + "ln-telegram-3.2.9" = { 35384 35357 name = "ln-telegram"; 35385 35358 packageName = "ln-telegram"; 35386 - version = "3.2.8"; 35359 + version = "3.2.9"; 35387 35360 src = fetchurl { 35388 - url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.8.tgz"; 35389 - sha512 = "3UpC8pChcDWv4sGBQoEulPUcj3DULCMKG0TTYHxkFOh/n3qSkn0jLJLUQLiOJQW55Co6KAANcmRrF2rLHuisRg=="; 35361 + url = "https://registry.npmjs.org/ln-telegram/-/ln-telegram-3.2.9.tgz"; 35362 + sha512 = "pjAkD1VLGLvwu1Dso3HvQDcK25L/slRX8nB7hTDDEznn+rRzxBJd1sXuNaFovwJHughvK3ZxUxAHC0BfzIatEw=="; 35390 35363 }; 35391 35364 }; 35392 35365 "load-bmfont-1.4.1" = { ··· 37432 37405 sha512 = "zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow=="; 37433 37406 }; 37434 37407 }; 37435 - "luxon-1.27.0" = { 37408 + "luxon-2.0.1" = { 37436 37409 name = "luxon"; 37437 37410 packageName = "luxon"; 37438 - version = "1.27.0"; 37411 + version = "2.0.1"; 37439 37412 src = fetchurl { 37440 - url = "https://registry.npmjs.org/luxon/-/luxon-1.27.0.tgz"; 37441 - sha512 = "VKsFsPggTA0DvnxtJdiExAucKdAnwbCCNlMM5ENvHlxubqWd0xhZcdb4XgZ7QFNhaRhilXCFxHuoObP5BNA4PA=="; 37413 + url = "https://registry.npmjs.org/luxon/-/luxon-2.0.1.tgz"; 37414 + sha512 = "8Eawf81c9ZlQj62W3eq4mp+C7SAIAnmaS7ZuEAiX503YMcn+0C1JnMQRtfaQj6B5qTZLgHv0F4H5WabBCvi1fw=="; 37442 37415 }; 37443 37416 }; 37444 37417 "lzma-native-6.0.1" = { ··· 41366 41339 sha512 = "oUqnng1vhKLaA4GR+OzVbLuZZ7OOguKCtMHxHMiyP8+9mXidKfoCyc030LbAyNI3xcgCHHyitK3Q8wP+w6DwVQ=="; 41367 41340 }; 41368 41341 }; 41342 + "nocache-2.1.0" = { 41343 + name = "nocache"; 41344 + packageName = "nocache"; 41345 + version = "2.1.0"; 41346 + src = fetchurl { 41347 + url = "https://registry.npmjs.org/nocache/-/nocache-2.1.0.tgz"; 41348 + sha512 = "0L9FvHG3nfnnmaEQPjT9xhfN4ISk0A8/2j4M37Np4mcDesJjHgEUfgPhdCyZuFI954tjokaIj/A3NdpFNdEh4Q=="; 41349 + }; 41350 + }; 41369 41351 "node-abi-2.30.0" = { 41370 41352 name = "node-abi"; 41371 41353 packageName = "node-abi"; ··· 43870 43852 sha512 = "0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g=="; 43871 43853 }; 43872 43854 }; 43873 - "ot-builder-1.0.10" = { 43855 + "ot-builder-1.0.11" = { 43874 43856 name = "ot-builder"; 43875 43857 packageName = "ot-builder"; 43876 - version = "1.0.10"; 43858 + version = "1.0.11"; 43877 43859 src = fetchurl { 43878 - url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.10.tgz"; 43879 - sha512 = "2zstOuPOmZi2lHwBU79Qa0Y5nwlsMhXvnSnsSMW0l4tTSpIVVe+UjlKlOyvTNA8sMw/rK2/53nTj8k9R78dl3A=="; 43860 + url = "https://registry.npmjs.org/ot-builder/-/ot-builder-1.0.11.tgz"; 43861 + sha512 = "bexZrUc8L6R5N47kgD52vMP6mU4y+09VTc2ZqZD/0uktzY4ksXCEjLcRkHe9uEocmq2jtuPFtpoSTaO9mTxrhA=="; 43880 43862 }; 43881 43863 }; 43882 - "otb-ttc-bundle-1.0.10" = { 43864 + "otb-ttc-bundle-1.0.11" = { 43883 43865 name = "otb-ttc-bundle"; 43884 43866 packageName = "otb-ttc-bundle"; 43885 - version = "1.0.10"; 43867 + version = "1.0.11"; 43886 43868 src = fetchurl { 43887 - url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.10.tgz"; 43888 - sha512 = "t1RLC1ppX0CqI6WQ3/MfLnPsyzFqYo9MdZ6mWdSFxSlKHkJGWa+x0rMSTfCwiv9tGBPGusvN007A8855ZD4A5w=="; 43869 + url = "https://registry.npmjs.org/otb-ttc-bundle/-/otb-ttc-bundle-1.0.11.tgz"; 43870 + sha512 = "Wx/WXWyvWnlyTBBZBxOJsEWbBxf8MdOXNmggISi+0l4o63jobEe3ZB5oCOMbNyJPynqv+JyyrroVDTOuzP3HAQ=="; 43889 43871 }; 43890 43872 }; 43891 43873 "ow-0.21.0" = { ··· 45382 45364 sha512 = "8L6zlp+F4InnoFv0jjGdar948yEzP30bE96f6RHnECaUsU9BWRiTBhkAuhIobG4Lrr8CBscUcar7UWe0Bm1lqA=="; 45383 45365 }; 45384 45366 }; 45385 - "patrisika-scopes-0.11.1" = { 45367 + "patrisika-scopes-0.12.0" = { 45386 45368 name = "patrisika-scopes"; 45387 45369 packageName = "patrisika-scopes"; 45388 - version = "0.11.1"; 45370 + version = "0.12.0"; 45389 45371 src = fetchurl { 45390 - url = "https://registry.npmjs.org/patrisika-scopes/-/patrisika-scopes-0.11.1.tgz"; 45391 - sha512 = "UCIBMx1nzNaR5CcDoQ9/jtY5RlJqf2CrJYHiMZJhi15NPvsPKRfJT/DPZMkhCunexOKmH03EDZYZU1hGn7mL0w=="; 45372 + url = "https://registry.npmjs.org/patrisika-scopes/-/patrisika-scopes-0.12.0.tgz"; 45373 + sha512 = "rj428KYq5leS75PCDl6iyl91n6/d63yw1ikHYwd1z9UXwWk11Vj2gpTu0CxjLZJJOiFNA01LiX+WMpC5icCKng=="; 45392 45374 }; 45393 45375 }; 45394 45376 "pause-0.0.1" = { ··· 45418 45400 sha512 = "iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA=="; 45419 45401 }; 45420 45402 }; 45421 - "peek-readable-3.1.4" = { 45403 + "peek-readable-4.0.0" = { 45422 45404 name = "peek-readable"; 45423 45405 packageName = "peek-readable"; 45424 - version = "3.1.4"; 45406 + version = "4.0.0"; 45425 45407 src = fetchurl { 45426 - url = "https://registry.npmjs.org/peek-readable/-/peek-readable-3.1.4.tgz"; 45427 - sha512 = "DX7ec7frSMtCWw+zMd27f66hcxIz/w9LQTY2RflB4WNHCVPAye1pJiP2t3gvaaOhu7IOhtPbHw8MemMj+F5lrg=="; 45408 + url = "https://registry.npmjs.org/peek-readable/-/peek-readable-4.0.0.tgz"; 45409 + sha512 = "kLbU4cz6h86poGVBKgAVMpFmD47nX04fPPQNKnv9fuj+IJZYkEBjsYAVu5nDbZWx0ZsWwWlMzeG90zQa5KLBaA=="; 45428 45410 }; 45429 45411 }; 45430 45412 "peek-stream-1.1.3" = { ··· 47147 47129 sha512 = "kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ=="; 47148 47130 }; 47149 47131 }; 47132 + "pretty-format-26.6.2" = { 47133 + name = "pretty-format"; 47134 + packageName = "pretty-format"; 47135 + version = "26.6.2"; 47136 + src = fetchurl { 47137 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-26.6.2.tgz"; 47138 + sha512 = "7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg=="; 47139 + }; 47140 + }; 47150 47141 "pretty-hash-1.0.1" = { 47151 47142 name = "pretty-hash"; 47152 47143 packageName = "pretty-hash"; ··· 48830 48821 sha1 = "15931d3cd967ade52206f523aa7331aef7d43af7"; 48831 48822 }; 48832 48823 }; 48833 - "pyright-1.1.156" = { 48824 + "pyright-1.1.157" = { 48834 48825 name = "pyright"; 48835 48826 packageName = "pyright"; 48836 - version = "1.1.156"; 48827 + version = "1.1.157"; 48837 48828 src = fetchurl { 48838 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.156.tgz"; 48839 - sha512 = "TIe7mK/BUTmdTBpmEYYT5XuRp8qwaFUxF2782HTTTe3hT2UU8UUN0wtIqwHpgFJZksIbahx4UeJyTaOi4ssq6A=="; 48829 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.157.tgz"; 48830 + sha512 = "slTex47hQKuyoi579Zk7lEhVH+4Dmn+eZ3gP1JGcFBcbcmDwd9ZI1ESww3jY3YoOYdNbYTafxBNuh3RHGkGiMA=="; 48840 48831 }; 48841 48832 }; 48842 48833 "q-0.9.7" = { ··· 49613 49604 sha512 = "dx0LvIGHcOPtKbeiSUM4jqpBl3TcY7CDjZdfOIcKeznE7BWr9dg0iPG90G5yfVQ+p/rGNMXdbfStvzQZEVEi4A=="; 49614 49605 }; 49615 49606 }; 49616 - "react-devtools-core-4.13.5" = { 49607 + "react-devtools-core-4.14.0" = { 49617 49608 name = "react-devtools-core"; 49618 49609 packageName = "react-devtools-core"; 49619 - version = "4.13.5"; 49610 + version = "4.14.0"; 49620 49611 src = fetchurl { 49621 - url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.13.5.tgz"; 49622 - sha512 = "k+P5VSKM6P22Go9IQ8dJmjj9fbztvKt1iRDI/4wS5oTvd1EnytIJMYB59wZt+D3kgp64jklNX/MRmY42xAQ08g=="; 49612 + url = "https://registry.npmjs.org/react-devtools-core/-/react-devtools-core-4.14.0.tgz"; 49613 + sha512 = "cE7tkSUkGCDxTA79pntDGJCBgzNN/XxA3kgPdXujdfSfEfVhzrItQIEsN0kCN/hJJACDvH2Q8p5+tJb/K4B3qA=="; 49623 49614 }; 49624 49615 }; 49625 49616 "react-dom-16.14.0" = { ··· 49674 49665 src = fetchurl { 49675 49666 url = "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"; 49676 49667 sha512 = "24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ=="; 49668 + }; 49669 + }; 49670 + "react-is-17.0.2" = { 49671 + name = "react-is"; 49672 + packageName = "react-is"; 49673 + version = "17.0.2"; 49674 + src = fetchurl { 49675 + url = "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"; 49676 + sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="; 49677 49677 }; 49678 49678 }; 49679 49679 "react-lifecycles-compat-3.0.4" = { ··· 50288 50288 sha1 = "b66d828cdcafe6b4b8a428a7def4c6bcac31c8b4"; 50289 50289 }; 50290 50290 }; 50291 - "redoc-2.0.0-rc.54" = { 50291 + "redoc-2.0.0-rc.55" = { 50292 50292 name = "redoc"; 50293 50293 packageName = "redoc"; 50294 - version = "2.0.0-rc.54"; 50294 + version = "2.0.0-rc.55"; 50295 50295 src = fetchurl { 50296 - url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.54.tgz"; 50297 - sha512 = "xwukaWdoktkDAoQuhajekdC54+/lSLwIUqJCNSTVEjeYEuZPq2tFUj9H5SBt8/YSq5UF/zOmDQrXPWMgildQpQ=="; 50296 + url = "https://registry.npmjs.org/redoc/-/redoc-2.0.0-rc.55.tgz"; 50297 + sha512 = "32sUHhc33m8zQKz2V7xREwlf05S52dDOkn7K0WMquu2GDl6ZquxmrQfqnlj0IPoVCWQPR+XosmmIJj4rZbqjeA=="; 50298 50298 }; 50299 50299 }; 50300 50300 "reduce-component-1.0.1" = { ··· 53708 53708 sha512 = "tf+h5W1IrjNm/9rKKj0JU2MDMruiopx0jjVA5zCdBtcGjfp0+c5rHw/zADLC3IeKlGHtVbHtpfzvYA0OYT+HKg=="; 53709 53709 }; 53710 53710 }; 53711 - "slugify-1.5.3" = { 53711 + "slugify-1.6.0" = { 53712 53712 name = "slugify"; 53713 53713 packageName = "slugify"; 53714 - version = "1.5.3"; 53714 + version = "1.6.0"; 53715 53715 src = fetchurl { 53716 - url = "https://registry.npmjs.org/slugify/-/slugify-1.5.3.tgz"; 53717 - sha512 = "/HkjRdwPY3yHJReXu38NiusZw2+LLE2SrhkWJtmlPDB1fqFSvioYj62NkPcrKiNCgRLeGcGK7QBvr1iQwybeXw=="; 53716 + url = "https://registry.npmjs.org/slugify/-/slugify-1.6.0.tgz"; 53717 + sha512 = "FkMq+MQc5hzYgM86nLuHI98Acwi3p4wX+a5BO9Hhw4JdK4L7WueIiZ4tXEobImPqBz2sVcV0+Mu3GRB30IGang=="; 53718 53718 }; 53719 53719 }; 53720 53720 "smart-buffer-4.1.0" = { ··· 54525 54525 src = fetchurl { 54526 54526 url = "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"; 54527 54527 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 54528 + }; 54529 + }; 54530 + "source-map-0.8.0-beta.0" = { 54531 + name = "source-map"; 54532 + packageName = "source-map"; 54533 + version = "0.8.0-beta.0"; 54534 + src = fetchurl { 54535 + url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; 54536 + sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; 54528 54537 }; 54529 54538 }; 54530 54539 "source-map-js-0.6.2" = { ··· 56462 56471 sha1 = "e5211e9224369fbb81d633a2f00044dc8cedad92"; 56463 56472 }; 56464 56473 }; 56465 - "strip-comments-1.0.2" = { 56474 + "strip-comments-2.0.1" = { 56466 56475 name = "strip-comments"; 56467 56476 packageName = "strip-comments"; 56468 - version = "1.0.2"; 56477 + version = "2.0.1"; 56469 56478 src = fetchurl { 56470 - url = "https://registry.npmjs.org/strip-comments/-/strip-comments-1.0.2.tgz"; 56471 - sha512 = "kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw=="; 56479 + url = "https://registry.npmjs.org/strip-comments/-/strip-comments-2.0.1.tgz"; 56480 + sha512 = "ZprKx+bBLXv067WTCALv8SSz5l2+XhpYCsVtSqlMnkAXMWDq+/ekVbl1ghqP9rUHTzv6sm/DwCOiYutU/yp1fw=="; 56472 56481 }; 56473 56482 }; 56474 56483 "strip-dirs-2.1.0" = { ··· 56615 56624 sha1 = "0fdedc68e91addcfcb2e6be9c262581a6e8c28aa"; 56616 56625 }; 56617 56626 }; 56618 - "strtok3-6.1.3" = { 56627 + "strtok3-6.2.0" = { 56619 56628 name = "strtok3"; 56620 56629 packageName = "strtok3"; 56621 - version = "6.1.3"; 56630 + version = "6.2.0"; 56622 56631 src = fetchurl { 56623 - url = "https://registry.npmjs.org/strtok3/-/strtok3-6.1.3.tgz"; 56624 - sha512 = "ssWSKFOeUTurMSucgyUf+a6Z9mVTYrsYiyEK5RLnh8BM6sFrKSljVlnjZXIDxMguYfdQI+mUPFHo88FYTxq1XA=="; 56632 + url = "https://registry.npmjs.org/strtok3/-/strtok3-6.2.0.tgz"; 56633 + sha512 = "hBbPN4+f9fypbfTs0NImALgzYcb6k/blFr2mJVX6bUOmJCbXe/trDHdIC+Ir5XUXRMGFvq487ecwLitDoHVoew=="; 56625 56634 }; 56626 56635 }; 56627 56636 "structured-source-3.0.2" = { ··· 57020 57029 sha512 = "mDAmaltQl6e5zU2VEtoWEf7eLTfuOTGr9zt+BpA3AGHo8MIhKiNSPE9OLTCTOMgj0vj/uL9QBbaNmpG4G1CgIA=="; 57021 57030 }; 57022 57031 }; 57023 - "svelte2tsx-0.4.1" = { 57032 + "svelte2tsx-0.4.2" = { 57024 57033 name = "svelte2tsx"; 57025 57034 packageName = "svelte2tsx"; 57026 - version = "0.4.1"; 57035 + version = "0.4.2"; 57027 57036 src = fetchurl { 57028 - url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.1.tgz"; 57029 - sha512 = "qqXWg+wlsYXhtolKI2NGL52rK7ACejNzEKn98qcz2T6Fd1e73+YPZMw/FNeGRSZLCdNxzGf7QJDhzIiK3MXihA=="; 57037 + url = "https://registry.npmjs.org/svelte2tsx/-/svelte2tsx-0.4.2.tgz"; 57038 + sha512 = "ya93OOdT/WvHVEEvQ3u+Y4lkUqq0D+mD1szbGUWcYVOdBjJyXUF5MhKS5HEJHWQw4r+XK9UlHk52BMeXR2SI8A=="; 57030 57039 }; 57031 57040 }; 57032 57041 "sver-compat-1.5.0" = { ··· 57317 57326 sha512 = "33+lQwlLxXoxy0o9WLOgw8OjbXeS3Jv+pSl+nxKc2AOClBI28HsdRPpH0u9Xa9OVjHLT9vonnOMw1ug7YXI0dA=="; 57318 57327 }; 57319 57328 }; 57320 - "systeminformation-5.7.7" = { 57329 + "systeminformation-5.7.8" = { 57321 57330 name = "systeminformation"; 57322 57331 packageName = "systeminformation"; 57323 - version = "5.7.7"; 57332 + version = "5.7.8"; 57324 57333 src = fetchurl { 57325 - url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.7.7.tgz"; 57326 - sha512 = "aQ7MBeVI2MKPYOi3YJAoZ45JVlRkBA7IXoqGgtVBamvtE0I6JLOyJzD/VVc9pnMXDb3yqaMwssAjhwtJax4/Rw=="; 57334 + url = "https://registry.npmjs.org/systeminformation/-/systeminformation-5.7.8.tgz"; 57335 + sha512 = "gpFGDPtOtWDxMaQ6/7oe2XM/4ErgSvev1l3sdxChnm1AqDJKzZ3cu+VK7Dq1N02pChPiNNsIbUwe6dCLixfWRg=="; 57327 57336 }; 57328 57337 }; 57329 57338 "table-3.8.3" = { ··· 57768 57777 sha512 = "WrH/pui8YCwmeiAoxV+lpRH9HpRtgBhSR2ViBPgpGb/wnYDzp21R4MN45fsCGvLROvY67o3byhJRYRONJyImVQ=="; 57769 57778 }; 57770 57779 }; 57780 + "tempy-0.6.0" = { 57781 + name = "tempy"; 57782 + packageName = "tempy"; 57783 + version = "0.6.0"; 57784 + src = fetchurl { 57785 + url = "https://registry.npmjs.org/tempy/-/tempy-0.6.0.tgz"; 57786 + sha512 = "G13vtMYPT/J8A4X2SjdtBTphZlrp1gKv6hZiOjw14RCWg6GbHuQBGtjlx75xLbYV/wEc0D7G5K4rxKP/cXk8Bw=="; 57787 + }; 57788 + }; 57771 57789 "tempy-0.7.1" = { 57772 57790 name = "tempy"; 57773 57791 packageName = "tempy"; ··· 58801 58819 src = fetchurl { 58802 58820 url = "https://registry.npmjs.org/too-wordy/-/too-wordy-0.3.4.tgz"; 58803 58821 sha512 = "EU+UA4zHc06TkVQaravNNVdqX763/ENTIOKiKlqSJ6WKCPwLxHjvY3d0uEJYaq92iojyHPwD2iaYbZKjdw3icA=="; 58804 - }; 58805 - }; 58806 - "topo-2.0.2" = { 58807 - name = "topo"; 58808 - packageName = "topo"; 58809 - version = "2.0.2"; 58810 - src = fetchurl { 58811 - url = "https://registry.npmjs.org/topo/-/topo-2.0.2.tgz"; 58812 - sha1 = "cd5615752539057c0dc0491a621c3bc6fbe1d182"; 58813 58822 }; 58814 58823 }; 58815 58824 "topojson-client-3.1.0" = { ··· 62134 62143 sha512 = "/juG65kTL4Cy2su4P8HjtkTxk6VmJDiOPBufWniqQ6wknac6jNiXS9vU+hO3wgusiyqWlzTbVHi0dyJqRONg3w=="; 62135 62144 }; 62136 62145 }; 62137 - "verda-1.2.2" = { 62146 + "verda-1.3.0" = { 62138 62147 name = "verda"; 62139 62148 packageName = "verda"; 62140 - version = "1.2.2"; 62149 + version = "1.3.0"; 62141 62150 src = fetchurl { 62142 - url = "https://registry.npmjs.org/verda/-/verda-1.2.2.tgz"; 62143 - sha512 = "qWyG2W2wgAw27sV5kVUjceb7GBwUFleVjBmH5XA4L9J8rLpB10N7uaP45ZDYGA7gRuNjo/5futihrBWbKKvJ0Q=="; 62151 + url = "https://registry.npmjs.org/verda/-/verda-1.3.0.tgz"; 62152 + sha512 = "EldyK2oyHMxIKj5aMC1R75aN1XH8vH96ga1PgkuXrK5ZhYndR4g8TvBTomXpIgGvwhICjq5LZITZ37Xz/YHxAg=="; 62144 62153 }; 62145 62154 }; 62146 62155 "verror-1.1.0" = { ··· 62620 62629 sha512 = "QW2SFk4kln5lTPQajGNuXWtmr2z9hVA6Sfi4qPFEW2vjt2XaUAp38/1OrcUQYiJXOyXntbWN2jZJaGxg+hDUxw=="; 62621 62630 }; 62622 62631 }; 62623 - "vscode-json-languageservice-4.1.5" = { 62632 + "vscode-json-languageservice-4.1.6" = { 62624 62633 name = "vscode-json-languageservice"; 62625 62634 packageName = "vscode-json-languageservice"; 62626 - version = "4.1.5"; 62635 + version = "4.1.6"; 62627 62636 src = fetchurl { 62628 - url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.5.tgz"; 62629 - sha512 = "oRVPj2UY6BQ8PQ1LIz/FigUEZQVqsB9msNCFlxRBHE9sSEIJkCbYG6aCB2n7WR17VIisYQdO3MDheuoyI48G2w=="; 62637 + url = "https://registry.npmjs.org/vscode-json-languageservice/-/vscode-json-languageservice-4.1.6.tgz"; 62638 + sha512 = "DIKb3tcfRtb3tIE6g9SLOl5E9tNSt6kljH08Wa5RwFlVshtXGrDDzttchze4CYy9pJpE9mBtCbRHmLvY1Z1ZXA=="; 62630 62639 }; 62631 62640 }; 62632 62641 "vscode-jsonrpc-3.5.0" = { ··· 62998 63007 sha512 = "u0Lw+IYlgbEJFF6/qAqG2d1jQmJl0eyAGJHoAJqr2HT4M2BNuQYSEiSE75f52pXHSJm8AlTjnLLbBFPrdz2hpA=="; 62999 63008 }; 63000 63009 }; 63001 - "vscode-test-1.5.2" = { 63010 + "vscode-test-1.6.1" = { 63002 63011 name = "vscode-test"; 63003 63012 packageName = "vscode-test"; 63004 - version = "1.5.2"; 63013 + version = "1.6.1"; 63005 63014 src = fetchurl { 63006 - url = "https://registry.npmjs.org/vscode-test/-/vscode-test-1.5.2.tgz"; 63007 - sha512 = "x9PVfKxF6EInH9iSFGQi0V8H5zIW1fC7RAer6yNQR6sy3WyOwlWkuT3I+wf75xW/cO53hxMi1aj/EvqQfDFOAg=="; 63015 + url = "https://registry.npmjs.org/vscode-test/-/vscode-test-1.6.1.tgz"; 63016 + sha512 = "086q88T2ca1k95mUzffvbzb7esqQNvJgiwY4h29ukPhFo8u+vXOOmelUoU5EQUHs3Of8+JuQ3oGdbVCqaxuTXA=="; 63008 63017 }; 63009 63018 }; 63010 63019 "vscode-textbuffer-1.0.0" = { ··· 63430 63439 sha512 = "ex3nB9uxNI0azzb0r3xGwi+LS5Gw1RCRSKk0kg3kq9MYdIPmLS6UI3oEtG7esBaB51t9I+5H+vHmL3htaxqMSw=="; 63431 63440 }; 63432 63441 }; 63433 - "webpack-5.44.0" = { 63442 + "webpack-5.45.1" = { 63434 63443 name = "webpack"; 63435 63444 packageName = "webpack"; 63436 - version = "5.44.0"; 63445 + version = "5.45.1"; 63437 63446 src = fetchurl { 63438 - url = "https://registry.npmjs.org/webpack/-/webpack-5.44.0.tgz"; 63439 - sha512 = "I1S1w4QLoKmH19pX6YhYN0NiSXaWY8Ou00oA+aMcr9IUGeF5azns+IKBkfoAAG9Bu5zOIzZt/mN35OffBya8AQ=="; 63447 + url = "https://registry.npmjs.org/webpack/-/webpack-5.45.1.tgz"; 63448 + sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 63440 63449 }; 63441 63450 }; 63442 63451 "webpack-bundle-analyzer-3.9.0" = { ··· 64159 64168 sha512 = "mO8XtqyPvykVCsrwj5MlOVWvSnCdT+C+QVbm6blradR7JExAhbkZ7hZ9A+9NUtwzSqrlUo9a67ws0EiILrvRpw=="; 64160 64169 }; 64161 64170 }; 64162 - "workbox-background-sync-3.6.3" = { 64171 + "workbox-background-sync-6.1.5" = { 64163 64172 name = "workbox-background-sync"; 64164 64173 packageName = "workbox-background-sync"; 64165 - version = "3.6.3"; 64174 + version = "6.1.5"; 64166 64175 src = fetchurl { 64167 - url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-3.6.3.tgz"; 64168 - sha512 = "ypLo0B6dces4gSpaslmDg5wuoUWrHHVJfFWwl1udvSylLdXvnrfhFfriCS42SNEe5lsZtcNZF27W/SMzBlva7Q=="; 64176 + url = "https://registry.npmjs.org/workbox-background-sync/-/workbox-background-sync-6.1.5.tgz"; 64177 + sha512 = "VbUmPLsdz+sLzuNxHvMylzyRTiM4q+q7rwLBk3p2mtRL5NZozI8j/KgoGbno96vs84jx4b9zCZMEOIKEUTPf6w=="; 64169 64178 }; 64170 64179 }; 64171 - "workbox-broadcast-cache-update-3.6.3" = { 64172 - name = "workbox-broadcast-cache-update"; 64173 - packageName = "workbox-broadcast-cache-update"; 64174 - version = "3.6.3"; 64180 + "workbox-broadcast-update-6.1.5" = { 64181 + name = "workbox-broadcast-update"; 64182 + packageName = "workbox-broadcast-update"; 64183 + version = "6.1.5"; 64175 64184 src = fetchurl { 64176 - url = "https://registry.npmjs.org/workbox-broadcast-cache-update/-/workbox-broadcast-cache-update-3.6.3.tgz"; 64177 - sha512 = "pJl4lbClQcvp0SyTiEw0zLSsVYE1RDlCPtpKnpMjxFtu8lCFTAEuVyzxp9w7GF4/b3P4h5nyQ+q7V9mIR7YzGg=="; 64185 + url = "https://registry.npmjs.org/workbox-broadcast-update/-/workbox-broadcast-update-6.1.5.tgz"; 64186 + sha512 = "zGrTTs+n4wHpYtqYMqBg6kl/x5j1UrczGCQnODSHTxIDV8GXLb/GtA1BCZdysNxpMmdVSeLmTcgIYAAqWFamrA=="; 64178 64187 }; 64179 64188 }; 64180 - "workbox-build-3.6.3" = { 64189 + "workbox-build-6.1.5" = { 64181 64190 name = "workbox-build"; 64182 64191 packageName = "workbox-build"; 64183 - version = "3.6.3"; 64192 + version = "6.1.5"; 64184 64193 src = fetchurl { 64185 - url = "https://registry.npmjs.org/workbox-build/-/workbox-build-3.6.3.tgz"; 64186 - sha512 = "w0clZ/pVjL8VXy6GfthefxpEXs0T8uiRuopZSFVQ8ovfbH6c6kUpEh6DcYwm/Y6dyWPiCucdyAZotgjz+nRz8g=="; 64187 - }; 64188 - }; 64189 - "workbox-cache-expiration-3.6.3" = { 64190 - name = "workbox-cache-expiration"; 64191 - packageName = "workbox-cache-expiration"; 64192 - version = "3.6.3"; 64193 - src = fetchurl { 64194 - url = "https://registry.npmjs.org/workbox-cache-expiration/-/workbox-cache-expiration-3.6.3.tgz"; 64195 - sha512 = "+ECNph/6doYx89oopO/UolYdDmQtGUgo8KCgluwBF/RieyA1ZOFKfrSiNjztxOrGJoyBB7raTIOlEEwZ1LaHoA=="; 64194 + url = "https://registry.npmjs.org/workbox-build/-/workbox-build-6.1.5.tgz"; 64195 + sha512 = "P+fakR5QFVqJN9l9xHVXtmafga72gh9I+jM3A9HiB/6UNRmOAejXnDgD+RMegOHgQHPwnB44TalMToFaXKWIyA=="; 64196 64196 }; 64197 64197 }; 64198 - "workbox-cacheable-response-3.6.3" = { 64198 + "workbox-cacheable-response-6.1.5" = { 64199 64199 name = "workbox-cacheable-response"; 64200 64200 packageName = "workbox-cacheable-response"; 64201 - version = "3.6.3"; 64201 + version = "6.1.5"; 64202 64202 src = fetchurl { 64203 - url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-3.6.3.tgz"; 64204 - sha512 = "QpmbGA9SLcA7fklBLm06C4zFg577Dt8u3QgLM0eMnnbaVv3rhm4vbmDpBkyTqvgK/Ly8MBDQzlXDtUCswQwqqg=="; 64203 + url = "https://registry.npmjs.org/workbox-cacheable-response/-/workbox-cacheable-response-6.1.5.tgz"; 64204 + sha512 = "x8DC71lO/JCgiaJ194l9le8wc8lFPLgUpDkLhp2si7mXV6S/wZO+8Osvw1LLgYa8YYTWGbhbFhFTXIkEMknIIA=="; 64205 64205 }; 64206 64206 }; 64207 - "workbox-core-3.6.3" = { 64207 + "workbox-core-6.1.5" = { 64208 64208 name = "workbox-core"; 64209 64209 packageName = "workbox-core"; 64210 - version = "3.6.3"; 64210 + version = "6.1.5"; 64211 64211 src = fetchurl { 64212 - url = "https://registry.npmjs.org/workbox-core/-/workbox-core-3.6.3.tgz"; 64213 - sha512 = "cx9cx0nscPkIWs8Pt98HGrS9/aORuUcSkWjG25GqNWdvD/pSe7/5Oh3BKs0fC+rUshCiyLbxW54q0hA+GqZeSQ=="; 64212 + url = "https://registry.npmjs.org/workbox-core/-/workbox-core-6.1.5.tgz"; 64213 + sha512 = "9SOEle7YcJzg3njC0xMSmrPIiFjfsFm9WjwGd5enXmI8Lwk8wLdy63B0nzu5LXoibEmS9k+aWF8EzaKtOWjNSA=="; 64214 + }; 64215 + }; 64216 + "workbox-expiration-6.1.5" = { 64217 + name = "workbox-expiration"; 64218 + packageName = "workbox-expiration"; 64219 + version = "6.1.5"; 64220 + src = fetchurl { 64221 + url = "https://registry.npmjs.org/workbox-expiration/-/workbox-expiration-6.1.5.tgz"; 64222 + sha512 = "6cN+FVbh8fNq56LFKPMchGNKCJeyboHsDuGBqmhDUPvD4uDjsegQpDQzn52VaE0cpywbSIsDF/BSq9E9Yjh5oQ=="; 64214 64223 }; 64215 64224 }; 64216 - "workbox-google-analytics-3.6.3" = { 64225 + "workbox-google-analytics-6.1.5" = { 64217 64226 name = "workbox-google-analytics"; 64218 64227 packageName = "workbox-google-analytics"; 64219 - version = "3.6.3"; 64228 + version = "6.1.5"; 64220 64229 src = fetchurl { 64221 - url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-3.6.3.tgz"; 64222 - sha512 = "RQBUo/6SXtIaQTRFj4RQZ9e1gAl7D8oS5S+Hi173Kk70/BgJjzPwXpC5A249Jv5YfkCOLMQCeF9A27BiD0b0ig=="; 64230 + url = "https://registry.npmjs.org/workbox-google-analytics/-/workbox-google-analytics-6.1.5.tgz"; 64231 + sha512 = "LYsJ/VxTkYVLxM1uJKXZLz4cJdemidY7kPyAYtKVZ6EiDG89noASqis75/5lhqM1m3HwQfp2DtoPrelKSpSDBA=="; 64223 64232 }; 64224 64233 }; 64225 - "workbox-navigation-preload-3.6.3" = { 64234 + "workbox-navigation-preload-6.1.5" = { 64226 64235 name = "workbox-navigation-preload"; 64227 64236 packageName = "workbox-navigation-preload"; 64228 - version = "3.6.3"; 64237 + version = "6.1.5"; 64229 64238 src = fetchurl { 64230 - url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-3.6.3.tgz"; 64231 - sha512 = "dd26xTX16DUu0i+MhqZK/jQXgfIitu0yATM4jhRXEmpMqQ4MxEeNvl2CgjDMOHBnCVMax+CFZQWwxMx/X/PqCw=="; 64239 + url = "https://registry.npmjs.org/workbox-navigation-preload/-/workbox-navigation-preload-6.1.5.tgz"; 64240 + sha512 = "hDbNcWlffv0uvS21jCAC/mYk7NzaGRSWOQXv1p7bj2aONAX5l699D2ZK4D27G8TO0BaLHUmW/1A5CZcsvweQdg=="; 64232 64241 }; 64233 64242 }; 64234 - "workbox-precaching-3.6.3" = { 64243 + "workbox-precaching-6.1.5" = { 64235 64244 name = "workbox-precaching"; 64236 64245 packageName = "workbox-precaching"; 64237 - version = "3.6.3"; 64246 + version = "6.1.5"; 64238 64247 src = fetchurl { 64239 - url = "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-3.6.3.tgz"; 64240 - sha512 = "aBqT66BuMFviPTW6IpccZZHzpA8xzvZU2OM1AdhmSlYDXOJyb1+Z6blVD7z2Q8VNtV1UVwQIdImIX+hH3C3PIw=="; 64248 + url = "https://registry.npmjs.org/workbox-precaching/-/workbox-precaching-6.1.5.tgz"; 64249 + sha512 = "yhm1kb6wgi141JeM5X7z42XJxCry53tbMLB3NgrxktrZbwbrJF8JILzYy+RFKC9tHC6u2bPmL789GPLT2NCDzw=="; 64241 64250 }; 64242 64251 }; 64243 - "workbox-range-requests-3.6.3" = { 64252 + "workbox-range-requests-6.1.5" = { 64244 64253 name = "workbox-range-requests"; 64245 64254 packageName = "workbox-range-requests"; 64246 - version = "3.6.3"; 64255 + version = "6.1.5"; 64256 + src = fetchurl { 64257 + url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-6.1.5.tgz"; 64258 + sha512 = "iACChSapzB0yuIum3ascP/+cfBNuZi5DRrE+u4u5mCHigPlwfSWtlaY+y8p+a8EwcDTVTZVtnrGrRnF31SiLqQ=="; 64259 + }; 64260 + }; 64261 + "workbox-recipes-6.1.5" = { 64262 + name = "workbox-recipes"; 64263 + packageName = "workbox-recipes"; 64264 + version = "6.1.5"; 64247 64265 src = fetchurl { 64248 - url = "https://registry.npmjs.org/workbox-range-requests/-/workbox-range-requests-3.6.3.tgz"; 64249 - sha512 = "R+yLWQy7D9aRF9yJ3QzwYnGFnGDhMUij4jVBUVtkl67oaVoP1ymZ81AfCmfZro2kpPRI+vmNMfxxW531cqdx8A=="; 64266 + url = "https://registry.npmjs.org/workbox-recipes/-/workbox-recipes-6.1.5.tgz"; 64267 + sha512 = "MD1yabHca6O/oj1hrRdfj9cRwhKA5zqIE53rWOAg/dKMMzWQsf9nyRbXRgzK3a13iQvYKuQzURU4Cx58tdnR+Q=="; 64250 64268 }; 64251 64269 }; 64252 - "workbox-routing-3.6.3" = { 64270 + "workbox-routing-6.1.5" = { 64253 64271 name = "workbox-routing"; 64254 64272 packageName = "workbox-routing"; 64255 - version = "3.6.3"; 64273 + version = "6.1.5"; 64256 64274 src = fetchurl { 64257 - url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-3.6.3.tgz"; 64258 - sha512 = "bX20i95OKXXQovXhFOViOK63HYmXvsIwZXKWbSpVeKToxMrp0G/6LZXnhg82ijj/S5yhKNRf9LeGDzaqxzAwMQ=="; 64275 + url = "https://registry.npmjs.org/workbox-routing/-/workbox-routing-6.1.5.tgz"; 64276 + sha512 = "uC/Ctz+4GXGL42h1WxUNKxqKRik/38uS0NZ6VY/EHqL2F1ObLFqMHUZ4ZYvyQsKdyI82cxusvhJZHOrY0a2fIQ=="; 64259 64277 }; 64260 64278 }; 64261 - "workbox-strategies-3.6.3" = { 64279 + "workbox-strategies-6.1.5" = { 64262 64280 name = "workbox-strategies"; 64263 64281 packageName = "workbox-strategies"; 64264 - version = "3.6.3"; 64282 + version = "6.1.5"; 64265 64283 src = fetchurl { 64266 - url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-3.6.3.tgz"; 64267 - sha512 = "Pg5eulqeKet2y8j73Yw6xTgLdElktcWExGkzDVCGqfV9JCvnGuEpz5eVsCIK70+k4oJcBCin9qEg3g3CwEIH3g=="; 64284 + url = "https://registry.npmjs.org/workbox-strategies/-/workbox-strategies-6.1.5.tgz"; 64285 + sha512 = "QhiOn9KT9YGBdbfWOmJT6pXZOIAxaVrs6J6AMYzRpkUegBTEcv36+ZhE/cfHoT0u2fxVtthHnskOQ/snEzaXQw=="; 64268 64286 }; 64269 64287 }; 64270 - "workbox-streams-3.6.3" = { 64288 + "workbox-streams-6.1.5" = { 64271 64289 name = "workbox-streams"; 64272 64290 packageName = "workbox-streams"; 64273 - version = "3.6.3"; 64291 + version = "6.1.5"; 64274 64292 src = fetchurl { 64275 - url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-3.6.3.tgz"; 64276 - sha512 = "rqDuS4duj+3aZUYI1LsrD2t9hHOjwPqnUIfrXSOxSVjVn83W2MisDF2Bj+dFUZv4GalL9xqErcFW++9gH+Z27w=="; 64293 + url = "https://registry.npmjs.org/workbox-streams/-/workbox-streams-6.1.5.tgz"; 64294 + sha512 = "OI1kLvRHGFXV+soDvs6aEwfBwdAkvPB0mRryqdh3/K17qUj/1gRXc8QtpgU+83xqx/I/ar2bTCIj0KPzI/ChCQ=="; 64277 64295 }; 64278 64296 }; 64279 - "workbox-sw-3.6.3" = { 64297 + "workbox-sw-6.1.5" = { 64280 64298 name = "workbox-sw"; 64281 64299 packageName = "workbox-sw"; 64282 - version = "3.6.3"; 64300 + version = "6.1.5"; 64283 64301 src = fetchurl { 64284 - url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-3.6.3.tgz"; 64285 - sha512 = "IQOUi+RLhvYCiv80RP23KBW/NTtIvzvjex28B8NW1jOm+iV4VIu3VXKXTA6er5/wjjuhmtB28qEAUqADLAyOSg=="; 64302 + url = "https://registry.npmjs.org/workbox-sw/-/workbox-sw-6.1.5.tgz"; 64303 + sha512 = "IMDiqxYbKzPorZLGMUMacLB6r76iVQbdTzYthIZoPfy+uFURJFUtqiWQJKg1L+RMyuYXwKXTahCIGkgFs4jBeg=="; 64286 64304 }; 64287 64305 }; 64288 - "workbox-webpack-plugin-3.6.3" = { 64306 + "workbox-webpack-plugin-6.1.5" = { 64289 64307 name = "workbox-webpack-plugin"; 64290 64308 packageName = "workbox-webpack-plugin"; 64291 - version = "3.6.3"; 64309 + version = "6.1.5"; 64292 64310 src = fetchurl { 64293 - url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-3.6.3.tgz"; 64294 - sha512 = "RwmKjc7HFHUFHoOlKoZUq9349u0QN3F8W5tZZU0vc1qsBZDINWXRiIBCAKvo/Njgay5sWz7z4I2adnyTo97qIQ=="; 64311 + url = "https://registry.npmjs.org/workbox-webpack-plugin/-/workbox-webpack-plugin-6.1.5.tgz"; 64312 + sha512 = "tsgeNAYiFP4STNPDxBVT58eiU8nGUmcv7Lq9FFJkQf5MMu6tPw1OLp+KpszhbCWP+R/nEdu85Gjexs6fY647Kg=="; 64313 + }; 64314 + }; 64315 + "workbox-window-6.1.5" = { 64316 + name = "workbox-window"; 64317 + packageName = "workbox-window"; 64318 + version = "6.1.5"; 64319 + src = fetchurl { 64320 + url = "https://registry.npmjs.org/workbox-window/-/workbox-window-6.1.5.tgz"; 64321 + sha512 = "akL0X6mAegai2yypnq78RgfazeqvKbsllRtEI4dnbhPcRINEY1NmecFmsQk8SD+zWLK1gw5OdwAOX+zHSRVmeA=="; 64295 64322 }; 64296 64323 }; 64297 64324 "worker-farm-1.7.0" = { ··· 64591 64618 sha512 = "6ezXvzOZupqKj4jUqbQ9tXuJNo+BR2gU8fFRk3XCP3e0G6WT414u5ELe6Y0vtp7kmSJ3F7YWObSNr1ESsgi4vw=="; 64592 64619 }; 64593 64620 }; 64594 - "ws-7.5.1" = { 64595 - name = "ws"; 64596 - packageName = "ws"; 64597 - version = "7.5.1"; 64598 - src = fetchurl { 64599 - url = "https://registry.npmjs.org/ws/-/ws-7.5.1.tgz"; 64600 - sha512 = "2c6faOUH/nhoQN6abwMloF7Iyl0ZS2E9HGtsiLrWn0zOOMWlhtDmdf/uihDt6jnuCxgtwGBNy6Onsoy2s2O2Ow=="; 64601 - }; 64602 - }; 64603 - "ws-7.5.2" = { 64604 - name = "ws"; 64605 - packageName = "ws"; 64606 - version = "7.5.2"; 64607 - src = fetchurl { 64608 - url = "https://registry.npmjs.org/ws/-/ws-7.5.2.tgz"; 64609 - sha512 = "lkF7AWRicoB9mAgjeKbGqVUekLnSNO4VjKVnuPHpQeOxZOErX6BPXwJk70nFslRCEEA8EVW7ZjKwXaP9N+1sKQ=="; 64610 - }; 64611 - }; 64612 64621 "ws-7.5.3" = { 64613 64622 name = "ws"; 64614 64623 packageName = "ws"; ··· 64699 64708 sha512 = "N1XQngeqMBoj9wM4ZFadVV2MymImeiFfYD+fJrNlcVcOHsJFFQe7n3b+aBoTPwARuq2HQxukfzVpQmAk1gN4sQ=="; 64700 64709 }; 64701 64710 }; 64702 - "xdl-59.0.48" = { 64711 + "xdl-59.0.50" = { 64703 64712 name = "xdl"; 64704 64713 packageName = "xdl"; 64705 - version = "59.0.48"; 64714 + version = "59.0.50"; 64706 64715 src = fetchurl { 64707 - url = "https://registry.npmjs.org/xdl/-/xdl-59.0.48.tgz"; 64708 - sha512 = "nh2BhZhMTZjMsfeR8HohfXMH1DbohGKuQlYWoMsMTu8WJViOvAo6LVHnBb3lt3ddVCkXxRubGh9US54hKhh+cQ=="; 64716 + url = "https://registry.npmjs.org/xdl/-/xdl-59.0.50.tgz"; 64717 + sha512 = "T1QdEP3U4m0BfeqRWPJ1J9ywlmicFTM8zBWPqP/1Xw6V/cpX2QHRfhLpl60uEiD7HsCcAPXTe1zIo8khDhFYvA=="; 64709 64718 }; 64710 64719 }; 64711 64720 "xenvar-0.5.1" = { ··· 65123 65132 sha512 = "2t7FahYnGJys6DpHLhajusId7R0Pm2yTmuL0GV9+mV0ZlaLSnb2toBmppATfg5sWIhZQGlsTLoecSzya+l4EAQ=="; 65124 65133 }; 65125 65134 }; 65126 - "xstate-4.22.0" = { 65135 + "xstate-4.23.0" = { 65127 65136 name = "xstate"; 65128 65137 packageName = "xstate"; 65129 - version = "4.22.0"; 65138 + version = "4.23.0"; 65130 65139 src = fetchurl { 65131 - url = "https://registry.npmjs.org/xstate/-/xstate-4.22.0.tgz"; 65132 - sha512 = "WBQS/XxmjCH6789fx5JXjct2pWA0ZI0a1Kx8PJMurzgytkJH3vC2+QganHWzK38vG9PyXHefyVG54UN5q6YVSw=="; 65140 + url = "https://registry.npmjs.org/xstate/-/xstate-4.23.0.tgz"; 65141 + sha512 = "YIKb7thsDfpb6ooWJJuj+UnNZq923dG264zfpS2/vi4dkZz41ugO0ktC6QCBDeMfH8LBHhhqZ06sR4AYgWWnWg=="; 65133 65142 }; 65134 65143 }; 65135 65144 "xstream-11.14.0" = { ··· 66590 66599 sources."@hyperswarm/discovery-2.0.1" 66591 66600 sources."@hyperswarm/hypersign-2.1.1" 66592 66601 sources."@hyperswarm/network-2.1.0" 66593 - sources."@leichtgewicht/ip-codec-2.0.2" 66594 - sources."@types/node-16.3.2" 66602 + sources."@leichtgewicht/ip-codec-2.0.3" 66603 + sources."@types/node-16.3.3" 66595 66604 sources."abstract-extension-3.1.1" 66596 66605 sources."abstract-leveldown-6.2.3" 66597 66606 sources."ansi-colors-3.2.3" ··· 67107 67116 sources."supports-color-5.5.0" 67108 67117 ]; 67109 67118 }) 67110 - (sources."@nestjs/schematics-8.0.1" // { 67119 + (sources."@nestjs/schematics-8.0.2" // { 67111 67120 dependencies = [ 67112 67121 sources."@angular-devkit/core-12.0.5" 67113 67122 sources."@angular-devkit/schematics-12.0.5" ··· 67121 67130 sources."@types/eslint-scope-3.7.1" 67122 67131 sources."@types/estree-0.0.49" 67123 67132 sources."@types/json-schema-7.0.8" 67124 - sources."@types/node-16.3.2" 67133 + sources."@types/node-16.3.3" 67125 67134 sources."@types/parse-json-4.0.0" 67126 67135 sources."@webassemblyjs/ast-1.11.1" 67127 67136 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" ··· 67187 67196 sources."cross-spawn-7.0.3" 67188 67197 sources."deepmerge-4.2.2" 67189 67198 sources."defaults-1.0.3" 67190 - sources."electron-to-chromium-1.3.776" 67199 + sources."electron-to-chromium-1.3.779" 67191 67200 sources."emoji-regex-8.0.0" 67192 67201 sources."end-of-stream-1.4.4" 67193 67202 (sources."enhanced-resolve-5.8.2" // { ··· 67596 67605 sources."@types/long-4.0.1" 67597 67606 sources."@types/mime-1.3.2" 67598 67607 sources."@types/minimatch-3.0.5" 67599 - sources."@types/node-16.3.2" 67608 + sources."@types/node-16.3.3" 67600 67609 sources."@types/normalize-package-data-2.4.1" 67601 67610 sources."@types/qs-6.9.7" 67602 67611 sources."@types/range-parser-1.2.4" ··· 67611 67620 }) 67612 67621 sources."@vue/cli-ui-addon-webpack-4.5.13" 67613 67622 sources."@vue/cli-ui-addon-widgets-4.5.13" 67614 - (sources."@vue/compiler-core-3.1.4" // { 67623 + (sources."@vue/compiler-core-3.1.5" // { 67615 67624 dependencies = [ 67616 67625 sources."source-map-0.6.1" 67617 67626 ]; 67618 67627 }) 67619 - sources."@vue/compiler-dom-3.1.4" 67620 - sources."@vue/shared-3.1.4" 67628 + sources."@vue/compiler-dom-3.1.5" 67629 + sources."@vue/shared-3.1.5" 67621 67630 sources."@wry/equality-0.1.11" 67622 67631 sources."accepts-1.3.7" 67623 67632 sources."aggregate-error-3.1.0" ··· 67867 67876 sources."ecc-jsbn-0.1.2" 67868 67877 sources."ee-first-1.1.1" 67869 67878 sources."ejs-2.7.4" 67870 - sources."electron-to-chromium-1.3.776" 67879 + sources."electron-to-chromium-1.3.779" 67871 67880 sources."emoji-regex-7.0.3" 67872 67881 sources."encodeurl-1.0.2" 67873 67882 sources."end-of-stream-1.4.4" ··· 67950 67959 }) 67951 67960 sources."find-up-3.0.0" 67952 67961 sources."fkill-6.2.0" 67953 - sources."flow-parser-0.155.0" 67962 + sources."flow-parser-0.155.1" 67954 67963 sources."for-each-0.3.3" 67955 67964 sources."for-in-1.0.2" 67956 67965 sources."forever-agent-0.6.1" ··· 68888 68897 sources."convert-source-map-1.8.0" 68889 68898 sources."debug-4.3.2" 68890 68899 sources."ejs-3.1.6" 68891 - sources."electron-to-chromium-1.3.776" 68900 + sources."electron-to-chromium-1.3.779" 68892 68901 sources."ensure-posix-path-1.1.1" 68893 68902 sources."escalade-3.1.1" 68894 68903 sources."escape-string-regexp-1.0.5" ··· 68982 68991 dependencies = [ 68983 68992 sources."@types/glob-7.1.4" 68984 68993 sources."@types/minimatch-3.0.5" 68985 - sources."@types/node-16.3.2" 68994 + sources."@types/node-16.3.3" 68986 68995 sources."balanced-match-1.0.2" 68987 68996 sources."brace-expansion-1.1.11" 68988 68997 sources."chromium-pickle-js-0.2.0" ··· 69007 69016 bypassCache = true; 69008 69017 reconstructLock = true; 69009 69018 }; 69019 + autoprefixer = nodeEnv.buildNodePackage { 69020 + name = "autoprefixer"; 69021 + packageName = "autoprefixer"; 69022 + version = "10.3.1"; 69023 + src = fetchurl { 69024 + url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.3.1.tgz"; 69025 + sha512 = "L8AmtKzdiRyYg7BUXJTzigmhbQRCXFKz6SA1Lqo0+AR2FBbQ4aTAPFSDlOutnFkjhiz8my4agGXog1xlMjPJ6A=="; 69026 + }; 69027 + dependencies = [ 69028 + sources."browserslist-4.16.6" 69029 + sources."caniuse-lite-1.0.30001245" 69030 + sources."colorette-1.2.2" 69031 + sources."electron-to-chromium-1.3.779" 69032 + sources."escalade-3.1.1" 69033 + sources."fraction.js-4.1.1" 69034 + sources."node-releases-1.1.73" 69035 + sources."normalize-range-0.1.2" 69036 + sources."postcss-value-parser-4.1.0" 69037 + ]; 69038 + buildInputs = globalBuildInputs; 69039 + meta = { 69040 + description = "Parse CSS and add vendor prefixes to CSS rules using values from the Can I Use website"; 69041 + homepage = "https://github.com/postcss/autoprefixer#readme"; 69042 + license = "MIT"; 69043 + }; 69044 + production = true; 69045 + bypassCache = true; 69046 + reconstructLock = true; 69047 + }; 69010 69048 aws-azure-login = nodeEnv.buildNodePackage { 69011 69049 name = "aws-azure-login"; 69012 69050 packageName = "aws-azure-login"; ··· 69017 69055 }; 69018 69056 dependencies = [ 69019 69057 sources."@tootallnate/once-1.1.2" 69020 - sources."@types/node-16.3.2" 69058 + sources."@types/node-16.3.3" 69021 69059 sources."@types/yauzl-2.9.2" 69022 69060 sources."agent-base-6.0.2" 69023 69061 sources."ansi-escapes-4.3.2" 69024 69062 sources."ansi-regex-5.0.0" 69025 69063 sources."ansi-styles-4.3.0" 69026 69064 sources."ast-types-0.13.4" 69027 - (sources."aws-sdk-2.946.0" // { 69065 + (sources."aws-sdk-2.948.0" // { 69028 69066 dependencies = [ 69029 69067 sources."uuid-3.3.2" 69030 69068 ]; ··· 69228 69266 balanceofsatoshis = nodeEnv.buildNodePackage { 69229 69267 name = "balanceofsatoshis"; 69230 69268 packageName = "balanceofsatoshis"; 69231 - version = "10.6.2"; 69269 + version = "10.7.0"; 69232 69270 src = fetchurl { 69233 - url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.6.2.tgz"; 69234 - sha512 = "2AVJj3hY7YyOkROHZKAyfqbTawRQw+u8y/WGmERm6zu1gW/t0A7ihonchEGbEwzinszDADPzvAZvvMq1BdPe8Q=="; 69271 + url = "https://registry.npmjs.org/balanceofsatoshis/-/balanceofsatoshis-10.7.0.tgz"; 69272 + sha512 = "rJ29qKw5UMS5WM9hdur696oXNiuszSJLhYKMBQuHDuwITeuwNk9GYhXyXRVFFOKVNetjsP/HruSU6tZ3jBq4kQ=="; 69235 69273 }; 69236 69274 dependencies = [ 69237 69275 sources."@alexbosworth/html2unicode-1.1.5" ··· 69244 69282 sources."@cto.af/textdecoder-0.0.0" 69245 69283 (sources."@grpc/grpc-js-1.3.2" // { 69246 69284 dependencies = [ 69247 - sources."@types/node-16.3.2" 69285 + sources."@types/node-16.3.3" 69248 69286 ]; 69249 69287 }) 69250 69288 sources."@grpc/proto-loader-0.6.2" ··· 69527 69565 sources."imurmurhash-0.1.4" 69528 69566 sources."inherits-2.0.4" 69529 69567 sources."ini-2.0.0" 69530 - (sources."inquirer-8.1.1" // { 69568 + (sources."inquirer-8.1.2" // { 69531 69569 dependencies = [ 69532 69570 sources."ansi-escapes-4.3.2" 69533 69571 sources."ansi-regex-5.0.0" ··· 69611 69649 sources."ws-7.5.0" 69612 69650 ]; 69613 69651 }) 69614 - (sources."ln-service-51.8.8" // { 69652 + (sources."ln-service-51.9.0" // { 69615 69653 dependencies = [ 69616 - sources."@grpc/grpc-js-1.3.4" 69654 + sources."@grpc/grpc-js-1.3.5" 69617 69655 sources."@grpc/proto-loader-0.6.4" 69618 69656 sources."@types/express-4.17.13" 69619 - sources."@types/node-16.0.1" 69657 + sources."@types/node-16.3.2" 69620 69658 sources."@types/request-2.48.6" 69621 69659 sources."@types/ws-7.4.6" 69622 69660 sources."bn.js-5.2.0" 69623 69661 sources."form-data-2.5.1" 69624 - sources."lightning-3.3.15" 69625 - sources."ws-7.5.2" 69662 + sources."lightning-3.3.16" 69663 + sources."ws-7.5.3" 69626 69664 ]; 69627 69665 }) 69628 69666 (sources."ln-sync-0.4.6" // { ··· 69636 69674 sources."lightning-3.3.12" 69637 69675 ]; 69638 69676 }) 69639 - (sources."ln-telegram-3.2.8" // { 69640 - dependencies = [ 69641 - sources."@grpc/grpc-js-1.3.4" 69642 - sources."@grpc/proto-loader-0.6.4" 69643 - sources."@types/node-16.0.0" 69644 - sources."@types/ws-7.4.6" 69645 - sources."bn.js-5.2.0" 69646 - sources."cbor-7.0.5" 69647 - sources."lightning-3.3.13" 69648 - sources."ln-service-51.8.6" 69649 - sources."ws-7.5.1" 69650 - ]; 69651 - }) 69677 + sources."ln-telegram-3.2.9" 69652 69678 sources."lodash-4.17.21" 69653 69679 sources."lodash.camelcase-4.3.0" 69654 69680 sources."lodash.clonedeep-4.5.0" ··· 69669 69695 sources."long-4.0.0" 69670 69696 sources."lowercase-keys-1.0.1" 69671 69697 sources."lru-cache-6.0.0" 69672 - sources."luxon-1.27.0" 69698 + sources."luxon-2.0.1" 69673 69699 (sources."macaroon-3.0.4" // { 69674 69700 dependencies = [ 69675 69701 sources."tweetnacl-1.0.3" ··· 69771 69797 sources."process-nextick-args-2.0.1" 69772 69798 (sources."protobufjs-6.11.2" // { 69773 69799 dependencies = [ 69774 - sources."@types/node-16.3.2" 69800 + sources."@types/node-16.3.3" 69775 69801 ]; 69776 69802 }) 69777 69803 sources."proxy-addr-2.0.7" ··· 69805 69831 sources."ripemd160-2.0.2" 69806 69832 sources."run-async-2.4.1" 69807 69833 sources."rx-4.1.0" 69808 - sources."rxjs-6.6.7" 69834 + sources."rxjs-7.2.0" 69809 69835 sources."safe-buffer-5.2.1" 69810 69836 sources."safe-compare-1.1.4" 69811 69837 sources."safer-buffer-2.1.2" ··· 69846 69872 sources."supports-color-2.0.0" 69847 69873 (sources."table-6.7.1" // { 69848 69874 dependencies = [ 69849 - sources."ajv-8.6.1" 69875 + sources."ajv-8.6.2" 69850 69876 sources."ansi-regex-5.0.0" 69851 69877 sources."is-fullwidth-code-point-3.0.0" 69852 69878 sources."json-schema-traverse-1.0.0" ··· 69877 69903 sources."toidentifier-1.0.0" 69878 69904 sources."tough-cookie-3.0.1" 69879 69905 sources."truncate-utf8-bytes-1.0.2" 69880 - sources."tslib-1.14.1" 69906 + sources."tslib-2.1.0" 69881 69907 sources."tunnel-agent-0.6.0" 69882 69908 sources."tweetnacl-0.14.5" 69883 69909 sources."tweetnacl-util-0.15.1" ··· 70951 70977 sources."@protobufjs/pool-1.1.0" 70952 70978 sources."@protobufjs/utf8-1.1.0" 70953 70979 sources."@types/long-4.0.1" 70954 - sources."@types/node-16.3.2" 70980 + sources."@types/node-16.3.3" 70955 70981 sources."addr-to-ip-port-1.5.1" 70956 70982 sources."airplay-js-0.2.16" 70957 70983 sources."ajv-6.12.6" ··· 71791 71817 sources."pump-3.0.0" 71792 71818 sources."quick-lru-4.0.1" 71793 71819 sources."react-16.14.0" 71794 - sources."react-devtools-core-4.13.5" 71820 + sources."react-devtools-core-4.14.0" 71795 71821 sources."react-is-16.13.1" 71796 71822 sources."react-reconciler-0.24.0" 71797 71823 sources."readable-stream-3.6.0" ··· 72345 72371 }; 72346 72372 dependencies = [ 72347 72373 sources."agent-base-4.3.0" 72348 - sources."balanced-match-1.0.2" 72349 - sources."brace-expansion-1.1.11" 72350 - sources."concat-map-0.0.1" 72351 72374 sources."debug-3.1.0" 72352 72375 sources."es6-promise-4.2.8" 72353 72376 sources."es6-promisify-5.0.0" 72354 72377 sources."http-proxy-agent-2.1.0" 72355 72378 sources."https-proxy-agent-2.2.4" 72356 72379 sources."jsonc-parser-3.0.0" 72357 - sources."minimatch-3.0.4" 72358 72380 sources."ms-2.0.0" 72359 72381 sources."request-light-0.4.0" 72360 72382 sources."vscode-json-languageserver-1.3.4" 72361 - (sources."vscode-json-languageservice-4.1.5" // { 72383 + (sources."vscode-json-languageservice-4.1.6" // { 72362 72384 dependencies = [ 72363 72385 sources."vscode-nls-5.0.0" 72364 72386 ]; ··· 72809 72831 sources."domutils-1.7.0" 72810 72832 sources."dot-prop-5.3.0" 72811 72833 sources."duplexer3-0.1.4" 72812 - sources."electron-to-chromium-1.3.776" 72834 + sources."electron-to-chromium-1.3.779" 72813 72835 sources."emoji-regex-8.0.0" 72814 72836 sources."end-of-stream-1.4.4" 72815 72837 sources."enquirer-2.3.6" ··· 73476 73498 sources."svg-tags-1.0.0" 73477 73499 (sources."table-6.7.1" // { 73478 73500 dependencies = [ 73479 - sources."ajv-8.6.1" 73501 + sources."ajv-8.6.2" 73480 73502 sources."json-schema-traverse-1.0.0" 73481 73503 ]; 73482 73504 }) ··· 73614 73636 sha512 = "lPtMmvdxFMVKm7KYKWVDmYyQo1KpG7oOwre4WlKj4+TeWxhOfkxz2q1HtsoYeideu0X9Y6GCGNlBpeZbFMhP4g=="; 73615 73637 }; 73616 73638 dependencies = [ 73617 - sources."pyright-1.1.156" 73639 + sources."pyright-1.1.157" 73618 73640 ]; 73619 73641 buildInputs = globalBuildInputs; 73620 73642 meta = { ··· 73796 73818 sources."@nodelib/fs.walk-1.2.8" 73797 73819 sources."@stylelint/postcss-css-in-js-0.37.2" 73798 73820 sources."@stylelint/postcss-markdown-0.36.2" 73799 - sources."@types/mdast-3.0.4" 73821 + sources."@types/mdast-3.0.7" 73800 73822 sources."@types/minimist-1.2.2" 73801 73823 sources."@types/normalize-package-data-2.4.1" 73802 73824 sources."@types/parse-json-4.0.0" 73803 73825 sources."@types/unist-2.0.6" 73804 - sources."ajv-8.6.1" 73826 + sources."ajv-8.6.2" 73805 73827 sources."ansi-regex-5.0.0" 73806 73828 sources."ansi-styles-3.2.1" 73807 73829 sources."array-union-2.1.0" ··· 73858 73880 sources."domelementtype-1.3.1" 73859 73881 sources."domhandler-2.4.2" 73860 73882 sources."domutils-1.7.0" 73861 - sources."electron-to-chromium-1.3.776" 73883 + sources."electron-to-chromium-1.3.779" 73862 73884 sources."emoji-regex-8.0.0" 73863 73885 sources."entities-1.1.2" 73864 73886 sources."error-ex-1.3.2" ··· 74401 74423 sources."supports-color-5.5.0" 74402 74424 (sources."table-6.7.1" // { 74403 74425 dependencies = [ 74404 - sources."ajv-8.6.1" 74426 + sources."ajv-8.6.2" 74405 74427 sources."json-schema-traverse-1.0.0" 74406 74428 ]; 74407 74429 }) ··· 74646 74668 sources."color-3.0.0" 74647 74669 sources."color-convert-1.9.3" 74648 74670 sources."color-name-1.1.3" 74649 - sources."color-string-1.5.5" 74671 + sources."color-string-1.6.0" 74650 74672 sources."colors-1.4.0" 74651 74673 sources."colorspace-1.1.2" 74652 74674 sources."commander-7.2.0" ··· 75321 75343 sources."@types/glob-7.1.4" 75322 75344 sources."@types/minimatch-3.0.5" 75323 75345 sources."@types/minimist-1.2.2" 75324 - sources."@types/node-16.3.2" 75346 + sources."@types/node-16.3.3" 75325 75347 sources."@types/normalize-package-data-2.4.1" 75326 75348 sources."aggregate-error-3.1.0" 75327 75349 sources."ansi-styles-3.2.1" ··· 75692 75714 sources."@cycle/run-3.4.0" 75693 75715 sources."@cycle/time-0.10.1" 75694 75716 sources."@types/cookiejar-2.1.2" 75695 - sources."@types/node-16.3.2" 75717 + sources."@types/node-16.3.3" 75696 75718 sources."@types/superagent-3.8.2" 75697 75719 sources."ansi-escapes-3.2.0" 75698 75720 sources."ansi-regex-2.1.1" ··· 75987 76009 sha512 = "I6r+8jeGKdZ5ztkxXQUu+2DmzoCkRB4KS0bPfu85u2RoK5xz0ypt3h/WP7GjRBBvhOOM7/LdYKUcOob6RKMtRQ=="; 75988 76010 }; 75989 76011 dependencies = [ 75990 - sources."@leichtgewicht/ip-codec-2.0.2" 76012 + sources."@leichtgewicht/ip-codec-2.0.3" 75991 76013 sources."abstract-random-access-1.1.2" 75992 76014 sources."ajv-6.12.6" 75993 76015 sources."ansi-align-2.0.0" ··· 77007 77029 sources."@types/http-cache-semantics-4.0.1" 77008 77030 sources."@types/keyv-3.1.2" 77009 77031 sources."@types/minimatch-3.0.5" 77010 - sources."@types/node-16.3.2" 77032 + sources."@types/node-16.3.3" 77011 77033 sources."@types/responselike-1.0.0" 77012 77034 sources."@types/yauzl-2.9.2" 77013 77035 sources."abbrev-1.1.1" ··· 77639 77661 sources."@types/http-cache-semantics-4.0.1" 77640 77662 sources."@types/keyv-3.1.2" 77641 77663 sources."@types/minimist-1.2.2" 77642 - sources."@types/node-16.3.2" 77664 + sources."@types/node-16.3.3" 77643 77665 sources."@types/normalize-package-data-2.4.1" 77644 77666 sources."@types/responselike-1.0.0" 77645 77667 sources."@types/yoga-layout-1.9.2" ··· 77711 77733 }) 77712 77734 sources."defer-to-connect-2.0.1" 77713 77735 sources."dot-prop-5.3.0" 77714 - sources."electron-to-chromium-1.3.776" 77736 + sources."electron-to-chromium-1.3.779" 77715 77737 sources."emoji-regex-8.0.0" 77716 77738 sources."emojilib-2.4.0" 77717 77739 sources."end-of-stream-1.4.4" ··· 77845 77867 sources."punycode-2.1.1" 77846 77868 sources."quick-lru-5.1.1" 77847 77869 sources."react-16.14.0" 77848 - sources."react-devtools-core-4.13.5" 77870 + sources."react-devtools-core-4.14.0" 77849 77871 sources."react-is-16.13.1" 77850 77872 sources."react-reconciler-0.24.0" 77851 77873 (sources."read-pkg-5.2.0" // { ··· 79670 79692 sources."escape-string-regexp-1.0.5" 79671 79693 ]; 79672 79694 }) 79673 - sources."@eslint/eslintrc-0.4.2" 79695 + sources."@eslint/eslintrc-0.4.3" 79674 79696 sources."@humanwhocodes/config-array-0.5.0" 79675 79697 sources."@humanwhocodes/object-schema-1.2.0" 79676 79698 sources."acorn-7.4.1" ··· 79790 79812 sources."supports-color-5.5.0" 79791 79813 (sources."table-6.7.1" // { 79792 79814 dependencies = [ 79793 - sources."ajv-8.6.1" 79815 + sources."ajv-8.6.2" 79794 79816 sources."json-schema-traverse-1.0.0" 79795 79817 ]; 79796 79818 }) ··· 79833 79855 sources."supports-color-5.5.0" 79834 79856 ]; 79835 79857 }) 79836 - sources."@eslint/eslintrc-0.4.2" 79858 + sources."@eslint/eslintrc-0.4.3" 79837 79859 sources."@humanwhocodes/config-array-0.5.0" 79838 79860 sources."@humanwhocodes/object-schema-1.2.0" 79839 79861 sources."acorn-7.4.1" ··· 79955 79977 sources."supports-color-8.1.1" 79956 79978 (sources."table-6.7.1" // { 79957 79979 dependencies = [ 79958 - sources."ajv-8.6.1" 79980 + sources."ajv-8.6.2" 79959 79981 sources."json-schema-traverse-1.0.0" 79960 79982 ]; 79961 79983 }) ··· 79999 80021 expo-cli = nodeEnv.buildNodePackage { 80000 80022 name = "expo-cli"; 80001 80023 packageName = "expo-cli"; 80002 - version = "4.7.3"; 80024 + version = "4.8.1"; 80003 80025 src = fetchurl { 80004 - url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.7.3.tgz"; 80005 - sha512 = "IlkAgUiY7XeS2cjJnJZrp3YE+Jq/gk7AgfjatGL6kw8k0IULZJiJKDsZEv24CXHFDKo43KdDCDdDqx+R+7kF8w=="; 80026 + url = "https://registry.npmjs.org/expo-cli/-/expo-cli-4.8.1.tgz"; 80027 + sha512 = "oks/ETtrhNKvw1CjKUxQv9vQFXRPIWb+iWKT1Xmjx111cHLDTKXtmxm8hkYXSJZ8zHgqAndlUTRlTc+tDqRbuw=="; 80006 80028 }; 80007 80029 dependencies = [ 80008 80030 sources."@babel/code-frame-7.14.5" ··· 80138 80160 sources."@babel/types-7.14.5" 80139 80161 sources."@expo/apple-utils-0.0.0-alpha.20" 80140 80162 sources."@expo/bunyan-4.0.0" 80141 - sources."@expo/config-5.0.3" 80142 - sources."@expo/config-plugins-3.0.3" 80143 - sources."@expo/config-types-41.0.0" 80144 - (sources."@expo/dev-server-0.1.78" // { 80163 + sources."@expo/config-5.0.5" 80164 + (sources."@expo/config-plugins-3.0.5" // { 80165 + dependencies = [ 80166 + sources."semver-7.3.5" 80167 + ]; 80168 + }) 80169 + sources."@expo/config-types-42.0.0" 80170 + (sources."@expo/dev-server-0.1.80" // { 80145 80171 dependencies = [ 80146 80172 sources."body-parser-1.19.0" 80147 80173 sources."bytes-3.1.0" ··· 80158 80184 sources."temp-dir-2.0.0" 80159 80185 ]; 80160 80186 }) 80161 - sources."@expo/dev-tools-0.13.108" 80187 + sources."@expo/dev-tools-0.13.110" 80162 80188 (sources."@expo/devcert-1.0.0" // { 80163 80189 dependencies = [ 80164 80190 sources."debug-3.2.7" ··· 80166 80192 sources."sudo-prompt-8.2.5" 80167 80193 ]; 80168 80194 }) 80169 - (sources."@expo/image-utils-0.3.14" // { 80195 + (sources."@expo/image-utils-0.3.15" // { 80170 80196 dependencies = [ 80171 80197 sources."mime-2.5.2" 80172 80198 sources."tempy-0.3.0" 80173 80199 ]; 80174 80200 }) 80175 - (sources."@expo/json-file-8.2.30" // { 80201 + (sources."@expo/json-file-8.2.31" // { 80176 80202 dependencies = [ 80177 80203 sources."@babel/code-frame-7.10.4" 80178 80204 sources."json5-1.0.1" 80179 80205 ]; 80180 80206 }) 80181 - sources."@expo/metro-config-0.1.78" 80182 - sources."@expo/osascript-2.0.28" 80183 - (sources."@expo/package-manager-0.0.43" // { 80207 + sources."@expo/metro-config-0.1.80" 80208 + sources."@expo/osascript-2.0.29" 80209 + (sources."@expo/package-manager-0.0.44" // { 80184 80210 dependencies = [ 80185 80211 sources."npm-package-arg-7.0.0" 80186 80212 sources."rimraf-3.0.2" ··· 80192 80218 sources."xmlbuilder-14.0.0" 80193 80219 ]; 80194 80220 }) 80195 - sources."@expo/prebuild-config-2.0.3" 80221 + sources."@expo/prebuild-config-2.0.5" 80196 80222 sources."@expo/results-1.0.0" 80197 - (sources."@expo/schemer-1.3.29" // { 80223 + (sources."@expo/schemer-1.3.30" // { 80198 80224 dependencies = [ 80199 80225 sources."ajv-5.5.2" 80200 80226 sources."fast-deep-equal-1.1.0" 80201 80227 sources."json-schema-traverse-0.3.1" 80202 80228 ]; 80203 80229 }) 80230 + sources."@expo/sdk-runtime-versions-1.0.0" 80204 80231 sources."@expo/simple-spinner-1.0.2" 80205 80232 sources."@expo/spawn-async-1.5.0" 80206 - (sources."@expo/webpack-config-0.12.82" // { 80233 + (sources."@expo/webpack-config-0.13.1" // { 80207 80234 dependencies = [ 80208 80235 sources."@babel/runtime-7.9.0" 80209 80236 sources."react-refresh-0.8.3" ··· 80215 80242 sources."js-yaml-4.1.0" 80216 80243 ]; 80217 80244 }) 80218 - sources."@hapi/address-4.1.0" 80219 - sources."@hapi/formula-2.0.0" 80245 + sources."@hapi/address-2.1.4" 80246 + sources."@hapi/formula-1.2.0" 80220 80247 sources."@hapi/hoek-9.2.0" 80221 - sources."@hapi/joi-17.1.1" 80222 - sources."@hapi/pinpoint-2.0.0" 80223 - sources."@hapi/topo-5.1.0" 80224 - (sources."@jest/types-25.5.0" // { 80248 + (sources."@hapi/joi-16.1.8" // { 80225 80249 dependencies = [ 80226 - sources."ansi-styles-4.3.0" 80227 - sources."chalk-3.0.0" 80228 - sources."color-convert-2.0.1" 80229 - sources."color-name-1.1.4" 80230 - sources."has-flag-4.0.0" 80231 - sources."supports-color-7.2.0" 80250 + sources."@hapi/hoek-8.5.1" 80251 + sources."@hapi/topo-3.1.6" 80232 80252 ]; 80233 80253 }) 80254 + sources."@hapi/pinpoint-1.0.2" 80255 + sources."@hapi/topo-5.1.0" 80256 + sources."@jest/types-26.6.2" 80234 80257 sources."@jimp/bmp-0.12.1" 80235 80258 sources."@jimp/core-0.12.1" 80236 80259 sources."@jimp/custom-0.12.1" ··· 80283 80306 sources."@npmcli/promise-spawn-1.3.2" 80284 80307 sources."@npmcli/run-script-1.8.5" 80285 80308 sources."@pmmmwh/react-refresh-webpack-plugin-0.3.3" 80286 - sources."@react-native-community/cli-debugger-ui-4.13.1" 80287 - (sources."@react-native-community/cli-server-api-4.9.0" // { 80309 + sources."@react-native-community/cli-debugger-ui-5.0.1" 80310 + (sources."@react-native-community/cli-server-api-5.0.1" // { 80288 80311 dependencies = [ 80289 80312 sources."ultron-1.0.2" 80290 80313 sources."ws-1.1.5" 80291 80314 ]; 80292 80315 }) 80293 - (sources."@react-native-community/cli-tools-4.13.0" // { 80316 + (sources."@react-native-community/cli-tools-5.0.1" // { 80294 80317 dependencies = [ 80295 80318 sources."ansi-styles-4.3.0" 80296 80319 sources."chalk-3.0.0" ··· 80304 80327 sources."supports-color-7.2.0" 80305 80328 ]; 80306 80329 }) 80330 + sources."@rollup/plugin-babel-5.3.0" 80331 + sources."@rollup/plugin-node-resolve-11.2.1" 80332 + sources."@rollup/plugin-replace-2.4.2" 80333 + sources."@rollup/pluginutils-3.1.0" 80307 80334 sources."@segment/loosely-validate-event-2.0.0" 80335 + sources."@sideway/address-4.1.2" 80336 + sources."@sideway/formula-3.0.0" 80337 + sources."@sideway/pinpoint-2.0.0" 80308 80338 sources."@sindresorhus/is-4.0.1" 80339 + sources."@surma/rollup-plugin-off-main-thread-1.4.2" 80309 80340 sources."@szmarczak/http-timer-4.0.6" 80310 80341 sources."@tootallnate/once-1.1.2" 80311 80342 sources."@types/cacheable-request-6.0.2" 80343 + sources."@types/estree-0.0.39" 80312 80344 sources."@types/glob-7.1.4" 80313 80345 sources."@types/html-minifier-terser-5.1.2" 80314 80346 sources."@types/http-cache-semantics-4.0.1" 80315 80347 sources."@types/istanbul-lib-coverage-2.0.3" 80316 80348 sources."@types/istanbul-lib-report-3.0.0" 80317 - sources."@types/istanbul-reports-1.1.2" 80349 + sources."@types/istanbul-reports-3.0.1" 80318 80350 sources."@types/json-schema-7.0.8" 80319 80351 sources."@types/keyv-3.1.2" 80320 80352 sources."@types/minimatch-3.0.5" 80321 80353 sources."@types/node-9.6.61" 80322 80354 sources."@types/q-1.5.5" 80355 + sources."@types/resolve-1.17.1" 80323 80356 sources."@types/responselike-1.0.0" 80324 80357 sources."@types/retry-0.12.1" 80325 80358 sources."@types/source-list-map-0.1.2" ··· 80438 80471 sources."aws4-1.11.0" 80439 80472 sources."axios-0.21.1" 80440 80473 sources."axios-retry-3.1.9" 80441 - sources."babel-extract-comments-1.0.0" 80442 80474 (sources."babel-loader-8.1.0" // { 80443 80475 dependencies = [ 80444 80476 sources."json5-1.0.1" ··· 80453 80485 }) 80454 80486 sources."babel-plugin-polyfill-corejs3-0.2.3" 80455 80487 sources."babel-plugin-polyfill-regenerator-0.2.2" 80456 - sources."babel-plugin-syntax-object-rest-spread-6.13.0" 80457 80488 sources."babel-plugin-syntax-trailing-function-commas-7.0.0-beta.0" 80458 - sources."babel-plugin-transform-object-rest-spread-6.26.0" 80459 80489 sources."babel-preset-fbjs-3.4.0" 80460 80490 (sources."babel-runtime-6.26.0" // { 80461 80491 dependencies = [ 80462 80492 sources."regenerator-runtime-0.11.1" 80463 80493 ]; 80464 80494 }) 80465 - sources."babylon-6.18.0" 80466 80495 sources."backo2-1.0.2" 80467 80496 sources."balanced-match-1.0.2" 80468 80497 (sources."base-0.11.2" // { ··· 80522 80551 sources."buffer-from-1.1.1" 80523 80552 sources."buffer-indexof-1.1.1" 80524 80553 sources."buffer-xor-1.0.3" 80554 + sources."builtin-modules-3.2.0" 80525 80555 sources."builtin-status-codes-3.0.0" 80526 80556 sources."builtins-1.0.3" 80527 80557 sources."bytes-3.0.0" ··· 80619 80649 }) 80620 80650 sources."code-point-at-1.1.0" 80621 80651 sources."collection-visit-1.0.0" 80622 - sources."color-3.1.3" 80652 + (sources."color-3.2.0" // { 80653 + dependencies = [ 80654 + sources."color-convert-2.0.1" 80655 + sources."color-name-1.1.4" 80656 + ]; 80657 + }) 80623 80658 sources."color-convert-1.9.3" 80624 80659 sources."color-name-1.1.3" 80625 - sources."color-string-1.5.5" 80660 + sources."color-string-1.6.0" 80626 80661 sources."colorette-1.2.2" 80627 80662 sources."colors-1.4.0" 80628 80663 sources."combined-stream-1.0.8" ··· 80815 80850 sources."duplexify-3.7.1" 80816 80851 sources."ecc-jsbn-0.1.2" 80817 80852 sources."ee-first-1.1.1" 80818 - sources."electron-to-chromium-1.3.776" 80853 + sources."ejs-2.7.4" 80854 + sources."electron-to-chromium-1.3.779" 80819 80855 (sources."elliptic-6.5.4" // { 80820 80856 dependencies = [ 80821 80857 sources."bn.js-4.12.0" ··· 80858 80894 ]; 80859 80895 }) 80860 80896 sources."estraverse-4.3.0" 80897 + sources."estree-walker-1.0.1" 80861 80898 sources."esutils-2.0.3" 80862 80899 sources."etag-1.8.1" 80863 80900 sources."eventemitter3-2.0.3" ··· 80892 80929 sources."ms-2.0.0" 80893 80930 ]; 80894 80931 }) 80895 - (sources."expo-pwa-0.0.88" // { 80932 + (sources."expo-pwa-0.0.90" // { 80896 80933 dependencies = [ 80897 80934 sources."commander-2.20.0" 80898 80935 ]; ··· 81044 81081 sources."he-1.2.0" 81045 81082 sources."hex-color-regex-1.1.0" 81046 81083 sources."hmac-drbg-1.0.1" 81047 - sources."hoek-4.2.1" 81048 81084 sources."hosted-git-info-3.0.8" 81049 81085 sources."hpack.js-2.1.6" 81050 81086 sources."hsl-regex-1.0.0" ··· 81145 81181 ]; 81146 81182 }) 81147 81183 sources."is-lambda-1.0.1" 81184 + sources."is-module-1.0.0" 81148 81185 sources."is-negative-zero-2.0.1" 81149 81186 sources."is-number-7.0.0" 81150 81187 sources."is-number-object-1.0.5" ··· 81194 81231 sources."is-windows-1.0.2" 81195 81232 sources."is-wsl-2.2.0" 81196 81233 sources."isarray-1.0.0" 81197 - sources."isemail-3.2.0" 81198 81234 sources."isexe-2.0.0" 81199 81235 sources."isobject-3.0.1" 81200 81236 sources."isstream-0.1.2" ··· 81206 81242 ]; 81207 81243 }) 81208 81244 sources."jimp-0.12.1" 81209 - sources."joi-11.4.0" 81245 + sources."joi-17.4.1" 81210 81246 sources."join-component-1.1.0" 81211 81247 sources."jpeg-js-0.4.3" 81212 81248 sources."js-tokens-4.0.0" ··· 81228 81264 ]; 81229 81265 }) 81230 81266 sources."json-schema-traverse-0.4.1" 81231 - sources."json-stable-stringify-1.0.1" 81232 81267 sources."json-stringify-safe-5.0.1" 81233 81268 sources."json3-3.3.3" 81234 81269 sources."json5-2.2.0" ··· 81253 81288 sources."loader-utils-2.0.0" 81254 81289 sources."locate-path-6.0.0" 81255 81290 sources."lodash-4.17.21" 81256 - sources."lodash._reinterpolate-3.0.0" 81257 81291 sources."lodash.assign-4.2.0" 81258 81292 sources."lodash.debounce-4.0.8" 81259 81293 sources."lodash.isobject-3.0.2" 81260 81294 sources."lodash.isstring-4.0.1" 81261 81295 sources."lodash.memoize-4.1.2" 81262 - sources."lodash.template-4.5.0" 81263 - sources."lodash.templatesettings-4.2.0" 81296 + sources."lodash.sortby-4.7.0" 81264 81297 sources."lodash.uniq-4.5.0" 81265 81298 (sources."log-symbols-2.2.0" // { 81266 81299 dependencies = [ ··· 81276 81309 }) 81277 81310 sources."lowercase-keys-2.0.0" 81278 81311 sources."lru-cache-6.0.0" 81312 + sources."magic-string-0.25.7" 81279 81313 (sources."make-dir-2.1.0" // { 81280 81314 dependencies = [ 81281 81315 sources."semver-5.7.1" ··· 81404 81438 sources."tslib-2.3.0" 81405 81439 ]; 81406 81440 }) 81441 + sources."nocache-2.1.0" 81407 81442 sources."node-fetch-2.6.1" 81408 81443 sources."node-forge-0.10.0" 81409 81444 (sources."node-gyp-7.1.2" // { ··· 81745 81780 sources."prepend-http-3.0.1" 81746 81781 sources."pretty-bytes-5.6.0" 81747 81782 sources."pretty-error-2.1.2" 81748 - (sources."pretty-format-25.5.0" // { 81783 + (sources."pretty-format-26.6.2" // { 81749 81784 dependencies = [ 81750 81785 sources."ansi-styles-4.3.0" 81751 81786 sources."color-convert-2.0.1" ··· 81816 81851 ]; 81817 81852 }) 81818 81853 sources."react-error-overlay-6.0.9" 81819 - sources."react-is-16.13.1" 81854 + sources."react-is-17.0.2" 81820 81855 sources."react-refresh-0.4.3" 81821 81856 sources."read-chunk-3.2.0" 81822 81857 sources."read-last-lines-1.6.0" ··· 81889 81924 ]; 81890 81925 }) 81891 81926 sources."ripemd160-2.0.2" 81927 + sources."rollup-2.53.2" 81928 + (sources."rollup-plugin-terser-7.0.2" // { 81929 + dependencies = [ 81930 + sources."commander-2.20.3" 81931 + sources."source-map-0.7.3" 81932 + (sources."source-map-support-0.5.19" // { 81933 + dependencies = [ 81934 + sources."source-map-0.6.1" 81935 + ]; 81936 + }) 81937 + sources."terser-5.7.1" 81938 + ]; 81939 + }) 81892 81940 sources."router-ips-1.0.0" 81893 81941 sources."run-parallel-1.2.0" 81894 81942 sources."run-queue-1.0.3" ··· 81946 81994 sources."uuid-2.0.3" 81947 81995 ]; 81948 81996 }) 81949 - sources."slugify-1.5.3" 81997 + sources."slugify-1.6.0" 81950 81998 sources."smart-buffer-4.1.0" 81951 81999 (sources."snapdragon-0.8.2" // { 81952 82000 dependencies = [ ··· 81996 82044 sources."source-map-resolve-0.5.3" 81997 82045 sources."source-map-support-0.4.18" 81998 82046 sources."source-map-url-0.4.1" 82047 + sources."sourcemap-codec-1.4.8" 81999 82048 sources."spdy-4.0.2" 82000 82049 (sources."spdy-transport-3.0.0" // { 82001 82050 dependencies = [ ··· 82059 82108 ]; 82060 82109 }) 82061 82110 sources."strip-ansi-6.0.0" 82062 - sources."strip-comments-1.0.2" 82111 + sources."strip-comments-2.0.1" 82063 82112 sources."strip-eof-1.0.0" 82064 82113 sources."strip-json-comments-2.0.1" 82065 82114 sources."style-loader-1.2.1" ··· 82157 82206 sources."to-regex-3.0.2" 82158 82207 sources."to-regex-range-5.0.1" 82159 82208 sources."toidentifier-1.0.0" 82160 - sources."topo-2.0.2" 82161 82209 sources."tough-cookie-2.5.0" 82210 + sources."tr46-1.0.1" 82162 82211 sources."traverse-0.6.6" 82163 82212 sources."tree-kill-1.2.2" 82164 82213 sources."ts-invariant-0.4.4" ··· 82261 82310 }) 82262 82311 sources."wbuf-1.7.3" 82263 82312 sources."wcwidth-1.0.1" 82313 + sources."webidl-conversions-4.0.2" 82264 82314 (sources."webpack-4.43.0" // { 82265 82315 dependencies = [ 82266 82316 sources."braces-2.3.2" ··· 82390 82440 }) 82391 82441 sources."websocket-driver-0.6.5" 82392 82442 sources."websocket-extensions-0.1.4" 82443 + sources."whatwg-url-7.1.0" 82393 82444 sources."which-1.3.1" 82394 82445 sources."which-boxed-primitive-1.0.2" 82395 82446 sources."which-module-2.0.0" ··· 82402 82453 }) 82403 82454 sources."widest-line-3.1.0" 82404 82455 sources."with-open-file-0.1.7" 82405 - sources."workbox-background-sync-3.6.3" 82406 - sources."workbox-broadcast-cache-update-3.6.3" 82407 - (sources."workbox-build-3.6.3" // { 82456 + sources."workbox-background-sync-6.1.5" 82457 + sources."workbox-broadcast-update-6.1.5" 82458 + (sources."workbox-build-6.1.5" // { 82408 82459 dependencies = [ 82409 - sources."fs-extra-4.0.3" 82410 - sources."jsonfile-4.0.0" 82411 - sources."pretty-bytes-4.0.2" 82412 - sources."universalify-0.1.2" 82460 + (sources."@babel/core-7.14.6" // { 82461 + dependencies = [ 82462 + sources."source-map-0.5.7" 82463 + ]; 82464 + }) 82465 + sources."crypto-random-string-2.0.0" 82466 + sources."fs-extra-9.1.0" 82467 + sources."semver-6.3.0" 82468 + sources."source-map-0.8.0-beta.0" 82469 + sources."temp-dir-2.0.0" 82470 + sources."tempy-0.6.0" 82471 + sources."type-fest-0.16.0" 82472 + sources."unique-string-2.0.0" 82473 + sources."universalify-2.0.0" 82413 82474 ]; 82414 82475 }) 82415 - sources."workbox-cache-expiration-3.6.3" 82416 - sources."workbox-cacheable-response-3.6.3" 82417 - sources."workbox-core-3.6.3" 82418 - sources."workbox-google-analytics-3.6.3" 82419 - sources."workbox-navigation-preload-3.6.3" 82420 - sources."workbox-precaching-3.6.3" 82421 - sources."workbox-range-requests-3.6.3" 82422 - sources."workbox-routing-3.6.3" 82423 - sources."workbox-strategies-3.6.3" 82424 - sources."workbox-streams-3.6.3" 82425 - sources."workbox-sw-3.6.3" 82426 - sources."workbox-webpack-plugin-3.6.3" 82476 + sources."workbox-cacheable-response-6.1.5" 82477 + sources."workbox-core-6.1.5" 82478 + sources."workbox-expiration-6.1.5" 82479 + sources."workbox-google-analytics-6.1.5" 82480 + sources."workbox-navigation-preload-6.1.5" 82481 + sources."workbox-precaching-6.1.5" 82482 + sources."workbox-range-requests-6.1.5" 82483 + sources."workbox-recipes-6.1.5" 82484 + sources."workbox-routing-6.1.5" 82485 + sources."workbox-strategies-6.1.5" 82486 + sources."workbox-streams-6.1.5" 82487 + sources."workbox-sw-6.1.5" 82488 + sources."workbox-webpack-plugin-6.1.5" 82489 + sources."workbox-window-6.1.5" 82427 82490 sources."worker-farm-1.7.0" 82428 82491 (sources."worker-loader-2.0.0" // { 82429 82492 dependencies = [ ··· 82448 82511 sources."uuid-7.0.3" 82449 82512 ]; 82450 82513 }) 82451 - (sources."xdl-59.0.48" // { 82514 + (sources."xdl-59.0.50" // { 82452 82515 dependencies = [ 82453 82516 sources."chownr-1.1.4" 82454 82517 sources."fs-minipass-1.2.7" ··· 83356 83419 sources."@types/json-schema-7.0.8" 83357 83420 sources."@types/long-4.0.1" 83358 83421 sources."@types/minimatch-3.0.5" 83359 - sources."@types/node-16.3.2" 83422 + sources."@types/node-16.3.3" 83360 83423 sources."JSONStream-1.3.5" 83361 83424 sources."abbrev-1.1.1" 83362 83425 sources."abort-controller-3.0.0" ··· 83495 83558 }) 83496 83559 sources."color-convert-2.0.1" 83497 83560 sources."color-name-1.1.4" 83498 - sources."color-string-1.5.5" 83561 + sources."color-string-1.6.0" 83499 83562 sources."colors-1.0.3" 83500 83563 sources."colorspace-1.1.2" 83501 83564 sources."combined-stream-1.0.8" ··· 83705 83768 sources."glob-slasher-1.0.1" 83706 83769 sources."global-dirs-2.1.0" 83707 83770 sources."google-auth-library-6.1.6" 83708 - (sources."google-gax-2.18.0" // { 83771 + (sources."google-gax-2.19.0" // { 83709 83772 dependencies = [ 83710 83773 sources."google-auth-library-7.3.0" 83711 83774 ]; ··· 84462 84525 dependencies = [ 84463 84526 sources."@types/atob-2.1.2" 84464 84527 sources."@types/inquirer-6.5.0" 84465 - sources."@types/node-16.3.2" 84528 + sources."@types/node-16.3.3" 84466 84529 sources."@types/through-0.0.30" 84467 84530 sources."ajv-6.12.6" 84468 84531 sources."ansi-escapes-4.3.2" ··· 85247 85310 sources."@types/istanbul-lib-report-3.0.0" 85248 85311 sources."@types/istanbul-reports-1.1.2" 85249 85312 sources."@types/json-patch-0.0.30" 85250 - sources."@types/node-16.3.2" 85313 + sources."@types/node-16.3.3" 85251 85314 sources."@types/node-fetch-2.5.11" 85252 85315 sources."@types/unist-2.0.6" 85253 85316 sources."@types/yargs-15.0.14" ··· 85364 85427 ]; 85365 85428 }) 85366 85429 sources."content-type-1.0.4" 85367 - sources."contentful-management-7.29.0" 85430 + sources."contentful-management-7.30.0" 85368 85431 sources."contentful-sdk-core-6.8.0" 85369 85432 sources."convert-hrtime-3.0.0" 85370 85433 (sources."convert-source-map-1.8.0" // { ··· 85410 85473 sources."dotenv-8.6.0" 85411 85474 sources."duplexer3-0.1.4" 85412 85475 sources."ee-first-1.1.1" 85413 - sources."electron-to-chromium-1.3.776" 85476 + sources."electron-to-chromium-1.3.779" 85414 85477 sources."emoji-regex-7.0.3" 85415 85478 sources."encodeurl-1.0.2" 85416 85479 sources."end-of-stream-1.4.4" ··· 85691 85754 sources."path-key-2.0.1" 85692 85755 sources."path-parse-1.0.7" 85693 85756 sources."path-to-regexp-0.1.7" 85694 - sources."peek-readable-3.1.4" 85757 + sources."peek-readable-4.0.0" 85695 85758 sources."picomatch-2.3.0" 85696 85759 sources."pkg-dir-4.2.0" 85697 85760 sources."prepend-http-2.0.0" ··· 85821 85884 sources."strip-final-newline-2.0.0" 85822 85885 sources."strip-indent-3.0.0" 85823 85886 sources."strip-json-comments-2.0.1" 85824 - sources."strtok3-6.1.3" 85887 + sources."strtok3-6.2.0" 85825 85888 sources."style-to-object-0.3.0" 85826 85889 sources."supports-color-5.5.0" 85827 85890 sources."term-size-2.2.1" ··· 85890 85953 sources."write-file-atomic-3.0.3" 85891 85954 sources."ws-7.5.3" 85892 85955 sources."xdg-basedir-4.0.0" 85893 - sources."xstate-4.22.0" 85956 + sources."xstate-4.23.0" 85894 85957 sources."xtend-4.0.2" 85895 85958 sources."y18n-4.0.3" 85896 85959 sources."yallist-4.0.0" ··· 86203 86266 sources."@types/minimist-1.2.2" 86204 86267 sources."@types/normalize-package-data-2.4.1" 86205 86268 sources."agent-base-6.0.2" 86206 - sources."ajv-8.6.1" 86269 + sources."ajv-8.6.2" 86207 86270 sources."ajv-formats-2.1.0" 86208 86271 (sources."ansi-align-3.0.0" // { 86209 86272 dependencies = [ ··· 86637 86700 sources."@nodelib/fs.walk-1.2.8" 86638 86701 sources."@sindresorhus/is-0.14.0" 86639 86702 sources."@szmarczak/http-timer-1.1.2" 86640 - sources."@types/node-16.3.2" 86703 + sources."@types/node-16.3.3" 86641 86704 sources."@types/parse-json-4.0.0" 86642 86705 sources."@types/websocket-1.0.2" 86643 86706 sources."abort-controller-3.0.0" ··· 87382 87445 sources."supports-color-7.2.0" 87383 87446 ]; 87384 87447 }) 87385 - sources."systeminformation-5.7.7" 87448 + sources."systeminformation-5.7.8" 87386 87449 sources."term-canvas-0.0.5" 87387 87450 sources."type-fest-0.21.3" 87388 87451 sources."wordwrap-0.0.3" ··· 89324 89387 dependencies = [ 89325 89388 sources."@iarna/toml-2.2.5" 89326 89389 sources."@msgpack/msgpack-2.7.0" 89327 - sources."@ot-builder/bin-composite-types-1.0.10" 89328 - sources."@ot-builder/bin-util-1.0.10" 89329 - (sources."@ot-builder/cli-help-shower-1.0.10" // { 89390 + sources."@ot-builder/bin-composite-types-1.0.11" 89391 + sources."@ot-builder/bin-util-1.0.11" 89392 + (sources."@ot-builder/cli-help-shower-1.0.11" // { 89330 89393 dependencies = [ 89331 89394 sources."ansi-styles-4.3.0" 89332 89395 sources."chalk-4.1.1" ··· 89336 89399 sources."supports-color-7.2.0" 89337 89400 ]; 89338 89401 }) 89339 - sources."@ot-builder/cli-proc-1.0.10" 89340 - sources."@ot-builder/cli-shared-1.0.10" 89341 - sources."@ot-builder/common-impl-1.0.10" 89342 - sources."@ot-builder/errors-1.0.10" 89343 - sources."@ot-builder/io-bin-cff-1.0.10" 89344 - sources."@ot-builder/io-bin-encoding-1.0.10" 89345 - sources."@ot-builder/io-bin-ext-private-1.0.10" 89346 - sources."@ot-builder/io-bin-font-1.0.10" 89347 - sources."@ot-builder/io-bin-glyph-store-1.0.10" 89348 - sources."@ot-builder/io-bin-layout-1.0.10" 89349 - sources."@ot-builder/io-bin-metadata-1.0.10" 89350 - sources."@ot-builder/io-bin-metric-1.0.10" 89351 - sources."@ot-builder/io-bin-name-1.0.10" 89352 - sources."@ot-builder/io-bin-sfnt-1.0.10" 89353 - sources."@ot-builder/io-bin-ttf-1.0.10" 89354 - sources."@ot-builder/ot-1.0.10" 89355 - sources."@ot-builder/ot-encoding-1.0.10" 89356 - sources."@ot-builder/ot-ext-private-1.0.10" 89357 - sources."@ot-builder/ot-glyphs-1.0.10" 89358 - sources."@ot-builder/ot-layout-1.0.10" 89359 - sources."@ot-builder/ot-metadata-1.0.10" 89360 - sources."@ot-builder/ot-name-1.0.10" 89361 - sources."@ot-builder/ot-sfnt-1.0.10" 89362 - sources."@ot-builder/ot-standard-glyph-namer-1.0.10" 89363 - sources."@ot-builder/prelude-1.0.10" 89364 - sources."@ot-builder/primitive-1.0.10" 89365 - sources."@ot-builder/rectify-1.0.10" 89366 - sources."@ot-builder/stat-glyphs-1.0.10" 89367 - sources."@ot-builder/trace-1.0.10" 89368 - sources."@ot-builder/var-store-1.0.10" 89369 - sources."@ot-builder/variance-1.0.10" 89402 + sources."@ot-builder/cli-proc-1.0.11" 89403 + sources."@ot-builder/cli-shared-1.0.11" 89404 + sources."@ot-builder/common-impl-1.0.11" 89405 + sources."@ot-builder/errors-1.0.11" 89406 + sources."@ot-builder/io-bin-cff-1.0.11" 89407 + sources."@ot-builder/io-bin-encoding-1.0.11" 89408 + sources."@ot-builder/io-bin-ext-private-1.0.11" 89409 + sources."@ot-builder/io-bin-font-1.0.11" 89410 + sources."@ot-builder/io-bin-glyph-store-1.0.11" 89411 + sources."@ot-builder/io-bin-layout-1.0.11" 89412 + sources."@ot-builder/io-bin-metadata-1.0.11" 89413 + sources."@ot-builder/io-bin-metric-1.0.11" 89414 + sources."@ot-builder/io-bin-name-1.0.11" 89415 + sources."@ot-builder/io-bin-sfnt-1.0.11" 89416 + sources."@ot-builder/io-bin-ttf-1.0.11" 89417 + sources."@ot-builder/ot-1.0.11" 89418 + sources."@ot-builder/ot-encoding-1.0.11" 89419 + sources."@ot-builder/ot-ext-private-1.0.11" 89420 + sources."@ot-builder/ot-glyphs-1.0.11" 89421 + sources."@ot-builder/ot-layout-1.0.11" 89422 + sources."@ot-builder/ot-metadata-1.0.11" 89423 + sources."@ot-builder/ot-name-1.0.11" 89424 + sources."@ot-builder/ot-sfnt-1.0.11" 89425 + sources."@ot-builder/ot-standard-glyph-namer-1.0.11" 89426 + sources."@ot-builder/prelude-1.0.11" 89427 + sources."@ot-builder/primitive-1.0.11" 89428 + sources."@ot-builder/rectify-1.0.11" 89429 + sources."@ot-builder/stat-glyphs-1.0.11" 89430 + sources."@ot-builder/trace-1.0.11" 89431 + sources."@ot-builder/var-store-1.0.11" 89432 + sources."@ot-builder/variance-1.0.11" 89370 89433 sources."@unicode/unicode-13.0.0-1.1.0" 89371 89434 sources."aglfn-1.0.2" 89372 89435 sources."amdefine-1.0.1" ··· 89374 89437 sources."ansi-styles-3.2.1" 89375 89438 sources."argparse-2.0.1" 89376 89439 sources."async-0.9.2" 89377 - sources."at-least-node-1.0.0" 89378 89440 sources."atob-2.1.2" 89379 89441 sources."balanced-match-1.0.2" 89380 89442 sources."brace-expansion-1.1.11" 89381 - sources."camelcase-5.3.1" 89382 89443 sources."chainsaw-0.0.9" 89383 89444 sources."chalk-2.4.2" 89384 89445 sources."cldr-6.1.1" ··· 89391 89452 sources."css-2.2.4" 89392 89453 sources."css-parse-2.0.0" 89393 89454 sources."debug-3.1.0" 89394 - sources."decamelize-1.2.0" 89395 89455 sources."decode-uri-component-0.2.0" 89396 89456 sources."deep-is-0.1.3" 89397 89457 sources."ejs-3.1.6" ··· 89427 89487 sources."fast-deep-equal-3.1.3" 89428 89488 sources."fast-levenshtein-2.0.6" 89429 89489 sources."filelist-1.0.2" 89430 - sources."find-up-4.1.0" 89431 89490 sources."fs-extra-10.0.0" 89432 89491 sources."fs.realpath-1.0.0" 89433 89492 sources."get-caller-file-2.0.5" ··· 89443 89502 sources."jake-10.8.2" 89444 89503 sources."jsonfile-6.1.0" 89445 89504 sources."levn-0.3.0" 89446 - sources."locate-path-5.0.0" 89447 89505 sources."lru-cache-2.5.0" 89448 89506 sources."memoizeasync-1.1.0" 89449 89507 sources."mimic-fn-2.1.0" ··· 89453 89511 sources."once-1.4.0" 89454 89512 sources."onetime-5.1.2" 89455 89513 sources."optionator-0.8.3" 89456 - sources."ot-builder-1.0.10" 89457 - sources."otb-ttc-bundle-1.0.10" 89458 - sources."p-limit-2.3.0" 89459 - sources."p-locate-4.1.0" 89460 - sources."p-try-2.2.0" 89514 + sources."ot-builder-1.0.11" 89515 + sources."otb-ttc-bundle-1.0.11" 89461 89516 sources."passerror-1.1.1" 89462 89517 sources."patel-0.34.0" 89463 - sources."path-exists-4.0.0" 89464 89518 sources."path-is-absolute-1.0.1" 89465 89519 sources."patrisika-0.22.2" 89466 - sources."patrisika-scopes-0.11.1" 89520 + sources."patrisika-scopes-0.12.0" 89467 89521 sources."pegjs-0.10.0" 89468 89522 sources."prelude-ls-1.1.2" 89469 89523 sources."require-directory-2.1.1" 89470 - sources."require-main-filename-2.0.0" 89471 89524 sources."resolve-url-0.2.1" 89472 89525 sources."restore-cursor-3.1.0" 89473 89526 sources."resumer-0.0.0" ··· 89480 89533 ]; 89481 89534 }) 89482 89535 sources."seq-0.3.5" 89483 - sources."set-blocking-2.0.0" 89484 89536 sources."signal-exit-3.0.3" 89485 89537 sources."source-map-0.6.1" 89486 89538 sources."source-map-resolve-0.5.3" ··· 89504 89556 sources."unicoderegexp-0.4.1" 89505 89557 sources."universalify-2.0.0" 89506 89558 sources."urix-0.1.0" 89507 - (sources."verda-1.2.2" // { 89559 + (sources."verda-1.3.0" // { 89508 89560 dependencies = [ 89509 89561 sources."ansi-styles-4.3.0" 89510 89562 sources."chalk-4.1.1" 89511 - sources."cliui-6.0.0" 89512 89563 sources."color-convert-2.0.1" 89513 89564 sources."color-name-1.1.4" 89514 - sources."fs-extra-9.1.0" 89515 89565 sources."has-flag-4.0.0" 89516 89566 sources."supports-color-7.2.0" 89517 - sources."wrap-ansi-6.2.0" 89518 - sources."y18n-4.0.3" 89519 - sources."yargs-15.4.1" 89520 - sources."yargs-parser-18.1.3" 89567 + sources."yargs-17.0.1" 89521 89568 ]; 89522 89569 }) 89523 89570 sources."wawoff2-2.0.0" 89524 89571 sources."which-2.0.2" 89525 - sources."which-module-2.0.0" 89526 89572 sources."word-wrap-1.2.3" 89527 89573 sources."wordwrap-0.0.3" 89528 89574 (sources."wrap-ansi-7.0.0" // { ··· 89740 89786 sources."async-mutex-0.1.4" 89741 89787 sources."asynckit-0.4.0" 89742 89788 sources."atob-2.1.2" 89743 - (sources."aws-sdk-2.947.0" // { 89789 + (sources."aws-sdk-2.948.0" // { 89744 89790 dependencies = [ 89745 89791 sources."sax-1.2.1" 89746 89792 sources."uuid-3.3.2" ··· 89782 89828 sources."color-3.1.2" 89783 89829 sources."color-convert-1.9.3" 89784 89830 sources."color-name-1.1.3" 89785 - sources."color-string-1.5.5" 89831 + sources."color-string-1.6.0" 89786 89832 sources."combined-stream-1.0.8" 89787 89833 sources."command-line-usage-4.1.0" 89788 89834 sources."commander-6.2.1" ··· 90226 90272 sources."seventh-0.7.40" 90227 90273 (sources."sharp-0.26.3" // { 90228 90274 dependencies = [ 90229 - sources."color-3.1.3" 90275 + sources."color-3.2.0" 90276 + sources."color-convert-2.0.1" 90277 + sources."color-name-1.1.4" 90230 90278 sources."decompress-response-6.0.0" 90231 90279 sources."mimic-response-3.1.0" 90232 90280 sources."simple-get-4.0.0" ··· 91764 91812 sources."@types/component-emitter-1.2.10" 91765 91813 sources."@types/cookie-0.4.1" 91766 91814 sources."@types/cors-2.8.12" 91767 - sources."@types/node-16.3.2" 91815 + sources."@types/node-16.3.3" 91768 91816 sources."accepts-1.3.7" 91769 91817 sources."ansi-regex-5.0.0" 91770 91818 sources."ansi-styles-4.3.0" ··· 94576 94624 sources."@types/istanbul-lib-report-3.0.0" 94577 94625 sources."@types/istanbul-reports-1.1.2" 94578 94626 sources."@types/json-schema-7.0.8" 94579 - sources."@types/node-16.3.2" 94627 + sources."@types/node-16.3.3" 94580 94628 sources."@types/normalize-package-data-2.4.1" 94581 94629 sources."@types/resolve-0.0.8" 94582 94630 sources."@types/yargs-15.0.14" ··· 94873 94921 sources."duplexer2-0.1.4" 94874 94922 sources."duplexify-3.7.1" 94875 94923 sources."ecc-jsbn-0.1.2" 94876 - sources."electron-to-chromium-1.3.776" 94924 + sources."electron-to-chromium-1.3.779" 94877 94925 (sources."elliptic-6.5.4" // { 94878 94926 dependencies = [ 94879 94927 sources."bn.js-4.12.0" ··· 96121 96169 }; 96122 96170 dependencies = [ 96123 96171 sources."@braintree/sanitize-url-3.1.0" 96124 - sources."@types/node-16.3.2" 96172 + sources."@types/node-16.3.3" 96125 96173 sources."@types/yauzl-2.9.2" 96126 96174 sources."agent-base-6.0.2" 96127 96175 sources."ansi-styles-4.3.0" ··· 96730 96778 sources."color-3.0.0" 96731 96779 sources."color-convert-1.9.3" 96732 96780 sources."color-name-1.1.3" 96733 - sources."color-string-1.5.5" 96781 + sources."color-string-1.6.0" 96734 96782 sources."colornames-1.1.1" 96735 96783 sources."colors-1.4.0" 96736 96784 sources."colorspace-1.1.2" ··· 96973 97021 sources."@types/node-14.17.5" 96974 97022 ]; 96975 97023 }) 96976 - sources."@netlify/plugins-list-2.19.2" 97024 + sources."@netlify/plugins-list-2.19.3" 96977 97025 sources."@netlify/routing-local-proxy-0.30.2" 96978 97026 (sources."@netlify/run-utils-1.0.7" // { 96979 97027 dependencies = [ ··· 97155 97203 sources."@types/istanbul-reports-1.1.2" 97156 97204 sources."@types/keyv-3.1.2" 97157 97205 sources."@types/minimatch-3.0.5" 97158 - sources."@types/node-16.3.2" 97206 + sources."@types/node-16.3.3" 97159 97207 sources."@types/node-fetch-2.5.11" 97160 97208 sources."@types/normalize-package-data-2.4.1" 97161 97209 sources."@types/resolve-1.17.1" ··· 97187 97235 sources."acorn-8.4.1" 97188 97236 sources."agent-base-6.0.2" 97189 97237 sources."aggregate-error-3.1.0" 97190 - sources."ajv-8.6.1" 97238 + sources."ajv-8.6.2" 97191 97239 (sources."all-node-versions-8.0.0" // { 97192 97240 dependencies = [ 97193 97241 sources."@jest/types-25.5.0" ··· 97395 97443 }) 97396 97444 sources."color-convert-2.0.1" 97397 97445 sources."color-name-1.1.4" 97398 - sources."color-string-1.5.5" 97446 + sources."color-string-1.6.0" 97399 97447 sources."colorette-1.2.2" 97400 97448 sources."colors-1.4.0" 97401 97449 sources."colorspace-1.1.2" ··· 97580 97628 }) 97581 97629 sources."duplexer3-0.1.4" 97582 97630 sources."ee-first-1.1.1" 97583 - sources."electron-to-chromium-1.3.776" 97631 + sources."electron-to-chromium-1.3.779" 97584 97632 sources."elegant-spinner-1.0.1" 97585 97633 sources."elf-cam-0.1.1" 97586 97634 sources."emoji-regex-8.0.0" ··· 100153 100201 sources."@types/http-cache-semantics-4.0.1" 100154 100202 sources."@types/keyv-3.1.2" 100155 100203 sources."@types/minimist-1.2.2" 100156 - sources."@types/node-16.3.2" 100204 + sources."@types/node-16.3.3" 100157 100205 sources."@types/normalize-package-data-2.4.1" 100158 100206 sources."@types/parse-json-4.0.0" 100159 100207 sources."@types/responselike-1.0.0" ··· 100657 100705 npm = nodeEnv.buildNodePackage { 100658 100706 name = "npm"; 100659 100707 packageName = "npm"; 100660 - version = "7.19.1"; 100708 + version = "7.20.0"; 100661 100709 src = fetchurl { 100662 - url = "https://registry.npmjs.org/npm/-/npm-7.19.1.tgz"; 100663 - sha512 = "aN3hZzGkPzKOyhjXtOhnQTGumorFhgpOU6xfuQsF1nJKh4DhsgfOMG4s/SNx56r4xHPvM5m/sk914wzDgKba3A=="; 100710 + url = "https://registry.npmjs.org/npm/-/npm-7.20.0.tgz"; 100711 + sha512 = "59Eje4RcXP9EKYPIJvBvQGTyfEvZWaKdOx5+YZ+IJ+fqYhJJH5ng78qcdD8sFPyA1g1MFBR0DYXKfncwbxXpVA=="; 100664 100712 }; 100665 100713 buildInputs = globalBuildInputs; 100666 100714 meta = { ··· 101512 101560 sources."clone-2.1.2" 101513 101561 sources."coa-2.0.2" 101514 101562 sources."collection-visit-1.0.0" 101515 - sources."color-3.1.3" 101563 + (sources."color-3.2.0" // { 101564 + dependencies = [ 101565 + sources."color-convert-2.0.1" 101566 + sources."color-name-1.1.4" 101567 + ]; 101568 + }) 101516 101569 sources."color-convert-1.9.3" 101517 101570 sources."color-name-1.1.3" 101518 - sources."color-string-1.5.5" 101571 + sources."color-string-1.6.0" 101519 101572 sources."colorette-1.2.2" 101520 101573 sources."combined-stream-1.0.8" 101521 101574 sources."command-exists-1.2.9" ··· 101639 101692 sources."duplexer2-0.1.4" 101640 101693 sources."ecc-jsbn-0.1.2" 101641 101694 sources."ee-first-1.1.1" 101642 - sources."electron-to-chromium-1.3.776" 101695 + sources."electron-to-chromium-1.3.779" 101643 101696 (sources."elliptic-6.5.4" // { 101644 101697 dependencies = [ 101645 101698 sources."bn.js-4.12.0" ··· 103681 103734 sources."statuses-1.5.0" 103682 103735 sources."string_decoder-0.10.31" 103683 103736 sources."supports-color-7.2.0" 103684 - sources."systeminformation-5.7.7" 103737 + sources."systeminformation-5.7.8" 103685 103738 sources."to-regex-range-5.0.1" 103686 103739 sources."toidentifier-1.0.0" 103687 103740 sources."tslib-2.3.0" ··· 103716 103769 pnpm = nodeEnv.buildNodePackage { 103717 103770 name = "pnpm"; 103718 103771 packageName = "pnpm"; 103719 - version = "6.10.0"; 103772 + version = "6.10.2"; 103720 103773 src = fetchurl { 103721 - url = "https://registry.npmjs.org/pnpm/-/pnpm-6.10.0.tgz"; 103722 - sha512 = "fHKtgvnp9CfT/3qijmjUCstOFSB45OAF5EoK6lJxfdpEDe9bgO4om4do8Ut3boV+atZbV6rlEk9vZOUK6BGclw=="; 103774 + url = "https://registry.npmjs.org/pnpm/-/pnpm-6.10.2.tgz"; 103775 + sha512 = "o/CAEMtqjalEJyS9MgID3iZVx46LsqZ8MlwYGmWHNHD7Q0nOqtuYj+BKmgCXRiIWANA/JuC0Y6usNKhU8P3haw=="; 103723 103776 }; 103724 103777 buildInputs = globalBuildInputs; 103725 103778 meta = { ··· 104288 104341 pyright = nodeEnv.buildNodePackage { 104289 104342 name = "pyright"; 104290 104343 packageName = "pyright"; 104291 - version = "1.1.156"; 104344 + version = "1.1.157"; 104292 104345 src = fetchurl { 104293 - url = "https://registry.npmjs.org/pyright/-/pyright-1.1.156.tgz"; 104294 - sha512 = "TIe7mK/BUTmdTBpmEYYT5XuRp8qwaFUxF2782HTTTe3hT2UU8UUN0wtIqwHpgFJZksIbahx4UeJyTaOi4ssq6A=="; 104346 + url = "https://registry.npmjs.org/pyright/-/pyright-1.1.157.tgz"; 104347 + sha512 = "slTex47hQKuyoi579Zk7lEhVH+4Dmn+eZ3gP1JGcFBcbcmDwd9ZI1ESww3jY3YoOYdNbYTafxBNuh3RHGkGiMA=="; 104295 104348 }; 104296 104349 buildInputs = globalBuildInputs; 104297 104350 meta = { ··· 104774 104827 sources."@types/glob-7.1.4" 104775 104828 sources."@types/json-schema-7.0.8" 104776 104829 sources."@types/minimatch-3.0.5" 104777 - sources."@types/node-16.3.2" 104830 + sources."@types/node-16.3.3" 104778 104831 sources."@types/parse-json-4.0.0" 104779 104832 sources."@types/q-1.5.5" 104780 104833 sources."@webassemblyjs/ast-1.9.0" ··· 105016 105069 sources."clone-response-1.0.2" 105017 105070 sources."coa-2.0.2" 105018 105071 sources."collection-visit-1.0.0" 105019 - sources."color-3.1.3" 105072 + (sources."color-3.2.0" // { 105073 + dependencies = [ 105074 + sources."color-convert-2.0.1" 105075 + sources."color-name-1.1.4" 105076 + ]; 105077 + }) 105020 105078 sources."color-convert-1.9.3" 105021 105079 sources."color-name-1.1.3" 105022 - sources."color-string-1.5.5" 105080 + sources."color-string-1.6.0" 105023 105081 sources."colorette-1.2.2" 105024 105082 sources."commander-4.1.1" 105025 105083 sources."commondir-1.0.1" ··· 105191 105249 sources."duplexify-3.7.1" 105192 105250 sources."ee-first-1.1.1" 105193 105251 sources."ejs-2.7.4" 105194 - sources."electron-to-chromium-1.3.776" 105252 + sources."electron-to-chromium-1.3.779" 105195 105253 (sources."elliptic-6.5.4" // { 105196 105254 dependencies = [ 105197 105255 sources."bn.js-4.12.0" ··· 106547 106605 redoc-cli = nodeEnv.buildNodePackage { 106548 106606 name = "redoc-cli"; 106549 106607 packageName = "redoc-cli"; 106550 - version = "0.12.1"; 106608 + version = "0.12.2"; 106551 106609 src = fetchurl { 106552 - url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.12.1.tgz"; 106553 - sha512 = "Ew8ByEayRBZgG9iLv2ZO+h3ZMz55naz1jA1CPt6Vm0xcSbVNYb7ubnbHhSvUGshc2bGu8Je74k1veFZZqXjBeQ=="; 106610 + url = "https://registry.npmjs.org/redoc-cli/-/redoc-cli-0.12.2.tgz"; 106611 + sha512 = "GyOCEr1g+U/Js7lgHj+0vH9L2uCwbc0m9CJrlb099qp6jzmxnJQ6sC85BiN9DOwr4/fsQfVhoNpWQSkkpFBo5Q=="; 106554 106612 }; 106555 106613 dependencies = [ 106556 106614 sources."@babel/code-frame-7.14.5" ··· 106786 106844 ]; 106787 106845 }) 106788 106846 sources."readdirp-3.6.0" 106789 - (sources."redoc-2.0.0-rc.54" // { 106847 + (sources."redoc-2.0.0-rc.55" // { 106790 106848 dependencies = [ 106791 106849 sources."path-browserify-1.0.1" 106792 106850 ]; ··· 107093 107151 sources."escape-string-regexp-1.0.5" 107094 107152 ]; 107095 107153 }) 107096 - (sources."@eslint/eslintrc-0.4.2" // { 107154 + (sources."@eslint/eslintrc-0.4.3" // { 107097 107155 dependencies = [ 107098 107156 sources."ignore-4.0.6" 107099 107157 ]; ··· 107421 107479 sources."supports-color-5.5.0" 107422 107480 (sources."table-6.7.1" // { 107423 107481 dependencies = [ 107424 - sources."ajv-8.6.1" 107482 + sources."ajv-8.6.2" 107425 107483 sources."json-schema-traverse-1.0.0" 107426 107484 ]; 107427 107485 }) ··· 107460 107518 sources."vscode-languageclient-7.1.0-next.5" 107461 107519 sources."vscode-languageserver-protocol-3.17.0-next.6" 107462 107520 sources."vscode-languageserver-types-3.17.0-next.2" 107463 - sources."vscode-test-1.5.2" 107521 + sources."vscode-test-1.6.1" 107464 107522 sources."which-2.0.2" 107465 107523 (sources."wide-align-1.1.3" // { 107466 107524 dependencies = [ ··· 107834 107892 }) 107835 107893 sources."@serverless/dashboard-plugin-5.4.3" 107836 107894 sources."@serverless/event-mocks-1.1.1" 107837 - (sources."@serverless/platform-client-4.2.4" // { 107895 + (sources."@serverless/platform-client-4.2.5" // { 107838 107896 dependencies = [ 107839 107897 sources."adm-zip-0.4.16" 107840 107898 sources."js-yaml-3.14.1" ··· 107847 107905 ]; 107848 107906 }) 107849 107907 sources."@serverless/template-1.1.4" 107850 - (sources."@serverless/utils-5.3.0" // { 107908 + (sources."@serverless/utils-5.4.0" // { 107851 107909 dependencies = [ 107852 107910 sources."get-stream-6.0.1" 107853 107911 sources."jwt-decode-3.1.2" ··· 107865 107923 sources."@types/keyv-3.1.2" 107866 107924 sources."@types/lodash-4.14.171" 107867 107925 sources."@types/long-4.0.1" 107868 - sources."@types/node-16.3.2" 107926 + sources."@types/node-16.3.3" 107869 107927 sources."@types/request-2.48.6" 107870 107928 sources."@types/request-promise-native-1.0.18" 107871 107929 sources."@types/responselike-1.0.0" ··· 107926 107984 sources."async-2.6.3" 107927 107985 sources."asynckit-0.4.0" 107928 107986 sources."at-least-node-1.0.0" 107929 - (sources."aws-sdk-2.947.0" // { 107987 + (sources."aws-sdk-2.948.0" // { 107930 107988 dependencies = [ 107931 107989 sources."buffer-4.9.2" 107932 107990 sources."ieee754-1.1.13" ··· 108029 108087 sources."color-3.0.0" 108030 108088 sources."color-convert-1.9.3" 108031 108089 sources."color-name-1.1.3" 108032 - sources."color-string-1.5.5" 108090 + sources."color-string-1.6.0" 108033 108091 sources."colornames-1.1.1" 108034 108092 sources."colors-1.3.3" 108035 108093 sources."colorspace-1.1.2" ··· 108401 108459 sources."path-loader-1.0.10" 108402 108460 sources."path-type-4.0.0" 108403 108461 sources."path2-0.1.0" 108404 - sources."peek-readable-3.1.4" 108462 + sources."peek-readable-4.0.0" 108405 108463 sources."pend-1.2.0" 108406 108464 sources."performance-now-2.1.0" 108407 108465 sources."picomatch-2.3.0" ··· 108512 108570 sources."strip-dirs-2.1.0" 108513 108571 sources."strip-json-comments-2.0.1" 108514 108572 sources."strip-outer-1.0.1" 108515 - sources."strtok3-6.1.3" 108573 + sources."strtok3-6.2.0" 108516 108574 (sources."superagent-3.8.3" // { 108517 108575 dependencies = [ 108518 108576 sources."debug-3.2.7" ··· 110042 110100 sources."@types/component-emitter-1.2.10" 110043 110101 sources."@types/cookie-0.4.1" 110044 110102 sources."@types/cors-2.8.12" 110045 - sources."@types/node-16.3.2" 110103 + sources."@types/node-16.3.3" 110046 110104 sources."accepts-1.3.7" 110047 110105 sources."base64-arraybuffer-0.1.4" 110048 110106 sources."base64id-2.0.0" ··· 111308 111366 sources."async-1.5.2" 111309 111367 sources."async-limiter-1.0.1" 111310 111368 sources."asynckit-0.4.0" 111311 - (sources."aws-sdk-2.947.0" // { 111369 + (sources."aws-sdk-2.948.0" // { 111312 111370 dependencies = [ 111313 111371 sources."uuid-3.3.2" 111314 111372 ]; ··· 112122 112180 sources."@nodelib/fs.walk-1.2.8" 112123 112181 sources."@stylelint/postcss-css-in-js-0.37.2" 112124 112182 sources."@stylelint/postcss-markdown-0.36.2" 112125 - sources."@types/mdast-3.0.4" 112183 + sources."@types/mdast-3.0.7" 112126 112184 sources."@types/minimist-1.2.2" 112127 112185 sources."@types/normalize-package-data-2.4.1" 112128 112186 sources."@types/parse-json-4.0.0" 112129 112187 sources."@types/unist-2.0.6" 112130 - sources."ajv-8.6.1" 112188 + sources."ajv-8.6.2" 112131 112189 sources."ansi-regex-5.0.0" 112132 112190 sources."ansi-styles-3.2.1" 112133 112191 sources."array-union-2.1.0" ··· 112184 112242 sources."domelementtype-1.3.1" 112185 112243 sources."domhandler-2.4.2" 112186 112244 sources."domutils-1.7.0" 112187 - sources."electron-to-chromium-1.3.776" 112245 + sources."electron-to-chromium-1.3.779" 112188 112246 sources."emoji-regex-8.0.0" 112189 112247 sources."entities-1.1.2" 112190 112248 sources."error-ex-1.3.2" ··· 112417 112475 svelte-language-server = nodeEnv.buildNodePackage { 112418 112476 name = "svelte-language-server"; 112419 112477 packageName = "svelte-language-server"; 112420 - version = "0.14.3"; 112478 + version = "0.14.4"; 112421 112479 src = fetchurl { 112422 - url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.3.tgz"; 112423 - sha512 = "R3mcgZfBYl66aqLx33F1i2homQhsHygFcXDJ4hnEsmzWXO2y1ZVMTCgT3WoOMwcqezU6OytY88K2ny9cfEszNg=="; 112480 + url = "https://registry.npmjs.org/svelte-language-server/-/svelte-language-server-0.14.4.tgz"; 112481 + sha512 = "ldw4/YQR/gpI29Sgv+u/zkHTIMKn2ohpSvfORmDm2H85fNa/Dw8fUoqK080GbVol32sYO8ThzNKkheBjUT0mCw=="; 112424 112482 }; 112425 112483 dependencies = [ 112426 112484 sources."@emmetio/abbreviation-2.2.2" 112427 112485 sources."@emmetio/css-abbreviation-2.1.4" 112428 112486 sources."@emmetio/scanner-1.0.0" 112429 - sources."@types/node-16.3.2" 112487 + sources."@types/node-16.3.3" 112430 112488 sources."@types/pug-2.0.5" 112431 112489 sources."@types/sass-1.16.1" 112432 112490 sources."anymatch-3.1.2" ··· 112469 112527 sources."strip-indent-3.0.0" 112470 112528 sources."svelte-3.38.3" 112471 112529 sources."svelte-preprocess-4.7.4" 112472 - sources."svelte2tsx-0.4.1" 112530 + sources."svelte2tsx-0.4.2" 112473 112531 sources."to-regex-range-5.0.1" 112474 112532 sources."tslib-2.3.0" 112475 112533 sources."typescript-4.3.5" ··· 113493 113551 sources."@textlint/textlint-plugin-text-12.0.2" 113494 113552 sources."@textlint/types-12.0.2" 113495 113553 sources."@textlint/utils-12.0.2" 113496 - sources."@types/mdast-3.0.4" 113554 + sources."@types/mdast-3.0.7" 113497 113555 sources."@types/unist-2.0.6" 113498 - sources."ajv-8.6.1" 113556 + sources."ajv-8.6.2" 113499 113557 sources."ansi-regex-2.1.1" 113500 113558 sources."ansi-styles-2.2.1" 113501 113559 sources."argparse-1.0.10" ··· 114584 114642 sources."@types/cacheable-request-6.0.2" 114585 114643 sources."@types/http-cache-semantics-4.0.1" 114586 114644 sources."@types/keyv-3.1.2" 114587 - sources."@types/node-16.3.2" 114645 + sources."@types/node-16.3.3" 114588 114646 sources."@types/responselike-1.0.0" 114589 114647 sources."abbrev-1.1.1" 114590 114648 sources."abstract-logging-2.0.1" ··· 114884 114942 sources."parseurl-1.3.3" 114885 114943 sources."path-is-absolute-1.0.1" 114886 114944 sources."path-to-regexp-0.1.7" 114887 - sources."peek-readable-3.1.4" 114945 + sources."peek-readable-4.0.0" 114888 114946 sources."performance-now-2.1.0" 114889 114947 sources."pify-4.0.1" 114890 114948 sources."precond-0.2.3" ··· 114969 115027 sources."strip-ansi-3.0.1" 114970 115028 sources."strip-json-comments-2.0.1" 114971 115029 sources."strip-outer-1.0.1" 114972 - sources."strtok3-6.1.3" 115030 + sources."strtok3-6.2.0" 114973 115031 sources."supports-color-7.2.0" 114974 115032 sources."tar-4.4.13" 114975 115033 sources."tlds-1.208.0" ··· 115629 115687 sources."color-3.0.0" 115630 115688 sources."color-convert-1.9.3" 115631 115689 sources."color-name-1.1.3" 115632 - sources."color-string-1.5.5" 115690 + sources."color-string-1.6.0" 115633 115691 sources."colors-1.4.0" 115634 115692 sources."colorspace-1.1.2" 115635 115693 sources."component-emitter-1.3.0" ··· 116129 116187 sources."escape-string-regexp-1.0.5" 116130 116188 ]; 116131 116189 }) 116132 - sources."@eslint/eslintrc-0.4.2" 116190 + sources."@eslint/eslintrc-0.4.3" 116133 116191 sources."@humanwhocodes/config-array-0.5.0" 116134 116192 sources."@humanwhocodes/object-schema-1.2.0" 116135 116193 sources."acorn-7.4.1" ··· 116165 116223 sources."emoji-regex-8.0.0" 116166 116224 sources."enquirer-2.3.6" 116167 116225 sources."escape-string-regexp-4.0.0" 116168 - sources."eslint-7.30.0" 116226 + sources."eslint-7.31.0" 116169 116227 sources."eslint-plugin-vue-7.13.0" 116170 116228 sources."eslint-scope-5.1.1" 116171 116229 (sources."eslint-utils-2.1.0" // { ··· 116263 116321 sources."supports-color-5.5.0" 116264 116322 (sources."table-6.7.1" // { 116265 116323 dependencies = [ 116266 - sources."ajv-8.6.1" 116324 + sources."ajv-8.6.2" 116267 116325 sources."json-schema-traverse-1.0.0" 116268 116326 ]; 116269 116327 }) ··· 116380 116438 }; 116381 116439 dependencies = [ 116382 116440 sources."agent-base-4.3.0" 116383 - sources."balanced-match-1.0.2" 116384 - sources."brace-expansion-1.1.11" 116385 - sources."concat-map-0.0.1" 116386 116441 sources."debug-3.1.0" 116387 116442 sources."es6-promise-4.2.8" 116388 116443 sources."es6-promisify-5.0.0" 116389 116444 sources."http-proxy-agent-2.1.0" 116390 116445 sources."https-proxy-agent-2.2.4" 116391 116446 sources."jsonc-parser-3.0.0" 116392 - sources."minimatch-3.0.4" 116393 116447 sources."ms-2.0.0" 116394 116448 sources."request-light-0.4.0" 116395 - (sources."vscode-json-languageservice-4.1.5" // { 116449 + (sources."vscode-json-languageservice-4.1.6" // { 116396 116450 dependencies = [ 116397 116451 sources."vscode-nls-5.0.0" 116398 116452 ]; ··· 116562 116616 sources."domelementtype-2.2.0" 116563 116617 sources."domhandler-4.2.0" 116564 116618 sources."domutils-2.7.0" 116565 - sources."electron-to-chromium-1.3.776" 116619 + sources."electron-to-chromium-1.3.779" 116566 116620 sources."emoji-regex-8.0.0" 116567 116621 sources."emojis-list-3.0.0" 116568 116622 sources."enhanced-resolve-5.8.2" ··· 116772 116826 sources."vscode-debugadapter-testsupport-1.47.0" 116773 116827 sources."vscode-debugprotocol-1.47.0" 116774 116828 sources."watchpack-2.2.0" 116775 - sources."webpack-5.44.0" 116829 + sources."webpack-5.45.1" 116776 116830 (sources."webpack-cli-4.7.2" // { 116777 116831 dependencies = [ 116778 116832 sources."commander-7.2.0" ··· 117129 117183 sources."@starptech/rehype-webparser-0.10.0" 117130 117184 sources."@starptech/webparser-0.10.0" 117131 117185 sources."@szmarczak/http-timer-1.1.2" 117132 - sources."@types/node-16.3.2" 117186 + sources."@types/node-16.3.3" 117133 117187 sources."@types/unist-2.0.6" 117134 117188 sources."@types/vfile-3.0.2" 117135 117189 sources."@types/vfile-message-2.0.0" ··· 118291 118345 sources."@devicefarmer/adbkit-2.11.3" 118292 118346 sources."@devicefarmer/adbkit-logcat-1.1.0" 118293 118347 sources."@devicefarmer/adbkit-monkey-1.0.1" 118294 - (sources."@eslint/eslintrc-0.4.2" // { 118348 + (sources."@eslint/eslintrc-0.4.3" // { 118295 118349 dependencies = [ 118296 118350 sources."debug-4.3.2" 118297 118351 sources."ms-2.1.2" ··· 118301 118355 sources."@sindresorhus/is-0.14.0" 118302 118356 sources."@szmarczak/http-timer-1.1.2" 118303 118357 sources."@types/minimatch-3.0.5" 118304 - sources."@types/node-16.3.2" 118358 + sources."@types/node-16.3.3" 118305 118359 sources."@types/yauzl-2.9.1" 118306 118360 sources."acorn-7.4.1" 118307 118361 sources."acorn-jsx-5.3.2" ··· 118779 118833 sources."supports-color-7.2.0" 118780 118834 (sources."table-6.7.1" // { 118781 118835 dependencies = [ 118782 - sources."ajv-8.6.1" 118836 + sources."ajv-8.6.2" 118783 118837 sources."ansi-regex-5.0.0" 118784 118838 sources."json-schema-traverse-1.0.0" 118785 118839 sources."strip-ansi-6.0.0" ··· 118854 118908 webpack = nodeEnv.buildNodePackage { 118855 118909 name = "webpack"; 118856 118910 packageName = "webpack"; 118857 - version = "5.44.0"; 118911 + version = "5.45.1"; 118858 118912 src = fetchurl { 118859 - url = "https://registry.npmjs.org/webpack/-/webpack-5.44.0.tgz"; 118860 - sha512 = "I1S1w4QLoKmH19pX6YhYN0NiSXaWY8Ou00oA+aMcr9IUGeF5azns+IKBkfoAAG9Bu5zOIzZt/mN35OffBya8AQ=="; 118913 + url = "https://registry.npmjs.org/webpack/-/webpack-5.45.1.tgz"; 118914 + sha512 = "68VT2ZgG9EHs6h6UxfV2SEYewA9BA3SOLSnC2NEbJJiEwbAiueDL033R1xX0jzjmXvMh0oSeKnKgbO2bDXIEyQ=="; 118861 118915 }; 118862 118916 dependencies = [ 118863 118917 sources."@types/eslint-7.28.0" 118864 118918 sources."@types/eslint-scope-3.7.1" 118865 118919 sources."@types/estree-0.0.50" 118866 118920 sources."@types/json-schema-7.0.8" 118867 - sources."@types/node-16.3.2" 118921 + sources."@types/node-16.3.3" 118868 118922 sources."@webassemblyjs/ast-1.11.1" 118869 118923 sources."@webassemblyjs/floating-point-hex-parser-1.11.1" 118870 118924 sources."@webassemblyjs/helper-api-error-1.11.1" ··· 118891 118945 sources."chrome-trace-event-1.0.3" 118892 118946 sources."colorette-1.2.2" 118893 118947 sources."commander-2.20.3" 118894 - sources."electron-to-chromium-1.3.776" 118948 + sources."electron-to-chromium-1.3.779" 118895 118949 sources."enhanced-resolve-5.8.2" 118896 118950 sources."es-module-lexer-0.7.1" 118897 118951 sources."escalade-3.1.1" ··· 119029 119083 dependencies = [ 119030 119084 sources."@types/glob-7.1.4" 119031 119085 sources."@types/minimatch-3.0.5" 119032 - sources."@types/node-16.3.2" 119086 + sources."@types/node-16.3.3" 119033 119087 sources."accepts-1.3.7" 119034 119088 sources."ajv-6.12.6" 119035 119089 sources."ajv-errors-1.0.1" ··· 119665 119719 webtorrent-cli = nodeEnv.buildNodePackage { 119666 119720 name = "webtorrent-cli"; 119667 119721 packageName = "webtorrent-cli"; 119668 - version = "3.5.0"; 119722 + version = "3.5.2"; 119669 119723 src = fetchurl { 119670 - url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.5.0.tgz"; 119671 - sha512 = "buPr+byINi11QWrnhaHO4adV2pYDkn9V80dI8SbEXkbFmYoopk3NdvstQz62lnPVUbKnJSAg7Abj93fdLIIG/w=="; 119724 + url = "https://registry.npmjs.org/webtorrent-cli/-/webtorrent-cli-3.5.2.tgz"; 119725 + sha512 = "czMFGRzxT2IsgZoMkmHwGASBSx/pLGQOZV3oAD/c5qCw4+YVBMYP2/FehaQ/CF3dMKBnIH4jIevK2KT6pdRC2A=="; 119672 119726 }; 119673 119727 dependencies = [ 119674 - sources."@leichtgewicht/ip-codec-2.0.2" 119728 + sources."@leichtgewicht/ip-codec-2.0.3" 119675 119729 sources."@protobufjs/aspromise-1.1.2" 119676 119730 sources."@protobufjs/base64-1.1.2" 119677 119731 sources."@protobufjs/codegen-2.0.4" ··· 119683 119737 sources."@protobufjs/pool-1.1.0" 119684 119738 sources."@protobufjs/utf8-1.1.0" 119685 119739 sources."@types/long-4.0.1" 119686 - sources."@types/node-16.3.2" 119740 + sources."@types/node-16.3.3" 119687 119741 sources."addr-to-ip-port-1.5.1" 119688 119742 sources."airplay-js-0.3.0" 119689 119743 sources."ansi-regex-5.0.0" ··· 119787 119841 sources."err-code-3.0.1" 119788 119842 sources."escalade-3.1.1" 119789 119843 sources."escape-html-1.0.3" 119790 - sources."executable-4.1.1" 119791 119844 sources."filestream-5.0.0" 119792 119845 sources."freelist-1.0.3" 119793 119846 (sources."fs-chunk-store-2.0.3" // { ··· 119878 119931 }) 119879 119932 sources."path-is-absolute-1.0.1" 119880 119933 sources."piece-length-2.0.1" 119881 - sources."pify-2.3.0" 119882 119934 (sources."plist-with-patches-0.5.1" // { 119883 119935 dependencies = [ 119884 119936 sources."xmlbuilder-0.4.3" ··· 120061 120113 dependencies = [ 120062 120114 sources."agent-base-4.3.0" 120063 120115 sources."argparse-2.0.1" 120064 - sources."balanced-match-1.0.2" 120065 - sources."brace-expansion-1.1.11" 120066 - sources."concat-map-0.0.1" 120067 120116 sources."debug-3.1.0" 120068 120117 sources."es6-promise-4.2.8" 120069 120118 sources."es6-promisify-5.0.0" ··· 120071 120120 sources."https-proxy-agent-2.2.4" 120072 120121 sources."js-yaml-4.1.0" 120073 120122 sources."jsonc-parser-3.0.0" 120074 - sources."minimatch-3.0.4" 120075 120123 sources."ms-2.0.0" 120076 120124 sources."request-light-0.2.5" 120077 - (sources."vscode-json-languageservice-4.1.5" // { 120125 + (sources."vscode-json-languageservice-4.1.6" // { 120078 120126 dependencies = [ 120079 120127 sources."vscode-nls-5.0.0" 120080 120128 sources."vscode-uri-3.0.2" ··· 121063 121111 dependencies = [ 121064 121112 sources."@types/fs-extra-9.0.12" 121065 121113 sources."@types/minimist-1.2.2" 121066 - sources."@types/node-16.3.2" 121114 + sources."@types/node-16.3.3" 121067 121115 sources."@types/node-fetch-2.5.11" 121068 121116 sources."ansi-styles-4.3.0" 121069 121117 sources."asynckit-0.4.0"
+25
pkgs/development/node-packages/package-tests/autoprefixer.nix
··· 1 + { runCommand, autoprefixer }: 2 + 3 + let 4 + inherit (autoprefixer) packageName version; 5 + in 6 + 7 + runCommand "${packageName}-tests" { meta.timeout = 60; } 8 + '' 9 + # get version of installed program and compare with package version 10 + claimed_version="$(${autoprefixer}/bin/autoprefixer --version | awk '{print $2}')" 11 + if [[ "$claimed_version" != "${version}" ]]; then 12 + echo "Error: program version does not match package version ($claimed_version != ${version})" 13 + exit 1 14 + fi 15 + 16 + # run dummy commands 17 + ${autoprefixer}/bin/autoprefixer --help > /dev/null 18 + ${autoprefixer}/bin/autoprefixer --info > /dev/null 19 + 20 + # Testing the actual functionality is done in the test for postcss 21 + # because autoprefixer is a postcss plugin 22 + 23 + # needed for Nix to register the command as successful 24 + touch $out 25 + ''
+1 -1
pkgs/development/python-modules/cherrypy/default.nix
··· 60 60 --deselect=cherrypy/test/test_static.py::StaticTest::test_null_bytes \ 61 61 --deselect=cherrypy/test/test_tools.py::ToolTests::testCombinedTools \ 62 62 ${lib.optionalString stdenv.isDarwin 63 - "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block"} 63 + "--deselect=cherrypy/test/test_bus.py::BusMethodTests::test_block --deselect=cherrypy/test/test_config_server.py"} 64 64 ''; 65 65 66 66 __darwinAllowLocalNetworking = true;
+1
pkgs/tools/misc/man-db/default.nix
··· 77 77 description = "An implementation of the standard Unix documentation system accessed using the man command"; 78 78 license = licenses.gpl2; 79 79 platforms = lib.platforms.unix; 80 + mainProgram = "man"; 80 81 }; 81 82 }
+10 -2
pkgs/tools/package-management/nix-serve/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, 2 - bzip2, nix, perl, makeWrapper, 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , bzip2 5 + , nix 6 + , perl 7 + , makeWrapper 8 + , nixosTests 3 9 }: 4 10 5 11 with lib; ··· 29 35 --prefix PATH : "${makeBinPath [ bzip2 nix ]}" \ 30 36 --add-flags $out/libexec/nix-serve/nix-serve.psgi 31 37 ''; 38 + 39 + passthru.tests.nix-serve = nixosTests.nix-serve; 32 40 33 41 meta = { 34 42 homepage = "https://github.com/edolstra/nix-serve";
+1
pkgs/tools/system/smartmontools/default.nix
··· 38 38 license = licenses.gpl2Plus; 39 39 maintainers = with maintainers; [ peti Frostman ]; 40 40 platforms = with platforms; linux ++ darwin; 41 + mainProgram = "smartctl"; 41 42 }; 42 43 }