nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

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

Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
c63e69cd d9f177eb

+1669 -1620
+4 -6
lib/modules.nix
··· 299 299 # a module will resolve strictly the attributes used as argument but 300 300 # not their values. The values are forwarding the result of the 301 301 # evaluation of the option. 302 - requiredArgs = builtins.attrNames (lib.functionArgs f); 303 302 context = name: ''while evaluating the module argument `${name}' in "${key}":''; 304 - extraArgs = builtins.listToAttrs (map (name: { 305 - inherit name; 306 - value = builtins.addErrorContext (context name) 307 - (args.${name} or config._module.args.${name}); 308 - }) requiredArgs); 303 + extraArgs = builtins.mapAttrs (name: _: 304 + builtins.addErrorContext (context name) 305 + (args.${name} or config._module.args.${name}) 306 + ) (lib.functionArgs f); 309 307 310 308 # Note: we append in the opposite order such that we can add an error 311 309 # context on the explicited arguments of "args" too. This update
+23 -5
nixos/modules/services/networking/wpa_supplicant.nix
··· 3 3 with lib; 4 4 5 5 let 6 + package = if cfg.allowAuxiliaryImperativeNetworks 7 + then pkgs.wpa_supplicant_ro_ssids 8 + else pkgs.wpa_supplicant; 9 + 6 10 cfg = config.networking.wireless; 7 11 configFile = if cfg.networks != {} || cfg.extraConfig != "" || cfg.userControlled.enable then pkgs.writeText "wpa_supplicant.conf" '' 8 12 ${optionalString cfg.userControlled.enable '' ··· 49 45 type = types.str; 50 46 default = "nl80211,wext"; 51 47 description = "Force a specific wpa_supplicant driver."; 48 + }; 49 + 50 + allowAuxiliaryImperativeNetworks = mkEnableOption "support for imperative & declarative networks" // { 51 + description = '' 52 + Whether to allow configuring networks "imperatively" (e.g. via 53 + <package>wpa_supplicant_gui</package>) and declaratively via 54 + <xref linkend="opt-networking.wireless.networks" />. 55 + 56 + Please note that this adds a custom patch to <package>wpa_supplicant</package>. 57 + ''; 52 58 }; 53 59 54 60 networks = mkOption { ··· 225 211 message = ''options networking.wireless."${name}".{psk,pskRaw,auth} are mutually exclusive''; 226 212 }); 227 213 228 - environment.systemPackages = [ pkgs.wpa_supplicant ]; 214 + environment.systemPackages = [ package ]; 229 215 230 - services.dbus.packages = [ pkgs.wpa_supplicant ]; 216 + services.dbus.packages = [ package ]; 231 217 services.udev.packages = [ pkgs.crda ]; 232 218 233 219 # FIXME: start a separate wpa_supplicant instance per interface. ··· 244 230 wantedBy = [ "multi-user.target" ]; 245 231 stopIfChanged = false; 246 232 247 - path = [ pkgs.wpa_supplicant ]; 233 + path = [ package ]; 248 234 249 - script = '' 235 + script = let 236 + configStr = if cfg.allowAuxiliaryImperativeNetworks 237 + then "-c /etc/wpa_supplicant.conf -I ${configFile}" 238 + else "-c ${configFile}"; 239 + in '' 250 240 if [ -f /etc/wpa_supplicant.conf -a "/etc/wpa_supplicant.conf" != "${configFile}" ] 251 241 then echo >&2 "<3>/etc/wpa_supplicant.conf present but ignored. Generated ${configFile} is used instead." 252 242 fi 253 - iface_args="-s -u -D${cfg.driver} -c ${configFile}" 243 + iface_args="-s -u -D${cfg.driver} ${configStr}" 254 244 ${if ifaces == [] then '' 255 245 for i in $(cd /sys/class/net && echo *); do 256 246 DEVTYPE=
-72
pkgs/applications/misc/djvulibre/CVE-2019-15142.patch
··· 1 - commit 970fb11a296b5bbdc5e8425851253d2c5913c45e 2 - Author: Leon Bottou <leon@bottou.org> 3 - Date: Tue Mar 26 20:36:31 2019 -0400 4 - 5 - Fix bug#296 6 - 7 - diff --git a/libdjvu/DjVmDir.cpp b/libdjvu/DjVmDir.cpp 8 - index a6a39e0..0a0fac6 100644 9 - --- a/libdjvu/DjVmDir.cpp 10 - +++ b/libdjvu/DjVmDir.cpp 11 - @@ -299,42 +299,44 @@ DjVmDir::decode(const GP<ByteStream> &gstr) 12 - memcpy((char*) strings+strings_size, buffer, length); 13 - } 14 - DEBUG_MSG("size of decompressed names block=" << strings.size() << "\n"); 15 - - if (strings[strings.size()-1] != 0) 16 - - { 17 - - int strings_size=strings.size(); 18 - - strings.resize(strings_size+1); 19 - - strings[strings_size] = 0; 20 - - } 21 - + int strings_size=strings.size(); 22 - + strings.resize(strings_size+3); 23 - + memset((char*) strings+strings_size, 0, 4); 24 - 25 - - // Copy names into the files 26 - + // Copy names into the files 27 - const char * ptr=strings; 28 - for(pos=files_list;pos;++pos) 29 - { 30 - GP<File> file=files_list[pos]; 31 - - 32 - + if (ptr >= (const char*)strings + strings_size) 33 - + G_THROW( "DjVu document is corrupted (DjVmDir)" ); 34 - file->id=ptr; 35 - ptr+=file->id.length()+1; 36 - if (file->flags & File::HAS_NAME) 37 - { 38 - - file->name=ptr; 39 - - ptr+=file->name.length()+1; 40 - - } else 41 - + file->name=ptr; 42 - + ptr+=file->name.length()+1; 43 - + } 44 - + else 45 - { 46 - file->name=file->id; 47 - } 48 - if (file->flags & File::HAS_TITLE) 49 - { 50 - - file->title=ptr; 51 - - ptr+=file->title.length()+1; 52 - - } else 53 - - file->title=file->id; 54 - - /* msr debug: multipage file, file->title is null. 55 - + file->title=ptr; 56 - + ptr+=file->title.length()+1; 57 - + } 58 - + else 59 - + { 60 - + file->title=file->id; 61 - + } 62 - + /* msr debug: multipage file, file->title is null. 63 - DEBUG_MSG(file->name << ", " << file->id << ", " << file->title << ", " << 64 - file->offset << ", " << file->size << ", " << 65 - file->is_page() << "\n"); */ 66 - } 67 - 68 - - // Check that there is only one file with SHARED_ANNO flag on 69 - + // Check that there is only one file with SHARED_ANNO flag on 70 - int shared_anno_cnt=0; 71 - for(pos=files_list;pos;++pos) 72 - {
-39
pkgs/applications/misc/djvulibre/CVE-2019-15143.patch
··· 1 - commit b1f4e1b2187d9e5010cd01ceccf20b4a11ce723f 2 - Author: Leon Bottou <leon@bottou.org> 3 - Date: Tue Mar 26 20:45:46 2019 -0400 4 - 5 - fix for bug #297 6 - 7 - diff --git a/libdjvu/DjVmDir.cpp b/libdjvu/DjVmDir.cpp 8 - index 0a0fac6..5a49015 100644 9 - --- a/libdjvu/DjVmDir.cpp 10 - +++ b/libdjvu/DjVmDir.cpp 11 - @@ -309,7 +309,7 @@ DjVmDir::decode(const GP<ByteStream> &gstr) 12 - { 13 - GP<File> file=files_list[pos]; 14 - if (ptr >= (const char*)strings + strings_size) 15 - - G_THROW( "DjVu document is corrupted (DjVmDir)" ); 16 - + G_THROW( ByteStream::EndOfFile ); 17 - file->id=ptr; 18 - ptr+=file->id.length()+1; 19 - if (file->flags & File::HAS_NAME) 20 - diff --git a/libdjvu/GBitmap.cpp b/libdjvu/GBitmap.cpp 21 - index 0e487f0..c2fdbe4 100644 22 - --- a/libdjvu/GBitmap.cpp 23 - +++ b/libdjvu/GBitmap.cpp 24 - @@ -890,11 +890,13 @@ GBitmap::read_rle_raw(ByteStream &bs) 25 - int c = 0; 26 - while (n >= 0) 27 - { 28 - - bs.read(&h, 1); 29 - + if (bs.read(&h, 1) <= 0) 30 - + G_THROW( ByteStream::EndOfFile ); 31 - int x = h; 32 - if (x >= (int)RUNOVERFLOWVALUE) 33 - { 34 - - bs.read(&h, 1); 35 - + if (bs.read(&h, 1) <= 0) 36 - + G_THROW( ByteStream::EndOfFile ); 37 - x = h + ((x - (int)RUNOVERFLOWVALUE) << 8); 38 - } 39 - if (c+x > ncolumns)
-111
pkgs/applications/misc/djvulibre/CVE-2019-15144.patch
··· 1 - commit e15d51510048927f172f1bf1f27ede65907d940d 2 - Author: Leon Bottou <leon@bottou.org> 3 - Date: Mon Apr 8 22:25:55 2019 -0400 4 - 5 - bug 299 fixed 6 - 7 - diff --git a/libdjvu/GContainer.h b/libdjvu/GContainer.h 8 - index 96b067c..0140211 100644 9 - --- a/libdjvu/GContainer.h 10 - +++ b/libdjvu/GContainer.h 11 - @@ -550,52 +550,61 @@ public: 12 - template <class TYPE> void 13 - GArrayTemplate<TYPE>::sort(int lo, int hi) 14 - { 15 - - if (hi <= lo) 16 - - return; 17 - - if (hi > hibound || lo<lobound) 18 - - G_THROW( ERR_MSG("GContainer.illegal_subscript") ); 19 - TYPE *data = (TYPE*)(*this); 20 - - // Test for insertion sort 21 - - if (hi <= lo + 50) 22 - + while(true) 23 - { 24 - - for (int i=lo+1; i<=hi; i++) 25 - + if (hi <= lo) 26 - + return; 27 - + if (hi > hibound || lo<lobound) 28 - + G_THROW( ERR_MSG("GContainer.illegal_subscript") ); 29 - + // Test for insertion sort 30 - + if (hi <= lo + 50) 31 - { 32 - - int j = i; 33 - - TYPE tmp = data[i]; 34 - - while ((--j>=lo) && !(data[j]<=tmp)) 35 - - data[j+1] = data[j]; 36 - - data[j+1] = tmp; 37 - + for (int i=lo+1; i<=hi; i++) 38 - + { 39 - + int j = i; 40 - + TYPE tmp = data[i]; 41 - + while ((--j>=lo) && !(data[j]<=tmp)) 42 - + data[j+1] = data[j]; 43 - + data[j+1] = tmp; 44 - + } 45 - + return; 46 - } 47 - - return; 48 - - } 49 - - // -- determine suitable quick-sort pivot 50 - - TYPE tmp = data[lo]; 51 - - TYPE pivot = data[(lo+hi)/2]; 52 - - if (pivot <= tmp) 53 - - { tmp = pivot; pivot=data[lo]; } 54 - - if (data[hi] <= tmp) 55 - - { pivot = tmp; } 56 - - else if (data[hi] <= pivot) 57 - - { pivot = data[hi]; } 58 - - // -- partition set 59 - - int h = hi; 60 - - int l = lo; 61 - - while (l < h) 62 - - { 63 - - while (! (pivot <= data[l])) l++; 64 - - while (! (data[h] <= pivot)) h--; 65 - - if (l < h) 66 - + // -- determine median-of-three pivot 67 - + TYPE tmp = data[lo]; 68 - + TYPE pivot = data[(lo+hi)/2]; 69 - + if (pivot <= tmp) 70 - + { tmp = pivot; pivot=data[lo]; } 71 - + if (data[hi] <= tmp) 72 - + { pivot = tmp; } 73 - + else if (data[hi] <= pivot) 74 - + { pivot = data[hi]; } 75 - + // -- partition set 76 - + int h = hi; 77 - + int l = lo; 78 - + while (l < h) 79 - { 80 - - tmp = data[l]; 81 - - data[l] = data[h]; 82 - - data[h] = tmp; 83 - - l = l+1; 84 - - h = h-1; 85 - + while (! (pivot <= data[l])) l++; 86 - + while (! (data[h] <= pivot)) h--; 87 - + if (l < h) 88 - + { 89 - + tmp = data[l]; 90 - + data[l] = data[h]; 91 - + data[h] = tmp; 92 - + l = l+1; 93 - + h = h-1; 94 - + } 95 - + } 96 - + // -- recurse, small partition first 97 - + // tail-recursion elimination 98 - + if (h - lo <= hi - l) { 99 - + sort(lo,h); 100 - + lo = l; // sort(l,hi) 101 - + } else { 102 - + sort(l,hi); 103 - + hi = h; // sort(lo,h) 104 - } 105 - } 106 - - // -- recursively restart 107 - - sort(lo, h); 108 - - sort(l, hi); 109 - } 110 - 111 - template<class TYPE> inline TYPE&
-28
pkgs/applications/misc/djvulibre/CVE-2019-15145.patch
··· 1 - commit 9658b01431cd7ff6344d7787f855179e73fe81a7 2 - Author: Leon Bottou <leon@bottou.org> 3 - Date: Mon Apr 8 22:55:38 2019 -0400 4 - 5 - fix bug #298 6 - 7 - diff --git a/libdjvu/GBitmap.h b/libdjvu/GBitmap.h 8 - index e8e0c9b..ca89a19 100644 9 - --- a/libdjvu/GBitmap.h 10 - +++ b/libdjvu/GBitmap.h 11 - @@ -566,7 +566,7 @@ GBitmap::operator[](int row) 12 - { 13 - if (!bytes) 14 - uncompress(); 15 - - if (row<0 || row>=nrows) { 16 - + if (row<0 || row>=nrows || !bytes) { 17 - #ifndef NDEBUG 18 - if (zerosize < bytes_per_row + border) 19 - G_THROW( ERR_MSG("GBitmap.zero_small") ); 20 - @@ -581,7 +581,7 @@ GBitmap::operator[](int row) const 21 - { 22 - if (!bytes) 23 - ((GBitmap*)this)->uncompress(); 24 - - if (row<0 || row>=nrows) { 25 - + if (row<0 || row>=nrows || !bytes) { 26 - #ifndef NDEBUG 27 - if (zerosize < bytes_per_row + border) 28 - G_THROW( ERR_MSG("GBitmap.zero_small") );
-32
pkgs/applications/misc/djvulibre/CVE-2019-18804.patch
··· 1 - commit c8bec6549c10ffaa2f2fbad8bbc629efdf0dd125 2 - Author: Leon Bottou <leon@bottou.org> 3 - Date: Thu Oct 17 22:20:31 2019 -0400 4 - 5 - Fixed bug 309 6 - 7 - diff --git a/libdjvu/IW44EncodeCodec.cpp b/libdjvu/IW44EncodeCodec.cpp 8 - index 00752a0..f81eaeb 100644 9 - --- a/libdjvu/IW44EncodeCodec.cpp 10 - +++ b/libdjvu/IW44EncodeCodec.cpp 11 - @@ -405,7 +405,7 @@ filter_fv(short *p, int w, int h, int rowsize, int scale) 12 - int y = 0; 13 - int s = scale*rowsize; 14 - int s3 = s+s+s; 15 - - h = ((h-1)/scale)+1; 16 - + h = (h>0) ? ((h-1)/scale)+1 : 0; 17 - y += 1; 18 - p += s; 19 - while (y-3 < h) 20 - diff --git a/tools/ddjvu.cpp b/tools/ddjvu.cpp 21 - index 6d0df3b..7109952 100644 22 - --- a/tools/ddjvu.cpp 23 - +++ b/tools/ddjvu.cpp 24 - @@ -279,7 +279,7 @@ render(ddjvu_page_t *page, int pageno) 25 - prect.h = (ih * 100) / dpi; 26 - } 27 - /* Process aspect ratio */ 28 - - if (flag_aspect <= 0) 29 - + if (flag_aspect <= 0 && iw>0 && ih>0) 30 - { 31 - double dw = (double)iw / prect.w; 32 - double dh = (double)ih / prect.h;
+3 -14
pkgs/applications/misc/djvulibre/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "djvulibre"; 11 - version = "3.5.27"; 11 + version = "3.5.28"; 12 12 13 13 src = fetchurl { 14 14 url = "mirror://sourceforge/djvu/${pname}-${version}.tar.gz"; 15 - sha256 = "0psh3zl9dj4n4r3lx25390nx34xz0bg0ql48zdskhq354ljni5p6"; 15 + sha256 = "1p1fiygq9ny8aimwc4vxwjc6k9ykgdsq1sq06slfbzalfvm0kl7w"; 16 16 }; 17 17 18 18 outputs = [ "bin" "dev" "out" ]; ··· 24 24 libiconv 25 25 ]; 26 26 27 - patches = [ 28 - ./CVE-2019-18804.patch 29 - # This one is needed to make the following 30 - # two CVE patches apply cleanly 31 - ./fix_hongfuzz_crash.patch 32 - ./CVE-2019-15142.patch 33 - ./CVE-2019-15143.patch 34 - ./CVE-2019-15144.patch 35 - ./CVE-2019-15145.patch 36 - ]; 37 - 38 27 meta = with lib; { 39 28 description = "The big set of CLI tools to make/modify/optimize/show/export DJVU files"; 40 29 homepage = "http://djvu.sourceforge.net"; 41 - license = licenses.gpl2; 30 + license = licenses.gpl2Plus; 42 31 maintainers = with maintainers; [ Anton-Latukha ]; 43 32 platforms = platforms.all; 44 33 };
-51
pkgs/applications/misc/djvulibre/fix_hongfuzz_crash.patch
··· 1 - commit 89d71b01d606e57ecec2c2930c145bb20ba5bbe3 2 - Author: Leon Bottou <leon@bottou.org> 3 - Date: Fri Jul 13 08:46:22 2018 -0400 4 - 5 - fix hongfuzz crash. 6 - 7 - diff --git a/libdjvu/DjVmDir.cpp b/libdjvu/DjVmDir.cpp 8 - index d322323..a6a39e0 100644 9 - --- a/libdjvu/DjVmDir.cpp 10 - +++ b/libdjvu/DjVmDir.cpp 11 - @@ -299,7 +299,13 @@ DjVmDir::decode(const GP<ByteStream> &gstr) 12 - memcpy((char*) strings+strings_size, buffer, length); 13 - } 14 - DEBUG_MSG("size of decompressed names block=" << strings.size() << "\n"); 15 - - 16 - + if (strings[strings.size()-1] != 0) 17 - + { 18 - + int strings_size=strings.size(); 19 - + strings.resize(strings_size+1); 20 - + strings[strings_size] = 0; 21 - + } 22 - + 23 - // Copy names into the files 24 - const char * ptr=strings; 25 - for(pos=files_list;pos;++pos) 26 - diff --git a/libdjvu/miniexp.cpp b/libdjvu/miniexp.cpp 27 - index 6a5cd90..828addc 100644 28 - --- a/libdjvu/miniexp.cpp 29 - +++ b/libdjvu/miniexp.cpp 30 - @@ -1065,7 +1065,7 @@ print_c_string(const char *s, char *d, int flags, size_t len) 31 - c = (unsigned char)(*s++); 32 - if (char_quoted(c, flags)) 33 - { 34 - - char buffer[10]; 35 - + char buffer[16]; /* 10+1 */ 36 - static const char *tr1 = "\"\\tnrbf"; 37 - static const char *tr2 = "\"\\\t\n\r\b\f"; 38 - buffer[0] = buffer[1] = 0; 39 - diff --git a/tools/csepdjvu.cpp b/tools/csepdjvu.cpp 40 - index 7ed13ad..fab9472 100644 41 - --- a/tools/csepdjvu.cpp 42 - +++ b/tools/csepdjvu.cpp 43 - @@ -1834,7 +1834,7 @@ main(int argc, const char **argv) 44 - ByteStream::create(GURL::Filename::UTF8(arg),"rb"); 45 - BufferByteStream ibs(*fbs); 46 - do { 47 - - char pagename[16]; 48 - + char pagename[20]; 49 - sprintf(pagename, "p%04d.djvu", ++pageno); 50 - if (opts.verbose > 1) 51 - DjVuPrintErrorUTF8("%s","--------------------\n");
+4 -4
pkgs/applications/networking/browsers/vieb/default.nix
··· 2 2 3 3 mkYarnPackage rec { 4 4 pname = "vieb"; 5 - version = "3.4.0"; 5 + version = "4.5.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "jelmerro"; 9 9 repo = pname; 10 10 rev = version; 11 - sha256 = "0h5yzmvs9zhhpg9l7rrgwd4rqd9n00n2ifwqf05kpymzliy6xsnk"; 11 + sha256 = "sha256-7/oB2Inj+iMXzigqbCNJUY7dNrFBals2BOOl+Lp+ESs="; 12 12 }; 13 13 14 14 packageJSON = ./package.json; ··· 51 51 meta = with lib; { 52 52 homepage = "https://vieb.dev/"; 53 53 description = "Vim Inspired Electron Browser"; 54 - maintainers = with maintainers; [ gebner ]; 54 + maintainers = with maintainers; [ gebner fortuneteller2k ]; 55 55 platforms = platforms.unix; 56 - license = licenses.gpl3; 56 + license = licenses.gpl3Plus; 57 57 }; 58 58 }
+20 -13
pkgs/applications/networking/browsers/vieb/package.json
··· 1 1 { 2 2 "name": "vieb", 3 3 "productName": "Vieb", 4 - "version": "3.4.0", 4 + "version": "4.5.1", 5 5 "description": "Vim Inspired Electron Browser", 6 + "bin": "app.js", 6 7 "main": "app/index.js", 7 8 "scripts": { 8 - "test": "jest -u && eslint .", 9 + "test": "jest --coverage --collectCoverageFrom 'app/**/*.js' -u && eslint app && echo 'All good :)'", 10 + "dev": "electron app --datafolder ./ViebData/", 9 11 "start": "electron app", 10 12 "build": "node build.js", 11 13 "buildall": "node build.js --linux --win --mac", ··· 18 16 "repository": "https://github.com/Jelmerro/Vieb", 19 17 "homepage": "https://vieb.dev", 20 18 "keywords": [ 19 + "Vim", 21 20 "Electron", 22 21 "Browser", 23 22 "Internet" 24 23 ], 25 24 "author": "Jelmer van Arnhem", 26 25 "email": "Jelmerro@users.noreply.github.com", 27 - "license": "GPL-3.0+", 26 + "license": "GPL-3.0-or-later", 28 27 "devDependencies": { 29 - "archiver": "^5.2.0", 30 - "electron": "^11.2.1", 31 - "electron-builder": "^22.10.4", 32 - "eslint": "^7.19.0", 33 - "jest": "^26.6.3" 28 + "archiver": "5.3.0", 29 + "electron": "12.0.5", 30 + "electron-builder": "22.10.5", 31 + "eslint": "7.25.0", 32 + "eslint-plugin-compat": "^3.9.0", 33 + "jest": "26.6.3" 34 34 }, 35 35 "dependencies": { 36 - "@cliqz/adblocker-electron": "^1.20.0", 37 - "darkreader": "^4.9.27", 38 - "is-svg": "^4.2.1", 39 - "rimraf": "^3.0.2" 40 - } 36 + "7zip-bin": "5.1.1", 37 + "@cliqz/adblocker-electron": "1.20.4", 38 + "is-svg": "4.3.1", 39 + "rimraf": "3.0.2" 40 + }, 41 + "browserslist": [ 42 + "last 2 Chrome versions" 43 + ] 41 44 }
+636 -480
pkgs/applications/networking/browsers/vieb/yarn.lock
··· 2 2 # yarn lockfile v1 3 3 4 4 5 + "7zip-bin@5.1.1": 6 + version "5.1.1" 7 + resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.1.1.tgz#9274ec7460652f9c632c59addf24efb1684ef876" 8 + integrity sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ== 9 + 5 10 "7zip-bin@~5.0.3": 6 11 version "5.0.3" 7 12 resolved "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.0.3.tgz#bc5b5532ecafd923a61f2fb097e3b108c0106a3f" ··· 26 21 dependencies: 27 22 "@babel/highlight" "^7.12.13" 28 23 24 + "@babel/compat-data@^7.13.15": 25 + version "7.14.0" 26 + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919" 27 + integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q== 28 + 29 29 "@babel/core@^7.1.0", "@babel/core@^7.7.5": 30 - version "7.12.16" 31 - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.12.16.tgz#8c6ba456b23b680a6493ddcfcd9d3c3ad51cab7c" 32 - integrity sha512-t/hHIB504wWceOeaOoONOhu+gX+hpjfeN6YRBT209X/4sibZQfSF1I0HFRRlBe97UZZosGx5XwUg1ZgNbelmNw== 30 + version "7.14.0" 31 + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.0.tgz#47299ff3ec8d111b493f1a9d04bf88c04e728d88" 32 + integrity sha512-8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw== 33 33 dependencies: 34 34 "@babel/code-frame" "^7.12.13" 35 - "@babel/generator" "^7.12.15" 36 - "@babel/helper-module-transforms" "^7.12.13" 37 - "@babel/helpers" "^7.12.13" 38 - "@babel/parser" "^7.12.16" 35 + "@babel/generator" "^7.14.0" 36 + "@babel/helper-compilation-targets" "^7.13.16" 37 + "@babel/helper-module-transforms" "^7.14.0" 38 + "@babel/helpers" "^7.14.0" 39 + "@babel/parser" "^7.14.0" 39 40 "@babel/template" "^7.12.13" 40 - "@babel/traverse" "^7.12.13" 41 - "@babel/types" "^7.12.13" 41 + "@babel/traverse" "^7.14.0" 42 + "@babel/types" "^7.14.0" 42 43 convert-source-map "^1.7.0" 43 44 debug "^4.1.0" 44 - gensync "^1.0.0-beta.1" 45 + gensync "^1.0.0-beta.2" 45 46 json5 "^2.1.2" 46 - lodash "^4.17.19" 47 - semver "^5.4.1" 47 + semver "^6.3.0" 48 48 source-map "^0.5.0" 49 49 50 - "@babel/generator@^7.12.13", "@babel/generator@^7.12.15": 51 - version "7.12.15" 52 - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.15.tgz#4617b5d0b25cc572474cc1aafee1edeaf9b5368f" 53 - integrity sha512-6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ== 50 + "@babel/generator@^7.14.0": 51 + version "7.14.1" 52 + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.1.tgz#1f99331babd65700183628da186f36f63d615c93" 53 + integrity sha512-TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ== 54 54 dependencies: 55 - "@babel/types" "^7.12.13" 55 + "@babel/types" "^7.14.1" 56 56 jsesc "^2.5.1" 57 57 source-map "^0.5.0" 58 + 59 + "@babel/helper-compilation-targets@^7.13.16": 60 + version "7.13.16" 61 + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c" 62 + integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA== 63 + dependencies: 64 + "@babel/compat-data" "^7.13.15" 65 + "@babel/helper-validator-option" "^7.12.17" 66 + browserslist "^4.14.5" 67 + semver "^6.3.0" 58 68 59 69 "@babel/helper-function-name@^7.12.13": 60 70 version "7.12.13" ··· 87 67 dependencies: 88 68 "@babel/types" "^7.12.13" 89 69 90 - "@babel/helper-member-expression-to-functions@^7.12.13": 91 - version "7.12.16" 92 - resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.16.tgz#41e0916b99f8d5f43da4f05d85f4930fa3d62b22" 93 - integrity sha512-zYoZC1uvebBFmj1wFAlXwt35JLEgecefATtKp20xalwEK8vHAixLBXTGxNrVGEmTT+gzOThUgr8UEdgtalc1BQ== 70 + "@babel/helper-member-expression-to-functions@^7.13.12": 71 + version "7.13.12" 72 + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz#dfe368f26d426a07299d8d6513821768216e6d72" 73 + integrity sha512-48ql1CLL59aKbU94Y88Xgb2VFy7a95ykGRbJJaaVv+LX5U8wFpLfiGXJJGUozsmA1oEh/o5Bp60Voq7ACyA/Sw== 94 74 dependencies: 95 - "@babel/types" "^7.12.13" 75 + "@babel/types" "^7.13.12" 96 76 97 - "@babel/helper-module-imports@^7.12.13": 98 - version "7.12.13" 99 - resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz#ec67e4404f41750463e455cc3203f6a32e93fcb0" 100 - integrity sha512-NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g== 77 + "@babel/helper-module-imports@^7.13.12": 78 + version "7.13.12" 79 + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz#c6a369a6f3621cb25da014078684da9196b61977" 80 + integrity sha512-4cVvR2/1B693IuOvSI20xqqa/+bl7lqAMR59R4iu39R9aOX8/JoYY1sFaNvUMyMBGnHdwvJgUrzNLoUZxXypxA== 101 81 dependencies: 102 - "@babel/types" "^7.12.13" 82 + "@babel/types" "^7.13.12" 103 83 104 - "@babel/helper-module-transforms@^7.12.13": 105 - version "7.12.13" 106 - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.13.tgz#01afb052dcad2044289b7b20beb3fa8bd0265bea" 107 - integrity sha512-acKF7EjqOR67ASIlDTupwkKM1eUisNAjaSduo5Cz+793ikfnpe7p4Q7B7EWU2PCoSTPWsQkR7hRUWEIZPiVLGA== 84 + "@babel/helper-module-transforms@^7.14.0": 85 + version "7.14.0" 86 + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz#8fcf78be220156f22633ee204ea81f73f826a8ad" 87 + integrity sha512-L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw== 108 88 dependencies: 109 - "@babel/helper-module-imports" "^7.12.13" 110 - "@babel/helper-replace-supers" "^7.12.13" 111 - "@babel/helper-simple-access" "^7.12.13" 89 + "@babel/helper-module-imports" "^7.13.12" 90 + "@babel/helper-replace-supers" "^7.13.12" 91 + "@babel/helper-simple-access" "^7.13.12" 112 92 "@babel/helper-split-export-declaration" "^7.12.13" 113 - "@babel/helper-validator-identifier" "^7.12.11" 93 + "@babel/helper-validator-identifier" "^7.14.0" 114 94 "@babel/template" "^7.12.13" 115 - "@babel/traverse" "^7.12.13" 116 - "@babel/types" "^7.12.13" 117 - lodash "^4.17.19" 95 + "@babel/traverse" "^7.14.0" 96 + "@babel/types" "^7.14.0" 118 97 119 98 "@babel/helper-optimise-call-expression@^7.12.13": 120 99 version "7.12.13" ··· 123 104 "@babel/types" "^7.12.13" 124 105 125 106 "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.8.0": 126 - version "7.12.13" 127 - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz#174254d0f2424d8aefb4dd48057511247b0a9eeb" 128 - integrity sha512-C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA== 107 + version "7.13.0" 108 + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz#806526ce125aed03373bc416a828321e3a6a33af" 109 + integrity sha512-ZPafIPSwzUlAoWT8DKs1W2VyF2gOWthGd5NGFMsBcMMol+ZhK+EQY/e6V96poa6PA/Bh+C9plWN0hXO1uB8AfQ== 129 110 130 - "@babel/helper-replace-supers@^7.12.13": 131 - version "7.12.13" 132 - resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz#00ec4fb6862546bd3d0aff9aac56074277173121" 133 - integrity sha512-pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg== 111 + "@babel/helper-replace-supers@^7.13.12": 112 + version "7.13.12" 113 + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804" 114 + integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw== 134 115 dependencies: 135 - "@babel/helper-member-expression-to-functions" "^7.12.13" 116 + "@babel/helper-member-expression-to-functions" "^7.13.12" 136 117 "@babel/helper-optimise-call-expression" "^7.12.13" 137 - "@babel/traverse" "^7.12.13" 138 - "@babel/types" "^7.12.13" 118 + "@babel/traverse" "^7.13.0" 119 + "@babel/types" "^7.13.12" 139 120 140 - "@babel/helper-simple-access@^7.12.13": 141 - version "7.12.13" 142 - resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz#8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4" 143 - integrity sha512-0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA== 121 + "@babel/helper-simple-access@^7.13.12": 122 + version "7.13.12" 123 + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz#dd6c538afb61819d205a012c31792a39c7a5eaf6" 124 + integrity sha512-7FEjbrx5SL9cWvXioDbnlYTppcZGuCY6ow3/D5vMggb2Ywgu4dMrpTJX0JdQAIcRRUElOIxF3yEooa9gUb9ZbA== 144 125 dependencies: 145 - "@babel/types" "^7.12.13" 126 + "@babel/types" "^7.13.12" 146 127 147 128 "@babel/helper-split-export-declaration@^7.12.13": 148 129 version "7.12.13" ··· 151 132 dependencies: 152 133 "@babel/types" "^7.12.13" 153 134 154 - "@babel/helper-validator-identifier@^7.12.11": 155 - version "7.12.11" 156 - resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 157 - integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 135 + "@babel/helper-validator-identifier@^7.14.0": 136 + version "7.14.0" 137 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288" 138 + integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A== 158 139 159 - "@babel/helpers@^7.12.13": 160 - version "7.12.13" 161 - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.13.tgz#3c75e993632e4dadc0274eae219c73eb7645ba47" 162 - integrity sha512-oohVzLRZ3GQEk4Cjhfs9YkJA4TdIDTObdBEZGrd6F/T0GPSnuV6l22eMcxlvcvzVIPH3VTtxbseudM1zIE+rPQ== 140 + "@babel/helper-validator-option@^7.12.17": 141 + version "7.12.17" 142 + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831" 143 + integrity sha512-TopkMDmLzq8ngChwRlyjR6raKD6gMSae4JdYDB8bByKreQgG0RBTuKe9LRxW3wFtUnjxOPRKBDwEH6Mg5KeDfw== 144 + 145 + "@babel/helpers@^7.14.0": 146 + version "7.14.0" 147 + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62" 148 + integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg== 163 149 dependencies: 164 150 "@babel/template" "^7.12.13" 165 - "@babel/traverse" "^7.12.13" 166 - "@babel/types" "^7.12.13" 151 + "@babel/traverse" "^7.14.0" 152 + "@babel/types" "^7.14.0" 167 153 168 154 "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": 169 - version "7.12.13" 170 - resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz#8ab538393e00370b26271b01fa08f7f27f2e795c" 171 - integrity sha512-kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww== 155 + version "7.14.0" 156 + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf" 157 + integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg== 172 158 dependencies: 173 - "@babel/helper-validator-identifier" "^7.12.11" 159 + "@babel/helper-validator-identifier" "^7.14.0" 174 160 chalk "^2.0.0" 175 161 js-tokens "^4.0.0" 176 162 177 - "@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.12.16": 178 - version "7.12.16" 179 - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.16.tgz#cc31257419d2c3189d394081635703f549fc1ed4" 180 - integrity sha512-c/+u9cqV6F0+4Hpq01jnJO+GLp2DdT63ppz9Xa+6cHaajM9VFzK/iDXiKK65YtpeVwu+ctfS6iqlMqRgQRzeCw== 163 + "@babel/parser@^7.1.0", "@babel/parser@^7.12.13", "@babel/parser@^7.14.0": 164 + version "7.14.1" 165 + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.1.tgz#1bd644b5db3f5797c4479d89ec1817fe02b84c47" 166 + integrity sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q== 181 167 182 168 "@babel/plugin-syntax-async-generators@^7.8.4": 183 169 version "7.8.4" ··· 277 253 "@babel/parser" "^7.12.13" 278 254 "@babel/types" "^7.12.13" 279 255 280 - "@babel/traverse@^7.1.0", "@babel/traverse@^7.12.13": 281 - version "7.12.13" 282 - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.13.tgz#689f0e4b4c08587ad26622832632735fb8c4e0c0" 283 - integrity sha512-3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA== 256 + "@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0": 257 + version "7.14.0" 258 + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz#cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef" 259 + integrity sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA== 284 260 dependencies: 285 261 "@babel/code-frame" "^7.12.13" 286 - "@babel/generator" "^7.12.13" 262 + "@babel/generator" "^7.14.0" 287 263 "@babel/helper-function-name" "^7.12.13" 288 264 "@babel/helper-split-export-declaration" "^7.12.13" 289 - "@babel/parser" "^7.12.13" 290 - "@babel/types" "^7.12.13" 265 + "@babel/parser" "^7.14.0" 266 + "@babel/types" "^7.14.0" 291 267 debug "^4.1.0" 292 268 globals "^11.1.0" 293 - lodash "^4.17.19" 294 269 295 - "@babel/types@^7.0.0", "@babel/types@^7.12.13", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 296 - version "7.12.13" 297 - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.13.tgz#8be1aa8f2c876da11a9cf650c0ecf656913ad611" 298 - integrity sha512-oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ== 270 + "@babel/types@^7.0.0", "@babel/types@^7.12.13", "@babel/types@^7.13.12", "@babel/types@^7.14.0", "@babel/types@^7.14.1", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 271 + version "7.14.1" 272 + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.1.tgz#095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db" 273 + integrity sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA== 299 274 dependencies: 300 - "@babel/helper-validator-identifier" "^7.12.11" 301 - lodash "^4.17.19" 275 + "@babel/helper-validator-identifier" "^7.14.0" 302 276 to-fast-properties "^2.0.0" 303 277 304 278 "@bcoe/v8-coverage@^0.2.3": ··· 304 282 resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 305 283 integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 306 284 307 - "@cliqz/adblocker-content@^1.20.0": 308 - version "1.20.0" 309 - resolved "https://registry.yarnpkg.com/@cliqz/adblocker-content/-/adblocker-content-1.20.0.tgz#fcfa2845a577ba8d9af282afbae2fc437b3f1c70" 310 - integrity sha512-KcokmK2B+tAnVMi7nGHgzXUVf78wAODG1Uk+K3tBPf9VAo3mwldYZ472uTj6LUfZv5oeTwe4PwfmPWXWZy3Eew== 285 + "@cliqz/adblocker-content@^1.20.5": 286 + version "1.20.5" 287 + resolved "https://registry.yarnpkg.com/@cliqz/adblocker-content/-/adblocker-content-1.20.5.tgz#eed410510574cfc83b9b391b95026c880e5a3521" 288 + integrity sha512-Ozp4mQytY3qmiQBsJfpObu1vwRAc8tV2kYqMS81Fx7ShjadYk3S0FtIG1zYcS7uzfQK5qTlFUsORcAEUC4kdAQ== 311 289 dependencies: 312 - "@cliqz/adblocker-extended-selectors" "^1.20.0" 290 + "@cliqz/adblocker-extended-selectors" "^1.20.5" 313 291 314 - "@cliqz/adblocker-electron-preload@^1.20.0": 315 - version "1.20.0" 316 - resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.20.0.tgz#997b694fbb1b1206e04b1fd570690234cc7ef630" 317 - integrity sha512-brNQFjIoGTMClmFphtoK0EnjOlbqfxr6sA3CrOZiHfG0e07Id5GoU95re8+s8xA+/nd1GrJl/k5/b4aks+S9Gw== 292 + "@cliqz/adblocker-electron-preload@^1.20.4": 293 + version "1.20.5" 294 + resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.20.5.tgz#0d69ee6cf4ed6865bc4a125d95e10d5b132d5680" 295 + integrity sha512-B58O8DbFfzqxA7RmRStL0El3Vr22CwqFcgchw5FLINq2jw0VFENpLSofyxtspuwyzHoFQSYVhUo8ugbPwqsMYQ== 318 296 dependencies: 319 - "@cliqz/adblocker-content" "^1.20.0" 297 + "@cliqz/adblocker-content" "^1.20.5" 320 298 321 - "@cliqz/adblocker-electron@^1.20.0": 322 - version "1.20.0" 323 - resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.20.0.tgz#bacfb9feaf1d3dab339b992e3defa111a4b5ed3c" 324 - integrity sha512-zD881g+YxxO4BM6NB5qZtSevg9Cj7QtlCJ4tkcKZnD9MDQsNXQVIFFEWwqhd00kLkTUS0+jT0px9b81cigAPNg== 299 + "@cliqz/adblocker-electron@1.20.4": 300 + version "1.20.4" 301 + resolved "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.20.4.tgz#6d7de52cff013ef3cd0f4a7850ebfc31f6240a46" 302 + integrity sha512-HaHexPnJL1BBvloXuqmSh8WtpPKYHyZ+o6f+9SciySN4dJAX9BIGTk9D/V6eJWLmy6+wY7/Bpcn2Q4nrYXsqBw== 325 303 dependencies: 326 - "@cliqz/adblocker" "^1.20.0" 327 - "@cliqz/adblocker-electron-preload" "^1.20.0" 304 + "@cliqz/adblocker" "^1.20.4" 305 + "@cliqz/adblocker-electron-preload" "^1.20.4" 328 306 tldts-experimental "^5.6.21" 329 307 330 - "@cliqz/adblocker-extended-selectors@^1.20.0": 331 - version "1.20.0" 332 - resolved "https://registry.yarnpkg.com/@cliqz/adblocker-extended-selectors/-/adblocker-extended-selectors-1.20.0.tgz#95ede657b670f627b39f92d85a97093cecee6ffe" 333 - integrity sha512-dnBPIngGe1eDWvYX49eP2yyCE2AY1QD5E+8SaXW6lslnjS0GQnkcXCAkkGR2am4Qdk78HAiWTXL65Zt9hdkupA== 308 + "@cliqz/adblocker-extended-selectors@^1.20.5": 309 + version "1.20.5" 310 + resolved "https://registry.yarnpkg.com/@cliqz/adblocker-extended-selectors/-/adblocker-extended-selectors-1.20.5.tgz#5d55aa72281db6f57657f9bffad5bc24fc93087a" 311 + integrity sha512-vJUFZWB3SZuviI4yBxEsz9hejALFl/vZLrhzVm2TKGSYvR42g/thhlTCwqmhszPY11UXznWPMyaE9M5WdpBWFw== 334 312 335 - "@cliqz/adblocker@^1.20.0": 336 - version "1.20.0" 337 - resolved "https://registry.yarnpkg.com/@cliqz/adblocker/-/adblocker-1.20.0.tgz#514746e9ee72fcd886f1e2e1aaf13b28fc63f232" 338 - integrity sha512-lkEj0Pj1ikwMURrvoFv0YnLfaXFuJI+jexI7zdh4fDmlwRppzDDgOhPXgCczoAlYacJk5x2mf7pan6JybRD9Kw== 313 + "@cliqz/adblocker@^1.20.4": 314 + version "1.20.5" 315 + resolved "https://registry.yarnpkg.com/@cliqz/adblocker/-/adblocker-1.20.5.tgz#04edcb9a52897d371a41a2351aa492186019b92a" 316 + integrity sha512-QItVcxe1NkFvANXcDRjX40sq20fSf4Zo8DIyL3QO7nExEGowS12zj0J+6zRaoBCUxFoWgLDg4HQF0+0V7DTHNQ== 339 317 dependencies: 340 - "@cliqz/adblocker-content" "^1.20.0" 341 - "@cliqz/adblocker-extended-selectors" "^1.20.0" 318 + "@cliqz/adblocker-content" "^1.20.5" 319 + "@cliqz/adblocker-extended-selectors" "^1.20.5" 342 320 "@remusao/guess-url-type" "^1.1.2" 343 321 "@remusao/small" "^1.1.2" 344 322 "@remusao/smaz" "^1.7.1" 345 - "@types/chrome" "^0.0.128" 323 + "@types/chrome" "^0.0.136" 346 324 "@types/firefox-webext-browser" "^82.0.0" 347 325 tldts-experimental "^5.6.21" 348 326 ··· 389 367 dir-compare "^2.4.0" 390 368 fs-extra "^9.0.1" 391 369 392 - "@eslint/eslintrc@^0.3.0": 393 - version "0.3.0" 394 - resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz#d736d6963d7003b6514e6324bec9c602ac340318" 395 - integrity sha512-1JTKgrOKAHVivSvOYw+sJOunkBjUOvjqWk1DPja7ZFhIS2mX/4EgTT8M7eTK9jrKhL/FvXXEbQwIs3pg1xp3dg== 370 + "@eslint/eslintrc@^0.4.0": 371 + version "0.4.0" 372 + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz#99cc0a0584d72f1df38b900fb062ba995f395547" 373 + integrity sha512-2ZPCc+uNbjV5ERJr+aKSPRwZgKd2z11x0EgLvb1PURmUrn9QNRXFqje0Ldq454PfAVyaJYyrDvvIKSFP4NnBog== 396 374 dependencies: 397 375 ajv "^6.12.4" 398 376 debug "^4.1.1" ··· 401 379 ignore "^4.0.6" 402 380 import-fresh "^3.2.1" 403 381 js-yaml "^3.13.1" 404 - lodash "^4.17.20" 405 382 minimatch "^3.0.4" 406 383 strip-json-comments "^3.1.1" 407 384 ··· 598 577 dependencies: 599 578 cross-spawn "^7.0.1" 600 579 580 + "@mdn/browser-compat-data@^2.0.7": 581 + version "2.0.7" 582 + resolved "https://registry.yarnpkg.com/@mdn/browser-compat-data/-/browser-compat-data-2.0.7.tgz#72ec37b9c1e00ce0b4e0309d753be18e2da12ee3" 583 + integrity sha512-GeeM827DlzFFidn1eKkMBiqXFD2oLsnZbaiGhByPl0vcapsRzUL+t9hDoov1swc9rB2jw64R+ihtzC8qOE9wXw== 584 + dependencies: 585 + extend "3.0.2" 586 + 601 587 "@remusao/guess-url-type@^1.1.2": 602 588 version "1.2.1" 603 589 resolved "https://registry.yarnpkg.com/@remusao/guess-url-type/-/guess-url-type-1.2.1.tgz#b3e7c32abdf98d0fb4f93cc67cad580b5fe4ba57" ··· 646 618 integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== 647 619 648 620 "@sinonjs/commons@^1.7.0": 649 - version "1.8.2" 650 - resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.2.tgz#858f5c4b48d80778fde4b9d541f27edc0d56488b" 651 - integrity sha512-sruwd86RJHdsVf/AtBoijDmUqJp3B6hF/DGC23C+JaegnDHaZyewCjoVGTdg3J0uz3Zs7NnIT05OBOmML72lQw== 621 + version "1.8.3" 622 + resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 623 + integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 652 624 dependencies: 653 625 type-detect "4.0.8" 654 626 ··· 667 639 defer-to-connect "^1.0.1" 668 640 669 641 "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.7": 670 - version "7.1.12" 671 - resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz#4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d" 672 - integrity sha512-wMTHiiTiBAAPebqaPiPDLFA4LYPKr6Ph0Xq/6rq1Ur3v66HXyG+clfR9CNETkD7MQS8ZHvpQOtA53DLws5WAEQ== 642 + version "7.1.14" 643 + resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz#faaeefc4185ec71c389f4501ee5ec84b170cc402" 644 + integrity sha512-zGZJzzBUVDo/eV6KgbE0f0ZI7dInEYvo12Rb70uNQDshC3SkRMb67ja0GgRHZgAX3Za6rhaWlvbDO8rrGyAb1g== 673 645 dependencies: 674 646 "@babel/parser" "^7.1.0" 675 647 "@babel/types" "^7.0.0" ··· 693 665 "@babel/types" "^7.0.0" 694 666 695 667 "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 696 - version "7.11.0" 697 - resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.0.tgz#b9a1efa635201ba9bc850323a8793ee2d36c04a0" 698 - integrity sha512-kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg== 668 + version "7.11.1" 669 + resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.1.tgz#654f6c4f67568e24c23b367e947098c6206fa639" 670 + integrity sha512-Vs0hm0vPahPMYi9tDjtP66llufgO3ST16WXaSTtDGEl9cewAl3AibmxWw6TINOqHPT9z0uABKAYjT9jNSg4npw== 699 671 dependencies: 700 672 "@babel/types" "^7.3.0" 701 673 702 - "@types/chrome@^0.0.128": 703 - version "0.0.128" 704 - resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.128.tgz#5dbd8b2539a367353fbe4386f119b510105f8b6a" 705 - integrity sha512-eGc599TDtersMBW1cSnExHm0IHrXrO5xdk6Sa2Dq30ED+hR1rpT1ez0NNcCgvGO52nmktGfyvd3Uyquzv3LL4g== 674 + "@types/chrome@^0.0.136": 675 + version "0.0.136" 676 + resolved "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.136.tgz#7c011b9f997b0156f25a140188a0c5689d3f368f" 677 + integrity sha512-XDEiRhLkMd+SB7Iw3ZUIj/fov3wLd4HyTdLltVszkgl1dBfc3Rb7oPMVZ2Mz2TLqnF7Ow+StbR8E7r9lqpb4DA== 706 678 dependencies: 707 679 "@types/filesystem" "*" 708 680 "@types/har-format" "*" ··· 713 685 integrity sha512-Q1y515GcOdTHgagaVFhHnIFQ38ygs/kmxdNpvpou+raI9UO3YZcHDngBSYKQklcKlvA7iuQlmIKbzvmxcOE9CQ== 714 686 715 687 "@types/filesystem@*": 716 - version "0.0.29" 717 - resolved "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.29.tgz#ee3748eb5be140dcf980c3bd35f11aec5f7a3748" 718 - integrity sha512-85/1KfRedmfPGsbK8YzeaQUyV1FQAvMPMTuWFQ5EkLd2w7szhNO96bk3Rh/SKmOfd9co2rCLf0Voy4o7ECBOvw== 688 + version "0.0.30" 689 + resolved "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.30.tgz#a7373a2edf34d13e298baf7ee1101f738b2efb7e" 690 + integrity sha512-NCoRgmGmLpTT9VFL6Bb6z0jQuqI3d0E5FGl7M0JOv/J5RQYo9s5aOItPYnpckx9MbYQk1APLXcF8f20Vqnf2yA== 719 691 dependencies: 720 692 "@types/filewriter" "*" 721 693 722 694 "@types/filewriter@*": 723 - version "0.0.28" 724 - resolved "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.28.tgz#c054e8af4d9dd75db4e63abc76f885168714d4b3" 725 - integrity sha1-wFTor02d11205jq8dviFFocU1LM= 695 + version "0.0.29" 696 + resolved "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.29.tgz#a48795ecadf957f6c0d10e0c34af86c098fa5bee" 697 + integrity sha512-BsPXH/irW0ht0Ji6iw/jJaK8Lj3FJemon2gvEqHKpCdDCeemHa+rI3WBGq5z7cDMZgoLjY40oninGxqk+8NzNQ== 726 698 727 699 "@types/firefox-webext-browser@^82.0.0": 728 700 version "82.0.0" 729 701 resolved "https://registry.yarnpkg.com/@types/firefox-webext-browser/-/firefox-webext-browser-82.0.0.tgz#4d0f5cfebd7321d2cbf0ccfb6032570f0138b958" 730 702 integrity sha512-zKHePkjMx42KIUUZCPcUiyu1tpfQXH9VR4iDYfns3HvmKVJzt/TAFT+DFVroos8BI9RH78YgF3Hi/wlC6R6cKA== 731 703 732 - "@types/fs-extra@^9.0.5": 733 - version "9.0.7" 734 - resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.7.tgz#a9ef2ffdab043def080c5bec94c03402f793577f" 735 - integrity sha512-YGq2A6Yc3bldrLUlm17VNWOnUbnEzJ9CMgOeLFtQF3HOCN5lQBO8VyjG00a5acA5NNSM30kHVGp1trZgnVgi1Q== 704 + "@types/fs-extra@^9.0.7": 705 + version "9.0.11" 706 + resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.11.tgz#8cc99e103499eab9f347dbc6ca4e99fb8d2c2b87" 707 + integrity sha512-mZsifGG4QeQ7hlkhO56u7zt/ycBgGxSVsFI/6lGTU34VtwkiqrrSDgw0+ygs8kFGWcXnFQWMrzF2h7TtDFNixA== 736 708 dependencies: 737 709 "@types/node" "*" 738 710 ··· 776 748 "@types/istanbul-lib-report" "*" 777 749 778 750 "@types/minimatch@*": 779 - version "3.0.3" 780 - resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" 781 - integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== 751 + version "3.0.4" 752 + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz#f0ec25dbf2f0e4b18647313ac031134ca5b24b21" 753 + integrity sha512-1z8k4wzFnNjVK/tlxvrWuK5WMt6mydWWP7+zvH5eFep4oj+UkrfiJTRtjCeBXNpwaA/FYqqtb4/QS4ianFpIRA== 782 754 783 755 "@types/node@*": 784 - version "14.14.27" 785 - resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.27.tgz#c7127f8da0498993e13b1a42faf1303d3110d2f2" 786 - integrity sha512-Ecfmo4YDQPwuqTCl1yBxLV5ihKfRlkBmzUEDcfIRvDxOTGQEeikr317Ln7Gcv0tjA8dVgKI3rniqW2G1OyKDng== 756 + version "15.0.2" 757 + resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.2.tgz#51e9c0920d1b45936ea04341aa3e2e58d339fb67" 758 + integrity sha512-p68+a+KoxpoB47015IeYZYRrdqMUcpbK8re/zpFB8Ld46LHC1lPEbp3EXgkEhAYEcPvjJF6ZO+869SQ0aH1dcA== 787 759 788 - "@types/node@^12.0.12": 789 - version "12.20.0" 790 - resolved "https://registry.yarnpkg.com/@types/node/-/node-12.20.0.tgz#692dfdecd6c97f5380c42dd50f19261f9f604deb" 791 - integrity sha512-0/41wHcurotvSOTHQUFkgL702c3pyWR1mToSrrX3pGPvGfpHTv3Ksx0M4UVuU5VJfjVb62Eyr1eKO1tWNUCg2Q== 760 + "@types/node@^14.6.2": 761 + version "14.14.44" 762 + resolved "https://registry.yarnpkg.com/@types/node/-/node-14.14.44.tgz#df7503e6002847b834371c004b372529f3f85215" 763 + integrity sha512-+gaugz6Oce6ZInfI/tK4Pq5wIIkJMEJUu92RB3Eu93mtj4wjjjz9EB5mLp5s1pSsLXdC/CPut/xF20ZzAQJbTA== 792 764 793 765 "@types/normalize-package-data@^2.4.0": 794 766 version "2.4.0" ··· 804 776 xmlbuilder ">=11.0.1" 805 777 806 778 "@types/prettier@^2.0.0": 807 - version "2.2.1" 808 - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.1.tgz#374e31645d58cb18a07b3ecd8e9dede4deb2cccd" 809 - integrity sha512-DxZZbyMAM9GWEzXL+BMZROWz9oo6A9EilwwOMET2UVu2uZTqMWS5S69KVtuVKaRjCUpcrOXRalet86/OpG4kqw== 779 + version "2.2.3" 780 + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.3.tgz#ef65165aea2924c9359205bf748865b8881753c0" 781 + integrity sha512-PijRCG/K3s3w1We6ynUKdxEc5AcuuH3NBmMDP8uvKVp6X43UY7NQlTzczakXP3DJR0F4dfNQIGjU2cUeRYs2AA== 810 782 811 783 "@types/stack-utils@^2.0.0": 812 784 version "2.0.0" ··· 823 795 resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.0.tgz#dd3e6699ba3237f0348cd085e4698780204842f9" 824 796 integrity sha512-37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA== 825 797 826 - "@types/yargs@^15.0.0", "@types/yargs@^15.0.12": 798 + "@types/yargs@^15.0.0", "@types/yargs@^15.0.13": 827 799 version "15.0.13" 828 800 resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-15.0.13.tgz#34f7fec8b389d7f3c1fd08026a5763e072d3c6dc" 829 801 integrity sha512-kQ5JNTrbDv3Rp5X2n/iUu37IJBDU2gsZ5R/g1/KHOOEc5IKfUFjXT6DENPGduh08I/pamwtEq4oul7gUqKTQDQ== 830 802 dependencies: 831 803 "@types/yargs-parser" "*" 832 804 833 - abab@^2.0.3: 805 + abab@^2.0.3, abab@^2.0.5: 834 806 version "2.0.5" 835 807 resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 836 808 integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== ··· 858 830 resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 859 831 integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 860 832 833 + acorn@^8.1.0: 834 + version "8.2.4" 835 + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz#caba24b08185c3b56e3168e97d15ed17f4d31fd0" 836 + integrity sha512-Ibt84YwBDDA890eDiDCEqcbwvHlBvzzDkU2cGBBDDI1QWT12jTiXIOn2CIw5KK4i6N5Z2HUxwYjzriDyqaqqZg== 837 + 861 838 ajv-keywords@^3.4.1: 862 839 version "3.5.2" 863 840 resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.5.2.tgz#31f29da5ab6e00d1c2d329acf7b5929614d5014d" ··· 878 845 json-schema-traverse "^0.4.1" 879 846 uri-js "^4.2.2" 880 847 881 - ajv@^7.0.2: 882 - version "7.1.0" 883 - resolved "https://registry.yarnpkg.com/ajv/-/ajv-7.1.0.tgz#f982ea7933dc7f1012eae9eec5a86687d805421b" 884 - integrity sha512-svS9uILze/cXbH0z2myCK2Brqprx/+JJYK5pHicT/GQiBfzzhUVAIT6MwqJg8y4xV/zoGsUeuPuwtoiKSGE15g== 848 + ajv@^8.0.1: 849 + version "8.2.0" 850 + resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.2.0.tgz#c89d3380a784ce81b2085f48811c4c101df4c602" 851 + integrity sha512-WSNGFuyWd//XO8n/m/EaOlNLtO0yL8EXT/74LqT4khdhpZjP7lkj/kT5uwRmGitKEVp/Oj7ZUHeGfPtgHhQ5CA== 885 852 dependencies: 886 853 fast-deep-equal "^3.1.1" 887 854 json-schema-traverse "^1.0.0" ··· 901 868 integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 902 869 903 870 ansi-escapes@^4.2.1: 904 - version "4.3.1" 905 - resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz#a5c47cc43181f1f38ffd7076837700d395522a61" 906 - integrity sha512-JWF7ocqNrp8u9oqpgV+wH5ftbt+cfvv+PTjOvKLT3AdYly/LmORARfEVT1iyjwN+4MqE5UmVKoAdIBqeoCHgLA== 871 + version "4.3.2" 872 + resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 873 + integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 907 874 dependencies: 908 - type-fest "^0.11.0" 875 + type-fest "^0.21.3" 909 876 910 877 ansi-regex@^3.0.0: 911 878 version "3.0.0" ··· 945 912 normalize-path "^2.1.1" 946 913 947 914 anymatch@^3.0.3: 948 - version "3.1.1" 949 - resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 950 - integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 915 + version "3.1.2" 916 + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 917 + integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 951 918 dependencies: 952 919 normalize-path "^3.0.0" 953 920 picomatch "^2.0.4" ··· 957 924 resolved "https://registry.yarnpkg.com/app-builder-bin/-/app-builder-bin-3.5.12.tgz#bbe174972cc1f481f73d6d92ad47a8b4c7eb4530" 958 925 integrity sha512-lQARM2AielmFoBeIo6LZigAe+58Wwe07ZWkt+wVeDxzyieNmeWjlvz/V5dKzinydwdHd+CNswN86sww46yijjA== 959 926 960 - app-builder-lib@22.10.4: 961 - version "22.10.4" 962 - resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.10.4.tgz#3fc70821b76beb9c8279d9de22960ef2174da153" 963 - integrity sha512-q7B1cr8Ry4a7o08EKShLfwsnIVf5By7YhVwcoqgEwPKxtoj1qF0kB4wyBP79rJylYi0Zj2cSkJJ/gD/ef9xhoQ== 927 + app-builder-lib@22.10.5: 928 + version "22.10.5" 929 + resolved "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.10.5.tgz#24a88581c891e5b187a0d569aa44e7c4a0dc8de2" 930 + integrity sha512-/W8nlGamJCtKlQtsMWwU9vb+cX4pTNY+rJWCuc7oXUykVSMS50W7LhQusIjCelNfymUQ1XCu6cXEY/ylqhX12A== 964 931 dependencies: 965 932 "7zip-bin" "~5.0.3" 966 933 "@develar/schema-utils" "~2.6.5" 967 934 "@electron/universal" "1.0.4" 968 935 async-exit-hook "^2.0.1" 969 936 bluebird-lst "^1.0.9" 970 - builder-util "22.10.4" 937 + builder-util "22.10.5" 971 938 builder-util-runtime "8.7.3" 972 939 chromium-pickle-js "^0.2.0" 973 - debug "^4.3.1" 974 - ejs "^3.1.5" 975 - electron-publish "22.10.4" 976 - fs-extra "^9.0.1" 977 - hosted-git-info "^3.0.7" 940 + debug "^4.3.2" 941 + ejs "^3.1.6" 942 + electron-publish "22.10.5" 943 + fs-extra "^9.1.0" 944 + hosted-git-info "^3.0.8" 978 945 is-ci "^2.0.0" 979 - isbinaryfile "^4.0.6" 980 - js-yaml "^3.14.1" 946 + istextorbinary "^5.12.0" 947 + js-yaml "^4.0.0" 981 948 lazy-val "^1.0.4" 982 949 minimatch "^3.0.4" 983 950 normalize-package-data "^3.0.0" ··· 1002 969 normalize-path "^3.0.0" 1003 970 readable-stream "^2.0.0" 1004 971 1005 - archiver@^5.2.0: 1006 - version "5.2.0" 1007 - resolved "https://registry.yarnpkg.com/archiver/-/archiver-5.2.0.tgz#25aa1b3d9febf7aec5b0f296e77e69960c26db94" 1008 - integrity sha512-QEAKlgQuAtUxKeZB9w5/ggKXh21bZS+dzzuQ0RPBC20qtDCbTyzqmisoeJP46MP39fg4B4IcyvR+yeyEBdblsQ== 972 + archiver@5.3.0: 973 + version "5.3.0" 974 + resolved "https://registry.yarnpkg.com/archiver/-/archiver-5.3.0.tgz#dd3e097624481741df626267564f7dd8640a45ba" 975 + integrity sha512-iUw+oDwK0fgNpvveEsdQ0Ase6IIKztBJU2U0E9MzszMfmVVUyv1QJhS2ITW9ZCqx8dktAxVAjWWkKehuZE8OPg== 1009 976 dependencies: 1010 977 archiver-utils "^2.1.0" 1011 978 async "^3.2.0" 1012 979 buffer-crc32 "^0.2.1" 1013 980 readable-stream "^3.6.0" 1014 981 readdir-glob "^1.0.0" 1015 - tar-stream "^2.1.4" 1016 - zip-stream "^4.0.4" 982 + tar-stream "^2.2.0" 983 + zip-stream "^4.1.0" 1017 984 1018 985 argparse@^1.0.7: 1019 986 version "1.0.10" ··· 1021 988 integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 1022 989 dependencies: 1023 990 sprintf-js "~1.0.2" 991 + 992 + argparse@^2.0.1: 993 + version "2.0.1" 994 + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 995 + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 1024 996 1025 997 arr-diff@^4.0.0: 1026 998 version "4.0.0" ··· 1075 1037 version "1.0.0" 1076 1038 resolved "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367" 1077 1039 integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c= 1040 + 1041 + ast-metadata-inferer@^0.4.0: 1042 + version "0.4.0" 1043 + resolved "https://registry.yarnpkg.com/ast-metadata-inferer/-/ast-metadata-inferer-0.4.0.tgz#6be85ceeffcf267bd79db8e1ae731da44880b45f" 1044 + integrity sha512-tKHdBe8N/Vq2nLAm4YPBVREVZjMux6KrqyPfNQgIbDl0t7HaNSmy8w4OyVHYg/cvyn5BW7o7pVwpjPte89Zhcg== 1078 1045 1079 1046 astral-regex@^2.0.0: 1080 1047 version "2.0.0" ··· 1188 1145 babel-preset-current-node-syntax "^1.0.0" 1189 1146 1190 1147 balanced-match@^1.0.0: 1191 - version "1.0.0" 1192 - resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 1193 - integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 1148 + version "1.0.2" 1149 + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 1150 + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 1194 1151 1195 - base64-js@^1.2.3, base64-js@^1.3.1: 1152 + base64-js@^1.3.1, base64-js@^1.5.1: 1196 1153 version "1.5.1" 1197 1154 resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" 1198 1155 integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== ··· 1217 1174 dependencies: 1218 1175 tweetnacl "^0.14.3" 1219 1176 1177 + binaryextensions@^4.15.0: 1178 + version "4.15.0" 1179 + resolved "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-4.15.0.tgz#c63a502e0078ff1b0e9b00a9f74d3c2b0f8bd32e" 1180 + integrity sha512-MkUl3szxXolQ2scI1PM14WOT951KnaTNJ0eMKg7WzOI4kvSxyNo/Cygx4LOBNhwyINhAuSQpJW1rYD9aBSxGaw== 1181 + 1220 1182 bl@^4.0.3: 1221 1183 version "4.1.0" 1222 1184 resolved "https://registry.yarnpkg.com/bl/-/bl-4.1.0.tgz#451535264182bec2fbbc83a62ab98cf11d9f7b3a" ··· 1244 1196 integrity sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg== 1245 1197 1246 1198 boolean@^3.0.1: 1247 - version "3.0.2" 1248 - resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.0.2.tgz#df1baa18b6a2b0e70840475e1d93ec8fe75b2570" 1249 - integrity sha512-RwywHlpCRc3/Wh81MiCKun4ydaIFyW5Ea6JbL6sRCVx5q5irDw7pMXBUFYF/jArQ6YrG36q0kpovc9P/Kd3I4g== 1199 + version "3.0.3" 1200 + resolved "https://registry.yarnpkg.com/boolean/-/boolean-3.0.3.tgz#0fee0c9813b66bef25a8a6a904bb46736d05f024" 1201 + integrity sha512-EqrTKXQX6Z3A2nRmMEIlAIfjQOgFnVO2nqZGpbcsPnYGWBwpFqzlrozU1dy+S2iqfYDLh26ef4KrgTxu9xQrxA== 1250 1202 1251 1203 boxen@^5.0.0: 1252 - version "5.0.0" 1253 - resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.0.0.tgz#64fe9b16066af815f51057adcc800c3730120854" 1254 - integrity sha512-5bvsqw+hhgUi3oYGK0Vf4WpIkyemp60WBInn7+WNfoISzAqk/HX4L7WNROq38E6UR/y3YADpv6pEm4BfkeEAdA== 1204 + version "5.0.1" 1205 + resolved "https://registry.yarnpkg.com/boxen/-/boxen-5.0.1.tgz#657528bdd3f59a772b8279b831f27ec2c744664b" 1206 + integrity sha512-49VBlw+PrWEF51aCmy7QIteYPIFZxSpvqBdP/2itCPPlJ49kj9zg/XPRFrdkne2W+CfwXUls8exMvu1RysZpKA== 1255 1207 dependencies: 1256 1208 ansi-align "^3.0.0" 1257 1209 camelcase "^6.2.0" ··· 1298 1250 resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 1299 1251 integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 1300 1252 1253 + browserslist@^4.12.2, browserslist@^4.14.5: 1254 + version "4.16.6" 1255 + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz#d7901277a5a88e554ed305b183ec9b0c08f66fa2" 1256 + integrity sha512-Wspk/PqO+4W9qp5iUTJsa1B/QrYn1keNCcEP5OvP7WBwT4KaDly0uONYmC6Xa3Z5IqnUgS0KcgLYu1l74x0ZXQ== 1257 + dependencies: 1258 + caniuse-lite "^1.0.30001219" 1259 + colorette "^1.2.2" 1260 + electron-to-chromium "^1.3.723" 1261 + escalade "^3.1.1" 1262 + node-releases "^1.1.71" 1263 + 1301 1264 bser@2.1.1: 1302 1265 version "2.1.1" 1303 1266 resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" ··· 1347 1288 debug "^4.3.2" 1348 1289 sax "^1.2.4" 1349 1290 1350 - builder-util@22.10.4: 1351 - version "22.10.4" 1352 - resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-22.10.4.tgz#54e8be83dd0dec28073d866ff087cee8e7ce6cf6" 1353 - integrity sha512-XdcbFG3otEkNRKxW2wS1npNviCb/IrzusEQ55lMB+6YEHxBOfTbf8vnPt0pDumfwmxls9xczABU+mfqN/W4uDw== 1291 + builder-util@22.10.5: 1292 + version "22.10.5" 1293 + resolved "https://registry.yarnpkg.com/builder-util/-/builder-util-22.10.5.tgz#8d0b04a3be6acc74938679aa90dcb3181b1ae86b" 1294 + integrity sha512-/MkLhmyo1gU3xMwXJxccQaRj/9tm5eTd6ZyebTf8SYouY4r3hRser+LxhOm/f8Z9W6oJvfPe0jc9TFsxYfMcsg== 1354 1295 dependencies: 1355 1296 "7zip-bin" "~5.0.3" 1356 1297 "@types/debug" "^4.1.5" 1357 - "@types/fs-extra" "^9.0.5" 1298 + "@types/fs-extra" "^9.0.7" 1358 1299 app-builder-bin "3.5.12" 1359 1300 bluebird-lst "^1.0.9" 1360 1301 builder-util-runtime "8.7.3" 1361 1302 chalk "^4.1.0" 1362 - debug "^4.3.1" 1363 - fs-extra "^9.0.1" 1303 + debug "^4.3.2" 1304 + fs-extra "^9.1.0" 1364 1305 is-ci "^2.0.0" 1365 - js-yaml "^3.14.1" 1306 + js-yaml "^4.0.0" 1366 1307 source-map-support "^0.5.19" 1367 1308 stat-mode "^1.0.0" 1368 1309 temp-file "^3.3.7" ··· 1410 1351 resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 1411 1352 integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 1412 1353 1354 + caniuse-lite@^1.0.30001166, caniuse-lite@^1.0.30001219: 1355 + version "1.0.30001223" 1356 + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001223.tgz#39b49ff0bfb3ee3587000d2f66c47addc6e14443" 1357 + integrity sha512-k/RYs6zc/fjbxTjaWZemeSmOjO0JJV+KguOBA3NwPup8uzxM1cMhR2BD9XmO86GuqaqTCO8CgkgH9Rz//vdDiA== 1358 + 1413 1359 capture-exit@^2.0.0: 1414 1360 version "2.0.0" 1415 1361 resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4" ··· 1437 1373 supports-color "^5.3.0" 1438 1374 1439 1375 chalk@^4.0.0, chalk@^4.1.0: 1440 - version "4.1.0" 1441 - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" 1442 - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== 1376 + version "4.1.1" 1377 + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 1378 + integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 1443 1379 dependencies: 1444 1380 ansi-styles "^4.1.0" 1445 1381 supports-color "^7.1.0" ··· 1554 1490 resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1555 1491 integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1556 1492 1493 + colorette@^1.2.2: 1494 + version "1.2.2" 1495 + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz#cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94" 1496 + integrity sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w== 1497 + 1557 1498 colors@1.0.3: 1558 1499 version "1.0.3" 1559 1500 resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b" ··· 1588 1519 resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0" 1589 1520 integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg== 1590 1521 1591 - compress-commons@^4.0.2: 1592 - version "4.0.2" 1593 - resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.0.2.tgz#d6896be386e52f37610cef9e6fa5defc58c31bd7" 1594 - integrity sha512-qhd32a9xgzmpfoga1VQEiLEwdKZ6Plnpx5UCgIsf89FSolyJ7WnifY4Gtjgv5WR6hWAyRaHxC5MiEhU/38U70A== 1522 + compress-commons@^4.1.0: 1523 + version "4.1.0" 1524 + resolved "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.1.0.tgz#25ec7a4528852ccd1d441a7d4353cd0ece11371b" 1525 + integrity sha512-ofaaLqfraD1YRTkrRKPCrGJ1pFeDG/MVCkVVV2FNGeWquSlqw5wOrwOfPQ1xF2u+blpeWASie5EubHz+vsNIgA== 1595 1526 dependencies: 1596 1527 buffer-crc32 "^0.2.13" 1597 1528 crc32-stream "^4.0.1" ··· 1646 1577 integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= 1647 1578 1648 1579 core-js@^3.6.5: 1649 - version "3.8.3" 1650 - resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz#c21906e1f14f3689f93abcc6e26883550dd92dd0" 1651 - integrity sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q== 1580 + version "3.11.3" 1581 + resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.11.3.tgz#2835b1f4d10f6d0400bf820cfe6fe64ad067dd3f" 1582 + integrity sha512-DFEW9BllWw781Op5KdYGtXfj3s9Cmykzt16bY6elaVuqXHCUwF/5pv0H3IJ7/I3BGjK7OeU+GrjD1ChCkBJPuA== 1652 1583 1653 1584 core-util-is@1.0.2, core-util-is@~1.0.0: 1654 1585 version "1.0.2" ··· 1713 1644 resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 1714 1645 integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 1715 1646 1716 - cssstyle@^2.2.0: 1647 + cssstyle@^2.3.0: 1717 1648 version "2.3.0" 1718 1649 resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 1719 1650 integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 1720 1651 dependencies: 1721 1652 cssom "~0.3.6" 1722 - 1723 - darkreader@^4.9.27: 1724 - version "4.9.27" 1725 - resolved "https://registry.yarnpkg.com/darkreader/-/darkreader-4.9.27.tgz#69b641d6a3c22b07fb0424406dfd9a3661b37197" 1726 - integrity sha512-DG8zsicuCbAYKaKvLUaiikeei5jN5dIpe0jyaPw4kDa2L5zVnWc/ZxNUYOFriKVAmicwqE5gH5EOfyI0MVt3KA== 1727 1653 1728 1654 dashdash@^1.12.0: 1729 1655 version "1.14.1" ··· 1762 1698 resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290" 1763 1699 integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA= 1764 1700 1765 - decimal.js@^10.2.0: 1701 + decimal.js@^10.2.1: 1766 1702 version "10.2.1" 1767 1703 resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.2.1.tgz#238ae7b0f0c793d3e3cea410108b35a2c01426a3" 1768 1704 integrity sha512-KaL7+6Fw6i5A2XSnsbhm/6B+NuEA7TZ4vqxnd5tXz9sbKtrN9Srj8ab4vKVdK8YAqZO9P1kg45Y6YLoduPf+kw== ··· 1839 1775 integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1840 1776 1841 1777 detect-node@^2.0.4: 1842 - version "2.0.4" 1843 - resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz#014ee8f8f669c5c58023da64b8179c083a28c46c" 1844 - integrity sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw== 1778 + version "2.0.5" 1779 + resolved "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.5.tgz#9d270aa7eaa5af0b72c4c9d9b814e7f4ce738b79" 1780 + integrity sha512-qi86tE6hRcFHy8jI1m2VG+LaPUR1LhqDa5G8tVjuUXmOrpuAgqsA1pN0+ldgr3aKUH+QLI9hCY/OcRYisERejw== 1845 1781 1846 1782 diff-sequences@^26.6.2: 1847 1783 version "26.6.2" ··· 1858 1794 commander "2.9.0" 1859 1795 minimatch "3.0.4" 1860 1796 1861 - dmg-builder@22.10.4: 1862 - version "22.10.4" 1863 - resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.10.4.tgz#8dab30754346791eb728091359558fd4a8dbb45f" 1864 - integrity sha512-+28HZgKAuyCQnQwLSAwkHUqtMB/egHF5ACUABCB4Nev02/ZfjFPUTF/WloTaEbue34zLLUGxPXh+BJF8Xw26ow== 1797 + dmg-builder@22.10.5: 1798 + version "22.10.5" 1799 + resolved "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.10.5.tgz#65a33c106ead5a350c7de8997c546559bd6e0e7c" 1800 + integrity sha512-58FEpfH8PEFqjbUNka4bYr52snRT8+LSXrP4gy6EZWOVICbOlmTOYj988pfoLam5C5iXb3odmyUQqwWOxlsEUw== 1865 1801 dependencies: 1866 - app-builder-lib "22.10.4" 1867 - builder-util "22.10.4" 1868 - fs-extra "^9.0.1" 1802 + app-builder-lib "22.10.5" 1803 + builder-util "22.10.5" 1804 + fs-extra "^9.1.0" 1869 1805 iconv-lite "^0.6.2" 1870 - js-yaml "^3.14.1" 1806 + js-yaml "^4.0.0" 1871 1807 sanitize-filename "^1.6.3" 1872 1808 optionalDependencies: 1873 1809 dmg-license "^1.0.8" ··· 1914 1850 integrity sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA== 1915 1851 1916 1852 dotenv@^8.2.0: 1917 - version "8.2.0" 1918 - resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz#97e619259ada750eea3e4ea3e26bceea5424b16a" 1919 - integrity sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw== 1853 + version "8.6.0" 1854 + resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz#061af664d19f7f4d8fc6e4ff9b584ce237adcb8b" 1855 + integrity sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g== 1920 1856 1921 1857 duplexer3@^0.1.4: 1922 1858 version "0.1.4" ··· 1931 1867 jsbn "~0.1.0" 1932 1868 safer-buffer "^2.1.0" 1933 1869 1934 - ejs@^3.1.5: 1870 + editions@^6.1.0: 1871 + version "6.1.0" 1872 + resolved "https://registry.yarnpkg.com/editions/-/editions-6.1.0.tgz#ba6c6cf9f4bb571d9e53ea34e771a602e5a66549" 1873 + integrity sha512-h6nWEyIocfgho9J3sTSuhU/WoFOu1hTX75rPBebNrbF38Y9QFDjCDizYXdikHTySW7Y3mSxli8bpDz9RAtc7rA== 1874 + dependencies: 1875 + errlop "^4.0.0" 1876 + version-range "^1.0.0" 1877 + 1878 + ejs@^3.1.6: 1935 1879 version "3.1.6" 1936 1880 resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.6.tgz#5bfd0a0689743bb5268b3550cceeebbc1702822a" 1937 1881 integrity sha512-9lt9Zse4hPucPkoP7FHDF0LQAlGyF9JVpnClFLFH3aSSbxmyoqINRpp/9wePWJTUl4KOQwRL72Iw3InHPDkoGw== 1938 1882 dependencies: 1939 1883 jake "^10.6.1" 1940 1884 1941 - electron-builder@^22.10.4: 1942 - version "22.10.4" 1943 - resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.10.4.tgz#e1f400cf41ebb632fbf79aa86c5e0ab1ea1ed7e5" 1944 - integrity sha512-V+JtiizJd3kt24TT+0OHG7+oPAzjhhjmQVn9G6OC2WE7VBJxrDuD6lMVRgo6WlU8uvDCh7fTRUsdh0Tnu0GeQA== 1885 + electron-builder@22.10.5: 1886 + version "22.10.5" 1887 + resolved "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.10.5.tgz#03b156b93e6012609027c3aaa69201a3ad21e454" 1888 + integrity sha512-0q/289UUJUhRou6lZKDz/wzK6WprIQ6VXMTmaI+w9qXvSNugPC9UA5s2zXInOkjZOvO/xKnjeyiavrVSHYF3tA== 1945 1889 dependencies: 1946 - "@types/yargs" "^15.0.12" 1947 - app-builder-lib "22.10.4" 1890 + "@types/yargs" "^15.0.13" 1891 + app-builder-lib "22.10.5" 1948 1892 bluebird-lst "^1.0.9" 1949 - builder-util "22.10.4" 1893 + builder-util "22.10.5" 1950 1894 builder-util-runtime "8.7.3" 1951 1895 chalk "^4.1.0" 1952 - dmg-builder "22.10.4" 1953 - fs-extra "^9.0.1" 1896 + dmg-builder "22.10.5" 1897 + fs-extra "^9.1.0" 1954 1898 is-ci "^2.0.0" 1955 1899 lazy-val "^1.0.4" 1956 1900 read-config-file "6.0.0" 1957 1901 sanitize-filename "^1.6.3" 1958 - update-notifier "^5.0.1" 1902 + update-notifier "^5.1.0" 1959 1903 yargs "^16.2.0" 1960 1904 1961 - electron-publish@22.10.4: 1962 - version "22.10.4" 1963 - resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.10.4.tgz#944b00aa6a7746c31ce900ffd8106d243326dca8" 1964 - integrity sha512-cjVM0+9DQoV4TWfH8lVWoelJ89O2i5yDARVp5GCMHrB43XEU0Nr5eKYysgsbOSnZk5W8z1vfGpFWHj+AeAEDYg== 1905 + electron-publish@22.10.5: 1906 + version "22.10.5" 1907 + resolved "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.10.5.tgz#9cbe46266b6c79d8c6e99840755682e2262d3543" 1908 + integrity sha512-dHyuazv3P3j1Xyv7pdwTwAvxWab2pCb0G0Oa6qWQoCc4b1/mRGY00M7AvYW1cPuUijj9zYAf1HmXfM6MifaMlA== 1965 1909 dependencies: 1966 - "@types/fs-extra" "^9.0.5" 1910 + "@types/fs-extra" "^9.0.7" 1967 1911 bluebird-lst "^1.0.9" 1968 - builder-util "22.10.4" 1912 + builder-util "22.10.5" 1969 1913 builder-util-runtime "8.7.3" 1970 1914 chalk "^4.1.0" 1971 - fs-extra "^9.0.1" 1915 + fs-extra "^9.1.0" 1972 1916 lazy-val "^1.0.4" 1973 - mime "^2.4.7" 1917 + mime "^2.5.0" 1974 1918 1975 - electron@^11.2.1: 1976 - version "11.2.3" 1977 - resolved "https://registry.yarnpkg.com/electron/-/electron-11.2.3.tgz#8ad1d9858436cfca0e2e5ea7fea326794ae58ebb" 1978 - integrity sha512-6yxOc42nDAptHKNlUG/vcOh2GI9x2fqp2nQbZO0/3sz2CrwsJkwR3i3oMN9XhVJaqI7GK1vSCJz0verOkWlXcQ== 1919 + electron-to-chromium@^1.3.723: 1920 + version "1.3.727" 1921 + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.727.tgz#857e310ca00f0b75da4e1db6ff0e073cc4a91ddf" 1922 + integrity sha512-Mfz4FIB4FSvEwBpDfdipRIrwd6uo8gUDoRDF4QEYb4h4tSuI3ov594OrjU6on042UlFHouIJpClDODGkPcBSbg== 1923 + 1924 + electron@12.0.5: 1925 + version "12.0.5" 1926 + resolved "https://registry.yarnpkg.com/electron/-/electron-12.0.5.tgz#005cf4375d2ee4563f5e75dc4da4ef871846a8be" 1927 + integrity sha512-z0xYB3sPr0qZcDrHUUWqooPKe3yUzBDxQcgQe3f2TLstA84JIFXBoaIJCPh/fJW0+JdF/ZFVeK2SNgLhYtRV+Q== 1979 1928 dependencies: 1980 1929 "@electron/get" "^1.0.1" 1981 - "@types/node" "^12.0.12" 1930 + "@types/node" "^14.6.2" 1982 1931 extract-zip "^1.0.3" 1983 1932 1984 1933 emittery@^0.7.1: ··· 2029 1952 ansi-colors "^4.1.1" 2030 1953 2031 1954 env-paths@^2.2.0: 2032 - version "2.2.0" 2033 - resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43" 2034 - integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA== 1955 + version "2.2.1" 1956 + resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz#420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2" 1957 + integrity sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A== 1958 + 1959 + errlop@^4.0.0: 1960 + version "4.1.0" 1961 + resolved "https://registry.yarnpkg.com/errlop/-/errlop-4.1.0.tgz#8e7b8f4f1bf0a6feafce4d14f0c0cf4bf5ef036b" 1962 + integrity sha512-vul6gGBuVt0M2TPi1/WrcL86+Hb3Q2Tpu3TME3sbVhZrYf7J1ZMHCodI25RQKCVurh56qTfvgM0p3w5cT4reSQ== 2035 1963 2036 1964 error-ex@^1.3.1: 2037 1965 version "1.3.2" ··· 2075 1993 resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 2076 1994 integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 2077 1995 2078 - escodegen@^1.14.1: 2079 - version "1.14.3" 2080 - resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz#4e7b81fba61581dc97582ed78cab7f0e8d63f503" 2081 - integrity sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw== 1996 + escodegen@^2.0.0: 1997 + version "2.0.0" 1998 + resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1999 + integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 2082 2000 dependencies: 2083 2001 esprima "^4.0.1" 2084 - estraverse "^4.2.0" 2002 + estraverse "^5.2.0" 2085 2003 esutils "^2.0.2" 2086 2004 optionator "^0.8.1" 2087 2005 optionalDependencies: 2088 2006 source-map "~0.6.1" 2007 + 2008 + eslint-plugin-compat@^3.9.0: 2009 + version "3.9.0" 2010 + resolved "https://registry.yarnpkg.com/eslint-plugin-compat/-/eslint-plugin-compat-3.9.0.tgz#a7a224e09b102b58e7f7dff52c936428ff3e0186" 2011 + integrity sha512-lt3l5PHFHVEYSZ5zijcoYvtQJPsBifRiH5N0Et57KwVu7l/yxmHhSG6VJiLMa/lXrg93Qu8049RNQOMn0+yJBg== 2012 + dependencies: 2013 + "@mdn/browser-compat-data" "^2.0.7" 2014 + ast-metadata-inferer "^0.4.0" 2015 + browserslist "^4.12.2" 2016 + caniuse-lite "^1.0.30001166" 2017 + core-js "^3.6.5" 2018 + find-up "^4.1.0" 2019 + lodash.memoize "4.1.2" 2020 + semver "7.3.2" 2089 2021 2090 2022 eslint-scope@^5.1.1: 2091 2023 version "5.1.1" ··· 2122 2026 integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 2123 2027 2124 2028 eslint-visitor-keys@^2.0.0: 2125 - version "2.0.0" 2126 - resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz#21fdc8fbcd9c795cc0321f0563702095751511a8" 2127 - integrity sha512-QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ== 2029 + version "2.1.0" 2030 + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 2031 + integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 2128 2032 2129 - eslint@^7.19.0: 2130 - version "7.20.0" 2131 - resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.20.0.tgz#db07c4ca4eda2e2316e7aa57ac7fc91ec550bdc7" 2132 - integrity sha512-qGi0CTcOGP2OtCQBgWZlQjcTuP0XkIpYFj25XtRTQSHC+umNnp7UMshr2G8SLsRFYDdAPFeHOsiteadmMH02Yw== 2033 + eslint@7.25.0: 2034 + version "7.25.0" 2035 + resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.25.0.tgz#1309e4404d94e676e3e831b3a3ad2b050031eb67" 2036 + integrity sha512-TVpSovpvCNpLURIScDRB6g5CYu/ZFq9GfX2hLNIV4dSBKxIWojeDODvYl3t0k0VtMxYeR8OXPCFE5+oHMlGfhw== 2133 2037 dependencies: 2134 2038 "@babel/code-frame" "7.12.11" 2135 - "@eslint/eslintrc" "^0.3.0" 2039 + "@eslint/eslintrc" "^0.4.0" 2136 2040 ajv "^6.10.0" 2137 2041 chalk "^4.0.0" 2138 2042 cross-spawn "^7.0.2" ··· 2145 2049 espree "^7.3.1" 2146 2050 esquery "^1.4.0" 2147 2051 esutils "^2.0.2" 2148 - file-entry-cache "^6.0.0" 2052 + file-entry-cache "^6.0.1" 2149 2053 functional-red-black-tree "^1.0.1" 2150 2054 glob-parent "^5.0.0" 2151 - globals "^12.1.0" 2055 + globals "^13.6.0" 2152 2056 ignore "^4.0.6" 2153 2057 import-fresh "^3.0.0" 2154 2058 imurmurhash "^0.1.4" ··· 2156 2060 js-yaml "^3.13.1" 2157 2061 json-stable-stringify-without-jsonify "^1.0.1" 2158 2062 levn "^0.4.1" 2159 - lodash "^4.17.20" 2063 + lodash "^4.17.21" 2160 2064 minimatch "^3.0.4" 2161 2065 natural-compare "^1.4.0" 2162 2066 optionator "^0.9.1" ··· 2197 2101 dependencies: 2198 2102 estraverse "^5.2.0" 2199 2103 2200 - estraverse@^4.1.1, estraverse@^4.2.0: 2104 + estraverse@^4.1.1: 2201 2105 version "4.3.0" 2202 2106 resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 2203 2107 integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== ··· 2213 2117 integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 2214 2118 2215 2119 exec-sh@^0.3.2: 2216 - version "0.3.4" 2217 - resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz#3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5" 2218 - integrity sha512-sEFIkc61v75sWeOe72qyrqg2Qg0OuLESziUDk/O/z2qgS15y2gWVFrI6f2Qn/qw/0/NCfCEsmNA4zOjkwEZT1A== 2120 + version "0.3.6" 2121 + resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz#ff264f9e325519a60cb5e273692943483cca63bc" 2122 + integrity sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w== 2219 2123 2220 2124 execa@^1.0.0: 2221 2125 version "1.0.0" ··· 2295 2199 assign-symbols "^1.0.0" 2296 2200 is-extendable "^1.0.1" 2297 2201 2298 - extend@~3.0.2: 2202 + extend@3.0.2, extend@~3.0.2: 2299 2203 version "3.0.2" 2300 2204 resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" 2301 2205 integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== ··· 2349 2253 resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 2350 2254 integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 2351 2255 2256 + fast-xml-parser@^3.19.0: 2257 + version "3.19.0" 2258 + resolved "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz#cb637ec3f3999f51406dd8ff0e6fc4d83e520d01" 2259 + integrity sha512-4pXwmBplsCPv8FOY1WRakF970TjNGnGnfbOnLqjlYvMiF1SR3yOHyxMR/YCXpPTOspNF5gwudqktIP4VsWkvBg== 2260 + 2352 2261 fb-watchman@^2.0.0: 2353 2262 version "2.0.1" 2354 2263 resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" ··· 2368 2267 dependencies: 2369 2268 pend "~1.2.0" 2370 2269 2371 - file-entry-cache@^6.0.0: 2372 - version "6.0.0" 2373 - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz#7921a89c391c6d93efec2169ac6bf300c527ea0a" 2374 - integrity sha512-fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA== 2270 + file-entry-cache@^6.0.1: 2271 + version "6.0.1" 2272 + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 2273 + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 2375 2274 dependencies: 2376 2275 flat-cache "^3.0.4" 2377 2276 ··· 2460 2359 jsonfile "^4.0.0" 2461 2360 universalify "^0.1.0" 2462 2361 2463 - fs-extra@^9.0.1: 2362 + fs-extra@^9.0.1, fs-extra@^9.1.0: 2464 2363 version "9.1.0" 2465 2364 resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-9.1.0.tgz#5954460c764a8da2094ba3554bf839e6b9a7c86d" 2466 2365 integrity sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ== ··· 2490 2389 resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 2491 2390 integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 2492 2391 2493 - gensync@^1.0.0-beta.1: 2392 + gensync@^1.0.0-beta.2: 2494 2393 version "1.0.0-beta.2" 2495 2394 resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 2496 2395 integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== ··· 2532 2431 assert-plus "^1.0.0" 2533 2432 2534 2433 glob-parent@^5.0.0: 2535 - version "5.1.1" 2536 - resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 2537 - integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 2434 + version "5.1.2" 2435 + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 2436 + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 2538 2437 dependencies: 2539 2438 is-glob "^4.0.1" 2540 2439 ··· 2551 2450 path-is-absolute "^1.0.0" 2552 2451 2553 2452 global-agent@^2.0.2: 2554 - version "2.1.12" 2555 - resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-2.1.12.tgz#e4ae3812b731a9e81cbf825f9377ef450a8e4195" 2556 - integrity sha512-caAljRMS/qcDo69X9BfkgrihGUgGx44Fb4QQToNQjsiWh+YlQ66uqYVAdA8Olqit+5Ng0nkz09je3ZzANMZcjg== 2453 + version "2.2.0" 2454 + resolved "https://registry.yarnpkg.com/global-agent/-/global-agent-2.2.0.tgz#566331b0646e6bf79429a16877685c4a1fbf76dc" 2455 + integrity sha512-+20KpaW6DDLqhG7JDiJpD1JvNvb8ts+TNl7BPOYcURqCrXqnN1Vf+XVOrkKJAFPqfX+oEhsdzOj1hLWkBTdNJg== 2557 2456 dependencies: 2558 2457 boolean "^3.0.1" 2559 2458 core-js "^3.6.5" ··· 2592 2491 dependencies: 2593 2492 type-fest "^0.8.1" 2594 2493 2494 + globals@^13.6.0: 2495 + version "13.8.0" 2496 + resolved "https://registry.yarnpkg.com/globals/-/globals-13.8.0.tgz#3e20f504810ce87a8d72e55aecf8435b50f4c1b3" 2497 + integrity sha512-rHtdA6+PDBIjeEvA91rpqzEvk/k3/i7EeNQiryiWuJH0Hw9cpyJMAt2jtbAwUaRdhD+573X4vWw6IcjKPasi9Q== 2498 + dependencies: 2499 + type-fest "^0.20.2" 2500 + 2595 2501 globalthis@^1.0.1: 2596 - version "1.0.1" 2597 - resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz#40116f5d9c071f9e8fb0037654df1ab3a83b7ef9" 2598 - integrity sha512-mJPRTc/P39NH/iNG4mXa9aIhNymaQikTrnspeCa2ZuJ+mH2QN/rXwtX3XwKrHqWgUQFbNZKtHM105aHzJalElw== 2502 + version "1.0.2" 2503 + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz#2a235d34f4d8036219f7e34929b5de9e18166b8b" 2504 + integrity sha512-ZQnSFO1la8P7auIOQECnm0sSuoMeaSq0EEdXMBFF2QJO4uNcwbyhSgG3MruWNbFTqCLmxVwGOl7LZ9kASvHdeQ== 2599 2505 dependencies: 2600 2506 define-properties "^1.1.3" 2601 2507 ··· 2705 2597 function-bind "^1.1.1" 2706 2598 2707 2599 hosted-git-info@^2.1.4: 2708 - version "2.8.8" 2709 - resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488" 2710 - integrity sha512-f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg== 2600 + version "2.8.9" 2601 + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz#dffc0bf9a21c02209090f2aa69429e1414daf3f9" 2602 + integrity sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw== 2711 2603 2712 - hosted-git-info@^3.0.6, hosted-git-info@^3.0.7: 2604 + hosted-git-info@^3.0.8: 2713 2605 version "3.0.8" 2714 2606 resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-3.0.8.tgz#6e35d4cc87af2c5f816e4cb9ce350ba87a3f370d" 2715 2607 integrity sha512-aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw== 2716 2608 dependencies: 2717 2609 lru-cache "^6.0.0" 2718 2610 2719 - html-comment-regex@^1.1.2: 2720 - version "1.1.2" 2721 - resolved "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7" 2722 - integrity sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ== 2611 + hosted-git-info@^4.0.1: 2612 + version "4.0.2" 2613 + resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz#5e425507eede4fea846b7262f0838456c4209961" 2614 + integrity sha512-c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg== 2615 + dependencies: 2616 + lru-cache "^6.0.0" 2723 2617 2724 2618 html-encoding-sniffer@^2.0.1: 2725 2619 version "2.0.1" ··· 2835 2725 resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.8.tgz#a29da425b48806f34767a4efce397269af28432c" 2836 2726 integrity sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew== 2837 2727 2838 - ip-regex@^2.1.0: 2839 - version "2.1.0" 2840 - resolved "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9" 2841 - integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk= 2842 - 2843 2728 is-accessor-descriptor@^0.1.6: 2844 2729 version "0.1.6" 2845 2730 resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6" ··· 2867 2762 ci-info "^2.0.0" 2868 2763 2869 2764 is-core-module@^2.2.0: 2870 - version "2.2.0" 2871 - resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a" 2872 - integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ== 2765 + version "2.3.0" 2766 + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz#d341652e3408bca69c4671b79a0954a3d349f887" 2767 + integrity sha512-xSphU2KG9867tsYdLD4RWQ1VqdFl4HTO9Thf3I/3dLEfr0dbPTWKsuCKrgqMljg4nPE+Gq0VCnzT3gr0CyBmsw== 2873 2768 dependencies: 2874 2769 has "^1.0.3" 2875 2770 ··· 2906 2801 kind-of "^6.0.2" 2907 2802 2908 2803 is-docker@^2.0.0: 2909 - version "2.1.1" 2910 - resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz#4125a88e44e450d384e09047ede71adc2d144156" 2911 - integrity sha512-ZOoqiXfEwtGknTiuDEy8pN2CfE3TxMHprvNer1mXiqwkOT77Rw3YVrUQ52EqAOU3QAWDQ+bQdx7HJzrv7LS2Hw== 2804 + version "2.2.1" 2805 + resolved "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz#33eeabe23cfe86f14bde4408a02c0cfb853acdaa" 2806 + integrity sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ== 2912 2807 2913 2808 is-extendable@^0.1.0, is-extendable@^0.1.1: 2914 2809 version "0.1.1" ··· 2980 2875 integrity sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w== 2981 2876 2982 2877 is-path-inside@^3.0.2: 2983 - version "3.0.2" 2984 - resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz#f5220fc82a3e233757291dddc9c5877f2a1f3017" 2985 - integrity sha512-/2UGPSgmtqwo1ktx8NDHjuPwZWmHhO+gj0f93EkhLB5RgW9RZevWYYlIkS6zePc6U2WpOdQYIwHe9YC4DWEBVg== 2878 + version "3.0.3" 2879 + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 2880 + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 2986 2881 2987 2882 is-plain-object@^2.0.3, is-plain-object@^2.0.4: 2988 2883 version "2.0.4" ··· 2992 2887 isobject "^3.0.1" 2993 2888 2994 2889 is-potential-custom-element-name@^1.0.0: 2995 - version "1.0.0" 2996 - resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz#0c52e54bcca391bb2c494b21e8626d7336c6e397" 2997 - integrity sha1-DFLlS8yjkbssSUsh6GJtczbG45c= 2890 + version "1.0.1" 2891 + resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 2892 + integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 2998 2893 2999 2894 is-stream@^1.1.0: 3000 2895 version "1.1.0" ··· 3006 2901 resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 3007 2902 integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 3008 2903 3009 - is-svg@^4.2.1: 3010 - version "4.2.1" 3011 - resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-4.2.1.tgz#095b496e345fec9211c2a7d5d021003e040d6f81" 3012 - integrity sha512-PHx3ANecKsKNl5y5+Jvt53Y4J7MfMpbNZkv384QNiswMKAWIbvcqbPz+sYbFKJI8Xv3be01GSFniPmoaP+Ai5A== 2904 + is-svg@4.3.1: 2905 + version "4.3.1" 2906 + resolved "https://registry.yarnpkg.com/is-svg/-/is-svg-4.3.1.tgz#8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b" 2907 + integrity sha512-h2CGs+yPUyvkgTJQS9cJzo9lYK06WgRiXUqBBHtglSzVKAuH4/oWsqk7LGfbSa1hGk9QcZ0SyQtVggvBA8LZXA== 3013 2908 dependencies: 3014 - html-comment-regex "^1.1.2" 2909 + fast-xml-parser "^3.19.0" 3015 2910 3016 2911 is-typedarray@^1.0.0, is-typedarray@~1.0.0: 3017 2912 version "1.0.0" ··· 3039 2934 version "1.0.0" 3040 2935 resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" 3041 2936 integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= 3042 - 3043 - isbinaryfile@^4.0.6: 3044 - version "4.0.6" 3045 - resolved "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.6.tgz#edcb62b224e2b4710830b67498c8e4e5a4d2610b" 3046 - integrity sha512-ORrEy+SNVqUhrCaal4hA4fBzhggQQ+BaLntyPOdoEiwlKZW9BZiJXjg3RMiruE4tPEI3pyVPpySHQF/dKWperg== 3047 2937 3048 2938 isexe@^2.0.0: 3049 2939 version "2.0.0" ··· 3102 3002 dependencies: 3103 3003 html-escaper "^2.0.0" 3104 3004 istanbul-lib-report "^3.0.0" 3005 + 3006 + istextorbinary@^5.12.0: 3007 + version "5.12.0" 3008 + resolved "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-5.12.0.tgz#2f84777838668fdf524c305a2363d6057aaeec84" 3009 + integrity sha512-wLDRWD7qpNTYubk04+q3en1+XZGS4vYWK0+SxNSXJLaITMMEK+J3o/TlOMyULeH1qozVZ9uUkKcyMA8odyxz8w== 3010 + dependencies: 3011 + binaryextensions "^4.15.0" 3012 + editions "^6.1.0" 3013 + textextensions "^5.11.0" 3105 3014 3106 3015 jake@^10.6.1: 3107 3016 version "10.8.2" ··· 3486 3377 merge-stream "^2.0.0" 3487 3378 supports-color "^7.0.0" 3488 3379 3489 - jest@^26.6.3: 3380 + jest@26.6.3: 3490 3381 version "26.6.3" 3491 3382 resolved "https://registry.yarnpkg.com/jest/-/jest-26.6.3.tgz#40e8fdbe48f00dfa1f0ce8121ca74b88ac9148ef" 3492 3383 integrity sha512-lGS5PXGAzR4RF7V5+XObhqz2KZIDUA1yD0DG6pBVmy10eh0ZIXQImRuzocsI/N2XZ1GrLFwTS27In2i2jlpq1Q== ··· 3500 3391 resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 3501 3392 integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 3502 3393 3503 - js-yaml@^3.13.1, js-yaml@^3.14.1: 3394 + js-yaml@^3.13.1: 3504 3395 version "3.14.1" 3505 3396 resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 3506 3397 integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== ··· 3508 3399 argparse "^1.0.7" 3509 3400 esprima "^4.0.0" 3510 3401 3402 + js-yaml@^4.0.0: 3403 + version "4.1.0" 3404 + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 3405 + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 3406 + dependencies: 3407 + argparse "^2.0.1" 3408 + 3511 3409 jsbn@~0.1.0: 3512 3410 version "0.1.1" 3513 3411 resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513" 3514 3412 integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM= 3515 3413 3516 3414 jsdom@^16.4.0: 3517 - version "16.4.0" 3518 - resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz#36005bde2d136f73eee1a830c6d45e55408edddb" 3519 - integrity sha512-lYMm3wYdgPhrl7pDcRmvzPhhrGVBeVhPIqeHjzeiHN3DFmD1RBpbExbi8vU7BJdH8VAZYovR8DMt0PNNDM7k8w== 3415 + version "16.5.3" 3416 + resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.3.tgz#13a755b3950eb938b4482c407238ddf16f0d2136" 3417 + integrity sha512-Qj1H+PEvUsOtdPJ056ewXM4UJPCi4hhLA8wpiz9F2YvsRBhuFsXxtrIFAgGBDynQA9isAMGE91PfUYbdMPXuTA== 3520 3418 dependencies: 3521 - abab "^2.0.3" 3522 - acorn "^7.1.1" 3419 + abab "^2.0.5" 3420 + acorn "^8.1.0" 3523 3421 acorn-globals "^6.0.0" 3524 3422 cssom "^0.4.4" 3525 - cssstyle "^2.2.0" 3423 + cssstyle "^2.3.0" 3526 3424 data-urls "^2.0.0" 3527 - decimal.js "^10.2.0" 3425 + decimal.js "^10.2.1" 3528 3426 domexception "^2.0.1" 3529 - escodegen "^1.14.1" 3427 + escodegen "^2.0.0" 3530 3428 html-encoding-sniffer "^2.0.1" 3531 3429 is-potential-custom-element-name "^1.0.0" 3532 3430 nwsapi "^2.2.0" 3533 - parse5 "5.1.1" 3431 + parse5 "6.0.1" 3534 3432 request "^2.88.2" 3535 - request-promise-native "^1.0.8" 3536 - saxes "^5.0.0" 3433 + request-promise-native "^1.0.9" 3434 + saxes "^5.0.1" 3537 3435 symbol-tree "^3.2.4" 3538 - tough-cookie "^3.0.1" 3436 + tough-cookie "^4.0.0" 3539 3437 w3c-hr-time "^1.0.2" 3540 3438 w3c-xmlserializer "^2.0.0" 3541 3439 webidl-conversions "^6.1.0" 3542 3440 whatwg-encoding "^1.0.5" 3543 3441 whatwg-mimetype "^2.3.0" 3544 - whatwg-url "^8.0.0" 3545 - ws "^7.2.3" 3442 + whatwg-url "^8.5.0" 3443 + ws "^7.4.4" 3546 3444 xml-name-validator "^3.0.0" 3547 3445 3548 3446 jsesc@^2.5.1: ··· 3713 3597 dependencies: 3714 3598 p-locate "^4.1.0" 3715 3599 3600 + lodash.clonedeep@^4.5.0: 3601 + version "4.5.0" 3602 + resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 3603 + integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 3604 + 3716 3605 lodash.defaults@^4.2.0: 3717 3606 version "4.2.0" 3718 3607 resolved "https://registry.yarnpkg.com/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c" ··· 3738 3617 resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb" 3739 3618 integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs= 3740 3619 3741 - lodash.sortby@^4.7.0: 3742 - version "4.7.0" 3743 - resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438" 3744 - integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg= 3620 + lodash.memoize@4.1.2: 3621 + version "4.1.2" 3622 + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 3623 + integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4= 3624 + 3625 + lodash.truncate@^4.4.2: 3626 + version "4.4.2" 3627 + resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" 3628 + integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= 3745 3629 3746 3630 lodash.union@^4.6.0: 3747 3631 version "4.6.0" 3748 3632 resolved "https://registry.yarnpkg.com/lodash.union/-/lodash.union-4.6.0.tgz#48bb5088409f16f1821666641c44dd1aaae3cd88" 3749 3633 integrity sha1-SLtQiECfFvGCFmZkHETdGqrjzYg= 3750 3634 3751 - lodash@^4.17.10, lodash@^4.17.19, lodash@^4.17.20: 3752 - version "4.17.20" 3753 - resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" 3754 - integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== 3635 + lodash@^4.17.10, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.7.0: 3636 + version "4.17.21" 3637 + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 3638 + integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 3755 3639 3756 3640 lowercase-keys@^1.0.0, lowercase-keys@^1.0.1: 3757 3641 version "1.0.1" ··· 3833 3707 to-regex "^3.0.2" 3834 3708 3835 3709 micromatch@^4.0.2: 3836 - version "4.0.2" 3837 - resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 3838 - integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 3710 + version "4.0.4" 3711 + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 3712 + integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 3839 3713 dependencies: 3840 3714 braces "^3.0.1" 3841 - picomatch "^2.0.5" 3715 + picomatch "^2.2.3" 3842 3716 3843 - mime-db@1.45.0: 3844 - version "1.45.0" 3845 - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz#cceeda21ccd7c3a745eba2decd55d4b73e7879ea" 3846 - integrity sha512-CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w== 3717 + mime-db@1.47.0: 3718 + version "1.47.0" 3719 + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz#8cb313e59965d3c05cfbf898915a267af46a335c" 3720 + integrity sha512-QBmA/G2y+IfeS4oktet3qRZ+P5kPhCKRXxXnQEudYqUaEioAU1/Lq2us3D/t1Jfo4hE9REQPrbB7K5sOczJVIw== 3847 3721 3848 3722 mime-types@^2.1.12, mime-types@~2.1.19: 3849 - version "2.1.28" 3850 - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz#1160c4757eab2c5363888e005273ecf79d2a0ecd" 3851 - integrity sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ== 3723 + version "2.1.30" 3724 + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz#6e7be8b4c479825f85ed6326695db73f9305d62d" 3725 + integrity sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg== 3852 3726 dependencies: 3853 - mime-db "1.45.0" 3727 + mime-db "1.47.0" 3854 3728 3855 - mime@^2.4.7: 3856 - version "2.5.0" 3857 - resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.0.tgz#2b4af934401779806ee98026bb42e8c1ae1876b1" 3858 - integrity sha512-ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag== 3729 + mime@^2.5.0: 3730 + version "2.5.2" 3731 + resolved "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz#6e3dc6cc2b9510643830e5f19d5cb753da5eeabe" 3732 + integrity sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg== 3859 3733 3860 3734 mimic-fn@^2.1.0: 3861 3735 version "2.1.0" ··· 3947 3821 integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 3948 3822 3949 3823 node-notifier@^8.0.0: 3950 - version "8.0.1" 3951 - resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.1.tgz#f86e89bbc925f2b068784b31f382afdc6ca56be1" 3952 - integrity sha512-BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA== 3824 + version "8.0.2" 3825 + resolved "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz#f3167a38ef0d2c8a866a83e318c1ba0efeb702c5" 3826 + integrity sha512-oJP/9NAdd9+x2Q+rfphB2RJCHjod70RcRLjosiPMMu5gjIfwVnOUGq2nbTjTUbmy0DJ/tFIVT30+Qe3nzl4TJg== 3953 3827 dependencies: 3954 3828 growly "^1.3.0" 3955 3829 is-wsl "^2.2.0" ··· 3957 3831 shellwords "^0.1.1" 3958 3832 uuid "^8.3.0" 3959 3833 which "^2.0.2" 3834 + 3835 + node-releases@^1.1.71: 3836 + version "1.1.71" 3837 + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz#cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb" 3838 + integrity sha512-zR6HoT6LrLCRBwukmrVbHv0EpEQjksO6GmFcZQQuCAy139BEsoVKPYnf3jongYW83fAa1torLGYwxxky/p28sg== 3960 3839 3961 3840 normalize-package-data@^2.5.0: 3962 3841 version "2.5.0" ··· 3974 3843 validate-npm-package-license "^3.0.1" 3975 3844 3976 3845 normalize-package-data@^3.0.0: 3977 - version "3.0.0" 3978 - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz#1f8a7c423b3d2e85eb36985eaf81de381d01301a" 3979 - integrity sha512-6lUjEI0d3v6kFrtgA/lOx4zHCWULXsFNIjHolnZCKCTLA6m/G625cdn3O7eNmT0iD3jfo6HZ9cdImGZwf21prw== 3846 + version "3.0.2" 3847 + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.2.tgz#cae5c410ae2434f9a6c1baa65d5bc3b9366c8699" 3848 + integrity sha512-6CdZocmfGaKnIHPVFhJJZ3GuR8SsLKvDANFp47Jmy51aKIr8akjAWTSxtpI+MBgBFdSMRyo4hMpDlT6dTffgZg== 3980 3849 dependencies: 3981 - hosted-git-info "^3.0.6" 3982 - resolve "^1.17.0" 3983 - semver "^7.3.2" 3850 + hosted-git-info "^4.0.1" 3851 + resolve "^1.20.0" 3852 + semver "^7.3.4" 3984 3853 validate-npm-package-license "^3.0.1" 3985 3854 3986 3855 normalize-path@^2.1.1: ··· 4159 4028 json-parse-even-better-errors "^2.3.0" 4160 4029 lines-and-columns "^1.1.6" 4161 4030 4162 - parse5@5.1.1: 4163 - version "5.1.1" 4164 - resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" 4165 - integrity sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug== 4031 + parse5@6.0.1: 4032 + version "6.0.1" 4033 + resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 4034 + integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 4166 4035 4167 4036 pascalcase@^0.1.1: 4168 4037 version "0.1.1" ··· 4204 4073 resolved "https://registry.yarnpkg.com/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b" 4205 4074 integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns= 4206 4075 4207 - picomatch@^2.0.4, picomatch@^2.0.5: 4208 - version "2.2.2" 4209 - resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 4210 - integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 4076 + picomatch@^2.0.4, picomatch@^2.2.3: 4077 + version "2.2.3" 4078 + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz#465547f359ccc206d3c48e46a1bcb89bf7ee619d" 4079 + integrity sha512-KpELjfwcCDUb9PeigTs2mBJzXUPzAuP2oPcA989He8Rte0+YUAjw1JVedDhuTKPkHjSYzMN3npC9luThGYEKdg== 4211 4080 4212 4081 pify@^3.0.0: 4213 4082 version "3.0.0" ··· 4229 4098 find-up "^4.0.0" 4230 4099 4231 4100 plist@^3.0.1: 4232 - version "3.0.1" 4233 - resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz#a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c" 4234 - integrity sha512-GpgvHHocGRyQm74b6FWEZZVRroHKE1I0/BTjAmySaohK+cUn+hZpbqXkc3KWgW3gQYkqcQej35FohcT0FRlkRQ== 4101 + version "3.0.2" 4102 + resolved "https://registry.yarnpkg.com/plist/-/plist-3.0.2.tgz#74bbf011124b90421c22d15779cee60060ba95bc" 4103 + integrity sha512-MSrkwZBdQ6YapHy87/8hDU8MnIcyxBKjeF+McXnr5A9MtffPewTs7G3hlpodT5TacyfIyFTaJEhh3GGcmasTgQ== 4235 4104 dependencies: 4236 - base64-js "^1.2.3" 4105 + base64-js "^1.5.1" 4237 4106 xmlbuilder "^9.0.7" 4238 - xmldom "0.1.x" 4107 + xmldom "^0.5.0" 4239 4108 4240 4109 posix-character-classes@^0.1.0: 4241 4110 version "0.1.1" ··· 4283 4152 integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 4284 4153 4285 4154 prompts@^2.0.1: 4286 - version "2.4.0" 4287 - resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz#4aa5de0723a231d1ee9121c40fdf663df73f61d7" 4288 - integrity sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ== 4155 + version "2.4.1" 4156 + resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz#befd3b1195ba052f9fd2fde8a486c4e82ee77f61" 4157 + integrity sha512-EQyfIuO2hPDsX1L/blblV+H7I0knhgAd82cVneCwcdND9B8AuCDuRcBH6yIcG4dFzlOUqbazQqwGjx5xmsNLuQ== 4289 4158 dependencies: 4290 4159 kleur "^3.0.3" 4291 4160 sisteransi "^1.0.5" ··· 4295 4164 resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849" 4296 4165 integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk= 4297 4166 4298 - psl@^1.1.28: 4167 + psl@^1.1.28, psl@^1.1.33: 4299 4168 version "1.8.0" 4300 4169 resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 4301 4170 integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== ··· 4336 4205 strip-json-comments "~2.0.1" 4337 4206 4338 4207 react-is@^17.0.1: 4339 - version "17.0.1" 4340 - resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.1.tgz#5b3531bd76a645a4c9fb6e693ed36419e3301339" 4341 - integrity sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA== 4208 + version "17.0.2" 4209 + resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 4210 + integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 4342 4211 4343 4212 read-config-file@6.0.0: 4344 4213 version "6.0.0" ··· 4432 4301 integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= 4433 4302 4434 4303 repeat-element@^1.1.2: 4435 - version "1.1.3" 4436 - resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" 4437 - integrity sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g== 4304 + version "1.1.4" 4305 + resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz#be681520847ab58c7568ac75fbfad28ed42d39e9" 4306 + integrity sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ== 4438 4307 4439 4308 repeat-string@^1.6.1: 4440 4309 version "1.6.1" ··· 4448 4317 dependencies: 4449 4318 lodash "^4.17.19" 4450 4319 4451 - request-promise-native@^1.0.8: 4320 + request-promise-native@^1.0.9: 4452 4321 version "1.0.9" 4453 4322 resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.9.tgz#e407120526a5efdc9a39b28a5679bf47b9d9dc28" 4454 4323 integrity sha512-wcW+sIUiWnKgNY0dqCpOZkUbF/I+YPi+f09JZIDa39Ec+q82CpSYniDp+ISgTTbKmnpJWASeJBPZmoxH84wt3g== ··· 4520 4389 resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" 4521 4390 integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= 4522 4391 4523 - resolve@^1.10.0, resolve@^1.17.0, resolve@^1.18.1: 4392 + resolve@^1.10.0, resolve@^1.18.1, resolve@^1.20.0: 4524 4393 version "1.20.0" 4525 4394 resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 4526 4395 integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== ··· 4540 4409 resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" 4541 4410 integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== 4542 4411 4543 - rimraf@^3.0.0, rimraf@^3.0.2: 4412 + rimraf@3.0.2, rimraf@^3.0.0, rimraf@^3.0.2: 4544 4413 version "3.0.2" 4545 4414 resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 4546 4415 integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== ··· 4613 4482 resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" 4614 4483 integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== 4615 4484 4616 - saxes@^5.0.0: 4485 + saxes@^5.0.1: 4617 4486 version "5.0.1" 4618 4487 resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 4619 4488 integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== ··· 4632 4501 dependencies: 4633 4502 semver "^6.3.0" 4634 4503 4635 - "semver@2 || 3 || 4 || 5", semver@^5.4.1, semver@^5.5.0: 4504 + "semver@2 || 3 || 4 || 5", semver@^5.5.0: 4636 4505 version "5.7.1" 4637 4506 resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" 4638 4507 integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== 4508 + 4509 + semver@7.3.2: 4510 + version "7.3.2" 4511 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz#604962b052b81ed0786aae84389ffba70ffd3938" 4512 + integrity sha512-OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ== 4639 4513 4640 4514 semver@^6.0.0, semver@^6.2.0, semver@^6.3.0: 4641 4515 version "6.3.0" ··· 4648 4512 integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 4649 4513 4650 4514 semver@^7.2.1, semver@^7.3.2, semver@^7.3.4: 4651 - version "7.3.4" 4652 - resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" 4653 - integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== 4515 + version "7.3.5" 4516 + resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 4517 + integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 4654 4518 dependencies: 4655 4519 lru-cache "^6.0.0" 4656 4520 ··· 4894 4758 integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks= 4895 4759 4896 4760 string-length@^4.0.1: 4897 - version "4.0.1" 4898 - resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz#4a973bf31ef77c4edbceadd6af2611996985f8a1" 4899 - integrity sha512-PKyXUd0LK0ePjSOnWn34V2uD6acUWev9uy0Ft05k0E8xRW+SKcA0F7eMr7h5xlzfn+4O3N+55rduYyet3Jk+jw== 4761 + version "4.0.2" 4762 + resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 4763 + integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 4900 4764 dependencies: 4901 4765 char-regex "^1.0.2" 4902 4766 strip-ansi "^6.0.0" ··· 4919 4783 strip-ansi "^5.1.0" 4920 4784 4921 4785 string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0: 4922 - version "4.2.0" 4923 - resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 4924 - integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 4786 + version "4.2.2" 4787 + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 4788 + integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 4925 4789 dependencies: 4926 4790 emoji-regex "^8.0.0" 4927 4791 is-fullwidth-code-point "^3.0.0" ··· 5009 4873 has-flag "^4.0.0" 5010 4874 5011 4875 supports-hyperlinks@^2.0.0: 5012 - version "2.1.0" 5013 - resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz#f663df252af5f37c5d49bbd7eeefa9e0b9e59e47" 5014 - integrity sha512-zoE5/e+dnEijk6ASB6/qrK+oYdm2do1hjoLWrqUC/8WEIW1gbxFcKuBof7sW8ArN6e+AYvsE8HBGiVRWL/F5CA== 4876 + version "2.2.0" 4877 + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 4878 + integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 5015 4879 dependencies: 5016 4880 has-flag "^4.0.0" 5017 4881 supports-color "^7.0.0" ··· 5022 4886 integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 5023 4887 5024 4888 table@^6.0.4: 5025 - version "6.0.7" 5026 - resolved "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz#e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34" 5027 - integrity sha512-rxZevLGTUzWna/qBLObOe16kB2RTnnbhciwgPbMMlazz1yZGVEgnZK762xyVdVznhqxrfCeBMmMkgOOaPwjH7g== 4889 + version "6.6.0" 4890 + resolved "https://registry.yarnpkg.com/table/-/table-6.6.0.tgz#905654b79df98d9e9a973de1dd58682532c40e8e" 4891 + integrity sha512-iZMtp5tUvcnAdtHpZTWLPF0M7AgiQsURR2DwmxnJwSy8I3+cY+ozzVvYha3BOLG2TB+L0CqjIz+91htuj6yCXg== 5028 4892 dependencies: 5029 - ajv "^7.0.2" 5030 - lodash "^4.17.20" 4893 + ajv "^8.0.1" 4894 + lodash.clonedeep "^4.5.0" 4895 + lodash.flatten "^4.4.0" 4896 + lodash.truncate "^4.4.2" 5031 4897 slice-ansi "^4.0.0" 5032 4898 string-width "^4.2.0" 4899 + strip-ansi "^6.0.0" 5033 4900 5034 - tar-stream@^2.1.4: 4901 + tar-stream@^2.2.0: 5035 4902 version "2.2.0" 5036 4903 resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" 5037 4904 integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== ··· 5075 4936 resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 5076 4937 integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 5077 4938 4939 + textextensions@^5.11.0: 4940 + version "5.12.0" 4941 + resolved "https://registry.yarnpkg.com/textextensions/-/textextensions-5.12.0.tgz#b908120b5c1bd4bb9eba41423d75b176011ab68a" 4942 + integrity sha512-IYogUDaP65IXboCiPPC0jTLLBzYlhhw2Y4b0a2trPgbHNGGGEfuHE6tds+yDcCf4mpNDaGISFzwSSezcXt+d6w== 4943 + 5078 4944 throat@^5.0.0: 5079 4945 version "5.0.0" 5080 4946 resolved "https://registry.yarnpkg.com/throat/-/throat-5.0.0.tgz#c5199235803aad18754a667d659b5e72ce16764b" 5081 4947 integrity sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA== 5082 4948 5083 - tldts-core@^5.7.6: 5084 - version "5.7.6" 5085 - resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-5.7.6.tgz#af99b4ab79761dfa6c44d1d61a3f76bb5c3def8b" 5086 - integrity sha512-VfRarBs7nbY9Af3In4O1A3d7T6eZh+w/IjRPpBo8VgRHAo7LJ+GrzCVo1yoOPmm3tdO1vUXtwBnchWN0dpL6lQ== 4949 + tldts-core@^5.7.33: 4950 + version "5.7.33" 4951 + resolved "https://registry.yarnpkg.com/tldts-core/-/tldts-core-5.7.33.tgz#b2364f30d16e34b48961911408e9dbe3ae94ebdb" 4952 + integrity sha512-rESuFr/uhdKG8kXDsR6YBAbvV0k1lEn1ep4PKkej7ubkcWM84P7oqT+eTrr7170inds8jPTtkQBWIqDtwlIrvQ== 5087 4953 5088 4954 tldts-experimental@^5.6.21: 5089 - version "5.7.6" 5090 - resolved "https://registry.yarnpkg.com/tldts-experimental/-/tldts-experimental-5.7.6.tgz#10c255872af89ab68659c3a345c7a65015920024" 5091 - integrity sha512-FRpjSRsxsa46/PRc2erEx8B9uZQYsdBQPG/s3B7IGhWxi1VG6GOwTJWGyfFBy3LWfge7Kw3Yrh89ZS01tUKMIQ== 4955 + version "5.7.33" 4956 + resolved "https://registry.yarnpkg.com/tldts-experimental/-/tldts-experimental-5.7.33.tgz#4959da5cd345a6167c69815fb6e34471387178b9" 4957 + integrity sha512-MlImbiWIutHEAB26JM7sBZLhp0D0Lw1xw+tr382Wz5WtTQGa3zoJ8CE0r63oZq8hj/JLP4gLFlavwrkbxB5H+Q== 5092 4958 dependencies: 5093 - tldts-core "^5.7.6" 4959 + tldts-core "^5.7.33" 5094 4960 5095 4961 tmpl@1.0.x: 5096 4962 version "1.0.4" ··· 5152 5008 psl "^1.1.28" 5153 5009 punycode "^2.1.1" 5154 5010 5155 - tough-cookie@^3.0.1: 5156 - version "3.0.1" 5157 - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz#9df4f57e739c26930a018184887f4adb7dca73b2" 5158 - integrity sha512-yQyJ0u4pZsv9D4clxO69OEjLWYw+jbgspjTue4lTQZLfV0c5l1VmK2y1JK8E9ahdpltPOaAThPcp5nKPUgSnsg== 5011 + tough-cookie@^4.0.0: 5012 + version "4.0.0" 5013 + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz#d822234eeca882f991f0f908824ad2622ddbece4" 5014 + integrity sha512-tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg== 5159 5015 dependencies: 5160 - ip-regex "^2.1.0" 5161 - psl "^1.1.28" 5016 + psl "^1.1.33" 5162 5017 punycode "^2.1.1" 5018 + universalify "^0.1.2" 5163 5019 5164 5020 tr46@^2.0.2: 5165 5021 version "2.0.2" ··· 5211 5067 resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 5212 5068 integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 5213 5069 5214 - type-fest@^0.11.0: 5215 - version "0.11.0" 5216 - resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz#97abf0872310fed88a5c466b25681576145e33f1" 5217 - integrity sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ== 5218 - 5219 5070 type-fest@^0.13.1: 5220 5071 version "0.13.1" 5221 5072 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.13.1.tgz#0172cb5bce80b0bd542ea348db50c7e21834d934" ··· 5220 5081 version "0.20.2" 5221 5082 resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 5222 5083 integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 5084 + 5085 + type-fest@^0.21.3: 5086 + version "0.21.3" 5087 + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 5088 + integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 5223 5089 5224 5090 type-fest@^0.6.0: 5225 5091 version "0.6.0" ··· 5265 5121 dependencies: 5266 5122 crypto-random-string "^2.0.0" 5267 5123 5268 - universalify@^0.1.0: 5124 + universalify@^0.1.0, universalify@^0.1.2: 5269 5125 version "0.1.2" 5270 5126 resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 5271 5127 integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== ··· 5283 5139 has-value "^0.3.1" 5284 5140 isobject "^3.0.0" 5285 5141 5286 - update-notifier@^5.0.1: 5142 + update-notifier@^5.1.0: 5287 5143 version "5.1.0" 5288 5144 resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-5.1.0.tgz#4ab0d7c7f36a231dd7316cf7729313f0214d9ad9" 5289 5145 integrity sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw== ··· 5348 5204 integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg== 5349 5205 5350 5206 v8-compile-cache@^2.0.3: 5351 - version "2.2.0" 5352 - resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" 5353 - integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== 5207 + version "2.3.0" 5208 + resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 5209 + integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 5354 5210 5355 5211 v8-to-istanbul@^7.0.0: 5356 - version "7.1.0" 5357 - resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz#5b95cef45c0f83217ec79f8fc7ee1c8b486aee07" 5358 - integrity sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g== 5212 + version "7.1.2" 5213 + resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz#30898d1a7fa0c84d225a2c1434fb958f290883c1" 5214 + integrity sha512-TxNb7YEUwkLXCQYeudi6lgQ/SZrzNO4kMdlqVxaZPUIUjCv6iSSypUQX70kNBSERpQ8fk48+d61FXk+tgqcWow== 5359 5215 dependencies: 5360 5216 "@types/istanbul-lib-coverage" "^2.0.1" 5361 5217 convert-source-map "^1.6.0" ··· 5377 5233 assert-plus "^1.0.0" 5378 5234 core-util-is "1.0.2" 5379 5235 extsprintf "^1.2.0" 5236 + 5237 + version-compare@^1.0.0: 5238 + version "1.1.0" 5239 + resolved "https://registry.yarnpkg.com/version-compare/-/version-compare-1.1.0.tgz#7b3e67e7e6cec5c72d9c9e586f8854e419ade17c" 5240 + integrity sha512-zVKtPOJTC9x23lzS4+4D7J+drq80BXVYAmObnr5zqxxFVH7OffJ1lJlAS7LYsQNV56jx/wtbw0UV7XHLrvd6kQ== 5241 + 5242 + version-range@^1.0.0: 5243 + version "1.1.0" 5244 + resolved "https://registry.yarnpkg.com/version-range/-/version-range-1.1.0.tgz#1c233064202ee742afc9d56e21da3b2e15260acf" 5245 + integrity sha512-R1Ggfg2EXamrnrV3TkZ6yBNgITDbclB3viwSjbZ3+eK0VVNK4ajkYJTnDz5N0bIMYDtK9MUBvXJUnKO5RWWJ6w== 5246 + dependencies: 5247 + version-compare "^1.0.0" 5380 5248 5381 5249 w3c-hr-time@^1.0.2: 5382 5250 version "1.0.2" ··· 5433 5277 resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 5434 5278 integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 5435 5279 5436 - whatwg-url@^8.0.0: 5437 - version "8.4.0" 5438 - resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.4.0.tgz#50fb9615b05469591d2b2bd6dfaed2942ed72837" 5439 - integrity sha512-vwTUFf6V4zhcPkWp/4CQPr1TW9Ml6SF4lVyaIMBdJw5i6qUUJ1QWM4Z6YYVkfka0OUIzVo/0aNtGVGk256IKWw== 5280 + whatwg-url@^8.0.0, whatwg-url@^8.5.0: 5281 + version "8.5.0" 5282 + resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.5.0.tgz#7752b8464fc0903fec89aa9846fc9efe07351fd3" 5283 + integrity sha512-fy+R77xWv0AiqfLl4nuGUlQ3/6b5uNfQ4WAbGQVMYshCTCCPK9psC1nWh3XHuxGVCtlcDDQPQW1csmmIQo+fwg== 5440 5284 dependencies: 5441 - lodash.sortby "^4.7.0" 5285 + lodash "^4.7.0" 5442 5286 tr46 "^2.0.2" 5443 5287 webidl-conversions "^6.1.0" 5444 5288 ··· 5506 5350 signal-exit "^3.0.2" 5507 5351 typedarray-to-buffer "^3.1.5" 5508 5352 5509 - ws@^7.2.3: 5510 - version "7.4.3" 5511 - resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.3.tgz#1f9643de34a543b8edb124bdcbc457ae55a6e5cd" 5512 - integrity sha512-hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA== 5353 + ws@^7.4.4: 5354 + version "7.4.5" 5355 + resolved "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz#a484dd851e9beb6fdb420027e3885e8ce48986c1" 5356 + integrity sha512-xzyu3hFvomRfXKH8vOFMU3OguG6oOvhXMo3xsGy3xWExqaM2dxBbVxuD99O7m3ZUFMvvscsZDqxfgMaRr/Nr1g== 5513 5357 5514 5358 xdg-basedir@^4.0.0: 5515 5359 version "4.0.0" ··· 5536 5380 resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 5537 5381 integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 5538 5382 5539 - xmldom@0.1.x: 5540 - version "0.1.31" 5541 - resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz#b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff" 5542 - integrity sha512-yS2uJflVQs6n+CyjHoaBmVSqIDevTAWrzMmjG1Gc7h1qQ7uVozNhEPJAwZXWyGQ/Gafo3fCwrcaokezLPupVyQ== 5383 + xmldom@^0.5.0: 5384 + version "0.5.0" 5385 + resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz#193cb96b84aa3486127ea6272c4596354cb4962e" 5386 + integrity sha512-Foaj5FXVzgn7xFzsKeNIde9g6aFBxTPi37iwsno8QvApmtg7KYrr+OPyRHcJF7dud2a5nGRBXK3n0dL62Gf7PA== 5543 5387 5544 5388 y18n@^4.0.0: 5545 - version "4.0.1" 5546 - resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4" 5547 - integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ== 5389 + version "4.0.3" 5390 + resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz#b5f259c82cd6e336921efd7bfd8bf560de9eeedf" 5391 + integrity sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ== 5548 5392 5549 5393 y18n@^5.0.5: 5550 - version "5.0.5" 5551 - resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" 5552 - integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 5394 + version "5.0.8" 5395 + resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 5396 + integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 5553 5397 5554 5398 yallist@^4.0.0: 5555 5399 version "4.0.0" ··· 5565 5409 decamelize "^1.2.0" 5566 5410 5567 5411 yargs-parser@^20.2.2: 5568 - version "20.2.4" 5569 - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 5570 - integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 5412 + version "20.2.7" 5413 + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" 5414 + integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== 5571 5415 5572 5416 yargs@^15.4.1: 5573 5417 version "15.4.1" ··· 5607 5451 buffer-crc32 "~0.2.3" 5608 5452 fd-slicer "~1.1.0" 5609 5453 5610 - zip-stream@^4.0.4: 5611 - version "4.0.4" 5612 - resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.0.4.tgz#3a8f100b73afaa7d1ae9338d910b321dec77ff3a" 5613 - integrity sha512-a65wQ3h5gcQ/nQGWV1mSZCEzCML6EK/vyVPcrPNynySP1j3VBbQKh3nhC8CbORb+jfl2vXvh56Ul5odP1bAHqw== 5454 + zip-stream@^4.1.0: 5455 + version "4.1.0" 5456 + resolved "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz#51dd326571544e36aa3f756430b313576dc8fc79" 5457 + integrity sha512-zshzwQW7gG7hjpBlgeQP9RuyPGNxvJdzR8SUM3QhxCnLjWN2E7j3dOvpeDcQoETfHx0urRS7EtmVToql7YpU4A== 5614 5458 dependencies: 5615 5459 archiver-utils "^2.1.0" 5616 - compress-commons "^4.0.2" 5460 + compress-commons "^4.1.0" 5617 5461 readable-stream "^3.6.0"
+612 -420
pkgs/applications/networking/browsers/vieb/yarn.nix
··· 2 2 offline_cache = linkFarm "offline" packages; 3 3 packages = [ 4 4 { 5 + name = "7zip_bin___7zip_bin_5.1.1.tgz"; 6 + path = fetchurl { 7 + name = "7zip_bin___7zip_bin_5.1.1.tgz"; 8 + url = "https://registry.yarnpkg.com/7zip-bin/-/7zip-bin-5.1.1.tgz"; 9 + sha1 = "9274ec7460652f9c632c59addf24efb1684ef876"; 10 + }; 11 + } 12 + { 5 13 name = "7zip_bin___7zip_bin_5.0.3.tgz"; 6 14 path = fetchurl { 7 15 name = "7zip_bin___7zip_bin_5.0.3.tgz"; ··· 34 26 }; 35 27 } 36 28 { 37 - name = "_babel_core___core_7.12.16.tgz"; 29 + name = "_babel_compat_data___compat_data_7.14.0.tgz"; 38 30 path = fetchurl { 39 - name = "_babel_core___core_7.12.16.tgz"; 40 - url = "https://registry.yarnpkg.com/@babel/core/-/core-7.12.16.tgz"; 41 - sha1 = "8c6ba456b23b680a6493ddcfcd9d3c3ad51cab7c"; 31 + name = "_babel_compat_data___compat_data_7.14.0.tgz"; 32 + url = "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz"; 33 + sha1 = "a901128bce2ad02565df95e6ecbf195cf9465919"; 42 34 }; 43 35 } 44 36 { 45 - name = "_babel_generator___generator_7.12.15.tgz"; 37 + name = "_babel_core___core_7.14.0.tgz"; 46 38 path = fetchurl { 47 - name = "_babel_generator___generator_7.12.15.tgz"; 48 - url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.12.15.tgz"; 49 - sha1 = "4617b5d0b25cc572474cc1aafee1edeaf9b5368f"; 39 + name = "_babel_core___core_7.14.0.tgz"; 40 + url = "https://registry.yarnpkg.com/@babel/core/-/core-7.14.0.tgz"; 41 + sha1 = "47299ff3ec8d111b493f1a9d04bf88c04e728d88"; 42 + }; 43 + } 44 + { 45 + name = "_babel_generator___generator_7.14.1.tgz"; 46 + path = fetchurl { 47 + name = "_babel_generator___generator_7.14.1.tgz"; 48 + url = "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.1.tgz"; 49 + sha1 = "1f99331babd65700183628da186f36f63d615c93"; 50 + }; 51 + } 52 + { 53 + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.13.16.tgz"; 54 + path = fetchurl { 55 + name = "_babel_helper_compilation_targets___helper_compilation_targets_7.13.16.tgz"; 56 + url = "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz"; 57 + sha1 = "6e91dccf15e3f43e5556dffe32d860109887563c"; 50 58 }; 51 59 } 52 60 { ··· 82 58 }; 83 59 } 84 60 { 85 - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.16.tgz"; 61 + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.12.tgz"; 86 62 path = fetchurl { 87 - name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.12.16.tgz"; 88 - url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.16.tgz"; 89 - sha1 = "41e0916b99f8d5f43da4f05d85f4930fa3d62b22"; 63 + name = "_babel_helper_member_expression_to_functions___helper_member_expression_to_functions_7.13.12.tgz"; 64 + url = "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.13.12.tgz"; 65 + sha1 = "dfe368f26d426a07299d8d6513821768216e6d72"; 90 66 }; 91 67 } 92 68 { 93 - name = "_babel_helper_module_imports___helper_module_imports_7.12.13.tgz"; 69 + name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz"; 94 70 path = fetchurl { 95 - name = "_babel_helper_module_imports___helper_module_imports_7.12.13.tgz"; 96 - url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz"; 97 - sha1 = "ec67e4404f41750463e455cc3203f6a32e93fcb0"; 71 + name = "_babel_helper_module_imports___helper_module_imports_7.13.12.tgz"; 72 + url = "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.13.12.tgz"; 73 + sha1 = "c6a369a6f3621cb25da014078684da9196b61977"; 98 74 }; 99 75 } 100 76 { 101 - name = "_babel_helper_module_transforms___helper_module_transforms_7.12.13.tgz"; 77 + name = "_babel_helper_module_transforms___helper_module_transforms_7.14.0.tgz"; 102 78 path = fetchurl { 103 - name = "_babel_helper_module_transforms___helper_module_transforms_7.12.13.tgz"; 104 - url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.12.13.tgz"; 105 - sha1 = "01afb052dcad2044289b7b20beb3fa8bd0265bea"; 79 + name = "_babel_helper_module_transforms___helper_module_transforms_7.14.0.tgz"; 80 + url = "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz"; 81 + sha1 = "8fcf78be220156f22633ee204ea81f73f826a8ad"; 106 82 }; 107 83 } 108 84 { ··· 114 90 }; 115 91 } 116 92 { 117 - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.12.13.tgz"; 93 + name = "_babel_helper_plugin_utils___helper_plugin_utils_7.13.0.tgz"; 118 94 path = fetchurl { 119 - name = "_babel_helper_plugin_utils___helper_plugin_utils_7.12.13.tgz"; 120 - url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz"; 121 - sha1 = "174254d0f2424d8aefb4dd48057511247b0a9eeb"; 95 + name = "_babel_helper_plugin_utils___helper_plugin_utils_7.13.0.tgz"; 96 + url = "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.13.0.tgz"; 97 + sha1 = "806526ce125aed03373bc416a828321e3a6a33af"; 122 98 }; 123 99 } 124 100 { 125 - name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz"; 101 + name = "_babel_helper_replace_supers___helper_replace_supers_7.13.12.tgz"; 126 102 path = fetchurl { 127 - name = "_babel_helper_replace_supers___helper_replace_supers_7.12.13.tgz"; 128 - url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz"; 129 - sha1 = "00ec4fb6862546bd3d0aff9aac56074277173121"; 103 + name = "_babel_helper_replace_supers___helper_replace_supers_7.13.12.tgz"; 104 + url = "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz"; 105 + sha1 = "6442f4c1ad912502481a564a7386de0c77ff3804"; 130 106 }; 131 107 } 132 108 { 133 - name = "_babel_helper_simple_access___helper_simple_access_7.12.13.tgz"; 109 + name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz"; 134 110 path = fetchurl { 135 - name = "_babel_helper_simple_access___helper_simple_access_7.12.13.tgz"; 136 - url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz"; 137 - sha1 = "8478bcc5cacf6aa1672b251c1d2dde5ccd61a6c4"; 111 + name = "_babel_helper_simple_access___helper_simple_access_7.13.12.tgz"; 112 + url = "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.13.12.tgz"; 113 + sha1 = "dd6c538afb61819d205a012c31792a39c7a5eaf6"; 138 114 }; 139 115 } 140 116 { ··· 146 122 }; 147 123 } 148 124 { 149 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; 125 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.0.tgz"; 150 126 path = fetchurl { 151 - name = "_babel_helper_validator_identifier___helper_validator_identifier_7.12.11.tgz"; 152 - url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 153 - sha1 = "c9a1f021917dcb5ccf0d4e453e399022981fc9ed"; 127 + name = "_babel_helper_validator_identifier___helper_validator_identifier_7.14.0.tgz"; 128 + url = "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz"; 129 + sha1 = "d26cad8a47c65286b15df1547319a5d0bcf27288"; 154 130 }; 155 131 } 156 132 { 157 - name = "_babel_helpers___helpers_7.12.13.tgz"; 133 + name = "_babel_helper_validator_option___helper_validator_option_7.12.17.tgz"; 158 134 path = fetchurl { 159 - name = "_babel_helpers___helpers_7.12.13.tgz"; 160 - url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.12.13.tgz"; 161 - sha1 = "3c75e993632e4dadc0274eae219c73eb7645ba47"; 135 + name = "_babel_helper_validator_option___helper_validator_option_7.12.17.tgz"; 136 + url = "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz"; 137 + sha1 = "d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"; 162 138 }; 163 139 } 164 140 { 165 - name = "_babel_highlight___highlight_7.12.13.tgz"; 141 + name = "_babel_helpers___helpers_7.14.0.tgz"; 166 142 path = fetchurl { 167 - name = "_babel_highlight___highlight_7.12.13.tgz"; 168 - url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.12.13.tgz"; 169 - sha1 = "8ab538393e00370b26271b01fa08f7f27f2e795c"; 143 + name = "_babel_helpers___helpers_7.14.0.tgz"; 144 + url = "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz"; 145 + sha1 = "ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62"; 170 146 }; 171 147 } 172 148 { 173 - name = "_babel_parser___parser_7.12.16.tgz"; 149 + name = "_babel_highlight___highlight_7.14.0.tgz"; 174 150 path = fetchurl { 175 - name = "_babel_parser___parser_7.12.16.tgz"; 176 - url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.12.16.tgz"; 177 - sha1 = "cc31257419d2c3189d394081635703f549fc1ed4"; 151 + name = "_babel_highlight___highlight_7.14.0.tgz"; 152 + url = "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz"; 153 + sha1 = "3197e375711ef6bf834e67d0daec88e4f46113cf"; 154 + }; 155 + } 156 + { 157 + name = "_babel_parser___parser_7.14.1.tgz"; 158 + path = fetchurl { 159 + name = "_babel_parser___parser_7.14.1.tgz"; 160 + url = "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.1.tgz"; 161 + sha1 = "1bd644b5db3f5797c4479d89ec1817fe02b84c47"; 178 162 }; 179 163 } 180 164 { ··· 290 258 }; 291 259 } 292 260 { 293 - name = "_babel_traverse___traverse_7.12.13.tgz"; 261 + name = "_babel_traverse___traverse_7.14.0.tgz"; 294 262 path = fetchurl { 295 - name = "_babel_traverse___traverse_7.12.13.tgz"; 296 - url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.12.13.tgz"; 297 - sha1 = "689f0e4b4c08587ad26622832632735fb8c4e0c0"; 263 + name = "_babel_traverse___traverse_7.14.0.tgz"; 264 + url = "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz"; 265 + sha1 = "cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef"; 298 266 }; 299 267 } 300 268 { 301 - name = "_babel_types___types_7.12.13.tgz"; 269 + name = "_babel_types___types_7.14.1.tgz"; 302 270 path = fetchurl { 303 - name = "_babel_types___types_7.12.13.tgz"; 304 - url = "https://registry.yarnpkg.com/@babel/types/-/types-7.12.13.tgz"; 305 - sha1 = "8be1aa8f2c876da11a9cf650c0ecf656913ad611"; 271 + name = "_babel_types___types_7.14.1.tgz"; 272 + url = "https://registry.yarnpkg.com/@babel/types/-/types-7.14.1.tgz"; 273 + sha1 = "095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db"; 306 274 }; 307 275 } 308 276 { ··· 314 282 }; 315 283 } 316 284 { 317 - name = "_cliqz_adblocker_content___adblocker_content_1.20.0.tgz"; 285 + name = "_cliqz_adblocker_content___adblocker_content_1.20.5.tgz"; 318 286 path = fetchurl { 319 - name = "_cliqz_adblocker_content___adblocker_content_1.20.0.tgz"; 320 - url = "https://registry.yarnpkg.com/@cliqz/adblocker-content/-/adblocker-content-1.20.0.tgz"; 321 - sha1 = "fcfa2845a577ba8d9af282afbae2fc437b3f1c70"; 287 + name = "_cliqz_adblocker_content___adblocker_content_1.20.5.tgz"; 288 + url = "https://registry.yarnpkg.com/@cliqz/adblocker-content/-/adblocker-content-1.20.5.tgz"; 289 + sha1 = "eed410510574cfc83b9b391b95026c880e5a3521"; 322 290 }; 323 291 } 324 292 { 325 - name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.20.0.tgz"; 293 + name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.20.5.tgz"; 326 294 path = fetchurl { 327 - name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.20.0.tgz"; 328 - url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.20.0.tgz"; 329 - sha1 = "997b694fbb1b1206e04b1fd570690234cc7ef630"; 295 + name = "_cliqz_adblocker_electron_preload___adblocker_electron_preload_1.20.5.tgz"; 296 + url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron-preload/-/adblocker-electron-preload-1.20.5.tgz"; 297 + sha1 = "0d69ee6cf4ed6865bc4a125d95e10d5b132d5680"; 330 298 }; 331 299 } 332 300 { 333 - name = "_cliqz_adblocker_electron___adblocker_electron_1.20.0.tgz"; 301 + name = "_cliqz_adblocker_electron___adblocker_electron_1.20.4.tgz"; 334 302 path = fetchurl { 335 - name = "_cliqz_adblocker_electron___adblocker_electron_1.20.0.tgz"; 336 - url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.20.0.tgz"; 337 - sha1 = "bacfb9feaf1d3dab339b992e3defa111a4b5ed3c"; 303 + name = "_cliqz_adblocker_electron___adblocker_electron_1.20.4.tgz"; 304 + url = "https://registry.yarnpkg.com/@cliqz/adblocker-electron/-/adblocker-electron-1.20.4.tgz"; 305 + sha1 = "6d7de52cff013ef3cd0f4a7850ebfc31f6240a46"; 338 306 }; 339 307 } 340 308 { 341 - name = "_cliqz_adblocker_extended_selectors___adblocker_extended_selectors_1.20.0.tgz"; 309 + name = "_cliqz_adblocker_extended_selectors___adblocker_extended_selectors_1.20.5.tgz"; 342 310 path = fetchurl { 343 - name = "_cliqz_adblocker_extended_selectors___adblocker_extended_selectors_1.20.0.tgz"; 344 - url = "https://registry.yarnpkg.com/@cliqz/adblocker-extended-selectors/-/adblocker-extended-selectors-1.20.0.tgz"; 345 - sha1 = "95ede657b670f627b39f92d85a97093cecee6ffe"; 311 + name = "_cliqz_adblocker_extended_selectors___adblocker_extended_selectors_1.20.5.tgz"; 312 + url = "https://registry.yarnpkg.com/@cliqz/adblocker-extended-selectors/-/adblocker-extended-selectors-1.20.5.tgz"; 313 + sha1 = "5d55aa72281db6f57657f9bffad5bc24fc93087a"; 346 314 }; 347 315 } 348 316 { 349 - name = "_cliqz_adblocker___adblocker_1.20.0.tgz"; 317 + name = "_cliqz_adblocker___adblocker_1.20.5.tgz"; 350 318 path = fetchurl { 351 - name = "_cliqz_adblocker___adblocker_1.20.0.tgz"; 352 - url = "https://registry.yarnpkg.com/@cliqz/adblocker/-/adblocker-1.20.0.tgz"; 353 - sha1 = "514746e9ee72fcd886f1e2e1aaf13b28fc63f232"; 319 + name = "_cliqz_adblocker___adblocker_1.20.5.tgz"; 320 + url = "https://registry.yarnpkg.com/@cliqz/adblocker/-/adblocker-1.20.5.tgz"; 321 + sha1 = "04edcb9a52897d371a41a2351aa492186019b92a"; 354 322 }; 355 323 } 356 324 { ··· 386 354 }; 387 355 } 388 356 { 389 - name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 357 + name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; 390 358 path = fetchurl { 391 - name = "_eslint_eslintrc___eslintrc_0.3.0.tgz"; 392 - url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.3.0.tgz"; 393 - sha1 = "d736d6963d7003b6514e6324bec9c602ac340318"; 359 + name = "_eslint_eslintrc___eslintrc_0.4.0.tgz"; 360 + url = "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.0.tgz"; 361 + sha1 = "99cc0a0584d72f1df38b900fb062ba995f395547"; 394 362 }; 395 363 } 396 364 { ··· 506 474 }; 507 475 } 508 476 { 477 + name = "_mdn_browser_compat_data___browser_compat_data_2.0.7.tgz"; 478 + path = fetchurl { 479 + name = "_mdn_browser_compat_data___browser_compat_data_2.0.7.tgz"; 480 + url = "https://registry.yarnpkg.com/@mdn/browser-compat-data/-/browser-compat-data-2.0.7.tgz"; 481 + sha1 = "72ec37b9c1e00ce0b4e0309d753be18e2da12ee3"; 482 + }; 483 + } 484 + { 509 485 name = "_remusao_guess_url_type___guess_url_type_1.2.1.tgz"; 510 486 path = fetchurl { 511 487 name = "_remusao_guess_url_type___guess_url_type_1.2.1.tgz"; ··· 570 530 }; 571 531 } 572 532 { 573 - name = "_sinonjs_commons___commons_1.8.2.tgz"; 533 + name = "_sinonjs_commons___commons_1.8.3.tgz"; 574 534 path = fetchurl { 575 - name = "_sinonjs_commons___commons_1.8.2.tgz"; 576 - url = "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.2.tgz"; 577 - sha1 = "858f5c4b48d80778fde4b9d541f27edc0d56488b"; 535 + name = "_sinonjs_commons___commons_1.8.3.tgz"; 536 + url = "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz"; 537 + sha1 = "3802ddd21a50a949b6721ddd72da36e67e7f1b2d"; 578 538 }; 579 539 } 580 540 { ··· 594 554 }; 595 555 } 596 556 { 597 - name = "_types_babel__core___babel__core_7.1.12.tgz"; 557 + name = "_types_babel__core___babel__core_7.1.14.tgz"; 598 558 path = fetchurl { 599 - name = "_types_babel__core___babel__core_7.1.12.tgz"; 600 - url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.12.tgz"; 601 - sha1 = "4d8e9e51eb265552a7e4f1ff2219ab6133bdfb2d"; 559 + name = "_types_babel__core___babel__core_7.1.14.tgz"; 560 + url = "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.14.tgz"; 561 + sha1 = "faaeefc4185ec71c389f4501ee5ec84b170cc402"; 602 562 }; 603 563 } 604 564 { ··· 618 578 }; 619 579 } 620 580 { 621 - name = "_types_babel__traverse___babel__traverse_7.11.0.tgz"; 581 + name = "_types_babel__traverse___babel__traverse_7.11.1.tgz"; 622 582 path = fetchurl { 623 - name = "_types_babel__traverse___babel__traverse_7.11.0.tgz"; 624 - url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.0.tgz"; 625 - sha1 = "b9a1efa635201ba9bc850323a8793ee2d36c04a0"; 583 + name = "_types_babel__traverse___babel__traverse_7.11.1.tgz"; 584 + url = "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.11.1.tgz"; 585 + sha1 = "654f6c4f67568e24c23b367e947098c6206fa639"; 626 586 }; 627 587 } 628 588 { 629 - name = "_types_chrome___chrome_0.0.128.tgz"; 589 + name = "_types_chrome___chrome_0.0.136.tgz"; 630 590 path = fetchurl { 631 - name = "_types_chrome___chrome_0.0.128.tgz"; 632 - url = "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.128.tgz"; 633 - sha1 = "5dbd8b2539a367353fbe4386f119b510105f8b6a"; 591 + name = "_types_chrome___chrome_0.0.136.tgz"; 592 + url = "https://registry.yarnpkg.com/@types/chrome/-/chrome-0.0.136.tgz"; 593 + sha1 = "7c011b9f997b0156f25a140188a0c5689d3f368f"; 634 594 }; 635 595 } 636 596 { ··· 642 602 }; 643 603 } 644 604 { 645 - name = "_types_filesystem___filesystem_0.0.29.tgz"; 605 + name = "_types_filesystem___filesystem_0.0.30.tgz"; 646 606 path = fetchurl { 647 - name = "_types_filesystem___filesystem_0.0.29.tgz"; 648 - url = "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.29.tgz"; 649 - sha1 = "ee3748eb5be140dcf980c3bd35f11aec5f7a3748"; 607 + name = "_types_filesystem___filesystem_0.0.30.tgz"; 608 + url = "https://registry.yarnpkg.com/@types/filesystem/-/filesystem-0.0.30.tgz"; 609 + sha1 = "a7373a2edf34d13e298baf7ee1101f738b2efb7e"; 650 610 }; 651 611 } 652 612 { 653 - name = "_types_filewriter___filewriter_0.0.28.tgz"; 613 + name = "_types_filewriter___filewriter_0.0.29.tgz"; 654 614 path = fetchurl { 655 - name = "_types_filewriter___filewriter_0.0.28.tgz"; 656 - url = "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.28.tgz"; 657 - sha1 = "c054e8af4d9dd75db4e63abc76f885168714d4b3"; 615 + name = "_types_filewriter___filewriter_0.0.29.tgz"; 616 + url = "https://registry.yarnpkg.com/@types/filewriter/-/filewriter-0.0.29.tgz"; 617 + sha1 = "a48795ecadf957f6c0d10e0c34af86c098fa5bee"; 658 618 }; 659 619 } 660 620 { ··· 666 626 }; 667 627 } 668 628 { 669 - name = "_types_fs_extra___fs_extra_9.0.7.tgz"; 629 + name = "_types_fs_extra___fs_extra_9.0.11.tgz"; 670 630 path = fetchurl { 671 - name = "_types_fs_extra___fs_extra_9.0.7.tgz"; 672 - url = "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.7.tgz"; 673 - sha1 = "a9ef2ffdab043def080c5bec94c03402f793577f"; 631 + name = "_types_fs_extra___fs_extra_9.0.11.tgz"; 632 + url = "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-9.0.11.tgz"; 633 + sha1 = "8cc99e103499eab9f347dbc6ca4e99fb8d2c2b87"; 674 634 }; 675 635 } 676 636 { ··· 722 682 }; 723 683 } 724 684 { 725 - name = "_types_minimatch___minimatch_3.0.3.tgz"; 685 + name = "_types_minimatch___minimatch_3.0.4.tgz"; 726 686 path = fetchurl { 727 - name = "_types_minimatch___minimatch_3.0.3.tgz"; 728 - url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz"; 729 - sha1 = "3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d"; 687 + name = "_types_minimatch___minimatch_3.0.4.tgz"; 688 + url = "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.4.tgz"; 689 + sha1 = "f0ec25dbf2f0e4b18647313ac031134ca5b24b21"; 730 690 }; 731 691 } 732 692 { 733 - name = "_types_node___node_14.14.27.tgz"; 693 + name = "_types_node___node_15.0.2.tgz"; 734 694 path = fetchurl { 735 - name = "_types_node___node_14.14.27.tgz"; 736 - url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.27.tgz"; 737 - sha1 = "c7127f8da0498993e13b1a42faf1303d3110d2f2"; 695 + name = "_types_node___node_15.0.2.tgz"; 696 + url = "https://registry.yarnpkg.com/@types/node/-/node-15.0.2.tgz"; 697 + sha1 = "51e9c0920d1b45936ea04341aa3e2e58d339fb67"; 738 698 }; 739 699 } 740 700 { 741 - name = "_types_node___node_12.20.0.tgz"; 701 + name = "_types_node___node_14.14.44.tgz"; 742 702 path = fetchurl { 743 - name = "_types_node___node_12.20.0.tgz"; 744 - url = "https://registry.yarnpkg.com/@types/node/-/node-12.20.0.tgz"; 745 - sha1 = "692dfdecd6c97f5380c42dd50f19261f9f604deb"; 703 + name = "_types_node___node_14.14.44.tgz"; 704 + url = "https://registry.yarnpkg.com/@types/node/-/node-14.14.44.tgz"; 705 + sha1 = "df7503e6002847b834371c004b372529f3f85215"; 746 706 }; 747 707 } 748 708 { ··· 762 722 }; 763 723 } 764 724 { 765 - name = "_types_prettier___prettier_2.2.1.tgz"; 725 + name = "_types_prettier___prettier_2.2.3.tgz"; 766 726 path = fetchurl { 767 - name = "_types_prettier___prettier_2.2.1.tgz"; 768 - url = "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.1.tgz"; 769 - sha1 = "374e31645d58cb18a07b3ecd8e9dede4deb2cccd"; 727 + name = "_types_prettier___prettier_2.2.3.tgz"; 728 + url = "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.2.3.tgz"; 729 + sha1 = "ef65165aea2924c9359205bf748865b8881753c0"; 770 730 }; 771 731 } 772 732 { ··· 842 802 }; 843 803 } 844 804 { 805 + name = "acorn___acorn_8.2.4.tgz"; 806 + path = fetchurl { 807 + name = "acorn___acorn_8.2.4.tgz"; 808 + url = "https://registry.yarnpkg.com/acorn/-/acorn-8.2.4.tgz"; 809 + sha1 = "caba24b08185c3b56e3168e97d15ed17f4d31fd0"; 810 + }; 811 + } 812 + { 845 813 name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; 846 814 path = fetchurl { 847 815 name = "ajv_keywords___ajv_keywords_3.5.2.tgz"; ··· 866 818 }; 867 819 } 868 820 { 869 - name = "ajv___ajv_7.1.0.tgz"; 821 + name = "ajv___ajv_8.2.0.tgz"; 870 822 path = fetchurl { 871 - name = "ajv___ajv_7.1.0.tgz"; 872 - url = "https://registry.yarnpkg.com/ajv/-/ajv-7.1.0.tgz"; 873 - sha1 = "f982ea7933dc7f1012eae9eec5a86687d805421b"; 823 + name = "ajv___ajv_8.2.0.tgz"; 824 + url = "https://registry.yarnpkg.com/ajv/-/ajv-8.2.0.tgz"; 825 + sha1 = "c89d3380a784ce81b2085f48811c4c101df4c602"; 874 826 }; 875 827 } 876 828 { ··· 890 842 }; 891 843 } 892 844 { 893 - name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 845 + name = "ansi_escapes___ansi_escapes_4.3.2.tgz"; 894 846 path = fetchurl { 895 - name = "ansi_escapes___ansi_escapes_4.3.1.tgz"; 896 - url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.1.tgz"; 897 - sha1 = "a5c47cc43181f1f38ffd7076837700d395522a61"; 847 + name = "ansi_escapes___ansi_escapes_4.3.2.tgz"; 848 + url = "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz"; 849 + sha1 = "6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e"; 898 850 }; 899 851 } 900 852 { ··· 946 898 }; 947 899 } 948 900 { 949 - name = "anymatch___anymatch_3.1.1.tgz"; 901 + name = "anymatch___anymatch_3.1.2.tgz"; 950 902 path = fetchurl { 951 - name = "anymatch___anymatch_3.1.1.tgz"; 952 - url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.1.tgz"; 953 - sha1 = "c55ecf02185e2469259399310c173ce31233b142"; 903 + name = "anymatch___anymatch_3.1.2.tgz"; 904 + url = "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz"; 905 + sha1 = "c0557c096af32f106198f4f4e2a383537e378716"; 954 906 }; 955 907 } 956 908 { ··· 962 914 }; 963 915 } 964 916 { 965 - name = "app_builder_lib___app_builder_lib_22.10.4.tgz"; 917 + name = "app_builder_lib___app_builder_lib_22.10.5.tgz"; 966 918 path = fetchurl { 967 - name = "app_builder_lib___app_builder_lib_22.10.4.tgz"; 968 - url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.10.4.tgz"; 969 - sha1 = "3fc70821b76beb9c8279d9de22960ef2174da153"; 919 + name = "app_builder_lib___app_builder_lib_22.10.5.tgz"; 920 + url = "https://registry.yarnpkg.com/app-builder-lib/-/app-builder-lib-22.10.5.tgz"; 921 + sha1 = "24a88581c891e5b187a0d569aa44e7c4a0dc8de2"; 970 922 }; 971 923 } 972 924 { ··· 978 930 }; 979 931 } 980 932 { 981 - name = "archiver___archiver_5.2.0.tgz"; 933 + name = "archiver___archiver_5.3.0.tgz"; 982 934 path = fetchurl { 983 - name = "archiver___archiver_5.2.0.tgz"; 984 - url = "https://registry.yarnpkg.com/archiver/-/archiver-5.2.0.tgz"; 985 - sha1 = "25aa1b3d9febf7aec5b0f296e77e69960c26db94"; 935 + name = "archiver___archiver_5.3.0.tgz"; 936 + url = "https://registry.yarnpkg.com/archiver/-/archiver-5.3.0.tgz"; 937 + sha1 = "dd3e097624481741df626267564f7dd8640a45ba"; 986 938 }; 987 939 } 988 940 { ··· 991 943 name = "argparse___argparse_1.0.10.tgz"; 992 944 url = "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz"; 993 945 sha1 = "bcd6791ea5ae09725e17e5ad988134cd40b3d911"; 946 + }; 947 + } 948 + { 949 + name = "argparse___argparse_2.0.1.tgz"; 950 + path = fetchurl { 951 + name = "argparse___argparse_2.0.1.tgz"; 952 + url = "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz"; 953 + sha1 = "246f50f3ca78a3240f6c997e8a9bd1eac49e4b38"; 994 954 }; 995 955 } 996 956 { ··· 1063 1007 name = "assign_symbols___assign_symbols_1.0.0.tgz"; 1064 1008 url = "https://registry.yarnpkg.com/assign-symbols/-/assign-symbols-1.0.0.tgz"; 1065 1009 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1010 + }; 1011 + } 1012 + { 1013 + name = "ast_metadata_inferer___ast_metadata_inferer_0.4.0.tgz"; 1014 + path = fetchurl { 1015 + name = "ast_metadata_inferer___ast_metadata_inferer_0.4.0.tgz"; 1016 + url = "https://registry.yarnpkg.com/ast-metadata-inferer/-/ast-metadata-inferer-0.4.0.tgz"; 1017 + sha1 = "6be85ceeffcf267bd79db8e1ae731da44880b45f"; 1066 1018 }; 1067 1019 } 1068 1020 { ··· 1186 1122 }; 1187 1123 } 1188 1124 { 1189 - name = "balanced_match___balanced_match_1.0.0.tgz"; 1125 + name = "balanced_match___balanced_match_1.0.2.tgz"; 1190 1126 path = fetchurl { 1191 - name = "balanced_match___balanced_match_1.0.0.tgz"; 1192 - url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz"; 1193 - sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767"; 1127 + name = "balanced_match___balanced_match_1.0.2.tgz"; 1128 + url = "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz"; 1129 + sha1 = "e83e3a7e3f300b34cb9d87f615fa0cbf357690ee"; 1194 1130 }; 1195 1131 } 1196 1132 { ··· 1218 1154 }; 1219 1155 } 1220 1156 { 1157 + name = "binaryextensions___binaryextensions_4.15.0.tgz"; 1158 + path = fetchurl { 1159 + name = "binaryextensions___binaryextensions_4.15.0.tgz"; 1160 + url = "https://registry.yarnpkg.com/binaryextensions/-/binaryextensions-4.15.0.tgz"; 1161 + sha1 = "c63a502e0078ff1b0e9b00a9f74d3c2b0f8bd32e"; 1162 + }; 1163 + } 1164 + { 1221 1165 name = "bl___bl_4.1.0.tgz"; 1222 1166 path = fetchurl { 1223 1167 name = "bl___bl_4.1.0.tgz"; ··· 1250 1178 }; 1251 1179 } 1252 1180 { 1253 - name = "boolean___boolean_3.0.2.tgz"; 1181 + name = "boolean___boolean_3.0.3.tgz"; 1254 1182 path = fetchurl { 1255 - name = "boolean___boolean_3.0.2.tgz"; 1256 - url = "https://registry.yarnpkg.com/boolean/-/boolean-3.0.2.tgz"; 1257 - sha1 = "df1baa18b6a2b0e70840475e1d93ec8fe75b2570"; 1183 + name = "boolean___boolean_3.0.3.tgz"; 1184 + url = "https://registry.yarnpkg.com/boolean/-/boolean-3.0.3.tgz"; 1185 + sha1 = "0fee0c9813b66bef25a8a6a904bb46736d05f024"; 1258 1186 }; 1259 1187 } 1260 1188 { 1261 - name = "boxen___boxen_5.0.0.tgz"; 1189 + name = "boxen___boxen_5.0.1.tgz"; 1262 1190 path = fetchurl { 1263 - name = "boxen___boxen_5.0.0.tgz"; 1264 - url = "https://registry.yarnpkg.com/boxen/-/boxen-5.0.0.tgz"; 1265 - sha1 = "64fe9b16066af815f51057adcc800c3730120854"; 1191 + name = "boxen___boxen_5.0.1.tgz"; 1192 + url = "https://registry.yarnpkg.com/boxen/-/boxen-5.0.1.tgz"; 1193 + sha1 = "657528bdd3f59a772b8279b831f27ec2c744664b"; 1266 1194 }; 1267 1195 } 1268 1196 { ··· 1295 1223 name = "browser_process_hrtime___browser_process_hrtime_1.0.0.tgz"; 1296 1224 url = "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz"; 1297 1225 sha1 = "3c9b4b7d782c8121e56f10106d84c0d0ffc94626"; 1226 + }; 1227 + } 1228 + { 1229 + name = "browserslist___browserslist_4.16.6.tgz"; 1230 + path = fetchurl { 1231 + name = "browserslist___browserslist_4.16.6.tgz"; 1232 + url = "https://registry.yarnpkg.com/browserslist/-/browserslist-4.16.6.tgz"; 1233 + sha1 = "d7901277a5a88e554ed305b183ec9b0c08f66fa2"; 1298 1234 }; 1299 1235 } 1300 1236 { ··· 1354 1274 }; 1355 1275 } 1356 1276 { 1357 - name = "builder_util___builder_util_22.10.4.tgz"; 1277 + name = "builder_util___builder_util_22.10.5.tgz"; 1358 1278 path = fetchurl { 1359 - name = "builder_util___builder_util_22.10.4.tgz"; 1360 - url = "https://registry.yarnpkg.com/builder-util/-/builder-util-22.10.4.tgz"; 1361 - sha1 = "54e8be83dd0dec28073d866ff087cee8e7ce6cf6"; 1279 + name = "builder_util___builder_util_22.10.5.tgz"; 1280 + url = "https://registry.yarnpkg.com/builder-util/-/builder-util-22.10.5.tgz"; 1281 + sha1 = "8d0b04a3be6acc74938679aa90dcb3181b1ae86b"; 1362 1282 }; 1363 1283 } 1364 1284 { ··· 1402 1322 }; 1403 1323 } 1404 1324 { 1325 + name = "caniuse_lite___caniuse_lite_1.0.30001223.tgz"; 1326 + path = fetchurl { 1327 + name = "caniuse_lite___caniuse_lite_1.0.30001223.tgz"; 1328 + url = "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001223.tgz"; 1329 + sha1 = "39b49ff0bfb3ee3587000d2f66c47addc6e14443"; 1330 + }; 1331 + } 1332 + { 1405 1333 name = "capture_exit___capture_exit_2.0.0.tgz"; 1406 1334 path = fetchurl { 1407 1335 name = "capture_exit___capture_exit_2.0.0.tgz"; ··· 1434 1346 }; 1435 1347 } 1436 1348 { 1437 - name = "chalk___chalk_4.1.0.tgz"; 1349 + name = "chalk___chalk_4.1.1.tgz"; 1438 1350 path = fetchurl { 1439 - name = "chalk___chalk_4.1.0.tgz"; 1440 - url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz"; 1441 - sha1 = "4e14870a618d9e2edd97dd8345fd9d9dc315646a"; 1351 + name = "chalk___chalk_4.1.1.tgz"; 1352 + url = "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz"; 1353 + sha1 = "c80b3fab28bf6371e6863325eee67e618b77e6ad"; 1442 1354 }; 1443 1355 } 1444 1356 { ··· 1578 1490 }; 1579 1491 } 1580 1492 { 1493 + name = "colorette___colorette_1.2.2.tgz"; 1494 + path = fetchurl { 1495 + name = "colorette___colorette_1.2.2.tgz"; 1496 + url = "https://registry.yarnpkg.com/colorette/-/colorette-1.2.2.tgz"; 1497 + sha1 = "cbcc79d5e99caea2dbf10eb3a26fd8b3e6acfa94"; 1498 + }; 1499 + } 1500 + { 1581 1501 name = "colors___colors_1.0.3.tgz"; 1582 1502 path = fetchurl { 1583 1503 name = "colors___colors_1.0.3.tgz"; ··· 1626 1530 }; 1627 1531 } 1628 1532 { 1629 - name = "compress_commons___compress_commons_4.0.2.tgz"; 1533 + name = "compress_commons___compress_commons_4.1.0.tgz"; 1630 1534 path = fetchurl { 1631 - name = "compress_commons___compress_commons_4.0.2.tgz"; 1632 - url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.0.2.tgz"; 1633 - sha1 = "d6896be386e52f37610cef9e6fa5defc58c31bd7"; 1535 + name = "compress_commons___compress_commons_4.1.0.tgz"; 1536 + url = "https://registry.yarnpkg.com/compress-commons/-/compress-commons-4.1.0.tgz"; 1537 + sha1 = "25ec7a4528852ccd1d441a7d4353cd0ece11371b"; 1634 1538 }; 1635 1539 } 1636 1540 { ··· 1682 1586 }; 1683 1587 } 1684 1588 { 1685 - name = "core_js___core_js_3.8.3.tgz"; 1589 + name = "core_js___core_js_3.11.3.tgz"; 1686 1590 path = fetchurl { 1687 - name = "core_js___core_js_3.8.3.tgz"; 1688 - url = "https://registry.yarnpkg.com/core-js/-/core-js-3.8.3.tgz"; 1689 - sha1 = "c21906e1f14f3689f93abcc6e26883550dd92dd0"; 1591 + name = "core_js___core_js_3.11.3.tgz"; 1592 + url = "https://registry.yarnpkg.com/core-js/-/core-js-3.11.3.tgz"; 1593 + sha1 = "2835b1f4d10f6d0400bf820cfe6fe64ad067dd3f"; 1690 1594 }; 1691 1595 } 1692 1596 { ··· 1767 1671 name = "cssstyle___cssstyle_2.3.0.tgz"; 1768 1672 url = "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz"; 1769 1673 sha1 = "ff665a0ddbdc31864b09647f34163443d90b0852"; 1770 - }; 1771 - } 1772 - { 1773 - name = "darkreader___darkreader_4.9.27.tgz"; 1774 - path = fetchurl { 1775 - name = "darkreader___darkreader_4.9.27.tgz"; 1776 - url = "https://registry.yarnpkg.com/darkreader/-/darkreader-4.9.27.tgz"; 1777 - sha1 = "69b641d6a3c22b07fb0424406dfd9a3661b37197"; 1778 1674 }; 1779 1675 } 1780 1676 { ··· 1922 1834 }; 1923 1835 } 1924 1836 { 1925 - name = "detect_node___detect_node_2.0.4.tgz"; 1837 + name = "detect_node___detect_node_2.0.5.tgz"; 1926 1838 path = fetchurl { 1927 - name = "detect_node___detect_node_2.0.4.tgz"; 1928 - url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.4.tgz"; 1929 - sha1 = "014ee8f8f669c5c58023da64b8179c083a28c46c"; 1839 + name = "detect_node___detect_node_2.0.5.tgz"; 1840 + url = "https://registry.yarnpkg.com/detect-node/-/detect-node-2.0.5.tgz"; 1841 + sha1 = "9d270aa7eaa5af0b72c4c9d9b814e7f4ce738b79"; 1930 1842 }; 1931 1843 } 1932 1844 { ··· 1946 1858 }; 1947 1859 } 1948 1860 { 1949 - name = "dmg_builder___dmg_builder_22.10.4.tgz"; 1861 + name = "dmg_builder___dmg_builder_22.10.5.tgz"; 1950 1862 path = fetchurl { 1951 - name = "dmg_builder___dmg_builder_22.10.4.tgz"; 1952 - url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.10.4.tgz"; 1953 - sha1 = "8dab30754346791eb728091359558fd4a8dbb45f"; 1863 + name = "dmg_builder___dmg_builder_22.10.5.tgz"; 1864 + url = "https://registry.yarnpkg.com/dmg-builder/-/dmg-builder-22.10.5.tgz"; 1865 + sha1 = "65a33c106ead5a350c7de8997c546559bd6e0e7c"; 1954 1866 }; 1955 1867 } 1956 1868 { ··· 1994 1906 }; 1995 1907 } 1996 1908 { 1997 - name = "dotenv___dotenv_8.2.0.tgz"; 1909 + name = "dotenv___dotenv_8.6.0.tgz"; 1998 1910 path = fetchurl { 1999 - name = "dotenv___dotenv_8.2.0.tgz"; 2000 - url = "https://registry.yarnpkg.com/dotenv/-/dotenv-8.2.0.tgz"; 2001 - sha1 = "97e619259ada750eea3e4ea3e26bceea5424b16a"; 1911 + name = "dotenv___dotenv_8.6.0.tgz"; 1912 + url = "https://registry.yarnpkg.com/dotenv/-/dotenv-8.6.0.tgz"; 1913 + sha1 = "061af664d19f7f4d8fc6e4ff9b584ce237adcb8b"; 2002 1914 }; 2003 1915 } 2004 1916 { ··· 2018 1930 }; 2019 1931 } 2020 1932 { 1933 + name = "editions___editions_6.1.0.tgz"; 1934 + path = fetchurl { 1935 + name = "editions___editions_6.1.0.tgz"; 1936 + url = "https://registry.yarnpkg.com/editions/-/editions-6.1.0.tgz"; 1937 + sha1 = "ba6c6cf9f4bb571d9e53ea34e771a602e5a66549"; 1938 + }; 1939 + } 1940 + { 2021 1941 name = "ejs___ejs_3.1.6.tgz"; 2022 1942 path = fetchurl { 2023 1943 name = "ejs___ejs_3.1.6.tgz"; ··· 2034 1938 }; 2035 1939 } 2036 1940 { 2037 - name = "electron_builder___electron_builder_22.10.4.tgz"; 1941 + name = "electron_builder___electron_builder_22.10.5.tgz"; 2038 1942 path = fetchurl { 2039 - name = "electron_builder___electron_builder_22.10.4.tgz"; 2040 - url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.10.4.tgz"; 2041 - sha1 = "e1f400cf41ebb632fbf79aa86c5e0ab1ea1ed7e5"; 1943 + name = "electron_builder___electron_builder_22.10.5.tgz"; 1944 + url = "https://registry.yarnpkg.com/electron-builder/-/electron-builder-22.10.5.tgz"; 1945 + sha1 = "03b156b93e6012609027c3aaa69201a3ad21e454"; 2042 1946 }; 2043 1947 } 2044 1948 { 2045 - name = "electron_publish___electron_publish_22.10.4.tgz"; 1949 + name = "electron_publish___electron_publish_22.10.5.tgz"; 2046 1950 path = fetchurl { 2047 - name = "electron_publish___electron_publish_22.10.4.tgz"; 2048 - url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.10.4.tgz"; 2049 - sha1 = "944b00aa6a7746c31ce900ffd8106d243326dca8"; 1951 + name = "electron_publish___electron_publish_22.10.5.tgz"; 1952 + url = "https://registry.yarnpkg.com/electron-publish/-/electron-publish-22.10.5.tgz"; 1953 + sha1 = "9cbe46266b6c79d8c6e99840755682e2262d3543"; 2050 1954 }; 2051 1955 } 2052 1956 { 2053 - name = "electron___electron_11.2.3.tgz"; 1957 + name = "electron_to_chromium___electron_to_chromium_1.3.727.tgz"; 2054 1958 path = fetchurl { 2055 - name = "electron___electron_11.2.3.tgz"; 2056 - url = "https://registry.yarnpkg.com/electron/-/electron-11.2.3.tgz"; 2057 - sha1 = "8ad1d9858436cfca0e2e5ea7fea326794ae58ebb"; 1959 + name = "electron_to_chromium___electron_to_chromium_1.3.727.tgz"; 1960 + url = "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.727.tgz"; 1961 + sha1 = "857e310ca00f0b75da4e1db6ff0e073cc4a91ddf"; 1962 + }; 1963 + } 1964 + { 1965 + name = "electron___electron_12.0.5.tgz"; 1966 + path = fetchurl { 1967 + name = "electron___electron_12.0.5.tgz"; 1968 + url = "https://registry.yarnpkg.com/electron/-/electron-12.0.5.tgz"; 1969 + sha1 = "005cf4375d2ee4563f5e75dc4da4ef871846a8be"; 2058 1970 }; 2059 1971 } 2060 1972 { ··· 2114 2010 }; 2115 2011 } 2116 2012 { 2117 - name = "env_paths___env_paths_2.2.0.tgz"; 2013 + name = "env_paths___env_paths_2.2.1.tgz"; 2118 2014 path = fetchurl { 2119 - name = "env_paths___env_paths_2.2.0.tgz"; 2120 - url = "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz"; 2121 - sha1 = "cdca557dc009152917d6166e2febe1f039685e43"; 2015 + name = "env_paths___env_paths_2.2.1.tgz"; 2016 + url = "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.1.tgz"; 2017 + sha1 = "420399d416ce1fbe9bc0a07c62fa68d67fd0f8f2"; 2018 + }; 2019 + } 2020 + { 2021 + name = "errlop___errlop_4.1.0.tgz"; 2022 + path = fetchurl { 2023 + name = "errlop___errlop_4.1.0.tgz"; 2024 + url = "https://registry.yarnpkg.com/errlop/-/errlop-4.1.0.tgz"; 2025 + sha1 = "8e7b8f4f1bf0a6feafce4d14f0c0cf4bf5ef036b"; 2122 2026 }; 2123 2027 } 2124 2028 { ··· 2186 2074 }; 2187 2075 } 2188 2076 { 2189 - name = "escodegen___escodegen_1.14.3.tgz"; 2077 + name = "escodegen___escodegen_2.0.0.tgz"; 2190 2078 path = fetchurl { 2191 - name = "escodegen___escodegen_1.14.3.tgz"; 2192 - url = "https://registry.yarnpkg.com/escodegen/-/escodegen-1.14.3.tgz"; 2193 - sha1 = "4e7b81fba61581dc97582ed78cab7f0e8d63f503"; 2079 + name = "escodegen___escodegen_2.0.0.tgz"; 2080 + url = "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz"; 2081 + sha1 = "5e32b12833e8aa8fa35e1bf0befa89380484c7dd"; 2082 + }; 2083 + } 2084 + { 2085 + name = "eslint_plugin_compat___eslint_plugin_compat_3.9.0.tgz"; 2086 + path = fetchurl { 2087 + name = "eslint_plugin_compat___eslint_plugin_compat_3.9.0.tgz"; 2088 + url = "https://registry.yarnpkg.com/eslint-plugin-compat/-/eslint-plugin-compat-3.9.0.tgz"; 2089 + sha1 = "a7a224e09b102b58e7f7dff52c936428ff3e0186"; 2194 2090 }; 2195 2091 } 2196 2092 { ··· 2226 2106 }; 2227 2107 } 2228 2108 { 2229 - name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz"; 2109 + name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; 2230 2110 path = fetchurl { 2231 - name = "eslint_visitor_keys___eslint_visitor_keys_2.0.0.tgz"; 2232 - url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.0.0.tgz"; 2233 - sha1 = "21fdc8fbcd9c795cc0321f0563702095751511a8"; 2111 + name = "eslint_visitor_keys___eslint_visitor_keys_2.1.0.tgz"; 2112 + url = "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz"; 2113 + sha1 = "f65328259305927392c938ed44eb0a5c9b2bd303"; 2234 2114 }; 2235 2115 } 2236 2116 { 2237 - name = "eslint___eslint_7.20.0.tgz"; 2117 + name = "eslint___eslint_7.25.0.tgz"; 2238 2118 path = fetchurl { 2239 - name = "eslint___eslint_7.20.0.tgz"; 2240 - url = "https://registry.yarnpkg.com/eslint/-/eslint-7.20.0.tgz"; 2241 - sha1 = "db07c4ca4eda2e2316e7aa57ac7fc91ec550bdc7"; 2119 + name = "eslint___eslint_7.25.0.tgz"; 2120 + url = "https://registry.yarnpkg.com/eslint/-/eslint-7.25.0.tgz"; 2121 + sha1 = "1309e4404d94e676e3e831b3a3ad2b050031eb67"; 2242 2122 }; 2243 2123 } 2244 2124 { ··· 2298 2178 }; 2299 2179 } 2300 2180 { 2301 - name = "exec_sh___exec_sh_0.3.4.tgz"; 2181 + name = "exec_sh___exec_sh_0.3.6.tgz"; 2302 2182 path = fetchurl { 2303 - name = "exec_sh___exec_sh_0.3.4.tgz"; 2304 - url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.4.tgz"; 2305 - sha1 = "3a018ceb526cc6f6df2bb504b2bfe8e3a4934ec5"; 2183 + name = "exec_sh___exec_sh_0.3.6.tgz"; 2184 + url = "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.6.tgz"; 2185 + sha1 = "ff264f9e325519a60cb5e273692943483cca63bc"; 2306 2186 }; 2307 2187 } 2308 2188 { ··· 2434 2314 }; 2435 2315 } 2436 2316 { 2317 + name = "fast_xml_parser___fast_xml_parser_3.19.0.tgz"; 2318 + path = fetchurl { 2319 + name = "fast_xml_parser___fast_xml_parser_3.19.0.tgz"; 2320 + url = "https://registry.yarnpkg.com/fast-xml-parser/-/fast-xml-parser-3.19.0.tgz"; 2321 + sha1 = "cb637ec3f3999f51406dd8ff0e6fc4d83e520d01"; 2322 + }; 2323 + } 2324 + { 2437 2325 name = "fb_watchman___fb_watchman_2.0.1.tgz"; 2438 2326 path = fetchurl { 2439 2327 name = "fb_watchman___fb_watchman_2.0.1.tgz"; ··· 2458 2330 }; 2459 2331 } 2460 2332 { 2461 - name = "file_entry_cache___file_entry_cache_6.0.0.tgz"; 2333 + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 2462 2334 path = fetchurl { 2463 - name = "file_entry_cache___file_entry_cache_6.0.0.tgz"; 2464 - url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; 2465 - sha1 = "7921a89c391c6d93efec2169ac6bf300c527ea0a"; 2335 + name = "file_entry_cache___file_entry_cache_6.0.1.tgz"; 2336 + url = "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz"; 2337 + sha1 = "211b2dd9659cb0394b073e7323ac3c933d522027"; 2466 2338 }; 2467 2339 } 2468 2340 { ··· 2658 2530 }; 2659 2531 } 2660 2532 { 2661 - name = "glob_parent___glob_parent_5.1.1.tgz"; 2533 + name = "glob_parent___glob_parent_5.1.2.tgz"; 2662 2534 path = fetchurl { 2663 - name = "glob_parent___glob_parent_5.1.1.tgz"; 2664 - url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.1.tgz"; 2665 - sha1 = "b6c1ef417c4e5663ea498f1c45afac6916bbc229"; 2535 + name = "glob_parent___glob_parent_5.1.2.tgz"; 2536 + url = "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz"; 2537 + sha1 = "869832c58034fe68a4093c17dc15e8340d8401c4"; 2666 2538 }; 2667 2539 } 2668 2540 { ··· 2674 2546 }; 2675 2547 } 2676 2548 { 2677 - name = "global_agent___global_agent_2.1.12.tgz"; 2549 + name = "global_agent___global_agent_2.2.0.tgz"; 2678 2550 path = fetchurl { 2679 - name = "global_agent___global_agent_2.1.12.tgz"; 2680 - url = "https://registry.yarnpkg.com/global-agent/-/global-agent-2.1.12.tgz"; 2681 - sha1 = "e4ae3812b731a9e81cbf825f9377ef450a8e4195"; 2551 + name = "global_agent___global_agent_2.2.0.tgz"; 2552 + url = "https://registry.yarnpkg.com/global-agent/-/global-agent-2.2.0.tgz"; 2553 + sha1 = "566331b0646e6bf79429a16877685c4a1fbf76dc"; 2682 2554 }; 2683 2555 } 2684 2556 { ··· 2714 2586 }; 2715 2587 } 2716 2588 { 2717 - name = "globalthis___globalthis_1.0.1.tgz"; 2589 + name = "globals___globals_13.8.0.tgz"; 2718 2590 path = fetchurl { 2719 - name = "globalthis___globalthis_1.0.1.tgz"; 2720 - url = "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.1.tgz"; 2721 - sha1 = "40116f5d9c071f9e8fb0037654df1ab3a83b7ef9"; 2591 + name = "globals___globals_13.8.0.tgz"; 2592 + url = "https://registry.yarnpkg.com/globals/-/globals-13.8.0.tgz"; 2593 + sha1 = "3e20f504810ce87a8d72e55aecf8435b50f4c1b3"; 2594 + }; 2595 + } 2596 + { 2597 + name = "globalthis___globalthis_1.0.2.tgz"; 2598 + path = fetchurl { 2599 + name = "globalthis___globalthis_1.0.2.tgz"; 2600 + url = "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.2.tgz"; 2601 + sha1 = "2a235d34f4d8036219f7e34929b5de9e18166b8b"; 2722 2602 }; 2723 2603 } 2724 2604 { ··· 2842 2706 }; 2843 2707 } 2844 2708 { 2845 - name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 2709 + name = "hosted_git_info___hosted_git_info_2.8.9.tgz"; 2846 2710 path = fetchurl { 2847 - name = "hosted_git_info___hosted_git_info_2.8.8.tgz"; 2848 - url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.8.tgz"; 2849 - sha1 = "7539bd4bc1e0e0a895815a2e0262420b12858488"; 2711 + name = "hosted_git_info___hosted_git_info_2.8.9.tgz"; 2712 + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.8.9.tgz"; 2713 + sha1 = "dffc0bf9a21c02209090f2aa69429e1414daf3f9"; 2850 2714 }; 2851 2715 } 2852 2716 { ··· 2858 2722 }; 2859 2723 } 2860 2724 { 2861 - name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; 2725 + name = "hosted_git_info___hosted_git_info_4.0.2.tgz"; 2862 2726 path = fetchurl { 2863 - name = "html_comment_regex___html_comment_regex_1.1.2.tgz"; 2864 - url = "https://registry.yarnpkg.com/html-comment-regex/-/html-comment-regex-1.1.2.tgz"; 2865 - sha1 = "97d4688aeb5c81886a364faa0cad1dda14d433a7"; 2727 + name = "hosted_git_info___hosted_git_info_4.0.2.tgz"; 2728 + url = "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-4.0.2.tgz"; 2729 + sha1 = "5e425507eede4fea846b7262f0838456c4209961"; 2866 2730 }; 2867 2731 } 2868 2732 { ··· 3010 2874 }; 3011 2875 } 3012 2876 { 3013 - name = "ip_regex___ip_regex_2.1.0.tgz"; 3014 - path = fetchurl { 3015 - name = "ip_regex___ip_regex_2.1.0.tgz"; 3016 - url = "https://registry.yarnpkg.com/ip-regex/-/ip-regex-2.1.0.tgz"; 3017 - sha1 = "fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"; 3018 - }; 3019 - } 3020 - { 3021 2877 name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; 3022 2878 path = fetchurl { 3023 2879 name = "is_accessor_descriptor___is_accessor_descriptor_0.1.6.tgz"; ··· 3050 2922 }; 3051 2923 } 3052 2924 { 3053 - name = "is_core_module___is_core_module_2.2.0.tgz"; 2925 + name = "is_core_module___is_core_module_2.3.0.tgz"; 3054 2926 path = fetchurl { 3055 - name = "is_core_module___is_core_module_2.2.0.tgz"; 3056 - url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz"; 3057 - sha1 = "97037ef3d52224d85163f5597b2b63d9afed981a"; 2927 + name = "is_core_module___is_core_module_2.3.0.tgz"; 2928 + url = "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.3.0.tgz"; 2929 + sha1 = "d341652e3408bca69c4671b79a0954a3d349f887"; 3058 2930 }; 3059 2931 } 3060 2932 { ··· 3090 2962 }; 3091 2963 } 3092 2964 { 3093 - name = "is_docker___is_docker_2.1.1.tgz"; 2965 + name = "is_docker___is_docker_2.2.1.tgz"; 3094 2966 path = fetchurl { 3095 - name = "is_docker___is_docker_2.1.1.tgz"; 3096 - url = "https://registry.yarnpkg.com/is-docker/-/is-docker-2.1.1.tgz"; 3097 - sha1 = "4125a88e44e450d384e09047ede71adc2d144156"; 2967 + name = "is_docker___is_docker_2.2.1.tgz"; 2968 + url = "https://registry.yarnpkg.com/is-docker/-/is-docker-2.2.1.tgz"; 2969 + sha1 = "33eeabe23cfe86f14bde4408a02c0cfb853acdaa"; 3098 2970 }; 3099 2971 } 3100 2972 { ··· 3194 3066 }; 3195 3067 } 3196 3068 { 3197 - name = "is_path_inside___is_path_inside_3.0.2.tgz"; 3069 + name = "is_path_inside___is_path_inside_3.0.3.tgz"; 3198 3070 path = fetchurl { 3199 - name = "is_path_inside___is_path_inside_3.0.2.tgz"; 3200 - url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.2.tgz"; 3201 - sha1 = "f5220fc82a3e233757291dddc9c5877f2a1f3017"; 3071 + name = "is_path_inside___is_path_inside_3.0.3.tgz"; 3072 + url = "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz"; 3073 + sha1 = "d231362e53a07ff2b0e0ea7fed049161ffd16283"; 3202 3074 }; 3203 3075 } 3204 3076 { ··· 3210 3082 }; 3211 3083 } 3212 3084 { 3213 - name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.0.tgz"; 3085 + name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.1.tgz"; 3214 3086 path = fetchurl { 3215 - name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.0.tgz"; 3216 - url = "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.0.tgz"; 3217 - sha1 = "0c52e54bcca391bb2c494b21e8626d7336c6e397"; 3087 + name = "is_potential_custom_element_name___is_potential_custom_element_name_1.0.1.tgz"; 3088 + url = "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz"; 3089 + sha1 = "171ed6f19e3ac554394edf78caa05784a45bebb5"; 3218 3090 }; 3219 3091 } 3220 3092 { ··· 3234 3106 }; 3235 3107 } 3236 3108 { 3237 - name = "is_svg___is_svg_4.2.1.tgz"; 3109 + name = "is_svg___is_svg_4.3.1.tgz"; 3238 3110 path = fetchurl { 3239 - name = "is_svg___is_svg_4.2.1.tgz"; 3240 - url = "https://registry.yarnpkg.com/is-svg/-/is-svg-4.2.1.tgz"; 3241 - sha1 = "095b496e345fec9211c2a7d5d021003e040d6f81"; 3111 + name = "is_svg___is_svg_4.3.1.tgz"; 3112 + url = "https://registry.yarnpkg.com/is-svg/-/is-svg-4.3.1.tgz"; 3113 + sha1 = "8c63ec8c67c8c7f0a8de0a71c8c7d58eccf4406b"; 3242 3114 }; 3243 3115 } 3244 3116 { ··· 3279 3151 name = "isarray___isarray_1.0.0.tgz"; 3280 3152 url = "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz"; 3281 3153 sha1 = "bb935d48582cba168c06834957a54a3e07124f11"; 3282 - }; 3283 - } 3284 - { 3285 - name = "isbinaryfile___isbinaryfile_4.0.6.tgz"; 3286 - path = fetchurl { 3287 - name = "isbinaryfile___isbinaryfile_4.0.6.tgz"; 3288 - url = "https://registry.yarnpkg.com/isbinaryfile/-/isbinaryfile-4.0.6.tgz"; 3289 - sha1 = "edcb62b224e2b4710830b67498c8e4e5a4d2610b"; 3290 3154 }; 3291 3155 } 3292 3156 { ··· 3351 3231 name = "istanbul_reports___istanbul_reports_3.0.2.tgz"; 3352 3232 url = "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.2.tgz"; 3353 3233 sha1 = "d593210e5000683750cb09fc0644e4b6e27fd53b"; 3234 + }; 3235 + } 3236 + { 3237 + name = "istextorbinary___istextorbinary_5.12.0.tgz"; 3238 + path = fetchurl { 3239 + name = "istextorbinary___istextorbinary_5.12.0.tgz"; 3240 + url = "https://registry.yarnpkg.com/istextorbinary/-/istextorbinary-5.12.0.tgz"; 3241 + sha1 = "2f84777838668fdf524c305a2363d6057aaeec84"; 3354 3242 }; 3355 3243 } 3356 3244 { ··· 3610 3482 }; 3611 3483 } 3612 3484 { 3485 + name = "js_yaml___js_yaml_4.1.0.tgz"; 3486 + path = fetchurl { 3487 + name = "js_yaml___js_yaml_4.1.0.tgz"; 3488 + url = "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz"; 3489 + sha1 = "c1fb65f8f5017901cdd2c951864ba18458a10602"; 3490 + }; 3491 + } 3492 + { 3613 3493 name = "jsbn___jsbn_0.1.1.tgz"; 3614 3494 path = fetchurl { 3615 3495 name = "jsbn___jsbn_0.1.1.tgz"; ··· 3626 3490 }; 3627 3491 } 3628 3492 { 3629 - name = "jsdom___jsdom_16.4.0.tgz"; 3493 + name = "jsdom___jsdom_16.5.3.tgz"; 3630 3494 path = fetchurl { 3631 - name = "jsdom___jsdom_16.4.0.tgz"; 3632 - url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.4.0.tgz"; 3633 - sha1 = "36005bde2d136f73eee1a830c6d45e55408edddb"; 3495 + name = "jsdom___jsdom_16.5.3.tgz"; 3496 + url = "https://registry.yarnpkg.com/jsdom/-/jsdom-16.5.3.tgz"; 3497 + sha1 = "13a755b3950eb938b4482c407238ddf16f0d2136"; 3634 3498 }; 3635 3499 } 3636 3500 { ··· 3842 3706 }; 3843 3707 } 3844 3708 { 3709 + name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz"; 3710 + path = fetchurl { 3711 + name = "lodash.clonedeep___lodash.clonedeep_4.5.0.tgz"; 3712 + url = "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz"; 3713 + sha1 = "e23f3f9c4f8fbdde872529c1071857a086e5ccef"; 3714 + }; 3715 + } 3716 + { 3845 3717 name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; 3846 3718 path = fetchurl { 3847 3719 name = "lodash.defaults___lodash.defaults_4.2.0.tgz"; ··· 3882 3738 }; 3883 3739 } 3884 3740 { 3885 - name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; 3741 + name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; 3886 3742 path = fetchurl { 3887 - name = "lodash.sortby___lodash.sortby_4.7.0.tgz"; 3888 - url = "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; 3889 - sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; 3743 + name = "lodash.memoize___lodash.memoize_4.1.2.tgz"; 3744 + url = "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; 3745 + sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; 3746 + }; 3747 + } 3748 + { 3749 + name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; 3750 + path = fetchurl { 3751 + name = "lodash.truncate___lodash.truncate_4.4.2.tgz"; 3752 + url = "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 3753 + sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193"; 3890 3754 }; 3891 3755 } 3892 3756 { ··· 3906 3754 }; 3907 3755 } 3908 3756 { 3909 - name = "lodash___lodash_4.17.20.tgz"; 3757 + name = "lodash___lodash_4.17.21.tgz"; 3910 3758 path = fetchurl { 3911 - name = "lodash___lodash_4.17.20.tgz"; 3912 - url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz"; 3913 - sha1 = "b44a9b6297bcb698f1c51a3545a2b3b368d59c52"; 3759 + name = "lodash___lodash_4.17.21.tgz"; 3760 + url = "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz"; 3761 + sha1 = "679591c564c3bffaae8454cf0b3df370c3d6911c"; 3914 3762 }; 3915 3763 } 3916 3764 { ··· 3994 3842 }; 3995 3843 } 3996 3844 { 3997 - name = "micromatch___micromatch_4.0.2.tgz"; 3845 + name = "micromatch___micromatch_4.0.4.tgz"; 3998 3846 path = fetchurl { 3999 - name = "micromatch___micromatch_4.0.2.tgz"; 4000 - url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.2.tgz"; 4001 - sha1 = "4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259"; 3847 + name = "micromatch___micromatch_4.0.4.tgz"; 3848 + url = "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz"; 3849 + sha1 = "896d519dfe9db25fce94ceb7a500919bf881ebf9"; 4002 3850 }; 4003 3851 } 4004 3852 { 4005 - name = "mime_db___mime_db_1.45.0.tgz"; 3853 + name = "mime_db___mime_db_1.47.0.tgz"; 4006 3854 path = fetchurl { 4007 - name = "mime_db___mime_db_1.45.0.tgz"; 4008 - url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.45.0.tgz"; 4009 - sha1 = "cceeda21ccd7c3a745eba2decd55d4b73e7879ea"; 3855 + name = "mime_db___mime_db_1.47.0.tgz"; 3856 + url = "https://registry.yarnpkg.com/mime-db/-/mime-db-1.47.0.tgz"; 3857 + sha1 = "8cb313e59965d3c05cfbf898915a267af46a335c"; 4010 3858 }; 4011 3859 } 4012 3860 { 4013 - name = "mime_types___mime_types_2.1.28.tgz"; 3861 + name = "mime_types___mime_types_2.1.30.tgz"; 4014 3862 path = fetchurl { 4015 - name = "mime_types___mime_types_2.1.28.tgz"; 4016 - url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.28.tgz"; 4017 - sha1 = "1160c4757eab2c5363888e005273ecf79d2a0ecd"; 3863 + name = "mime_types___mime_types_2.1.30.tgz"; 3864 + url = "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.30.tgz"; 3865 + sha1 = "6e7be8b4c479825f85ed6326695db73f9305d62d"; 4018 3866 }; 4019 3867 } 4020 3868 { 4021 - name = "mime___mime_2.5.0.tgz"; 3869 + name = "mime___mime_2.5.2.tgz"; 4022 3870 path = fetchurl { 4023 - name = "mime___mime_2.5.0.tgz"; 4024 - url = "https://registry.yarnpkg.com/mime/-/mime-2.5.0.tgz"; 4025 - sha1 = "2b4af934401779806ee98026bb42e8c1ae1876b1"; 3871 + name = "mime___mime_2.5.2.tgz"; 3872 + url = "https://registry.yarnpkg.com/mime/-/mime-2.5.2.tgz"; 3873 + sha1 = "6e3dc6cc2b9510643830e5f19d5cb753da5eeabe"; 4026 3874 }; 4027 3875 } 4028 3876 { ··· 4138 3986 }; 4139 3987 } 4140 3988 { 4141 - name = "node_notifier___node_notifier_8.0.1.tgz"; 3989 + name = "node_notifier___node_notifier_8.0.2.tgz"; 4142 3990 path = fetchurl { 4143 - name = "node_notifier___node_notifier_8.0.1.tgz"; 4144 - url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.1.tgz"; 4145 - sha1 = "f86e89bbc925f2b068784b31f382afdc6ca56be1"; 3991 + name = "node_notifier___node_notifier_8.0.2.tgz"; 3992 + url = "https://registry.yarnpkg.com/node-notifier/-/node-notifier-8.0.2.tgz"; 3993 + sha1 = "f3167a38ef0d2c8a866a83e318c1ba0efeb702c5"; 3994 + }; 3995 + } 3996 + { 3997 + name = "node_releases___node_releases_1.1.71.tgz"; 3998 + path = fetchurl { 3999 + name = "node_releases___node_releases_1.1.71.tgz"; 4000 + url = "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.71.tgz"; 4001 + sha1 = "cb1334b179896b1c89ecfdd4b725fb7bbdfc7dbb"; 4146 4002 }; 4147 4003 } 4148 4004 { ··· 4162 4002 }; 4163 4003 } 4164 4004 { 4165 - name = "normalize_package_data___normalize_package_data_3.0.0.tgz"; 4005 + name = "normalize_package_data___normalize_package_data_3.0.2.tgz"; 4166 4006 path = fetchurl { 4167 - name = "normalize_package_data___normalize_package_data_3.0.0.tgz"; 4168 - url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.0.tgz"; 4169 - sha1 = "1f8a7c423b3d2e85eb36985eaf81de381d01301a"; 4007 + name = "normalize_package_data___normalize_package_data_3.0.2.tgz"; 4008 + url = "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-3.0.2.tgz"; 4009 + sha1 = "cae5c410ae2434f9a6c1baa65d5bc3b9366c8699"; 4170 4010 }; 4171 4011 } 4172 4012 { ··· 4370 4210 }; 4371 4211 } 4372 4212 { 4373 - name = "parse5___parse5_5.1.1.tgz"; 4213 + name = "parse5___parse5_6.0.1.tgz"; 4374 4214 path = fetchurl { 4375 - name = "parse5___parse5_5.1.1.tgz"; 4376 - url = "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz"; 4377 - sha1 = "f68e4e5ba1852ac2cadc00f4555fff6c2abb6178"; 4215 + name = "parse5___parse5_6.0.1.tgz"; 4216 + url = "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz"; 4217 + sha1 = "e1a1c085c569b3dc08321184f19a39cc27f7c30b"; 4378 4218 }; 4379 4219 } 4380 4220 { ··· 4442 4282 }; 4443 4283 } 4444 4284 { 4445 - name = "picomatch___picomatch_2.2.2.tgz"; 4285 + name = "picomatch___picomatch_2.2.3.tgz"; 4446 4286 path = fetchurl { 4447 - name = "picomatch___picomatch_2.2.2.tgz"; 4448 - url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.2.tgz"; 4449 - sha1 = "21f333e9b6b8eaff02468f5146ea406d345f4dad"; 4287 + name = "picomatch___picomatch_2.2.3.tgz"; 4288 + url = "https://registry.yarnpkg.com/picomatch/-/picomatch-2.2.3.tgz"; 4289 + sha1 = "465547f359ccc206d3c48e46a1bcb89bf7ee619d"; 4450 4290 }; 4451 4291 } 4452 4292 { ··· 4474 4314 }; 4475 4315 } 4476 4316 { 4477 - name = "plist___plist_3.0.1.tgz"; 4317 + name = "plist___plist_3.0.2.tgz"; 4478 4318 path = fetchurl { 4479 - name = "plist___plist_3.0.1.tgz"; 4480 - url = "https://registry.yarnpkg.com/plist/-/plist-3.0.1.tgz"; 4481 - sha1 = "a9b931d17c304e8912ef0ba3bdd6182baf2e1f8c"; 4319 + name = "plist___plist_3.0.2.tgz"; 4320 + url = "https://registry.yarnpkg.com/plist/-/plist-3.0.2.tgz"; 4321 + sha1 = "74bbf011124b90421c22d15779cee60060ba95bc"; 4482 4322 }; 4483 4323 } 4484 4324 { ··· 4546 4386 }; 4547 4387 } 4548 4388 { 4549 - name = "prompts___prompts_2.4.0.tgz"; 4389 + name = "prompts___prompts_2.4.1.tgz"; 4550 4390 path = fetchurl { 4551 - name = "prompts___prompts_2.4.0.tgz"; 4552 - url = "https://registry.yarnpkg.com/prompts/-/prompts-2.4.0.tgz"; 4553 - sha1 = "4aa5de0723a231d1ee9121c40fdf663df73f61d7"; 4391 + name = "prompts___prompts_2.4.1.tgz"; 4392 + url = "https://registry.yarnpkg.com/prompts/-/prompts-2.4.1.tgz"; 4393 + sha1 = "befd3b1195ba052f9fd2fde8a486c4e82ee77f61"; 4554 4394 }; 4555 4395 } 4556 4396 { ··· 4610 4450 }; 4611 4451 } 4612 4452 { 4613 - name = "react_is___react_is_17.0.1.tgz"; 4453 + name = "react_is___react_is_17.0.2.tgz"; 4614 4454 path = fetchurl { 4615 - name = "react_is___react_is_17.0.1.tgz"; 4616 - url = "https://registry.yarnpkg.com/react-is/-/react-is-17.0.1.tgz"; 4617 - sha1 = "5b3531bd76a645a4c9fb6e693ed36419e3301339"; 4455 + name = "react_is___react_is_17.0.2.tgz"; 4456 + url = "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz"; 4457 + sha1 = "e691d4a8e9c789365655539ab372762b0efb54f0"; 4618 4458 }; 4619 4459 } 4620 4460 { ··· 4706 4546 }; 4707 4547 } 4708 4548 { 4709 - name = "repeat_element___repeat_element_1.1.3.tgz"; 4549 + name = "repeat_element___repeat_element_1.1.4.tgz"; 4710 4550 path = fetchurl { 4711 - name = "repeat_element___repeat_element_1.1.3.tgz"; 4712 - url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz"; 4713 - sha1 = "782e0d825c0c5a3bb39731f84efee6b742e6b1ce"; 4551 + name = "repeat_element___repeat_element_1.1.4.tgz"; 4552 + url = "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.4.tgz"; 4553 + sha1 = "be681520847ab58c7568ac75fbfad28ed42d39e9"; 4714 4554 }; 4715 4555 } 4716 4556 { ··· 4938 4778 }; 4939 4779 } 4940 4780 { 4781 + name = "semver___semver_7.3.2.tgz"; 4782 + path = fetchurl { 4783 + name = "semver___semver_7.3.2.tgz"; 4784 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.2.tgz"; 4785 + sha1 = "604962b052b81ed0786aae84389ffba70ffd3938"; 4786 + }; 4787 + } 4788 + { 4941 4789 name = "semver___semver_6.3.0.tgz"; 4942 4790 path = fetchurl { 4943 4791 name = "semver___semver_6.3.0.tgz"; ··· 4954 4786 }; 4955 4787 } 4956 4788 { 4957 - name = "semver___semver_7.3.4.tgz"; 4789 + name = "semver___semver_7.3.5.tgz"; 4958 4790 path = fetchurl { 4959 - name = "semver___semver_7.3.4.tgz"; 4960 - url = "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz"; 4961 - sha1 = "27aaa7d2e4ca76452f98d3add093a72c943edc97"; 4791 + name = "semver___semver_7.3.5.tgz"; 4792 + url = "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz"; 4793 + sha1 = "0b621c879348d8998e4b0e4be94b3f12e6018ef7"; 4962 4794 }; 4963 4795 } 4964 4796 { ··· 5242 5074 }; 5243 5075 } 5244 5076 { 5245 - name = "string_length___string_length_4.0.1.tgz"; 5077 + name = "string_length___string_length_4.0.2.tgz"; 5246 5078 path = fetchurl { 5247 - name = "string_length___string_length_4.0.1.tgz"; 5248 - url = "https://registry.yarnpkg.com/string-length/-/string-length-4.0.1.tgz"; 5249 - sha1 = "4a973bf31ef77c4edbceadd6af2611996985f8a1"; 5079 + name = "string_length___string_length_4.0.2.tgz"; 5080 + url = "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz"; 5081 + sha1 = "a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a"; 5250 5082 }; 5251 5083 } 5252 5084 { ··· 5266 5098 }; 5267 5099 } 5268 5100 { 5269 - name = "string_width___string_width_4.2.0.tgz"; 5101 + name = "string_width___string_width_4.2.2.tgz"; 5270 5102 path = fetchurl { 5271 - name = "string_width___string_width_4.2.0.tgz"; 5272 - url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.0.tgz"; 5273 - sha1 = "952182c46cc7b2c313d1596e623992bd163b72b5"; 5103 + name = "string_width___string_width_4.2.2.tgz"; 5104 + url = "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz"; 5105 + sha1 = "dafd4f9559a7585cfba529c6a0a4f73488ebd4c5"; 5274 5106 }; 5275 5107 } 5276 5108 { ··· 5378 5210 }; 5379 5211 } 5380 5212 { 5381 - name = "supports_hyperlinks___supports_hyperlinks_2.1.0.tgz"; 5213 + name = "supports_hyperlinks___supports_hyperlinks_2.2.0.tgz"; 5382 5214 path = fetchurl { 5383 - name = "supports_hyperlinks___supports_hyperlinks_2.1.0.tgz"; 5384 - url = "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.1.0.tgz"; 5385 - sha1 = "f663df252af5f37c5d49bbd7eeefa9e0b9e59e47"; 5215 + name = "supports_hyperlinks___supports_hyperlinks_2.2.0.tgz"; 5216 + url = "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz"; 5217 + sha1 = "4f77b42488765891774b70c79babd87f9bd594bb"; 5386 5218 }; 5387 5219 } 5388 5220 { ··· 5394 5226 }; 5395 5227 } 5396 5228 { 5397 - name = "table___table_6.0.7.tgz"; 5229 + name = "table___table_6.6.0.tgz"; 5398 5230 path = fetchurl { 5399 - name = "table___table_6.0.7.tgz"; 5400 - url = "https://registry.yarnpkg.com/table/-/table-6.0.7.tgz"; 5401 - sha1 = "e45897ffbcc1bcf9e8a87bf420f2c9e5a7a52a34"; 5231 + name = "table___table_6.6.0.tgz"; 5232 + url = "https://registry.yarnpkg.com/table/-/table-6.6.0.tgz"; 5233 + sha1 = "905654b79df98d9e9a973de1dd58682532c40e8e"; 5402 5234 }; 5403 5235 } 5404 5236 { ··· 5442 5274 }; 5443 5275 } 5444 5276 { 5277 + name = "textextensions___textextensions_5.12.0.tgz"; 5278 + path = fetchurl { 5279 + name = "textextensions___textextensions_5.12.0.tgz"; 5280 + url = "https://registry.yarnpkg.com/textextensions/-/textextensions-5.12.0.tgz"; 5281 + sha1 = "b908120b5c1bd4bb9eba41423d75b176011ab68a"; 5282 + }; 5283 + } 5284 + { 5445 5285 name = "throat___throat_5.0.0.tgz"; 5446 5286 path = fetchurl { 5447 5287 name = "throat___throat_5.0.0.tgz"; ··· 5458 5282 }; 5459 5283 } 5460 5284 { 5461 - name = "tldts_core___tldts_core_5.7.6.tgz"; 5285 + name = "tldts_core___tldts_core_5.7.33.tgz"; 5462 5286 path = fetchurl { 5463 - name = "tldts_core___tldts_core_5.7.6.tgz"; 5464 - url = "https://registry.yarnpkg.com/tldts-core/-/tldts-core-5.7.6.tgz"; 5465 - sha1 = "af99b4ab79761dfa6c44d1d61a3f76bb5c3def8b"; 5287 + name = "tldts_core___tldts_core_5.7.33.tgz"; 5288 + url = "https://registry.yarnpkg.com/tldts-core/-/tldts-core-5.7.33.tgz"; 5289 + sha1 = "b2364f30d16e34b48961911408e9dbe3ae94ebdb"; 5466 5290 }; 5467 5291 } 5468 5292 { 5469 - name = "tldts_experimental___tldts_experimental_5.7.6.tgz"; 5293 + name = "tldts_experimental___tldts_experimental_5.7.33.tgz"; 5470 5294 path = fetchurl { 5471 - name = "tldts_experimental___tldts_experimental_5.7.6.tgz"; 5472 - url = "https://registry.yarnpkg.com/tldts-experimental/-/tldts-experimental-5.7.6.tgz"; 5473 - sha1 = "10c255872af89ab68659c3a345c7a65015920024"; 5295 + name = "tldts_experimental___tldts_experimental_5.7.33.tgz"; 5296 + url = "https://registry.yarnpkg.com/tldts-experimental/-/tldts-experimental-5.7.33.tgz"; 5297 + sha1 = "4959da5cd345a6167c69815fb6e34471387178b9"; 5474 5298 }; 5475 5299 } 5476 5300 { ··· 5538 5362 }; 5539 5363 } 5540 5364 { 5541 - name = "tough_cookie___tough_cookie_3.0.1.tgz"; 5365 + name = "tough_cookie___tough_cookie_4.0.0.tgz"; 5542 5366 path = fetchurl { 5543 - name = "tough_cookie___tough_cookie_3.0.1.tgz"; 5544 - url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-3.0.1.tgz"; 5545 - sha1 = "9df4f57e739c26930a018184887f4adb7dca73b2"; 5367 + name = "tough_cookie___tough_cookie_4.0.0.tgz"; 5368 + url = "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.0.0.tgz"; 5369 + sha1 = "d822234eeca882f991f0f908824ad2622ddbece4"; 5546 5370 }; 5547 5371 } 5548 5372 { ··· 5610 5434 }; 5611 5435 } 5612 5436 { 5613 - name = "type_fest___type_fest_0.11.0.tgz"; 5614 - path = fetchurl { 5615 - name = "type_fest___type_fest_0.11.0.tgz"; 5616 - url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.11.0.tgz"; 5617 - sha1 = "97abf0872310fed88a5c466b25681576145e33f1"; 5618 - }; 5619 - } 5620 - { 5621 5437 name = "type_fest___type_fest_0.13.1.tgz"; 5622 5438 path = fetchurl { 5623 5439 name = "type_fest___type_fest_0.13.1.tgz"; ··· 5623 5455 name = "type_fest___type_fest_0.20.2.tgz"; 5624 5456 url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz"; 5625 5457 sha1 = "1bf207f4b28f91583666cb5fbd327887301cd5f4"; 5458 + }; 5459 + } 5460 + { 5461 + name = "type_fest___type_fest_0.21.3.tgz"; 5462 + path = fetchurl { 5463 + name = "type_fest___type_fest_0.21.3.tgz"; 5464 + url = "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz"; 5465 + sha1 = "d260a24b0198436e133fa26a524a6d65fa3b2e37"; 5626 5466 }; 5627 5467 } 5628 5468 { ··· 5778 5602 }; 5779 5603 } 5780 5604 { 5781 - name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 5605 + name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz"; 5782 5606 path = fetchurl { 5783 - name = "v8_compile_cache___v8_compile_cache_2.2.0.tgz"; 5784 - url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz"; 5785 - sha1 = "9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132"; 5607 + name = "v8_compile_cache___v8_compile_cache_2.3.0.tgz"; 5608 + url = "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz"; 5609 + sha1 = "2de19618c66dc247dcfb6f99338035d8245a2cee"; 5786 5610 }; 5787 5611 } 5788 5612 { 5789 - name = "v8_to_istanbul___v8_to_istanbul_7.1.0.tgz"; 5613 + name = "v8_to_istanbul___v8_to_istanbul_7.1.2.tgz"; 5790 5614 path = fetchurl { 5791 - name = "v8_to_istanbul___v8_to_istanbul_7.1.0.tgz"; 5792 - url = "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz"; 5793 - sha1 = "5b95cef45c0f83217ec79f8fc7ee1c8b486aee07"; 5615 + name = "v8_to_istanbul___v8_to_istanbul_7.1.2.tgz"; 5616 + url = "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz"; 5617 + sha1 = "30898d1a7fa0c84d225a2c1434fb958f290883c1"; 5794 5618 }; 5795 5619 } 5796 5620 { ··· 5807 5631 name = "verror___verror_1.10.0.tgz"; 5808 5632 url = "https://registry.yarnpkg.com/verror/-/verror-1.10.0.tgz"; 5809 5633 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 5634 + }; 5635 + } 5636 + { 5637 + name = "version_compare___version_compare_1.1.0.tgz"; 5638 + path = fetchurl { 5639 + name = "version_compare___version_compare_1.1.0.tgz"; 5640 + url = "https://registry.yarnpkg.com/version-compare/-/version-compare-1.1.0.tgz"; 5641 + sha1 = "7b3e67e7e6cec5c72d9c9e586f8854e419ade17c"; 5642 + }; 5643 + } 5644 + { 5645 + name = "version_range___version_range_1.1.0.tgz"; 5646 + path = fetchurl { 5647 + name = "version_range___version_range_1.1.0.tgz"; 5648 + url = "https://registry.yarnpkg.com/version-range/-/version-range-1.1.0.tgz"; 5649 + sha1 = "1c233064202ee742afc9d56e21da3b2e15260acf"; 5810 5650 }; 5811 5651 } 5812 5652 { ··· 5882 5690 }; 5883 5691 } 5884 5692 { 5885 - name = "whatwg_url___whatwg_url_8.4.0.tgz"; 5693 + name = "whatwg_url___whatwg_url_8.5.0.tgz"; 5886 5694 path = fetchurl { 5887 - name = "whatwg_url___whatwg_url_8.4.0.tgz"; 5888 - url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.4.0.tgz"; 5889 - sha1 = "50fb9615b05469591d2b2bd6dfaed2942ed72837"; 5695 + name = "whatwg_url___whatwg_url_8.5.0.tgz"; 5696 + url = "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.5.0.tgz"; 5697 + sha1 = "7752b8464fc0903fec89aa9846fc9efe07351fd3"; 5890 5698 }; 5891 5699 } 5892 5700 { ··· 5962 5770 }; 5963 5771 } 5964 5772 { 5965 - name = "ws___ws_7.4.3.tgz"; 5773 + name = "ws___ws_7.4.5.tgz"; 5966 5774 path = fetchurl { 5967 - name = "ws___ws_7.4.3.tgz"; 5968 - url = "https://registry.yarnpkg.com/ws/-/ws-7.4.3.tgz"; 5969 - sha1 = "1f9643de34a543b8edb124bdcbc457ae55a6e5cd"; 5775 + name = "ws___ws_7.4.5.tgz"; 5776 + url = "https://registry.yarnpkg.com/ws/-/ws-7.4.5.tgz"; 5777 + sha1 = "a484dd851e9beb6fdb420027e3885e8ce48986c1"; 5970 5778 }; 5971 5779 } 5972 5780 { ··· 6010 5818 }; 6011 5819 } 6012 5820 { 6013 - name = "xmldom___xmldom_0.1.31.tgz"; 5821 + name = "xmldom___xmldom_0.5.0.tgz"; 6014 5822 path = fetchurl { 6015 - name = "xmldom___xmldom_0.1.31.tgz"; 6016 - url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.31.tgz"; 6017 - sha1 = "b76c9a1bd9f0a9737e5a72dc37231cf38375e2ff"; 5823 + name = "xmldom___xmldom_0.5.0.tgz"; 5824 + url = "https://registry.yarnpkg.com/xmldom/-/xmldom-0.5.0.tgz"; 5825 + sha1 = "193cb96b84aa3486127ea6272c4596354cb4962e"; 6018 5826 }; 6019 5827 } 6020 5828 { 6021 - name = "y18n___y18n_4.0.1.tgz"; 5829 + name = "y18n___y18n_4.0.3.tgz"; 6022 5830 path = fetchurl { 6023 - name = "y18n___y18n_4.0.1.tgz"; 6024 - url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz"; 6025 - sha1 = "8db2b83c31c5d75099bb890b23f3094891e247d4"; 5831 + name = "y18n___y18n_4.0.3.tgz"; 5832 + url = "https://registry.yarnpkg.com/y18n/-/y18n-4.0.3.tgz"; 5833 + sha1 = "b5f259c82cd6e336921efd7bfd8bf560de9eeedf"; 6026 5834 }; 6027 5835 } 6028 5836 { 6029 - name = "y18n___y18n_5.0.5.tgz"; 5837 + name = "y18n___y18n_5.0.8.tgz"; 6030 5838 path = fetchurl { 6031 - name = "y18n___y18n_5.0.5.tgz"; 6032 - url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz"; 6033 - sha1 = "8769ec08d03b1ea2df2500acef561743bbb9ab18"; 5839 + name = "y18n___y18n_5.0.8.tgz"; 5840 + url = "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz"; 5841 + sha1 = "7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55"; 6034 5842 }; 6035 5843 } 6036 5844 { ··· 6050 5858 }; 6051 5859 } 6052 5860 { 6053 - name = "yargs_parser___yargs_parser_20.2.4.tgz"; 5861 + name = "yargs_parser___yargs_parser_20.2.7.tgz"; 6054 5862 path = fetchurl { 6055 - name = "yargs_parser___yargs_parser_20.2.4.tgz"; 6056 - url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz"; 6057 - sha1 = "b42890f14566796f85ae8e3a25290d205f154a54"; 5863 + name = "yargs_parser___yargs_parser_20.2.7.tgz"; 5864 + url = "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz"; 5865 + sha1 = "61df85c113edfb5a7a4e36eb8aa60ef423cbc90a"; 6058 5866 }; 6059 5867 } 6060 5868 { ··· 6082 5890 }; 6083 5891 } 6084 5892 { 6085 - name = "zip_stream___zip_stream_4.0.4.tgz"; 5893 + name = "zip_stream___zip_stream_4.1.0.tgz"; 6086 5894 path = fetchurl { 6087 - name = "zip_stream___zip_stream_4.0.4.tgz"; 6088 - url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.0.4.tgz"; 6089 - sha1 = "3a8f100b73afaa7d1ae9338d910b321dec77ff3a"; 5895 + name = "zip_stream___zip_stream_4.1.0.tgz"; 5896 + url = "https://registry.yarnpkg.com/zip-stream/-/zip-stream-4.1.0.tgz"; 5897 + sha1 = "51dd326571544e36aa3f756430b313576dc8fc79"; 6090 5898 }; 6091 5899 } 6092 5900 ];
+3 -3
pkgs/applications/networking/cluster/terraform/default.nix
··· 164 164 }); 165 165 166 166 terraform_0_15 = pluggable (generic { 167 - version = "0.15.1"; 168 - sha256 = "02bqg05wsqld9xybvg7swvmympq5bggkw8vcq91z6vkpawm8z3kg"; 169 - vendorSha256 = "1lnz6b2kjilidvs4flx9vj5j6dxliqdxni96fn2537nqaz4hc7l2"; 167 + version = "0.15.2"; 168 + sha256 = "1zsid3ri52cjhn4gr2vgnyf50zmqiz71fh18fkakql8vsqzb3zr0"; 169 + vendorSha256 = "13ap1arn81lcxry08j42ck6lgvdcvdxgah6d40pmpkzkw9jcf55b"; 170 170 patches = [ ./provider-path-0_15.patch ]; 171 171 passthru = { inherit plugins; }; 172 172 });
+41
pkgs/applications/networking/instant-messengers/kdeltachat/default.nix
··· 1 + { lib 2 + , mkDerivation 3 + , fetchFromSourcehut 4 + , cmake 5 + , extra-cmake-modules 6 + , pkg-config 7 + , kirigami2 8 + , libdeltachat 9 + , qtmultimedia 10 + }: 11 + 12 + mkDerivation rec { 13 + pname = "kdeltachat"; 14 + version = "unstable-2021-05-03"; 15 + 16 + src = fetchFromSourcehut { 17 + owner = "~link2xt"; 18 + repo = "kdeltachat"; 19 + rev = "dd7455764074c0864234a6a25ab6f87e8d5c3121"; 20 + sha256 = "1vsy2jcisvf9mndxlwif3ghv1n2gz5ycr1qh72kgski38qan621v"; 21 + }; 22 + 23 + nativeBuildInputs = [ 24 + cmake 25 + extra-cmake-modules 26 + pkg-config 27 + ]; 28 + 29 + buildInputs = [ 30 + kirigami2 31 + libdeltachat 32 + qtmultimedia 33 + ]; 34 + 35 + meta = with lib; { 36 + description = "Delta Chat client using Kirigami framework"; 37 + homepage = "https://git.sr.ht/~link2xt/kdeltachat"; 38 + license = licenses.gpl3Plus; 39 + maintainers = with maintainers; [ dotlambda ]; 40 + }; 41 + }
-95
pkgs/applications/video/kino/default.nix
··· 1 - # is this configure option of interest? 2 - #--enable-udev-rules-dir=PATH 3 - # Where to install udev rules (/etc/udev/rules.d) 4 - 5 - #TODO shared version? 6 - 7 - 8 - # This is my config output.. Much TODO ? 9 - #source path /tmp/nix-31998-1/kino-1.2.0/ffmpeg 10 - #C compiler gcc 11 - #make make 12 - #.align is power-of-two no 13 - #ARCH x86_64 (generic) 14 - #build suffix -kino 15 - #big-endian no 16 - #MMX enabled yes 17 - #CMOV enabled no 18 - #CMOV is fast no 19 - #gprof enabled no 20 - #debug symbols yes 21 - #strip symbols yes 22 - #optimize yes 23 - #static yes 24 - #shared no 25 - #postprocessing support no 26 - #software scaler enabled yes 27 - #video hooking no 28 - #network support no 29 - #threading support no 30 - #SDL support no 31 - #Sun medialib support no 32 - #AVISynth enabled no 33 - #liba52 support no 34 - #liba52 dlopened no 35 - #libdts support no 36 - #libfaac enabled no 37 - #libfaad enabled no 38 - #faadbin enabled no 39 - #libgsm enabled no 40 - #libmp3lame enabled no 41 - #libnut enabled no 42 - #libogg enabled no 43 - #libtheora enabled no 44 - #libvorbis enabled no 45 - #x264 enabled no 46 - #XviD enabled no 47 - #zlib enabled no 48 - #AMR-NB float support no 49 - #AMR-NB fixed support no 50 - #AMR-WB float support no 51 - #AMR-WB IF2 support no 52 - 53 - { lib, stdenv, fetchurl, gtk2, libglade, libxml2, libraw1394, libsamplerate, libdv 54 - , pkg-config, perlPackages, libavc1394, libiec61883, libXv, gettext 55 - , libX11, glib, cairo, intltool, ffmpeg, libv4l 56 - }: 57 - 58 - stdenv.mkDerivation { 59 - name = "kino-1.3.4"; 60 - 61 - src = fetchurl { 62 - url = "mirror://sourceforge/kino/kino-1.3.4.tar.gz"; 63 - sha256 = "020s05k0ma83rq2kfs8x474pqicaqp9spar81qc816ddfrnh8k8i"; 64 - }; 65 - 66 - buildInputs = [ gtk2 libglade libxml2 libraw1394 libsamplerate libdv 67 - pkg-config libavc1394 libiec61883 intltool libXv gettext libX11 glib cairo ffmpeg libv4l ] # TODOoptional packages 68 - ++ (with perlPackages; [ perl XMLParser ]); 69 - 70 - configureFlags = [ "--enable-local-ffmpeg=no" ]; 71 - 72 - hardeningDisable = [ "format" ]; 73 - 74 - NIX_LDFLAGS = "-lavcodec -lavutil"; 75 - 76 - patches = [ ./kino-1.3.4-v4l1.patch ./kino-1.3.4-libav-0.7.patch ./kino-1.3.4-libav-0.8.patch ]; #./kino-1.3.4-libavcodec-pkg-config.patch ]; 77 - 78 - postInstall = " 79 - rpath=`patchelf --print-rpath \$out/bin/kino`; 80 - for i in $buildInputs; do 81 - echo adding \$i/lib 82 - rpath=\$rpath\${rpath:+:}\$i/lib 83 - done 84 - for i in \$out/bin/*; do 85 - patchelf --set-rpath \"\$rpath\" \"\$i\" 86 - done 87 - "; 88 - 89 - meta = { 90 - description = "Non-linear DV editor for GNU/Linux"; 91 - homepage = "http://www.kinodv.org/"; 92 - license = lib.licenses.gpl2; 93 - platforms = lib.platforms.linux; 94 - }; 95 - }
-60
pkgs/applications/video/kino/kino-1.3.4-libav-0.7.patch
··· 1 - --- kino-1.3.4.orig/src/frame.cc 2011-07-17 14:54:59.089481638 +0200 2 - +++ kino-1.3.4/src/frame.cc 2011-07-17 15:09:23.199481714 +0200 3 - @@ -1063,7 +1063,12 @@ 4 - AVPicture dest; 5 - int got_picture; 6 - 7 - - avcodec_decode_video( libavcodec, frame, &got_picture, data, GetFrameSize() ); 8 - + AVPacket pkt; 9 - + av_init_packet(&pkt); 10 - + pkt.data = data; 11 - + pkt.size = GetFrameSize(); 12 - + 13 - + avcodec_decode_video2( libavcodec, frame, &got_picture, &pkt ); 14 - if ( got_picture ) 15 - { 16 - avpicture_fill( &dest, static_cast<uint8_t*>( rgb ), PIX_FMT_RGB24, GetWidth(), GetHeight() ); 17 - @@ -1123,7 +1128,12 @@ 18 - AVPicture output; 19 - int got_picture; 20 - 21 - - avcodec_decode_video( libavcodec, frame, &got_picture, data, GetFrameSize() ); 22 - + AVPacket pkt; 23 - + av_init_packet(&pkt); 24 - + pkt.data = data; 25 - + pkt.size = GetFrameSize(); 26 - + 27 - + avcodec_decode_video2( libavcodec, frame, &got_picture, &pkt ); 28 - if ( got_picture ) 29 - { 30 - avpicture_fill( &output, static_cast<uint8_t*>( yuv ), PIX_FMT_YUV422, GetWidth(), GetHeight() ); 31 - @@ -1156,7 +1166,12 @@ 32 - AVFrame *frame = avcodec_alloc_frame(); 33 - int got_picture; 34 - 35 - - avcodec_decode_video( libavcodec, frame, &got_picture, data, GetFrameSize() ); 36 - + AVPacket pkt; 37 - + av_init_packet(&pkt); 38 - + pkt.data = data; 39 - + pkt.size = GetFrameSize(); 40 - + 41 - + avcodec_decode_video2( libavcodec, frame, &got_picture, &pkt ); 42 - 43 - int width = GetWidth(), height = GetHeight(); 44 - 45 - @@ -1319,12 +1334,12 @@ 46 - #if defined(HAVE_LIBAVCODEC) 47 - if ( avformatEncoder == NULL ) 48 - { 49 - - avformatEncoder = av_alloc_format_context(); 50 - + avformatEncoder = avformat_alloc_context(); 51 - if ( avformatEncoder ) 52 - { 53 - - avformatEncoder->oformat = guess_format( "dv", NULL, NULL ); 54 - + avformatEncoder->oformat = av_guess_format( "dv", NULL, NULL ); 55 - AVStream* vst = av_new_stream( avformatEncoder, 0 ); 56 - - vst->codec->codec_type = CODEC_TYPE_VIDEO; 57 - + vst->codec->codec_type = AVMEDIA_TYPE_VIDEO; 58 - vst->codec->codec_id = CODEC_ID_DVVIDEO; 59 - vst->codec->bit_rate = 25000000; 60 - vst->start_time = 0;
-57
pkgs/applications/video/kino/kino-1.3.4-libav-0.8.patch
··· 1 - --- kino-1.3.4.orig/src/frame.cc 2012-05-14 19:55:42.153772418 -0700 2 - +++ kino-1.3.4/src/frame.cc 2012-05-14 20:28:34.448838653 -0700 3 - @@ -101,8 +101,9 @@ 4 - #if defined(HAVE_LIBAVCODEC) 5 - pthread_mutex_lock( &avcodec_mutex ); 6 - av_register_all(); 7 - - libavcodec = avcodec_alloc_context(); 8 - - avcodec_open( libavcodec, avcodec_find_decoder( CODEC_ID_DVVIDEO ) ); 9 - + libavcodec = avcodec_alloc_context3(NULL); 10 - + avcodec_open2( libavcodec, 11 - + avcodec_find_decoder( CODEC_ID_DVVIDEO ), NULL ); 12 - pthread_mutex_unlock( &avcodec_mutex ); 13 - data = ( unsigned char* ) av_mallocz( 144000 ); 14 - #if defined(HAVE_SWSCALE) 15 - @@ -1338,7 +1339,7 @@ 16 - if ( avformatEncoder ) 17 - { 18 - avformatEncoder->oformat = av_guess_format( "dv", NULL, NULL ); 19 - - AVStream* vst = av_new_stream( avformatEncoder, 0 ); 20 - + AVStream* vst = avformat_new_stream( avformatEncoder, NULL ); 21 - vst->codec->codec_type = AVMEDIA_TYPE_VIDEO; 22 - vst->codec->codec_id = CODEC_ID_DVVIDEO; 23 - vst->codec->bit_rate = 25000000; 24 - @@ -1364,12 +1365,10 @@ 25 - vst->sample_aspect_ratio = avcodecEncoder->sample_aspect_ratio; 26 - #endif 27 - avcodecEncoder->thread_count = 2; 28 - - avcodec_thread_init( avcodecEncoder, avcodecEncoder->thread_count ); 29 - avcodecEncoder->time_base= isPAL ? ( AVRational ){ 1, 25 } : ( AVRational ){ 1001, 30000 }; 30 - avcodecEncoder->pix_fmt = isPAL ? PIX_FMT_YUV420P : PIX_FMT_YUV411P; 31 - avcodecEncoder->flags |= CODEC_FLAG_INTERLACED_DCT; 32 - - av_set_parameters( avformatEncoder, NULL ); 33 - - avcodec_open( avcodecEncoder, avcodec_find_encoder( CODEC_ID_DVVIDEO ) ); 34 - + avcodec_open2( avcodecEncoder, avcodec_find_encoder( CODEC_ID_DVVIDEO ), NULL ); 35 - av_new_packet( &avpacketEncoder, 144000 ); 36 - tempImage = ( uint8_t* ) av_malloc( 37 - avpicture_get_size( avcodecEncoder->pix_fmt, avcodecEncoder->width, avcodecEncoder->height ) ); 38 - @@ -1475,16 +1474,16 @@ 39 - 40 - // Encode 41 - bytesInFrame = avcodec_encode_video( avcodecEncoder, avpacketEncoder.data, size, output ); 42 - - url_open_buf( &avformatEncoder->pb, data, bytesInFrame, URL_WRONLY ); 43 - + avformatEncoder->pb = avio_alloc_context(data, bytesInFrame, 0, NULL, NULL, NULL, NULL); 44 - avpacketEncoder.size = bytesInFrame; 45 - if ( !isEncoderHeaderWritten ) 46 - { 47 - - av_write_header( avformatEncoder ); 48 - + avformat_write_header( avformatEncoder, NULL ); 49 - isEncoderHeaderWritten = true; 50 - } 51 - av_write_frame( avformatEncoder, &avpacketEncoder ); 52 - #if LIBAVFORMAT_VERSION_INT >= ((52<<16)+(0<<8)+0) 53 - - url_close_buf( avformatEncoder->pb ); 54 - + avio_close( avformatEncoder->pb ); 55 - #else 56 - url_close_buf( &avformatEncoder->pb ); 57 - #endif
-11
pkgs/applications/video/kino/kino-1.3.4-libavcodec-pkg-config.patch
··· 1 - --- a/kino-1.3.4/configure.in 2009-09-08 02:35:23.000000000 -0400 2 - +++ b/kino-1.3.4/configure.in 2014-01-27 14:53:01.366063037 -0500 3 - @@ -221,7 +221,7 @@ 4 - if (test "x$avcodec_include" != x) || (test "x$avcodec_lib" != x) ; then 5 - local_legacy_ffmpeg_test 6 - else 7 - - PKG_CHECK_MODULES(AVCODEC, libavformat, 8 - + PKG_CHECK_MODULES(AVCODEC, [libavcodec libavformat libavutil], 9 - [ 10 - AC_DEFINE(HAVE_LIBAVCODEC, 1, [Enable FFMPEG libavcodec]) 11 - AC_SUBST(AVCODEC_LIBS)
-21
pkgs/applications/video/kino/kino-1.3.4-v4l1.patch
··· 1 - no-1.3.3.orig/ffmpeg/libavdevice/v4l.c 2011-05-17 02:20:37.161004916 +0400 2 - +++ kino-1.3.3.orig/ffmpeg/libavdevice/v4l.c 2011-05-17 02:21:57.302377529 +0400 3 - @@ -26,7 +26,7 @@ 4 - #include <sys/mman.h> 5 - #include <sys/time.h> 6 - #define _LINUX_TIME_H 1 7 - -#include <linux/videodev.h> 8 - +#include <libv4l1-videodev.h> 9 - #include <time.h> 10 - 11 - typedef struct { 12 - --- kino-1.3.3.orig/src/v4l.h 2011-05-17 02:20:38.896969666 +0400 13 - +++ kino-1.3.3.orig/src/v4l.h 2011-05-17 02:21:39.922730395 +0400 14 - @@ -40,7 +40,7 @@ 15 - 16 - #define _DEVICE_H_ 17 - #define _LINUX_TIME_H 18 - -#include <linux/videodev.h> 19 - +#include <libv4l1-videodev.h> 20 - 21 - #include "displayer.h"
+2 -2
pkgs/development/compilers/elm/default.nix
··· 2 2 , haskell, haskellPackages, nodejs 3 3 , fetchurl, fetchpatch, makeWrapper, writeScriptBin 4 4 # Rust dependecies 5 - , rustPlatform, openssl, pkg-config, Security 5 + , curl, rustPlatform, openssl, pkg-config, Security 6 6 }: 7 7 let 8 8 fetchElmDeps = import ./fetchElmDeps.nix { inherit stdenv lib fetchurl; }; ··· 102 102 103 103 elmRustPackages = { 104 104 elm-json = import ./packages/elm-json.nix { 105 - inherit lib rustPlatform fetchurl openssl stdenv pkg-config Security; 105 + inherit curl lib rustPlatform fetchurl openssl stdenv pkg-config Security; 106 106 } // { 107 107 meta = with lib; { 108 108 description = "Install, upgrade and uninstall Elm dependencies";
+5 -5
pkgs/development/compilers/elm/packages/elm-json.nix
··· 1 - { lib, rustPlatform, fetchurl, openssl, stdenv, pkg-config, Security }: 1 + { lib, curl, rustPlatform, fetchurl, openssl, stdenv, pkg-config, Security }: 2 2 rustPlatform.buildRustPackage rec { 3 3 pname = "elm-json"; 4 - version = "0.2.7"; 4 + version = "0.2.10"; 5 5 6 6 src = fetchurl { 7 7 url = "https://github.com/zwilias/elm-json/archive/v${version}.tar.gz"; 8 - sha256 = "sha256:1b9bhl7rb01ylqjbfd1ccm26lhk4hzwd383rbg89aj2jwjv0w4hs"; 8 + sha256 = "sha256:03azh7wvl60h6w7ffpvl49s7jr7bxpladcm4fzcasakg26i5a71x"; 9 9 }; 10 10 11 11 cargoPatches = [ ./elm-json.patch ]; 12 12 13 13 nativeBuildInputs = [ pkg-config ]; 14 14 15 - buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 15 + buildInputs = [ curl openssl ] ++ lib.optionals stdenv.isDarwin [ Security ]; 16 16 17 - cargoSha256 = "0ylniriq073kpiykamkn9mxdaa6kyiza4pvf7gnfq2h1dvbqa6z7"; 17 + cargoSha256 = "sha256:01zasrqf1va58i52s3kwdkj1rnwy80gv00xi6npfshjirj3ix07f"; 18 18 19 19 # Tests perform networking and therefore can't work in sandbox 20 20 doCheck = false;
+21 -26
pkgs/development/compilers/elm/packages/elm-json.patch
··· 1 1 diff --git a/Cargo.lock b/Cargo.lock 2 - index f4d95f5..6830b3d 100644 2 + index 5440d72..6e173fa 100644 3 3 --- a/Cargo.lock 4 4 +++ b/Cargo.lock 5 - @@ -625,14 +625,6 @@ name = "openssl-probe" 6 - version = "0.1.2" 5 + @@ -774,15 +774,6 @@ version = "0.1.2" 7 6 source = "registry+https://github.com/rust-lang/crates.io-index" 7 + checksum = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 8 8 9 9 -[[package]] 10 10 -name = "openssl-src" 11 - -version = "111.9.0+1.1.1g" 11 + -version = "111.11.0+1.1.1h" 12 12 -source = "registry+https://github.com/rust-lang/crates.io-index" 13 + -checksum = "380fe324132bea01f45239fadfec9343adb044615f29930d039bec1ae7b9fa5b" 13 14 -dependencies = [ 14 - - "cc 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)", 15 + - "cc", 15 16 -] 16 17 - 17 18 [[package]] 18 19 name = "openssl-sys" 19 - version = "0.9.56" 20 - @@ -641,7 +633,6 @@ dependencies = [ 21 - "autocfg 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", 22 - "cc 1.0.54 (registry+https://github.com/rust-lang/crates.io-index)", 23 - "libc 0.2.70 (registry+https://github.com/rust-lang/crates.io-index)", 24 - - "openssl-src 111.9.0+1.1.1g (registry+https://github.com/rust-lang/crates.io-index)", 25 - "pkg-config 0.3.17 (registry+https://github.com/rust-lang/crates.io-index)", 26 - "vcpkg 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", 20 + version = "0.9.58" 21 + @@ -792,7 +783,6 @@ dependencies = [ 22 + "autocfg", 23 + "cc", 24 + "libc", 25 + - "openssl-src", 26 + "pkg-config", 27 + "vcpkg", 27 28 ] 28 - @@ -1162,7 +1153,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" 29 - "checksum object 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9cbca9424c482ee628fa549d9c812e2cd22f1180b9222c9200fdfa6eb31aecb2" 30 - "checksum once_cell 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0b631f7e854af39a1739f401cf34a8a013dfe09eac4fa4dba91e9768bd28168d" 31 - "checksum openssl-probe 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "77af24da69f9d9341038eba93a073b1fdaaa1b788221b00a69bce9e762cb32de" 32 - -"checksum openssl-src 111.9.0+1.1.1g (registry+https://github.com/rust-lang/crates.io-index)" = "a2dbe10ddd1eb335aba3780eb2eaa13e1b7b441d2562fd962398740927f39ec4" 33 - "checksum openssl-sys 0.9.56 (registry+https://github.com/rust-lang/crates.io-index)" = "f02309a7f127000ed50594f0b50ecc69e7c654e16d41b4e8156d1b3df8e0b52e" 34 - "checksum petgraph 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "29c127eea4a29ec6c85d153c59dc1213f33ec74cead30fe4730aecc88cc1fd92" 35 - "checksum pin-project 0.4.17 (registry+https://github.com/rust-lang/crates.io-index)" = "edc93aeee735e60ecb40cf740eb319ff23eab1c5748abfdb5c180e4ce49f7791" 36 29 diff --git a/Cargo.toml b/Cargo.toml 37 - index adfab25..37ae0c2 100644 30 + index 4d319f2..6f4d0e5 100644 38 31 --- a/Cargo.toml 39 32 +++ b/Cargo.toml 40 - @@ -21,7 +21,7 @@ colored = "1.9" 33 + @@ -21,8 +21,8 @@ colored = "2.0" 41 34 dialoguer = "0.6" 42 - dirs = "2.0" 35 + dirs = "3.0" 43 36 fs2 = "0.4" 44 37 -isahc = { version = "0.9", features = ["static-ssl"] } 38 + -curl = {version = "0.4", features = ["static-curl", "static-ssl", "force-system-lib-on-osx", "http2"]} 45 39 +isahc = "0.9" 40 + +curl = {version = "0.4", features = ["force-system-lib-on-osx", "http2"]} 41 + ctrlc = "3.1" 42 + console = "0.12" 46 43 47 - [dev-dependencies] 48 - assert_cmd = "0.11"
+3
pkgs/development/libraries/ffmpeg/2.8.nix
··· 4 4 version = "${branch}.17"; 5 5 branch = "2.8"; 6 6 sha256 = "05bnhvs2f82aq95z1wd3wr42sljdfq4kiyzqwhpji983mndx14vl"; 7 + knownVulnerabilities = [ 8 + "CVE-2021-30123" 9 + ]; 7 10 } // args)
+2 -2
pkgs/development/libraries/ffmpeg/generic.nix
··· 17 17 # Darwin frameworks 18 18 , Cocoa, darwinFrameworks ? [ Cocoa ] 19 19 # Inherit generics 20 - , branch, sha256, version, patches ? [], ... 20 + , branch, sha256, version, patches ? [], knownVulnerabilities ? [], ... 21 21 }: 22 22 23 23 /* Maintainer notes: ··· 225 225 license = licenses.gpl3; 226 226 platforms = platforms.all; 227 227 maintainers = with maintainers; [ codyopel ]; 228 - inherit branch; 228 + inherit branch knownVulnerabilities; 229 229 }; 230 230 }
+55
pkgs/development/libraries/libdeltachat/default.nix
··· 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , cmake 5 + , openssl 6 + , perl 7 + , pkg-config 8 + , rustPlatform 9 + , sqlite 10 + }: 11 + 12 + stdenv.mkDerivation rec { 13 + pname = "libdeltachat"; 14 + version = "1.54.0"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "deltachat"; 18 + repo = "deltachat-core-rust"; 19 + rev = version; 20 + sha256 = "02hvsfv1yar8bdpkfrfiiicq9qqnfhp46v6qqph9ar6khz3f1kim"; 21 + }; 22 + 23 + cargoDeps = rustPlatform.fetchCargoTarball { 24 + inherit src; 25 + name = "${pname}-${version}"; 26 + sha256 = "1p5yrhczp9nfijbvkmkmx1rabk5k3c1ni4k1vc0mw4jgl26lslcm"; 27 + }; 28 + 29 + nativeBuildInputs = [ 30 + cmake 31 + perl 32 + pkg-config 33 + ] ++ (with rustPlatform; [ 34 + cargoSetupHook 35 + rust.cargo 36 + ]); 37 + 38 + buildInputs = [ 39 + openssl 40 + sqlite 41 + ]; 42 + 43 + checkInputs = with rustPlatform; [ 44 + cargoCheckHook 45 + ]; 46 + 47 + meta = with lib; { 48 + description = "Delta Chat Rust Core library"; 49 + homepage = "https://github.com/deltachat/deltachat-core-rust/"; 50 + changelog = "https://github.com/deltachat/deltachat-core-rust/blob/${version}/CHANGELOG.md"; 51 + license = licenses.mpl20; 52 + platforms = platforms.linux; 53 + maintainers = with maintainers; [ dotlambda ]; 54 + }; 55 + }
+4 -6
pkgs/development/libraries/qt-5/modules/qtwebengine.nix
··· 15 15 , enableProprietaryCodecs ? true 16 16 , gn 17 17 , cups, darwin, openbsm, runCommand, xcbuild, writeScriptBin 18 - , ffmpeg_3 ? null 18 + , ffmpeg ? null 19 19 , lib, stdenv, fetchpatch 20 20 , version ? null 21 21 , qtCompatVersion ··· 140 140 fi 141 141 ''; 142 142 143 - qmakeFlags = if stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64 144 - then [ "--" "-system-ffmpeg" ] ++ optional enableProprietaryCodecs "-proprietary-codecs" 145 - else optional enableProprietaryCodecs "-- -proprietary-codecs"; 143 + qmakeFlags = [ "--" "-system-ffmpeg" ] 144 + ++ optional enableProprietaryCodecs "-proprietary-codecs"; 146 145 147 146 propagatedBuildInputs = [ 148 147 # Image formats ··· 157 158 harfbuzz icu 158 159 159 160 libevent 160 - ] ++ optionals (stdenv.hostPlatform.isAarch32 || stdenv.hostPlatform.isAarch64) [ 161 - ffmpeg_3 161 + ffmpeg 162 162 ] ++ optionals (!stdenv.isDarwin) [ 163 163 dbus zlib minizip snappy nss protobuf jsoncpp 164 164
+59
pkgs/development/python-modules/deltachat/default.nix
··· 1 + { lib 2 + , buildPythonPackage 3 + , isPy27 4 + , fetchpatch 5 + , setuptools-scm 6 + , libdeltachat 7 + , cffi 8 + , IMAPClient 9 + , pluggy 10 + , requests 11 + , setuptools 12 + , pytestCheckHook 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "deltachat"; 17 + inherit (libdeltachat) version src; 18 + sourceRoot = "${src.name}/python"; 19 + 20 + disabled = isPy27; 21 + 22 + nativeBuildInputs = [ 23 + setuptools-scm 24 + ]; 25 + 26 + SETUPTOOLS_SCM_PRETEND_VERSION = version; 27 + 28 + buildInputs = [ 29 + libdeltachat 30 + ]; 31 + 32 + propagatedBuildInputs = [ 33 + cffi 34 + IMAPClient 35 + pluggy 36 + requests 37 + setuptools 38 + ]; 39 + 40 + checkInputs = [ 41 + pytestCheckHook 42 + ]; 43 + 44 + pythonImportsCheck = [ 45 + "deltachat" 46 + "deltachat.account" 47 + "deltachat.contact" 48 + "deltachat.chat" 49 + "deltachat.message" 50 + ]; 51 + 52 + meta = with lib; { 53 + description = "Python bindings for the Delta Chat Core library"; 54 + homepage = "https://github.com/deltachat/deltachat-core-rust/tree/master/python"; 55 + changelog = "https://github.com/deltachat/deltachat-core-rust/blob/${version}/python/CHANGELOG"; 56 + license = licenses.mpl20; 57 + maintainers = with maintainers; [ dotlambda ]; 58 + }; 59 + }
+9 -9
pkgs/development/python-modules/pgpy/default.nix
··· 1 - { lib, isPy3k, fetchFromGitHub, buildPythonPackage 1 + { lib, pythonOlder, fetchFromGitHub, buildPythonPackage 2 2 , six, enum34, pyasn1, cryptography, singledispatch ? null 3 - , fetchPypi, pytestCheckHook }: 3 + , pytestCheckHook }: 4 4 5 5 buildPythonPackage rec { 6 6 pname = "pgpy"; 7 - version = "0.5.2"; 7 + version = "0.5.4"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "SecurityInnovation"; 11 11 repo = "PGPy"; 12 - rev = version; 13 - sha256 = "1v2b1dyq1sl48d2gw7vn4hv6sasd9ihpzzcq8yvxj9dgfak2y663"; 12 + rev = "v${version}"; 13 + sha256 = "03pch39y3hi4ici6y6lvz0j0zram8dw2wvnmq1zyjy3vyvm1ms4a"; 14 14 }; 15 15 16 16 propagatedBuildInputs = [ 17 17 six 18 18 pyasn1 19 19 cryptography 20 + ] ++ lib.optionals (pythonOlder "3.4") [ 20 21 singledispatch 21 - ] ++ lib.optional (!isPy3k) enum34; 22 + enum34 23 + ]; 22 24 23 25 checkInputs = [ 24 26 pytestCheckHook 25 27 ]; 26 - 27 - disabledTests = [ "test_sign_string" "test_verify_string" ]; 28 28 29 29 meta = with lib; { 30 30 homepage = "https://github.com/SecurityInnovation/PGPy"; ··· 35 35 4880. 36 36 ''; 37 37 license = licenses.bsd3; 38 - maintainers = with maintainers; [ eadwu ]; 38 + maintainers = with maintainers; [ eadwu dotlambda ]; 39 39 }; 40 40 }
+2 -2
pkgs/development/web/nodejs/v16.nix
··· 8 8 in 9 9 buildNodejs { 10 10 inherit enableNpm; 11 - version = "16.0.0"; 12 - sha256 = "00mada0vvybizygwhzsq6gcz0m2k864lfiiqqlnw8gcc3q8r1js7"; 11 + version = "16.1.0"; 12 + sha256 = "0z0808mw674mshgbmhgngqfkrdix3b61f77xcdz7bwf1j87j7ad0"; 13 13 }
+2 -2
pkgs/games/ultrastardx/default.nix
··· 14 14 , SDL2_gfx 15 15 , SDL2_mixer 16 16 , SDL2_net, SDL2_ttf 17 - , ffmpeg 17 + , ffmpeg_3 18 18 , sqlite 19 19 , zlib 20 20 , libX11 ··· 26 26 sharedLibs = [ 27 27 pcre portaudio freetype 28 28 SDL2 SDL2_image SDL2_gfx SDL2_mixer SDL2_net SDL2_ttf 29 - sqlite lua zlib libX11 libGLU libGL ffmpeg 29 + sqlite lua zlib libX11 libGLU libGL ffmpeg_3 30 30 ]; 31 31 32 32 in stdenv.mkDerivation rec {
+130
pkgs/os-specific/linux/wpa_supplicant/0001-Implement-read-only-mode-for-ssids.patch
··· 1 + From 99ae610f0ae3608a12c864caedf396f14e68327d Mon Sep 17 00:00:00 2001 2 + From: Maximilian Bosch <maximilian@mbosch.me> 3 + Date: Fri, 19 Feb 2021 19:44:21 +0100 4 + Subject: [PATCH] Implement read-only mode for ssids 5 + 6 + With this change it's possible to define `network=`-sections in a second 7 + config file specified via `-I` without having changes written to 8 + `/etc/wpa_supplicant.conf`. 9 + 10 + This is helpful on e.g. NixOS to allow both declarative (i.e. read-only) 11 + and imperative (i.e. mutable) networks. 12 + --- 13 + wpa_supplicant/config.h | 2 +- 14 + wpa_supplicant/config_file.c | 5 +++-- 15 + wpa_supplicant/config_none.c | 2 +- 16 + wpa_supplicant/config_ssid.h | 2 ++ 17 + wpa_supplicant/wpa_supplicant.c | 8 ++++---- 18 + 5 files changed, 11 insertions(+), 8 deletions(-) 19 + 20 + diff --git a/wpa_supplicant/config.h b/wpa_supplicant/config.h 21 + index 6a297ecfe..adaf4d398 100644 22 + --- a/wpa_supplicant/config.h 23 + +++ b/wpa_supplicant/config.h 24 + @@ -1614,7 +1614,7 @@ const char * wpa_config_get_global_field_name(unsigned int i, int *no_var); 25 + * 26 + * Each configuration backend needs to implement this function. 27 + */ 28 + -struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp); 29 + +struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp, int ro); 30 + 31 + /** 32 + * wpa_config_write - Write or update configuration data 33 + diff --git a/wpa_supplicant/config_file.c b/wpa_supplicant/config_file.c 34 + index 77c326df5..d5ed051b9 100644 35 + --- a/wpa_supplicant/config_file.c 36 + +++ b/wpa_supplicant/config_file.c 37 + @@ -373,7 +373,7 @@ static int wpa_config_process_blob(struct wpa_config *config, FILE *f, 38 + #endif /* CONFIG_NO_CONFIG_BLOBS */ 39 + 40 + 41 + -struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp) 42 + +struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp, int ro) 43 + { 44 + FILE *f; 45 + char buf[512], *pos; 46 + @@ -415,6 +415,7 @@ struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp) 47 + while (wpa_config_get_line(buf, sizeof(buf), f, &line, &pos)) { 48 + if (os_strcmp(pos, "network={") == 0) { 49 + ssid = wpa_config_read_network(f, &line, id++); 50 + + ssid->ro = ro; 51 + if (ssid == NULL) { 52 + wpa_printf(MSG_ERROR, "Line %d: failed to " 53 + "parse network block.", line); 54 + @@ -1591,7 +1592,7 @@ int wpa_config_write(const char *name, struct wpa_config *config) 55 + } 56 + 57 + for (ssid = config->ssid; ssid; ssid = ssid->next) { 58 + - if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary) 59 + + if (ssid->key_mgmt == WPA_KEY_MGMT_WPS || ssid->temporary || ssid->ro) 60 + continue; /* do not save temporary networks */ 61 + if (wpa_key_mgmt_wpa_psk(ssid->key_mgmt) && !ssid->psk_set && 62 + !ssid->passphrase) 63 + diff --git a/wpa_supplicant/config_none.c b/wpa_supplicant/config_none.c 64 + index 2aac28fa3..02191b425 100644 65 + --- a/wpa_supplicant/config_none.c 66 + +++ b/wpa_supplicant/config_none.c 67 + @@ -17,7 +17,7 @@ 68 + #include "base64.h" 69 + 70 + 71 + -struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp) 72 + +struct wpa_config * wpa_config_read(const char *name, struct wpa_config *cfgp, int ro) 73 + { 74 + struct wpa_config *config; 75 + 76 + diff --git a/wpa_supplicant/config_ssid.h b/wpa_supplicant/config_ssid.h 77 + index d5c5c00a9..fd80c079c 100644 78 + --- a/wpa_supplicant/config_ssid.h 79 + +++ b/wpa_supplicant/config_ssid.h 80 + @@ -93,6 +93,8 @@ struct wpa_ssid { 81 + */ 82 + int id; 83 + 84 + + int ro; 85 + + 86 + /** 87 + * priority - Priority group 88 + * 89 + diff --git a/wpa_supplicant/wpa_supplicant.c b/wpa_supplicant/wpa_supplicant.c 90 + index 911d79d17..cb0cb99b1 100644 91 + --- a/wpa_supplicant/wpa_supplicant.c 92 + +++ b/wpa_supplicant/wpa_supplicant.c 93 + @@ -1052,14 +1052,14 @@ int wpa_supplicant_reload_configuration(struct wpa_supplicant *wpa_s) 94 + 95 + if (wpa_s->confname == NULL) 96 + return -1; 97 + - conf = wpa_config_read(wpa_s->confname, NULL); 98 + + conf = wpa_config_read(wpa_s->confname, NULL, 0); 99 + if (conf == NULL) { 100 + wpa_msg(wpa_s, MSG_ERROR, "Failed to parse the configuration " 101 + "file '%s' - exiting", wpa_s->confname); 102 + return -1; 103 + } 104 + if (wpa_s->confanother && 105 + - !wpa_config_read(wpa_s->confanother, conf)) { 106 + + !wpa_config_read(wpa_s->confanother, conf, 1)) { 107 + wpa_msg(wpa_s, MSG_ERROR, 108 + "Failed to parse the configuration file '%s' - exiting", 109 + wpa_s->confanother); 110 + @@ -5638,7 +5638,7 @@ static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s, 111 + #else /* CONFIG_BACKEND_FILE */ 112 + wpa_s->confname = os_strdup(iface->confname); 113 + #endif /* CONFIG_BACKEND_FILE */ 114 + - wpa_s->conf = wpa_config_read(wpa_s->confname, NULL); 115 + + wpa_s->conf = wpa_config_read(wpa_s->confname, NULL, 0); 116 + if (wpa_s->conf == NULL) { 117 + wpa_printf(MSG_ERROR, "Failed to read or parse " 118 + "configuration '%s'.", wpa_s->confname); 119 + @@ -5646,7 +5646,7 @@ static int wpa_supplicant_init_iface(struct wpa_supplicant *wpa_s, 120 + } 121 + wpa_s->confanother = os_rel2abs_path(iface->confanother); 122 + if (wpa_s->confanother && 123 + - !wpa_config_read(wpa_s->confanother, wpa_s->conf)) { 124 + + !wpa_config_read(wpa_s->confanother, wpa_s->conf, 1)) { 125 + wpa_printf(MSG_ERROR, 126 + "Failed to read or parse configuration '%s'.", 127 + wpa_s->confanother); 128 + -- 129 + 2.29.2 130 +
+6 -1
pkgs/os-specific/linux/wpa_supplicant/default.nix
··· 1 1 { lib, stdenv, fetchurl, fetchpatch, openssl, pkg-config, libnl 2 2 , dbus, readline ? null, pcsclite ? null 3 + 4 + , readOnlyModeSSIDs ? false 3 5 }: 4 6 5 7 with lib; ··· 45 43 url = "https://w1.fi/cgit/hostap/patch/?id=a0541334a6394f8237a4393b7372693cd7e96f15"; 46 44 sha256 = "1gbhlz41x1ar1hppnb76pqxj6vimiypy7c4kq6h658637s4am3xg"; 47 45 }) 46 + ] ++ lib.optionals readOnlyModeSSIDs [ 47 + # Allow read-only networks 48 + ./0001-Implement-read-only-mode-for-ssids.patch 48 49 ]; 49 50 50 51 # TODO: Patch epoll so that the dbus actually responds ··· 139 134 homepage = "https://w1.fi/wpa_supplicant/"; 140 135 description = "A tool for connecting to WPA and WPA2-protected wireless networks"; 141 136 license = licenses.bsd3; 142 - maintainers = with maintainers; [ marcweber ]; 137 + maintainers = with maintainers; [ marcweber ma27 ]; 143 138 platforms = platforms.linux; 144 139 }; 145 140 }
+6 -1
pkgs/tools/audio/acoustid-fingerprinter/default.nix
··· 17 17 18 18 patches = [ 19 19 (fetchpatch { 20 + name = "fix-build-with-libav-10.patch"; 21 + url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/commits/2c778334a9fc2f0ccf9b1d7635c116bce6509748/raw"; 22 + sha256 = "1smyp3x5n6jwxpgw60xsijq2fn6g1gl759h1lm5agaxhcyyqn0i0"; 23 + }) 24 + (fetchpatch { 25 + name = "fix-build-failure-on-gcc-6.patch"; 20 26 url = "https://bitbucket.org/acoustid/acoustid-fingerprinter/commits/632e87969c3a5562a5d4842b03613267ba6236b2/raw"; 21 27 sha256 = "15hm9knrpqn3yqrwyjz4zh2aypwbcycd0c5svrsy1fb2h2rh05jk"; 22 28 }) 23 - ./ffmpeg.patch 24 29 ]; 25 30 26 31 meta = with lib; {
-26
pkgs/tools/audio/acoustid-fingerprinter/ffmpeg.patch
··· 1 - diff --git a/decoder.h b/decoder.h 2 - index 028f58f..4428ac1 100644 3 - --- a/decoder.h 4 - +++ b/decoder.h 5 - @@ -39,6 +39,8 @@ extern "C" { 6 - #define AV_SAMPLE_FMT_S16 SAMPLE_FMT_S16 7 - #endif 8 - 9 - +#define AVCODEC_MAX_AUDIO_FRAME_SIZE 192000 10 - + 11 - class Decoder 12 - { 13 - public: 14 - diff --git a/ffmpeg/audioconvert.h b/ffmpeg/audioconvert.h 15 - index 2b28e2e..a699986 100644 16 - --- a/ffmpeg/audioconvert.h 17 - +++ b/ffmpeg/audioconvert.h 18 - @@ -79,7 +79,7 @@ int avcodec_channel_layout_num_channels(int64_t channel_layout); 19 - * @param fmt_name Format name, or NULL if unknown 20 - * @return Channel layout mask 21 - */ 22 - -uint64_t avcodec_guess_channel_layout(int nb_channels, enum CodecID codec_id, const char *fmt_name); 23 - +uint64_t avcodec_guess_channel_layout(int nb_channels, enum AVCodecID codec_id, const char *fmt_name); 24 - 25 - struct AVAudioConvert; 26 - typedef struct AVAudioConvert AVAudioConvert;
+2 -2
pkgs/tools/security/gitleaks/default.nix
··· 5 5 6 6 buildGoModule rec { 7 7 pname = "gitleaks"; 8 - version = "7.4.1"; 8 + version = "7.5.0"; 9 9 10 10 src = fetchFromGitHub { 11 11 owner = "zricethezav"; 12 12 repo = pname; 13 13 rev = "v${version}"; 14 - sha256 = "sha256-GoHntsyxrMzLHlyKC3JxCkLoquIjOtidcG7hTNTYGuI="; 14 + sha256 = "sha256-s7EOCoGciGT5+Fose9BffsHHE/SsSMmNoWGmeAv6Agk="; 15 15 }; 16 16 17 17 vendorSha256 = "sha256-Cc4DJPpOMHxDcH22S7znYo7QHNRXv8jOJhznu09kaE4=";
+1
pkgs/top-level/aliases.nix
··· 354 354 kinetic-cpp-client = throw "kinetic-cpp-client has been removed from nixpkgs, as it's abandoned."; # 2020-04-28 355 355 kicad-with-packages3d = kicad; # added 2019-11-25 356 356 kindlegen = throw "kindlegen has been removed from nixpkgs, as it's abandoned and no longer available for download."; # 2021-03-09 357 + kino = throw "kino has been removed because it was broken and abandoned"; # added 2021-04-25 357 358 krename-qt5 = krename; # added 2017-02-18 358 359 kerberos = libkrb5; # moved from top-level 2021-03-14 359 360 keymon = throw "keymon has been removed from nixpkgs, as it's abandoned and archived."; # 2019-12-10
+12 -14
pkgs/top-level/all-packages.nix
··· 693 693 694 694 acousticbrainz-client = callPackage ../tools/audio/acousticbrainz-client { }; 695 695 696 - acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter { 697 - ffmpeg = ffmpeg_2; 698 - }; 696 + acoustidFingerprinter = callPackage ../tools/audio/acoustid-fingerprinter { }; 699 697 700 698 alsaequal = callPackage ../tools/audio/alsaequal { }; 701 699 ··· 15552 15554 15553 15555 libdeflate = callPackage ../development/libraries/libdeflate { }; 15554 15556 15557 + libdeltachat = callPackage ../development/libraries/libdeltachat { }; 15558 + 15555 15559 libdevil = callPackage ../development/libraries/libdevil { 15556 15560 inherit (darwin.apple_sdk.frameworks) OpenGL; 15557 15561 }; ··· 21090 21090 21091 21091 wpa_supplicant = callPackage ../os-specific/linux/wpa_supplicant { }; 21092 21092 21093 + wpa_supplicant_ro_ssids = wpa_supplicant.override { 21094 + readOnlyModeSSIDs = true; 21095 + }; 21096 + 21093 21097 wpa_supplicant_gui = libsForQt5.callPackage ../os-specific/linux/wpa_supplicant/gui.nix { }; 21094 21098 21095 21099 xf86_input_cmt = callPackage ../os-specific/linux/xf86-input-cmt { }; ··· 22512 22508 cmus = callPackage ../applications/audio/cmus { 22513 22509 inherit (darwin.apple_sdk.frameworks) AudioUnit CoreAudio; 22514 22510 libjack = libjack2; 22515 - ffmpeg = ffmpeg_2; 22516 22511 }; 22517 22512 22518 22513 cmusfm = callPackage ../applications/audio/cmusfm { }; ··· 24182 24179 24183 24180 kbibtex = libsForQt5.callPackage ../applications/office/kbibtex { }; 24184 24181 24182 + kdeltachat = libsForQt5.callPackage ../applications/networking/instant-messengers/kdeltachat { }; 24183 + 24185 24184 kdevelop-pg-qt = libsForQt5.callPackage ../applications/editors/kdevelop5/kdevelop-pg-qt.nix { }; 24186 24185 24187 24186 kdevelop-unwrapped = libsForQt5.callPackage ../applications/editors/kdevelop5/kdevelop.nix { ··· 24226 24221 kid3 = libsForQt5.callPackage ../applications/audio/kid3 { }; 24227 24222 24228 24223 kile = libsForQt5.callPackage ../applications/editors/kile { }; 24229 - 24230 - kino = callPackage ../applications/video/kino { 24231 - inherit (gnome2) libglade; 24232 - ffmpeg = ffmpeg_2; 24233 - }; 24234 24224 24235 24225 kitsas = libsForQt5.callPackage ../applications/office/kitsas { }; 24236 24226 ··· 25304 25304 owamp = callPackage ../applications/networking/owamp { }; 25305 25305 25306 25306 vieb = callPackage ../applications/networking/browsers/vieb { 25307 - electron = electron_11; 25307 + electron = electron_12; 25308 25308 }; 25309 25309 25310 25310 vivaldi = callPackage ../applications/networking/browsers/vivaldi {}; ··· 27598 27598 27599 27599 airstrike = callPackage ../games/airstrike { }; 27600 27600 27601 - alephone = callPackage ../games/alephone { ffmpeg = ffmpeg_2; }; 27601 + alephone = callPackage ../games/alephone { }; 27602 27602 alephone-durandal = callPackage ../games/alephone/durandal { }; 27603 27603 alephone-eternal = callPackage ../games/alephone/eternal { }; 27604 27604 alephone-evil = callPackage ../games/alephone/evil { }; ··· 28464 28464 28465 28465 ultrastar-manager = libsForQt5.callPackage ../tools/misc/ultrastar-manager { }; 28466 28466 28467 - ultrastardx = callPackage ../games/ultrastardx { 28468 - ffmpeg = ffmpeg_2; 28469 - }; 28467 + ultrastardx = callPackage ../games/ultrastardx { }; 28470 28468 28471 28469 unciv = callPackage ../games/unciv { }; 28472 28470
+2
pkgs/top-level/python-packages.nix
··· 1751 1751 1752 1752 delegator-py = callPackage ../development/python-modules/delegator-py { }; 1753 1753 1754 + deltachat = callPackage ../development/python-modules/deltachat { }; 1755 + 1754 1756 deluge-client = callPackage ../development/python-modules/deluge-client { }; 1755 1757 1756 1758 demjson = callPackage ../development/python-modules/demjson { };