Merge staging-next into staging

authored by

github-actions[bot] and committed by
GitHub
06497575 fb2311d4

+4143 -2702
+1 -1
.github/workflows/manual-nixos.yml
··· 25 25 name: nixpkgs-ci 26 26 signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 27 27 - name: Building NixOS manual 28 - run: nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux 28 + run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true nixos/release.nix -A manual.x86_64-linux
+1 -1
.github/workflows/manual-nixpkgs.yml
··· 25 25 name: nixpkgs-ci 26 26 signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' 27 27 - name: Building Nixpkgs manual 28 - run: nix-build --option restrict-eval true pkgs/top-level/release.nix -A manual 28 + run: NIX_PATH=nixpkgs=$(pwd) nix-build --option restrict-eval true pkgs/top-level/release.nix -A manual
+31 -6
pkgs/applications/audio/opustags/default.nix
··· 1 - { stdenv, lib, cmake, pkgconfig, libogg, fetchFromGitHub, libiconv }: 1 + { stdenv, fetchFromGitHub, fetchpatch, cmake, pkg-config, libiconv, libogg 2 + , ffmpeg, glibcLocales, perl, perlPackages }: 3 + 2 4 stdenv.mkDerivation rec { 3 5 pname = "opustags"; 4 - version = "1.4.0"; 6 + version = "1.5.1"; 5 7 6 8 src = fetchFromGitHub { 7 9 owner = "fmang"; 8 10 repo = "opustags"; 9 11 rev = version; 10 - sha256 = "1y0czl72paawy342ff9ickaamkih43k59yfcdw7bnddypyfa7nbg"; 12 + sha256 = "1dicv4s395b9gb4jpr0rnxdq9azr45pid62q3x08lb7cvyq3yxbh"; 11 13 }; 12 14 15 + patches = [ 16 + # Fix building on darwin 17 + (fetchpatch { 18 + url = "https://github.com/fmang/opustags/commit/64fc6f8f6d20e034892e89abff0236c85cae98dc.patch"; 19 + sha256 = "1djifzqhf1w51gbpqbndsh3gnl9iizp6hppxx8x2a92i9ns22zpg"; 20 + }) 21 + (fetchpatch { 22 + url = "https://github.com/fmang/opustags/commit/f98208c1a1d10c15f98b127bbfdf88a7b15b08dc.patch"; 23 + sha256 = "1h3v0r336fca0y8zq1vl2wr8gaqs3vvrrckx7pvji4k1jpiqvp38"; 24 + }) 25 + ]; 26 + 13 27 buildInputs = [ libogg ]; 14 28 15 - nativeBuildInputs = [ cmake pkgconfig ] ++ lib.optional stdenv.isDarwin libiconv; 29 + nativeBuildInputs = [ cmake pkg-config ] ++ stdenv.lib.optional stdenv.isDarwin libiconv; 30 + 31 + doCheck = true; 32 + 33 + checkInputs = [ ffmpeg glibcLocales perl ] ++ (with perlPackages; [ ListMoreUtils ]); 16 34 17 - meta = with lib; { 35 + checkPhase = '' 36 + export LANG="en_US.UTF-8" 37 + export LC_ALL="en_US.UTF-8" 38 + make check 39 + ''; 40 + 41 + meta = with stdenv.lib; { 18 42 homepage = "https://github.com/fmang/opustags"; 19 43 description = "Ogg Opus tags editor"; 20 44 platforms = platforms.all; 21 - maintainers = [ maintainers.kmein ]; 45 + broken = stdenv.isDarwin; 46 + maintainers = with maintainers; [ kmein SuperSandro2000 ]; 22 47 license = licenses.bsd3; 23 48 }; 24 49 }
+2 -2
pkgs/applications/audio/pt2-clone/default.nix
··· 8 8 9 9 stdenv.mkDerivation rec { 10 10 pname = "pt2-clone"; 11 - version = "1.27"; 11 + version = "1.28"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "8bitbubsy"; 15 15 repo = "pt2-clone"; 16 16 rev = "v${version}"; 17 - sha256 = "1hg36pfzgdbhd5bkzi3cpn6v39q8xis2jk7w6qm615r587393pwd"; 17 + sha256 = "1c2x43f46l7556kl9y9qign0g6ywdkh7ywkzv6c9y63n68ph20x2"; 18 18 }; 19 19 20 20 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/blockchains/monero-gui/default.nix
··· 28 28 29 29 stdenv.mkDerivation rec { 30 30 pname = "monero-gui"; 31 - version = "0.17.1.7"; 31 + version = "0.17.1.8"; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "monero-project"; 35 35 repo = "monero-gui"; 36 36 rev = "v${version}"; 37 - sha256 = "1dd2ddkxh9ynxnscysl46hj4dm063h1v13fnyah69am26qzzbby4"; 37 + sha256 = "13cjrfdkr7c2ff8j2rg8hvhlc00af38vcs67wlx2109i2baq4pp3"; 38 38 }; 39 39 40 40 nativeBuildInputs = [
+2 -2
pkgs/applications/blockchains/monero/default.nix
··· 17 17 18 18 stdenv.mkDerivation rec { 19 19 pname = "monero"; 20 - version = "0.17.1.7"; 20 + version = "0.17.1.8"; 21 21 22 22 src = fetchFromGitHub { 23 23 owner = "monero-project"; 24 24 repo = "monero"; 25 25 rev = "v${version}"; 26 - sha256 = "1fdw4i4rw87yz3hz4yc1gdw0gr2mmf9038xaw2l4rrk5y50phjp4"; 26 + sha256 = "10blazbk1602slx3wrmw4jfgkdry55iclrhm5drdficc5v3h735g"; 27 27 fetchSubmodules = true; 28 28 }; 29 29
+2 -2
pkgs/applications/graphics/evilpixie/default.nix
··· 22 22 23 23 in mkDerivation rec { 24 24 pname = "evilpixie"; 25 - version = "0.2"; 25 + version = "0.2.1"; 26 26 27 27 src = fetchFromGitHub { 28 28 owner = "bcampbell"; 29 29 repo = "evilpixie"; 30 30 rev = "v${version}"; 31 - sha256 = "1yg4ic3kcxqmr7k5bbvrv5iavlnhpdx6510z5wha9k9k5q9c4dvh"; 31 + sha256 = "0dwgfr8kmkfppgf5wx9i5f7fjz3gxk0ji1l06x1z4r3vj52hdbph"; 32 32 }; 33 33 34 34 nativeBuildInputs = [
+1 -1
pkgs/applications/misc/redshift/default.nix
··· 10 10 , withGeolocation ? true 11 11 , withCoreLocation ? withGeolocation && stdenv.isDarwin, CoreLocation, Foundation, Cocoa 12 12 , withGeoclue ? withGeolocation && stdenv.isLinux, geoclue 13 - , withAppIndicator ? true, libappindicator, libayatana-appindicator 13 + , withAppIndicator ? stdenv.isLinux, libappindicator, libayatana-appindicator 14 14 }: 15 15 16 16 let
+3 -3
pkgs/applications/networking/pcloud/default.nix
··· 26 26 27 27 let 28 28 pname = "pcloud"; 29 - version = "1.8.8"; 29 + version = "1.8.9"; 30 30 name = "${pname}-${version}"; 31 31 32 32 # Archive link's code thanks to: https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=pcloud-drive 33 33 src = fetchzip { 34 - url = "https://api.pcloud.com/getpubzip?code=XZpnMpXZPWyhRfdvXUhyY6XpdfmQmJiLRmmV&filename=${name}.zip"; 35 - hash = "sha256-z9OeFkH6EVthg5Dz2mN3jlBTMhiMt/6bUIYFeMO6EXk="; 34 + url = "https://api.pcloud.com/getpubzip?code=XZjfKzXZ6h3uGRFId48VRNHHkuqajhRvMlPV&filename=${name}.zip"; 35 + hash = "sha256:1bwdwfwgy3wwzlggi8qhf5q2bq2kqiqi3mgvsr9w0mxyaxxv13r8"; 36 36 }; 37 37 38 38 appimageContents = appimageTools.extractType2 {
+25
pkgs/applications/science/biology/bowtie/default.nix
··· 1 + { stdenv, fetchFromGitHub, zlib }: 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "bowtie"; 5 + version = "1.3.0"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "BenLangmead"; 9 + repo = pname; 10 + rev = "v${version}"; 11 + sha256 = "0da2kzyfsn6xv8mlqsv2vv7k8g0c9d2vgqzq8yqk888yljdzcrjp"; 12 + }; 13 + 14 + buildInputs = [ zlib ]; 15 + 16 + installFlags = [ "prefix=$(out)" ]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "An ultrafast memory-efficient short read aligner"; 20 + license = licenses.artistic2; 21 + homepage = "http://bowtie-bio.sf.net/bowtie"; 22 + maintainers = with maintainers; [ prusnak ]; 23 + platforms = platforms.all; 24 + }; 25 + }
+9 -9
pkgs/development/compilers/nextpnr/default.nix
··· 3 3 , icestorm, trellis 4 4 , llvmPackages 5 5 6 - , enableGui ? true 7 - , wrapQtAppsHook 8 - , qtbase 6 + , enableGui ? false 7 + , wrapQtAppsHook ? null 8 + , qtbase ? null 9 9 , OpenGL ? null 10 10 }: 11 11 ··· 14 14 in 15 15 with stdenv; mkDerivation rec { 16 16 pname = "nextpnr"; 17 - version = "2020.12.01"; 17 + version = "2021.01.02"; 18 18 19 19 srcs = [ 20 20 (fetchFromGitHub { 21 21 owner = "YosysHQ"; 22 22 repo = "nextpnr"; 23 - rev = "868902fbdf0b476bdccf4d25cbb80ba602d2cc11"; 24 - sha256 = "1kb5lhixb7f4q800gjyw9xm9ff1yaq3pgna17f5f0bw6b4ds56zc"; 23 + rev = "9b9628047c01a970cfe20f83f2b7129ed109440d"; 24 + sha256 = "0pcv96d0n40h2ipywi909hpzlys5b6r4pamc320qk1xxhppmgkmm"; 25 25 name = "nextpnr"; 26 26 }) 27 27 (fetchFromGitHub { ··· 48 48 [ "-DCURRENT_GIT_VERSION=${lib.substring 0 7 (lib.elemAt srcs 0).rev}" 49 49 "-DARCH=generic;ice40;ecp5" 50 50 "-DBUILD_TESTS=ON" 51 - "-DICEBOX_ROOT=${icestorm}/share/icebox" 51 + "-DICESTORM_INSTALL_PREFIX=${icestorm}" 52 52 "-DTRELLIS_INSTALL_PREFIX=${trellis}" 53 53 "-DTRELLIS_LIBDIR=${trellis}/lib/trellis" 54 54 "-DUSE_OPENMP=ON" 55 55 # warning: high RAM usage 56 - "-DSERIALIZE_CHIPDB=OFF" 56 + "-DSERIALIZE_CHIPDBS=OFF" 57 57 ] 58 - ++ (lib.optional (!enableGui) "-DBUILD_GUI=OFF") 58 + ++ (lib.optional enableGui "-DBUILD_GUI=ON") 59 59 ++ (lib.optional (enableGui && stdenv.isDarwin) 60 60 "-DOPENGL_INCLUDE_DIR=${OpenGL}/Library/Frameworks"); 61 61
+3 -3
pkgs/development/compilers/yosys/default.nix
··· 33 33 34 34 stdenv.mkDerivation rec { 35 35 pname = "yosys"; 36 - version = "0.9+3715"; 36 + version = "0.9+3830"; 37 37 38 38 src = fetchFromGitHub { 39 39 owner = "YosysHQ"; 40 40 repo = "yosys"; 41 - rev = "d021f4b4003bb7a374038134c65edd3f67473a92"; 42 - sha256 = "0dgdpigqg8mwkry4233p6z6myjnrb1rq32873yhdfwvwqq230x51"; 41 + rev = "b72c29465392c8d260ddf55def169438f7fb64b2"; 42 + sha256 = "12h3pgj8bjb254q2qaafc3qxwhqdqrx0sxjhgjrfy8cmkdm92dvy"; 43 43 }; 44 44 45 45 enableParallelBuilding = true;
+4 -9
pkgs/development/libraries/codec2/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake } : 1 + { stdenv, fetchFromGitHub, cmake }: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 + pname = "codec2"; 4 5 version = "0.9.2"; 5 6 6 - in stdenv.mkDerivation { 7 - pname = "codec2"; 8 - inherit version; 9 - 10 7 src = fetchFromGitHub { 11 8 owner = "drowe67"; 12 9 repo = "codec2"; ··· 14 11 sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba"; 15 12 }; 16 13 17 - enableParallelBuilding = true; 18 - 19 14 nativeBuildInputs = [ cmake ]; 20 15 21 16 meta = with stdenv.lib; { 22 17 description = "Speech codec designed for communications quality speech at low data rates"; 23 18 homepage = "http://www.rowetel.com/blog/?page_id=452"; 24 19 license = licenses.lgpl21; 25 - platforms = platforms.linux; 20 + platforms = platforms.unix; 26 21 maintainers = with maintainers; [ markuskowa ]; 27 22 }; 28 23 }
+1
pkgs/development/libraries/qt-5/5.12/default.nix
··· 76 76 ./qtbase.patch.d/0014-qtbase-pkg-config.patch 77 77 ]; 78 78 qtdeclarative = [ ./qtdeclarative.patch ]; 79 + qtlocation = [ ./qtlocation-gcc-9.patch ]; 79 80 qtscript = [ ./qtscript.patch ]; 80 81 qtserialport = [ ./qtserialport.patch ]; 81 82 qtwebengine = [
+21
pkgs/development/libraries/qt-5/5.12/qtlocation-gcc-9.patch
··· 1 + diff --git a/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp b/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp 2 + index d475c38..c1710a6 100644 3 + --- a/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp 4 + +++ b/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp 5 + @@ -5,6 +5,7 @@ 6 + #include <unicode/ushape.h> 7 + 8 + #include <memory> 9 + +#include <stdexcept> 10 + 11 + namespace mbgl { 12 + 13 + diff --git a/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp b/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp 14 + index 97bfe91..56d3e17 100644 15 + --- a/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp 16 + +++ b/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp 17 + @@ -1,3 +1,4 @@ 18 + +#include <cstdint> 19 + #include <mbgl/util/convert.hpp> 20 + 21 + namespace mbgl {
+1
pkgs/development/libraries/qt-5/5.14/default.nix
··· 75 75 ./qtbase.patch.d/0011-fix-header_module.patch 76 76 ]; 77 77 qtdeclarative = [ ./qtdeclarative.patch ]; 78 + qtlocation = [ ./qtlocation-gcc-9.patch ]; 78 79 qtscript = [ ./qtscript.patch ]; 79 80 qtserialport = [ ./qtserialport.patch ]; 80 81 qtwebengine = [
+21
pkgs/development/libraries/qt-5/5.14/qtlocation-gcc-9.patch
··· 1 + diff --git a/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp b/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp 2 + index d475c38..c1710a6 100644 3 + --- a/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp 4 + +++ b/src/3rdparty/mapbox-gl-native/platform/default/bidi.cpp 5 + @@ -5,6 +5,7 @@ 6 + #include <unicode/ushape.h> 7 + 8 + #include <memory> 9 + +#include <stdexcept> 10 + 11 + namespace mbgl { 12 + 13 + diff --git a/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp b/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp 14 + index 97bfe91..56d3e17 100644 15 + --- a/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp 16 + +++ b/src/3rdparty/mapbox-gl-native/src/mbgl/util/convert.cpp 17 + @@ -1,3 +1,4 @@ 18 + +#include <cstdint> 19 + #include <mbgl/util/convert.hpp> 20 + 21 + namespace mbgl {
-1
pkgs/development/libraries/qt-5/modules/qtlocation.nix
··· 10 10 # https://libcxx.llvm.org/docs/UsingLibcxx.html#c-17-specific-configuration-macros 11 11 "QMAKE_CXXFLAGS+=-D_LIBCPP_ENABLE_CXX17_REMOVED_AUTO_PTR" 12 12 ]; 13 - 14 13 }
+2 -2
pkgs/development/libraries/vulkan-headers/default.nix
··· 1 1 { stdenv, fetchFromGitHub, cmake }: 2 2 stdenv.mkDerivation rec { 3 3 pname = "vulkan-headers"; 4 - version = "1.2.141.0"; 4 + version = "1.2.162.0"; 5 5 6 6 nativeBuildInputs = [ cmake ]; 7 7 ··· 9 9 owner = "KhronosGroup"; 10 10 repo = "Vulkan-Headers"; 11 11 rev = "sdk-${version}"; 12 - sha256 = "10nmx6y4llllfcczyfz76amd0vkqv09dj952d19zkzmmgcval7zq"; 12 + sha256 = "057c49w1138l02v9gqsk1z8wdz0iilp96jblnldycwm9jc1a1ipq"; 13 13 }; 14 14 15 15 meta = with stdenv.lib; {
+2 -2
pkgs/development/libraries/vulkan-loader/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 pname = "vulkan-loader"; 6 - version = "1.2.141.0"; 6 + version = "1.2.162.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "KhronosGroup"; 10 10 repo = "Vulkan-Loader"; 11 11 rev = "sdk-${version}"; 12 - sha256 = "10fyg71dza6qakz5zdchccfn0zcr8b1zpfi2rqir6jpzcbi28kcj"; 12 + sha256 = "0w9i2pliw4ccmjyfzff4i2f3hxwsfd54jg7ahv2v634qmx59bsbi"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ pkgconfig cmake ];
+17 -2
pkgs/development/node-packages/default.nix
··· 77 77 buildInputs = [ self.node-gyp-build pkgs.unbound ]; 78 78 }; 79 79 80 + ijavascript = super.ijavascript.override (oldAttrs: { 81 + preRebuild = '' 82 + export NPM_CONFIG_ZMQ_EXTERNAL=true 83 + ''; 84 + buildInputs = oldAttrs.buildInputs ++ [ self.node-gyp-build pkgs.zeromq ]; 85 + }); 86 + 80 87 insect = super.insect.override (drv: { 81 88 nativeBuildInputs = drv.nativeBuildInputs or [] ++ [ pkgs.psc-package self.pulp ]; 82 89 }); ··· 189 196 meta.broken = since "10"; 190 197 }; 191 198 199 + stf = super.stf.override { 200 + meta.broken = since "10"; 201 + }; 202 + 192 203 tedicross = super."tedicross-git+https://github.com/TediCross/TediCross.git#v0.8.7".override { 193 204 nativeBuildInputs = [ pkgs.makeWrapper ]; 194 205 postInstall = '' ··· 205 216 ''; 206 217 }); 207 218 208 - stf = super.stf.override { 209 - meta.broken = since "10"; 219 + typescript-language-server = super.typescript-language-server.override { 220 + nativeBuildInputs = [ pkgs.makeWrapper ]; 221 + postInstall = '' 222 + wrapProgram "$out/bin/typescript-language-server" \ 223 + --prefix PATH : ${stdenv.lib.makeBinPath [ self.typescript ]} 224 + ''; 210 225 }; 211 226 212 227 vega-cli = super.vega-cli.override {
+6
pkgs/development/node-packages/node-packages.json
··· 18 18 , "browserify" 19 19 , "btc-rpc-explorer" 20 20 , "castnow" 21 + , "cdk8s-cli" 21 22 , "cdktf-cli" 22 23 , "clean-css-cli" 23 24 , "clubhouse-cli" ··· 77 78 , "escape-string-regexp" 78 79 , "eslint" 79 80 , "eslint_d" 81 + , "esy" 80 82 , "expo-cli" 81 83 , {"fast-cli": "1.x"} 82 84 , "fauna-shell" 85 + , "firebase-tools" 83 86 , "fixjson" 84 87 , "fkill-cli" 85 88 , "flood" ··· 105 108 , "hs-airdrop" 106 109 , "hs-client" 107 110 , "hueadm" 111 + , "ijavascript" 108 112 , "inliner" 109 113 , "imapnotify" 110 114 , "indium" ··· 151 155 , "node-red" 152 156 , "node2nix" 153 157 , "nodemon" 158 + , "np" 154 159 , "npm" 155 160 , "npm-check-updates" 156 161 , {"npm2nix": "git://github.com/NixOS/npm2nix.git#5.12.0"} ··· 171 176 , "purescript-psa" 172 177 , "purty" 173 178 , "pyright" 179 + , "quicktype" 174 180 , "react-native-cli" 175 181 , "react-tools" 176 182 , "readability-cli"
+3214 -197
pkgs/development/node-packages/node-packages.nix
··· 184 184 sha512 = "eorTmZW7zc6ZHgGLt3Vrq7mzPuobPeJnyfli50/m/DIQ91slkqjPKUYGcq4paPEz6IWoa7LT2ZwtwA5KzMyTPg=="; 185 185 }; 186 186 }; 187 + "@apidevtools/json-schema-ref-parser-9.0.6" = { 188 + name = "_at_apidevtools_slash_json-schema-ref-parser"; 189 + packageName = "@apidevtools/json-schema-ref-parser"; 190 + version = "9.0.6"; 191 + src = fetchurl { 192 + url = "https://registry.npmjs.org/@apidevtools/json-schema-ref-parser/-/json-schema-ref-parser-9.0.6.tgz"; 193 + sha512 = "M3YgsLjI0lZxvrpeGVk9Ap032W6TPQkH6pRAZz81Ac3WUNF79VQooAFnp8umjvVzUmD93NkogxEwbSce7qMsUg=="; 194 + }; 195 + }; 187 196 "@apollo/federation-0.20.7" = { 188 197 name = "_at_apollo_slash_federation"; 189 198 packageName = "@apollo/federation"; ··· 2074 2083 sha512 = "pzqDZC2bVD6/S45Bnve4wmrXi4cN7XiCr+OhzvgmoQfDkm5vyXsa82/cVtif/zy1OFU96S9zOTtt3e+QQuGUUg=="; 2075 2084 }; 2076 2085 }; 2086 + "@google-cloud/paginator-3.0.5" = { 2087 + name = "_at_google-cloud_slash_paginator"; 2088 + packageName = "@google-cloud/paginator"; 2089 + version = "3.0.5"; 2090 + src = fetchurl { 2091 + url = "https://registry.npmjs.org/@google-cloud/paginator/-/paginator-3.0.5.tgz"; 2092 + sha512 = "N4Uk4BT1YuskfRhKXBs0n9Lg2YTROZc6IMpkO/8DIHODtm5s3xY8K5vVBo23v/2XulY3azwITQlYWgT4GdLsUw=="; 2093 + }; 2094 + }; 2095 + "@google-cloud/precise-date-2.0.3" = { 2096 + name = "_at_google-cloud_slash_precise-date"; 2097 + packageName = "@google-cloud/precise-date"; 2098 + version = "2.0.3"; 2099 + src = fetchurl { 2100 + url = "https://registry.npmjs.org/@google-cloud/precise-date/-/precise-date-2.0.3.tgz"; 2101 + sha512 = "+SDJ3ZvGkF7hzo6BGa8ZqeK3F6Z4+S+KviC9oOK+XCs3tfMyJCh/4j93XIWINgMMDIh9BgEvlw4306VxlXIlYA=="; 2102 + }; 2103 + }; 2104 + "@google-cloud/projectify-2.0.1" = { 2105 + name = "_at_google-cloud_slash_projectify"; 2106 + packageName = "@google-cloud/projectify"; 2107 + version = "2.0.1"; 2108 + src = fetchurl { 2109 + url = "https://registry.npmjs.org/@google-cloud/projectify/-/projectify-2.0.1.tgz"; 2110 + sha512 = "ZDG38U/Yy6Zr21LaR3BTiiLtpJl6RkPS/JwoRT453G+6Q1DhlV0waNf8Lfu+YVYGIIxgKnLayJRfYlFJfiI8iQ=="; 2111 + }; 2112 + }; 2113 + "@google-cloud/promisify-2.0.3" = { 2114 + name = "_at_google-cloud_slash_promisify"; 2115 + packageName = "@google-cloud/promisify"; 2116 + version = "2.0.3"; 2117 + src = fetchurl { 2118 + url = "https://registry.npmjs.org/@google-cloud/promisify/-/promisify-2.0.3.tgz"; 2119 + sha512 = "d4VSA86eL/AFTe5xtyZX+ePUjE8dIFu2T8zmdeNBSa5/kNgXPCx/o/wbFNHAGLJdGnk1vddRuMESD9HbOC8irw=="; 2120 + }; 2121 + }; 2122 + "@google-cloud/pubsub-2.7.0" = { 2123 + name = "_at_google-cloud_slash_pubsub"; 2124 + packageName = "@google-cloud/pubsub"; 2125 + version = "2.7.0"; 2126 + src = fetchurl { 2127 + url = "https://registry.npmjs.org/@google-cloud/pubsub/-/pubsub-2.7.0.tgz"; 2128 + sha512 = "wc/XOo5Ibo3GWmuaLu80EBIhXSdu2vf99HUqBbdsSSkmRNIka2HqoIhLlOFnnncQn0lZnGL7wtKGIDLoH9LiBg=="; 2129 + }; 2130 + }; 2077 2131 "@graphql-cli/common-4.1.0" = { 2078 2132 name = "_at_graphql-cli_slash_common"; 2079 2133 packageName = "@graphql-cli/common"; ··· 2200 2254 sha512 = "KCWBXsDfvG46GNUawRltJL4j9BMGoOG7oo3WEyCQP+SByWXiTe5cBF45SLDVQgdjljGNZhZ4Lq/7avIkF7/zDQ=="; 2201 2255 }; 2202 2256 }; 2257 + "@grpc/grpc-js-1.1.8" = { 2258 + name = "_at_grpc_slash_grpc-js"; 2259 + packageName = "@grpc/grpc-js"; 2260 + version = "1.1.8"; 2261 + src = fetchurl { 2262 + url = "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.1.8.tgz"; 2263 + sha512 = "64hg5rmEm6F/NvlWERhHmmgxbWU8nD2TMWE+9TvG7/WcOrFT3fzg/Uu631pXRFwmJ4aWO/kp9vVSlr8FUjBDLA=="; 2264 + }; 2265 + }; 2266 + "@grpc/proto-loader-0.5.5" = { 2267 + name = "_at_grpc_slash_proto-loader"; 2268 + packageName = "@grpc/proto-loader"; 2269 + version = "0.5.5"; 2270 + src = fetchurl { 2271 + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.5.5.tgz"; 2272 + sha512 = "WwN9jVNdHRQoOBo9FDH7qU+mgfjPc8GygPYms3M+y3fbQLfnCe/Kv/E01t7JRgnrsOHH8euvSbed3mIalXhwqQ=="; 2273 + }; 2274 + }; 2275 + "@grpc/proto-loader-0.6.0-pre9" = { 2276 + name = "_at_grpc_slash_proto-loader"; 2277 + packageName = "@grpc/proto-loader"; 2278 + version = "0.6.0-pre9"; 2279 + src = fetchurl { 2280 + url = "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.6.0-pre9.tgz"; 2281 + sha512 = "oM+LjpEjNzW5pNJjt4/hq1HYayNeQT+eGrOPABJnYHv7TyNPDNzkQ76rDYZF86X5swJOa4EujEMzQ9iiTdPgww=="; 2282 + }; 2283 + }; 2203 2284 "@gulp-sourcemaps/identity-map-1.0.2" = { 2204 2285 name = "_at_gulp-sourcemaps_slash_identity-map"; 2205 2286 packageName = "@gulp-sourcemaps/identity-map"; ··· 2812 2893 sha512 = "6uUXRU5PILzKAUP50t9FOyMrpGgfpw2ugrZ8hAfV+PhNZsjSgsc+cSBBdjn/HIEgNCr9m7TlHSzscxrHg496Iw=="; 2813 2894 }; 2814 2895 }; 2896 + "@jsdevtools/ono-7.1.3" = { 2897 + name = "_at_jsdevtools_slash_ono"; 2898 + packageName = "@jsdevtools/ono"; 2899 + version = "7.1.3"; 2900 + src = fetchurl { 2901 + url = "https://registry.npmjs.org/@jsdevtools/ono/-/ono-7.1.3.tgz"; 2902 + sha512 = "4JQNk+3mVzK3xh2rqd6RB4J46qUR19azEHBneZyTZM+c456qOrbbM/5xcR8huNCCcbVt7+UmizG6GuUvPvKUYg=="; 2903 + }; 2904 + }; 2815 2905 "@jsii/spec-1.16.0" = { 2816 2906 name = "_at_jsii_slash_spec"; 2817 2907 packageName = "@jsii/spec"; ··· 3370 3460 sha512 = "RibeMnDPvlL8bFYW5C8cs4mbI3AHfQef73tnJCQ/SgrXZHehmHnsyWUiE7qDQCAo+B1RfTapvSyFF69iPj326A=="; 3371 3461 }; 3372 3462 }; 3463 + "@mark.probst/typescript-json-schema-0.32.0" = { 3464 + name = "_at_mark.probst_slash_typescript-json-schema"; 3465 + packageName = "@mark.probst/typescript-json-schema"; 3466 + version = "0.32.0"; 3467 + src = fetchurl { 3468 + url = "https://registry.npmjs.org/@mark.probst/typescript-json-schema/-/typescript-json-schema-0.32.0.tgz"; 3469 + sha512 = "OoD+5D7Mka80FIcmvPyuAKV7g5Of5S04R74S4DTAG8pr9REDWySUh9pOloro7SNFwWt/+2f90wyP+DtGHykVfg=="; 3470 + }; 3471 + }; 3472 + "@mark.probst/unicode-properties-1.1.0" = { 3473 + name = "_at_mark.probst_slash_unicode-properties"; 3474 + packageName = "@mark.probst/unicode-properties"; 3475 + version = "1.1.0"; 3476 + src = fetchurl { 3477 + url = "https://registry.npmjs.org/@mark.probst/unicode-properties/-/unicode-properties-1.1.0.tgz"; 3478 + sha512 = "7AQsO0hMmpqDledV7AhBuSYqYPFsKP9PaltMecX9nlnsyFxqtsqUg9/pvB2L/jxvskrDrNkdKYz2KTbQznCtng=="; 3479 + }; 3480 + }; 3373 3481 "@mdn/browser-compat-data-2.0.7" = { 3374 3482 name = "_at_mdn_slash_browser-compat-data"; 3375 3483 packageName = "@mdn/browser-compat-data"; ··· 4027 4135 sha512 = "PffXX2AL8Sh0VHQ52jJC4u3T0H6wDK6N/4bg7xh4ngMYOIi13aR1kzVvX1sVDBgfGwDOkMbl4c54Xm3tlPx/+A=="; 4028 4136 }; 4029 4137 }; 4138 + "@opentelemetry/api-0.11.0" = { 4139 + name = "_at_opentelemetry_slash_api"; 4140 + packageName = "@opentelemetry/api"; 4141 + version = "0.11.0"; 4142 + src = fetchurl { 4143 + url = "https://registry.npmjs.org/@opentelemetry/api/-/api-0.11.0.tgz"; 4144 + sha512 = "K+1ADLMxduhsXoZ0GRfi9Pw162FvzBQLDQlHru1lg86rpIU+4XqdJkSGo6y3Kg+GmOWq1HNHOA/ydw/rzHQkRg=="; 4145 + }; 4146 + }; 4147 + "@opentelemetry/context-base-0.11.0" = { 4148 + name = "_at_opentelemetry_slash_context-base"; 4149 + packageName = "@opentelemetry/context-base"; 4150 + version = "0.11.0"; 4151 + src = fetchurl { 4152 + url = "https://registry.npmjs.org/@opentelemetry/context-base/-/context-base-0.11.0.tgz"; 4153 + sha512 = "ESRk+572bftles7CVlugAj5Azrz61VO0MO0TS2pE9MLVL/zGmWuUBQryART6/nsrFqo+v9HPt37GPNcECTZR1w=="; 4154 + }; 4155 + }; 4156 + "@opentelemetry/core-0.11.0" = { 4157 + name = "_at_opentelemetry_slash_core"; 4158 + packageName = "@opentelemetry/core"; 4159 + version = "0.11.0"; 4160 + src = fetchurl { 4161 + url = "https://registry.npmjs.org/@opentelemetry/core/-/core-0.11.0.tgz"; 4162 + sha512 = "ZEKjBXeDGBqzouz0uJmrbEKNExEsQOhsZ3tJDCLcz5dUNoVw642oIn2LYWdQK2YdIfZbEmltiF65/csGsaBtFA=="; 4163 + }; 4164 + }; 4165 + "@opentelemetry/resources-0.11.0" = { 4166 + name = "_at_opentelemetry_slash_resources"; 4167 + packageName = "@opentelemetry/resources"; 4168 + version = "0.11.0"; 4169 + src = fetchurl { 4170 + url = "https://registry.npmjs.org/@opentelemetry/resources/-/resources-0.11.0.tgz"; 4171 + sha512 = "o7DwV1TcezqBtS5YW2AWBcn01nVpPptIbTr966PLlVBcS//w8LkjeOShiSZxQ0lmV4b2en0FiSouSDoXk/5qIQ=="; 4172 + }; 4173 + }; 4174 + "@opentelemetry/semantic-conventions-0.11.0" = { 4175 + name = "_at_opentelemetry_slash_semantic-conventions"; 4176 + packageName = "@opentelemetry/semantic-conventions"; 4177 + version = "0.11.0"; 4178 + src = fetchurl { 4179 + url = "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-0.11.0.tgz"; 4180 + sha512 = "xsthnI/J+Cx0YVDGgUzvrH0ZTtfNtl866M454NarYwDrc0JvC24sYw+XS5PJyk2KDzAHtb0vlrumUc1OAut/Fw=="; 4181 + }; 4182 + }; 4183 + "@opentelemetry/tracing-0.11.0" = { 4184 + name = "_at_opentelemetry_slash_tracing"; 4185 + packageName = "@opentelemetry/tracing"; 4186 + version = "0.11.0"; 4187 + src = fetchurl { 4188 + url = "https://registry.npmjs.org/@opentelemetry/tracing/-/tracing-0.11.0.tgz"; 4189 + sha512 = "QweFmxzl32BcyzwdWCNjVXZT1WeENNS/RWETq/ohqu+fAsTcMyGcr6cOq/yDdFmtBy+bm5WVVdeByEjNS+c4/w=="; 4190 + }; 4191 + }; 4030 4192 "@ot-builder/bin-composite-types-0.10.37" = { 4031 4193 name = "_at_ot-builder_slash_bin-composite-types"; 4032 4194 packageName = "@ot-builder/bin-composite-types"; ··· 5539 5701 sha512 = "Lo5dy3ai6LNnbL663sgdzqL1eib11u1yKH6w3v3IXEOO4kRfQpMn1qWUTaumcHLACjFp1RcBx9tUXEvJoR3vcA=="; 5540 5702 }; 5541 5703 }; 5704 + "@types/duplexify-3.6.0" = { 5705 + name = "_at_types_slash_duplexify"; 5706 + packageName = "@types/duplexify"; 5707 + version = "3.6.0"; 5708 + src = fetchurl { 5709 + url = "https://registry.npmjs.org/@types/duplexify/-/duplexify-3.6.0.tgz"; 5710 + sha512 = "5zOA53RUlzN74bvrSGwjudssD9F3a797sDZQkiYpUOxW+WHaXTCPz4/d5Dgi6FKnOqZ2CpaTo0DhgIfsXAOE/A=="; 5711 + }; 5712 + }; 5542 5713 "@types/ejs-2.7.0" = { 5543 5714 name = "_at_types_slash_ejs"; 5544 5715 packageName = "@types/ejs"; ··· 6079 6250 sha512 = "vwX+/ija9xKc/z9VqMCdbf4WYcMTGsI0I/L/6shIF3qXURxZOhPQlPRHtjTpiNhAwn0paMJzlOQqw6mAGEQnTA=="; 6080 6251 }; 6081 6252 }; 6253 + "@types/node-12.19.11" = { 6254 + name = "_at_types_slash_node"; 6255 + packageName = "@types/node"; 6256 + version = "12.19.11"; 6257 + src = fetchurl { 6258 + url = "https://registry.npmjs.org/@types/node/-/node-12.19.11.tgz"; 6259 + sha512 = "bwVfNTFZOrGXyiQ6t4B9sZerMSShWNsGRw8tC5DY1qImUNczS9SjT4G6PnzjCnxsu5Ubj6xjL2lgwddkxtQl5w=="; 6260 + }; 6261 + }; 6082 6262 "@types/node-12.7.12" = { 6083 6263 name = "_at_types_slash_node"; 6084 6264 packageName = "@types/node"; ··· 8014 8194 sha512 = "LqZ9wY+fx3UMiiPd741yB2pj3hhil+hQc8taf4o2QGRFpWgZ2V5C8HA165DY9sS3fJwsk7uT7ZlFEyC3Ig3lLg=="; 8015 8195 }; 8016 8196 }; 8197 + "ajv-7.0.3" = { 8198 + name = "ajv"; 8199 + packageName = "ajv"; 8200 + version = "7.0.3"; 8201 + src = fetchurl { 8202 + url = "https://registry.npmjs.org/ajv/-/ajv-7.0.3.tgz"; 8203 + sha512 = "R50QRlXSxqXcQP5SvKUrw8VZeypvo12i2IX0EeR5PiZ7bEKeHWgzgo264LDadUsCU42lTJVhFikTqJwNeH34gQ=="; 8204 + }; 8205 + }; 8017 8206 "ajv-errors-1.0.1" = { 8018 8207 name = "ajv-errors"; 8019 8208 packageName = "ajv-errors"; ··· 8462 8651 src = fetchurl { 8463 8652 url = "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz"; 8464 8653 sha512 = "/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog=="; 8654 + }; 8655 + }; 8656 + "any-observable-0.5.1" = { 8657 + name = "any-observable"; 8658 + packageName = "any-observable"; 8659 + version = "0.5.1"; 8660 + src = fetchurl { 8661 + url = "https://registry.npmjs.org/any-observable/-/any-observable-0.5.1.tgz"; 8662 + sha512 = "8zv01bgDOp9PTmRTNCAHTw64TFP2rvlX4LvtNJLachaXY+AjmIvLT47fABNPCiIe89hKiSCo2n5zmPqI9CElPA=="; 8465 8663 }; 8466 8664 }; 8467 8665 "any-promise-1.3.0" = { ··· 9139 9337 sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; 9140 9338 }; 9141 9339 }; 9340 + "array-back-1.0.4" = { 9341 + name = "array-back"; 9342 + packageName = "array-back"; 9343 + version = "1.0.4"; 9344 + src = fetchurl { 9345 + url = "https://registry.npmjs.org/array-back/-/array-back-1.0.4.tgz"; 9346 + sha1 = "644ba7f095f7ffcf7c43b5f0dc39d3c1f03c063b"; 9347 + }; 9348 + }; 9142 9349 "array-back-2.0.0" = { 9143 9350 name = "array-back"; 9144 9351 packageName = "array-back"; ··· 9508 9715 sha512 = "3duEwti880xqi4eAMN8AyR4a0ByT90zoYdLlevfrvU43vb0YZwZVfxOgxWrLXXXpyugL0hNZc9G6BiB5B3nUug=="; 9509 9716 }; 9510 9717 }; 9718 + "as-array-1.0.0" = { 9719 + name = "as-array"; 9720 + packageName = "as-array"; 9721 + version = "1.0.0"; 9722 + src = fetchurl { 9723 + url = "https://registry.npmjs.org/as-array/-/as-array-1.0.0.tgz"; 9724 + sha1 = "28a6eeeaa5729f1f4eca2047df5e9de1abda0ed1"; 9725 + }; 9726 + }; 9727 + "as-array-2.0.0" = { 9728 + name = "as-array"; 9729 + packageName = "as-array"; 9730 + version = "2.0.0"; 9731 + src = fetchurl { 9732 + url = "https://registry.npmjs.org/as-array/-/as-array-2.0.0.tgz"; 9733 + sha1 = "4f04805d87f8fce8e511bc2108f8e5e3a287d547"; 9734 + }; 9735 + }; 9511 9736 "asap-2.0.6" = { 9512 9737 name = "asap"; 9513 9738 packageName = "asap"; ··· 9830 10055 src = fetchurl { 9831 10056 url = "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz"; 9832 10057 sha512 = "z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ=="; 10058 + }; 10059 + }; 10060 + "async-exit-hook-2.0.1" = { 10061 + name = "async-exit-hook"; 10062 + packageName = "async-exit-hook"; 10063 + version = "2.0.1"; 10064 + src = fetchurl { 10065 + url = "https://registry.npmjs.org/async-exit-hook/-/async-exit-hook-2.0.1.tgz"; 10066 + sha512 = "NW2cX8m1Q7KPA7a5M2ULQeZ2wR5qI5PAbw5L0UOMxdioVk9PMZ0h1TmyZEkPYrCvYjDlFICusOu1dlEKAAeXBw=="; 9833 10067 }; 9834 10068 }; 9835 10069 "async-limiter-1.0.1" = { ··· 10939 11173 sha512 = "NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg=="; 10940 11174 }; 10941 11175 }; 11176 + "basic-auth-connect-1.0.0" = { 11177 + name = "basic-auth-connect"; 11178 + packageName = "basic-auth-connect"; 11179 + version = "1.0.0"; 11180 + src = fetchurl { 11181 + url = "https://registry.npmjs.org/basic-auth-connect/-/basic-auth-connect-1.0.0.tgz"; 11182 + sha1 = "fdb0b43962ca7b40456a7c2bb48fe173da2d2122"; 11183 + }; 11184 + }; 10942 11185 "batch-0.6.1" = { 10943 11186 name = "batch"; 10944 11187 packageName = "batch"; ··· 11216 11459 src = fetchurl { 11217 11460 url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.0.tgz"; 11218 11461 sha512 = "t/OYhhJ2SD+YGBQcjY8GzzDHEk9f3nerxjtfa6tlMXfe7frs/WozhvCNoGvpM0P3bNf3Gq5ZRMlGr5f3r4/N8A=="; 11462 + }; 11463 + }; 11464 + "bignumber.js-9.0.1" = { 11465 + name = "bignumber.js"; 11466 + packageName = "bignumber.js"; 11467 + version = "9.0.1"; 11468 + src = fetchurl { 11469 + url = "https://registry.npmjs.org/bignumber.js/-/bignumber.js-9.0.1.tgz"; 11470 + sha512 = "IdZR9mh6ahOBv/hYGiXyVuyCetmGJhtYkqLBpTStdhEGjegpPlUawydyaF3pbIOFynJTpllEs+NP+CS9jKFLjA=="; 11219 11471 }; 11220 11472 }; 11221 11473 "bigspinner-3.1.0" = { ··· 11542 11794 sha1 = "825a8fc536a5dc43193467f3124f7e9b78b21cef"; 11543 11795 }; 11544 11796 }; 11797 + "blakejs-1.1.0" = { 11798 + name = "blakejs"; 11799 + packageName = "blakejs"; 11800 + version = "1.1.0"; 11801 + src = fetchurl { 11802 + url = "https://registry.npmjs.org/blakejs/-/blakejs-1.1.0.tgz"; 11803 + sha1 = "69df92ef953aa88ca51a32df6ab1c54a155fc7a5"; 11804 + }; 11805 + }; 11545 11806 "blessed-0.1.81" = { 11546 11807 name = "blessed"; 11547 11808 packageName = "blessed"; ··· 12055 12316 sha1 = "51598408a13f4c9c5b20eba44554b2c0b0ae4074"; 12056 12317 }; 12057 12318 }; 12319 + "browser-or-node-1.3.0" = { 12320 + name = "browser-or-node"; 12321 + packageName = "browser-or-node"; 12322 + version = "1.3.0"; 12323 + src = fetchurl { 12324 + url = "https://registry.npmjs.org/browser-or-node/-/browser-or-node-1.3.0.tgz"; 12325 + sha512 = "0F2z/VSnLbmEeBcUrSuDH5l0HxTXdQQzLjkmBR4cYfvg1zJrKSlmIZFqyFR8oX0NrwPhy3c3HQ6i3OxMbew4Tg=="; 12326 + }; 12327 + }; 12058 12328 "browser-pack-6.1.0" = { 12059 12329 name = "browser-pack"; 12060 12330 packageName = "browser-pack"; ··· 12874 13144 sha512 = "7YKEapH+2Uikde8hySyfobXBqPKULDyHNl/lhKm7cKf/GJFdG/tU/WpLrOg2y9aUrQrWUilYqawFIiGJPS6gDA=="; 12875 13145 }; 12876 13146 }; 13147 + "cacheable-lookup-2.0.1" = { 13148 + name = "cacheable-lookup"; 13149 + packageName = "cacheable-lookup"; 13150 + version = "2.0.1"; 13151 + src = fetchurl { 13152 + url = "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-2.0.1.tgz"; 13153 + sha512 = "EMMbsiOTcdngM/K6gV/OxF2x0t07+vMOWxZNSCRQMjO2MY2nhZQ6OYhOOpyQrbhqsgtvKGI7hcq6xjnA92USjg=="; 13154 + }; 13155 + }; 12877 13156 "cacheable-lookup-5.0.4" = { 12878 13157 name = "cacheable-lookup"; 12879 13158 packageName = "cacheable-lookup"; ··· 13288 13567 sha512 = "vlNK021QdI7PNeiUh/lKkC/mNHHfV0m/Ad5JoI0TYtlBnJAslM/JIkm/tGC88bkLIwO6OQ5uV6ztS6kVAtCDlg=="; 13289 13568 }; 13290 13569 }; 13570 + "cdk8s-1.0.0-beta.5" = { 13571 + name = "cdk8s"; 13572 + packageName = "cdk8s"; 13573 + version = "1.0.0-beta.5"; 13574 + src = fetchurl { 13575 + url = "https://registry.npmjs.org/cdk8s/-/cdk8s-1.0.0-beta.5.tgz"; 13576 + sha512 = "E4l89rGnMI+OCdVojw0vV9xjkNgk9qMswkWc10hZLwwozhnx3ITMVgyjlRiZnCBIKMnKYY8ZhyMgEGgSVpR5fw=="; 13577 + }; 13578 + }; 13291 13579 "cdktf-0.0.19" = { 13292 13580 name = "cdktf"; 13293 13581 packageName = "cdktf"; ··· 13909 14197 sha512 = "UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A=="; 13910 14198 }; 13911 14199 }; 14200 + "cjson-0.3.3" = { 14201 + name = "cjson"; 14202 + packageName = "cjson"; 14203 + version = "0.3.3"; 14204 + src = fetchurl { 14205 + url = "https://registry.npmjs.org/cjson/-/cjson-0.3.3.tgz"; 14206 + sha1 = "a92d9c786e5bf9b930806329ee05d5d3261b4afa"; 14207 + }; 14208 + }; 13912 14209 "clap-1.2.3" = { 13913 14210 name = "clap"; 13914 14211 packageName = "clap"; ··· 14060 14357 src = fetchurl { 14061 14358 url = "https://registry.npmjs.org/cli-color/-/cli-color-0.1.7.tgz"; 14062 14359 sha1 = "adc3200fa471cc211b0da7f566b71e98b9d67347"; 14360 + }; 14361 + }; 14362 + "cli-color-1.4.0" = { 14363 + name = "cli-color"; 14364 + packageName = "cli-color"; 14365 + version = "1.4.0"; 14366 + src = fetchurl { 14367 + url = "https://registry.npmjs.org/cli-color/-/cli-color-1.4.0.tgz"; 14368 + sha512 = "xu6RvQqqrWEo6MPR1eixqGPywhYBHRs653F9jfXB2Hx4jdM/3WxiNE1vppRmxtMIfl16SFYTpYlrnqH/HsK/2w=="; 14063 14369 }; 14064 14370 }; 14065 14371 "cli-color-2.0.0" = { ··· 14746 15052 sha1 = "aea0f06f8d26c780c2b75494385544b2255af18c"; 14747 15053 }; 14748 15054 }; 15055 + "collection-utils-1.0.1" = { 15056 + name = "collection-utils"; 15057 + packageName = "collection-utils"; 15058 + version = "1.0.1"; 15059 + src = fetchurl { 15060 + url = "https://registry.npmjs.org/collection-utils/-/collection-utils-1.0.1.tgz"; 15061 + sha512 = "LA2YTIlR7biSpXkKYwwuzGjwL5rjWEZVOSnvdUc7gObvWe4WkjxOpfrdhoP7Hs09YWDVfg0Mal9BpAqLfVEzQg=="; 15062 + }; 15063 + }; 14749 15064 "collection-visit-1.0.0" = { 14750 15065 name = "collection-visit"; 14751 15066 packageName = "collection-visit"; ··· 14998 15313 sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; 14999 15314 }; 15000 15315 }; 15316 + "command-line-args-4.0.7" = { 15317 + name = "command-line-args"; 15318 + packageName = "command-line-args"; 15319 + version = "4.0.7"; 15320 + src = fetchurl { 15321 + url = "https://registry.npmjs.org/command-line-args/-/command-line-args-4.0.7.tgz"; 15322 + sha512 = "aUdPvQRAyBvQd2n7jXcsMDz68ckBJELXNzBybCHOibUWEg0mWTnaYCSRU8h9R+aNRSvDihJtssSRCiDRpLaezA=="; 15323 + }; 15324 + }; 15001 15325 "command-line-usage-4.1.0" = { 15002 15326 name = "command-line-usage"; 15003 15327 packageName = "command-line-usage"; ··· 15005 15329 src = fetchurl { 15006 15330 url = "https://registry.npmjs.org/command-line-usage/-/command-line-usage-4.1.0.tgz"; 15007 15331 sha512 = "MxS8Ad995KpdAC0Jopo/ovGIroV/m0KHwzKfXxKag6FHOkGsH8/lv5yjgablcRxCJJC0oJeUMuO/gmaq+Wq46g=="; 15332 + }; 15333 + }; 15334 + "command-line-usage-5.0.5" = { 15335 + name = "command-line-usage"; 15336 + packageName = "command-line-usage"; 15337 + version = "5.0.5"; 15338 + src = fetchurl { 15339 + url = "https://registry.npmjs.org/command-line-usage/-/command-line-usage-5.0.5.tgz"; 15340 + sha512 = "d8NrGylA5oCXSbGoKz05FkehDAzSmIm4K03S5VDh4d5lZAtTWfc3D1RuETtuQCn8129nYfJfDdF7P/lwcz1BlA=="; 15008 15341 }; 15009 15342 }; 15010 15343 "commander-0.6.1" = { ··· 15275 15608 src = fetchurl { 15276 15609 url = "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz"; 15277 15610 sha512 = "zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA=="; 15611 + }; 15612 + }; 15613 + "compare-semver-1.1.0" = { 15614 + name = "compare-semver"; 15615 + packageName = "compare-semver"; 15616 + version = "1.1.0"; 15617 + src = fetchurl { 15618 + url = "https://registry.npmjs.org/compare-semver/-/compare-semver-1.1.0.tgz"; 15619 + sha1 = "7c0a79a27bb80b6c6994445f82958259d3d02153"; 15278 15620 }; 15279 15621 }; 15280 15622 "compare-version-0.1.2" = { ··· 15682 16024 sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 15683 16025 }; 15684 16026 }; 15685 - "constructs-3.2.89" = { 16027 + "constructs-3.2.90" = { 15686 16028 name = "constructs"; 15687 16029 packageName = "constructs"; 15688 - version = "3.2.89"; 16030 + version = "3.2.90"; 15689 16031 src = fetchurl { 15690 - url = "https://registry.npmjs.org/constructs/-/constructs-3.2.89.tgz"; 15691 - sha512 = "b8tn6ttheQz51fnoUqLO1/ubHxH+ycnrt089BQY1b6T9QbyX1hXGeqCEiVZxBfuYUaMFg64dOdr/tHu4e+LUDw=="; 16032 + url = "https://registry.npmjs.org/constructs/-/constructs-3.2.90.tgz"; 16033 + sha512 = "Hi0MN1NQOrqVUXE2YGQ0GL6LLPW7R9WP1QYOXvI2OW0wX43zd5sDT0D8PE116EKF8nRAFQenUPlD2EdgxoHPDg=="; 15692 16034 }; 15693 16035 }; 15694 16036 "consume-http-header-1.0.0" = { ··· 16430 16772 sha512 = "Gk2c4y6xKEO8FSAUTklqtfSr7oTq0CiPQeLBG5Fl0qoXpZyMcj1SG59YL+hqq04bu6/IuEA7lMkYDAplQNKkyg=="; 16431 16773 }; 16432 16774 }; 16775 + "cross-env-5.2.1" = { 16776 + name = "cross-env"; 16777 + packageName = "cross-env"; 16778 + version = "5.2.1"; 16779 + src = fetchurl { 16780 + url = "https://registry.npmjs.org/cross-env/-/cross-env-5.2.1.tgz"; 16781 + sha512 = "1yHhtcfAd1r4nwQgknowuUNfIT9E8dOMMspC36g45dN+iD1blloi7xp8X/xAIDnjHWyt1uQ8PHk2fkNaym7soQ=="; 16782 + }; 16783 + }; 16433 16784 "cross-env-6.0.3" = { 16434 16785 name = "cross-env"; 16435 16786 packageName = "cross-env"; ··· 16988 17339 sha512 = "r45M92nLnGP246ot0Yo5RvbiiMF5Bw/OTIdWJ3OQ4Vbv4hpOeoXVIPxdSmUw+fPJlQOseY+iigJyLSfPMIrddQ=="; 16989 17340 }; 16990 17341 }; 17342 + "csv-streamify-3.0.4" = { 17343 + name = "csv-streamify"; 17344 + packageName = "csv-streamify"; 17345 + version = "3.0.4"; 17346 + src = fetchurl { 17347 + url = "https://registry.npmjs.org/csv-streamify/-/csv-streamify-3.0.4.tgz"; 17348 + sha1 = "4cb614c57e3f299cca17b63fdcb4ad167777f47a"; 17349 + }; 17350 + }; 16991 17351 "csv-stringify-0.0.8" = { 16992 17352 name = "csv-stringify"; 16993 17353 packageName = "csv-stringify"; ··· 18005 18365 sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 18006 18366 }; 18007 18367 }; 18368 + "debug-4.3.1" = { 18369 + name = "debug"; 18370 + packageName = "debug"; 18371 + version = "4.3.1"; 18372 + src = fetchurl { 18373 + url = "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz"; 18374 + sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ=="; 18375 + }; 18376 + }; 18008 18377 "debug-4.3.2" = { 18009 18378 name = "debug"; 18010 18379 packageName = "debug"; ··· 18138 18507 src = fetchurl { 18139 18508 url = "https://registry.npmjs.org/decompress-response/-/decompress-response-4.2.1.tgz"; 18140 18509 sha512 = "jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw=="; 18510 + }; 18511 + }; 18512 + "decompress-response-5.0.0" = { 18513 + name = "decompress-response"; 18514 + packageName = "decompress-response"; 18515 + version = "5.0.0"; 18516 + src = fetchurl { 18517 + url = "https://registry.npmjs.org/decompress-response/-/decompress-response-5.0.0.tgz"; 18518 + sha512 = "TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw=="; 18141 18519 }; 18142 18520 }; 18143 18521 "decompress-response-6.0.0" = { ··· 19616 19994 sha512 = "QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q=="; 19617 19995 }; 19618 19996 }; 19997 + "dot-prop-6.0.1" = { 19998 + name = "dot-prop"; 19999 + packageName = "dot-prop"; 20000 + version = "6.0.1"; 20001 + src = fetchurl { 20002 + url = "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz"; 20003 + sha512 = "tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA=="; 20004 + }; 20005 + }; 19619 20006 "dot-qs-0.2.0" = { 19620 20007 name = "dot-qs"; 19621 20008 packageName = "dot-qs"; ··· 19634 20021 sha512 = "4As8uPrjfwb7VXC+WnLCbXK7y+Ueb2B3zgNCePYfhxS1PYeaO1YTeplffTEcbfLhvFNGLAz90VvJs9yomG7bow=="; 19635 20022 }; 19636 20023 }; 20024 + "dotenv-6.2.0" = { 20025 + name = "dotenv"; 20026 + packageName = "dotenv"; 20027 + version = "6.2.0"; 20028 + src = fetchurl { 20029 + url = "https://registry.npmjs.org/dotenv/-/dotenv-6.2.0.tgz"; 20030 + sha512 = "HygQCKUBSFl8wKQZBSemMywRWcEDNidvNbjGVyZu3nbZ8qq9ubiPoGLMdRDpfSrpkkm9BXYFkpKxxFX38o/76w=="; 20031 + }; 20032 + }; 19637 20033 "dotenv-8.2.0" = { 19638 20034 name = "dotenv"; 19639 20035 packageName = "dotenv"; ··· 20860 21256 sha512 = "8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q=="; 20861 21257 }; 20862 21258 }; 21259 + "escape-goat-3.0.0" = { 21260 + name = "escape-goat"; 21261 + packageName = "escape-goat"; 21262 + version = "3.0.0"; 21263 + src = fetchurl { 21264 + url = "https://registry.npmjs.org/escape-goat/-/escape-goat-3.0.0.tgz"; 21265 + sha512 = "w3PwNZJwRxlp47QGzhuEBldEqVHHhh8/tIPcl6ecf2Bou99cdAt0knihBV0Ecc7CGxYduXVBDheH1K2oADRlvw=="; 21266 + }; 21267 + }; 20863 21268 "escape-html-1.0.3" = { 20864 21269 name = "escape-html"; 20865 21270 packageName = "escape-html"; ··· 21022 21427 sha512 = "5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA=="; 21023 21428 }; 21024 21429 }; 21025 - "eslint-7.16.0" = { 21430 + "eslint-7.17.0" = { 21026 21431 name = "eslint"; 21027 21432 packageName = "eslint"; 21028 - version = "7.16.0"; 21433 + version = "7.17.0"; 21029 21434 src = fetchurl { 21030 - url = "https://registry.npmjs.org/eslint/-/eslint-7.16.0.tgz"; 21031 - sha512 = "iVWPS785RuDA4dWuhhgXTNrGxHHK3a8HLSMBgbbU59ruJDubUraXN8N5rn7kb8tG6sjg74eE0RA3YWT51eusEw=="; 21435 + url = "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz"; 21436 + sha512 = "zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ=="; 21032 21437 }; 21033 21438 }; 21034 21439 "eslint-plugin-no-unsanitized-3.1.4" = { ··· 21382 21787 sha512 = "kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g=="; 21383 21788 }; 21384 21789 }; 21790 + "esy-solve-cudf-0.1.10" = { 21791 + name = "esy-solve-cudf"; 21792 + packageName = "esy-solve-cudf"; 21793 + version = "0.1.10"; 21794 + src = fetchurl { 21795 + url = "https://registry.npmjs.org/esy-solve-cudf/-/esy-solve-cudf-0.1.10.tgz"; 21796 + sha512 = "/MrZOBH0wuJndvZN8pl+S3Mg3zJaK70PH9ZZwqDeJHulghEWROEZxpmenNiS9pqAaxyUVhTZJBt2/vL9jKCJbg=="; 21797 + }; 21798 + }; 21385 21799 "etag-1.8.1" = { 21386 21800 name = "etag"; 21387 21801 packageName = "etag"; ··· 21589 22003 sha512 = "/46HWwbfCX2xTawVfkKLGxMifJYQBWMwY1mjywRtb4c9x8l5NP3KoJtnIOiL1hfdRkIuYhETxQlo62IF8tcnlg=="; 21590 22004 }; 21591 22005 }; 22006 + "events-listener-1.1.0" = { 22007 + name = "events-listener"; 22008 + packageName = "events-listener"; 22009 + version = "1.1.0"; 22010 + src = fetchurl { 22011 + url = "https://registry.npmjs.org/events-listener/-/events-listener-1.1.0.tgz"; 22012 + sha512 = "Kd3EgYfODHueq6GzVfs/VUolh2EgJsS8hkO3KpnDrxVjU3eq63eXM2ujXkhPP+OkeUOhL8CxdfZbQXzryb5C4g=="; 22013 + }; 22014 + }; 21592 22015 "events.node-0.4.9" = { 21593 22016 name = "events.node"; 21594 22017 packageName = "events.node"; ··· 21760 22183 sha512 = "8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg=="; 21761 22184 }; 21762 22185 }; 22186 + "exegesis-2.5.6" = { 22187 + name = "exegesis"; 22188 + packageName = "exegesis"; 22189 + version = "2.5.6"; 22190 + src = fetchurl { 22191 + url = "https://registry.npmjs.org/exegesis/-/exegesis-2.5.6.tgz"; 22192 + sha512 = "e+YkH/zZTN2njiwrV8tY6tHGDsFu3LyR/YbrqdWvDZaAJ5YGWaBYyd3oX/Y26iGqQc+7jLEKLDTv2UPzjAYL8w=="; 22193 + }; 22194 + }; 22195 + "exegesis-express-2.0.0" = { 22196 + name = "exegesis-express"; 22197 + packageName = "exegesis-express"; 22198 + version = "2.0.0"; 22199 + src = fetchurl { 22200 + url = "https://registry.npmjs.org/exegesis-express/-/exegesis-express-2.0.0.tgz"; 22201 + sha512 = "NKvKBsBa2OvU+1BFpWbz3PzoRMhA9q7/wU2oMmQ9X8lPy/FRatADvhlkGO1zYOMgeo35k1ZLO9ZV0uIs9pPnXg=="; 22202 + }; 22203 + }; 21763 22204 "exif-parser-0.1.12" = { 21764 22205 name = "exif-parser"; 21765 22206 packageName = "exif-parser"; ··· 21776 22217 src = fetchurl { 21777 22218 url = "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz"; 21778 22219 sha1 = "0632638f8d877cc82107d30a0fff1a17cba1cd0c"; 22220 + }; 22221 + }; 22222 + "exit-code-1.0.2" = { 22223 + name = "exit-code"; 22224 + packageName = "exit-code"; 22225 + version = "1.0.2"; 22226 + src = fetchurl { 22227 + url = "https://registry.npmjs.org/exit-code/-/exit-code-1.0.2.tgz"; 22228 + sha1 = "ce165811c9f117af6a5f882940b96ae7f9aecc34"; 21779 22229 }; 21780 22230 }; 21781 22231 "exit-hook-1.1.1" = { ··· 22949 23399 sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ=="; 22950 23400 }; 22951 23401 }; 23402 + "find-replace-1.0.3" = { 23403 + name = "find-replace"; 23404 + packageName = "find-replace"; 23405 + version = "1.0.3"; 23406 + src = fetchurl { 23407 + url = "https://registry.npmjs.org/find-replace/-/find-replace-1.0.3.tgz"; 23408 + sha1 = "b88e7364d2d9c959559f388c66670d6130441fa0"; 23409 + }; 23410 + }; 22952 23411 "find-requires-1.0.0" = { 22953 23412 name = "find-requires"; 22954 23413 packageName = "find-requires"; ··· 23147 23606 sha512 = "b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ=="; 23148 23607 }; 23149 23608 }; 23609 + "flat-arguments-1.0.2" = { 23610 + name = "flat-arguments"; 23611 + packageName = "flat-arguments"; 23612 + version = "1.0.2"; 23613 + src = fetchurl { 23614 + url = "https://registry.npmjs.org/flat-arguments/-/flat-arguments-1.0.2.tgz"; 23615 + sha1 = "9baa780adf0501f282d726c9c6a038dba44ea76f"; 23616 + }; 23617 + }; 23150 23618 "flat-cache-1.3.4" = { 23151 23619 name = "flat-cache"; 23152 23620 packageName = "flat-cache"; ··· 23831 24299 sha1 = "982d6893af918e72d08dec9e8673ff2b5a8d6add"; 23832 24300 }; 23833 24301 }; 24302 + "fs-extra-0.23.1" = { 24303 + name = "fs-extra"; 24304 + packageName = "fs-extra"; 24305 + version = "0.23.1"; 24306 + src = fetchurl { 24307 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-0.23.1.tgz"; 24308 + sha1 = "6611dba6adf2ab8dc9c69fab37cddf8818157e3d"; 24309 + }; 24310 + }; 23834 24311 "fs-extra-0.24.0" = { 23835 24312 name = "fs-extra"; 23836 24313 packageName = "fs-extra"; ··· 24128 24605 sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 24129 24606 }; 24130 24607 }; 24131 - "fuse.js-6.4.4" = { 24608 + "fuse.js-6.4.5" = { 24132 24609 name = "fuse.js"; 24133 24610 packageName = "fuse.js"; 24134 - version = "6.4.4"; 24611 + version = "6.4.5"; 24135 24612 src = fetchurl { 24136 - url = "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.4.tgz"; 24137 - sha512 = "tw9+6zGBerQG207qz4r9TJRA4xhVWiB/4UTA8cw8b2X5v7t94YbgxZ0/9ey9X7268D28HKHlWn10Q0s+kHe+xw=="; 24613 + url = "https://registry.npmjs.org/fuse.js/-/fuse.js-6.4.5.tgz"; 24614 + sha512 = "AIHjOhexWVqs/jWqun6jTUfdXB3Bm1uShoirHvTZImD2kHEQZ1zOmoDEqIPs8N1LnnwXJeG0T+r9ilEeJzlaoA=="; 24138 24615 }; 24139 24616 }; 24140 24617 "fuzzy-0.1.3" = { ··· 24200 24677 sha1 = "2c03405c7538c39d7eb37b317022e325fb018bf7"; 24201 24678 }; 24202 24679 }; 24680 + "gaxios-4.1.0" = { 24681 + name = "gaxios"; 24682 + packageName = "gaxios"; 24683 + version = "4.1.0"; 24684 + src = fetchurl { 24685 + url = "https://registry.npmjs.org/gaxios/-/gaxios-4.1.0.tgz"; 24686 + sha512 = "vb0to8xzGnA2qcgywAjtshOKKVDf2eQhJoiL6fHhgW5tVN7wNk7egnYIO9zotfn3lQ3De1VPdf7V5/BWfCtCmg=="; 24687 + }; 24688 + }; 24203 24689 "gaze-1.1.3" = { 24204 24690 name = "gaze"; 24205 24691 packageName = "gaze"; ··· 24216 24702 src = fetchurl { 24217 24703 url = "https://registry.npmjs.org/gc-stats/-/gc-stats-1.4.0.tgz"; 24218 24704 sha512 = "4FcCj9e8j8rCjvLkqRpGZBLgTC/xr9XEf5By3x77cDucWWB3pJK6FEwXZCTCbb4z8xdaOoi4owBNrvn3ciDdxA=="; 24705 + }; 24706 + }; 24707 + "gcp-metadata-4.2.1" = { 24708 + name = "gcp-metadata"; 24709 + packageName = "gcp-metadata"; 24710 + version = "4.2.1"; 24711 + src = fetchurl { 24712 + url = "https://registry.npmjs.org/gcp-metadata/-/gcp-metadata-4.2.1.tgz"; 24713 + sha512 = "tSk+REe5iq/N+K+SK1XjZJUrFPuDqGZVzCy2vocIHIGmPlTGsa8owXMJwGkrXr73NO0AzhPW4MF2DEHz7P2AVw=="; 24219 24714 }; 24220 24715 }; 24221 24716 "gelf-stream-1.1.1" = { ··· 24794 25289 sha512 = "gwJScWVNhFYSRDvURk/8yhcFBee6aFjye2a7Lhb2bUyRulpIoek9p0I9Kt7PT67d/nUlZbFu8L9RLiA0woQN8Q=="; 24795 25290 }; 24796 25291 }; 25292 + "github-url-from-git-1.5.0" = { 25293 + name = "github-url-from-git"; 25294 + packageName = "github-url-from-git"; 25295 + version = "1.5.0"; 25296 + src = fetchurl { 25297 + url = "https://registry.npmjs.org/github-url-from-git/-/github-url-from-git-1.5.0.tgz"; 25298 + sha1 = "f985fedcc0a9aa579dc88d7aff068d55cc6251a0"; 25299 + }; 25300 + }; 24797 25301 "github-username-3.0.0" = { 24798 25302 name = "github-username"; 24799 25303 packageName = "github-username"; ··· 24920 25424 sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ=="; 24921 25425 }; 24922 25426 }; 25427 + "glob-slash-1.0.0" = { 25428 + name = "glob-slash"; 25429 + packageName = "glob-slash"; 25430 + version = "1.0.0"; 25431 + src = fetchurl { 25432 + url = "https://registry.npmjs.org/glob-slash/-/glob-slash-1.0.0.tgz"; 25433 + sha1 = "fe52efa433233f74a2fe64c7abb9bc848202ab95"; 25434 + }; 25435 + }; 25436 + "glob-slasher-1.0.1" = { 25437 + name = "glob-slasher"; 25438 + packageName = "glob-slasher"; 25439 + version = "1.0.1"; 25440 + src = fetchurl { 25441 + url = "https://registry.npmjs.org/glob-slasher/-/glob-slasher-1.0.1.tgz"; 25442 + sha1 = "747a0e5bb222642ee10d3e05443e109493cb0f8e"; 25443 + }; 25444 + }; 24923 25445 "glob-stream-6.1.0" = { 24924 25446 name = "glob-stream"; 24925 25447 packageName = "glob-stream"; ··· 25254 25776 sha1 = "d53b30cdf9313dffb7dc9a0d477096aa6d145c50"; 25255 25777 }; 25256 25778 }; 25779 + "google-auth-library-6.1.3" = { 25780 + name = "google-auth-library"; 25781 + packageName = "google-auth-library"; 25782 + version = "6.1.3"; 25783 + src = fetchurl { 25784 + url = "https://registry.npmjs.org/google-auth-library/-/google-auth-library-6.1.3.tgz"; 25785 + sha512 = "m9mwvY3GWbr7ZYEbl61isWmk+fvTmOt0YNUfPOUY2VH8K5pZlAIWJjxEi0PqR3OjMretyiQLI6GURMrPSwHQ2g=="; 25786 + }; 25787 + }; 25257 25788 "google-closure-compiler-js-20170910.0.1" = { 25258 25789 name = "google-closure-compiler-js"; 25259 25790 packageName = "google-closure-compiler-js"; ··· 25263 25794 sha512 = "Vric7QFWxzHFxITZ10bmlG1H/5rhODb7hJuWyKWMD8GflpQzRmbMVqkFp3fKvN+U9tPwZItGVhkiOR+84PX3ew=="; 25264 25795 }; 25265 25796 }; 25797 + "google-gax-2.9.2" = { 25798 + name = "google-gax"; 25799 + packageName = "google-gax"; 25800 + version = "2.9.2"; 25801 + src = fetchurl { 25802 + url = "https://registry.npmjs.org/google-gax/-/google-gax-2.9.2.tgz"; 25803 + sha512 = "Pve4osEzNKpBZqFXMfGKBbKCtgnHpUe5IQMh5Ou+Xtg8nLcba94L3gF0xgM5phMdGRRqJn0SMjcuEVmOYu7EBg=="; 25804 + }; 25805 + }; 25806 + "google-p12-pem-3.0.3" = { 25807 + name = "google-p12-pem"; 25808 + packageName = "google-p12-pem"; 25809 + version = "3.0.3"; 25810 + src = fetchurl { 25811 + url = "https://registry.npmjs.org/google-p12-pem/-/google-p12-pem-3.0.3.tgz"; 25812 + sha512 = "wS0ek4ZtFx/ACKYF3JhyGe5kzH7pgiQ7J5otlumqR9psmWMYc+U9cErKlCYVYHoUaidXHdZ2xbo34kB+S+24hA=="; 25813 + }; 25814 + }; 25266 25815 "goosig-0.9.0" = { 25267 25816 name = "goosig"; 25268 25817 packageName = "goosig"; ··· 25288 25837 src = fetchurl { 25289 25838 url = "https://registry.npmjs.org/got/-/got-1.2.2.tgz"; 25290 25839 sha1 = "d9430ba32f6a30218243884418767340aafc0400"; 25840 + }; 25841 + }; 25842 + "got-10.7.0" = { 25843 + name = "got"; 25844 + packageName = "got"; 25845 + version = "10.7.0"; 25846 + src = fetchurl { 25847 + url = "https://registry.npmjs.org/got/-/got-10.7.0.tgz"; 25848 + sha512 = "aWTDeNw9g+XqEZNcTjMMZSy7B7yE9toWOFYip7ofFTLleJhvZwUxxTxkTpKvF+p1SAA4VHmuEy7PiHTHyq8tJg=="; 25291 25849 }; 25292 25850 }; 25293 25851 "got-11.4.0" = { ··· 25443 26001 sha512 = "jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A=="; 25444 26002 }; 25445 26003 }; 26004 + "graphql-0.11.7" = { 26005 + name = "graphql"; 26006 + packageName = "graphql"; 26007 + version = "0.11.7"; 26008 + src = fetchurl { 26009 + url = "https://registry.npmjs.org/graphql/-/graphql-0.11.7.tgz"; 26010 + sha512 = "x7uDjyz8Jx+QPbpCFCMQ8lltnQa4p4vSYHx6ADe8rVYRTdsyhCJbvSty5DAsLVmU6cGakl+r8HQYolKHxk/tiw=="; 26011 + }; 26012 + }; 25446 26013 "graphql-0.13.2" = { 25447 26014 name = "graphql"; 25448 26015 packageName = "graphql"; ··· 25639 26206 src = fetchurl { 25640 26207 url = "https://registry.npmjs.org/grunt-known-options/-/grunt-known-options-1.1.1.tgz"; 25641 26208 sha512 = "cHwsLqoighpu7TuYj5RonnEuxGVFnztcUqTqp5rXFGYL4OuPFofwC4Ycg7n9fYwvK6F5WbYgeVOwph9Crs2fsQ=="; 26209 + }; 26210 + }; 26211 + "gtoken-5.1.0" = { 26212 + name = "gtoken"; 26213 + packageName = "gtoken"; 26214 + version = "5.1.0"; 26215 + src = fetchurl { 26216 + url = "https://registry.npmjs.org/gtoken/-/gtoken-5.1.0.tgz"; 26217 + sha512 = "4d8N6Lk8TEAHl9vVoRVMh9BNOKWVgl2DdNtr3428O75r3QFrF/a5MMu851VmK0AA8+iSvbwRv69k5XnMLURGhg=="; 25642 26218 }; 25643 26219 }; 25644 26220 "gulp-4.0.2" = { ··· 26523 27099 sha512 = "/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw=="; 26524 27100 }; 26525 27101 }; 27102 + "home-dir-1.0.0" = { 27103 + name = "home-dir"; 27104 + packageName = "home-dir"; 27105 + version = "1.0.0"; 27106 + src = fetchurl { 27107 + url = "https://registry.npmjs.org/home-dir/-/home-dir-1.0.0.tgz"; 27108 + sha1 = "2917eb44bdc9072ceda942579543847e3017fe4e"; 27109 + }; 27110 + }; 26526 27111 "homedir-polyfill-1.0.3" = { 26527 27112 name = "homedir-polyfill"; 26528 27113 packageName = "homedir-polyfill"; ··· 26920 27505 sha1 = "3bd6d6fde6e3172c9334c3b33b6c193d80fe1137"; 26921 27506 }; 26922 27507 }; 26923 - "http-parser-js-0.5.2" = { 27508 + "http-parser-js-0.5.3" = { 26924 27509 name = "http-parser-js"; 26925 27510 packageName = "http-parser-js"; 26926 - version = "0.5.2"; 27511 + version = "0.5.3"; 26927 27512 src = fetchurl { 26928 - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.2.tgz"; 26929 - sha512 = "opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ=="; 27513 + url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz"; 27514 + sha512 = "t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg=="; 26930 27515 }; 26931 27516 }; 26932 27517 "http-proxy-1.18.1" = { ··· 27946 28531 sha512 = "QIEQG4YyQ2UYZGDC4srMZ7BjHOmNk1lR2JQj5UknBapklm6WHA+VVH7N+sUdX3A7NeCfGF8o4X1S3Ao7nAcIeg=="; 27947 28532 }; 27948 28533 }; 28534 + "inquirer-6.3.1" = { 28535 + name = "inquirer"; 28536 + packageName = "inquirer"; 28537 + version = "6.3.1"; 28538 + src = fetchurl { 28539 + url = "https://registry.npmjs.org/inquirer/-/inquirer-6.3.1.tgz"; 28540 + sha512 = "MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA=="; 28541 + }; 28542 + }; 27949 28543 "inquirer-6.5.2" = { 27950 28544 name = "inquirer"; 27951 28545 packageName = "inquirer"; ··· 27971 28565 src = fetchurl { 27972 28566 url = "https://registry.npmjs.org/inquirer-autocomplete-prompt/-/inquirer-autocomplete-prompt-1.3.0.tgz"; 27973 28567 sha512 = "zvAc+A6SZdcN+earG5SsBu1RnQdtBS4o8wZ/OqJiCfL34cfOx+twVRq7wumYix6Rkdjn1N2nVCcO3wHqKqgdGg=="; 28568 + }; 28569 + }; 28570 + "inquirer-autosubmit-prompt-0.2.0" = { 28571 + name = "inquirer-autosubmit-prompt"; 28572 + packageName = "inquirer-autosubmit-prompt"; 28573 + version = "0.2.0"; 28574 + src = fetchurl { 28575 + url = "https://registry.npmjs.org/inquirer-autosubmit-prompt/-/inquirer-autosubmit-prompt-0.2.0.tgz"; 28576 + sha512 = "mzNrusCk5L6kSzlN0Ioddn8yzrhYNLli+Sn2ZxMuLechMYAzakiFCIULxsxlQb5YKzthLGfrFACcWoAvM7p04Q=="; 27974 28577 }; 27975 28578 }; 27976 28579 "insert-module-globals-7.2.1" = { ··· 28063 28666 sha512 = "MAQUJuIo7Xqk8EVNP+6d3CKq9c80hi4tjIbIAT6lmGW9W6WzlHiu9PS8uSuUYU+Do+j1baiFp3H25XEVxDIG2g=="; 28064 28667 }; 28065 28668 }; 28669 + "install-artifact-from-github-1.2.0" = { 28670 + name = "install-artifact-from-github"; 28671 + packageName = "install-artifact-from-github"; 28672 + version = "1.2.0"; 28673 + src = fetchurl { 28674 + url = "https://registry.npmjs.org/install-artifact-from-github/-/install-artifact-from-github-1.2.0.tgz"; 28675 + sha512 = "3OxCPcY55XlVM3kkfIpeCgmoSKnMsz2A3Dbhsq0RXpIknKQmrX1YiznCeW9cD2ItFmDxziA3w6Eg8d80AoL3oA=="; 28676 + }; 28677 + }; 28066 28678 "int53-1.0.0" = { 28067 28679 name = "int53"; 28068 28680 packageName = "int53"; ··· 28241 28853 src = fetchurl { 28242 28854 url = "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz"; 28243 28855 sha1 = "fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"; 28856 + }; 28857 + }; 28858 + "ip-regex-4.2.0" = { 28859 + name = "ip-regex"; 28860 + packageName = "ip-regex"; 28861 + version = "4.2.0"; 28862 + src = fetchurl { 28863 + url = "https://registry.npmjs.org/ip-regex/-/ip-regex-4.2.0.tgz"; 28864 + sha512 = "n5cDDeTWWRwK1EBoWwRti+8nP4NbytBBY0pldmnIkq6Z55KNFmWofh4rl9dPZpj+U/nVq7gweR3ylrvMt4YZ5A=="; 28244 28865 }; 28245 28866 }; 28246 28867 "ip-set-1.0.2" = { ··· 29422 30043 sha1 = "449ca98299e713038256289ecb2b540dc437cb30"; 29423 30044 }; 29424 30045 }; 30046 + "is-scoped-2.1.0" = { 30047 + name = "is-scoped"; 30048 + packageName = "is-scoped"; 30049 + version = "2.1.0"; 30050 + src = fetchurl { 30051 + url = "https://registry.npmjs.org/is-scoped/-/is-scoped-2.1.0.tgz"; 30052 + sha512 = "Cv4OpPTHAK9kHYzkzCrof3VJh7H/PrG2MBUMvvJebaaUMbqhm0YAtXnvh0I3Hnj2tMZWwrRROWLSgfJrKqWmlQ=="; 30053 + }; 30054 + }; 29425 30055 "is-set-2.0.2" = { 29426 30056 name = "is-set"; 29427 30057 packageName = "is-set"; ··· 29456 30086 src = fetchurl { 29457 30087 url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz"; 29458 30088 sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw=="; 30089 + }; 30090 + }; 30091 + "is-stream-ended-0.1.4" = { 30092 + name = "is-stream-ended"; 30093 + packageName = "is-stream-ended"; 30094 + version = "0.1.4"; 30095 + src = fetchurl { 30096 + url = "https://registry.npmjs.org/is-stream-ended/-/is-stream-ended-0.1.4.tgz"; 30097 + sha512 = "xj0XPvmr7bQFTvirqnFr50o0hQIh6ZItDqloxt5aJrR4NQsYeSsyFQERYGCAzfindAcnKjINnwEEgLx4IqVzQw=="; 29459 30098 }; 29460 30099 }; 29461 30100 "is-string-1.0.5" = { ··· 29548 30187 sha512 = "ITvGim8FhRiYe4IQ5uHSkj7pVaPDrCTkNd3yq3cV7iZAcJdHTUMPMEHcqSOy9xZ9qFenQCvi+2wjH9a1nXqHww=="; 29549 30188 }; 29550 30189 }; 30190 + "is-url-superb-4.0.0" = { 30191 + name = "is-url-superb"; 30192 + packageName = "is-url-superb"; 30193 + version = "4.0.0"; 30194 + src = fetchurl { 30195 + url = "https://registry.npmjs.org/is-url-superb/-/is-url-superb-4.0.0.tgz"; 30196 + sha512 = "GI+WjezhPPcbM+tqE9LnmsY5qqjwHzTvjJ36wxYX5ujNXefSUJ/T17r5bqDV8yLhcgB59KTPNOc9O9cmHTPWsA=="; 30197 + }; 30198 + }; 29551 30199 "is-utf8-0.2.1" = { 29552 30200 name = "is-utf8"; 29553 30201 packageName = "is-utf8"; ··· 29683 30331 sha1 = "119556d1d1651a41ba105af803267c80b299f629"; 29684 30332 }; 29685 30333 }; 30334 + "is2-2.0.6" = { 30335 + name = "is2"; 30336 + packageName = "is2"; 30337 + version = "2.0.6"; 30338 + src = fetchurl { 30339 + url = "https://registry.npmjs.org/is2/-/is2-2.0.6.tgz"; 30340 + sha512 = "+Z62OHOjA6k2sUDOKXoZI3EXv7Fb1K52jpTBLbkfx62bcUeSsrTBLhEquCRDKTx0XE5XbHcG/S2vrtE3lnEDsQ=="; 30341 + }; 30342 + }; 29686 30343 "isarray-0.0.1" = { 29687 30344 name = "isarray"; 29688 30345 packageName = "isarray"; ··· 29800 30457 sha512 = "S/2fF5wH8SJA/kmwr6HYhK/RI/OkhD84k8ntalo0iJjZikgq1XFvR5M8NPT1x5F7fBwCG3qHfnzeP/Vh/ZxCUA=="; 29801 30458 }; 29802 30459 }; 30460 + "isomorphic-fetch-2.2.1" = { 30461 + name = "isomorphic-fetch"; 30462 + packageName = "isomorphic-fetch"; 30463 + version = "2.2.1"; 30464 + src = fetchurl { 30465 + url = "https://registry.npmjs.org/isomorphic-fetch/-/isomorphic-fetch-2.2.1.tgz"; 30466 + sha1 = "611ae1acf14f5e81f729507472819fe9733558a9"; 30467 + }; 30468 + }; 29803 30469 "isomorphic-form-data-2.0.0" = { 29804 30470 name = "isomorphic-form-data"; 29805 30471 packageName = "isomorphic-form-data"; ··· 29845 30511 sha1 = "47e63f7af55afa6f92e1500e690eb8b8529c099a"; 29846 30512 }; 29847 30513 }; 30514 + "issue-regex-3.1.0" = { 30515 + name = "issue-regex"; 30516 + packageName = "issue-regex"; 30517 + version = "3.1.0"; 30518 + src = fetchurl { 30519 + url = "https://registry.npmjs.org/issue-regex/-/issue-regex-3.1.0.tgz"; 30520 + sha512 = "0RHjbtw9QXeSYnIEY5Yrp2QZrdtz21xBDV9C/GIlY2POmgoS6a7qjkYS5siRKXScnuAj5/SPv1C3YForNCHTJA=="; 30521 + }; 30522 + }; 29848 30523 "istanbul-lib-coverage-3.0.0" = { 29849 30524 name = "istanbul-lib-coverage"; 29850 30525 packageName = "istanbul-lib-coverage"; ··· 29888 30563 src = fetchurl { 29889 30564 url = "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz"; 29890 30565 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 30566 + }; 30567 + }; 30568 + "iterall-1.1.3" = { 30569 + name = "iterall"; 30570 + packageName = "iterall"; 30571 + version = "1.1.3"; 30572 + src = fetchurl { 30573 + url = "https://registry.npmjs.org/iterall/-/iterall-1.1.3.tgz"; 30574 + sha512 = "Cu/kb+4HiNSejAPhSaN1VukdNTTi/r4/e+yykqjlG/IW+1gZH5b4+Bq3whDX4tvbYugta3r8KTMUiqT3fIGxuQ=="; 29891 30575 }; 29892 30576 }; 29893 30577 "iterall-1.2.2" = { ··· 30106 30790 sha1 = "a3f222a9aae9f966f5d27c796510e28091764217"; 30107 30791 }; 30108 30792 }; 30793 + "jmp-2.0.0" = { 30794 + name = "jmp"; 30795 + packageName = "jmp"; 30796 + version = "2.0.0"; 30797 + src = fetchurl { 30798 + url = "https://registry.npmjs.org/jmp/-/jmp-2.0.0.tgz"; 30799 + sha512 = "VATfWVHErQJA2XMtmQjJQHHyQ/hxjHMmsy+egmwRk/RzFchQB4xjrR1iX496VZr+Hyhcr4zvL+IkkSlIYKx6Yw=="; 30800 + }; 30801 + }; 30109 30802 "jodid25519-1.0.2" = { 30110 30803 name = "jodid25519"; 30111 30804 packageName = "jodid25519"; ··· 30131 30824 src = fetchurl { 30132 30825 url = "https://registry.npmjs.org/join-component/-/join-component-1.1.0.tgz"; 30133 30826 sha1 = "b8417b750661a392bee2c2537c68b2a9d4977cd5"; 30827 + }; 30828 + }; 30829 + "join-path-1.1.1" = { 30830 + name = "join-path"; 30831 + packageName = "join-path"; 30832 + version = "1.1.1"; 30833 + src = fetchurl { 30834 + url = "https://registry.npmjs.org/join-path/-/join-path-1.1.1.tgz"; 30835 + sha1 = "10535a126d24cbd65f7ffcdf15ef2e631076b505"; 30836 + }; 30837 + }; 30838 + "jp-kernel-2.0.0" = { 30839 + name = "jp-kernel"; 30840 + packageName = "jp-kernel"; 30841 + version = "2.0.0"; 30842 + src = fetchurl { 30843 + url = "https://registry.npmjs.org/jp-kernel/-/jp-kernel-2.0.0.tgz"; 30844 + sha512 = "Apz3AqpJhToFlo70mwnlbVyqhJRagzhNKKp84ZMeTqe/Ay9oIno8unm7eFepdlR8m8wz/9JXJQxUjK/3Ku/cpg=="; 30134 30845 }; 30135 30846 }; 30136 30847 "jpeg-js-0.4.2" = { ··· 30457 31168 sha512 = "1FFGV+JmwyljCNjc9bkW40MIQXvPgNxq+V3zx8/0+FM51S/0O5EvTa/413LX8fzB8sWH0G42NqFa+8k3k9s2hw=="; 30458 31169 }; 30459 31170 }; 30460 - "jsii-srcmak-0.1.175" = { 31171 + "jsii-srcmak-0.1.176" = { 30461 31172 name = "jsii-srcmak"; 30462 31173 packageName = "jsii-srcmak"; 30463 - version = "0.1.175"; 31174 + version = "0.1.176"; 30464 31175 src = fetchurl { 30465 - url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.175.tgz"; 30466 - sha512 = "JiLrfg+jsNX1dLP6yq/rFFrsYReSyBTVc/pgkiWThcM/lUDfnsjmYcuijb+cUI0mY2IqIKdktD7dJqdtWZWn+Q=="; 31176 + url = "https://registry.npmjs.org/jsii-srcmak/-/jsii-srcmak-0.1.176.tgz"; 31177 + sha512 = "lX2NuqUceoVVjr0Grm5DRYRyFIDv3cLK6zpAghCu4ZBUlQj8m1ZiOOTu7MUj0yAHi+6WMqP6DP7Q6aT34vo0dw=="; 30467 31178 }; 30468 31179 }; 30469 31180 "json-bigint-0.2.3" = { ··· 30473 31184 src = fetchurl { 30474 31185 url = "https://registry.npmjs.org/json-bigint/-/json-bigint-0.2.3.tgz"; 30475 31186 sha1 = "118d7f6ff1d38659f19f94cf73e64a75a3f988a8"; 31187 + }; 31188 + }; 31189 + "json-bigint-1.0.0" = { 31190 + name = "json-bigint"; 31191 + packageName = "json-bigint"; 31192 + version = "1.0.0"; 31193 + src = fetchurl { 31194 + url = "https://registry.npmjs.org/json-bigint/-/json-bigint-1.0.0.tgz"; 31195 + sha512 = "SiPv/8VpZuWbvLSMtTDU8hEfrZWg/mH/nV/b4o0CYbSxu1UIQPLdwKOCIyLQX+VIPO5vrLX3i8qtqFyhdPSUSQ=="; 30476 31196 }; 30477 31197 }; 30478 31198 "json-buffer-2.0.11" = { ··· 30601 31321 sha1 = "b480c892e59a2f05954ce727bd3f2a4e882f9e13"; 30602 31322 }; 30603 31323 }; 31324 + "json-schema-0.2.5" = { 31325 + name = "json-schema"; 31326 + packageName = "json-schema"; 31327 + version = "0.2.5"; 31328 + src = fetchurl { 31329 + url = "https://registry.npmjs.org/json-schema/-/json-schema-0.2.5.tgz"; 31330 + sha512 = "gWJOWYFrhQ8j7pVm0EM8Slr+EPVq1Phf6lvzvD/WCeqkrx/f2xBI0xOsRRS9xCn3I4vKtP519dvs3TP09r24wQ=="; 31331 + }; 31332 + }; 30604 31333 "json-schema-deref-sync-0.13.0" = { 30605 31334 name = "json-schema-deref-sync"; 30606 31335 packageName = "json-schema-deref-sync"; ··· 30655 31384 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 30656 31385 }; 30657 31386 }; 31387 + "json-schema-traverse-1.0.0" = { 31388 + name = "json-schema-traverse"; 31389 + packageName = "json-schema-traverse"; 31390 + version = "1.0.0"; 31391 + src = fetchurl { 31392 + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 31393 + sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 31394 + }; 31395 + }; 30658 31396 "json-schema-typed-7.0.3" = { 30659 31397 name = "json-schema-typed"; 30660 31398 packageName = "json-schema-typed"; ··· 30716 31454 src = fetchurl { 30717 31455 url = "https://registry.npmjs.org/json-to-ast/-/json-to-ast-2.1.0.tgz"; 30718 31456 sha512 = "W9Lq347r8tA1DfMvAGn9QNcgYm4Wm7Yc+k8e6vezpMnRT+NHbtlxgNBXRVjXe9YM6eTn6+p/MKOlV/aABJcSnQ=="; 31457 + }; 31458 + }; 31459 + "json2jsii-0.1.168" = { 31460 + name = "json2jsii"; 31461 + packageName = "json2jsii"; 31462 + version = "0.1.168"; 31463 + src = fetchurl { 31464 + url = "https://registry.npmjs.org/json2jsii/-/json2jsii-0.1.168.tgz"; 31465 + sha512 = "ny9avMgMo4zNUnMagHhP2gp+1QTQjQuryO31s0579BwWrlXVTLlmxl/1A9+Bem6QNXqM6VFDEl4iesyD10ypoQ=="; 30719 31466 }; 30720 31467 }; 30721 31468 "json3-3.2.6" = { ··· 31340 32087 sha512 = "zdGa2TOpSZPq5mU6iowDARnMBZgtCqJ11dJROFi6tg6kTn4nuUdU09lFyLFSaHrWqpIJ+EBq4E8/Dc0Vx5vLdA=="; 31341 32088 }; 31342 32089 }; 31343 - "khroma-1.1.0" = { 32090 + "khroma-1.1.1" = { 31344 32091 name = "khroma"; 31345 32092 packageName = "khroma"; 31346 - version = "1.1.0"; 32093 + version = "1.1.1"; 31347 32094 src = fetchurl { 31348 - url = "https://registry.npmjs.org/khroma/-/khroma-1.1.0.tgz"; 31349 - sha512 = "aTO+YX22tYOLEQJYFiatAj1lc5QZ+H5sHWFRBWNCiKwc5NWNUJZyeSeiHEPeURJ2a1GEVYcmyMUwGjjLe5ec5A=="; 32095 + url = "https://registry.npmjs.org/khroma/-/khroma-1.1.1.tgz"; 32096 + sha512 = "p7SYAiFisFFmLHHCqYBNwmfTrVIlWjUq+Pw81lDvnpaXOj2sR/xszTG4873AeaEO1kYQ50Z1c9CIrtQa6bdNdA=="; 31350 32097 }; 31351 32098 }; 31352 32099 "killable-1.0.1" = { ··· 32168 32915 sha512 = "RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA=="; 32169 32916 }; 32170 32917 }; 32918 + "listr-input-0.2.1" = { 32919 + name = "listr-input"; 32920 + packageName = "listr-input"; 32921 + version = "0.2.1"; 32922 + src = fetchurl { 32923 + url = "https://registry.npmjs.org/listr-input/-/listr-input-0.2.1.tgz"; 32924 + sha512 = "oa8iVG870qJq+OuuMK3DjGqFcwsK1SDu+kULp9kEq09TY231aideIZenr3lFOQdASpAr6asuyJBbX62/a3IIhg=="; 32925 + }; 32926 + }; 32171 32927 "listr-silent-renderer-1.1.1" = { 32172 32928 name = "listr-silent-renderer"; 32173 32929 packageName = "listr-silent-renderer"; ··· 33095 33851 sha1 = "8ffe20d4b616f56bea8f1aa0c6ebd80dcf742aee"; 33096 33852 }; 33097 33853 }; 33854 + "lodash.isarguments-2.4.1" = { 33855 + name = "lodash.isarguments"; 33856 + packageName = "lodash.isarguments"; 33857 + version = "2.4.1"; 33858 + src = fetchurl { 33859 + url = "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-2.4.1.tgz"; 33860 + sha1 = "4931a9c08253adf091ae7ca192258a973876ecca"; 33861 + }; 33862 + }; 33098 33863 "lodash.isarguments-3.1.0" = { 33099 33864 name = "lodash.isarguments"; 33100 33865 packageName = "lodash.isarguments"; ··· 33446 34211 sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23"; 33447 34212 }; 33448 34213 }; 34214 + "lodash.snakecase-4.1.1" = { 34215 + name = "lodash.snakecase"; 34216 + packageName = "lodash.snakecase"; 34217 + version = "4.1.1"; 34218 + src = fetchurl { 34219 + url = "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz"; 34220 + sha1 = "39d714a35357147837aefd64b5dcbb16becd8f8d"; 34221 + }; 34222 + }; 33449 34223 "lodash.some-4.6.0" = { 33450 34224 name = "lodash.some"; 33451 34225 packageName = "lodash.some"; ··· 33581 34355 sha1 = "a3a17bbf62eeb6240f491846e97c1c4e2a5e1e21"; 33582 34356 }; 33583 34357 }; 34358 + "lodash.values-2.4.1" = { 34359 + name = "lodash.values"; 34360 + packageName = "lodash.values"; 34361 + version = "2.4.1"; 34362 + src = fetchurl { 34363 + url = "https://registry.npmjs.org/lodash.values/-/lodash.values-2.4.1.tgz"; 34364 + sha1 = "abf514436b3cb705001627978cbcf30b1280eea4"; 34365 + }; 34366 + }; 33584 34367 "lodash.xorby-4.7.0" = { 33585 34368 name = "lodash.xorby"; 33586 34369 packageName = "lodash.xorby"; ··· 33588 34371 src = fetchurl { 33589 34372 url = "https://registry.npmjs.org/lodash.xorby/-/lodash.xorby-4.7.0.tgz"; 33590 34373 sha1 = "9c19a6f9f063a6eb53dd03c1b6871799801463d7"; 34374 + }; 34375 + }; 34376 + "lodash.zip-4.2.0" = { 34377 + name = "lodash.zip"; 34378 + packageName = "lodash.zip"; 34379 + version = "4.2.0"; 34380 + src = fetchurl { 34381 + url = "https://registry.npmjs.org/lodash.zip/-/lodash.zip-4.2.0.tgz"; 34382 + sha1 = "ec6662e4896408ed4ab6c542a3990b72cc080020"; 33591 34383 }; 33592 34384 }; 33593 34385 "log-6.0.0" = { ··· 34643 35435 sha512 = "No11hFYcXr/zkBvL6qFmAp1z6BKY3zqLMHny/JN/ey+al7qwCM2+CMBL9BOgqMxZU36fz4cCWfn2poWIf7QRXA=="; 34644 35436 }; 34645 35437 }; 35438 + "marked-terminal-3.3.0" = { 35439 + name = "marked-terminal"; 35440 + packageName = "marked-terminal"; 35441 + version = "3.3.0"; 35442 + src = fetchurl { 35443 + url = "https://registry.npmjs.org/marked-terminal/-/marked-terminal-3.3.0.tgz"; 35444 + sha512 = "+IUQJ5VlZoAFsM5MHNT7g3RHSkA3eETqhRCdXv4niUMAKHQ7lb1yvAcuGPmm4soxhmtX13u4Li6ZToXtvSEH+A=="; 35445 + }; 35446 + }; 34646 35447 "marked-terminal-4.1.0" = { 34647 35448 name = "marked-terminal"; 34648 35449 packageName = "marked-terminal"; ··· 35660 36461 sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w=="; 35661 36462 }; 35662 36463 }; 36464 + "mime-types-2.1.28" = { 36465 + name = "mime-types"; 36466 + packageName = "mime-types"; 36467 + version = "2.1.28"; 36468 + src = fetchurl { 36469 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz"; 36470 + sha512 = "0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ=="; 36471 + }; 36472 + }; 35663 36473 "mimic-fn-1.2.0" = { 35664 36474 name = "mimic-fn"; 35665 36475 packageName = "mimic-fn"; ··· 37019 37829 sha512 = "A0xLykHtARfueITVDernsAWdtIMbOJgKgcluwENp3AlsKN/PloyO10HtmoqnFAQAcxPkgZN7wdfPfEd0zNGxbg=="; 37020 37830 }; 37021 37831 }; 37832 + "nash-3.0.0" = { 37833 + name = "nash"; 37834 + packageName = "nash"; 37835 + version = "3.0.0"; 37836 + src = fetchurl { 37837 + url = "https://registry.npmjs.org/nash/-/nash-3.0.0.tgz"; 37838 + sha512 = "M5SahEycXUmko3zOvsBkF6p94CWLhnyy9hfpQ9Qzp+rQkQ8D1OaTlfTl1OBWktq9Fak3oDXKU+ev7tiMaMu+1w=="; 37839 + }; 37840 + }; 37022 37841 "native-promise-only-0.8.1" = { 37023 37842 name = "native-promise-only"; 37024 37843 packageName = "native-promise-only"; ··· 37299 38118 sha256 = "243e90fbf6616ef39f3c71bbcd027799e35cbf2ef3f25203676f65b20f7f7394"; 37300 38119 }; 37301 38120 }; 38121 + "nel-1.2.0" = { 38122 + name = "nel"; 38123 + packageName = "nel"; 38124 + version = "1.2.0"; 38125 + src = fetchurl { 38126 + url = "https://registry.npmjs.org/nel/-/nel-1.2.0.tgz"; 38127 + sha512 = "yt96hdYomrZC5ZvYHMCsRF5KIaZ8Aue5Gff4sH+6GmPDMJft097x5JG1DicLnfgSYE56CLP6ztZEfb+3St91Yw=="; 38128 + }; 38129 + }; 37302 38130 "neo-async-2.6.2" = { 37303 38131 name = "neo-async"; 37304 38132 packageName = "neo-async"; ··· 37425 38253 sha1 = "4aa7bfd43f03f0b81c9702b13d6a858ddb326f3e"; 37426 38254 }; 37427 38255 }; 38256 + "new-github-release-url-1.0.0" = { 38257 + name = "new-github-release-url"; 38258 + packageName = "new-github-release-url"; 38259 + version = "1.0.0"; 38260 + src = fetchurl { 38261 + url = "https://registry.npmjs.org/new-github-release-url/-/new-github-release-url-1.0.0.tgz"; 38262 + sha512 = "dle7yf655IMjyFUqn6Nxkb18r4AOAkzRcgcZv6WZ0IqrOH4QCEZ8Sm6I7XX21zvHdBeeMeTkhR9qT2Z0EJDx6A=="; 38263 + }; 38264 + }; 37428 38265 "next-event-1.0.0" = { 37429 38266 name = "next-event"; 37430 38267 packageName = "next-event"; ··· 38360 39197 src = fetchurl { 38361 39198 url = "https://registry.npmjs.org/npm-lifecycle/-/npm-lifecycle-3.1.5.tgz"; 38362 39199 sha512 = "lDLVkjfZmvmfvpvBzA4vzee9cn+Me4orq0QF8glbswJVEbIcSNWib7qGOffolysc3teCqbbPZZkzbr3GQZTL1g=="; 39200 + }; 39201 + }; 39202 + "npm-name-6.0.1" = { 39203 + name = "npm-name"; 39204 + packageName = "npm-name"; 39205 + version = "6.0.1"; 39206 + src = fetchurl { 39207 + url = "https://registry.npmjs.org/npm-name/-/npm-name-6.0.1.tgz"; 39208 + sha512 = "fhKRvUAxaYzMEUZim4mXWyfFbVS+M1CbrCLdAo3txWzrctxKka/h+KaBW0O9Cz5uOM00Nldn2JLWhuwnyW3SUw=="; 38363 39209 }; 38364 39210 }; 38365 39211 "npm-normalize-package-bin-1.0.1" = { ··· 39542 40388 sha512 = "6pi4/Fw+JIW1HHda2Ij7LRJ5QJ8f6YzaXnsRA6m44BJz8nLq/j5gVFzPBKJo+uOFhAeHqZC/3uzhTpYPga3Q/A=="; 39543 40389 }; 39544 40390 }; 40391 + "openapi3-ts-1.4.0" = { 40392 + name = "openapi3-ts"; 40393 + packageName = "openapi3-ts"; 40394 + version = "1.4.0"; 40395 + src = fetchurl { 40396 + url = "https://registry.npmjs.org/openapi3-ts/-/openapi3-ts-1.4.0.tgz"; 40397 + sha512 = "8DmE2oKayvSkIR3XSZ4+pRliBsx19bSNeIzkTPswY8r4wvjX86bMxsORdqwAwMxE8PefOcSAT2auvi/0TZe9yA=="; 40398 + }; 40399 + }; 39545 40400 "opencollective-1.0.3" = { 39546 40401 name = "opencollective"; 39547 40402 packageName = "opencollective"; ··· 39812 40667 sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e"; 39813 40668 }; 39814 40669 }; 40670 + "org-regex-1.0.0" = { 40671 + name = "org-regex"; 40672 + packageName = "org-regex"; 40673 + version = "1.0.0"; 40674 + src = fetchurl { 40675 + url = "https://registry.npmjs.org/org-regex/-/org-regex-1.0.0.tgz"; 40676 + sha512 = "7bqkxkEJwzJQUAlyYniqEZ3Ilzjh0yoa62c7gL6Ijxj5bEpPL+8IE1Z0PFj0ywjjXQcdrwR51g9MIcLezR0hKQ=="; 40677 + }; 40678 + }; 39815 40679 "original-1.0.2" = { 39816 40680 name = "original"; 39817 40681 packageName = "original"; ··· 39947 40811 sha512 = "y3ziaqX+obzc9NMeXFvVz9+q2Hf9Nhu03lNbY/Iz1AjhfBHi7kMF9giW7ljmCTfdEg26crfOCBi2RbAUA2+3+g=="; 39948 40812 }; 39949 40813 }; 40814 + "ow-0.21.0" = { 40815 + name = "ow"; 40816 + packageName = "ow"; 40817 + version = "0.21.0"; 40818 + src = fetchurl { 40819 + url = "https://registry.npmjs.org/ow/-/ow-0.21.0.tgz"; 40820 + sha512 = "dlsoDe39g7mhdsdrC1R/YwjT7yjVqE3svWwOlMGvN690waBkgEZBmKBdkmKvSt5/wZ6E0Jn/nIesPqMZOpPKqw=="; 40821 + }; 40822 + }; 39950 40823 "p-all-2.1.0" = { 39951 40824 name = "p-all"; 39952 40825 packageName = "p-all"; ··· 40019 40892 sha1 = "9f6eb182f6c9aa8cd743004a7d4f96b196b0fb0c"; 40020 40893 }; 40021 40894 }; 40895 + "p-defer-3.0.0" = { 40896 + name = "p-defer"; 40897 + packageName = "p-defer"; 40898 + version = "3.0.0"; 40899 + src = fetchurl { 40900 + url = "https://registry.npmjs.org/p-defer/-/p-defer-3.0.0.tgz"; 40901 + sha512 = "ugZxsxmtTln604yeYd29EGrNhazN2lywetzpKhfmQjW/VJmhpDmWbiX+h0zL8V91R0UXkhb3KtPmyq9PZw3aYw=="; 40902 + }; 40903 + }; 40022 40904 "p-event-2.3.1" = { 40023 40905 name = "p-event"; 40024 40906 packageName = "p-event"; ··· 40190 41072 sha1 = "bf98fe575705658a9e1351befb85ae4c1f07bdca"; 40191 41073 }; 40192 41074 }; 41075 + "p-memoize-4.0.1" = { 41076 + name = "p-memoize"; 41077 + packageName = "p-memoize"; 41078 + version = "4.0.1"; 41079 + src = fetchurl { 41080 + url = "https://registry.npmjs.org/p-memoize/-/p-memoize-4.0.1.tgz"; 41081 + sha512 = "km0sP12uE0dOZ5qP+s7kGVf07QngxyG0gS8sYFvFWhqlgzOsSy+m71aUejf/0akxj5W7gE//2G74qTv6b4iMog=="; 41082 + }; 41083 + }; 40193 41084 "p-pipe-1.2.0" = { 40194 41085 name = "p-pipe"; 40195 41086 packageName = "p-pipe"; ··· 40296 41187 src = fetchurl { 40297 41188 url = "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz"; 40298 41189 sha512 = "rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg=="; 41190 + }; 41191 + }; 41192 + "p-timeout-4.1.0" = { 41193 + name = "p-timeout"; 41194 + packageName = "p-timeout"; 41195 + version = "4.1.0"; 41196 + src = fetchurl { 41197 + url = "https://registry.npmjs.org/p-timeout/-/p-timeout-4.1.0.tgz"; 41198 + sha512 = "+/wmHtzJuWii1sXn3HCuH/FTwGhrp4tmJTxSKJbfS+vkipci6osxXM5mY0jUiRzWKMTgUT8l7HFbeSwZAynqHw=="; 40299 41199 }; 40300 41200 }; 40301 41201 "p-try-1.0.0" = { ··· 42846 43746 sha512 = "aaLVANlj4HgZweKttFNUVNRxDukytuIuxeK2boIMHjagNJCiVKWFsKF4tCE3ql3GbrD2tExPQ7/pwtEJcHNZeg=="; 42847 43747 }; 42848 43748 }; 43749 + "prebuild-install-5.3.6" = { 43750 + name = "prebuild-install"; 43751 + packageName = "prebuild-install"; 43752 + version = "5.3.6"; 43753 + src = fetchurl { 43754 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz"; 43755 + sha512 = "s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg=="; 43756 + }; 43757 + }; 42849 43758 "prebuild-install-6.0.0" = { 42850 43759 name = "prebuild-install"; 42851 43760 packageName = "prebuild-install"; ··· 43323 44232 sha512 = "W04AqnILOL/sPRXziNicCjSNRruLAuIHEOVBazepu0545DDNGYHz7ar9ZgZ1fMU8/MA4mVxp5rkBWRi6OXIy3Q=="; 43324 44233 }; 43325 44234 }; 44235 + "promise-breaker-5.0.0" = { 44236 + name = "promise-breaker"; 44237 + packageName = "promise-breaker"; 44238 + version = "5.0.0"; 44239 + src = fetchurl { 44240 + url = "https://registry.npmjs.org/promise-breaker/-/promise-breaker-5.0.0.tgz"; 44241 + sha512 = "mgsWQuG4kJ1dtO6e/QlNDLFtMkMzzecsC69aI5hlLEjGHFNpHrvGhFi4LiK5jg2SMQj74/diH+wZliL9LpGsyA=="; 44242 + }; 44243 + }; 43326 44244 "promise-inflight-1.0.1" = { 43327 44245 name = "promise-inflight"; 43328 44246 packageName = "promise-inflight"; ··· 45024 45942 sha512 = "wuygyq8TXUlSdVXv2kigXxQNOgdb9m7LbIjwfTNGSpaY1riLd5e+VeQjlQMyUtrk0oiyhi1AqIVynworl3qxHA=="; 45025 45943 }; 45026 45944 }; 45945 + "re2-1.15.9" = { 45946 + name = "re2"; 45947 + packageName = "re2"; 45948 + version = "1.15.9"; 45949 + src = fetchurl { 45950 + url = "https://registry.npmjs.org/re2/-/re2-1.15.9.tgz"; 45951 + sha512 = "AXWEhpMTBdC+3oqbjdU07dk0pBCvxh5vbOMLERL6Y8FYBSGn4vXlLe8cYszn64Yy7H8keVMrgPzoSvOd4mePpg=="; 45952 + }; 45953 + }; 45027 45954 "react-16.14.0" = { 45028 45955 name = "react"; 45029 45956 packageName = "react"; ··· 45346 46273 src = fetchurl { 45347 46274 url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz"; 45348 46275 sha1 = "8f90341e68a53ccc928788dacfcd11b36eb9b78e"; 46276 + }; 46277 + }; 46278 + "readable-stream-2.3.0" = { 46279 + name = "readable-stream"; 46280 + packageName = "readable-stream"; 46281 + version = "2.3.0"; 46282 + src = fetchurl { 46283 + url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.0.tgz"; 46284 + sha512 = "c7KMXGd4b48nN3OJ1U9qOsn6pXNzf6kLd3kdZCkg2sxAcoiufInqF0XckwEnlrcwuaYwonlNK8GQUIOC/WC7sg=="; 45349 46285 }; 45350 46286 }; 45351 46287 "readable-stream-2.3.7" = { ··· 46131 47067 sha512 = "F5BMWDmgATEoyPCtKjmGNTGN1ghoZlfRQ3MJh8dS/MrvIUIxupiof/Y9uahChipXcqQ57twVbgMmyQmuO1vokw=="; 46132 47068 }; 46133 47069 }; 46134 - "renderkid-2.0.4" = { 47070 + "renderkid-2.0.5" = { 46135 47071 name = "renderkid"; 46136 47072 packageName = "renderkid"; 46137 - version = "2.0.4"; 47073 + version = "2.0.5"; 46138 47074 src = fetchurl { 46139 - url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz"; 46140 - sha512 = "K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g=="; 47075 + url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz"; 47076 + sha512 = "ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ=="; 46141 47077 }; 46142 47078 }; 46143 47079 "repeat-element-1.1.3" = { ··· 46768 47704 src = fetchurl { 46769 47705 url = "https://registry.npmjs.org/retry/-/retry-0.9.0.tgz"; 46770 47706 sha1 = "6f697e50a0e4ddc8c8f7fb547a9b60dead43678d"; 47707 + }; 47708 + }; 47709 + "retry-request-4.1.3" = { 47710 + name = "retry-request"; 47711 + packageName = "retry-request"; 47712 + version = "4.1.3"; 47713 + src = fetchurl { 47714 + url = "https://registry.npmjs.org/retry-request/-/retry-request-4.1.3.tgz"; 47715 + sha512 = "QnRZUpuPNgX0+D1xVxul6DbJ9slvo4Rm6iV/dn63e048MvGbUZiKySVt6Tenp04JqmchxjiLltGerOJys7kJYQ=="; 46771 47716 }; 46772 47717 }; 46773 47718 "reusify-1.0.4" = { ··· 47067 48012 sha1 = "6f04063a2d04eba3303a1bbc6765eef63037cf3d"; 47068 48013 }; 47069 48014 }; 48015 + "router-1.3.5" = { 48016 + name = "router"; 48017 + packageName = "router"; 48018 + version = "1.3.5"; 48019 + src = fetchurl { 48020 + url = "https://registry.npmjs.org/router/-/router-1.3.5.tgz"; 48021 + sha512 = "kozCJZUhuSJ5VcLhSb3F8fsmGXy+8HaDbKCAerR1G6tq3mnMZFMuSohbFvGv1c5oMFipijDjRZuuN/Sq5nMf3g=="; 48022 + }; 48023 + }; 47070 48024 "router-ips-1.0.0" = { 47071 48025 name = "router-ips"; 47072 48026 packageName = "router-ips"; ··· 47553 48507 sha1 = "a346bb1acd4207ae70bd7c0c7ca9e566b6baddb8"; 47554 48508 }; 47555 48509 }; 48510 + "scoped-regex-2.1.0" = { 48511 + name = "scoped-regex"; 48512 + packageName = "scoped-regex"; 48513 + version = "2.1.0"; 48514 + src = fetchurl { 48515 + url = "https://registry.npmjs.org/scoped-regex/-/scoped-regex-2.1.0.tgz"; 48516 + sha512 = "g3WxHrqSWCZHGHlSrF51VXFdjImhwvH8ZO/pryFH56Qi0cDsZfylQa/t0jCzVQFNbNvM00HfHjkDPEuarKDSWQ=="; 48517 + }; 48518 + }; 47556 48519 "sec-1.0.0" = { 47557 48520 name = "sec"; 47558 48521 packageName = "sec"; ··· 50748 51711 sha1 = "91d5f5130d1cef96dcfa7f726945188741d09ee4"; 50749 51712 }; 50750 51713 }; 51714 + "stream-chain-2.2.4" = { 51715 + name = "stream-chain"; 51716 + packageName = "stream-chain"; 51717 + version = "2.2.4"; 51718 + src = fetchurl { 51719 + url = "https://registry.npmjs.org/stream-chain/-/stream-chain-2.2.4.tgz"; 51720 + sha512 = "9lsl3YM53V5N/I1C2uJtc3Kavyi3kNYN83VkKb/bMWRk7D9imiFyUPYa0PoZbLohSVOX1mYE9YsmwObZUsth6Q=="; 51721 + }; 51722 + }; 50751 51723 "stream-collector-1.0.1" = { 50752 51724 name = "stream-collector"; 50753 51725 packageName = "stream-collector"; ··· 50827 51799 src = fetchurl { 50828 51800 url = "https://registry.npmjs.org/stream-http/-/stream-http-3.1.1.tgz"; 50829 51801 sha512 = "S7OqaYu0EkFpgeGFb/NPOoPLxFko7TPqtEeFg5DXPB4v/KETHG0Ln6fRFrNezoelpaDKmycEmmZ81cC9DAwgYg=="; 51802 + }; 51803 + }; 51804 + "stream-json-1.1.3" = { 51805 + name = "stream-json"; 51806 + packageName = "stream-json"; 51807 + version = "1.1.3"; 51808 + src = fetchurl { 51809 + url = "https://registry.npmjs.org/stream-json/-/stream-json-1.1.3.tgz"; 51810 + sha512 = "y+ChhCov2A5nDqC2aZ6HKXs3OvDlvAp0Ps3BF1P/Iv8tUZJQQsMVaSzk0WryVTVoGITKv01UYahCXMpAs7I0lQ=="; 50830 51811 }; 50831 51812 }; 50832 51813 "stream-parser-0.3.1" = { ··· 51207 52188 sha1 = "62e203bc41766c6c28c9fc84301dab1c5310fa94"; 51208 52189 }; 51209 52190 }; 52191 + "string_decoder-1.0.3" = { 52192 + name = "string_decoder"; 52193 + packageName = "string_decoder"; 52194 + version = "1.0.3"; 52195 + src = fetchurl { 52196 + url = "https://registry.npmjs.org/string_decoder/-/string_decoder-1.0.3.tgz"; 52197 + sha512 = "4AH6Z5fzNNBcH+6XDMfA/BTt87skxqJlO0lAh3Dker5zThcAxG6mKz+iGu308UKoPPQ8Dcqx/4JhujzltRa+hQ=="; 52198 + }; 52199 + }; 51210 52200 "string_decoder-1.1.1" = { 51211 52201 name = "string_decoder"; 51212 52202 packageName = "string_decoder"; ··· 51801 52791 sha512 = "DnarpKN6Xn8e3pYlFV4Yvsj9yxLY4q5FIsUe5JvN7vjzP+YCfzXv03dTkZSD2yzrSadsNYHf0IgOUJwKjX457A=="; 51802 52792 }; 51803 52793 }; 52794 + "superstatic-7.1.0" = { 52795 + name = "superstatic"; 52796 + packageName = "superstatic"; 52797 + version = "7.1.0"; 52798 + src = fetchurl { 52799 + url = "https://registry.npmjs.org/superstatic/-/superstatic-7.1.0.tgz"; 52800 + sha512 = "yBU8iw07nM3Bu4jFc8lnKwLey0cj61OaGmFJZcYC2X+kEpXVmXzERJ3OTAHZAESe1OTeNIuWadt81U5IULGGAA=="; 52801 + }; 52802 + }; 51804 52803 "supports-color-0.2.0" = { 51805 52804 name = "supports-color"; 51806 52805 packageName = "supports-color"; ··· 52116 53115 sha512 = "sQV7phh2WCYAn81oAkakC5qjq2Ml0g8ozqz03wOGnx9dDlG1de6yrF+0RAzSJD8fPUow3PTSMf2SAbOGxb93BA=="; 52117 53116 }; 52118 53117 }; 53118 + "symbol-observable-3.0.0" = { 53119 + name = "symbol-observable"; 53120 + packageName = "symbol-observable"; 53121 + version = "3.0.0"; 53122 + src = fetchurl { 53123 + url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-3.0.0.tgz"; 53124 + sha512 = "6tDOXSHiVjuCaasQSWTmHUWn4PuG7qa3+1WT031yTc/swT7+rLiw3GOrFxaH1E3lLP09dH3bVuVDf2gK5rxG3Q=="; 53125 + }; 53126 + }; 52119 53127 "symbol-tree-3.2.4" = { 52120 53128 name = "symbol-tree"; 52121 53129 packageName = "symbol-tree"; ··· 52188 53196 sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 52189 53197 }; 52190 53198 }; 52191 - "table-6.0.4" = { 53199 + "table-6.0.6" = { 52192 53200 name = "table"; 52193 53201 packageName = "table"; 52194 - version = "6.0.4"; 53202 + version = "6.0.6"; 52195 53203 src = fetchurl { 52196 - url = "https://registry.npmjs.org/table/-/table-6.0.4.tgz"; 52197 - sha512 = "sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw=="; 53204 + url = "https://registry.npmjs.org/table/-/table-6.0.6.tgz"; 53205 + sha512 = "OInCtPmDNieVBkVFi6C8RwU2S2H0h8mF3e3TQK4nreaUNCpooQUkI+A/KuEkm5FawfhWIfNqG+qfelVVR+V00g=="; 52198 53206 }; 52199 53207 }; 52200 53208 "table-layout-0.4.5" = { ··· 52430 53438 src = fetchurl { 52431 53439 url = "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-0.1.2.tgz"; 52432 53440 sha1 = "9450e8768c83b416fd4d1a6a9449eeccbf496c29"; 53441 + }; 53442 + }; 53443 + "tcp-port-used-1.0.2" = { 53444 + name = "tcp-port-used"; 53445 + packageName = "tcp-port-used"; 53446 + version = "1.0.2"; 53447 + src = fetchurl { 53448 + url = "https://registry.npmjs.org/tcp-port-used/-/tcp-port-used-1.0.2.tgz"; 53449 + sha512 = "l7ar8lLUD3XS1V2lfoJlCBaeoaWo/2xfYt81hM7VlvR4RrMVFqfmzfhLVk40hAb368uitje5gPtBRL1m/DGvLA=="; 52433 53450 }; 52434 53451 }; 52435 53452 "tdigest-0.1.1" = { ··· 52684 53701 sha512 = "cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w=="; 52685 53702 }; 52686 53703 }; 53704 + "test-value-2.1.0" = { 53705 + name = "test-value"; 53706 + packageName = "test-value"; 53707 + version = "2.1.0"; 53708 + src = fetchurl { 53709 + url = "https://registry.npmjs.org/test-value/-/test-value-2.1.0.tgz"; 53710 + sha1 = "11da6ff670f3471a73b625ca4f3fdcf7bb748291"; 53711 + }; 53712 + }; 52687 53713 "text-extensions-1.9.0" = { 52688 53714 name = "text-extensions"; 52689 53715 packageName = "text-extensions"; ··· 52873 53899 sha1 = "f41a1c31df5e129e4314446f66eca05cd6a30480"; 52874 53900 }; 52875 53901 }; 53902 + "through2-2.0.1" = { 53903 + name = "through2"; 53904 + packageName = "through2"; 53905 + version = "2.0.1"; 53906 + src = fetchurl { 53907 + url = "https://registry.npmjs.org/through2/-/through2-2.0.1.tgz"; 53908 + sha1 = "384e75314d49f32de12eebb8136b8eb6b5d59da9"; 53909 + }; 53910 + }; 52876 53911 "through2-2.0.5" = { 52877 53912 name = "through2"; 52878 53913 packageName = "through2"; ··· 53629 54664 sha512 = "6Di70O1dWm45SJ5xrGzlE805z3gYn4ZUmNKomIrI4OojzRA4zyQzJ/4lAxQbJlq0ihG/mUE2xbP4q85Q68ig2g=="; 53630 54665 }; 53631 54666 }; 54667 + "toxic-1.0.1" = { 54668 + name = "toxic"; 54669 + packageName = "toxic"; 54670 + version = "1.0.1"; 54671 + src = fetchurl { 54672 + url = "https://registry.npmjs.org/toxic/-/toxic-1.0.1.tgz"; 54673 + sha512 = "WI3rIGdcaKULYg7KVoB0zcjikqvcYYvcuT6D89bFPz2rVR0Rl0PK6x8/X62rtdLtBKIE985NzVf/auTtGegIIg=="; 54674 + }; 54675 + }; 53632 54676 "tr46-0.0.3" = { 53633 54677 name = "tr46"; 53634 54678 packageName = "tr46"; ··· 54178 55222 sha1 = "b75bc2df15649bb84e8b9aa3c0669c6c4bce0d25"; 54179 55223 }; 54180 55224 }; 55225 + "tweetsodium-0.0.5" = { 55226 + name = "tweetsodium"; 55227 + packageName = "tweetsodium"; 55228 + version = "0.0.5"; 55229 + src = fetchurl { 55230 + url = "https://registry.npmjs.org/tweetsodium/-/tweetsodium-0.0.5.tgz"; 55231 + sha512 = "T3aXZtx7KqQbutTtBfn+P5By3HdBuB1eCoGviIrRJV2sXeToxv2X2cv5RvYqgG26PSnN5m3fYixds22Gkfd11w=="; 55232 + }; 55233 + }; 54181 55234 "twig-1.15.4" = { 54182 55235 name = "twig"; 54183 55236 packageName = "twig"; ··· 54250 55303 sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g=="; 54251 55304 }; 54252 55305 }; 55306 + "type-fest-0.10.0" = { 55307 + name = "type-fest"; 55308 + packageName = "type-fest"; 55309 + version = "0.10.0"; 55310 + src = fetchurl { 55311 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.10.0.tgz"; 55312 + sha512 = "EUV9jo4sffrwlg8s0zDhP0T2WD3pru5Xi0+HTE3zTUmBaZNhfkite9PdSJwdXLwPVW0jnAHT56pZHIOYckPEiw=="; 55313 + }; 55314 + }; 54253 55315 "type-fest-0.11.0" = { 54254 55316 name = "type-fest"; 54255 55317 packageName = "type-fest"; ··· 54304 55366 sha512 = "OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw=="; 54305 55367 }; 54306 55368 }; 55369 + "type-fest-0.20.2" = { 55370 + name = "type-fest"; 55371 + packageName = "type-fest"; 55372 + version = "0.20.2"; 55373 + src = fetchurl { 55374 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz"; 55375 + sha512 = "Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ=="; 55376 + }; 55377 + }; 54307 55378 "type-fest-0.3.1" = { 54308 55379 name = "type-fest"; 54309 55380 packageName = "type-fest"; ··· 54311 55382 src = fetchurl { 54312 55383 url = "https://registry.npmjs.org/type-fest/-/type-fest-0.3.1.tgz"; 54313 55384 sha512 = "cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ=="; 55385 + }; 55386 + }; 55387 + "type-fest-0.4.1" = { 55388 + name = "type-fest"; 55389 + packageName = "type-fest"; 55390 + version = "0.4.1"; 55391 + src = fetchurl { 55392 + url = "https://registry.npmjs.org/type-fest/-/type-fest-0.4.1.tgz"; 55393 + sha512 = "IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw=="; 54314 55394 }; 54315 55395 }; 54316 55396 "type-fest-0.5.2" = { ··· 54410 55490 src = fetchurl { 54411 55491 url = "https://registry.npmjs.org/typescript/-/typescript-3.0.3.tgz"; 54412 55492 sha512 = "kk80vLW9iGtjMnIv11qyxLqZm20UklzuR2tL0QAnDIygIUIemcZMxlMWudl9OOt76H3ntVzcTiddQ1/pAAJMYg=="; 55493 + }; 55494 + }; 55495 + "typescript-3.2.4" = { 55496 + name = "typescript"; 55497 + packageName = "typescript"; 55498 + version = "3.2.4"; 55499 + src = fetchurl { 55500 + url = "https://registry.npmjs.org/typescript/-/typescript-3.2.4.tgz"; 55501 + sha512 = "0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg=="; 54413 55502 }; 54414 55503 }; 54415 55504 "typescript-3.9.7" = { ··· 56184 57273 src = fetchurl { 56185 57274 url = "https://registry.npmjs.org/v8flags/-/v8flags-3.2.0.tgz"; 56186 57275 sha512 = "mH8etigqMfiGWdeXpaaqGfs6BndypxusHHcv2qSHyZkGEznCd/qAXCWWRzeowtL54147cktFOC4P5y+kl8d8Jg=="; 57276 + }; 57277 + }; 57278 + "vali-date-1.0.0" = { 57279 + name = "vali-date"; 57280 + packageName = "vali-date"; 57281 + version = "1.0.0"; 57282 + src = fetchurl { 57283 + url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz"; 57284 + sha1 = "1b904a59609fb328ef078138420934f6b86709a6"; 56187 57285 }; 56188 57286 }; 56189 57287 "valid-identifier-0.0.2" = { ··· 59940 61038 sha512 = "Yj3yXweRc8LdRMrCC8nIc4kkjWecPAUVh0TI0OUrWXx6aX790vLcDlWca6I4vsyCGH3LpWxq0dJRcMOFoVqmeg=="; 59941 61039 }; 59942 61040 }; 61041 + "zeromq-5.2.0" = { 61042 + name = "zeromq"; 61043 + packageName = "zeromq"; 61044 + version = "5.2.0"; 61045 + src = fetchurl { 61046 + url = "https://registry.npmjs.org/zeromq/-/zeromq-5.2.0.tgz"; 61047 + sha512 = "qsckhCmrg6et6zrAJytC971SSN/4iLxKgkXK1Wqn2Gij5KXMY+TA+3cy/iFwehaWdU5usg5HNOOgaBdjSqtCVw=="; 61048 + }; 61049 + }; 59943 61050 "zerr-1.0.4" = { 59944 61051 name = "zerr"; 59945 61052 packageName = "zerr"; ··· 60170 61277 sources."yallist-3.1.1" 60171 61278 ]; 60172 61279 }) 60173 - sources."mime-db-1.44.0" 60174 - sources."mime-types-2.1.27" 61280 + sources."mime-db-1.45.0" 61281 + sources."mime-types-2.1.28" 60175 61282 sources."mimic-fn-2.1.0" 60176 61283 sources."minimatch-3.0.4" 60177 61284 sources."minimist-1.2.5" ··· 60570 61677 sources."map-obj-4.1.0" 60571 61678 sources."marky-1.2.1" 60572 61679 sources."matcher-2.1.0" 60573 - sources."mime-db-1.44.0" 60574 - sources."mime-types-2.1.27" 61680 + sources."mime-db-1.45.0" 61681 + sources."mime-types-2.1.28" 60575 61682 sources."mimic-response-2.1.0" 60576 61683 sources."minimatch-3.0.4" 60577 61684 sources."minimatch-all-1.1.0" ··· 60785 61892 sources."lodash.sortby-4.7.0" 60786 61893 sources."lowdb-1.0.0" 60787 61894 sources."lunr-2.3.3" 60788 - sources."mime-db-1.44.0" 60789 - sources."mime-types-2.1.27" 61895 + sources."mime-db-1.45.0" 61896 + sources."mime-types-2.1.28" 60790 61897 sources."mimic-fn-1.2.0" 60791 61898 sources."ms-2.1.2" 60792 61899 sources."mute-stream-0.0.7" ··· 61065 62172 sources."memfs-3.2.0" 61066 62173 sources."memory-fs-0.5.0" 61067 62174 sources."merge-stream-2.0.0" 61068 - sources."mime-db-1.44.0" 61069 - sources."mime-types-2.1.27" 62175 + sources."mime-db-1.45.0" 62176 + sources."mime-types-2.1.28" 61070 62177 sources."mimic-fn-2.1.0" 61071 62178 sources."minimatch-3.0.4" 61072 62179 sources."minimist-1.2.5" ··· 62500 63607 sources."methods-1.1.2" 62501 63608 sources."micromatch-4.0.2" 62502 63609 sources."mime-1.6.0" 62503 - sources."mime-db-1.44.0" 62504 - sources."mime-types-2.1.27" 63610 + sources."mime-db-1.45.0" 63611 + sources."mime-types-2.1.28" 62505 63612 sources."mimic-fn-1.2.0" 62506 63613 sources."mimic-response-1.0.1" 62507 63614 sources."minimalistic-assert-1.0.1" ··· 63613 64720 sources."levn-0.3.0" 63614 64721 sources."lodash-4.17.20" 63615 64722 sources."lodash.sortby-4.7.0" 63616 - sources."mime-db-1.44.0" 63617 - sources."mime-types-2.1.27" 64723 + sources."mime-db-1.45.0" 64724 + sources."mime-types-2.1.28" 63618 64725 sources."minimatch-3.0.4" 63619 64726 sources."nwsapi-2.2.0" 63620 64727 sources."oauth-sign-0.9.0" ··· 64303 65410 sources."merkle-lib-2.0.10" 64304 65411 sources."methods-1.1.2" 64305 65412 sources."mime-1.6.0" 64306 - sources."mime-db-1.44.0" 64307 - sources."mime-types-2.1.27" 65413 + sources."mime-db-1.45.0" 65414 + sources."mime-types-2.1.28" 64308 65415 sources."minimalistic-assert-1.0.1" 64309 65416 sources."minimalistic-crypto-utils-1.0.1" 64310 65417 sources."minimatch-3.0.4" ··· 64709 65816 ]; 64710 65817 }) 64711 65818 sources."mime-1.6.0" 64712 - sources."mime-db-1.44.0" 64713 - sources."mime-types-2.1.27" 65819 + sources."mime-db-1.45.0" 65820 + sources."mime-types-2.1.28" 64714 65821 sources."mimic-response-1.0.1" 64715 65822 sources."minimatch-3.0.4" 64716 65823 sources."minimist-1.2.5" ··· 64930 66037 bypassCache = true; 64931 66038 reconstructLock = true; 64932 66039 }; 66040 + cdk8s-cli = nodeEnv.buildNodePackage { 66041 + name = "cdk8s-cli"; 66042 + packageName = "cdk8s-cli"; 66043 + version = "1.0.0-beta.5"; 66044 + src = fetchurl { 66045 + url = "https://registry.npmjs.org/cdk8s-cli/-/cdk8s-cli-1.0.0-beta.5.tgz"; 66046 + sha512 = "5jVubGjmRXlrXPDJIl2g2oWApFmN7V2EzonMWDd67TlaOwwS8Ypy4ej3VvwviXyZ7IO9zET4pDNFSInBQE+aJw=="; 66047 + }; 66048 + dependencies = [ 66049 + sources."@jsii/spec-1.16.0" 66050 + sources."@types/node-10.17.50" 66051 + sources."ansi-regex-5.0.0" 66052 + sources."ansi-styles-4.3.0" 66053 + sources."array-filter-1.0.0" 66054 + sources."at-least-node-1.0.0" 66055 + sources."available-typed-arrays-1.0.2" 66056 + sources."call-bind-1.0.0" 66057 + sources."camelcase-6.2.0" 66058 + sources."case-1.6.3" 66059 + sources."cdk8s-1.0.0-beta.5" 66060 + sources."cliui-7.0.4" 66061 + sources."clone-2.1.2" 66062 + (sources."codemaker-1.16.0" // { 66063 + dependencies = [ 66064 + sources."fs-extra-9.0.1" 66065 + ]; 66066 + }) 66067 + sources."color-convert-2.0.1" 66068 + sources."color-name-1.1.4" 66069 + sources."colors-1.4.0" 66070 + sources."commonmark-0.29.3" 66071 + sources."constructs-3.2.90" 66072 + sources."date-format-3.0.0" 66073 + sources."debug-4.3.2" 66074 + sources."decamelize-4.0.0" 66075 + sources."deep-equal-2.0.5" 66076 + sources."define-properties-1.1.3" 66077 + sources."detect-indent-5.0.0" 66078 + sources."detect-newline-2.1.0" 66079 + sources."dot-case-3.0.4" 66080 + sources."emoji-regex-8.0.0" 66081 + sources."entities-2.0.3" 66082 + sources."es-abstract-1.17.7" 66083 + sources."es-get-iterator-1.1.1" 66084 + sources."es-to-primitive-1.2.1" 66085 + sources."escalade-3.1.1" 66086 + sources."escape-string-regexp-4.0.0" 66087 + sources."find-up-4.1.0" 66088 + sources."flatted-2.0.2" 66089 + sources."foreach-2.0.5" 66090 + (sources."fs-extra-8.1.0" // { 66091 + dependencies = [ 66092 + sources."jsonfile-4.0.0" 66093 + sources."universalify-0.1.2" 66094 + ]; 66095 + }) 66096 + sources."function-bind-1.1.1" 66097 + sources."get-caller-file-2.0.5" 66098 + sources."get-intrinsic-1.0.2" 66099 + sources."graceful-fs-4.2.4" 66100 + sources."has-1.0.3" 66101 + sources."has-symbols-1.0.1" 66102 + sources."is-arguments-1.1.0" 66103 + sources."is-bigint-1.0.1" 66104 + sources."is-boolean-object-1.1.0" 66105 + sources."is-callable-1.2.2" 66106 + sources."is-date-object-1.0.2" 66107 + sources."is-fullwidth-code-point-3.0.0" 66108 + sources."is-map-2.0.2" 66109 + sources."is-negative-zero-2.0.1" 66110 + sources."is-number-object-1.0.4" 66111 + sources."is-regex-1.1.1" 66112 + sources."is-set-2.0.2" 66113 + sources."is-string-1.0.5" 66114 + sources."is-symbol-1.0.3" 66115 + (sources."is-typed-array-1.1.4" // { 66116 + dependencies = [ 66117 + sources."es-abstract-1.18.0-next.1" 66118 + ]; 66119 + }) 66120 + sources."is-weakmap-2.0.1" 66121 + sources."is-weakset-2.0.1" 66122 + sources."isarray-2.0.5" 66123 + (sources."jsii-1.16.0" // { 66124 + dependencies = [ 66125 + sources."fs-extra-9.0.1" 66126 + sources."yargs-16.2.0" 66127 + ]; 66128 + }) 66129 + (sources."jsii-pacmak-1.16.0" // { 66130 + dependencies = [ 66131 + sources."fs-extra-9.0.1" 66132 + sources."yargs-16.2.0" 66133 + ]; 66134 + }) 66135 + (sources."jsii-reflect-1.16.0" // { 66136 + dependencies = [ 66137 + sources."fs-extra-9.0.1" 66138 + sources."yargs-16.2.0" 66139 + ]; 66140 + }) 66141 + (sources."jsii-rosetta-1.16.0" // { 66142 + dependencies = [ 66143 + sources."fs-extra-9.0.1" 66144 + sources."yargs-16.2.0" 66145 + ]; 66146 + }) 66147 + (sources."jsii-srcmak-0.1.176" // { 66148 + dependencies = [ 66149 + sources."fs-extra-9.0.1" 66150 + ]; 66151 + }) 66152 + sources."json-schema-0.2.5" 66153 + sources."json2jsii-0.1.168" 66154 + (sources."jsonfile-6.1.0" // { 66155 + dependencies = [ 66156 + sources."universalify-2.0.0" 66157 + ]; 66158 + }) 66159 + sources."jsonschema-1.4.0" 66160 + sources."locate-path-5.0.0" 66161 + sources."log4js-6.3.0" 66162 + sources."lower-case-2.0.2" 66163 + sources."lru-cache-6.0.0" 66164 + sources."mdurl-1.0.1" 66165 + sources."minimist-1.2.5" 66166 + sources."ms-2.1.2" 66167 + sources."ncp-2.0.0" 66168 + sources."no-case-3.0.4" 66169 + sources."object-inspect-1.9.0" 66170 + sources."object-is-1.1.4" 66171 + sources."object-keys-1.1.1" 66172 + sources."object.assign-4.1.2" 66173 + sources."oo-ascii-tree-1.16.0" 66174 + sources."p-limit-2.3.0" 66175 + sources."p-locate-4.1.0" 66176 + sources."p-try-2.2.0" 66177 + sources."path-exists-4.0.0" 66178 + sources."regexp.prototype.flags-1.3.0" 66179 + sources."require-directory-2.1.1" 66180 + sources."require-main-filename-2.0.0" 66181 + sources."rfdc-1.1.4" 66182 + sources."semver-7.3.4" 66183 + (sources."semver-intersect-1.4.0" // { 66184 + dependencies = [ 66185 + sources."semver-5.7.1" 66186 + ]; 66187 + }) 66188 + sources."set-blocking-2.0.0" 66189 + sources."side-channel-1.0.4" 66190 + sources."snake-case-3.0.4" 66191 + sources."sort-json-2.0.0" 66192 + sources."spdx-license-list-6.3.0" 66193 + sources."sscaff-1.2.0" 66194 + (sources."streamroller-2.2.4" // { 66195 + dependencies = [ 66196 + sources."date-format-2.1.0" 66197 + ]; 66198 + }) 66199 + sources."string-width-4.2.0" 66200 + sources."string.prototype.repeat-0.2.0" 66201 + sources."string.prototype.trimend-1.0.3" 66202 + sources."string.prototype.trimstart-1.0.3" 66203 + sources."strip-ansi-6.0.0" 66204 + sources."tslib-2.0.3" 66205 + sources."typescript-3.9.7" 66206 + sources."universalify-1.0.0" 66207 + sources."which-boxed-primitive-1.0.2" 66208 + sources."which-collection-1.0.1" 66209 + sources."which-module-2.0.0" 66210 + (sources."which-typed-array-1.1.4" // { 66211 + dependencies = [ 66212 + sources."es-abstract-1.18.0-next.1" 66213 + ]; 66214 + }) 66215 + sources."wrap-ansi-7.0.0" 66216 + sources."xmlbuilder-15.1.1" 66217 + sources."xmldom-0.4.0" 66218 + sources."y18n-5.0.5" 66219 + sources."yallist-4.0.0" 66220 + sources."yaml-1.10.0" 66221 + (sources."yargs-15.4.1" // { 66222 + dependencies = [ 66223 + sources."camelcase-5.3.1" 66224 + sources."cliui-6.0.0" 66225 + sources."decamelize-1.2.0" 66226 + sources."wrap-ansi-6.2.0" 66227 + sources."y18n-4.0.1" 66228 + sources."yargs-parser-18.1.3" 66229 + ]; 66230 + }) 66231 + sources."yargs-parser-20.2.4" 66232 + ]; 66233 + buildInputs = globalBuildInputs; 66234 + meta = { 66235 + description = "CDK for Kubernetes CLI"; 66236 + homepage = "https://github.com/awslabs/cdk8s#readme"; 66237 + license = "Apache-2.0"; 66238 + }; 66239 + production = true; 66240 + bypassCache = true; 66241 + reconstructLock = true; 66242 + }; 64933 66243 cdktf-cli = nodeEnv.buildNodePackage { 64934 66244 name = "cdktf-cli"; 64935 66245 packageName = "cdktf-cli"; ··· 64975 66285 sources."color-name-1.1.4" 64976 66286 sources."colors-1.4.0" 64977 66287 sources."commonmark-0.29.3" 64978 - sources."constructs-3.2.89" 66288 + sources."constructs-3.2.90" 64979 66289 sources."date-format-3.0.0" 64980 66290 sources."debug-4.3.2" 64981 66291 sources."decamelize-1.2.0" ··· 65094 66404 sources."yargs-16.2.0" 65095 66405 ]; 65096 66406 }) 65097 - (sources."jsii-srcmak-0.1.175" // { 66407 + (sources."jsii-srcmak-0.1.176" // { 65098 66408 dependencies = [ 65099 66409 sources."fs-extra-9.0.1" 65100 66410 (sources."jsonfile-6.1.0" // { ··· 65449 66759 coc-go = nodeEnv.buildNodePackage { 65450 66760 name = "coc-go"; 65451 66761 packageName = "coc-go"; 65452 - version = "0.13.1"; 66762 + version = "0.13.2"; 65453 66763 src = fetchurl { 65454 - url = "https://registry.npmjs.org/coc-go/-/coc-go-0.13.1.tgz"; 65455 - sha512 = "aXFST4PuM2qMb/fkzywTMEWXaHuFhWesmEXWCDTwUmWR7buFC0JYB362iwLJoSCGLedORnsQ9Lt8PGKNHozPWQ=="; 66764 + url = "https://registry.npmjs.org/coc-go/-/coc-go-0.13.2.tgz"; 66765 + sha512 = "E//SHaQlzmh4nBUJsA6oSZWBVFkEWJ/kjL19jIBbIrY8KWCjxfCm6H8+WDNMUULHS2HQNlUEQzVHS/ftE10iGg=="; 65456 66766 }; 65457 66767 dependencies = [ 65458 66768 sources."isexe-2.0.0" ··· 66943 68253 sources."@types/normalize-package-data-2.4.0" 66944 68254 sources."@types/parse-json-4.0.0" 66945 68255 sources."@types/unist-2.0.3" 66946 - sources."ajv-6.12.6" 68256 + sources."ajv-7.0.3" 66947 68257 sources."ansi-regex-5.0.0" 66948 68258 sources."ansi-styles-3.2.1" 66949 68259 sources."array-union-2.1.0" ··· 67007 68317 sources."fast-deep-equal-3.1.3" 67008 68318 sources."fast-diff-1.2.0" 67009 68319 sources."fast-glob-3.2.4" 67010 - sources."fast-json-stable-stringify-2.1.0" 67011 68320 sources."fastest-levenshtein-1.0.12" 67012 68321 sources."fastq-1.10.0" 67013 68322 sources."file-entry-cache-6.0.0" ··· 67064 68373 sources."js-tokens-4.0.0" 67065 68374 sources."jsesc-2.5.2" 67066 68375 sources."json-parse-even-better-errors-2.3.1" 67067 - sources."json-schema-traverse-0.4.1" 68376 + sources."json-schema-traverse-1.0.0" 67068 68377 sources."json5-2.1.3" 67069 68378 sources."kind-of-6.0.3" 67070 68379 sources."known-css-properties-0.20.0" ··· 67155 68464 sources."remark-parse-9.0.0" 67156 68465 sources."remark-stringify-9.0.1" 67157 68466 sources."repeat-string-1.6.1" 68467 + sources."require-from-string-2.0.2" 67158 68468 sources."resolve-1.19.0" 67159 68469 sources."resolve-from-5.0.0" 67160 68470 sources."reusify-1.0.4" ··· 67190 68500 sources."sugarss-2.0.0" 67191 68501 sources."supports-color-5.5.0" 67192 68502 sources."svg-tags-1.0.0" 67193 - sources."table-6.0.4" 68503 + sources."table-6.0.6" 67194 68504 sources."to-fast-properties-2.0.0" 67195 68505 sources."to-regex-range-5.0.1" 67196 68506 sources."trim-newlines-3.0.0" ··· 67417 68727 sources."emoji-regex-8.0.0" 67418 68728 sources."enquirer-2.3.6" 67419 68729 sources."escape-string-regexp-1.0.5" 67420 - sources."eslint-7.16.0" 68730 + sources."eslint-7.17.0" 67421 68731 sources."eslint-plugin-vue-7.4.0" 67422 68732 sources."eslint-scope-5.1.1" 67423 68733 (sources."eslint-utils-2.1.0" // { ··· 67491 68801 sources."progress-2.0.3" 67492 68802 sources."punycode-2.1.1" 67493 68803 sources."regexpp-3.1.0" 68804 + sources."require-from-string-2.0.2" 67494 68805 sources."resolve-1.19.0" 67495 68806 sources."resolve-from-4.0.0" 67496 68807 sources."rimraf-3.0.2" ··· 67509 68820 sources."strip-ansi-6.0.0" 67510 68821 sources."strip-json-comments-3.1.1" 67511 68822 sources."supports-color-5.5.0" 67512 - sources."table-6.0.4" 68823 + (sources."table-6.0.6" // { 68824 + dependencies = [ 68825 + sources."ajv-7.0.3" 68826 + sources."json-schema-traverse-1.0.0" 68827 + ]; 68828 + }) 67513 68829 sources."text-table-0.2.0" 67514 68830 sources."tslib-1.14.1" 67515 68831 (sources."tslint-6.1.3" // { ··· 68099 69415 sources."methods-1.1.2" 68100 69416 sources."micromatch-4.0.2" 68101 69417 sources."mime-1.6.0" 68102 - sources."mime-db-1.44.0" 68103 - sources."mime-types-2.1.27" 69418 + sources."mime-db-1.45.0" 69419 + sources."mime-types-2.1.28" 68104 69420 sources."mimic-fn-2.1.0" 68105 69421 sources."mimic-response-1.0.1" 68106 69422 sources."minimatch-3.0.4" ··· 68776 70092 sources."lru-cache-4.1.5" 68777 70093 sources."methods-1.1.2" 68778 70094 sources."mime-1.6.0" 68779 - sources."mime-db-1.44.0" 68780 - sources."mime-types-2.1.27" 70095 + sources."mime-db-1.45.0" 70096 + sources."mime-types-2.1.28" 68781 70097 sources."mimic-fn-1.2.0" 68782 70098 sources."minimist-1.2.5" 68783 70099 sources."ms-2.1.3" ··· 69328 70644 sources."merkle-tree-stream-3.0.3" 69329 70645 sources."micromatch-3.1.10" 69330 70646 sources."mime-2.4.7" 69331 - sources."mime-db-1.44.0" 69332 - sources."mime-types-2.1.27" 70647 + sources."mime-db-1.45.0" 70648 + sources."mime-types-2.1.28" 69333 70649 sources."mimic-response-2.1.0" 69334 70650 sources."min-document-2.19.0" 69335 70651 sources."minimatch-3.0.4" ··· 69847 71163 sources."lodash.uniq-4.5.0" 69848 71164 sources."lossless-json-1.0.4" 69849 71165 sources."method-missing-1.2.4" 69850 - sources."mime-db-1.44.0" 69851 - sources."mime-types-2.1.27" 71166 + sources."mime-db-1.45.0" 71167 + sources."mime-types-2.1.28" 69852 71168 sources."minimist-1.2.5" 69853 71169 sources."oauth-sign-0.9.0" 69854 71170 sources."p-finally-1.0.0" ··· 71164 72480 ]; 71165 72481 }) 71166 72482 sources."mime-1.6.0" 71167 - sources."mime-db-1.44.0" 71168 - sources."mime-types-2.1.27" 72483 + sources."mime-db-1.45.0" 72484 + sources."mime-types-2.1.28" 71169 72485 sources."mimic-fn-1.2.0" 71170 72486 sources."mimic-response-1.0.1" 71171 72487 sources."minimalistic-assert-1.0.1" ··· 71931 73247 eslint = nodeEnv.buildNodePackage { 71932 73248 name = "eslint"; 71933 73249 packageName = "eslint"; 71934 - version = "7.16.0"; 73250 + version = "7.17.0"; 71935 73251 src = fetchurl { 71936 - url = "https://registry.npmjs.org/eslint/-/eslint-7.16.0.tgz"; 71937 - sha512 = "iVWPS785RuDA4dWuhhgXTNrGxHHK3a8HLSMBgbbU59ruJDubUraXN8N5rn7kb8tG6sjg74eE0RA3YWT51eusEw=="; 73252 + url = "https://registry.npmjs.org/eslint/-/eslint-7.17.0.tgz"; 73253 + sha512 = "zJk08MiBgwuGoxes5sSQhOtibZ75pz0J35XTRlZOk9xMffhpA9BTbQZxoXZzOl5zMbleShbGwtw+1kGferfFwQ=="; 71938 73254 }; 71939 73255 dependencies = [ 71940 73256 sources."@babel/code-frame-7.12.11" ··· 72040 73356 sources."progress-2.0.3" 72041 73357 sources."punycode-2.1.1" 72042 73358 sources."regexpp-3.1.0" 73359 + sources."require-from-string-2.0.2" 72043 73360 sources."resolve-from-4.0.0" 72044 73361 sources."rimraf-3.0.2" 72045 73362 sources."semver-7.3.4" ··· 72057 73374 sources."strip-ansi-6.0.0" 72058 73375 sources."strip-json-comments-3.1.1" 72059 73376 sources."supports-color-5.5.0" 72060 - sources."table-6.0.4" 73377 + (sources."table-6.0.6" // { 73378 + dependencies = [ 73379 + sources."ajv-7.0.3" 73380 + sources."json-schema-traverse-1.0.0" 73381 + ]; 73382 + }) 72061 73383 sources."text-table-0.2.0" 72062 73384 sources."type-check-0.4.0" 72063 73385 sources."type-fest-0.8.1" ··· 72126 73448 sources."emoji-regex-8.0.0" 72127 73449 sources."enquirer-2.3.6" 72128 73450 sources."escape-string-regexp-1.0.5" 72129 - sources."eslint-7.16.0" 73451 + sources."eslint-7.17.0" 72130 73452 sources."eslint-scope-5.1.1" 72131 73453 (sources."eslint-utils-2.1.0" // { 72132 73454 dependencies = [ ··· 72193 73515 sources."progress-2.0.3" 72194 73516 sources."punycode-2.1.1" 72195 73517 sources."regexpp-3.1.0" 73518 + sources."require-from-string-2.0.2" 72196 73519 sources."resolve-from-4.0.0" 72197 73520 sources."rimraf-3.0.2" 72198 73521 sources."semver-7.3.4" ··· 72210 73533 sources."strip-ansi-6.0.0" 72211 73534 sources."strip-json-comments-3.1.1" 72212 73535 sources."supports-color-5.5.0" 72213 - sources."table-6.0.4" 73536 + (sources."table-6.0.6" // { 73537 + dependencies = [ 73538 + sources."ajv-7.0.3" 73539 + sources."json-schema-traverse-1.0.0" 73540 + ]; 73541 + }) 72214 73542 sources."text-table-0.2.0" 72215 73543 sources."type-check-0.4.0" 72216 73544 sources."type-fest-0.8.1" ··· 72231 73559 bypassCache = true; 72232 73560 reconstructLock = true; 72233 73561 }; 73562 + esy = nodeEnv.buildNodePackage { 73563 + name = "esy"; 73564 + packageName = "esy"; 73565 + version = "0.6.7"; 73566 + src = fetchurl { 73567 + url = "https://registry.npmjs.org/esy/-/esy-0.6.7.tgz"; 73568 + sha512 = "G/C0wXDQy19eDqlFNmPg2kHmrllUez9deZd1OOIk/VTKtc75STdeE/Nl1NusVY+La/+eCtovNqk0/ZAb4Mg8gw=="; 73569 + }; 73570 + dependencies = [ 73571 + sources."esy-solve-cudf-0.1.10" 73572 + ]; 73573 + buildInputs = globalBuildInputs; 73574 + meta = { 73575 + description = "Package builder for esy."; 73576 + license = "MIT"; 73577 + }; 73578 + production = true; 73579 + bypassCache = true; 73580 + reconstructLock = true; 73581 + }; 72234 73582 expo-cli = nodeEnv.buildNodePackage { 72235 73583 name = "expo-cli"; 72236 73584 packageName = "expo-cli"; ··· 73064 74412 sources."semver-6.3.0" 73065 74413 ]; 73066 74414 }) 73067 - (sources."css-select-1.2.0" // { 74415 + (sources."css-select-2.1.0" // { 73068 74416 dependencies = [ 73069 74417 (sources."dom-serializer-0.2.2" // { 73070 74418 dependencies = [ ··· 73072 74420 ]; 73073 74421 }) 73074 74422 sources."domelementtype-1.3.1" 73075 - sources."domutils-1.5.1" 74423 + sources."domutils-1.7.0" 73076 74424 ]; 73077 74425 }) 73078 74426 sources."css-select-base-adapter-0.1.1" ··· 73081 74429 sources."source-map-0.6.1" 73082 74430 ]; 73083 74431 }) 73084 - sources."css-what-2.1.3" 74432 + sources."css-what-3.4.2" 73085 74433 sources."cssesc-3.0.0" 73086 74434 sources."cssnano-4.1.10" 73087 74435 sources."cssnano-preset-default-4.0.7" ··· 73718 75066 ]; 73719 75067 }) 73720 75068 sources."mime-2.4.7" 73721 - sources."mime-db-1.44.0" 73722 - sources."mime-types-2.1.27" 75069 + sources."mime-db-1.45.0" 75070 + sources."mime-types-2.1.28" 73723 75071 sources."mimic-fn-1.2.0" 73724 75072 sources."mimic-response-1.0.1" 73725 75073 sources."min-document-2.19.0" ··· 74268 75616 sources."relateurl-0.2.7" 74269 75617 sources."remove-trailing-separator-1.1.0" 74270 75618 sources."remove-trailing-slash-0.1.1" 74271 - (sources."renderkid-2.0.4" // { 75619 + (sources."renderkid-2.0.5" // { 74272 75620 dependencies = [ 74273 75621 sources."ansi-regex-2.1.1" 74274 75622 (sources."dom-serializer-0.2.2" // { ··· 74522 75870 (sources."svgo-1.3.2" // { 74523 75871 dependencies = [ 74524 75872 sources."chalk-2.4.2" 74525 - sources."css-select-2.1.0" 74526 - sources."css-what-3.4.2" 74527 - (sources."dom-serializer-0.2.2" // { 74528 - dependencies = [ 74529 - sources."domelementtype-2.1.0" 74530 - ]; 74531 - }) 74532 - sources."domelementtype-1.3.1" 74533 - sources."domutils-1.7.0" 74534 75873 ]; 74535 75874 }) 74536 75875 sources."symbol-observable-1.2.0" ··· 75054 76393 sources."loud-rejection-1.6.0" 75055 76394 sources."map-obj-1.0.1" 75056 76395 sources."meow-3.7.0" 75057 - sources."mime-db-1.44.0" 75058 - sources."mime-types-2.1.27" 76396 + sources."mime-db-1.45.0" 76397 + sources."mime-types-2.1.28" 75059 76398 sources."mimic-fn-1.2.0" 75060 76399 sources."minimist-1.2.5" 75061 76400 sources."mkdirp-0.5.5" ··· 75487 76826 sources."map-visit-1.0.0" 75488 76827 sources."merge2-1.4.1" 75489 76828 sources."micromatch-4.0.2" 75490 - sources."mime-db-1.44.0" 75491 - sources."mime-types-2.1.27" 76829 + sources."mime-db-1.45.0" 76830 + sources."mime-types-2.1.28" 75492 76831 sources."mimic-response-1.0.1" 75493 76832 sources."minimatch-3.0.4" 75494 76833 (sources."mixin-deep-1.3.2" // { ··· 75703 77042 bypassCache = true; 75704 77043 reconstructLock = true; 75705 77044 }; 77045 + firebase-tools = nodeEnv.buildNodePackage { 77046 + name = "firebase-tools"; 77047 + packageName = "firebase-tools"; 77048 + version = "9.1.0"; 77049 + src = fetchurl { 77050 + url = "https://registry.npmjs.org/firebase-tools/-/firebase-tools-9.1.0.tgz"; 77051 + sha512 = "hTfxL2meJSl5WuwAS6bEJ5nay7tu3MNYb4ZL2KmPL7yLM3IeT+Qd2z1evHhW1VvbDXKR6RTwlBxzdWPs4l75kA=="; 77052 + }; 77053 + dependencies = [ 77054 + sources."@apidevtools/json-schema-ref-parser-9.0.6" 77055 + sources."@dabh/diagnostics-2.0.2" 77056 + sources."@google-cloud/paginator-3.0.5" 77057 + sources."@google-cloud/precise-date-2.0.3" 77058 + sources."@google-cloud/projectify-2.0.1" 77059 + sources."@google-cloud/promisify-2.0.3" 77060 + sources."@google-cloud/pubsub-2.7.0" 77061 + (sources."@grpc/grpc-js-1.1.8" // { 77062 + dependencies = [ 77063 + sources."@grpc/proto-loader-0.6.0-pre9" 77064 + sources."@types/node-12.19.11" 77065 + sources."semver-6.3.0" 77066 + ]; 77067 + }) 77068 + sources."@grpc/proto-loader-0.5.5" 77069 + sources."@jsdevtools/ono-7.1.3" 77070 + sources."@opentelemetry/api-0.11.0" 77071 + sources."@opentelemetry/context-base-0.11.0" 77072 + (sources."@opentelemetry/core-0.11.0" // { 77073 + dependencies = [ 77074 + sources."semver-7.3.4" 77075 + ]; 77076 + }) 77077 + sources."@opentelemetry/resources-0.11.0" 77078 + sources."@opentelemetry/semantic-conventions-0.11.0" 77079 + sources."@opentelemetry/tracing-0.11.0" 77080 + sources."@protobufjs/aspromise-1.1.2" 77081 + sources."@protobufjs/base64-1.1.2" 77082 + sources."@protobufjs/codegen-2.0.4" 77083 + sources."@protobufjs/eventemitter-1.1.0" 77084 + sources."@protobufjs/fetch-1.1.0" 77085 + sources."@protobufjs/float-1.0.2" 77086 + sources."@protobufjs/inquire-1.1.0" 77087 + sources."@protobufjs/path-1.1.2" 77088 + sources."@protobufjs/pool-1.1.0" 77089 + sources."@protobufjs/utf8-1.1.0" 77090 + sources."@sindresorhus/is-0.14.0" 77091 + sources."@szmarczak/http-timer-1.1.2" 77092 + sources."@types/duplexify-3.6.0" 77093 + sources."@types/long-4.0.1" 77094 + sources."@types/node-14.14.19" 77095 + sources."JSONStream-1.3.5" 77096 + sources."abbrev-1.1.1" 77097 + sources."abort-controller-3.0.0" 77098 + sources."accepts-1.3.7" 77099 + sources."agent-base-6.0.2" 77100 + sources."ajv-6.12.6" 77101 + (sources."ansi-align-3.0.0" // { 77102 + dependencies = [ 77103 + sources."ansi-regex-4.1.0" 77104 + sources."emoji-regex-7.0.3" 77105 + sources."is-fullwidth-code-point-2.0.0" 77106 + sources."string-width-3.1.0" 77107 + sources."strip-ansi-5.2.0" 77108 + ]; 77109 + }) 77110 + sources."ansi-escapes-3.2.0" 77111 + sources."ansi-regex-5.0.0" 77112 + sources."ansi-styles-4.3.0" 77113 + sources."ansicolors-0.3.2" 77114 + sources."anymatch-3.1.1" 77115 + sources."aproba-1.2.0" 77116 + sources."archiver-3.1.1" 77117 + (sources."archiver-utils-2.1.0" // { 77118 + dependencies = [ 77119 + sources."readable-stream-2.3.7" 77120 + sources."safe-buffer-5.1.2" 77121 + sources."string_decoder-1.1.1" 77122 + ]; 77123 + }) 77124 + (sources."are-we-there-yet-1.1.5" // { 77125 + dependencies = [ 77126 + sources."readable-stream-2.3.7" 77127 + sources."safe-buffer-5.1.2" 77128 + sources."string_decoder-1.1.1" 77129 + ]; 77130 + }) 77131 + sources."argparse-1.0.10" 77132 + sources."array-flatten-1.1.1" 77133 + sources."arrify-2.0.1" 77134 + sources."as-array-2.0.0" 77135 + sources."asn1-0.2.4" 77136 + sources."assert-plus-1.0.0" 77137 + sources."async-2.6.3" 77138 + sources."asynckit-0.4.0" 77139 + sources."aws-sign2-0.7.0" 77140 + sources."aws4-1.11.0" 77141 + sources."balanced-match-1.0.0" 77142 + sources."base64-js-1.5.1" 77143 + (sources."basic-auth-2.0.1" // { 77144 + dependencies = [ 77145 + sources."safe-buffer-5.1.2" 77146 + ]; 77147 + }) 77148 + sources."basic-auth-connect-1.0.0" 77149 + sources."bcrypt-pbkdf-1.0.2" 77150 + sources."big-integer-1.6.48" 77151 + sources."bignumber.js-9.0.1" 77152 + sources."binary-0.3.0" 77153 + sources."binary-extensions-2.1.0" 77154 + sources."bl-4.0.3" 77155 + sources."blakejs-1.1.0" 77156 + sources."bluebird-3.4.7" 77157 + (sources."body-parser-1.19.0" // { 77158 + dependencies = [ 77159 + sources."debug-2.6.9" 77160 + sources."ms-2.0.0" 77161 + ]; 77162 + }) 77163 + (sources."boxen-4.2.0" // { 77164 + dependencies = [ 77165 + sources."chalk-3.0.0" 77166 + sources."has-flag-4.0.0" 77167 + sources."supports-color-7.2.0" 77168 + ]; 77169 + }) 77170 + sources."brace-expansion-1.1.11" 77171 + sources."braces-3.0.2" 77172 + sources."buffer-5.7.1" 77173 + sources."buffer-crc32-0.2.13" 77174 + sources."buffer-equal-constant-time-1.0.1" 77175 + sources."buffer-indexof-polyfill-1.0.2" 77176 + sources."buffers-0.1.1" 77177 + sources."bytes-3.1.0" 77178 + (sources."cacheable-request-6.1.0" // { 77179 + dependencies = [ 77180 + sources."get-stream-5.2.0" 77181 + sources."lowercase-keys-2.0.0" 77182 + ]; 77183 + }) 77184 + sources."call-me-maybe-1.0.1" 77185 + sources."camelcase-5.3.1" 77186 + sources."cardinal-2.1.1" 77187 + sources."caseless-0.12.0" 77188 + sources."chainsaw-0.1.0" 77189 + (sources."chalk-2.4.2" // { 77190 + dependencies = [ 77191 + sources."ansi-styles-3.2.1" 77192 + sources."color-convert-1.9.3" 77193 + sources."color-name-1.1.3" 77194 + ]; 77195 + }) 77196 + sources."chardet-0.7.0" 77197 + sources."chokidar-3.4.3" 77198 + sources."chownr-2.0.0" 77199 + sources."ci-info-2.0.0" 77200 + sources."cjson-0.3.3" 77201 + sources."cli-boxes-2.2.1" 77202 + (sources."cli-color-1.4.0" // { 77203 + dependencies = [ 77204 + sources."ansi-regex-2.1.1" 77205 + ]; 77206 + }) 77207 + sources."cli-cursor-2.1.0" 77208 + sources."cli-spinners-2.5.0" 77209 + sources."cli-table-0.3.4" 77210 + sources."cli-width-2.2.1" 77211 + sources."cliui-6.0.0" 77212 + sources."clone-1.0.4" 77213 + sources."clone-response-1.0.2" 77214 + sources."code-point-at-1.1.0" 77215 + (sources."color-3.0.0" // { 77216 + dependencies = [ 77217 + sources."color-convert-1.9.3" 77218 + sources."color-name-1.1.3" 77219 + ]; 77220 + }) 77221 + sources."color-convert-2.0.1" 77222 + sources."color-name-1.1.4" 77223 + sources."color-string-1.5.4" 77224 + sources."colors-1.4.0" 77225 + sources."colorspace-1.1.2" 77226 + sources."combined-stream-1.0.8" 77227 + sources."commander-4.1.1" 77228 + sources."compare-semver-1.1.0" 77229 + (sources."compress-commons-2.1.1" // { 77230 + dependencies = [ 77231 + sources."readable-stream-2.3.7" 77232 + sources."safe-buffer-5.1.2" 77233 + sources."string_decoder-1.1.1" 77234 + ]; 77235 + }) 77236 + sources."compressible-2.0.18" 77237 + (sources."compression-1.7.4" // { 77238 + dependencies = [ 77239 + sources."bytes-3.0.0" 77240 + sources."debug-2.6.9" 77241 + sources."ms-2.0.0" 77242 + sources."safe-buffer-5.1.2" 77243 + ]; 77244 + }) 77245 + sources."concat-map-0.0.1" 77246 + sources."configstore-5.0.1" 77247 + (sources."connect-3.7.0" // { 77248 + dependencies = [ 77249 + sources."debug-2.6.9" 77250 + sources."ms-2.0.0" 77251 + ]; 77252 + }) 77253 + sources."console-control-strings-1.1.0" 77254 + (sources."content-disposition-0.5.3" // { 77255 + dependencies = [ 77256 + sources."safe-buffer-5.1.2" 77257 + ]; 77258 + }) 77259 + sources."content-type-1.0.4" 77260 + sources."cookie-0.4.0" 77261 + sources."cookie-signature-1.0.6" 77262 + sources."core-util-is-1.0.2" 77263 + sources."crc-3.8.0" 77264 + sources."crc32-stream-3.0.1" 77265 + (sources."cross-env-5.2.1" // { 77266 + dependencies = [ 77267 + sources."cross-spawn-6.0.5" 77268 + ]; 77269 + }) 77270 + (sources."cross-spawn-7.0.3" // { 77271 + dependencies = [ 77272 + sources."path-key-3.1.1" 77273 + sources."shebang-command-2.0.0" 77274 + sources."shebang-regex-3.0.0" 77275 + sources."which-2.0.2" 77276 + ]; 77277 + }) 77278 + sources."crypto-random-string-2.0.0" 77279 + sources."csv-streamify-3.0.4" 77280 + sources."d-1.0.1" 77281 + sources."dashdash-1.14.1" 77282 + sources."debug-4.3.2" 77283 + sources."decamelize-1.2.0" 77284 + sources."decompress-response-3.3.0" 77285 + sources."deep-extend-0.6.0" 77286 + sources."deep-freeze-0.0.1" 77287 + sources."deep-is-0.1.3" 77288 + sources."defaults-1.0.3" 77289 + sources."defer-to-connect-1.1.3" 77290 + sources."delayed-stream-1.0.0" 77291 + sources."delegates-1.0.0" 77292 + sources."depd-1.1.2" 77293 + sources."destroy-1.0.4" 77294 + sources."dot-prop-5.3.0" 77295 + sources."dotenv-6.2.0" 77296 + (sources."duplexer2-0.1.4" // { 77297 + dependencies = [ 77298 + sources."readable-stream-2.3.7" 77299 + sources."safe-buffer-5.1.2" 77300 + sources."string_decoder-1.1.1" 77301 + ]; 77302 + }) 77303 + sources."duplexer3-0.1.4" 77304 + sources."duplexify-4.1.1" 77305 + sources."ecc-jsbn-0.1.2" 77306 + sources."ecdsa-sig-formatter-1.0.11" 77307 + sources."ee-first-1.1.1" 77308 + sources."emoji-regex-8.0.0" 77309 + sources."enabled-2.0.0" 77310 + sources."encodeurl-1.0.2" 77311 + sources."end-of-stream-1.4.4" 77312 + sources."env-paths-2.2.0" 77313 + sources."es5-ext-0.10.53" 77314 + sources."es6-iterator-2.0.3" 77315 + sources."es6-symbol-3.1.3" 77316 + sources."es6-weak-map-2.0.3" 77317 + sources."escape-goat-2.1.1" 77318 + sources."escape-html-1.0.3" 77319 + sources."escape-string-regexp-1.0.5" 77320 + sources."esprima-4.0.1" 77321 + sources."etag-1.8.1" 77322 + sources."event-emitter-0.3.5" 77323 + sources."event-target-shim-5.0.1" 77324 + sources."events-listener-1.1.0" 77325 + (sources."exegesis-2.5.6" // { 77326 + dependencies = [ 77327 + sources."semver-7.3.4" 77328 + ]; 77329 + }) 77330 + sources."exegesis-express-2.0.0" 77331 + sources."exit-code-1.0.2" 77332 + (sources."express-4.17.1" // { 77333 + dependencies = [ 77334 + sources."debug-2.6.9" 77335 + sources."ms-2.0.0" 77336 + sources."safe-buffer-5.1.2" 77337 + ]; 77338 + }) 77339 + (sources."ext-1.4.0" // { 77340 + dependencies = [ 77341 + sources."type-2.1.0" 77342 + ]; 77343 + }) 77344 + sources."extend-3.0.2" 77345 + sources."external-editor-3.1.0" 77346 + sources."extsprintf-1.3.0" 77347 + sources."fast-deep-equal-3.1.3" 77348 + sources."fast-json-stable-stringify-2.1.0" 77349 + sources."fast-safe-stringify-2.0.7" 77350 + sources."fast-text-encoding-1.0.3" 77351 + (sources."fast-url-parser-1.1.3" // { 77352 + dependencies = [ 77353 + sources."punycode-1.4.1" 77354 + ]; 77355 + }) 77356 + sources."fecha-4.2.0" 77357 + sources."figures-2.0.0" 77358 + sources."filesize-3.6.1" 77359 + sources."fill-range-7.0.1" 77360 + (sources."finalhandler-1.1.2" // { 77361 + dependencies = [ 77362 + sources."debug-2.6.9" 77363 + sources."ms-2.0.0" 77364 + ]; 77365 + }) 77366 + sources."find-up-4.1.0" 77367 + (sources."flat-arguments-1.0.2" // { 77368 + dependencies = [ 77369 + (sources."as-array-1.0.0" // { 77370 + dependencies = [ 77371 + sources."lodash.isarguments-2.4.1" 77372 + sources."lodash.isobject-2.4.1" 77373 + ]; 77374 + }) 77375 + sources."lodash.isobject-3.0.2" 77376 + ]; 77377 + }) 77378 + sources."fn.name-1.1.0" 77379 + sources."forever-agent-0.6.1" 77380 + sources."form-data-2.3.3" 77381 + sources."forwarded-0.1.2" 77382 + sources."fresh-0.5.2" 77383 + sources."fs-constants-1.0.0" 77384 + (sources."fs-extra-0.23.1" // { 77385 + dependencies = [ 77386 + sources."rimraf-2.7.1" 77387 + ]; 77388 + }) 77389 + sources."fs-minipass-2.1.0" 77390 + sources."fs.realpath-1.0.0" 77391 + sources."fsevents-2.1.3" 77392 + (sources."fstream-1.0.12" // { 77393 + dependencies = [ 77394 + sources."rimraf-2.7.1" 77395 + ]; 77396 + }) 77397 + (sources."gauge-2.7.4" // { 77398 + dependencies = [ 77399 + sources."ansi-regex-2.1.1" 77400 + sources."is-fullwidth-code-point-1.0.0" 77401 + sources."string-width-1.0.2" 77402 + sources."strip-ansi-3.0.1" 77403 + ]; 77404 + }) 77405 + sources."gaxios-4.1.0" 77406 + sources."gcp-metadata-4.2.1" 77407 + sources."get-caller-file-2.0.5" 77408 + sources."get-stream-4.1.0" 77409 + sources."getpass-0.1.7" 77410 + sources."glob-7.1.6" 77411 + sources."glob-parent-5.1.1" 77412 + sources."glob-slash-1.0.0" 77413 + sources."glob-slasher-1.0.1" 77414 + sources."global-dirs-2.1.0" 77415 + sources."google-auth-library-6.1.3" 77416 + sources."google-gax-2.9.2" 77417 + sources."google-p12-pem-3.0.3" 77418 + sources."got-9.6.0" 77419 + sources."graceful-fs-4.2.4" 77420 + (sources."gtoken-5.1.0" // { 77421 + dependencies = [ 77422 + sources."mime-2.4.7" 77423 + ]; 77424 + }) 77425 + sources."har-schema-2.0.0" 77426 + sources."har-validator-5.1.5" 77427 + (sources."has-ansi-2.0.0" // { 77428 + dependencies = [ 77429 + sources."ansi-regex-2.1.1" 77430 + ]; 77431 + }) 77432 + sources."has-flag-3.0.0" 77433 + sources."has-unicode-2.0.1" 77434 + sources."has-yarn-2.1.0" 77435 + sources."home-dir-1.0.0" 77436 + sources."http-cache-semantics-4.1.0" 77437 + (sources."http-errors-1.7.2" // { 77438 + dependencies = [ 77439 + sources."inherits-2.0.3" 77440 + ]; 77441 + }) 77442 + sources."http-signature-1.2.0" 77443 + sources."https-proxy-agent-5.0.0" 77444 + sources."iconv-lite-0.4.24" 77445 + sources."ieee754-1.2.1" 77446 + sources."import-lazy-2.1.0" 77447 + sources."imurmurhash-0.1.4" 77448 + sources."inflight-1.0.6" 77449 + sources."inherits-2.0.4" 77450 + sources."ini-1.3.7" 77451 + (sources."inquirer-6.3.1" // { 77452 + dependencies = [ 77453 + sources."ansi-regex-3.0.0" 77454 + sources."is-fullwidth-code-point-2.0.0" 77455 + (sources."string-width-2.1.1" // { 77456 + dependencies = [ 77457 + sources."strip-ansi-4.0.0" 77458 + ]; 77459 + }) 77460 + (sources."strip-ansi-5.2.0" // { 77461 + dependencies = [ 77462 + sources."ansi-regex-4.1.0" 77463 + ]; 77464 + }) 77465 + ]; 77466 + }) 77467 + sources."install-artifact-from-github-1.2.0" 77468 + sources."ip-regex-4.2.0" 77469 + sources."ipaddr.js-1.9.1" 77470 + sources."is-arrayish-0.3.2" 77471 + sources."is-binary-path-2.1.0" 77472 + sources."is-ci-2.0.0" 77473 + sources."is-extglob-2.1.1" 77474 + sources."is-fullwidth-code-point-3.0.0" 77475 + sources."is-glob-4.0.1" 77476 + sources."is-installed-globally-0.3.2" 77477 + sources."is-npm-4.0.0" 77478 + sources."is-number-7.0.0" 77479 + sources."is-obj-2.0.0" 77480 + sources."is-path-inside-3.0.2" 77481 + sources."is-promise-2.2.2" 77482 + sources."is-stream-2.0.0" 77483 + sources."is-stream-ended-0.1.4" 77484 + sources."is-typedarray-1.0.0" 77485 + sources."is-url-1.2.4" 77486 + sources."is-wsl-1.1.0" 77487 + sources."is-yarn-global-0.3.0" 77488 + sources."is2-2.0.6" 77489 + sources."isarray-1.0.0" 77490 + sources."isexe-2.0.0" 77491 + sources."isstream-0.1.2" 77492 + sources."jju-1.4.0" 77493 + sources."join-path-1.1.1" 77494 + sources."js-yaml-3.14.1" 77495 + sources."jsbn-0.1.1" 77496 + sources."json-bigint-1.0.0" 77497 + sources."json-buffer-3.0.0" 77498 + sources."json-parse-helpfulerror-1.0.3" 77499 + sources."json-ptr-1.3.2" 77500 + sources."json-schema-0.2.3" 77501 + sources."json-schema-traverse-0.4.1" 77502 + sources."json-stringify-safe-5.0.1" 77503 + sources."jsonfile-2.4.0" 77504 + sources."jsonparse-1.3.1" 77505 + sources."jsonschema-1.4.0" 77506 + (sources."jsonwebtoken-8.5.1" // { 77507 + dependencies = [ 77508 + sources."jwa-1.4.1" 77509 + sources."jws-3.2.2" 77510 + ]; 77511 + }) 77512 + sources."jsprim-1.4.1" 77513 + sources."jwa-2.0.0" 77514 + sources."jws-4.0.0" 77515 + sources."keyv-3.1.0" 77516 + sources."kuler-2.0.0" 77517 + sources."latest-version-5.1.0" 77518 + (sources."lazystream-1.0.0" // { 77519 + dependencies = [ 77520 + sources."readable-stream-2.3.7" 77521 + sources."safe-buffer-5.1.2" 77522 + sources."string_decoder-1.1.1" 77523 + ]; 77524 + }) 77525 + sources."leven-3.1.0" 77526 + sources."listenercount-1.0.1" 77527 + sources."locate-path-5.0.0" 77528 + sources."lodash-4.17.20" 77529 + sources."lodash._isnative-2.4.1" 77530 + sources."lodash._objecttypes-2.4.1" 77531 + sources."lodash._shimkeys-2.4.1" 77532 + sources."lodash.camelcase-4.3.0" 77533 + sources."lodash.defaults-4.2.0" 77534 + sources."lodash.difference-4.5.0" 77535 + sources."lodash.flatten-4.4.0" 77536 + sources."lodash.includes-4.3.0" 77537 + sources."lodash.isarguments-3.1.0" 77538 + sources."lodash.isboolean-3.0.3" 77539 + sources."lodash.isinteger-4.0.4" 77540 + sources."lodash.isnumber-3.0.3" 77541 + sources."lodash.isobject-2.4.1" 77542 + sources."lodash.isplainobject-4.0.6" 77543 + sources."lodash.isstring-4.0.1" 77544 + sources."lodash.keys-2.4.1" 77545 + sources."lodash.once-4.1.1" 77546 + sources."lodash.snakecase-4.1.1" 77547 + sources."lodash.toarray-4.4.0" 77548 + sources."lodash.union-4.6.0" 77549 + sources."lodash.values-2.4.1" 77550 + sources."log-symbols-2.2.0" 77551 + sources."logform-2.2.0" 77552 + sources."long-4.0.0" 77553 + sources."lowercase-keys-1.0.1" 77554 + sources."lru-cache-6.0.0" 77555 + sources."lru-queue-0.1.0" 77556 + (sources."make-dir-3.1.0" // { 77557 + dependencies = [ 77558 + sources."semver-6.3.0" 77559 + ]; 77560 + }) 77561 + sources."marked-0.7.0" 77562 + sources."marked-terminal-3.3.0" 77563 + sources."media-typer-0.3.0" 77564 + sources."memoizee-0.4.14" 77565 + sources."merge-descriptors-1.0.1" 77566 + sources."methods-1.1.2" 77567 + sources."mime-1.6.0" 77568 + sources."mime-db-1.45.0" 77569 + sources."mime-types-2.1.28" 77570 + sources."mimic-fn-1.2.0" 77571 + sources."mimic-response-1.0.1" 77572 + sources."minimatch-3.0.4" 77573 + sources."minimist-1.2.5" 77574 + sources."minipass-3.1.3" 77575 + sources."minizlib-2.1.2" 77576 + sources."mkdirp-0.5.5" 77577 + (sources."morgan-1.10.0" // { 77578 + dependencies = [ 77579 + sources."debug-2.6.9" 77580 + sources."depd-2.0.0" 77581 + sources."ms-2.0.0" 77582 + ]; 77583 + }) 77584 + sources."ms-2.1.2" 77585 + sources."mute-stream-0.0.7" 77586 + sources."nan-2.14.2" 77587 + (sources."nash-3.0.0" // { 77588 + dependencies = [ 77589 + sources."async-1.5.2" 77590 + ]; 77591 + }) 77592 + sources."negotiator-0.6.2" 77593 + sources."next-tick-1.0.0" 77594 + sources."nice-try-1.0.5" 77595 + sources."node-emoji-1.10.0" 77596 + sources."node-fetch-2.6.1" 77597 + sources."node-forge-0.10.0" 77598 + (sources."node-gyp-7.1.2" // { 77599 + dependencies = [ 77600 + sources."mkdirp-1.0.4" 77601 + sources."semver-7.3.4" 77602 + sources."tar-6.0.5" 77603 + sources."which-2.0.2" 77604 + ]; 77605 + }) 77606 + sources."nopt-5.0.0" 77607 + sources."normalize-path-3.0.0" 77608 + sources."normalize-url-4.5.0" 77609 + sources."npmlog-4.1.2" 77610 + sources."number-is-nan-1.0.1" 77611 + sources."oauth-sign-0.9.0" 77612 + sources."object-assign-4.1.1" 77613 + sources."on-finished-2.3.0" 77614 + sources."on-headers-1.0.2" 77615 + sources."once-1.4.0" 77616 + sources."one-time-1.0.0" 77617 + sources."onetime-2.0.1" 77618 + sources."open-6.4.0" 77619 + sources."openapi3-ts-1.4.0" 77620 + (sources."ora-3.4.0" // { 77621 + dependencies = [ 77622 + sources."ansi-regex-4.1.0" 77623 + sources."strip-ansi-5.2.0" 77624 + ]; 77625 + }) 77626 + sources."os-tmpdir-1.0.2" 77627 + sources."p-cancelable-1.1.0" 77628 + sources."p-defer-3.0.0" 77629 + sources."p-limit-2.3.0" 77630 + sources."p-locate-4.1.0" 77631 + sources."p-try-2.2.0" 77632 + (sources."package-json-6.5.0" // { 77633 + dependencies = [ 77634 + sources."semver-6.3.0" 77635 + ]; 77636 + }) 77637 + sources."parseurl-1.3.3" 77638 + sources."path-exists-4.0.0" 77639 + sources."path-is-absolute-1.0.1" 77640 + sources."path-key-2.0.1" 77641 + sources."path-to-regexp-0.1.7" 77642 + sources."performance-now-2.1.0" 77643 + sources."picomatch-2.2.2" 77644 + sources."plist-3.0.1" 77645 + (sources."portfinder-1.0.28" // { 77646 + dependencies = [ 77647 + sources."debug-3.2.7" 77648 + ]; 77649 + }) 77650 + sources."prepend-http-2.0.0" 77651 + sources."process-nextick-args-2.0.1" 77652 + sources."progress-2.0.3" 77653 + sources."promise-breaker-5.0.0" 77654 + (sources."protobufjs-6.10.2" // { 77655 + dependencies = [ 77656 + sources."@types/node-13.13.38" 77657 + ]; 77658 + }) 77659 + sources."proxy-addr-2.0.6" 77660 + sources."psl-1.8.0" 77661 + sources."pump-3.0.0" 77662 + sources."punycode-2.1.1" 77663 + sources."pupa-2.1.1" 77664 + sources."qs-6.7.0" 77665 + sources."range-parser-1.2.1" 77666 + sources."raw-body-2.4.0" 77667 + sources."rc-1.2.8" 77668 + sources."re2-1.15.9" 77669 + sources."readable-stream-3.6.0" 77670 + sources."readdirp-3.5.0" 77671 + sources."redeyed-2.1.1" 77672 + sources."registry-auth-token-4.2.1" 77673 + sources."registry-url-5.1.0" 77674 + (sources."request-2.88.2" // { 77675 + dependencies = [ 77676 + sources."qs-6.5.2" 77677 + ]; 77678 + }) 77679 + sources."require-directory-2.1.1" 77680 + sources."require-main-filename-2.0.0" 77681 + sources."responselike-1.0.2" 77682 + sources."restore-cursor-2.0.0" 77683 + sources."retry-request-4.1.3" 77684 + sources."rimraf-3.0.2" 77685 + (sources."router-1.3.5" // { 77686 + dependencies = [ 77687 + sources."array-flatten-3.0.0" 77688 + sources."debug-2.6.9" 77689 + sources."ms-2.0.0" 77690 + sources."setprototypeof-1.2.0" 77691 + ]; 77692 + }) 77693 + sources."rsvp-4.8.5" 77694 + sources."run-async-2.4.1" 77695 + (sources."rxjs-6.6.3" // { 77696 + dependencies = [ 77697 + sources."tslib-1.14.1" 77698 + ]; 77699 + }) 77700 + sources."safe-buffer-5.2.1" 77701 + sources."safer-buffer-2.1.2" 77702 + sources."semver-5.7.1" 77703 + (sources."semver-diff-3.1.1" // { 77704 + dependencies = [ 77705 + sources."semver-6.3.0" 77706 + ]; 77707 + }) 77708 + (sources."send-0.17.1" // { 77709 + dependencies = [ 77710 + (sources."debug-2.6.9" // { 77711 + dependencies = [ 77712 + sources."ms-2.0.0" 77713 + ]; 77714 + }) 77715 + sources."ms-2.1.1" 77716 + ]; 77717 + }) 77718 + sources."serve-static-1.14.1" 77719 + sources."set-blocking-2.0.0" 77720 + sources."setimmediate-1.0.5" 77721 + sources."setprototypeof-1.1.1" 77722 + sources."shebang-command-1.2.0" 77723 + sources."shebang-regex-1.0.0" 77724 + sources."signal-exit-3.0.3" 77725 + sources."simple-swizzle-0.2.2" 77726 + sources."sprintf-js-1.0.3" 77727 + sources."sshpk-1.16.1" 77728 + sources."stack-trace-0.0.10" 77729 + sources."statuses-1.5.0" 77730 + sources."stream-shift-1.0.1" 77731 + (sources."string-length-1.0.1" // { 77732 + dependencies = [ 77733 + sources."ansi-regex-2.1.1" 77734 + sources."strip-ansi-3.0.1" 77735 + ]; 77736 + }) 77737 + sources."string-width-4.2.0" 77738 + sources."string_decoder-1.3.0" 77739 + sources."strip-ansi-6.0.0" 77740 + sources."strip-json-comments-2.0.1" 77741 + (sources."superstatic-7.1.0" // { 77742 + dependencies = [ 77743 + sources."ansi-regex-2.1.1" 77744 + sources."ansi-styles-2.2.1" 77745 + sources."chalk-1.1.3" 77746 + sources."fs-extra-8.1.0" 77747 + sources."isarray-0.0.1" 77748 + sources."jsonfile-4.0.0" 77749 + sources."path-to-regexp-1.8.0" 77750 + sources."strip-ansi-3.0.1" 77751 + sources."supports-color-2.0.0" 77752 + ]; 77753 + }) 77754 + sources."supports-color-5.5.0" 77755 + (sources."supports-hyperlinks-1.0.1" // { 77756 + dependencies = [ 77757 + sources."has-flag-2.0.0" 77758 + ]; 77759 + }) 77760 + (sources."tar-4.4.13" // { 77761 + dependencies = [ 77762 + sources."chownr-1.1.4" 77763 + sources."fs-minipass-1.2.7" 77764 + sources."minipass-2.9.0" 77765 + sources."minizlib-1.3.3" 77766 + sources."yallist-3.1.1" 77767 + ]; 77768 + }) 77769 + sources."tar-stream-2.2.0" 77770 + (sources."tcp-port-used-1.0.2" // { 77771 + dependencies = [ 77772 + sources."debug-4.3.1" 77773 + ]; 77774 + }) 77775 + sources."term-size-2.2.1" 77776 + sources."text-hex-1.0.0" 77777 + sources."through-2.3.8" 77778 + (sources."through2-2.0.1" // { 77779 + dependencies = [ 77780 + sources."process-nextick-args-1.0.7" 77781 + sources."readable-stream-2.0.6" 77782 + sources."string_decoder-0.10.31" 77783 + ]; 77784 + }) 77785 + sources."timers-ext-0.1.7" 77786 + sources."tmp-0.0.33" 77787 + sources."to-readable-stream-1.0.0" 77788 + sources."to-regex-range-5.0.1" 77789 + sources."toidentifier-1.0.0" 77790 + sources."tough-cookie-2.5.0" 77791 + sources."toxic-1.0.1" 77792 + sources."traverse-0.3.9" 77793 + sources."triple-beam-1.3.0" 77794 + sources."tslib-2.0.3" 77795 + sources."tunnel-agent-0.6.0" 77796 + sources."tweetnacl-0.14.5" 77797 + (sources."tweetsodium-0.0.5" // { 77798 + dependencies = [ 77799 + sources."tweetnacl-1.0.3" 77800 + ]; 77801 + }) 77802 + sources."type-1.2.0" 77803 + sources."type-fest-0.8.1" 77804 + sources."type-is-1.6.18" 77805 + sources."typedarray-to-buffer-3.1.5" 77806 + sources."unique-string-2.0.0" 77807 + sources."universal-analytics-0.4.23" 77808 + sources."universalify-0.1.2" 77809 + sources."unpipe-1.0.0" 77810 + (sources."unzipper-0.10.11" // { 77811 + dependencies = [ 77812 + sources."readable-stream-2.3.7" 77813 + sources."safe-buffer-5.1.2" 77814 + sources."string_decoder-1.1.1" 77815 + ]; 77816 + }) 77817 + (sources."update-notifier-4.1.3" // { 77818 + dependencies = [ 77819 + sources."chalk-3.0.0" 77820 + sources."has-flag-4.0.0" 77821 + sources."supports-color-7.2.0" 77822 + ]; 77823 + }) 77824 + sources."uri-js-4.4.0" 77825 + sources."url-join-0.0.1" 77826 + sources."url-parse-lax-3.0.0" 77827 + sources."util-deprecate-1.0.2" 77828 + sources."utils-merge-1.0.1" 77829 + sources."uuid-3.4.0" 77830 + sources."valid-url-1.0.9" 77831 + sources."vary-1.1.2" 77832 + sources."verror-1.10.0" 77833 + sources."wcwidth-1.0.1" 77834 + sources."which-1.3.1" 77835 + sources."which-module-2.0.0" 77836 + (sources."wide-align-1.1.3" // { 77837 + dependencies = [ 77838 + sources."ansi-regex-3.0.0" 77839 + sources."is-fullwidth-code-point-2.0.0" 77840 + sources."string-width-2.1.1" 77841 + sources."strip-ansi-4.0.0" 77842 + ]; 77843 + }) 77844 + sources."widest-line-3.1.0" 77845 + (sources."winston-3.3.3" // { 77846 + dependencies = [ 77847 + sources."async-3.2.0" 77848 + ]; 77849 + }) 77850 + (sources."winston-transport-4.4.0" // { 77851 + dependencies = [ 77852 + sources."readable-stream-2.3.7" 77853 + sources."safe-buffer-5.1.2" 77854 + sources."string_decoder-1.1.1" 77855 + ]; 77856 + }) 77857 + sources."wrap-ansi-6.2.0" 77858 + sources."wrappy-1.0.2" 77859 + sources."write-file-atomic-3.0.3" 77860 + sources."ws-7.4.2" 77861 + sources."xdg-basedir-4.0.0" 77862 + sources."xmlbuilder-9.0.7" 77863 + sources."xmldom-0.1.31" 77864 + sources."xtend-4.0.2" 77865 + sources."y18n-4.0.1" 77866 + sources."yallist-4.0.0" 77867 + sources."yargs-15.4.1" 77868 + sources."yargs-parser-18.1.3" 77869 + sources."zip-stream-2.1.3" 77870 + ]; 77871 + buildInputs = globalBuildInputs; 77872 + meta = { 77873 + description = "Command-Line Interface for Firebase"; 77874 + homepage = https://github.com/firebase/firebase-tools; 77875 + license = "MIT"; 77876 + }; 77877 + production = true; 77878 + bypassCache = true; 77879 + reconstructLock = true; 77880 + }; 75706 77881 fixjson = nodeEnv.buildNodePackage { 75707 77882 name = "fixjson"; 75708 77883 packageName = "fixjson"; ··· 76515 78690 sources."lodash.get-4.4.2" 76516 78691 sources."looper-4.0.0" 76517 78692 sources."lrucache-1.0.3" 76518 - sources."mime-db-1.44.0" 76519 - sources."mime-types-2.1.27" 78693 + sources."mime-db-1.45.0" 78694 + sources."mime-types-2.1.28" 76520 78695 sources."minimist-1.2.5" 76521 78696 sources."mkdirp-0.5.5" 76522 78697 sources."moment-2.29.1" ··· 76770 78945 sources."figures-3.2.0" 76771 78946 sources."find-up-3.0.0" 76772 78947 sources."function-bind-1.1.1" 76773 - sources."fuse.js-6.4.4" 78948 + sources."fuse.js-6.4.5" 76774 78949 sources."get-stream-6.0.0" 76775 78950 sources."global-dirs-2.1.0" 76776 78951 (sources."got-9.6.0" // { ··· 77309 79484 }) 77310 79485 sources."merge2-1.4.1" 77311 79486 sources."micromatch-4.0.2" 77312 - sources."mime-db-1.44.0" 77313 - sources."mime-types-2.1.27" 79487 + sources."mime-db-1.45.0" 79488 + sources."mime-types-2.1.28" 77314 79489 sources."mimic-fn-1.2.0" 77315 79490 sources."mimic-response-1.0.1" 77316 79491 sources."minimatch-3.0.4" ··· 78879 81054 sources."json-schema-traverse-0.4.1" 78880 81055 sources."json-stringify-safe-5.0.1" 78881 81056 sources."jsprim-1.4.1" 78882 - sources."mime-db-1.44.0" 78883 - sources."mime-types-2.1.27" 81057 + sources."mime-db-1.45.0" 81058 + sources."mime-types-2.1.28" 78884 81059 sources."minimatch-3.0.4" 78885 81060 sources."oauth-sign-0.9.0" 78886 81061 sources."once-1.4.0" ··· 79119 81294 bypassCache = true; 79120 81295 reconstructLock = true; 79121 81296 }; 81297 + ijavascript = nodeEnv.buildNodePackage { 81298 + name = "ijavascript"; 81299 + packageName = "ijavascript"; 81300 + version = "5.2.0"; 81301 + src = fetchurl { 81302 + url = "https://registry.npmjs.org/ijavascript/-/ijavascript-5.2.0.tgz"; 81303 + sha512 = "MIV3R9d2o9uucTmNH5IU5bvXcevljsOrsH7Sv3rmf/uoXjl/iXb8hx4ZnymBpdt48f7U2m0iKmpWlQzxjthtjw=="; 81304 + }; 81305 + dependencies = [ 81306 + sources."ansi-regex-2.1.1" 81307 + sources."aproba-1.2.0" 81308 + sources."are-we-there-yet-1.1.5" 81309 + sources."base64-js-1.5.1" 81310 + (sources."bl-4.0.3" // { 81311 + dependencies = [ 81312 + sources."readable-stream-3.6.0" 81313 + ]; 81314 + }) 81315 + sources."buffer-5.7.1" 81316 + sources."chownr-1.1.4" 81317 + sources."code-point-at-1.1.0" 81318 + sources."console-control-strings-1.1.0" 81319 + sources."core-util-is-1.0.2" 81320 + sources."decompress-response-4.2.1" 81321 + sources."deep-extend-0.6.0" 81322 + sources."delegates-1.0.0" 81323 + sources."detect-libc-1.0.3" 81324 + sources."end-of-stream-1.4.4" 81325 + sources."expand-template-2.0.3" 81326 + sources."fs-constants-1.0.0" 81327 + sources."gauge-2.7.4" 81328 + sources."github-from-package-0.0.0" 81329 + sources."has-unicode-2.0.1" 81330 + sources."ieee754-1.2.1" 81331 + sources."inherits-2.0.4" 81332 + sources."ini-1.3.8" 81333 + sources."is-fullwidth-code-point-1.0.0" 81334 + sources."isarray-1.0.0" 81335 + sources."jmp-2.0.0" 81336 + sources."jp-kernel-2.0.0" 81337 + sources."mimic-response-2.1.0" 81338 + sources."minimist-1.2.5" 81339 + sources."mkdirp-classic-0.5.3" 81340 + sources."nan-2.14.2" 81341 + sources."napi-build-utils-1.0.2" 81342 + sources."nel-1.2.0" 81343 + sources."node-abi-2.19.3" 81344 + sources."noop-logger-0.1.1" 81345 + sources."npmlog-4.1.2" 81346 + sources."number-is-nan-1.0.1" 81347 + sources."object-assign-4.1.1" 81348 + sources."once-1.4.0" 81349 + sources."prebuild-install-5.3.6" 81350 + sources."process-nextick-args-2.0.1" 81351 + sources."pump-3.0.0" 81352 + sources."rc-1.2.8" 81353 + sources."readable-stream-2.3.7" 81354 + sources."safe-buffer-5.1.2" 81355 + sources."semver-5.7.1" 81356 + sources."set-blocking-2.0.0" 81357 + sources."signal-exit-3.0.3" 81358 + sources."simple-concat-1.0.1" 81359 + sources."simple-get-3.1.0" 81360 + sources."string-width-1.0.2" 81361 + sources."string_decoder-1.1.1" 81362 + sources."strip-ansi-3.0.1" 81363 + sources."strip-json-comments-2.0.1" 81364 + sources."tar-fs-2.1.1" 81365 + (sources."tar-stream-2.2.0" // { 81366 + dependencies = [ 81367 + sources."readable-stream-3.6.0" 81368 + ]; 81369 + }) 81370 + sources."tunnel-agent-0.6.0" 81371 + sources."util-deprecate-1.0.2" 81372 + sources."uuid-3.4.0" 81373 + sources."which-pm-runs-1.0.0" 81374 + sources."wide-align-1.1.3" 81375 + sources."wrappy-1.0.2" 81376 + sources."zeromq-5.2.0" 81377 + ]; 81378 + buildInputs = globalBuildInputs; 81379 + meta = { 81380 + description = "IJavascript is a Javascript kernel for the Jupyter notebook"; 81381 + homepage = https://n-riesco.github.io/ijavascript; 81382 + license = "BSD-3-Clause"; 81383 + }; 81384 + production = true; 81385 + bypassCache = true; 81386 + reconstructLock = true; 81387 + }; 79122 81388 inliner = nodeEnv.buildNodePackage { 79123 81389 name = "inliner"; 79124 81390 packageName = "inliner"; ··· 79250 81516 sources."longest-1.0.1" 79251 81517 sources."lowercase-keys-1.0.1" 79252 81518 sources."mime-1.6.0" 79253 - sources."mime-db-1.44.0" 79254 - sources."mime-types-2.1.27" 81519 + sources."mime-db-1.45.0" 81520 + sources."mime-types-2.1.28" 79255 81521 sources."minimist-1.2.5" 79256 81522 sources."mkdirp-0.5.5" 79257 81523 sources."ms-2.0.0" ··· 79666 81932 sources."macos-release-2.4.1" 79667 81933 sources."methods-1.1.2" 79668 81934 sources."mime-2.4.7" 79669 - sources."mime-db-1.44.0" 79670 - sources."mime-types-2.1.27" 81935 + sources."mime-db-1.45.0" 81936 + sources."mime-types-2.1.28" 79671 81937 sources."mimic-fn-1.2.0" 79672 81938 sources."minimatch-3.0.4" 79673 81939 sources."minimist-1.2.5" ··· 80006 82272 sources."lru-cache-2.5.0" 80007 82273 sources."memoizeasync-1.1.0" 80008 82274 sources."microbuffer-1.0.0" 80009 - sources."mime-db-1.44.0" 80010 - sources."mime-types-2.1.27" 82275 + sources."mime-db-1.45.0" 82276 + sources."mime-types-2.1.28" 80011 82277 sources."mimic-fn-2.1.0" 80012 82278 sources."minimatch-3.0.4" 80013 82279 sources."minimist-1.2.5" ··· 80685 82951 sources."node-addon-api-3.1.0" 80686 82952 ]; 80687 82953 }) 80688 - sources."khroma-1.1.0" 82954 + sources."khroma-1.1.1" 80689 82955 sources."klaw-1.3.1" 80690 82956 sources."lazyness-1.2.0" 80691 82957 sources."levenshtein-1.0.5" ··· 80734 83000 sources."md5-file-4.0.0" 80735 83001 sources."mdurl-1.0.1" 80736 83002 sources."mermaid-8.8.4" 80737 - sources."mime-db-1.44.0" 80738 - sources."mime-types-2.1.27" 83003 + sources."mime-db-1.45.0" 83004 + sources."mime-types-2.1.28" 80739 83005 sources."mimic-response-2.1.0" 80740 83006 (sources."minify-4.1.3" // { 80741 83007 dependencies = [ ··· 81292 83558 sources."lodash-4.17.20" 81293 83559 sources."methods-1.1.2" 81294 83560 sources."mime-1.6.0" 81295 - sources."mime-db-1.44.0" 81296 - sources."mime-types-2.1.27" 83561 + sources."mime-db-1.45.0" 83562 + sources."mime-types-2.1.28" 81297 83563 sources."ms-2.1.3" 81298 83564 sources."native-promise-only-0.8.1" 81299 83565 sources."path-loader-1.0.10" ··· 81455 83721 }) 81456 83722 sources."methods-1.1.2" 81457 83723 sources."mime-1.6.0" 81458 - sources."mime-db-1.44.0" 81459 - sources."mime-types-2.1.27" 83724 + sources."mime-db-1.45.0" 83725 + sources."mime-types-2.1.28" 81460 83726 sources."mimic-response-1.0.1" 81461 83727 sources."minimist-1.2.5" 81462 83728 (sources."morgan-1.10.0" // { ··· 81698 83964 }) 81699 83965 sources."media-typer-0.3.0" 81700 83966 sources."mime-2.4.7" 81701 - sources."mime-db-1.44.0" 81702 - sources."mime-types-2.1.27" 83967 + sources."mime-db-1.45.0" 83968 + sources."mime-types-2.1.28" 81703 83969 sources."minimatch-3.0.4" 81704 83970 sources."ms-2.0.0" 81705 83971 sources."negotiator-0.6.2" ··· 82011 84277 sources."mimic-fn-2.1.0" 82012 84278 ]; 82013 84279 }) 82014 - sources."mime-db-1.44.0" 82015 - sources."mime-types-2.1.27" 84280 + sources."mime-db-1.45.0" 84281 + sources."mime-types-2.1.28" 82016 84282 sources."mimic-fn-1.2.0" 82017 84283 sources."minimatch-3.0.4" 82018 84284 sources."minimist-0.0.8" ··· 82803 85069 }) 82804 85070 sources."merge2-1.4.1" 82805 85071 sources."micromatch-3.1.10" 82806 - sources."mime-db-1.44.0" 82807 - sources."mime-types-2.1.27" 85072 + sources."mime-db-1.45.0" 85073 + sources."mime-types-2.1.28" 82808 85074 sources."mimic-fn-1.2.0" 82809 85075 sources."min-indent-1.0.1" 82810 85076 sources."minimatch-3.0.4" ··· 83385 85651 sources."depd-1.1.2" 83386 85652 ]; 83387 85653 }) 83388 - sources."http-parser-js-0.5.2" 85654 + sources."http-parser-js-0.5.3" 83389 85655 sources."inherits-2.0.4" 83390 85656 sources."is-accessor-descriptor-1.0.0" 83391 85657 sources."is-binary-path-1.0.1" ··· 83411 85677 sources."map-visit-1.0.0" 83412 85678 sources."micromatch-3.1.10" 83413 85679 sources."mime-1.6.0" 83414 - sources."mime-db-1.44.0" 83415 - sources."mime-types-2.1.27" 85680 + sources."mime-db-1.45.0" 85681 + sources."mime-types-2.1.28" 83416 85682 sources."mixin-deep-1.3.2" 83417 85683 sources."morgan-1.10.0" 83418 85684 sources."ms-2.0.0" ··· 83814 86080 sources."methods-1.1.2" 83815 86081 sources."micromatch-2.3.11" 83816 86082 sources."mime-1.6.0" 83817 - sources."mime-db-1.44.0" 83818 - sources."mime-types-2.1.27" 86083 + sources."mime-db-1.45.0" 86084 + sources."mime-types-2.1.28" 83819 86085 sources."minimist-1.2.5" 83820 86086 (sources."mixin-deep-1.3.2" // { 83821 86087 dependencies = [ ··· 84783 87049 sources."bn.js-4.11.9" 84784 87050 ]; 84785 87051 }) 84786 - sources."mime-db-1.44.0" 84787 - sources."mime-types-2.1.27" 87052 + sources."mime-db-1.45.0" 87053 + sources."mime-types-2.1.28" 84788 87054 sources."minimalistic-assert-1.0.1" 84789 87055 sources."minimalistic-crypto-utils-1.0.1" 84790 87056 sources."minimatch-3.0.4" ··· 85322 87588 sources."lodash-4.17.20" 85323 87589 sources."markdown-link-extractor-1.2.6" 85324 87590 sources."marked-1.2.7" 85325 - sources."mime-db-1.44.0" 85326 - sources."mime-types-2.1.27" 87591 + sources."mime-db-1.45.0" 87592 + sources."mime-types-2.1.28" 85327 87593 sources."ms-2.1.3" 85328 87594 sources."oauth-sign-0.9.0" 85329 87595 sources."performance-now-2.1.0" ··· 85542 87808 sources."lodash.templatesettings-3.1.1" 85543 87809 sources."mastodon-api-1.3.0" 85544 87810 sources."mime-1.6.0" 85545 - sources."mime-db-1.44.0" 85546 - sources."mime-types-2.1.27" 87811 + sources."mime-db-1.45.0" 87812 + sources."mime-types-2.1.28" 85547 87813 sources."minimatch-3.0.4" 85548 87814 sources."minimist-1.2.5" 85549 87815 sources."mkdirp-0.5.5" ··· 85795 88061 sources."ieee754-1.2.1" 85796 88062 sources."inflight-1.0.6" 85797 88063 sources."inherits-2.0.4" 85798 - sources."khroma-1.1.0" 88064 + sources."khroma-1.1.1" 85799 88065 sources."locate-path-5.0.0" 85800 88066 sources."lodash-4.17.20" 85801 88067 sources."lower-case-1.1.4" ··· 85993 88259 sources."merge-descriptors-1.0.1" 85994 88260 sources."methods-1.1.2" 85995 88261 sources."mime-1.6.0" 85996 - sources."mime-db-1.44.0" 85997 - sources."mime-types-2.1.27" 88262 + sources."mime-db-1.45.0" 88263 + sources."mime-types-2.1.28" 85998 88264 sources."mimic-fn-1.2.0" 85999 88265 sources."mimic-response-1.0.1" 86000 88266 sources."minimatch-3.0.4" ··· 86298 88564 sources."lodash-4.17.20" 86299 88565 sources."methods-1.1.2" 86300 88566 sources."mime-1.6.0" 86301 - sources."mime-db-1.44.0" 86302 - sources."mime-types-2.1.27" 88567 + sources."mime-db-1.45.0" 88568 + sources."mime-types-2.1.28" 86303 88569 sources."ms-2.1.3" 86304 88570 sources."native-promise-only-0.8.1" 86305 88571 sources."path-loader-1.0.10" ··· 87667 89933 ]; 87668 89934 }) 87669 89935 sources."mime-1.6.0" 87670 - sources."mime-db-1.44.0" 87671 - sources."mime-types-2.1.27" 89936 + sources."mime-db-1.45.0" 89937 + sources."mime-types-2.1.28" 87672 89938 sources."mimic-fn-3.1.0" 87673 89939 sources."mimic-response-1.0.1" 87674 89940 sources."minimalistic-assert-1.0.1" ··· 88375 90641 sources."json-stringify-safe-5.0.1" 88376 90642 sources."jsprim-1.4.1" 88377 90643 sources."lru-cache-6.0.0" 88378 - sources."mime-db-1.44.0" 88379 - sources."mime-types-2.1.27" 90644 + sources."mime-db-1.45.0" 90645 + sources."mime-types-2.1.28" 88380 90646 sources."minimatch-3.0.4" 88381 90647 sources."minipass-3.1.3" 88382 90648 sources."minizlib-2.1.2" ··· 88586 90852 sources."merge-descriptors-1.0.1" 88587 90853 sources."methods-1.1.2" 88588 90854 sources."mime-1.6.0" 88589 - sources."mime-db-1.44.0" 88590 - sources."mime-types-2.1.27" 90855 + sources."mime-db-1.45.0" 90856 + sources."mime-types-2.1.28" 88591 90857 sources."minimatch-3.0.4" 88592 90858 sources."minimist-1.2.5" 88593 90859 sources."mkdirp-0.5.5" ··· 89117 91383 sources."merge-descriptors-1.0.1" 89118 91384 sources."methods-1.1.2" 89119 91385 sources."mime-2.4.6" 89120 - sources."mime-db-1.44.0" 89121 - sources."mime-types-2.1.27" 91386 + sources."mime-db-1.45.0" 91387 + sources."mime-types-2.1.28" 89122 91388 sources."minimatch-3.0.4" 89123 91389 sources."minimist-1.2.5" 89124 91390 (sources."minipass-3.1.3" // { ··· 89424 91690 sources."json-stringify-safe-5.0.1" 89425 91691 sources."jsonfile-1.0.1" 89426 91692 sources."jsprim-1.4.1" 89427 - sources."mime-db-1.44.0" 89428 - sources."mime-types-2.1.27" 91693 + sources."mime-db-1.45.0" 91694 + sources."mime-types-2.1.28" 89429 91695 sources."minimatch-3.0.4" 89430 91696 sources."minimist-1.2.5" 89431 91697 sources."minipass-3.1.3" ··· 89696 91962 bypassCache = true; 89697 91963 reconstructLock = true; 89698 91964 }; 91965 + np = nodeEnv.buildNodePackage { 91966 + name = "np"; 91967 + packageName = "np"; 91968 + version = "7.2.0"; 91969 + src = fetchurl { 91970 + url = "https://registry.npmjs.org/np/-/np-7.2.0.tgz"; 91971 + sha512 = "jfMFJXAJlGkCowMPGzA8Ywbmywk7I9hT96DsOcWjDsjq/zP5h6m3VZDcZ1AWYoCBPg4E/lFrJxROmiQH3OWnzA=="; 91972 + }; 91973 + dependencies = [ 91974 + sources."@babel/code-frame-7.12.11" 91975 + sources."@babel/helper-validator-identifier-7.12.11" 91976 + (sources."@babel/highlight-7.10.4" // { 91977 + dependencies = [ 91978 + sources."ansi-styles-3.2.1" 91979 + sources."chalk-2.4.2" 91980 + sources."color-convert-1.9.3" 91981 + sources."color-name-1.1.3" 91982 + sources."escape-string-regexp-1.0.5" 91983 + sources."has-flag-3.0.0" 91984 + sources."supports-color-5.5.0" 91985 + ]; 91986 + }) 91987 + sources."@nodelib/fs.scandir-2.1.4" 91988 + sources."@nodelib/fs.stat-2.0.4" 91989 + sources."@nodelib/fs.walk-1.2.6" 91990 + (sources."@samverschueren/stream-to-observable-0.3.1" // { 91991 + dependencies = [ 91992 + sources."any-observable-0.3.0" 91993 + ]; 91994 + }) 91995 + sources."@sindresorhus/is-2.1.1" 91996 + sources."@szmarczak/http-timer-4.0.5" 91997 + sources."@types/cacheable-request-6.0.1" 91998 + sources."@types/http-cache-semantics-4.0.0" 91999 + sources."@types/keyv-3.1.1" 92000 + sources."@types/minimist-1.2.1" 92001 + sources."@types/node-14.14.19" 92002 + sources."@types/normalize-package-data-2.4.0" 92003 + sources."@types/parse-json-4.0.0" 92004 + sources."@types/responselike-1.0.0" 92005 + sources."aggregate-error-3.1.0" 92006 + (sources."ansi-align-3.0.0" // { 92007 + dependencies = [ 92008 + sources."ansi-regex-4.1.0" 92009 + sources."emoji-regex-7.0.3" 92010 + sources."is-fullwidth-code-point-2.0.0" 92011 + sources."string-width-3.1.0" 92012 + sources."strip-ansi-5.2.0" 92013 + ]; 92014 + }) 92015 + sources."ansi-escapes-4.3.1" 92016 + sources."ansi-regex-5.0.0" 92017 + sources."ansi-styles-4.3.0" 92018 + sources."any-observable-0.5.1" 92019 + sources."array-union-2.1.0" 92020 + sources."arrify-1.0.1" 92021 + sources."async-exit-hook-2.0.1" 92022 + sources."balanced-match-1.0.0" 92023 + (sources."boxen-4.2.0" // { 92024 + dependencies = [ 92025 + sources."chalk-3.0.0" 92026 + sources."type-fest-0.8.1" 92027 + ]; 92028 + }) 92029 + sources."brace-expansion-1.1.11" 92030 + sources."braces-3.0.2" 92031 + sources."builtins-1.0.3" 92032 + sources."cacheable-lookup-2.0.1" 92033 + (sources."cacheable-request-7.0.1" // { 92034 + dependencies = [ 92035 + sources."get-stream-5.2.0" 92036 + ]; 92037 + }) 92038 + sources."callsites-3.1.0" 92039 + sources."camelcase-5.3.1" 92040 + sources."camelcase-keys-6.2.2" 92041 + sources."chalk-4.1.0" 92042 + sources."chardet-0.7.0" 92043 + sources."ci-info-2.0.0" 92044 + sources."clean-stack-2.2.0" 92045 + sources."cli-boxes-2.2.1" 92046 + sources."cli-cursor-3.1.0" 92047 + (sources."cli-truncate-0.2.1" // { 92048 + dependencies = [ 92049 + sources."ansi-regex-2.1.1" 92050 + sources."is-fullwidth-code-point-1.0.0" 92051 + sources."string-width-1.0.2" 92052 + sources."strip-ansi-3.0.1" 92053 + ]; 92054 + }) 92055 + sources."cli-width-3.0.0" 92056 + (sources."clone-response-1.0.2" // { 92057 + dependencies = [ 92058 + sources."mimic-response-1.0.1" 92059 + ]; 92060 + }) 92061 + sources."code-point-at-1.1.0" 92062 + sources."color-convert-2.0.1" 92063 + sources."color-name-1.1.4" 92064 + sources."concat-map-0.0.1" 92065 + (sources."configstore-5.0.1" // { 92066 + dependencies = [ 92067 + sources."dot-prop-5.3.0" 92068 + ]; 92069 + }) 92070 + sources."cosmiconfig-7.0.0" 92071 + sources."cross-spawn-7.0.3" 92072 + sources."crypto-random-string-2.0.0" 92073 + sources."date-fns-1.30.1" 92074 + sources."decamelize-1.2.0" 92075 + (sources."decamelize-keys-1.1.0" // { 92076 + dependencies = [ 92077 + sources."map-obj-1.0.1" 92078 + ]; 92079 + }) 92080 + sources."decompress-response-5.0.0" 92081 + sources."deep-extend-0.6.0" 92082 + sources."defer-to-connect-2.0.0" 92083 + sources."del-6.0.0" 92084 + sources."dir-glob-3.0.1" 92085 + sources."dot-prop-6.0.1" 92086 + sources."duplexer3-0.1.4" 92087 + sources."elegant-spinner-1.0.1" 92088 + sources."emoji-regex-8.0.0" 92089 + sources."end-of-stream-1.4.4" 92090 + sources."error-ex-1.3.2" 92091 + sources."escape-goat-3.0.0" 92092 + sources."escape-string-regexp-4.0.0" 92093 + sources."execa-5.0.0" 92094 + sources."external-editor-3.1.0" 92095 + sources."fast-glob-3.2.4" 92096 + sources."fastq-1.10.0" 92097 + (sources."figures-3.2.0" // { 92098 + dependencies = [ 92099 + sources."escape-string-regexp-1.0.5" 92100 + ]; 92101 + }) 92102 + sources."fill-range-7.0.1" 92103 + sources."find-up-4.1.0" 92104 + sources."fs.realpath-1.0.0" 92105 + sources."function-bind-1.1.1" 92106 + sources."get-stream-6.0.0" 92107 + sources."github-url-from-git-1.5.0" 92108 + sources."glob-7.1.6" 92109 + sources."glob-parent-5.1.1" 92110 + sources."global-dirs-2.1.0" 92111 + sources."globby-11.0.1" 92112 + (sources."got-10.7.0" // { 92113 + dependencies = [ 92114 + sources."get-stream-5.2.0" 92115 + sources."type-fest-0.10.0" 92116 + ]; 92117 + }) 92118 + sources."graceful-fs-4.2.4" 92119 + sources."hard-rejection-2.1.0" 92120 + sources."has-1.0.3" 92121 + (sources."has-ansi-2.0.0" // { 92122 + dependencies = [ 92123 + sources."ansi-regex-2.1.1" 92124 + ]; 92125 + }) 92126 + sources."has-flag-4.0.0" 92127 + sources."has-yarn-2.1.0" 92128 + sources."hosted-git-info-3.0.7" 92129 + sources."http-cache-semantics-4.1.0" 92130 + sources."human-signals-2.1.0" 92131 + sources."iconv-lite-0.4.24" 92132 + sources."ignore-5.1.8" 92133 + sources."ignore-walk-3.0.3" 92134 + sources."import-fresh-3.3.0" 92135 + sources."import-lazy-2.1.0" 92136 + (sources."import-local-3.0.2" // { 92137 + dependencies = [ 92138 + sources."pkg-dir-4.2.0" 92139 + ]; 92140 + }) 92141 + sources."imurmurhash-0.1.4" 92142 + sources."indent-string-4.0.0" 92143 + sources."inflight-1.0.6" 92144 + sources."inherits-2.0.4" 92145 + sources."ini-1.3.7" 92146 + sources."inquirer-7.3.3" 92147 + (sources."inquirer-autosubmit-prompt-0.2.0" // { 92148 + dependencies = [ 92149 + sources."ansi-escapes-3.2.0" 92150 + sources."ansi-regex-3.0.0" 92151 + sources."ansi-styles-3.2.1" 92152 + sources."chalk-2.4.2" 92153 + sources."cli-cursor-2.1.0" 92154 + sources."cli-width-2.2.1" 92155 + sources."color-convert-1.9.3" 92156 + sources."color-name-1.1.3" 92157 + sources."escape-string-regexp-1.0.5" 92158 + sources."figures-2.0.0" 92159 + sources."has-flag-3.0.0" 92160 + sources."inquirer-6.5.2" 92161 + sources."is-fullwidth-code-point-2.0.0" 92162 + sources."mute-stream-0.0.7" 92163 + sources."onetime-2.0.1" 92164 + sources."restore-cursor-2.0.0" 92165 + (sources."string-width-2.1.1" // { 92166 + dependencies = [ 92167 + sources."strip-ansi-4.0.0" 92168 + ]; 92169 + }) 92170 + (sources."strip-ansi-5.2.0" // { 92171 + dependencies = [ 92172 + sources."ansi-regex-4.1.0" 92173 + ]; 92174 + }) 92175 + sources."supports-color-5.5.0" 92176 + ]; 92177 + }) 92178 + sources."is-arrayish-0.2.1" 92179 + sources."is-ci-2.0.0" 92180 + sources."is-core-module-2.2.0" 92181 + sources."is-docker-2.1.1" 92182 + sources."is-extglob-2.1.1" 92183 + sources."is-fullwidth-code-point-3.0.0" 92184 + sources."is-glob-4.0.1" 92185 + sources."is-installed-globally-0.3.2" 92186 + sources."is-interactive-1.0.0" 92187 + sources."is-npm-5.0.0" 92188 + sources."is-number-7.0.0" 92189 + sources."is-obj-2.0.0" 92190 + (sources."is-observable-1.1.0" // { 92191 + dependencies = [ 92192 + sources."symbol-observable-1.2.0" 92193 + ]; 92194 + }) 92195 + sources."is-path-cwd-2.2.0" 92196 + sources."is-path-inside-3.0.2" 92197 + sources."is-plain-obj-1.1.0" 92198 + sources."is-promise-2.2.2" 92199 + sources."is-scoped-2.1.0" 92200 + sources."is-stream-2.0.0" 92201 + sources."is-typedarray-1.0.0" 92202 + sources."is-url-superb-4.0.0" 92203 + sources."is-wsl-2.2.0" 92204 + sources."is-yarn-global-0.3.0" 92205 + sources."isexe-2.0.0" 92206 + sources."issue-regex-3.1.0" 92207 + sources."js-tokens-4.0.0" 92208 + sources."json-buffer-3.0.1" 92209 + sources."json-parse-even-better-errors-2.3.1" 92210 + sources."keyv-4.0.3" 92211 + sources."kind-of-6.0.3" 92212 + sources."latest-version-5.1.0" 92213 + sources."lines-and-columns-1.1.6" 92214 + (sources."listr-0.14.3" // { 92215 + dependencies = [ 92216 + sources."is-stream-1.1.0" 92217 + sources."p-map-2.1.0" 92218 + ]; 92219 + }) 92220 + sources."listr-input-0.2.1" 92221 + sources."listr-silent-renderer-1.1.1" 92222 + (sources."listr-update-renderer-0.5.0" // { 92223 + dependencies = [ 92224 + sources."ansi-regex-2.1.1" 92225 + sources."ansi-styles-2.2.1" 92226 + sources."chalk-1.1.3" 92227 + sources."escape-string-regexp-1.0.5" 92228 + sources."figures-1.7.0" 92229 + sources."indent-string-3.2.0" 92230 + sources."log-symbols-1.0.2" 92231 + sources."strip-ansi-3.0.1" 92232 + sources."supports-color-2.0.0" 92233 + ]; 92234 + }) 92235 + (sources."listr-verbose-renderer-0.5.0" // { 92236 + dependencies = [ 92237 + sources."ansi-styles-3.2.1" 92238 + sources."chalk-2.4.2" 92239 + sources."cli-cursor-2.1.0" 92240 + sources."color-convert-1.9.3" 92241 + sources."color-name-1.1.3" 92242 + sources."escape-string-regexp-1.0.5" 92243 + sources."figures-2.0.0" 92244 + sources."has-flag-3.0.0" 92245 + sources."onetime-2.0.1" 92246 + sources."restore-cursor-2.0.0" 92247 + sources."supports-color-5.5.0" 92248 + ]; 92249 + }) 92250 + sources."locate-path-5.0.0" 92251 + sources."lodash-4.17.20" 92252 + sources."lodash.isequal-4.5.0" 92253 + sources."lodash.zip-4.2.0" 92254 + sources."log-symbols-4.0.0" 92255 + (sources."log-update-2.3.0" // { 92256 + dependencies = [ 92257 + sources."ansi-escapes-3.2.0" 92258 + sources."cli-cursor-2.1.0" 92259 + sources."onetime-2.0.1" 92260 + sources."restore-cursor-2.0.0" 92261 + ]; 92262 + }) 92263 + sources."lowercase-keys-2.0.0" 92264 + sources."lru-cache-6.0.0" 92265 + (sources."make-dir-3.1.0" // { 92266 + dependencies = [ 92267 + sources."semver-6.3.0" 92268 + ]; 92269 + }) 92270 + sources."map-age-cleaner-0.1.3" 92271 + sources."map-obj-4.1.0" 92272 + (sources."mem-6.1.1" // { 92273 + dependencies = [ 92274 + sources."mimic-fn-3.1.0" 92275 + ]; 92276 + }) 92277 + (sources."meow-8.1.0" // { 92278 + dependencies = [ 92279 + sources."type-fest-0.18.1" 92280 + ]; 92281 + }) 92282 + sources."merge-stream-2.0.0" 92283 + sources."merge2-1.4.1" 92284 + sources."micromatch-4.0.2" 92285 + sources."mimic-fn-1.2.0" 92286 + sources."mimic-response-2.1.0" 92287 + sources."min-indent-1.0.1" 92288 + sources."minimatch-3.0.4" 92289 + sources."minimist-1.2.5" 92290 + sources."minimist-options-4.1.0" 92291 + sources."mute-stream-0.0.8" 92292 + (sources."new-github-release-url-1.0.0" // { 92293 + dependencies = [ 92294 + sources."type-fest-0.4.1" 92295 + ]; 92296 + }) 92297 + sources."normalize-package-data-3.0.0" 92298 + sources."normalize-url-4.5.0" 92299 + (sources."npm-name-6.0.1" // { 92300 + dependencies = [ 92301 + sources."p-map-3.0.0" 92302 + ]; 92303 + }) 92304 + sources."npm-run-path-4.0.1" 92305 + sources."number-is-nan-1.0.1" 92306 + sources."object-assign-4.1.1" 92307 + sources."once-1.4.0" 92308 + (sources."onetime-5.1.2" // { 92309 + dependencies = [ 92310 + sources."mimic-fn-2.1.0" 92311 + ]; 92312 + }) 92313 + sources."open-7.3.0" 92314 + sources."org-regex-1.0.0" 92315 + sources."os-tmpdir-1.0.2" 92316 + (sources."ow-0.21.0" // { 92317 + dependencies = [ 92318 + sources."@sindresorhus/is-4.0.0" 92319 + sources."type-fest-0.20.2" 92320 + ]; 92321 + }) 92322 + sources."p-cancelable-2.0.0" 92323 + sources."p-defer-1.0.0" 92324 + (sources."p-event-4.2.0" // { 92325 + dependencies = [ 92326 + sources."p-timeout-3.2.0" 92327 + ]; 92328 + }) 92329 + sources."p-finally-1.0.0" 92330 + sources."p-limit-2.3.0" 92331 + sources."p-locate-4.1.0" 92332 + sources."p-map-4.0.0" 92333 + (sources."p-memoize-4.0.1" // { 92334 + dependencies = [ 92335 + sources."mimic-fn-3.1.0" 92336 + ]; 92337 + }) 92338 + sources."p-timeout-4.1.0" 92339 + sources."p-try-2.2.0" 92340 + (sources."package-json-6.5.0" // { 92341 + dependencies = [ 92342 + sources."@sindresorhus/is-0.14.0" 92343 + sources."@szmarczak/http-timer-1.1.2" 92344 + (sources."cacheable-request-6.1.0" // { 92345 + dependencies = [ 92346 + sources."get-stream-5.2.0" 92347 + sources."lowercase-keys-2.0.0" 92348 + ]; 92349 + }) 92350 + sources."decompress-response-3.3.0" 92351 + sources."defer-to-connect-1.1.3" 92352 + sources."get-stream-4.1.0" 92353 + sources."got-9.6.0" 92354 + sources."json-buffer-3.0.0" 92355 + sources."keyv-3.1.0" 92356 + sources."lowercase-keys-1.0.1" 92357 + sources."mimic-response-1.0.1" 92358 + sources."p-cancelable-1.1.0" 92359 + sources."responselike-1.0.2" 92360 + sources."semver-6.3.0" 92361 + sources."to-readable-stream-1.0.0" 92362 + ]; 92363 + }) 92364 + sources."parent-module-1.0.1" 92365 + sources."parse-json-5.1.0" 92366 + sources."path-exists-4.0.0" 92367 + sources."path-is-absolute-1.0.1" 92368 + sources."path-key-3.1.1" 92369 + sources."path-parse-1.0.6" 92370 + sources."path-type-4.0.0" 92371 + sources."picomatch-2.2.2" 92372 + (sources."pkg-dir-5.0.0" // { 92373 + dependencies = [ 92374 + sources."find-up-5.0.0" 92375 + sources."locate-path-6.0.0" 92376 + sources."p-limit-3.1.0" 92377 + sources."p-locate-5.0.0" 92378 + ]; 92379 + }) 92380 + sources."prepend-http-2.0.0" 92381 + sources."pump-3.0.0" 92382 + (sources."pupa-2.1.1" // { 92383 + dependencies = [ 92384 + sources."escape-goat-2.1.1" 92385 + ]; 92386 + }) 92387 + sources."quick-lru-4.0.1" 92388 + sources."rc-1.2.8" 92389 + (sources."read-pkg-5.2.0" // { 92390 + dependencies = [ 92391 + sources."hosted-git-info-2.8.8" 92392 + sources."normalize-package-data-2.5.0" 92393 + sources."semver-5.7.1" 92394 + sources."type-fest-0.6.0" 92395 + ]; 92396 + }) 92397 + (sources."read-pkg-up-7.0.1" // { 92398 + dependencies = [ 92399 + sources."type-fest-0.8.1" 92400 + ]; 92401 + }) 92402 + sources."redent-3.0.0" 92403 + sources."registry-auth-token-4.2.1" 92404 + sources."registry-url-5.1.0" 92405 + sources."resolve-1.19.0" 92406 + (sources."resolve-cwd-3.0.0" // { 92407 + dependencies = [ 92408 + sources."resolve-from-5.0.0" 92409 + ]; 92410 + }) 92411 + sources."resolve-from-4.0.0" 92412 + sources."responselike-2.0.0" 92413 + sources."restore-cursor-3.1.0" 92414 + sources."reusify-1.0.4" 92415 + sources."rimraf-3.0.2" 92416 + sources."run-async-2.4.1" 92417 + sources."run-parallel-1.1.10" 92418 + sources."rxjs-6.6.3" 92419 + sources."safer-buffer-2.1.2" 92420 + sources."scoped-regex-2.1.0" 92421 + sources."semver-7.3.4" 92422 + (sources."semver-diff-3.1.1" // { 92423 + dependencies = [ 92424 + sources."semver-6.3.0" 92425 + ]; 92426 + }) 92427 + sources."shebang-command-2.0.0" 92428 + sources."shebang-regex-3.0.0" 92429 + sources."signal-exit-3.0.3" 92430 + sources."slash-3.0.0" 92431 + sources."slice-ansi-0.0.4" 92432 + sources."spdx-correct-3.1.1" 92433 + sources."spdx-exceptions-2.3.0" 92434 + sources."spdx-expression-parse-3.0.1" 92435 + sources."spdx-license-ids-3.0.7" 92436 + sources."split-1.0.1" 92437 + sources."string-width-4.2.0" 92438 + sources."strip-ansi-6.0.0" 92439 + sources."strip-final-newline-2.0.0" 92440 + sources."strip-indent-3.0.0" 92441 + sources."strip-json-comments-2.0.1" 92442 + sources."supports-color-7.2.0" 92443 + sources."supports-hyperlinks-2.1.0" 92444 + sources."symbol-observable-3.0.0" 92445 + sources."term-size-2.2.1" 92446 + sources."terminal-link-2.1.1" 92447 + sources."through-2.3.8" 92448 + sources."tmp-0.0.33" 92449 + sources."to-readable-stream-2.1.0" 92450 + sources."to-regex-range-5.0.1" 92451 + sources."trim-newlines-3.0.0" 92452 + sources."tslib-1.14.1" 92453 + sources."type-fest-0.11.0" 92454 + sources."typedarray-to-buffer-3.1.5" 92455 + sources."unique-string-2.0.0" 92456 + sources."update-notifier-5.0.1" 92457 + sources."url-parse-lax-3.0.0" 92458 + sources."vali-date-1.0.0" 92459 + sources."validate-npm-package-license-3.0.4" 92460 + sources."validate-npm-package-name-3.0.0" 92461 + sources."which-2.0.2" 92462 + sources."widest-line-3.1.0" 92463 + (sources."wrap-ansi-3.0.1" // { 92464 + dependencies = [ 92465 + sources."ansi-regex-3.0.0" 92466 + sources."is-fullwidth-code-point-2.0.0" 92467 + sources."string-width-2.1.1" 92468 + sources."strip-ansi-4.0.0" 92469 + ]; 92470 + }) 92471 + sources."wrappy-1.0.2" 92472 + sources."write-file-atomic-3.0.3" 92473 + sources."xdg-basedir-4.0.0" 92474 + sources."yallist-4.0.0" 92475 + sources."yaml-1.10.0" 92476 + sources."yargs-parser-20.2.4" 92477 + sources."yocto-queue-0.1.0" 92478 + ]; 92479 + buildInputs = globalBuildInputs; 92480 + meta = { 92481 + description = "A better `npm publish`"; 92482 + homepage = "https://github.com/sindresorhus/np#readme"; 92483 + license = "MIT"; 92484 + }; 92485 + production = true; 92486 + bypassCache = true; 92487 + reconstructLock = true; 92488 + }; 89699 92489 npm = nodeEnv.buildNodePackage { 89700 92490 name = "npm"; 89701 92491 packageName = "npm"; ··· 89922 92712 ]; 89923 92713 }) 89924 92714 sources."make-fetch-happen-8.0.12" 89925 - sources."mime-db-1.44.0" 89926 - sources."mime-types-2.1.27" 92715 + sources."mime-db-1.45.0" 92716 + sources."mime-types-2.1.28" 89927 92717 sources."mimic-response-1.0.1" 89928 92718 sources."minimatch-3.0.4" 89929 92719 sources."minimist-1.2.5" ··· 90145 92935 sources."json-stringify-safe-5.0.1" 90146 92936 sources."jsonfile-1.0.1" 90147 92937 sources."jsprim-1.4.1" 90148 - sources."mime-db-1.44.0" 90149 - sources."mime-types-2.1.27" 92938 + sources."mime-db-1.45.0" 92939 + sources."mime-types-2.1.28" 90150 92940 sources."minimatch-3.0.4" 90151 92941 sources."minimist-1.2.5" 90152 92942 sources."mkdirp-0.3.5" ··· 90863 93653 ]; 90864 93654 }) 90865 93655 sources."mime-1.6.0" 90866 - sources."mime-db-1.44.0" 90867 - sources."mime-types-2.1.27" 93656 + sources."mime-db-1.45.0" 93657 + sources."mime-types-2.1.28" 90868 93658 sources."mimic-fn-1.2.0" 90869 93659 sources."minimalistic-assert-1.0.1" 90870 93660 sources."minimalistic-crypto-utils-1.0.1" ··· 91405 94195 sources."merge-descriptors-1.0.1" 91406 94196 sources."methods-1.1.2" 91407 94197 sources."mime-1.6.0" 91408 - sources."mime-db-1.44.0" 91409 - sources."mime-types-2.1.27" 94198 + sources."mime-db-1.45.0" 94199 + sources."mime-types-2.1.28" 91410 94200 sources."minimatch-3.0.4" 91411 94201 sources."minimist-1.2.5" 91412 94202 sources."mkdirp-0.5.5" ··· 92327 95117 sources."merge-descriptors-1.0.1" 92328 95118 sources."methods-1.1.2" 92329 95119 sources."mime-1.6.0" 92330 - sources."mime-db-1.44.0" 92331 - sources."mime-types-2.1.27" 95120 + sources."mime-db-1.45.0" 95121 + sources."mime-types-2.1.28" 92332 95122 sources."mimic-response-1.0.1" 92333 95123 sources."minimatch-3.0.4" 92334 95124 sources."minimist-1.2.5" ··· 93372 96162 bypassCache = true; 93373 96163 reconstructLock = true; 93374 96164 }; 96165 + quicktype = nodeEnv.buildNodePackage { 96166 + name = "quicktype"; 96167 + packageName = "quicktype"; 96168 + version = "15.0.258"; 96169 + src = fetchurl { 96170 + url = "https://registry.npmjs.org/quicktype/-/quicktype-15.0.258.tgz"; 96171 + sha512 = "nTDC6LmwsFNJU1qY9+t09e4k1J1PosVDhZKRizkRinQzRVITFOzKSMuFBD3UJ1yaO9Irn7QKBlm9rae+9p+Cdg=="; 96172 + }; 96173 + dependencies = [ 96174 + sources."@mark.probst/typescript-json-schema-0.32.0" 96175 + sources."@mark.probst/unicode-properties-1.1.0" 96176 + sources."acorn-7.4.1" 96177 + sources."ansi-regex-3.0.0" 96178 + sources."ansi-styles-3.2.1" 96179 + sources."array-back-2.0.0" 96180 + sources."balanced-match-1.0.0" 96181 + sources."brace-expansion-1.1.11" 96182 + sources."brfs-1.6.1" 96183 + sources."browser-or-node-1.3.0" 96184 + sources."buffer-equal-0.0.1" 96185 + sources."buffer-from-1.1.1" 96186 + sources."camelcase-5.3.1" 96187 + sources."chalk-2.4.2" 96188 + sources."cliui-4.1.0" 96189 + sources."code-point-at-1.1.0" 96190 + sources."collection-utils-1.0.1" 96191 + sources."color-convert-1.9.3" 96192 + sources."color-name-1.1.3" 96193 + sources."command-line-args-4.0.7" 96194 + sources."command-line-usage-5.0.5" 96195 + sources."concat-map-0.0.1" 96196 + sources."concat-stream-1.6.2" 96197 + sources."convert-source-map-1.7.0" 96198 + sources."core-util-is-1.0.2" 96199 + sources."cross-spawn-6.0.5" 96200 + sources."decamelize-1.2.0" 96201 + sources."deep-extend-0.6.0" 96202 + sources."deep-is-0.1.3" 96203 + sources."duplexer2-0.1.4" 96204 + sources."encoding-0.1.13" 96205 + sources."end-of-stream-1.4.4" 96206 + sources."escape-string-regexp-1.0.5" 96207 + sources."escodegen-1.9.1" 96208 + sources."esprima-3.1.3" 96209 + sources."estraverse-4.3.0" 96210 + sources."esutils-2.0.3" 96211 + sources."execa-1.0.0" 96212 + sources."falafel-2.2.4" 96213 + sources."fast-levenshtein-2.0.6" 96214 + (sources."find-replace-1.0.3" // { 96215 + dependencies = [ 96216 + sources."array-back-1.0.4" 96217 + ]; 96218 + }) 96219 + sources."find-up-3.0.0" 96220 + sources."foreach-2.0.5" 96221 + sources."fs.realpath-1.0.0" 96222 + sources."function-bind-1.1.1" 96223 + sources."get-caller-file-1.0.3" 96224 + sources."get-stream-4.1.0" 96225 + sources."glob-7.1.6" 96226 + sources."graphql-0.11.7" 96227 + sources."has-1.0.3" 96228 + sources."has-flag-3.0.0" 96229 + sources."iconv-lite-0.6.2" 96230 + sources."inflight-1.0.6" 96231 + sources."inherits-2.0.4" 96232 + sources."invert-kv-2.0.0" 96233 + sources."is-core-module-2.2.0" 96234 + sources."is-fullwidth-code-point-1.0.0" 96235 + sources."is-stream-1.1.0" 96236 + sources."is-url-1.2.4" 96237 + sources."isarray-2.0.5" 96238 + sources."isexe-2.0.0" 96239 + sources."isomorphic-fetch-2.2.1" 96240 + sources."iterall-1.1.3" 96241 + sources."js-base64-2.6.4" 96242 + sources."json-stable-stringify-1.0.1" 96243 + sources."jsonify-0.0.0" 96244 + sources."lcid-2.0.0" 96245 + sources."levn-0.3.0" 96246 + sources."locate-path-3.0.0" 96247 + sources."lodash-4.17.20" 96248 + sources."lodash.padend-4.6.1" 96249 + sources."magic-string-0.22.5" 96250 + sources."map-age-cleaner-0.1.3" 96251 + sources."mem-4.3.0" 96252 + (sources."merge-source-map-1.0.4" // { 96253 + dependencies = [ 96254 + sources."source-map-0.5.7" 96255 + ]; 96256 + }) 96257 + sources."mimic-fn-2.1.0" 96258 + sources."minimatch-3.0.4" 96259 + sources."minimist-1.2.5" 96260 + sources."moment-2.29.1" 96261 + sources."nice-try-1.0.5" 96262 + sources."node-fetch-1.7.3" 96263 + sources."npm-run-path-2.0.2" 96264 + sources."number-is-nan-1.0.1" 96265 + sources."object-inspect-1.4.1" 96266 + sources."object-keys-1.1.1" 96267 + sources."once-1.4.0" 96268 + sources."optionator-0.8.3" 96269 + sources."os-locale-3.1.0" 96270 + sources."p-defer-1.0.0" 96271 + sources."p-finally-1.0.0" 96272 + sources."p-is-promise-2.1.0" 96273 + sources."p-limit-2.3.0" 96274 + sources."p-locate-3.0.0" 96275 + sources."p-try-2.2.0" 96276 + sources."pako-1.0.11" 96277 + sources."path-exists-3.0.0" 96278 + sources."path-is-absolute-1.0.1" 96279 + sources."path-key-2.0.1" 96280 + sources."path-parse-1.0.6" 96281 + sources."pluralize-7.0.0" 96282 + sources."prelude-ls-1.1.2" 96283 + sources."process-nextick-args-2.0.1" 96284 + sources."pump-3.0.0" 96285 + sources."quote-stream-1.0.2" 96286 + (sources."readable-stream-2.3.0" // { 96287 + dependencies = [ 96288 + sources."isarray-1.0.0" 96289 + sources."process-nextick-args-1.0.7" 96290 + sources."string_decoder-1.0.3" 96291 + ]; 96292 + }) 96293 + sources."reduce-flatten-1.0.1" 96294 + sources."require-directory-2.1.1" 96295 + sources."require-main-filename-1.0.1" 96296 + sources."resolve-1.19.0" 96297 + sources."safe-buffer-5.1.2" 96298 + sources."safer-buffer-2.1.2" 96299 + sources."semver-5.7.1" 96300 + sources."set-blocking-2.0.0" 96301 + sources."shallow-copy-0.0.1" 96302 + sources."shebang-command-1.2.0" 96303 + sources."shebang-regex-1.0.0" 96304 + sources."signal-exit-3.0.3" 96305 + sources."source-map-0.6.1" 96306 + (sources."static-eval-2.1.0" // { 96307 + dependencies = [ 96308 + sources."escodegen-1.14.3" 96309 + sources."esprima-4.0.1" 96310 + ]; 96311 + }) 96312 + (sources."static-module-2.2.5" // { 96313 + dependencies = [ 96314 + sources."isarray-1.0.0" 96315 + sources."readable-stream-2.3.7" 96316 + ]; 96317 + }) 96318 + sources."stream-chain-2.2.4" 96319 + sources."stream-json-1.1.3" 96320 + sources."string-to-stream-1.1.1" 96321 + (sources."string-width-2.1.1" // { 96322 + dependencies = [ 96323 + sources."is-fullwidth-code-point-2.0.0" 96324 + ]; 96325 + }) 96326 + sources."string_decoder-1.1.1" 96327 + sources."strip-ansi-4.0.0" 96328 + sources."strip-eof-1.0.0" 96329 + sources."supports-color-5.5.0" 96330 + sources."table-layout-0.4.5" 96331 + (sources."test-value-2.1.0" // { 96332 + dependencies = [ 96333 + sources."array-back-1.0.4" 96334 + ]; 96335 + }) 96336 + (sources."through2-2.0.5" // { 96337 + dependencies = [ 96338 + sources."isarray-1.0.0" 96339 + sources."readable-stream-2.3.7" 96340 + ]; 96341 + }) 96342 + sources."tiny-inflate-1.0.3" 96343 + sources."type-check-0.3.2" 96344 + sources."typedarray-0.0.6" 96345 + sources."typescript-3.2.4" 96346 + sources."typical-2.6.1" 96347 + (sources."unicode-trie-0.3.1" // { 96348 + dependencies = [ 96349 + sources."pako-0.2.9" 96350 + ]; 96351 + }) 96352 + sources."urijs-1.19.5" 96353 + sources."util-deprecate-1.0.2" 96354 + sources."uuid-3.4.0" 96355 + sources."vlq-0.2.3" 96356 + sources."whatwg-fetch-3.5.0" 96357 + sources."which-1.3.1" 96358 + sources."which-module-2.0.0" 96359 + sources."word-wrap-1.2.3" 96360 + sources."wordwrap-1.0.0" 96361 + sources."wordwrapjs-3.0.0" 96362 + (sources."wrap-ansi-2.1.0" // { 96363 + dependencies = [ 96364 + sources."ansi-regex-2.1.1" 96365 + sources."string-width-1.0.2" 96366 + sources."strip-ansi-3.0.1" 96367 + ]; 96368 + }) 96369 + sources."wrappy-1.0.2" 96370 + sources."xtend-4.0.2" 96371 + sources."y18n-4.0.1" 96372 + sources."yaml-1.10.0" 96373 + sources."yargs-12.0.5" 96374 + sources."yargs-parser-11.1.1" 96375 + ]; 96376 + buildInputs = globalBuildInputs; 96377 + meta = { 96378 + description = "![](https://raw.githubusercontent.com/quicktype/quicktype/master/quicktype-logo.svg?sanitize=true)"; 96379 + homepage = "https://github.com/quicktype/quicktype#readme"; 96380 + license = "Apache-2.0"; 96381 + }; 96382 + production = true; 96383 + bypassCache = true; 96384 + reconstructLock = true; 96385 + }; 93375 96386 react-native-cli = nodeEnv.buildNodePackage { 93376 96387 name = "react-native-cli"; 93377 96388 packageName = "react-native-cli"; ··· 93607 96618 sources."levn-0.3.0" 93608 96619 sources."lodash-4.17.20" 93609 96620 sources."lodash.sortby-4.7.0" 93610 - sources."mime-db-1.44.0" 93611 - sources."mime-types-2.1.27" 96621 + sources."mime-db-1.45.0" 96622 + sources."mime-types-2.1.28" 93612 96623 sources."minimist-1.2.5" 93613 96624 sources."nwsapi-2.2.0" 93614 96625 sources."oauth-sign-0.9.0" ··· 94167 97178 sources."es6-promise-4.2.8" 94168 97179 sources."es6-promisify-5.0.0" 94169 97180 sources."escape-string-regexp-1.0.5" 94170 - (sources."eslint-7.16.0" // { 97181 + (sources."eslint-7.17.0" // { 94171 97182 dependencies = [ 94172 97183 sources."eslint-visitor-keys-2.0.0" 94173 97184 sources."semver-7.3.4" ··· 94260 97271 }) 94261 97272 sources."mdurl-1.0.1" 94262 97273 sources."mime-1.6.0" 94263 - sources."mime-db-1.44.0" 94264 - sources."mime-types-2.1.27" 97274 + sources."mime-db-1.45.0" 97275 + sources."mime-types-2.1.28" 94265 97276 sources."minimatch-3.0.4" 94266 97277 (sources."mocha-8.2.1" // { 94267 97278 dependencies = [ ··· 94311 97322 sources."readdirp-3.5.0" 94312 97323 sources."regexpp-3.1.0" 94313 97324 sources."require-directory-2.1.1" 97325 + sources."require-from-string-2.0.2" 94314 97326 sources."require-main-filename-2.0.0" 94315 97327 sources."resolve-1.19.0" 94316 97328 sources."resolve-from-4.0.0" ··· 94336 97348 sources."strip-ansi-6.0.0" 94337 97349 sources."strip-json-comments-3.1.1" 94338 97350 sources."supports-color-5.5.0" 94339 - sources."table-6.0.4" 97351 + (sources."table-6.0.6" // { 97352 + dependencies = [ 97353 + sources."ajv-7.0.3" 97354 + sources."json-schema-traverse-1.0.0" 97355 + ]; 97356 + }) 94340 97357 sources."text-table-0.2.0" 94341 97358 sources."tmp-0.0.29" 94342 97359 sources."to-regex-range-5.0.1" ··· 94509 97526 sources."keypress-0.1.0" 94510 97527 sources."methods-0.1.0" 94511 97528 sources."mime-1.2.11" 94512 - sources."mime-db-1.44.0" 94513 - sources."mime-types-2.1.27" 97529 + sources."mime-db-1.45.0" 97530 + sources."mime-types-2.1.28" 94514 97531 sources."mkdirp-0.3.5" 94515 97532 sources."ms-2.1.2" 94516 97533 sources."multiparty-2.2.0" ··· 94673 97690 sources."isexe-2.0.0" 94674 97691 sources."json-schema-traverse-0.4.1" 94675 97692 sources."lru-cache-4.1.5" 94676 - sources."mime-db-1.44.0" 94677 - sources."mime-types-2.1.27" 97693 + sources."mime-db-1.45.0" 97694 + sources."mime-types-2.1.28" 94678 97695 sources."minimatch-3.0.4" 94679 97696 sources."minimist-1.2.5" 94680 97697 sources."ms-2.0.0" ··· 95295 98312 sources."methods-1.1.2" 95296 98313 sources."micromatch-4.0.2" 95297 98314 sources."mime-1.6.0" 95298 - sources."mime-db-1.44.0" 95299 - sources."mime-types-2.1.27" 98315 + sources."mime-db-1.45.0" 98316 + sources."mime-types-2.1.28" 95300 98317 sources."mimic-fn-2.1.0" 95301 98318 sources."mimic-response-1.0.1" 95302 98319 sources."minimatch-3.0.4" ··· 95722 98739 sources."merge-descriptors-1.0.1" 95723 98740 sources."methods-1.1.2" 95724 98741 sources."mime-1.6.0" 95725 - sources."mime-db-1.44.0" 95726 - sources."mime-types-2.1.27" 98742 + sources."mime-db-1.45.0" 98743 + sources."mime-types-2.1.28" 95727 98744 sources."minimist-1.2.5" 95728 98745 sources."mkdirp-0.5.5" 95729 98746 sources."moment-2.7.0" ··· 96876 99893 sources."debug-4.1.1" 96877 99894 sources."engine.io-4.0.5" 96878 99895 sources."engine.io-parser-4.0.2" 96879 - sources."mime-db-1.44.0" 96880 - sources."mime-types-2.1.27" 99896 + sources."mime-db-1.45.0" 99897 + sources."mime-types-2.1.28" 96881 99898 sources."ms-2.1.3" 96882 99899 sources."negotiator-0.6.2" 96883 99900 sources."object-assign-4.1.1" ··· 98336 101353 sources."merge-descriptors-1.0.1" 98337 101354 sources."methods-1.1.2" 98338 101355 sources."mime-1.6.0" 98339 - sources."mime-db-1.44.0" 98340 - sources."mime-types-2.1.27" 101356 + sources."mime-db-1.45.0" 101357 + sources."mime-types-2.1.28" 98341 101358 sources."mimic-fn-2.1.0" 98342 101359 sources."minicap-prebuilt-2.3.0" 98343 101360 sources."minimatch-3.0.4" ··· 98793 101810 sources."@types/normalize-package-data-2.4.0" 98794 101811 sources."@types/parse-json-4.0.0" 98795 101812 sources."@types/unist-2.0.3" 98796 - sources."ajv-6.12.6" 101813 + sources."ajv-7.0.3" 98797 101814 sources."ansi-regex-5.0.0" 98798 101815 sources."ansi-styles-3.2.1" 98799 101816 sources."array-union-2.1.0" ··· 98856 101873 sources."extend-3.0.2" 98857 101874 sources."fast-deep-equal-3.1.3" 98858 101875 sources."fast-glob-3.2.4" 98859 - sources."fast-json-stable-stringify-2.1.0" 98860 101876 sources."fastest-levenshtein-1.0.12" 98861 101877 sources."fastq-1.10.0" 98862 101878 sources."file-entry-cache-6.0.0" ··· 98913 101929 sources."js-tokens-4.0.0" 98914 101930 sources."jsesc-2.5.2" 98915 101931 sources."json-parse-even-better-errors-2.3.1" 98916 - sources."json-schema-traverse-0.4.1" 101932 + sources."json-schema-traverse-1.0.0" 98917 101933 sources."json5-2.1.3" 98918 101934 sources."kind-of-6.0.3" 98919 101935 sources."known-css-properties-0.20.0" ··· 99003 102019 sources."remark-parse-9.0.0" 99004 102020 sources."remark-stringify-9.0.1" 99005 102021 sources."repeat-string-1.6.1" 102022 + sources."require-from-string-2.0.2" 99006 102023 sources."resolve-1.19.0" 99007 102024 sources."resolve-from-5.0.0" 99008 102025 sources."reusify-1.0.4" ··· 99037 102054 sources."sugarss-2.0.0" 99038 102055 sources."supports-color-5.5.0" 99039 102056 sources."svg-tags-1.0.0" 99040 - sources."table-6.0.4" 102057 + sources."table-6.0.6" 99041 102058 sources."to-fast-properties-2.0.0" 99042 102059 sources."to-regex-range-5.0.1" 99043 102060 sources."trim-newlines-3.0.0" ··· 99487 102504 sources."methods-1.1.2" 99488 102505 sources."micromatch-3.1.10" 99489 102506 sources."mime-1.6.0" 99490 - sources."mime-db-1.44.0" 99491 - sources."mime-types-2.1.27" 102507 + sources."mime-db-1.45.0" 102508 + sources."mime-types-2.1.28" 99492 102509 sources."minimatch-3.0.4" 99493 102510 sources."minimist-0.0.8" 99494 102511 sources."mixin-deep-1.3.2" ··· 99852 102869 sources."locate-path-3.0.0" 99853 102870 sources."long-4.0.0" 99854 102871 sources."mime-2.4.7" 99855 - sources."mime-db-1.44.0" 99856 - sources."mime-types-2.1.27" 102872 + sources."mime-db-1.45.0" 102873 + sources."mime-types-2.1.28" 99857 102874 sources."minimist-1.2.5" 99858 102875 sources."module-alias-2.2.2" 99859 102876 sources."moment-2.29.1" ··· 101585 104602 sources."keypress-0.2.1" 101586 104603 sources."lodash-4.17.20" 101587 104604 sources."lru-cache-6.0.0" 101588 - sources."mime-db-1.44.0" 101589 - sources."mime-types-2.1.27" 104605 + sources."mime-db-1.45.0" 104606 + sources."mime-types-2.1.28" 101590 104607 sources."minimatch-3.0.4" 101591 104608 (sources."node-appc-1.1.2" // { 101592 104609 dependencies = [ ··· 102156 105173 sources."merge-descriptors-1.0.1" 102157 105174 sources."methods-1.1.2" 102158 105175 sources."mime-1.6.0" 102159 - sources."mime-db-1.44.0" 102160 - sources."mime-types-2.1.27" 105176 + sources."mime-db-1.45.0" 105177 + sources."mime-types-2.1.28" 102161 105178 sources."mimic-response-1.0.1" 102162 105179 sources."minimatch-3.0.4" 102163 105180 sources."minimist-1.2.5" ··· 103674 106691 sources."supports-color-2.0.0" 103675 106692 ]; 103676 106693 }) 103677 - sources."mime-db-1.44.0" 103678 - sources."mime-types-2.1.27" 106694 + sources."mime-db-1.45.0" 106695 + sources."mime-types-2.1.28" 103679 106696 sources."mimic-fn-1.2.0" 103680 106697 sources."minimatch-3.0.4" 103681 106698 sources."minimist-1.2.5" ··· 105270 108287 sources."to-regex-range-2.1.1" 105271 108288 ]; 105272 108289 }) 105273 - sources."mime-db-1.44.0" 105274 - sources."mime-types-2.1.27" 108290 + sources."mime-db-1.45.0" 108291 + sources."mime-types-2.1.28" 105275 108292 sources."mimic-fn-2.1.0" 105276 108293 sources."mimic-response-1.0.1" 105277 108294 sources."minimatch-3.0.4" ··· 105734 108751 sources."loader-runner-4.1.0" 105735 108752 sources."locate-path-6.0.0" 105736 108753 sources."merge-stream-2.0.0" 105737 - sources."mime-db-1.44.0" 105738 - sources."mime-types-2.1.27" 108754 + sources."mime-db-1.45.0" 108755 + sources."mime-types-2.1.28" 105739 108756 sources."neo-async-2.6.2" 105740 108757 sources."node-releases-1.1.67" 105741 108758 sources."p-limit-3.1.0" ··· 106079 109096 sources."inherits-2.0.3" 106080 109097 ]; 106081 109098 }) 106082 - sources."http-parser-js-0.5.2" 109099 + sources."http-parser-js-0.5.3" 106083 109100 sources."http-proxy-1.18.1" 106084 109101 sources."http-proxy-middleware-0.19.1" 106085 109102 sources."iconv-lite-0.4.24" ··· 106135 109152 sources."methods-1.1.2" 106136 109153 sources."micromatch-3.1.10" 106137 109154 sources."mime-1.6.0" 106138 - sources."mime-db-1.44.0" 106139 - sources."mime-types-2.1.27" 109155 + sources."mime-db-1.45.0" 109156 + sources."mime-types-2.1.28" 106140 109157 sources."minimalistic-assert-1.0.1" 106141 109158 sources."minimatch-3.0.4" 106142 109159 sources."minimist-1.2.5" ··· 107388 110405 sources."merge-stream-2.0.0" 107389 110406 sources."merge2-1.4.1" 107390 110407 sources."micromatch-3.1.10" 107391 - sources."mime-db-1.44.0" 107392 - sources."mime-types-2.1.27" 110408 + sources."mime-db-1.45.0" 110409 + sources."mime-types-2.1.28" 107393 110410 sources."mimic-fn-2.1.0" 107394 110411 sources."mimic-response-1.0.1" 107395 110412 sources."minimatch-3.0.4"
+2
pkgs/development/ocaml-modules/ocaml-monadic/default.nix
··· 6 6 pname = "ocaml-monadic"; 7 7 version = "0.4.1"; 8 8 9 + useDune2 = true; 10 + 9 11 src = fetchFromGitHub { 10 12 owner = "zepalmer"; 11 13 repo = pname;
+3
pkgs/development/python-modules/WSME/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 + , pythonAtLeast 4 5 , pbr 5 6 , six 6 7 , simplegeneric ··· 22 23 buildPythonPackage rec { 23 24 pname = "WSME"; 24 25 version = "0.10.0"; 26 + 27 + disabled = pythonAtLeast "3.9"; 25 28 26 29 src = fetchPypi { 27 30 inherit pname version;
+8 -2
pkgs/development/python-modules/cheroot/default.nix
··· 1 1 { lib, stdenv, fetchPypi, buildPythonPackage, isPy3k 2 + , jaraco_functools 2 3 , jaraco_text 3 4 , more-itertools 4 5 , portend ··· 23 24 24 25 src = fetchPypi { 25 26 inherit pname version; 26 - sha256 = "1089c28a9c320d19fdf9a4b0ed6ace23a0948db1c171a36ac985f3741bc62865"; 27 + sha256 = "0r98qqdp9ww5r5ma6wf1n66r9813rrmfvc54z7yij39jkj5c528h"; 27 28 }; 28 29 29 30 nativeBuildInputs = [ setuptools_scm setuptools-scm-git-archive ]; 30 31 31 - propagatedBuildInputs = [ more-itertools six ]; 32 + propagatedBuildInputs = [ 33 + # install_requires 34 + jaraco_functools 35 + 36 + more-itertools six 37 + ]; 32 38 33 39 checkInputs = [ 34 40 jaraco_text
+1
pkgs/development/python-modules/dask/default.nix
··· 59 59 "test_count_nonzero_str" 60 60 "rolling_methods" # floating percision error ~0.1*10^8 small 61 61 "num_workers_config" # flaky 62 + "test_2args_with_array[pandas1-darray1-ldexp]" # flaky 62 63 ]; 63 64 64 65 meta = {
+21
pkgs/development/python-modules/dbutils/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, pytestCheckHook }: 2 + 3 + buildPythonPackage rec { 4 + version = "2.0"; 5 + pname = "dbutils"; 6 + 7 + src = fetchPypi { 8 + inherit version; 9 + pname = "DBUtils"; 10 + sha256 = "131ifm2c2a7bipij597i8fvjka0dk2qv1xr2ghcvbc30jlkvag2g"; 11 + }; 12 + 13 + checkInputs = [ pytestCheckHook ]; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Database connections for multi-threaded environments"; 17 + homepage = "https://webwareforpython.github.io/DBUtils/"; 18 + license = licenses.mit; 19 + maintainers = with maintainers; [ SuperSandro2000 ]; 20 + }; 21 + }
+2 -2
pkgs/development/python-modules/jc/default.nix
··· 9 9 10 10 buildPythonPackage rec { 11 11 pname = "jc"; 12 - version = "1.13.4"; 12 + version = "1.14.0"; 13 13 disabled = isPy27; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "kellyjonbrazil"; 17 17 repo = "jc"; 18 18 rev = "v${version}"; 19 - sha256 = "0rwvyyrdnw43pixp8h51rncq2inc9pbbj1j2191y5si00pjw34zr"; 19 + sha256 = "0js3mqp6xxg45qsz8wnyyqf4m0wj1kz67bkmvirhdy7s01zhd5hq"; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ ruamel_yaml xmltodict pygments ];
+2 -2
pkgs/development/python-modules/libusb1/default.nix
··· 2 2 3 3 buildPythonPackage rec { 4 4 pname = "libusb1"; 5 - version = "1.9"; 5 + version = "1.9.1"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "sha256:0l7vj04xm0i5ikxjdqrr5939q7amh0hfp0fqifkcvyjv9fvhyz65"; 9 + sha256 = "14ljk7rywy3fiv23dpayvk14y1ywma729r3b1x2cxf68919g2gnh"; 10 10 }; 11 11 12 12 postPatch = ''
+2 -2
pkgs/development/python-modules/tld/default.nix
··· 2 2 3 3 python.pkgs.buildPythonPackage rec { 4 4 pname = "tld"; 5 - version = "0.12.3"; 5 + version = "0.12.4"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "1959d0db03b7644f5528748f348d5eecdcd27120a8bb4ef00d932b1b1acdf13d"; 9 + sha256 = "0976g7jcpi3jv7snawmfis5ybb6737cv2xw7wlanlfkyqljip24x"; 10 10 }; 11 11 12 12 propagatedBuildInputs = with python.pkgs; [ six ];
+13 -6
pkgs/development/python-modules/web/default.nix
··· 1 - { stdenv 2 - , buildPythonPackage 3 - , fetchPypi 4 - , isPy3k 1 + { stdenv, buildPythonPackage, fetchPypi, pytestCheckHook 2 + , cheroot 3 + , dbutils, mysqlclient, pymysql, mysql-connector, psycopg2 5 4 }: 6 5 7 6 buildPythonPackage rec { 8 7 version = "0.62"; 9 8 pname = "web.py"; 10 - disabled = isPy3k; 11 9 12 10 src = fetchPypi { 13 11 inherit pname version; 14 12 sha256 = "5ce684caa240654cae5950da8b4b7bc178812031e08f990518d072bd44ab525e"; 15 13 }; 16 14 15 + propagatedBuildInputs = [ cheroot ]; 16 + 17 + # requires multiple running databases 18 + doCheck = false; 19 + 20 + pythonImportsCheck = [ "web" ]; 21 + 22 + checkInputs = [ pytestCheckHook dbutils mysqlclient pymysql mysql-connector psycopg2 ]; 23 + 17 24 meta = with stdenv.lib; { 18 25 description = "Makes web apps"; 19 26 longDescription = '' ··· 22 29 ''; 23 30 homepage = "https://webpy.org/"; 24 31 license = licenses.publicDomain; 25 - maintainers = with maintainers; [ layus ]; 32 + maintainers = with maintainers; [ layus SuperSandro2000 ]; 26 33 }; 27 34 28 35 }
+11 -4
pkgs/development/python-modules/xdot/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, isPy3k 2 - , wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3 }: 1 + { lib, buildPythonPackage, fetchPypi, isPy3k, python3, xvfb_run, stdenv 2 + , wrapGAppsHook, gobject-introspection, pygobject3, graphviz, gtk3, numpy }: 3 3 4 4 buildPythonPackage rec { 5 5 pname = "xdot"; ··· 11 11 }; 12 12 13 13 disabled = !isPy3k; 14 + nativeBuildInputs = [ wrapGAppsHook ]; 15 + propagatedBuildInputs = [ gobject-introspection pygobject3 graphviz gtk3 numpy ]; 16 + checkInputs = [ xvfb_run ]; 14 17 15 - nativeBuildInputs = [ wrapGAppsHook ]; 16 - propagatedBuildInputs = [ gobject-introspection pygobject3 graphviz gtk3 ]; 18 + checkPhase = '' 19 + xvfb-run -s '-screen 0 800x600x24' ${python3.interpreter} nix_run_setup test 20 + ''; 21 + 22 + # https://github.com/NixOS/nixpkgs/pull/107872#issuecomment-752175866 23 + doCheck = stdenv.isLinux; 17 24 18 25 meta = with lib; { 19 26 description = "An interactive viewer for graphs written in Graphviz's dot";
+12 -8
pkgs/development/tools/icestorm/default.nix
··· 2 2 , pkgconfig, libftdi1 3 3 , python3, pypy3 4 4 5 - # PyPy yields large improvements in build time and runtime performance, 6 - # and IceStorm isn't intended to be used as a library other than by the 7 - # nextpnr build process (which is also sped up by using PyPy), so we 8 - # use it by default. See 18839e1 for more details. 5 + # PyPy yields large improvements in build time and runtime performance, and 6 + # IceStorm isn't intended to be used as a library other than by the nextpnr 7 + # build process (which is also sped up by using PyPy), so we use it by default. 8 + # See 18839e1 for more details. 9 + # 10 + # FIXME(aseipp, 3/1/2021): pypy seems a bit busted since stdenv upgrade to gcc 11 + # 10/binutils 2.34, so short-circuit this for now in passthru below (done so 12 + # that downstream overrides can't re-enable pypy and break their build somehow) 9 13 , usePyPy ? stdenv.hostPlatform.system == "x86_64-linux" 10 14 }: 11 15 12 16 stdenv.mkDerivation rec { 13 17 pname = "icestorm"; 14 - version = "2020.08.19"; 18 + version = "2020.12.04"; 15 19 16 20 passthru = rec { 17 - pythonPkg = if usePyPy then pypy3 else python3; 21 + pythonPkg = if (false && usePyPy) then pypy3 else python3; 18 22 pythonInterp = pythonPkg.interpreter; 19 23 }; 20 24 21 25 src = fetchFromGitHub { 22 26 owner = "YosysHQ"; 23 27 repo = "icestorm"; 24 - rev = "da52117ccd5b4147f64dc7345357ec5439cd7543"; 25 - sha256 = "072bl3vmvb06ry0ci3b1sfjpm3iigb874khzja4azcai969ybp4k"; 28 + rev = "7afc64b480212c9ac2ce7cb1622731a69a7d212c"; 29 + sha256 = "0vxhqs2fampglg3xlfwb35229iv96kvlwp1gyxrdrmlpznhkqdrk"; 26 30 }; 27 31 28 32 nativeBuildInputs = [ pkgconfig ];
+4 -4
pkgs/development/tools/trellis/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 pname = "trellis"; 8 - version = "2020.11.25"; 8 + version = "2021.01.02"; 9 9 10 10 # git describe --tags 11 11 realVersion = with stdenv.lib; with builtins; 12 - "1.0-476-g${substring 0 7 (elemAt srcs 0).rev}"; 12 + "1.0-482-g${substring 0 7 (elemAt srcs 0).rev}"; 13 13 14 14 srcs = [ 15 15 (fetchFromGitHub { 16 16 owner = "SymbiFlow"; 17 17 repo = "prjtrellis"; 18 - rev = "a441cd9d0390648e96bf27096626eb2c904096de"; 19 - sha256 = "1rsck44n4mf9v3vfac51ksrhcs84s7q297nq1kjkzzvmsx09gd9k"; 18 + rev = "60c05b3f4e71fd78d4fba5c31f9974694245199e"; 19 + sha256 = "1k37mxwxv9fpm6xnrxlqqap7zqh2dvgqncphj3asi2rz0kh07ppf"; 20 20 name = "trellis"; 21 21 }) 22 22
+18 -16
pkgs/development/tools/vulkan-validation-layers/default.nix
··· 20 20 # https://github.com/KhronosGroup/Vulkan-ValidationLayers/blob/master/scripts/known_good.json 21 21 22 22 let 23 + localSpirvHeaders = spirv-headers.overrideAttrs (_: { 24 + src = fetchFromGitHub { 25 + owner = "KhronosGroup"; 26 + repo = "SPIRV-Headers"; 27 + rev = "f027d53ded7e230e008d37c8b47ede7cd308e19d"; 28 + sha256 = "12gp2mqcar6jj57jw9isfr62yn72kmvdcl0zga4gvrlyfhnf582q"; 29 + }; 30 + }); 23 31 localGlslang = (glslang.override { 24 32 argSpirv-tools = spirv-tools.overrideAttrs (_: { 25 33 src = fetchFromGitHub { 26 34 owner = "KhronosGroup"; 27 35 repo = "SPIRV-Tools"; 28 - rev = "e128ab0d624ce7beb08eb9656bb260c597a46d0a"; 29 - sha256 = "0jj8zrl3dh9fq71jc8msx3f3ifb2vjcb37nl0w4sa8sdhfff74pv"; 30 - }; 31 - }); 32 - argSpirv-headers = spirv-headers.overrideAttrs (_: { 33 - src = fetchFromGitHub { 34 - owner = "KhronosGroup"; 35 - repo = "SPIRV-Headers"; 36 - rev = "ac638f1815425403e946d0ab78bac71d2bdbf3be"; 37 - sha256 = "1lkhs7pxcrfkmiizcxl0w5ajx6swwjv7w3iq586ipgh571fc75gx"; 36 + rev = "c9c1f54330d13a0bec1aa3f08d436249d8e35596"; 37 + sha256 = "0r5whsw9x8j4199xwxv293ar2ga73pm2s7rngw732ylh6rw3bkly"; 38 38 }; 39 39 }); 40 + argSpirv-headers = localSpirvHeaders; 40 41 }).overrideAttrs (_: { 41 42 src = fetchFromGitHub { 42 43 owner = "KhronosGroup"; 43 44 repo = "glslang"; 44 - rev = "e00d27c6d65b7d3e72506a311d7f053da4051295"; 45 - sha256 = "00lzvzk613gpm1vsdxffmx52z3c52ijwvzk4sfhh95p71kdydhgv"; 45 + rev = "dd69df7f3dac26362e10b0f38efb9e47990f7537"; 46 + sha256 = "1iafbh524avsjg4pjiq156b62pck2rwlfl2pjnml8sjy285506rk"; 46 47 }; 47 48 }); 48 49 in 49 50 50 51 stdenv.mkDerivation rec { 51 52 pname = "vulkan-validation-layers"; 52 - version = "1.2.141.0"; 53 + version = "1.2.162.0"; 53 54 54 55 # If we were to use "dev" here instead of headers, the setupHook would be 55 56 # placed in that output instead of "out". ··· 60 61 owner = "KhronosGroup"; 61 62 repo = "Vulkan-ValidationLayers"; 62 63 rev = "sdk-${version}"; 63 - sha256 = "1yfas7q122kx74nbjk3wxlyacysgncvlvq081a5dp238m88vkmbj"; 64 + sha256 = "1mpqmxh9zm20jdar59lp4yjpqfzxn2pwds6bkvnzihfy0pymf15k"; 64 65 }; 65 66 66 67 nativeBuildInputs = [ ··· 83 84 84 85 cmakeFlags = [ 85 86 "-DGLSLANG_INSTALL_DIR=${localGlslang}" 87 + "-DSPIRV_HEADERS_INSTALL_DIR=${localSpirvHeaders}" 86 88 "-DBUILD_LAYER_SUPPORT_FILES=ON" 87 89 ]; 88 90 ··· 98 100 ''; 99 101 100 102 meta = with stdenv.lib; { 101 - description = "LunarG Vulkan loader"; 102 - homepage = "https://www.lunarg.com"; 103 + description = "The official Khronos Vulkan validation layers"; 104 + homepage = "https://github.com/KhronosGroup/Vulkan-ValidationLayers"; 103 105 platforms = platforms.linux; 104 106 license = licenses.asl20; 105 107 maintainers = [ maintainers.ralith ];
+3 -3
pkgs/development/web/deno/default.nix
··· 18 18 in 19 19 rustPlatform.buildRustPackage rec { 20 20 pname = "deno"; 21 - version = "1.5.3"; 21 + version = "1.6.3"; 22 22 23 23 src = fetchFromGitHub { 24 24 owner = "denoland"; 25 25 repo = pname; 26 26 rev = "v${version}"; 27 - sha256 = "0dxjcab10kqfkflq1x9np5wxlysq33swdwi2f28bi7q312sw5x2y"; 27 + sha256 = "1wmkx458fpsfw57ysawxc0ghxag8v051hiyswm7nnb7gckrm6j8z"; 28 28 fetchSubmodules = true; 29 29 }; 30 - cargoSha256 = "0lhdrsvmf5b4fq2yg9vc00q1sgc1fjk0fh5axs2zffcpsp73ay2k"; 30 + cargoSha256 = "08vzsp53019gmxkn8lpa6l84w3fvbrnr11lzrfgf99nmii6l2hq5"; 31 31 32 32 # Install completions post-install 33 33 nativeBuildInputs = [ installShellFiles ];
+4 -4
pkgs/development/web/deno/deps.nix
··· 2 2 {}: 3 3 rec { 4 4 rustyV8Lib = { 5 - version = "0.12.0"; 5 + version = "0.15.0"; 6 6 sha256s = { 7 - x86_64-linux = "18pim960fh18wrdkhirlj4hnnbxrk172r7yksdn2k5z9lgccighg"; 8 - aarch64-linux = "0d1c8kcz44n1mqprspnshzbqlqw7mq7vryxpmd49gw3fvhcy66y7"; 9 - x86_64-darwin = "1pc2dfq8p1a8dahkc4g8r6b9zwnvds60zc2lgbf8cj5n0ijd06y1"; 7 + x86_64-linux = "1j789pvqh44vsffzl5wg3pp3awrlixjrhbnjx2klsml7jv0lp0mq"; 8 + aarch64-linux = "13srja4vc275ygm806hcsr8mxjnd9qkzaqs58lxnp0702qs5xls6"; 9 + x86_64-darwin = "0aij9yb5i1r3pz0pyl51qdbgfspfdngwbk1qgkp4gxzl3cbnysx1"; 10 10 }; 11 11 }; 12 12 }
+3 -3
pkgs/games/mindustry/default.nix
··· 22 22 # Note: when raising the version, ensure that all SNAPSHOT versions in 23 23 # build.gradle are replaced by a fixed version 24 24 # (the current one at the time of release) (see postPatch). 25 - version = "122"; 25 + version = "122.1"; 26 26 buildVersion = makeBuildVersion version; 27 27 28 28 src = fetchFromGitHub { 29 29 owner = "Anuken"; 30 30 repo = "Mindustry"; 31 31 rev = "v${version}"; 32 - sha256 = "19dxqscnny0c5w3pyg88hflrkhsqgd7zx19240kh4h69y3wwaz0m"; 32 + sha256 = "18m4s81cfb2cr2fj61nf6spiln7cbvx25g42w6fypfikflv3qd8y"; 33 33 }; 34 34 35 35 desktopItem = makeDesktopItem { ··· 81 81 ''; 82 82 outputHashAlgo = "sha256"; 83 83 outputHashMode = "recursive"; 84 - outputHash = "1kymfrd2vd23y1rmx19q47wc212r6qx03x6g58pxbqyylxmcw5zq"; 84 + outputHash = "0vzck6hsrvs438s3ikk66qmpak88bmqcb8inqbbjwy7x87d2qsvj"; 85 85 }; 86 86 87 87 # Separate commands for building and installing the server and the client
-71
pkgs/os-specific/linux/busybox/0001-Fix-build-with-glibc-2.31.patch
··· 1 - From c29b637b55c93214993f40b1a223233d40b8a7d6 Mon Sep 17 00:00:00 2001 2 - From: Maximilian Bosch <maximilian@mbosch.me> 3 - Date: Wed, 19 Feb 2020 22:32:28 +0100 4 - Subject: [PATCH] Fix build with glibc 2.31 5 - 6 - This is derived from the corresponding upstream patch[1], however this 7 - one doesn't apply cleanly on busybox-1.31.1, so I rebased the patch 8 - locally and added it directly to nixpkgs. 9 - 10 - [1] https://git.busybox.net/busybox/patch/?id=d3539be8f27b8cbfdfee460fe08299158f08bcd9 11 - --- 12 - coreutils/date.c | 2 +- 13 - libbb/missing_syscalls.c | 8 -------- 14 - util-linux/rdate.c | 8 ++++++-- 15 - 3 files changed, 7 insertions(+), 11 deletions(-) 16 - 17 - diff --git a/coreutils/date.c b/coreutils/date.c 18 - index 3414d38..931b7f9 100644 19 - --- a/coreutils/date.c 20 - +++ b/coreutils/date.c 21 - @@ -303,7 +303,7 @@ int date_main(int argc UNUSED_PARAM, char **argv) 22 - ts.tv_sec = validate_tm_time(date_str, &tm_time); 23 - 24 - /* if setting time, set it */ 25 - - if ((opt & OPT_SET) && stime(&ts.tv_sec) < 0) { 26 - + if ((opt & OPT_SET) && clock_settime(CLOCK_REALTIME, &ts) < 0) { 27 - bb_perror_msg("can't set date"); 28 - } 29 - } 30 - diff --git a/libbb/missing_syscalls.c b/libbb/missing_syscalls.c 31 - index 87cf59b..dc40d91 100644 32 - --- a/libbb/missing_syscalls.c 33 - +++ b/libbb/missing_syscalls.c 34 - @@ -15,14 +15,6 @@ pid_t getsid(pid_t pid) 35 - return syscall(__NR_getsid, pid); 36 - } 37 - 38 - -int stime(const time_t *t) 39 - -{ 40 - - struct timeval tv; 41 - - tv.tv_sec = *t; 42 - - tv.tv_usec = 0; 43 - - return settimeofday(&tv, NULL); 44 - -} 45 - - 46 - int sethostname(const char *name, size_t len) 47 - { 48 - return syscall(__NR_sethostname, name, len); 49 - diff --git a/util-linux/rdate.c b/util-linux/rdate.c 50 - index 70f829e..878375d 100644 51 - --- a/util-linux/rdate.c 52 - +++ b/util-linux/rdate.c 53 - @@ -95,9 +95,13 @@ int rdate_main(int argc UNUSED_PARAM, char **argv) 54 - if (!(flags & 2)) { /* no -p (-s may be present) */ 55 - if (time(NULL) == remote_time) 56 - bb_error_msg("current time matches remote time"); 57 - - else 58 - - if (stime(&remote_time) < 0) 59 - + else { 60 - + struct timespec ts; 61 - + ts.tv_sec = remote_time; 62 - + ts.tv_nsec = 0; 63 - + if (clock_settime(CLOCK_REALTIME, &ts) < 0) 64 - bb_perror_msg_and_die("can't set time of day"); 65 - + } 66 - } 67 - 68 - if (flags != 1) /* not lone -s */ 69 - -- 70 - 2.25.0 71 -
-94
pkgs/os-specific/linux/busybox/0001-wget-implement-TLS-verification-with-ENABLE_FEATURE_.patch
··· 1 - From 45fa3f18adf57ef9d743038743d9c90573aeeb91 Mon Sep 17 00:00:00 2001 2 - From: Dimitri John Ledkov <xnox@ubuntu.com> 3 - Date: Tue, 19 May 2020 18:20:39 +0100 4 - Subject: [PATCH] wget: implement TLS verification with 5 - ENABLE_FEATURE_WGET_OPENSSL 6 - 7 - When ENABLE_FEATURE_WGET_OPENSSL is enabled, correctly implement TLS 8 - verification by default. And only ignore verification errors, if 9 - --no-check-certificate was passed. 10 - 11 - Also note, that previously OPENSSL implementation did not implement 12 - TLS verification, nor printed any warning messages that verification 13 - was not performed. 14 - 15 - Bug-Ubuntu: https://bugs.launchpad.net/bugs/1879533 16 - 17 - CVE-2018-1000500 18 - 19 - Signed-off-by: Dimitri John Ledkov <xnox@ubuntu.com> 20 - Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com> 21 - --- 22 - networking/wget.c | 20 +++++++++++++++++--- 23 - 1 file changed, 17 insertions(+), 3 deletions(-) 24 - 25 - diff --git a/networking/wget.c b/networking/wget.c 26 - index f2fc9e215..6a8c08324 100644 27 - --- a/networking/wget.c 28 - +++ b/networking/wget.c 29 - @@ -91,6 +91,9 @@ 30 - //config: patches, but do want to waste bandwidth expaining how wrong 31 - //config: it is, you will be ignored. 32 - //config: 33 - +//config: FEATURE_WGET_OPENSSL does implement TLS verification 34 - +//config: using the certificates available to OpenSSL. 35 - +//config: 36 - //config:config FEATURE_WGET_OPENSSL 37 - //config: bool "Try to connect to HTTPS using openssl" 38 - //config: default y 39 - @@ -115,6 +118,9 @@ 40 - //config: If openssl can't be executed, internal TLS code will be used 41 - //config: (if you enabled it); if openssl can be executed but fails later, 42 - //config: wget can't detect this, and download will fail. 43 - +//config: 44 - +//config: By default TLS verification is performed, unless 45 - +//config: --no-check-certificate option is passed. 46 - 47 - //applet:IF_WGET(APPLET(wget, BB_DIR_USR_BIN, BB_SUID_DROP)) 48 - 49 - @@ -124,8 +130,11 @@ 50 - //usage: IF_FEATURE_WGET_LONG_OPTIONS( 51 - //usage: "[-c|--continue] [--spider] [-q|--quiet] [-O|--output-document FILE]\n" 52 - //usage: " [-o|--output-file FILE] [--header 'header: value'] [-Y|--proxy on/off]\n" 53 - +//usage: IF_FEATURE_WGET_OPENSSL( 54 - +//usage: " [--no-check-certificate]\n" 55 - +//usage: ) 56 - /* Since we ignore these opts, we don't show them in --help */ 57 - -/* //usage: " [--no-check-certificate] [--no-cache] [--passive-ftp] [-t TRIES]" */ 58 - +/* //usage: " [--no-cache] [--passive-ftp] [-t TRIES]" */ 59 - /* //usage: " [-nv] [-nc] [-nH] [-np]" */ 60 - //usage: " [-P DIR] [-S|--server-response] [-U|--user-agent AGENT]" IF_FEATURE_WGET_TIMEOUT(" [-T SEC]") " URL..." 61 - //usage: ) 62 - @@ -137,7 +146,9 @@ 63 - //usage: "Retrieve files via HTTP or FTP\n" 64 - //usage: IF_FEATURE_WGET_LONG_OPTIONS( 65 - //usage: "\n --spider Only check URL existence: $? is 0 if exists" 66 - -///////: "\n --no-check-certificate Don't validate the server's certificate" 67 - +//usage: IF_FEATURE_WGET_OPENSSL( 68 - +//usage: "\n --no-check-certificate Don't validate the server's certificate" 69 - +//usage: ) 70 - //usage: ) 71 - //usage: "\n -c Continue retrieval of aborted transfer" 72 - //usage: "\n -q Quiet" 73 - @@ -662,7 +673,7 @@ static int spawn_https_helper_openssl(const char *host, unsigned port) 74 - pid = xvfork(); 75 - if (pid == 0) { 76 - /* Child */ 77 - - char *argv[8]; 78 - + char *argv[9]; 79 - 80 - close(sp[0]); 81 - xmove_fd(sp[1], 0); 82 - @@ -689,6 +700,9 @@ static int spawn_https_helper_openssl(const char *host, unsigned port) 83 - argv[5] = (char*)"-servername"; 84 - argv[6] = (char*)servername; 85 - } 86 - + if (!(option_mask32 & WGET_OPT_NO_CHECK_CERT)) { 87 - + argv[7] = (char*)"-verify_return_error"; 88 - + } 89 - 90 - BB_EXECVP(argv[0], argv); 91 - xmove_fd(3, 2); 92 - -- 93 - 2.28.0 94 -
+2 -7
pkgs/os-specific/linux/busybox/default.nix
··· 48 48 in 49 49 50 50 stdenv.mkDerivation rec { 51 - # TODO: When bumping this version, please validate whether the wget patch is present upstream 52 - # and remove the patch if it is. The patch should be present upstream for all versions 1.32.0+. 53 - # See NixOs/nixpkgs#94722 for context. 54 - name = "busybox-1.31.1"; 51 + name = "busybox-1.32.0"; 55 52 56 53 # Note to whoever is updating busybox: please verify that: 57 54 # nix-build pkgs/stdenv/linux/make-bootstrap-tools.nix -A test 58 55 # still builds after the update. 59 56 src = fetchurl { 60 57 url = "https://busybox.net/downloads/${name}.tar.bz2"; 61 - sha256 = "1659aabzp8w4hayr4z8kcpbk2z1q2wqhw7i1yb0l72b45ykl1yfh"; 58 + sha256 = "w12H8dBLKxU9M8J1wmMuQNOIqI8ZqecXJ+C7v/Uf5ok="; 62 59 }; 63 60 64 61 hardeningDisable = [ "format" "pie" ] ··· 66 63 67 64 patches = [ 68 65 ./busybox-in-store.patch 69 - ./0001-Fix-build-with-glibc-2.31.patch 70 - ./0001-wget-implement-TLS-verification-with-ENABLE_FEATURE_.patch 71 66 ] ++ stdenv.lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) ./clang-cross.patch; 72 67 73 68 postPatch = "patchShebangs .";
+2 -2
pkgs/os-specific/linux/musl/default.nix
··· 35 35 in 36 36 stdenv.mkDerivation rec { 37 37 pname = "musl"; 38 - version = "1.2.0"; 38 + version = "1.2.1"; 39 39 40 40 src = fetchurl { 41 41 url = "https://www.musl-libc.org/releases/${pname}-${version}.tar.gz"; 42 - sha256 = "1s6lix02k1ijm4nmhzpmwzk5w6xfkhn70nvvk8zjs51r24cpppn6"; 42 + sha256 = "0jz8fzwgvfyjgxjbpw35ixdglp2apqjvp8m386f6yr4zacc6xbv8"; 43 43 }; 44 44 45 45 enableParallelBuilding = true;
+18 -4
pkgs/servers/adminer/default.nix
··· 1 - { stdenv, libbsd, fetchurl, phpPackages, php }: 1 + { stdenv, fetchurl, php }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "4.7.8"; ··· 10 10 sha256 = "0k794agvd8pa3mwl0076i7753fzxd41lhr23aih4l2lbdgnzi68z"; 11 11 }; 12 12 13 - nativeBuildInputs = with phpPackages; [ php composer ]; 13 + nativeBuildInputs = [ 14 + php 15 + php.packages.composer 16 + ]; 14 17 15 18 buildPhase = '' 19 + runHook preBuild 20 + 16 21 composer --no-cache run compile 22 + 23 + runHook postBuild 17 24 ''; 18 25 19 26 installPhase = '' 27 + runHook preInstall 28 + 20 29 mkdir $out 21 30 cp adminer-${version}.php $out/adminer.php 31 + 32 + runHook postInstall 22 33 ''; 23 34 24 35 meta = with stdenv.lib; { 25 36 description = "Database management in a single PHP file"; 26 37 homepage = "https://www.adminer.org"; 27 - license = with licenses; [ asl20 gpl2 ]; 28 - maintainers = with maintainers; [ sstef ]; 38 + license = with licenses; [ asl20 gpl2Only ]; 39 + maintainers = with maintainers; [ 40 + jtojnar 41 + sstef 42 + ]; 29 43 platforms = platforms.all; 30 44 }; 31 45 }
+2 -2
pkgs/servers/zigbee2mqtt/default.nix
··· 3 3 package = (import ./node.nix { inherit pkgs system; }).package; 4 4 in 5 5 package.override rec { 6 - version = "1.17.0"; 6 + version = "1.16.2"; 7 7 reconstructLock = true; 8 8 9 9 src = pkgs.fetchFromGitHub { 10 10 owner = "Koenkk"; 11 11 repo = "zigbee2mqtt"; 12 12 rev = version; 13 - sha256 = "152hxx38px9vs0fxhaiv5injsmkdcmjsibszvxrxilnx4fghlww6"; 13 + sha256 = "0rpmm4pwm8s4i9fl26ql0czg5kijv42k9wwik7jb3ppi5jzxrakd"; 14 14 }; 15 15 16 16 passthru.tests.zigbee2mqtt = nixosTests.zigbee2mqtt;
+584 -2173
pkgs/servers/zigbee2mqtt/node-packages.nix
··· 4 4 5 5 let 6 6 sources = { 7 - "@babel/cli-7.12.10" = { 8 - name = "_at_babel_slash_cli"; 9 - packageName = "@babel/cli"; 10 - version = "7.12.10"; 11 - src = fetchurl { 12 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.10.tgz"; 13 - sha512 = "+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ=="; 14 - }; 15 - }; 16 - "@babel/cli-7.12.8" = { 7 + "@babel/cli-7.12.1" = { 17 8 name = "_at_babel_slash_cli"; 18 9 packageName = "@babel/cli"; 19 - version = "7.12.8"; 10 + version = "7.12.1"; 20 11 src = fetchurl { 21 - url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.8.tgz"; 22 - sha512 = "/6nQj11oaGhLmZiuRUfxsujiPDc9BBReemiXgIbxc+M5W+MIiFKYwvNDJvBfnGKNsJTKbUfEheKc9cwoPHAVQA=="; 12 + url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.1.tgz"; 13 + sha512 = "eRJREyrfAJ2r42Iaxe8h3v6yyj1wu9OyosaUHW6UImjGf9ahGL9nsFNh7OCopvtcPL8WnEo7tp78wrZaZ6vG9g=="; 23 14 }; 24 15 }; 25 16 "@babel/code-frame-7.10.4" = { ··· 31 22 sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg=="; 32 23 }; 33 24 }; 34 - "@babel/code-frame-7.12.11" = { 35 - name = "_at_babel_slash_code-frame"; 36 - packageName = "@babel/code-frame"; 37 - version = "7.12.11"; 38 - src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz"; 40 - sha512 = "Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw=="; 41 - }; 42 - }; 43 - "@babel/compat-data-7.12.7" = { 25 + "@babel/compat-data-7.12.5" = { 44 26 name = "_at_babel_slash_compat-data"; 45 27 packageName = "@babel/compat-data"; 46 - version = "7.12.7"; 28 + version = "7.12.5"; 47 29 src = fetchurl { 48 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz"; 49 - sha512 = "YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw=="; 30 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.5.tgz"; 31 + sha512 = "DTsS7cxrsH3by8nqQSpFSyjSfSYl57D6Cf4q8dW3LK83tBKBDCkfcay1nYkXq1nIHXnpX8WMMb/O25HOy3h1zg=="; 50 32 }; 51 33 }; 52 - "@babel/core-7.12.10" = { 34 + "@babel/core-7.12.3" = { 53 35 name = "_at_babel_slash_core"; 54 36 packageName = "@babel/core"; 55 - version = "7.12.10"; 37 + version = "7.12.3"; 56 38 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz"; 58 - sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 39 + url = "https://registry.npmjs.org/@babel/core/-/core-7.12.3.tgz"; 40 + sha512 = "0qXcZYKZp3/6N2jKYVxZv0aNCsxTSVCiK72DTiTYZAu7sjg73W0/aynWjMbiGd87EQL4WyA8reiJVh92AVla9g=="; 59 41 }; 60 42 }; 61 43 "@babel/core-7.12.9" = { ··· 67 49 sha512 = "gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ=="; 68 50 }; 69 51 }; 70 - "@babel/generator-7.12.11" = { 71 - name = "_at_babel_slash_generator"; 72 - packageName = "@babel/generator"; 73 - version = "7.12.11"; 74 - src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz"; 76 - sha512 = "Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA=="; 77 - }; 78 - }; 79 52 "@babel/generator-7.12.5" = { 80 53 name = "_at_babel_slash_generator"; 81 54 packageName = "@babel/generator"; ··· 94 67 sha512 = "XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA=="; 95 68 }; 96 69 }; 97 - "@babel/helper-annotate-as-pure-7.12.10" = { 98 - name = "_at_babel_slash_helper-annotate-as-pure"; 99 - packageName = "@babel/helper-annotate-as-pure"; 100 - version = "7.12.10"; 101 - src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.10.tgz"; 103 - sha512 = "XplmVbC1n+KY6jL8/fgLVXXUauDIB+lD5+GsQEh6F6GBF1dq1qy4DP4yXWzDKcoqXB3X58t61e85Fitoww4JVQ=="; 104 - }; 105 - }; 106 70 "@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" = { 107 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 108 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; ··· 130 94 sha512 = "hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w=="; 131 95 }; 132 96 }; 133 - "@babel/helper-create-regexp-features-plugin-7.12.7" = { 97 + "@babel/helper-create-regexp-features-plugin-7.12.1" = { 134 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 135 99 packageName = "@babel/helper-create-regexp-features-plugin"; 136 - version = "7.12.7"; 100 + version = "7.12.1"; 137 101 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz"; 139 - sha512 = "idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ=="; 102 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.1.tgz"; 103 + sha512 = "rsZ4LGvFTZnzdNZR5HZdmJVuXK8834R5QkF3WvcnBhrlVtF0HSIUC6zbreL9MgjTywhKokn8RIYRiq99+DLAxA=="; 140 104 }; 141 105 }; 142 106 "@babel/helper-define-map-7.10.5" = { ··· 164 128 src = fetchurl { 165 129 url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz"; 166 130 sha512 = "YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ=="; 167 - }; 168 - }; 169 - "@babel/helper-function-name-7.12.11" = { 170 - name = "_at_babel_slash_helper-function-name"; 171 - packageName = "@babel/helper-function-name"; 172 - version = "7.12.11"; 173 - src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz"; 175 - sha512 = "AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA=="; 176 131 }; 177 132 }; 178 133 "@babel/helper-get-function-arity-7.10.4" = { ··· 184 139 sha512 = "EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A=="; 185 140 }; 186 141 }; 187 - "@babel/helper-get-function-arity-7.12.10" = { 188 - name = "_at_babel_slash_helper-get-function-arity"; 189 - packageName = "@babel/helper-get-function-arity"; 190 - version = "7.12.10"; 191 - src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz"; 193 - sha512 = "mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag=="; 194 - }; 195 - }; 196 142 "@babel/helper-hoist-variables-7.10.4" = { 197 143 name = "_at_babel_slash_helper-hoist-variables"; 198 144 packageName = "@babel/helper-hoist-variables"; ··· 202 148 sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA=="; 203 149 }; 204 150 }; 151 + "@babel/helper-member-expression-to-functions-7.12.1" = { 152 + name = "_at_babel_slash_helper-member-expression-to-functions"; 153 + packageName = "@babel/helper-member-expression-to-functions"; 154 + version = "7.12.1"; 155 + src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.1.tgz"; 157 + sha512 = "k0CIe3tXUKTRSoEx1LQEPFU9vRQfqHtl+kf8eNnDqb4AUJEy5pz6aIiog+YWtVm2jpggjS1laH68bPsR+KWWPQ=="; 158 + }; 159 + }; 205 160 "@babel/helper-member-expression-to-functions-7.12.7" = { 206 161 name = "_at_babel_slash_helper-member-expression-to-functions"; 207 162 packageName = "@babel/helper-member-expression-to-functions"; ··· 229 184 sha512 = "QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w=="; 230 185 }; 231 186 }; 232 - "@babel/helper-optimise-call-expression-7.12.10" = { 187 + "@babel/helper-optimise-call-expression-7.10.4" = { 233 188 name = "_at_babel_slash_helper-optimise-call-expression"; 234 189 packageName = "@babel/helper-optimise-call-expression"; 235 - version = "7.12.10"; 190 + version = "7.10.4"; 236 191 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.10.tgz"; 238 - sha512 = "4tpbU0SrSTjjt65UMWSrUOPZTsgvPgGG4S8QSTNHacKzpS51IVWGDj0yCwyeZND/i+LSN2g/O63jEXEWm49sYQ=="; 192 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz"; 193 + sha512 = "n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg=="; 239 194 }; 240 195 }; 241 196 "@babel/helper-optimise-call-expression-7.12.7" = { ··· 256 211 sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg=="; 257 212 }; 258 213 }; 214 + "@babel/helper-regex-7.10.5" = { 215 + name = "_at_babel_slash_helper-regex"; 216 + packageName = "@babel/helper-regex"; 217 + version = "7.10.5"; 218 + src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz"; 220 + sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg=="; 221 + }; 222 + }; 259 223 "@babel/helper-remap-async-to-generator-7.12.1" = { 260 224 name = "_at_babel_slash_helper-remap-async-to-generator"; 261 225 packageName = "@babel/helper-remap-async-to-generator"; ··· 263 227 src = fetchurl { 264 228 url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz"; 265 229 sha512 = "9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A=="; 266 - }; 267 - }; 268 - "@babel/helper-replace-supers-7.12.11" = { 269 - name = "_at_babel_slash_helper-replace-supers"; 270 - packageName = "@babel/helper-replace-supers"; 271 - version = "7.12.11"; 272 - src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.11.tgz"; 274 - sha512 = "q+w1cqmhL7R0FNzth/PLLp2N+scXEK/L2AHbXUyydxp828F4FEa5WcVoqui9vFRiHDQErj9Zof8azP32uGVTRA=="; 275 230 }; 276 231 }; 277 232 "@babel/helper-replace-supers-7.12.5" = { ··· 308 263 src = fetchurl { 309 264 url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz"; 310 265 sha512 = "74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg=="; 311 - }; 312 - }; 313 - "@babel/helper-split-export-declaration-7.12.11" = { 314 - name = "_at_babel_slash_helper-split-export-declaration"; 315 - packageName = "@babel/helper-split-export-declaration"; 316 - version = "7.12.11"; 317 - src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz"; 319 - sha512 = "LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g=="; 320 266 }; 321 267 }; 322 268 "@babel/helper-validator-identifier-7.10.4" = { ··· 328 274 sha512 = "3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw=="; 329 275 }; 330 276 }; 331 - "@babel/helper-validator-identifier-7.12.11" = { 332 - name = "_at_babel_slash_helper-validator-identifier"; 333 - packageName = "@babel/helper-validator-identifier"; 334 - version = "7.12.11"; 335 - src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz"; 337 - sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="; 338 - }; 339 - }; 340 277 "@babel/helper-validator-option-7.12.1" = { 341 278 name = "_at_babel_slash_helper-validator-option"; 342 279 packageName = "@babel/helper-validator-option"; ··· 344 281 src = fetchurl { 345 282 url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz"; 346 283 sha512 = "YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A=="; 347 - }; 348 - }; 349 - "@babel/helper-validator-option-7.12.11" = { 350 - name = "_at_babel_slash_helper-validator-option"; 351 - packageName = "@babel/helper-validator-option"; 352 - version = "7.12.11"; 353 - src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz"; 355 - sha512 = "TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw=="; 356 284 }; 357 285 }; 358 286 "@babel/helper-wrap-function-7.12.3" = { ··· 382 310 sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA=="; 383 311 }; 384 312 }; 385 - "@babel/parser-7.12.11" = { 313 + "@babel/parser-7.12.5" = { 386 314 name = "_at_babel_slash_parser"; 387 315 packageName = "@babel/parser"; 388 - version = "7.12.11"; 316 + version = "7.12.5"; 389 317 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz"; 391 - sha512 = "N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg=="; 318 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.5.tgz"; 319 + sha512 = "FVM6RZQ0mn2KCf1VUED7KepYeUWoVShczewOCfm3nzoBybaih51h+sYVVGthW9M6lPByEPTQf+xm27PBdlpwmQ=="; 392 320 }; 393 321 }; 394 322 "@babel/parser-7.12.7" = { ··· 407 335 src = fetchurl { 408 336 url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz"; 409 337 sha512 = "d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A=="; 410 - }; 411 - }; 412 - "@babel/plugin-proposal-async-generator-functions-7.12.12" = { 413 - name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 414 - packageName = "@babel/plugin-proposal-async-generator-functions"; 415 - version = "7.12.12"; 416 - src = fetchurl { 417 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.12.tgz"; 418 - sha512 = "nrz9y0a4xmUrRq51bYkWJIO5SBZyG2ys2qinHsN0zHDHVsUaModrkpyWWWXfGqYQmOL3x9sQIcTNN/pBGpo09A=="; 419 338 }; 420 339 }; 421 340 "@babel/plugin-proposal-class-properties-7.12.1" = { ··· 472 391 sha512 = "nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg=="; 473 392 }; 474 393 }; 475 - "@babel/plugin-proposal-numeric-separator-7.12.7" = { 394 + "@babel/plugin-proposal-numeric-separator-7.12.5" = { 476 395 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 477 396 packageName = "@babel/plugin-proposal-numeric-separator"; 478 - version = "7.12.7"; 397 + version = "7.12.5"; 479 398 src = fetchurl { 480 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz"; 481 - sha512 = "8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ=="; 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.5.tgz"; 400 + sha512 = "UiAnkKuOrCyjZ3sYNHlRlfuZJbBHknMQ9VMwVeX97Ofwx7RpD6gS2HfqTCh8KNUQgcOm8IKt103oR4KIjh7Q8g=="; 482 401 }; 483 402 }; 484 403 "@babel/plugin-proposal-object-rest-spread-7.12.1" = { ··· 499 418 sha512 = "hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g=="; 500 419 }; 501 420 }; 502 - "@babel/plugin-proposal-optional-chaining-7.12.7" = { 421 + "@babel/plugin-proposal-optional-chaining-7.12.1" = { 503 422 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 504 423 packageName = "@babel/plugin-proposal-optional-chaining"; 505 - version = "7.12.7"; 424 + version = "7.12.1"; 506 425 src = fetchurl { 507 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz"; 508 - sha512 = "4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA=="; 426 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.1.tgz"; 427 + sha512 = "c2uRpY6WzaVDzynVY9liyykS+kVU+WRZPMPYpkelXH8KBt1oXoI89kPbZKKG/jDT5UK92FTW2fZkZaJhdiBabw=="; 509 428 }; 510 429 }; 511 430 "@babel/plugin-proposal-private-methods-7.12.1" = { ··· 697 616 sha512 = "zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w=="; 698 617 }; 699 618 }; 700 - "@babel/plugin-transform-block-scoping-7.12.12" = { 701 - name = "_at_babel_slash_plugin-transform-block-scoping"; 702 - packageName = "@babel/plugin-transform-block-scoping"; 703 - version = "7.12.12"; 704 - src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.12.tgz"; 706 - sha512 = "VOEPQ/ExOVqbukuP7BYJtI5ZxxsmegTwzZ04j1aF0dkSypGo9XpDHuOrABsJu+ie+penpSJheDJ11x1BEZNiyQ=="; 707 - }; 708 - }; 709 619 "@babel/plugin-transform-classes-7.12.1" = { 710 620 name = "_at_babel_slash_plugin-transform-classes"; 711 621 packageName = "@babel/plugin-transform-classes"; ··· 913 823 sha512 = "vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng=="; 914 824 }; 915 825 }; 916 - "@babel/plugin-transform-sticky-regex-7.12.7" = { 826 + "@babel/plugin-transform-sticky-regex-7.12.1" = { 917 827 name = "_at_babel_slash_plugin-transform-sticky-regex"; 918 828 packageName = "@babel/plugin-transform-sticky-regex"; 919 - version = "7.12.7"; 829 + version = "7.12.1"; 920 830 src = fetchurl { 921 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz"; 922 - sha512 = "VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg=="; 831 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.1.tgz"; 832 + sha512 = "CiUgKQ3AGVk7kveIaPEET1jNDhZZEl1RPMWdTBE1799bdz++SwqDHStmxfCtDfBhQgCl38YRiSnrMuUMZIWSUQ=="; 923 833 }; 924 834 }; 925 835 "@babel/plugin-transform-template-literals-7.12.1" = { ··· 940 850 sha512 = "EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q=="; 941 851 }; 942 852 }; 943 - "@babel/plugin-transform-typeof-symbol-7.12.10" = { 944 - name = "_at_babel_slash_plugin-transform-typeof-symbol"; 945 - packageName = "@babel/plugin-transform-typeof-symbol"; 946 - version = "7.12.10"; 947 - src = fetchurl { 948 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.10.tgz"; 949 - sha512 = "JQ6H8Rnsogh//ijxspCjc21YPd3VLVoYtAwv3zQmqAt8YGYUtdo5usNhdl4b9/Vir2kPFZl6n1h0PfUz4hJhaA=="; 950 - }; 951 - }; 952 853 "@babel/plugin-transform-typescript-7.12.1" = { 953 854 name = "_at_babel_slash_plugin-transform-typescript"; 954 855 packageName = "@babel/plugin-transform-typescript"; ··· 976 877 sha512 = "SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg=="; 977 878 }; 978 879 }; 979 - "@babel/preset-env-7.12.11" = { 980 - name = "_at_babel_slash_preset-env"; 981 - packageName = "@babel/preset-env"; 982 - version = "7.12.11"; 983 - src = fetchurl { 984 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.11.tgz"; 985 - sha512 = "j8Tb+KKIXKYlDBQyIOy4BLxzv1NUOwlHfZ74rvW+Z0Gp4/cI2IMDPBWAgWceGcE7aep9oL/0K9mlzlMGxA8yNw=="; 986 - }; 987 - }; 988 - "@babel/preset-env-7.12.7" = { 880 + "@babel/preset-env-7.12.1" = { 989 881 name = "_at_babel_slash_preset-env"; 990 882 packageName = "@babel/preset-env"; 991 - version = "7.12.7"; 883 + version = "7.12.1"; 992 884 src = fetchurl { 993 - url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.7.tgz"; 994 - sha512 = "OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew=="; 885 + url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.1.tgz"; 886 + sha512 = "H8kxXmtPaAGT7TyBvSSkoSTUK6RHh61So05SyEbpmr0MCZrsNYn7mGMzzeYoOUCdHzww61k8XBft2TaES+xPLg=="; 995 887 }; 996 888 }; 997 889 "@babel/preset-modules-0.1.4" = { ··· 1003 895 sha512 = "J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg=="; 1004 896 }; 1005 897 }; 1006 - "@babel/preset-typescript-7.12.7" = { 898 + "@babel/preset-typescript-7.12.1" = { 1007 899 name = "_at_babel_slash_preset-typescript"; 1008 900 packageName = "@babel/preset-typescript"; 1009 - version = "7.12.7"; 901 + version = "7.12.1"; 1010 902 src = fetchurl { 1011 - url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.7.tgz"; 1012 - sha512 = "nOoIqIqBmHBSEgBXWR4Dv/XBehtIFcw9PqZw6rFYuKrzsZmOQm3PR5siLBnKZFEsDb03IegG8nSjU/iXXXYRmw=="; 903 + url = "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.12.1.tgz"; 904 + sha512 = "hNK/DhmoJPsksdHuI/RVrcEws7GN5eamhi28JkO52MqIxU8Z0QpmiSOQxZHWOHV7I3P4UjHV97ay4TcamMA6Kw=="; 1013 905 }; 1014 906 }; 1015 907 "@babel/runtime-7.12.5" = { ··· 1021 913 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 1022 914 }; 1023 915 }; 916 + "@babel/template-7.10.4" = { 917 + name = "_at_babel_slash_template"; 918 + packageName = "@babel/template"; 919 + version = "7.10.4"; 920 + src = fetchurl { 921 + url = "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz"; 922 + sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA=="; 923 + }; 924 + }; 1024 925 "@babel/template-7.12.7" = { 1025 926 name = "_at_babel_slash_template"; 1026 927 packageName = "@babel/template"; ··· 1030 931 sha512 = "GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow=="; 1031 932 }; 1032 933 }; 1033 - "@babel/traverse-7.12.12" = { 934 + "@babel/traverse-7.12.5" = { 1034 935 name = "_at_babel_slash_traverse"; 1035 936 packageName = "@babel/traverse"; 1036 - version = "7.12.12"; 937 + version = "7.12.5"; 1037 938 src = fetchurl { 1038 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz"; 1039 - sha512 = "s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w=="; 939 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.5.tgz"; 940 + sha512 = "xa15FbQnias7z9a62LwYAA5SZZPkHIXpd42C6uW68o8uTuua96FHZy1y61Va5P/i83FAAcMpW8+A/QayntzuqA=="; 1040 941 }; 1041 942 }; 1042 943 "@babel/traverse-7.12.9" = { ··· 1048 949 sha512 = "iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw=="; 1049 950 }; 1050 951 }; 1051 - "@babel/types-7.12.12" = { 952 + "@babel/types-7.12.6" = { 1052 953 name = "_at_babel_slash_types"; 1053 954 packageName = "@babel/types"; 1054 - version = "7.12.12"; 955 + version = "7.12.6"; 1055 956 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz"; 1057 - sha512 = "lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ=="; 957 + url = "https://registry.npmjs.org/@babel/types/-/types-7.12.6.tgz"; 958 + sha512 = "hwyjw6GvjBLiyy3W0YQf0Z5Zf4NpYejUnKFcfcUhZCSffoBBp30w6wP2Wn6pk31jMYZvcOrB/1b7cGXvEoKogA=="; 1058 959 }; 1059 960 }; 1060 961 "@babel/types-7.12.7" = { ··· 1093 994 sha512 = "+A1YivoVDNNVCdfozHSR8v/jyuuLTMXwjWuxPFlFlUapXoGc+Gj9mDlTDDfrwl7rXCl2tNZ0kE8sIBO6YOn96Q=="; 1094 995 }; 1095 996 }; 1096 - "@eslint/eslintrc-0.2.2" = { 997 + "@eslint/eslintrc-0.2.1" = { 1097 998 name = "_at_eslint_slash_eslintrc"; 1098 999 packageName = "@eslint/eslintrc"; 1099 - version = "0.2.2"; 1000 + version = "0.2.1"; 1100 1001 src = fetchurl { 1101 - url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.2.tgz"; 1102 - sha512 = "EfB5OHNYp1F4px/LI/FEnGylop7nOqkQ1LRzCM0KccA2U8tvV8w01KBv37LbO7nW4H+YhKyo2LcJhRwjjV17QQ=="; 1002 + url = "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-0.2.1.tgz"; 1003 + sha512 = "XRUeBZ5zBWLYgSANMpThFddrZZkEbGHgUdt5UJjZfnlN9BGCiUBrf+nvbRupSjMvqzwnQN0qwCmOxITt1cfywA=="; 1103 1004 }; 1104 1005 }; 1105 1006 "@istanbuljs/load-nyc-config-1.1.0" = { ··· 1219 1120 sha512 = "fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ=="; 1220 1121 }; 1221 1122 }; 1222 - "@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" = { 1123 + "@nicolo-ribaudo/chokidar-2-2.1.8" = { 1223 1124 name = "_at_nicolo-ribaudo_slash_chokidar-2"; 1224 1125 packageName = "@nicolo-ribaudo/chokidar-2"; 1225 - version = "2.1.8-no-fsevents"; 1126 + version = "2.1.8"; 1226 1127 src = fetchurl { 1227 - url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.tgz"; 1228 - sha512 = "+nb9vWloHNNMFHjGofEam3wopE3m1yuambrrd/fnPc+lFOMB9ROTqQlche9ByFWNkdNqfSgR/kkQtQ8DzEWt2w=="; 1128 + url = "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8.tgz"; 1129 + sha512 = "FohwULwAebCUKi/akMFyGi7jfc7JXTeMHzKxuP3umRd9mK/2Y7/SMBSI2jX+YLopPXi+PF9l307NmpfxTdCegA=="; 1229 1130 }; 1230 1131 }; 1231 1132 "@nodelib/fs.scandir-2.1.3" = { ··· 1273 1174 sha512 = "HfrvJ/LXULHk8w63CGxwDNiDidFgDX8BnadY+cgVS6yHMHikbhLCLjCmUKsKBWaGKRqOznl0w+iUl7TMi1lkXQ=="; 1274 1175 }; 1275 1176 }; 1276 - "@serialport/bindings-9.0.3" = { 1177 + "@serialport/bindings-9.0.2" = { 1277 1178 name = "_at_serialport_slash_bindings"; 1278 1179 packageName = "@serialport/bindings"; 1279 - version = "9.0.3"; 1180 + version = "9.0.2"; 1280 1181 src = fetchurl { 1281 - url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.3.tgz"; 1282 - sha512 = "hnqVqEc4IqGCIjztGkd30V0KcTatQ1T/SS03MZ9KLn6e3y2PSXFqf0TqxB0qF7K9lGHWldMTiPOQaZnuV/oZLQ=="; 1283 - }; 1284 - }; 1285 - "@serialport/bindings-9.0.4" = { 1286 - name = "_at_serialport_slash_bindings"; 1287 - packageName = "@serialport/bindings"; 1288 - version = "9.0.4"; 1289 - src = fetchurl { 1290 - url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.4.tgz"; 1291 - sha512 = "6dlE1vm5c1xk667f1Zm7D+msbHJ9jdnUr9l8DResKpj2iCBzbCNsW+yCYq26WxzXWc1L2HUaS3/aL+k0wm5amg=="; 1182 + url = "https://registry.npmjs.org/@serialport/bindings/-/bindings-9.0.2.tgz"; 1183 + sha512 = "kQ3co4aGwwbUqkRdJ7UfdlbLB5dUQwNfSglexC8iv65D5HXfjSBR1bE0XUH8PH/v/6Dh6CSnwf6OP0I3H5vMWQ=="; 1292 1184 }; 1293 1185 }; 1294 1186 "@serialport/parser-byte-length-9.0.1" = { ··· 1399 1291 sha512 = "NTPErx4/FiPCGScH7foPyr+/1Dkzkni+rHiYHHoTjvwou7AQzJkNeD60A9CXRy+ZEN2B1bggmkTMCDb+Mv5k+A=="; 1400 1292 }; 1401 1293 }; 1402 - "@types/babel__traverse-7.11.0" = { 1294 + "@types/babel__traverse-7.0.15" = { 1403 1295 name = "_at_types_slash_babel__traverse"; 1404 1296 packageName = "@types/babel__traverse"; 1405 - version = "7.11.0"; 1297 + version = "7.0.15"; 1406 1298 src = fetchurl { 1407 - url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.11.0.tgz"; 1408 - sha512 = "kSjgDMZONiIfSH1Nxcr5JIRMwUetDki63FSQfpTCz8ogF3Ulqm8+mr5f78dUYs6vMiB6gBusQqfQmBvHZj/lwg=="; 1299 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.15.tgz"; 1300 + sha512 = "Pzh9O3sTK8V6I1olsXpCfj2k/ygO2q1X0vhhnDrEQyYLHZesWz+zMZMVcwXLCYf0U36EtmyYaFGPfXlTtDHe3A=="; 1301 + }; 1302 + }; 1303 + "@types/babel__traverse-7.0.16" = { 1304 + name = "_at_types_slash_babel__traverse"; 1305 + packageName = "@types/babel__traverse"; 1306 + version = "7.0.16"; 1307 + src = fetchurl { 1308 + url = "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.16.tgz"; 1309 + sha512 = "S63Dt4CZOkuTmpLGGWtT/mQdVORJOpx6SZWGVaP56dda/0Nx5nEe82K7/LAm8zYr6SfMq+1N2OreIOrHAx656w=="; 1409 1310 }; 1410 1311 }; 1411 1312 "@types/debounce-1.2.0" = { ··· 1462 1363 sha512 = "nwKNbvnwJ2/mndE9ItP/zc2TCzw6uuodnF4EHYWD+gCQDVBuRQL5UzbZD0/ezy1iKsFU2ZQiDqg4M9dN4+wZgA=="; 1463 1364 }; 1464 1365 }; 1465 - "@types/jest-26.0.18" = { 1366 + "@types/jest-26.0.15" = { 1466 1367 name = "_at_types_slash_jest"; 1467 1368 packageName = "@types/jest"; 1468 - version = "26.0.18"; 1369 + version = "26.0.15"; 1469 1370 src = fetchurl { 1470 - url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.18.tgz"; 1471 - sha512 = "scDPs+mELZgsFetTgBSsIxKGrlitn9t/d2ecP+S1QSIGD+31fkMBEftLfOAX5k3tU06/0PjreJIQ+gWEbbHqpw=="; 1472 - }; 1473 - }; 1474 - "@types/jest-26.0.19" = { 1475 - name = "_at_types_slash_jest"; 1476 - packageName = "@types/jest"; 1477 - version = "26.0.19"; 1478 - src = fetchurl { 1479 - url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.19.tgz"; 1480 - sha512 = "jqHoirTG61fee6v6rwbnEuKhpSKih0tuhqeFbCmMmErhtu3BYlOZaXWjffgOstMM4S/3iQD31lI5bGLTrs97yQ=="; 1371 + url = "https://registry.npmjs.org/@types/jest/-/jest-26.0.15.tgz"; 1372 + sha512 = "s2VMReFXRg9XXxV+CW9e5Nz8fH2K1aEhwgjUqPPbQd7g95T0laAcvLv032EhFHIa5GHsZ8W7iJEQVaJq6k3Gog=="; 1481 1373 }; 1482 1374 }; 1483 1375 "@types/json-schema-7.0.6" = { ··· 1498 1390 sha512 = "qHQRLZ0e6l/XK/2Qb2v5N1ujmdttYkUvnRI4nPIifMy6vYwoAnER10xhX13isWjjQtNsrjNLinZgDDguzPmEKw=="; 1499 1391 }; 1500 1392 }; 1501 - "@types/node-14.14.11" = { 1393 + "@types/node-14.14.10" = { 1502 1394 name = "_at_types_slash_node"; 1503 1395 packageName = "@types/node"; 1504 - version = "14.14.11"; 1396 + version = "14.14.10"; 1505 1397 src = fetchurl { 1506 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.11.tgz"; 1507 - sha512 = "BJ97wAUuU3NUiUCp44xzUFquQEvnk1wu7q4CMEUYKJWjdkr0YWYDsm4RFtAvxYsNjLsKcrFt6RvK8r+mnzMbEQ=="; 1398 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz"; 1399 + sha512 = "J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ=="; 1508 1400 }; 1509 1401 }; 1510 - "@types/node-14.14.16" = { 1402 + "@types/node-14.14.7" = { 1511 1403 name = "_at_types_slash_node"; 1512 1404 packageName = "@types/node"; 1513 - version = "14.14.16"; 1405 + version = "14.14.7"; 1514 1406 src = fetchurl { 1515 - url = "https://registry.npmjs.org/@types/node/-/node-14.14.16.tgz"; 1516 - sha512 = "naXYePhweTi+BMv11TgioE2/FXU4fSl29HAH1ffxVciNsH3rYXjNP2yM8wqmSm7jS20gM8TIklKiTen+1iVncw=="; 1407 + url = "https://registry.npmjs.org/@types/node/-/node-14.14.7.tgz"; 1408 + sha512 = "Zw1vhUSQZYw+7u5dAwNbIA9TuTotpzY/OF7sJM9FqPOF3SPjKnxrjoTktXDZgUjybf4cWVBP7O8wvKdSaGHweg=="; 1517 1409 }; 1518 1410 }; 1519 1411 "@types/normalize-package-data-2.4.0" = { ··· 1534 1426 sha512 = "UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ=="; 1535 1427 }; 1536 1428 }; 1537 - "@types/prettier-2.1.6" = { 1538 - name = "_at_types_slash_prettier"; 1539 - packageName = "@types/prettier"; 1540 - version = "2.1.6"; 1541 - src = fetchurl { 1542 - url = "https://registry.npmjs.org/@types/prettier/-/prettier-2.1.6.tgz"; 1543 - sha512 = "6gOkRe7OIioWAXfnO/2lFiv+SJichKVSys1mSsgyrYHSEjk8Ctv4tSR/Odvnu+HWlH2C8j53dahU03XmQdd5fA=="; 1544 - }; 1545 - }; 1546 1429 "@types/serialport-8.0.1" = { 1547 1430 name = "_at_types_slash_serialport"; 1548 1431 packageName = "@types/serialport"; ··· 1561 1444 sha512 = "RJJrrySY7A8havqpGObOB4W92QXKJo63/jFLLgpvOtsGUqbQZ9Sbgl35KMm1DjC6j7AvmmU2bIno+3IyEaemaw=="; 1562 1445 }; 1563 1446 }; 1564 - "@types/yargs-15.0.11" = { 1447 + "@types/yargs-15.0.10" = { 1565 1448 name = "_at_types_slash_yargs"; 1566 1449 packageName = "@types/yargs"; 1567 - version = "15.0.11"; 1450 + version = "15.0.10"; 1568 1451 src = fetchurl { 1569 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.11.tgz"; 1570 - sha512 = "jfcNBxHFYJ4nPIacsi3woz1+kvUO6s1CyeEhtnDHBjHUMNj5UlW2GynmnSgiJJEdNg9yW5C8lfoNRZrHGv5EqA=="; 1452 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.10.tgz"; 1453 + sha512 = "z8PNtlhrj7eJNLmrAivM7rjBESG6JwC5xP3RVk12i/8HVP7Xnx/sEmERnRImyEuUaJfO942X0qMOYsoupaJbZQ=="; 1571 1454 }; 1572 1455 }; 1573 - "@types/yargs-15.0.12" = { 1456 + "@types/yargs-15.0.9" = { 1574 1457 name = "_at_types_slash_yargs"; 1575 1458 packageName = "@types/yargs"; 1576 - version = "15.0.12"; 1459 + version = "15.0.9"; 1577 1460 src = fetchurl { 1578 - url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.12.tgz"; 1579 - sha512 = "f+fD/fQAo3BCbCDlrUpznF1A5Zp9rB0noS5vnoormHSIPFKL0Z2DcUJ3Gxp5ytH4uLRNxy7AwYUC9exZzqGMAw=="; 1461 + url = "https://registry.npmjs.org/@types/yargs/-/yargs-15.0.9.tgz"; 1462 + sha512 = "HmU8SeIRhZCWcnRskCs36Q1Q00KBV6Cqh/ora8WN1+22dY07AZdn6Gel8QZ3t26XYPImtcL8WV/eqjhVmMEw4g=="; 1580 1463 }; 1581 1464 }; 1582 1465 "@types/yargs-parser-15.0.0" = { ··· 1588 1471 sha512 = "FA/BWv8t8ZWJ+gEOnLLd8ygxH/2UFbAvgEonyfN6yWGLKc7zVjbpl2Y4CTjid9h2RfgPP6SEt6uHwEOply00yw=="; 1589 1472 }; 1590 1473 }; 1591 - "@types/yargs-parser-20.2.0" = { 1592 - name = "_at_types_slash_yargs-parser"; 1593 - packageName = "@types/yargs-parser"; 1594 - version = "20.2.0"; 1595 - src = fetchurl { 1596 - url = "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-20.2.0.tgz"; 1597 - sha512 = "37RSHht+gzzgYeobbG+KWryeAW8J33Nhr69cjTqSYymXVZEN9NbRYWoYlRtDhHKPVT1FyNKwaTPC1NynKZpzRA=="; 1598 - }; 1599 - }; 1600 - "@typescript-eslint/eslint-plugin-4.11.0" = { 1474 + "@typescript-eslint/eslint-plugin-4.7.0" = { 1601 1475 name = "_at_typescript-eslint_slash_eslint-plugin"; 1602 1476 packageName = "@typescript-eslint/eslint-plugin"; 1603 - version = "4.11.0"; 1477 + version = "4.7.0"; 1604 1478 src = fetchurl { 1605 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.11.0.tgz"; 1606 - sha512 = "x4arJMXBxyD6aBXLm3W7mSDZRiABzy+2PCLJbL7OPqlp53VXhaA1HKK7R2rTee5OlRhnUgnp8lZyVIqjnyPT6g=="; 1479 + url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.7.0.tgz"; 1480 + sha512 = "li9aiSVBBd7kU5VlQlT1AqP0uWGDK6JYKUQ9cVDnOg34VNnd9t4jr0Yqc/bKxJr/tDCPDaB4KzoSFN9fgVxe/Q=="; 1607 1481 }; 1608 1482 }; 1609 - "@typescript-eslint/eslint-plugin-4.9.1" = { 1610 - name = "_at_typescript-eslint_slash_eslint-plugin"; 1611 - packageName = "@typescript-eslint/eslint-plugin"; 1612 - version = "4.9.1"; 1613 - src = fetchurl { 1614 - url = "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.9.1.tgz"; 1615 - sha512 = "QRLDSvIPeI1pz5tVuurD+cStNR4sle4avtHhxA+2uyixWGFjKzJ+EaFVRW6dA/jOgjV5DTAjOxboQkRDE8cRlQ=="; 1616 - }; 1617 - }; 1618 - "@typescript-eslint/experimental-utils-4.11.0" = { 1483 + "@typescript-eslint/experimental-utils-4.7.0" = { 1619 1484 name = "_at_typescript-eslint_slash_experimental-utils"; 1620 1485 packageName = "@typescript-eslint/experimental-utils"; 1621 - version = "4.11.0"; 1486 + version = "4.7.0"; 1622 1487 src = fetchurl { 1623 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.11.0.tgz"; 1624 - sha512 = "1VC6mSbYwl1FguKt8OgPs8xxaJgtqFpjY/UzUYDBKq4pfQ5lBvN2WVeqYkzf7evW42axUHYl2jm9tNyFsb8oLg=="; 1488 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.7.0.tgz"; 1489 + sha512 = "cymzovXAiD4EF+YoHAB5Oh02MpnXjvyaOb+v+BdpY7lsJXZQN34oIETeUwVT2XfV9rSNpXaIcknDLfupO/tUoA=="; 1625 1490 }; 1626 1491 }; 1627 - "@typescript-eslint/experimental-utils-4.9.1" = { 1492 + "@typescript-eslint/experimental-utils-4.8.2" = { 1628 1493 name = "_at_typescript-eslint_slash_experimental-utils"; 1629 1494 packageName = "@typescript-eslint/experimental-utils"; 1630 - version = "4.9.1"; 1495 + version = "4.8.2"; 1631 1496 src = fetchurl { 1632 - url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.9.1.tgz"; 1633 - sha512 = "c3k/xJqk0exLFs+cWSJxIjqLYwdHCuLWhnpnikmPQD2+NGAx9KjLYlBDcSI81EArh9FDYSL6dslAUSwILeWOxg=="; 1497 + url = "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-4.8.2.tgz"; 1498 + sha512 = "hpTw6o6IhBZEsQsjuw/4RWmceRyESfAiEzAEnXHKG1X7S5DXFaZ4IO1JO7CW1aQ604leQBzjZmuMI9QBCAJX8Q=="; 1634 1499 }; 1635 1500 }; 1636 - "@typescript-eslint/parser-4.11.0" = { 1501 + "@typescript-eslint/parser-4.7.0" = { 1637 1502 name = "_at_typescript-eslint_slash_parser"; 1638 1503 packageName = "@typescript-eslint/parser"; 1639 - version = "4.11.0"; 1504 + version = "4.7.0"; 1640 1505 src = fetchurl { 1641 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.11.0.tgz"; 1642 - sha512 = "NBTtKCC7ZtuxEV5CrHUO4Pg2s784pvavc3cnz6V+oJvVbK4tH9135f/RBP6eUA2KHiFKAollSrgSctQGmHbqJQ=="; 1506 + url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.7.0.tgz"; 1507 + sha512 = "+meGV8bMP1sJHBI2AFq1GeTwofcGiur8LoIr6v+rEmD9knyCqDlrQcFHR0KDDfldHIFDU/enZ53fla6ReF4wRw=="; 1643 1508 }; 1644 1509 }; 1645 - "@typescript-eslint/parser-4.9.1" = { 1646 - name = "_at_typescript-eslint_slash_parser"; 1647 - packageName = "@typescript-eslint/parser"; 1648 - version = "4.9.1"; 1649 - src = fetchurl { 1650 - url = "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-4.9.1.tgz"; 1651 - sha512 = "Gv2VpqiomvQ2v4UL+dXlQcZ8zCX4eTkoIW+1aGVWT6yTO+6jbxsw7yQl2z2pPl/4B9qa5JXeIbhJpONKjXIy3g=="; 1652 - }; 1653 - }; 1654 - "@typescript-eslint/scope-manager-4.11.0" = { 1510 + "@typescript-eslint/scope-manager-4.7.0" = { 1655 1511 name = "_at_typescript-eslint_slash_scope-manager"; 1656 1512 packageName = "@typescript-eslint/scope-manager"; 1657 - version = "4.11.0"; 1513 + version = "4.7.0"; 1658 1514 src = fetchurl { 1659 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.11.0.tgz"; 1660 - sha512 = "6VSTm/4vC2dHM3ySDW9Kl48en+yLNfVV6LECU8jodBHQOhO8adAVizaZ1fV0QGZnLQjQ/y0aBj5/KXPp2hBTjA=="; 1515 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.7.0.tgz"; 1516 + sha512 = "ILITvqwDJYbcDCROj6+Ob0oCKNg3SH46iWcNcTIT9B5aiVssoTYkhKjxOMNzR1F7WSJkik4zmuqve5MdnA0DyA=="; 1661 1517 }; 1662 1518 }; 1663 - "@typescript-eslint/scope-manager-4.9.1" = { 1519 + "@typescript-eslint/scope-manager-4.8.2" = { 1664 1520 name = "_at_typescript-eslint_slash_scope-manager"; 1665 1521 packageName = "@typescript-eslint/scope-manager"; 1666 - version = "4.9.1"; 1522 + version = "4.8.2"; 1667 1523 src = fetchurl { 1668 - url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.9.1.tgz"; 1669 - sha512 = "sa4L9yUfD/1sg9Kl8OxPxvpUcqxKXRjBeZxBuZSSV1v13hjfEJkn84n0An2hN8oLQ1PmEl2uA6FkI07idXeFgQ=="; 1524 + url = "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-4.8.2.tgz"; 1525 + sha512 = "qHQ8ODi7mMin4Sq2eh/6eu03uVzsf5TX+J43xRmiq8ujng7ViQSHNPLOHGw/Wr5dFEoxq/ubKhzClIIdQy5q3g=="; 1670 1526 }; 1671 1527 }; 1672 - "@typescript-eslint/types-4.11.0" = { 1528 + "@typescript-eslint/types-4.7.0" = { 1673 1529 name = "_at_typescript-eslint_slash_types"; 1674 1530 packageName = "@typescript-eslint/types"; 1675 - version = "4.11.0"; 1531 + version = "4.7.0"; 1676 1532 src = fetchurl { 1677 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.11.0.tgz"; 1678 - sha512 = "XXOdt/NPX++txOQHM1kUMgJUS43KSlXGdR/aDyEwuAEETwuPt02Nc7v+s57PzuSqMbNLclblQdv3YcWOdXhQ7g=="; 1533 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.7.0.tgz"; 1534 + sha512 = "uLszFe0wExJc+I7q0Z/+BnP7wao/kzX0hB5vJn4LIgrfrMLgnB2UXoReV19lkJQS1a1mHWGGODSxnBx6JQC3Sg=="; 1679 1535 }; 1680 1536 }; 1681 - "@typescript-eslint/types-4.9.1" = { 1537 + "@typescript-eslint/types-4.8.2" = { 1682 1538 name = "_at_typescript-eslint_slash_types"; 1683 1539 packageName = "@typescript-eslint/types"; 1684 - version = "4.9.1"; 1540 + version = "4.8.2"; 1685 1541 src = fetchurl { 1686 - url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.9.1.tgz"; 1687 - sha512 = "fjkT+tXR13ks6Le7JiEdagnwEFc49IkOyys7ueWQ4O8k4quKPwPJudrwlVOJCUQhXo45PrfIvIarcrEjFTNwUA=="; 1542 + url = "https://registry.npmjs.org/@typescript-eslint/types/-/types-4.8.2.tgz"; 1543 + sha512 = "z1/AVcVF8ju5ObaHe2fOpZYEQrwHyZ7PTOlmjd3EoFeX9sv7UekQhfrCmgUO7PruLNfSHrJGQvrW3Q7xQ8EoAw=="; 1688 1544 }; 1689 1545 }; 1690 - "@typescript-eslint/typescript-estree-4.11.0" = { 1546 + "@typescript-eslint/typescript-estree-4.7.0" = { 1691 1547 name = "_at_typescript-eslint_slash_typescript-estree"; 1692 1548 packageName = "@typescript-eslint/typescript-estree"; 1693 - version = "4.11.0"; 1549 + version = "4.7.0"; 1694 1550 src = fetchurl { 1695 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.11.0.tgz"; 1696 - sha512 = "eA6sT5dE5RHAFhtcC+b5WDlUIGwnO9b0yrfGa1mIOIAjqwSQCpXbLiFmKTdRbQN/xH2EZkGqqLDrKUuYOZ0+Hg=="; 1551 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.7.0.tgz"; 1552 + sha512 = "5XZRQznD1MfUmxu1t8/j2Af4OxbA7EFU2rbo0No7meb46eHgGkSieFdfV6omiC/DGIBhH9H9gXn7okBbVOm8jw=="; 1697 1553 }; 1698 1554 }; 1699 - "@typescript-eslint/typescript-estree-4.9.1" = { 1555 + "@typescript-eslint/typescript-estree-4.8.2" = { 1700 1556 name = "_at_typescript-eslint_slash_typescript-estree"; 1701 1557 packageName = "@typescript-eslint/typescript-estree"; 1702 - version = "4.9.1"; 1558 + version = "4.8.2"; 1703 1559 src = fetchurl { 1704 - url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.9.1.tgz"; 1705 - sha512 = "bzP8vqwX6Vgmvs81bPtCkLtM/Skh36NE6unu6tsDeU/ZFoYthlTXbBmpIrvosgiDKlWTfb2ZpPELHH89aQjeQw=="; 1560 + url = "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-4.8.2.tgz"; 1561 + sha512 = "HToGNwI6fekH0dOw3XEVESUm71Onfam0AKin6f26S2FtUmO7o3cLlWgrIaT1q3vjB3wCTdww3Dx2iGq5wtUOCg=="; 1706 1562 }; 1707 1563 }; 1708 - "@typescript-eslint/visitor-keys-4.11.0" = { 1564 + "@typescript-eslint/visitor-keys-4.7.0" = { 1709 1565 name = "_at_typescript-eslint_slash_visitor-keys"; 1710 1566 packageName = "@typescript-eslint/visitor-keys"; 1711 - version = "4.11.0"; 1567 + version = "4.7.0"; 1712 1568 src = fetchurl { 1713 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.11.0.tgz"; 1714 - sha512 = "tRYKyY0i7cMk6v4UIOCjl1LhuepC/pc6adQqJk4Is3YcC6k46HvsV9Wl7vQoLbm9qADgeujiT7KdLrylvFIQ+A=="; 1569 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.7.0.tgz"; 1570 + sha512 = "aDJDWuCRsf1lXOtignlfiPODkzSxxop7D0rZ91L6ZuMlcMCSh0YyK+gAfo5zN/ih6WxMwhoXgJWC3cWQdaKC+A=="; 1715 1571 }; 1716 1572 }; 1717 - "@typescript-eslint/visitor-keys-4.9.1" = { 1573 + "@typescript-eslint/visitor-keys-4.8.2" = { 1718 1574 name = "_at_typescript-eslint_slash_visitor-keys"; 1719 1575 packageName = "@typescript-eslint/visitor-keys"; 1720 - version = "4.9.1"; 1576 + version = "4.8.2"; 1721 1577 src = fetchurl { 1722 - url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.9.1.tgz"; 1723 - sha512 = "9gspzc6UqLQHd7lXQS7oWs+hrYggspv/rk6zzEMhCbYwPE/sF7oxo7GAjkS35Tdlt7wguIG+ViWCPtVZHz/ybQ=="; 1578 + url = "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-4.8.2.tgz"; 1579 + sha512 = "Vg+/SJTMZJEKKGHW7YC21QxgKJrSbxoYYd3MEUGtW7zuytHuEcksewq0DUmo4eh/CTNrVJGSdIY9AtRb6riWFw=="; 1724 1580 }; 1725 1581 }; 1726 1582 "abab-2.0.5" = { ··· 1973 1829 src = fetchurl { 1974 1830 url = "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"; 1975 1831 sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="; 1976 - }; 1977 - }; 1978 - "astral-regex-2.0.0" = { 1979 - name = "astral-regex"; 1980 - packageName = "astral-regex"; 1981 - version = "2.0.0"; 1982 - src = fetchurl { 1983 - url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 1984 - sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 1985 1832 }; 1986 1833 }; 1987 1834 "async-3.2.0" = { ··· 2047 1894 sha512 = "xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA=="; 2048 1895 }; 2049 1896 }; 2050 - "axios-0.21.1" = { 1897 + "axios-0.21.0" = { 2051 1898 name = "axios"; 2052 1899 packageName = "axios"; 2053 - version = "0.21.1"; 1900 + version = "0.21.0"; 2054 1901 src = fetchurl { 2055 - url = "https://registry.npmjs.org/axios/-/axios-0.21.1.tgz"; 2056 - sha512 = "dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA=="; 1902 + url = "https://registry.npmjs.org/axios/-/axios-0.21.0.tgz"; 1903 + sha512 = "fmkJBknJKoZwem3/IKSSLpkdNXZeBu5Q7GA/aRsr2btgrptmSCxi2oFjZHqGdK9DoTil9PIHlPIZw2EcRJXRvw=="; 2057 1904 }; 2058 1905 }; 2059 1906 "babel-jest-26.6.3" = { ··· 2099 1946 src = fetchurl { 2100 1947 url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.0.tgz"; 2101 1948 sha512 = "mGkvkpocWJes1CmMKtgGUwCeeq0pOhALyymozzDWYomHTbDLwueDYG6p4TK1YOeYHCzBzYPsWkgTto10JubI1Q=="; 2102 - }; 2103 - }; 2104 - "babel-preset-current-node-syntax-1.0.1" = { 2105 - name = "babel-preset-current-node-syntax"; 2106 - packageName = "babel-preset-current-node-syntax"; 2107 - version = "1.0.1"; 2108 - src = fetchurl { 2109 - url = "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz"; 2110 - sha512 = "M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ=="; 2111 1949 }; 2112 1950 }; 2113 1951 "babel-preset-jest-26.6.2" = { ··· 2227 2065 sha512 = "9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow=="; 2228 2066 }; 2229 2067 }; 2230 - "browserslist-4.15.0" = { 2068 + "browserslist-4.14.7" = { 2231 2069 name = "browserslist"; 2232 2070 packageName = "browserslist"; 2233 - version = "4.15.0"; 2071 + version = "4.14.7"; 2234 2072 src = fetchurl { 2235 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.15.0.tgz"; 2236 - sha512 = "IJ1iysdMkGmjjYeRlDU8PQejVwxvVO5QOfXH7ylW31GO6LwNRSmm/SgRXtNsEXqMLl2e+2H5eEJ7sfynF8TCaQ=="; 2237 - }; 2238 - }; 2239 - "browserslist-4.16.0" = { 2240 - name = "browserslist"; 2241 - packageName = "browserslist"; 2242 - version = "4.16.0"; 2243 - src = fetchurl { 2244 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.0.tgz"; 2245 - sha512 = "/j6k8R0p3nxOC6kx5JGAxsnhc9ixaWJfYc+TNTzxg6+ARaESAvQGV7h0uNOB4t+pLQJZWzcrMxXOxjgsCj3dqQ=="; 2073 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.14.7.tgz"; 2074 + sha512 = "BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ=="; 2246 2075 }; 2247 2076 }; 2248 2077 "bser-2.1.1" = { ··· 2335 2164 sha512 = "c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg=="; 2336 2165 }; 2337 2166 }; 2338 - "caniuse-lite-1.0.30001165" = { 2167 + "caniuse-lite-1.0.30001157" = { 2339 2168 name = "caniuse-lite"; 2340 2169 packageName = "caniuse-lite"; 2341 - version = "1.0.30001165"; 2170 + version = "1.0.30001157"; 2342 2171 src = fetchurl { 2343 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001165.tgz"; 2344 - sha512 = "8cEsSMwXfx7lWSUMA2s08z9dIgsnR5NAqjXP23stdsU3AUWkCr/rr4s4OFtHXn5XXr6+7kam3QFVoYyXNPdJPA=="; 2345 - }; 2346 - }; 2347 - "caniuse-lite-1.0.30001170" = { 2348 - name = "caniuse-lite"; 2349 - packageName = "caniuse-lite"; 2350 - version = "1.0.30001170"; 2351 - src = fetchurl { 2352 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001170.tgz"; 2353 - sha512 = "Dd4d/+0tsK0UNLrZs3CvNukqalnVTRrxb5mcQm8rHL49t7V5ZaTygwXkrq+FB+dVDf++4ri8eJnFEJAB8332PA=="; 2172 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001157.tgz"; 2173 + sha512 = "gOerH9Wz2IRZ2ZPdMfBvyOi3cjaz4O4dgNwPGzx8EhqAs4+2IL/O+fJsbt+znSigujoZG8bVcIAUM/I/E5K3MA=="; 2354 2174 }; 2355 2175 }; 2356 2176 "capture-exit-2.0.0" = { ··· 2396 2216 src = fetchurl { 2397 2217 url = "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz"; 2398 2218 sha512 = "kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw=="; 2219 + }; 2220 + }; 2221 + "chokidar-2.1.8" = { 2222 + name = "chokidar"; 2223 + packageName = "chokidar"; 2224 + version = "2.1.8"; 2225 + src = fetchurl { 2226 + url = "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz"; 2227 + sha512 = "ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg=="; 2399 2228 }; 2400 2229 }; 2401 2230 "chokidar-3.4.3" = { ··· 2650 2479 sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 2651 2480 }; 2652 2481 }; 2653 - "core-js-compat-3.8.1" = { 2482 + "core-js-compat-3.7.0" = { 2654 2483 name = "core-js-compat"; 2655 2484 packageName = "core-js-compat"; 2656 - version = "3.8.1"; 2485 + version = "3.7.0"; 2657 2486 src = fetchurl { 2658 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.1.tgz"; 2659 - sha512 = "a16TLmy9NVD1rkjUGbwuyWkiDoN0FDpAwrfLONvHFQx0D9k7J9y0srwMT8QP/Z6HE3MIFaVynEeYwZwPX1o5RQ=="; 2487 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.7.0.tgz"; 2488 + sha512 = "V8yBI3+ZLDVomoWICO6kq/CD28Y4r1M7CWeO4AGpMdMfseu8bkSubBmUPySMGKRTS+su4XQ07zUkAsiu9FCWTg=="; 2660 2489 }; 2661 2490 }; 2662 2491 "core-util-is-1.0.2" = { ··· 2756 2585 src = fetchurl { 2757 2586 url = "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"; 2758 2587 sha512 = "bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="; 2588 + }; 2589 + }; 2590 + "debug-4.2.0" = { 2591 + name = "debug"; 2592 + packageName = "debug"; 2593 + version = "4.2.0"; 2594 + src = fetchurl { 2595 + url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz"; 2596 + sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg=="; 2759 2597 }; 2760 2598 }; 2761 2599 "debug-4.3.1" = { ··· 2983 2821 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 2984 2822 }; 2985 2823 }; 2986 - "electron-to-chromium-1.3.620" = { 2824 + "electron-to-chromium-1.3.596" = { 2987 2825 name = "electron-to-chromium"; 2988 2826 packageName = "electron-to-chromium"; 2989 - version = "1.3.620"; 2827 + version = "1.3.596"; 2990 2828 src = fetchurl { 2991 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.620.tgz"; 2992 - sha512 = "YbgWXUR2Mu+Fp6rm3GZ5YJdNo8SgZKLUTNSl2PNvdOcM8OIz07jRJnRkIaV9vdszFv9UUuGChh19w9qSuoLJgw=="; 2993 - }; 2994 - }; 2995 - "electron-to-chromium-1.3.633" = { 2996 - name = "electron-to-chromium"; 2997 - packageName = "electron-to-chromium"; 2998 - version = "1.3.633"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.633.tgz"; 3001 - sha512 = "bsVCsONiVX1abkWdH7KtpuDAhsQ3N3bjPYhROSAXE78roJKet0Y5wznA14JE9pzbwSZmSMAW6KiKYf1RvbTJkA=="; 2829 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.596.tgz"; 2830 + sha512 = "nLO2Wd2yU42eSoNJVQKNf89CcEGqeFZd++QsnN2XIgje1s/19AgctfjLIbPORlvcCO8sYjLwX4iUgDdusOY8Sg=="; 3002 2831 }; 3003 2832 }; 3004 2833 "emittery-0.7.2" = { ··· 3172 3001 sha512 = "qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw=="; 3173 3002 }; 3174 3003 }; 3175 - "eslint-7.15.0" = { 3004 + "eslint-7.13.0" = { 3176 3005 name = "eslint"; 3177 3006 packageName = "eslint"; 3178 - version = "7.15.0"; 3007 + version = "7.13.0"; 3179 3008 src = fetchurl { 3180 - url = "https://registry.npmjs.org/eslint/-/eslint-7.15.0.tgz"; 3181 - sha512 = "Vr64xFDT8w30wFll643e7cGrIkPEU50yIiI36OdSIDoSGguIeaLzBo0vpGvzo9RECUqq7htURfwEtKqwytkqzA=="; 3009 + url = "https://registry.npmjs.org/eslint/-/eslint-7.13.0.tgz"; 3010 + sha512 = "uCORMuOO8tUzJmsdRtrvcGq5qposf7Rw0LwkTJkoDbOycVQtQjmnhZSuLQnozLE4TmAzlMVV45eCHmQ1OpDKUQ=="; 3182 3011 }; 3183 3012 }; 3184 - "eslint-7.16.0" = { 3013 + "eslint-7.14.0" = { 3185 3014 name = "eslint"; 3186 3015 packageName = "eslint"; 3187 - version = "7.16.0"; 3016 + version = "7.14.0"; 3188 3017 src = fetchurl { 3189 - url = "https://registry.npmjs.org/eslint/-/eslint-7.16.0.tgz"; 3190 - sha512 = "iVWPS785RuDA4dWuhhgXTNrGxHHK3a8HLSMBgbbU59ruJDubUraXN8N5rn7kb8tG6sjg74eE0RA3YWT51eusEw=="; 3018 + url = "https://registry.npmjs.org/eslint/-/eslint-7.14.0.tgz"; 3019 + sha512 = "5YubdnPXrlrYAFCKybPuHIAH++PINe1pmKNc5wQRB9HSbqIK1ywAnntE3Wwua4giKu0bjligf1gLF6qxMGOYRA=="; 3191 3020 }; 3192 3021 }; 3193 3022 "eslint-config-google-0.14.0" = { ··· 3244 3073 sha512 = "QudtT6av5WXels9WjIM7qz1XD1cWGvX4gGXvp/zBn9nXG02D0utdU3Em2m/QjTnrsk6bBjmCygl3rmj118msQQ=="; 3245 3074 }; 3246 3075 }; 3247 - "espree-7.3.1" = { 3076 + "espree-7.3.0" = { 3248 3077 name = "espree"; 3249 3078 packageName = "espree"; 3250 - version = "7.3.1"; 3079 + version = "7.3.0"; 3251 3080 src = fetchurl { 3252 - url = "https://registry.npmjs.org/espree/-/espree-7.3.1.tgz"; 3253 - sha512 = "v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g=="; 3081 + url = "https://registry.npmjs.org/espree/-/espree-7.3.0.tgz"; 3082 + sha512 = "dksIWsvKCixn1yrEXO8UosNSxaDoSYpq9reEjZSbHLpT5hpaCAKTLBwq0RHtLrIr+c0ByiYzWT8KTMRzoRCNlw=="; 3254 3083 }; 3255 3084 }; 3256 3085 "esprima-4.0.1" = { ··· 3487 3316 sha512 = "Utm6CdzT+6xsDk2m8S6uL8VHxNwI6Jub+e9NYTcAms28T84pTa25GJQV9j0CY0N1rM8hK4x6grpF2BQf+2qwVA=="; 3488 3317 }; 3489 3318 }; 3490 - "fastq-1.10.0" = { 3491 - name = "fastq"; 3492 - packageName = "fastq"; 3493 - version = "1.10.0"; 3494 - src = fetchurl { 3495 - url = "https://registry.npmjs.org/fastq/-/fastq-1.10.0.tgz"; 3496 - sha512 = "NL2Qc5L3iQEsyYzweq7qfgy5OtXCmGzGvhElGEd/SoFWEMOEczNh5s5ocaF01HDetxz+p8ecjNPA6cZxxIHmzA=="; 3497 - }; 3498 - }; 3499 3319 "fastq-1.9.0" = { 3500 3320 name = "fastq"; 3501 3321 packageName = "fastq"; ··· 3523 3343 sha512 = "aN3pcx/DSmtyoovUudctc8+6Hl4T+hI9GBBHLjA76jdZl7+b1sgh5g4k+u/GL3dTy1/pnYzKp69FpJ0OicE3Wg=="; 3524 3344 }; 3525 3345 }; 3526 - "file-entry-cache-6.0.0" = { 3346 + "file-entry-cache-5.0.1" = { 3527 3347 name = "file-entry-cache"; 3528 3348 packageName = "file-entry-cache"; 3529 - version = "6.0.0"; 3349 + version = "5.0.1"; 3530 3350 src = fetchurl { 3531 - url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.0.tgz"; 3532 - sha512 = "fqoO76jZ3ZnYrXLDRxBR1YvOvc0k844kcOg40bgsPrE25LAb/PDqTY+ho64Xh2c8ZXgIKldchCFHczG2UVRcWA=="; 3351 + url = "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-5.0.1.tgz"; 3352 + sha512 = "bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g=="; 3533 3353 }; 3534 3354 }; 3535 3355 "file-uri-to-path-1.0.0" = { ··· 3577 3397 sha512 = "PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw=="; 3578 3398 }; 3579 3399 }; 3580 - "flat-cache-3.0.4" = { 3400 + "flat-cache-2.0.1" = { 3581 3401 name = "flat-cache"; 3582 3402 packageName = "flat-cache"; 3583 - version = "3.0.4"; 3403 + version = "2.0.1"; 3584 3404 src = fetchurl { 3585 - url = "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz"; 3586 - sha512 = "dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg=="; 3405 + url = "https://registry.npmjs.org/flat-cache/-/flat-cache-2.0.1.tgz"; 3406 + sha512 = "LoQe6yDuUMDzQAEH8sgmh4Md6oZnc/7PjtwjNFSzveXqSHt6ka9fPBuso7IGf9Rz4uqnSnWiFH2B/zj24a5ReA=="; 3587 3407 }; 3588 3408 }; 3589 - "flatted-3.1.0" = { 3409 + "flatted-2.0.2" = { 3590 3410 name = "flatted"; 3591 3411 packageName = "flatted"; 3592 - version = "3.1.0"; 3412 + version = "2.0.2"; 3593 3413 src = fetchurl { 3594 - url = "https://registry.npmjs.org/flatted/-/flatted-3.1.0.tgz"; 3595 - sha512 = "tW+UkmtNg/jv9CSofAKvgVcO7c2URjhTdW1ZTkcAritblu8tajiYy7YisnIflEwtKssCtOxpnBRoCB7iap0/TA=="; 3414 + url = "https://registry.npmjs.org/flatted/-/flatted-2.0.2.tgz"; 3415 + sha512 = "r5wGx7YeOwNWNlCA0wQ86zKyDLMQr+/RB8xy74M4hTphfmjlijTSSXGuH8rnvKZnfT9i+75zmd8jcKdMR4O6jA=="; 3596 3416 }; 3597 3417 }; 3598 3418 "fn.name-1.1.0" = { ··· 3604 3424 sha512 = "GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw=="; 3605 3425 }; 3606 3426 }; 3607 - "follow-redirects-1.13.1" = { 3427 + "follow-redirects-1.13.0" = { 3608 3428 name = "follow-redirects"; 3609 3429 packageName = "follow-redirects"; 3610 - version = "1.13.1"; 3430 + version = "1.13.0"; 3611 3431 src = fetchurl { 3612 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.1.tgz"; 3613 - sha512 = "SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg=="; 3432 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz"; 3433 + sha512 = "aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA=="; 3614 3434 }; 3615 3435 }; 3616 3436 "for-in-1.0.2" = { ··· 3694 3514 sha1 = "1504ad2523158caa40db4a2787cb01411994ea4f"; 3695 3515 }; 3696 3516 }; 3517 + "fsevents-1.2.13" = { 3518 + name = "fsevents"; 3519 + packageName = "fsevents"; 3520 + version = "1.2.13"; 3521 + src = fetchurl { 3522 + url = "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz"; 3523 + sha512 = "oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw=="; 3524 + }; 3525 + }; 3697 3526 "fsevents-2.1.3" = { 3698 3527 name = "fsevents"; 3699 3528 packageName = "fsevents"; ··· 3764 3593 src = fetchurl { 3765 3594 url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz"; 3766 3595 sha512 = "ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg=="; 3767 - }; 3768 - }; 3769 - "get-intrinsic-1.0.2" = { 3770 - name = "get-intrinsic"; 3771 - packageName = "get-intrinsic"; 3772 - version = "1.0.2"; 3773 - src = fetchurl { 3774 - url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.2.tgz"; 3775 - sha512 = "aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg=="; 3776 3596 }; 3777 3597 }; 3778 3598 "get-package-type-0.1.0" = { ··· 4045 3865 sha1 = "8f2d508d0600b4a456da2f086556e7e5c056a3c6"; 4046 3866 }; 4047 3867 }; 3868 + "highlight.js-10.3.2" = { 3869 + name = "highlight.js"; 3870 + packageName = "highlight.js"; 3871 + version = "10.3.2"; 3872 + src = fetchurl { 3873 + url = "https://registry.npmjs.org/highlight.js/-/highlight.js-10.3.2.tgz"; 3874 + sha512 = "3jRT7OUYsVsKvukNKZCtnvRcFyCJqSEIuIMsEybAXRiFSwpt65qjPd/Pr+UOdYt7WJlt+lj3+ypUsHiySBp/Jw=="; 3875 + }; 3876 + }; 4048 3877 "hosted-git-info-2.8.8" = { 4049 3878 name = "hosted-git-info"; 4050 3879 packageName = "hosted-git-info"; ··· 4108 3937 sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw=="; 4109 3938 }; 4110 3939 }; 4111 - "humanize-duration-3.25.0" = { 3940 + "humanize-duration-3.24.0" = { 4112 3941 name = "humanize-duration"; 4113 3942 packageName = "humanize-duration"; 4114 - version = "3.25.0"; 3943 + version = "3.24.0"; 4115 3944 src = fetchurl { 4116 - url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.25.0.tgz"; 4117 - sha512 = "QXth17C/8J2QVO0urby5sANmgvwdOF4YZW3mO13ZTkJli4ltVphzMJVG+HkVuTN/bIq1W/O0jRYSyQACus/GVQ=="; 3945 + url = "https://registry.npmjs.org/humanize-duration/-/humanize-duration-3.24.0.tgz"; 3946 + sha512 = "B3udnqisaDeRsvUSb+5n2hjxhABI9jotB+i1IEhgHhguTeM5LxIUKoVIu7UpeyaPOygr/Fnv7UhOi45kYYG+tg=="; 4118 3947 }; 4119 3948 }; 4120 3949 "iconv-lite-0.4.24" = { ··· 4162 3991 sha512 = "cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw=="; 4163 3992 }; 4164 3993 }; 4165 - "import-fresh-3.3.0" = { 4166 - name = "import-fresh"; 4167 - packageName = "import-fresh"; 4168 - version = "3.3.0"; 4169 - src = fetchurl { 4170 - url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz"; 4171 - sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw=="; 4172 - }; 4173 - }; 4174 3994 "import-local-3.0.2" = { 4175 3995 name = "import-local"; 4176 3996 packageName = "import-local"; ··· 4207 4027 sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="; 4208 4028 }; 4209 4029 }; 4210 - "ini-1.3.6" = { 4211 - name = "ini"; 4212 - packageName = "ini"; 4213 - version = "1.3.6"; 4214 - src = fetchurl { 4215 - url = "https://registry.npmjs.org/ini/-/ini-1.3.6.tgz"; 4216 - sha512 = "IZUoxEjNjubzrmvzZU4lKP7OnYmX72XRl3sqkfJhBKweKi5rnGi5+IUdlj/H1M+Ip5JQ1WzaDMOBRY90Ajc5jg=="; 4217 - }; 4218 - }; 4219 - "ini-1.3.8" = { 4030 + "ini-1.3.5" = { 4220 4031 name = "ini"; 4221 4032 packageName = "ini"; 4222 - version = "1.3.8"; 4033 + version = "1.3.5"; 4223 4034 src = fetchurl { 4224 - url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz"; 4225 - sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew=="; 4035 + url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz"; 4036 + sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw=="; 4226 4037 }; 4227 4038 }; 4228 4039 "interpret-1.4.0" = { ··· 4322 4133 src = fetchurl { 4323 4134 url = "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz"; 4324 4135 sha512 = "YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w=="; 4136 + }; 4137 + }; 4138 + "is-core-module-2.1.0" = { 4139 + name = "is-core-module"; 4140 + packageName = "is-core-module"; 4141 + version = "2.1.0"; 4142 + src = fetchurl { 4143 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.1.0.tgz"; 4144 + sha512 = "YcV7BgVMRFRua2FqQzKtTDMz8iCuLEyGKjr70q8Zm1yy2qKcurbFEd79PAdHV77oL3NrAaOVQIbMmiHQCHB7ZA=="; 4325 4145 }; 4326 4146 }; 4327 4147 "is-core-module-2.2.0" = { ··· 4918 4738 sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ=="; 4919 4739 }; 4920 4740 }; 4921 - "js-yaml-3.14.1" = { 4741 + "js-yaml-3.14.0" = { 4922 4742 name = "js-yaml"; 4923 4743 packageName = "js-yaml"; 4924 - version = "3.14.1"; 4744 + version = "3.14.0"; 4925 4745 src = fetchurl { 4926 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz"; 4927 - sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g=="; 4746 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz"; 4747 + sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A=="; 4928 4748 }; 4929 4749 }; 4930 4750 "jsbn-0.1.1" = { ··· 5170 4990 sha512 = "N0qPlqfypFx7UHNn4B3lzS/b0uLqt2hmuoa+PpuXNYgozdJYAyauF5Ky0BWVjrxDlMWiT3qN4zPq3vVAfZy7Yg=="; 5171 4991 }; 5172 4992 }; 5173 - "lru-cache-5.1.1" = { 5174 - name = "lru-cache"; 5175 - packageName = "lru-cache"; 5176 - version = "5.1.1"; 5177 - src = fetchurl { 5178 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz"; 5179 - sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w=="; 5180 - }; 5181 - }; 5182 - "lru-cache-6.0.0" = { 5183 - name = "lru-cache"; 5184 - packageName = "lru-cache"; 5185 - version = "6.0.0"; 5186 - src = fetchurl { 5187 - url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz"; 5188 - sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA=="; 5189 - }; 5190 - }; 5191 4993 "lunr-2.3.9" = { 5192 4994 name = "lunr"; 5193 4995 packageName = "lunr"; ··· 5242 5044 sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"; 5243 5045 }; 5244 5046 }; 5245 - "marked-1.2.5" = { 5047 + "marked-1.2.3" = { 5246 5048 name = "marked"; 5247 5049 packageName = "marked"; 5248 - version = "1.2.5"; 5050 + version = "1.2.3"; 5249 5051 src = fetchurl { 5250 - url = "https://registry.npmjs.org/marked/-/marked-1.2.5.tgz"; 5251 - sha512 = "2AlqgYnVPOc9WDyWu7S5DJaEZsfk6dNh/neatQ3IHUW4QLutM/VPSH9lG7bif+XjFWc9K9XR3QvR+fXuECmfdA=="; 5252 - }; 5253 - }; 5254 - "marked-1.2.7" = { 5255 - name = "marked"; 5256 - packageName = "marked"; 5257 - version = "1.2.7"; 5258 - src = fetchurl { 5259 - url = "https://registry.npmjs.org/marked/-/marked-1.2.7.tgz"; 5260 - sha512 = "No11hFYcXr/zkBvL6qFmAp1z6BKY3zqLMHny/JN/ey+al7qwCM2+CMBL9BOgqMxZU36fz4cCWfn2poWIf7QRXA=="; 5052 + url = "https://registry.npmjs.org/marked/-/marked-1.2.3.tgz"; 5053 + sha512 = "RQuL2i6I6Gn+9n81IDNGbL0VHnta4a+8ZhqvryXEniTb/hQNtf3i26hi1XWUhzb9BgVyWHKR3UO8MaHtKoYibw=="; 5261 5054 }; 5262 5055 }; 5263 5056 "merge-stream-2.0.0" = { ··· 5386 5179 sha512 = "gbTtiEu8P/GSMh1lAa0YYNr8XIfDzFgnWtetw3Hfz9nw6YXySHNYOZF/uUTgyp8GHvFnNw/EG7VhOkD6zfVb6A=="; 5387 5180 }; 5388 5181 }; 5182 + "mkdirp-0.5.5" = { 5183 + name = "mkdirp"; 5184 + packageName = "mkdirp"; 5185 + version = "0.5.5"; 5186 + src = fetchurl { 5187 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 5188 + sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 5189 + }; 5190 + }; 5389 5191 "mkdirp-classic-0.5.3" = { 5390 5192 name = "mkdirp-classic"; 5391 5193 packageName = "mkdirp-classic"; ··· 5413 5215 sha512 = "Iv893r+jWlo5GkNcPOfCGwW8M49IixwHiKLFFYTociEymSibUVCORVEjPXWPGzSxhn7BdlUeHicbRmWiv0Crkg=="; 5414 5216 }; 5415 5217 }; 5416 - "mqtt-packet-6.7.0" = { 5218 + "mqtt-packet-6.6.0" = { 5417 5219 name = "mqtt-packet"; 5418 5220 packageName = "mqtt-packet"; 5419 - version = "6.7.0"; 5221 + version = "6.6.0"; 5420 5222 src = fetchurl { 5421 - url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.7.0.tgz"; 5422 - sha512 = "GzgeeCirQpB59FyhHvf8BLiIYgxctPSxuSyaF2vWnkt7paX7jtuQ8Gpl+DkHCxZmYuv7GQE6zcUAegpafd0MqQ=="; 5223 + url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-6.6.0.tgz"; 5224 + sha512 = "LvghnKMFC70hKWMVykmhJarlO5e7lT3t9s9A2qPCUx+lazL3Mq55U+eCV0eLi7/nRRQYvEUWo/2tTo89EjnCJQ=="; 5423 5225 }; 5424 5226 }; 5425 5227 "ms-2.0.0" = { ··· 5449 5251 sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w=="; 5450 5252 }; 5451 5253 }; 5452 - "ms-2.1.3" = { 5453 - name = "ms"; 5454 - packageName = "ms"; 5455 - version = "2.1.3"; 5456 - src = fetchurl { 5457 - url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"; 5458 - sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="; 5459 - }; 5460 - }; 5461 5254 "nan-2.14.2" = { 5462 5255 name = "nan"; 5463 5256 packageName = "nan"; ··· 5521 5314 sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ=="; 5522 5315 }; 5523 5316 }; 5524 - "node-abi-2.19.3" = { 5317 + "node-abi-2.19.1" = { 5525 5318 name = "node-abi"; 5526 5319 packageName = "node-abi"; 5527 - version = "2.19.3"; 5320 + version = "2.19.1"; 5528 5321 src = fetchurl { 5529 - url = "https://registry.npmjs.org/node-abi/-/node-abi-2.19.3.tgz"; 5530 - sha512 = "9xZrlyfvKhWme2EXFKQhZRp1yNWT/uI1luYPr3sFl+H4keYY4xR+1jO7mvTTijIsHf1M+QDe9uWuKeEpLInIlg=="; 5322 + url = "https://registry.npmjs.org/node-abi/-/node-abi-2.19.1.tgz"; 5323 + sha512 = "HbtmIuByq44yhAzK7b9j/FelKlHYISKQn0mtvcBrU5QBkhoCMp5bu8Hv5AI34DcKfOAcJBcOEMwLlwO62FFu9A=="; 5531 5324 }; 5532 5325 }; 5533 5326 "node-int64-0.4.0" = { ··· 5557 5350 sha512 = "46z7DUmcjoYdaWyXouuFNNfUo6eFa94t23c53c+lG/9Cvauk4a98rAUp9672X5dxGdQmLpPzTxzu8f/OeEPaFA=="; 5558 5351 }; 5559 5352 }; 5560 - "node-notifier-8.0.1" = { 5561 - name = "node-notifier"; 5562 - packageName = "node-notifier"; 5563 - version = "8.0.1"; 5564 - src = fetchurl { 5565 - url = "https://registry.npmjs.org/node-notifier/-/node-notifier-8.0.1.tgz"; 5566 - sha512 = "BvEXF+UmsnAfYfoapKM9nGxnP+Wn7P91YfXmrKnfcYCx6VBeoN5Ez5Ogck6I8Bi5k4RlpqRYaw75pAwzX9OphA=="; 5567 - }; 5568 - }; 5569 - "node-releases-1.1.67" = { 5353 + "node-releases-1.1.66" = { 5570 5354 name = "node-releases"; 5571 5355 packageName = "node-releases"; 5572 - version = "1.1.67"; 5356 + version = "1.1.66"; 5573 5357 src = fetchurl { 5574 - url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz"; 5575 - sha512 = "V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg=="; 5358 + url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.66.tgz"; 5359 + sha512 = "JHEQ1iWPGK+38VLB2H9ef2otU4l8s3yAMt9Xf934r6+ojCYDMHPMqvCc9TnzfeFSP1QEOeU6YZEd3+De0LTCgg=="; 5576 5360 }; 5577 5361 }; 5578 5362 "noop-logger-0.1.1" = { ··· 5764 5548 sha512 = "kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg=="; 5765 5549 }; 5766 5550 }; 5767 - "onigasm-2.2.5" = { 5768 - name = "onigasm"; 5769 - packageName = "onigasm"; 5770 - version = "2.2.5"; 5771 - src = fetchurl { 5772 - url = "https://registry.npmjs.org/onigasm/-/onigasm-2.2.5.tgz"; 5773 - sha512 = "F+th54mPc0l1lp1ZcFMyL/jTs2Tlq4SqIHKIXGZOR/VkHkF9A7Fr5rRr5+ZG/lWeRsyrClLYRq7s/yFQ/XhWCA=="; 5774 - }; 5775 - }; 5776 5551 "optionator-0.8.3" = { 5777 5552 name = "optionator"; 5778 5553 packageName = "optionator"; ··· 5798 5573 src = fetchurl { 5799 5574 url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz"; 5800 5575 sha1 = "77c0cb37c41525d64166d990ffad7ec6a0e1363e"; 5576 + }; 5577 + }; 5578 + "p-each-series-2.1.0" = { 5579 + name = "p-each-series"; 5580 + packageName = "p-each-series"; 5581 + version = "2.1.0"; 5582 + src = fetchurl { 5583 + url = "https://registry.npmjs.org/p-each-series/-/p-each-series-2.1.0.tgz"; 5584 + sha512 = "ZuRs1miPT4HrjFa+9fRfOFXxGJfORgelKV9f9nNOWw2gl6gVsRaVDOQP0+MI0G0wGKns1Yacsu0GjOFbTK0JFQ=="; 5801 5585 }; 5802 5586 }; 5803 5587 "p-each-series-2.2.0" = { ··· 6007 5791 sha1 = "01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"; 6008 5792 }; 6009 5793 }; 6010 - "prebuild-install-6.0.0" = { 5794 + "prebuild-install-5.3.6" = { 6011 5795 name = "prebuild-install"; 6012 5796 packageName = "prebuild-install"; 6013 - version = "6.0.0"; 5797 + version = "5.3.6"; 6014 5798 src = fetchurl { 6015 - url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-6.0.0.tgz"; 6016 - sha512 = "h2ZJ1PXHKWZpp1caLw0oX9sagVpL2YTk+ZwInQbQ3QqNd4J03O6MpFNmMTJlkfgPENWqe5kP0WjQLqz5OjLfsw=="; 5799 + url = "https://registry.npmjs.org/prebuild-install/-/prebuild-install-5.3.6.tgz"; 5800 + sha512 = "s8Aai8++QQGi4sSbs/M1Qku62PFK49Jm1CbgXklGz4nmHveDq0wzJkg7Na5QbnO1uNH8K7iqx2EQ/mV0MZEmOg=="; 6017 5801 }; 6018 5802 }; 6019 5803 "prelude-ls-1.1.2" = { ··· 6439 6223 sha512 = "U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw=="; 6440 6224 }; 6441 6225 }; 6226 + "rimraf-2.6.3" = { 6227 + name = "rimraf"; 6228 + packageName = "rimraf"; 6229 + version = "2.6.3"; 6230 + src = fetchurl { 6231 + url = "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz"; 6232 + sha512 = "mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA=="; 6233 + }; 6234 + }; 6442 6235 "rimraf-3.0.2" = { 6443 6236 name = "rimraf"; 6444 6237 packageName = "rimraf"; ··· 6547 6340 sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A=="; 6548 6341 }; 6549 6342 }; 6550 - "semver-7.3.4" = { 6343 + "semver-7.3.2" = { 6551 6344 name = "semver"; 6552 6345 packageName = "semver"; 6553 - version = "7.3.4"; 6346 + version = "7.3.2"; 6554 6347 src = fetchurl { 6555 - url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz"; 6556 - sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw=="; 6348 + url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz"; 6349 + sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ=="; 6557 6350 }; 6558 6351 }; 6559 6352 "send-0.17.1" = { ··· 6565 6358 sha512 = "BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg=="; 6566 6359 }; 6567 6360 }; 6568 - "serialport-9.0.3" = { 6361 + "serialport-9.0.2" = { 6569 6362 name = "serialport"; 6570 6363 packageName = "serialport"; 6571 - version = "9.0.3"; 6364 + version = "9.0.2"; 6572 6365 src = fetchurl { 6573 - url = "https://registry.npmjs.org/serialport/-/serialport-9.0.3.tgz"; 6574 - sha512 = "1JjH9jtWZ5up2SQTeNPA4I3vhHCDYh1AjN3SybZYf5m9KF9tFVIOGLGIMncqnWKYx3ks/wqfCpmpYUHkFYC3wg=="; 6575 - }; 6576 - }; 6577 - "serialport-9.0.4" = { 6578 - name = "serialport"; 6579 - packageName = "serialport"; 6580 - version = "9.0.4"; 6581 - src = fetchurl { 6582 - url = "https://registry.npmjs.org/serialport/-/serialport-9.0.4.tgz"; 6583 - sha512 = "Wtl6sxciHKNdJKW8jUZm+f5KRXt0J0UP25ksM8N31l08KTdAhZ5MmKNUFpoO/YYG6TvHFOu+07PUX35m+TUw7g=="; 6366 + url = "https://registry.npmjs.org/serialport/-/serialport-9.0.2.tgz"; 6367 + sha512 = "N++EVrc2F3kUJ6aCE6BLxHwTrelFAZM3LFw4lo8TV0fDtfrwTc3+aoDpSsvfQg3DxrRf3shCtA6WYEH4g8kapw=="; 6584 6368 }; 6585 6369 }; 6586 6370 "serve-static-1.14.1" = { ··· 6673 6457 sha512 = "vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww=="; 6674 6458 }; 6675 6459 }; 6676 - "shiki-0.2.7" = { 6677 - name = "shiki"; 6678 - packageName = "shiki"; 6679 - version = "0.2.7"; 6680 - src = fetchurl { 6681 - url = "https://registry.npmjs.org/shiki/-/shiki-0.2.7.tgz"; 6682 - sha512 = "bwVc7cdtYYHEO9O+XJ8aNOskKRfaQd5Y4ovLRfbQkmiLSUaR+bdlssbZUUhbQ0JAFMYcTcJ5tjG5KtnufttDHQ=="; 6683 - }; 6684 - }; 6685 - "shiki-languages-0.2.7" = { 6686 - name = "shiki-languages"; 6687 - packageName = "shiki-languages"; 6688 - version = "0.2.7"; 6689 - src = fetchurl { 6690 - url = "https://registry.npmjs.org/shiki-languages/-/shiki-languages-0.2.7.tgz"; 6691 - sha512 = "REmakh7pn2jCn9GDMRSK36oDgqhh+rSvJPo77sdWTOmk44C5b0XlYPwJZcFOMJWUZJE0c7FCbKclw4FLwUKLRw=="; 6692 - }; 6693 - }; 6694 - "shiki-themes-0.2.7" = { 6695 - name = "shiki-themes"; 6696 - packageName = "shiki-themes"; 6697 - version = "0.2.7"; 6698 - src = fetchurl { 6699 - url = "https://registry.npmjs.org/shiki-themes/-/shiki-themes-0.2.7.tgz"; 6700 - sha512 = "ZMmboDYw5+SEpugM8KGUq3tkZ0vXg+k60XX6NngDK7gc1Sv6YLUlanpvG3evm57uKJvfXsky/S5MzSOTtYKLjA=="; 6701 - }; 6702 - }; 6703 6460 "signal-exit-3.0.3" = { 6704 6461 name = "signal-exit"; 6705 6462 packageName = "signal-exit"; ··· 6770 6527 src = fetchurl { 6771 6528 url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"; 6772 6529 sha512 = "Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="; 6773 - }; 6774 - }; 6775 - "slice-ansi-4.0.0" = { 6776 - name = "slice-ansi"; 6777 - packageName = "slice-ansi"; 6778 - version = "4.0.0"; 6779 - src = fetchurl { 6780 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 6781 - sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 6782 6530 }; 6783 6531 }; 6784 6532 "slip-1.0.2" = { ··· 6898 6646 sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q=="; 6899 6647 }; 6900 6648 }; 6901 - "spdx-license-ids-3.0.7" = { 6649 + "spdx-license-ids-3.0.6" = { 6902 6650 name = "spdx-license-ids"; 6903 6651 packageName = "spdx-license-ids"; 6904 - version = "3.0.7"; 6652 + version = "3.0.6"; 6905 6653 src = fetchurl { 6906 - url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz"; 6907 - sha512 = "U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ=="; 6654 + url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.6.tgz"; 6655 + sha512 = "+orQK83kyMva3WyPf59k1+Y525csj5JejicWut55zeTWANuN17qSiSLUXWtzHeNWORSvT7GLDJ/E/XiIWoXBTw=="; 6908 6656 }; 6909 6657 }; 6910 6658 "split-string-3.1.0" = { ··· 7168 6916 sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 7169 6917 }; 7170 6918 }; 7171 - "table-6.0.4" = { 7172 - name = "table"; 7173 - packageName = "table"; 7174 - version = "6.0.4"; 7175 - src = fetchurl { 7176 - url = "https://registry.npmjs.org/table/-/table-6.0.4.tgz"; 7177 - sha512 = "sBT4xRLdALd+NFBvwOz8bw4b15htyythha+q+DVZqy2RS08PPC8O2sZFgJYEY7bJvbCFKccs+WIZ/cd+xxTWCw=="; 7178 - }; 7179 - }; 7180 6919 "tar-fs-2.1.1" = { 7181 6920 name = "tar-fs"; 7182 6921 packageName = "tar-fs"; ··· 7492 7231 sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q=="; 7493 7232 }; 7494 7233 }; 7495 - "typedoc-0.20.0-beta.27" = { 7496 - name = "typedoc"; 7497 - packageName = "typedoc"; 7498 - version = "0.20.0-beta.27"; 7499 - src = fetchurl { 7500 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.20.0-beta.27.tgz"; 7501 - sha512 = "+TMTlYV7N6mIGEuNIaPEqss3jWOLX2v7rLVz5vT+PfjVgwX+1s+LdPe+plV1hm5Ha1HwFNuVlozXxxWvf95dwA=="; 7502 - }; 7503 - }; 7504 - "typedoc-0.20.0-beta.30" = { 7234 + "typedoc-0.19.2" = { 7505 7235 name = "typedoc"; 7506 7236 packageName = "typedoc"; 7507 - version = "0.20.0-beta.30"; 7237 + version = "0.19.2"; 7508 7238 src = fetchurl { 7509 - url = "https://registry.npmjs.org/typedoc/-/typedoc-0.20.0-beta.30.tgz"; 7510 - sha512 = "nAisQV1Wmu/a/AgZMJ4/H7Z0e+eR/XVaF7ilSM5b7YJ2HP7iuqFw4j/e6a88ZHYf1nNfjBB9XpaqP/JYwHo4sQ=="; 7239 + url = "https://registry.npmjs.org/typedoc/-/typedoc-0.19.2.tgz"; 7240 + sha512 = "oDEg1BLEzi1qvgdQXc658EYgJ5qJLVSeZ0hQ57Eq4JXy6Vj2VX4RVo18qYxRWz75ifAaYuYNBUCnbhjd37TfOg=="; 7511 7241 }; 7512 7242 }; 7513 - "typedoc-default-themes-0.12.0-beta.10" = { 7243 + "typedoc-default-themes-0.11.4" = { 7514 7244 name = "typedoc-default-themes"; 7515 7245 packageName = "typedoc-default-themes"; 7516 - version = "0.12.0-beta.10"; 7246 + version = "0.11.4"; 7517 7247 src = fetchurl { 7518 - url = "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.12.0-beta.10.tgz"; 7519 - sha512 = "RqTLRQvzuLrNEZ1VcmYoQiFkixW0QvVUv0R35jlkhxAMGtoo/giUVtWrWY1+Yp7HBnfI/wZKvhZpQYswbDL7eQ=="; 7520 - }; 7521 - }; 7522 - "typedoc-plugin-markdown-3.1.0" = { 7523 - name = "typedoc-plugin-markdown"; 7524 - packageName = "typedoc-plugin-markdown"; 7525 - version = "3.1.0"; 7526 - src = fetchurl { 7527 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.1.0.tgz"; 7528 - sha512 = "DhY2WbWfkLyU/MJV8a3TeJjY8e/IBzgG6SEFhtFp6GgmXXdsSHJre2ASFRH6T2ShIUZAPdvHkFcehpSVAfNgPA=="; 7248 + url = "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.11.4.tgz"; 7249 + sha512 = "Y4Lf+qIb9NTydrexlazAM46SSLrmrQRqWiD52593g53SsmUFioAsMWt8m834J6qsp+7wHRjxCXSZeiiW5cMUdw=="; 7529 7250 }; 7530 7251 }; 7531 - "typedoc-plugin-markdown-3.1.1" = { 7252 + "typedoc-plugin-markdown-3.0.11" = { 7532 7253 name = "typedoc-plugin-markdown"; 7533 7254 packageName = "typedoc-plugin-markdown"; 7534 - version = "3.1.1"; 7255 + version = "3.0.11"; 7535 7256 src = fetchurl { 7536 - url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.1.1.tgz"; 7537 - sha512 = "esrSaGw9NeGOR1fixubeSYCtQ9tw1iv7xa6bMvwznjs+jOUEdP0/OBe7l2bbk3PoqhNiFBozBJDo3CpcMJGHnw=="; 7257 + url = "https://registry.npmjs.org/typedoc-plugin-markdown/-/typedoc-plugin-markdown-3.0.11.tgz"; 7258 + sha512 = "/BE/PqnIVbQJ525czM+T3CVaA1gVN9X1Le100z8TV/Lze8LZVkuAUiHRIgw9BKYFm9IQaB88W55k4EV6uUVwYQ=="; 7538 7259 }; 7539 7260 }; 7540 7261 "typedoc-plugin-no-inherit-1.2.0" = { ··· 7555 7276 sha512 = "xHq9DzkoQywS7FyPneMm2/Hr9GRoCpjSQXkVN0W6SCJKP7fguqg2tasgh+8l5/mW6YSYvqCqEbkSYLbuD4Y6gA=="; 7556 7277 }; 7557 7278 }; 7558 - "typescript-4.1.2" = { 7559 - name = "typescript"; 7560 - packageName = "typescript"; 7561 - version = "4.1.2"; 7562 - src = fetchurl { 7563 - url = "https://registry.npmjs.org/typescript/-/typescript-4.1.2.tgz"; 7564 - sha512 = "thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ=="; 7565 - }; 7566 - }; 7567 - "typescript-4.1.3" = { 7279 + "typescript-4.0.5" = { 7568 7280 name = "typescript"; 7569 7281 packageName = "typescript"; 7570 - version = "4.1.3"; 7571 - src = fetchurl { 7572 - url = "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz"; 7573 - sha512 = "B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg=="; 7574 - }; 7575 - }; 7576 - "uglify-js-3.12.1" = { 7577 - name = "uglify-js"; 7578 - packageName = "uglify-js"; 7579 - version = "3.12.1"; 7282 + version = "4.0.5"; 7580 7283 src = fetchurl { 7581 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.1.tgz"; 7582 - sha512 = "o8lHP20KjIiQe5b/67Rh68xEGRrc2SRsCuuoYclXXoC74AfSRGblU1HKzJWH3HxPZ+Ort85fWHpSX7KwBUC9CQ=="; 7284 + url = "https://registry.npmjs.org/typescript/-/typescript-4.0.5.tgz"; 7285 + sha512 = "ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ=="; 7583 7286 }; 7584 7287 }; 7585 - "uglify-js-3.12.3" = { 7288 + "uglify-js-3.11.6" = { 7586 7289 name = "uglify-js"; 7587 7290 packageName = "uglify-js"; 7588 - version = "3.12.3"; 7291 + version = "3.11.6"; 7589 7292 src = fetchurl { 7590 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.12.3.tgz"; 7591 - sha512 = "feZzR+kIcSVuLi3s/0x0b2Tx4Iokwqt+8PJM7yRHKuldg4MLdam4TCFeICv+lgDtuYiCtdmrtIP+uN9LWvDasw=="; 7293 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.11.6.tgz"; 7294 + sha512 = "oASI1FOJ7BBFkSCNDZ446EgkSuHkOZBuqRFrwXIKWCoXw8ZXQETooTQjkAcBS03Acab7ubCKsXnwuV2svy061g=="; 7592 7295 }; 7593 7296 }; 7594 7297 "unc-path-regex-0.1.2" = { ··· 7753 7456 sha512 = "HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="; 7754 7457 }; 7755 7458 }; 7756 - "uuid-8.3.2" = { 7459 + "uuid-8.3.1" = { 7757 7460 name = "uuid"; 7758 7461 packageName = "uuid"; 7759 - version = "8.3.2"; 7462 + version = "8.3.1"; 7760 7463 src = fetchurl { 7761 - url = "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"; 7762 - sha512 = "+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg=="; 7464 + url = "https://registry.npmjs.org/uuid/-/uuid-8.3.1.tgz"; 7465 + sha512 = "FOmRr+FmWEIG8uhZv6C2bTgEVXsHk08kE7mPlrBbEe+c3r9pjceVPgupIfNIhc4yx55H69OXANrUaSuu9eInKg=="; 7763 7466 }; 7764 7467 }; 7765 7468 "v8-compile-cache-2.2.0" = { ··· 7780 7483 sha512 = "fLL2rFuQpMtm9r8hrAV2apXX/WqHJ6+IC4/eQVdMDGBUgH/YMV4Gv3duk3kjmyg6uiQWBAA9nJwue4iJUOkHeA=="; 7781 7484 }; 7782 7485 }; 7783 - "v8-to-istanbul-7.1.0" = { 7784 - name = "v8-to-istanbul"; 7785 - packageName = "v8-to-istanbul"; 7786 - version = "7.1.0"; 7787 - src = fetchurl { 7788 - url = "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz"; 7789 - sha512 = "uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g=="; 7790 - }; 7791 - }; 7792 7486 "validate-npm-package-license-3.0.4" = { 7793 7487 name = "validate-npm-package-license"; 7794 7488 packageName = "validate-npm-package-license"; ··· 7805 7499 src = fetchurl { 7806 7500 url = "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz"; 7807 7501 sha1 = "3a105ca17053af55d6e270c1f8288682e18da400"; 7808 - }; 7809 - }; 7810 - "vscode-textmate-5.2.0" = { 7811 - name = "vscode-textmate"; 7812 - packageName = "vscode-textmate"; 7813 - version = "5.2.0"; 7814 - src = fetchurl { 7815 - url = "https://registry.npmjs.org/vscode-textmate/-/vscode-textmate-5.2.0.tgz"; 7816 - sha512 = "Uw5ooOQxRASHgu6C7GVvUxisKXfSgW4oFlO+aa+PAkgmH89O3CXxEEzNRNtHSqtXFTl0nAC1uYj0GMSH27uwtQ=="; 7817 7502 }; 7818 7503 }; 7819 7504 "w3c-hr-time-1.0.2" = { ··· 7996 7681 sha1 = "b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"; 7997 7682 }; 7998 7683 }; 7684 + "write-1.0.3" = { 7685 + name = "write"; 7686 + packageName = "write"; 7687 + version = "1.0.3"; 7688 + src = fetchurl { 7689 + url = "https://registry.npmjs.org/write/-/write-1.0.3.tgz"; 7690 + sha512 = "/lg70HAjtkUgWPVZhZcm+T4hkL8Zbtp1nFNOn3lRrxnlv50SRBv7cR7RqR+GMsd3hUXy9hWBo4CHTbFTcOYwig=="; 7691 + }; 7692 + }; 7999 7693 "write-file-atomic-3.0.3" = { 8000 7694 name = "write-file-atomic"; 8001 7695 packageName = "write-file-atomic"; ··· 8005 7699 sha512 = "AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q=="; 8006 7700 }; 8007 7701 }; 8008 - "ws-7.4.1" = { 7702 + "ws-7.4.0" = { 8009 7703 name = "ws"; 8010 7704 packageName = "ws"; 8011 - version = "7.4.1"; 7705 + version = "7.4.0"; 8012 7706 src = fetchurl { 8013 - url = "https://registry.npmjs.org/ws/-/ws-7.4.1.tgz"; 8014 - sha512 = "pTsP8UAfhy3sk1lSk/O/s4tjD0CRwvMnzvwr4OKGX7ZvqZtUyx4KIJB5JWbkykPoc55tixMGgTNoh3k4FkNGFQ=="; 7707 + url = "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz"; 7708 + sha512 = "kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ=="; 8015 7709 }; 8016 7710 }; 8017 7711 "xml-name-validator-3.0.0" = { ··· 8041 7735 sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ=="; 8042 7736 }; 8043 7737 }; 8044 - "y18n-4.0.1" = { 7738 + "y18n-4.0.0" = { 8045 7739 name = "y18n"; 8046 7740 packageName = "y18n"; 8047 - version = "4.0.1"; 8048 - src = fetchurl { 8049 - url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz"; 8050 - sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ=="; 8051 - }; 8052 - }; 8053 - "yallist-3.1.1" = { 8054 - name = "yallist"; 8055 - packageName = "yallist"; 8056 - version = "3.1.1"; 8057 - src = fetchurl { 8058 - url = "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz"; 8059 - sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g=="; 8060 - }; 8061 - }; 8062 - "yallist-4.0.0" = { 8063 - name = "yallist"; 8064 - packageName = "yallist"; 8065 7741 version = "4.0.0"; 8066 7742 src = fetchurl { 8067 - url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz"; 8068 - sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A=="; 7743 + url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz"; 7744 + sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w=="; 8069 7745 }; 8070 7746 }; 8071 7747 "yargs-15.4.1" = { ··· 8086 7762 sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ=="; 8087 7763 }; 8088 7764 }; 8089 - "zigbee-herdsman-0.13.41" = { 8090 - name = "zigbee-herdsman"; 8091 - packageName = "zigbee-herdsman"; 8092 - version = "0.13.41"; 8093 - src = fetchurl { 8094 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.41.tgz"; 8095 - sha512 = "qHAvPHr8CrzD9pRiiqNmlwxh/KvIfvGpopGBl4Hl2LJln3ruzt1cpHA3jcvR/WUC4vQsTtdEk2911BNEb5APWw=="; 8096 - }; 8097 - }; 8098 - "zigbee-herdsman-0.13.46" = { 7765 + "zigbee-herdsman-0.13.37" = { 8099 7766 name = "zigbee-herdsman"; 8100 7767 packageName = "zigbee-herdsman"; 8101 - version = "0.13.46"; 7768 + version = "0.13.37"; 8102 7769 src = fetchurl { 8103 - url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.46.tgz"; 8104 - sha512 = "GH0JvIC0cd91cqLQpJ8Cd+o2+gKct2wsMGq8c6XTiGeJpcF47fIlMaHWEK/CuBcBJ6rnid8mGPdTHmOsPT1Bmw=="; 7770 + url = "https://registry.npmjs.org/zigbee-herdsman/-/zigbee-herdsman-0.13.37.tgz"; 7771 + sha512 = "eK2EK2mqT80ueHvEicKmXGyw+VezoK+7NcHX9WjjeQL6bdOpaLCuDGZY0sOh86Lmodyvdd0ZxY7MwA6z/Ko2PA=="; 8105 7772 }; 8106 7773 }; 8107 - "zigbee-herdsman-converters-14.0.3" = { 7774 + "zigbee-herdsman-converters-13.0.7" = { 8108 7775 name = "zigbee-herdsman-converters"; 8109 7776 packageName = "zigbee-herdsman-converters"; 8110 - version = "14.0.3"; 7777 + version = "13.0.7"; 8111 7778 src = fetchurl { 8112 - url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-14.0.3.tgz"; 8113 - sha512 = "ObZqRgK81C3BIbTXaGL/QEUXP1F1tmj8vjAWVtrlGWkYjCQp4GYKxQU1FHNn342V6/3WxBo122OWrFFRxH3Xfw=="; 7779 + url = "https://registry.npmjs.org/zigbee-herdsman-converters/-/zigbee-herdsman-converters-13.0.7.tgz"; 7780 + sha512 = "aHqcbkQmoSkBth4s94//wJm2UO+0YFQkIndRBbz1XAIdNeHDhUVA6ZT1B1DgJZEbF/HRW8ZZLC+biSF6h/1HvQ=="; 8114 7781 }; 8115 7782 }; 8116 - "zigbee2mqtt-frontend-0.2.129" = { 7783 + "zigbee2mqtt-frontend-0.2.100" = { 8117 7784 name = "zigbee2mqtt-frontend"; 8118 7785 packageName = "zigbee2mqtt-frontend"; 8119 - version = "0.2.129"; 7786 + version = "0.2.100"; 8120 7787 src = fetchurl { 8121 - url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.2.129.tgz"; 8122 - sha512 = "gvzgYMtI7XF97HueC65MxwqB7Hcoc2HNRnyydqJuq11w0FrzFBg/VLhDpsW5Sor8oz/C8cjd8rtS1yC2jqI1Eg=="; 7788 + url = "https://registry.npmjs.org/zigbee2mqtt-frontend/-/zigbee2mqtt-frontend-0.2.100.tgz"; 7789 + sha512 = "/WASdNtWYAqts8RvC3j6HkdnZifg2KEocGS1eIl1G7Gghoj/80TiF5TVYtU3YG9M40vgMIIMvIwrmc8UOmdJhg=="; 8123 7790 }; 8124 7791 }; 8125 7792 }; 8126 7793 args = { 8127 7794 name = "zigbee2mqtt"; 8128 7795 packageName = "zigbee2mqtt"; 8129 - version = "1.17.0"; 7796 + version = "1.16.2"; 8130 7797 src = ./.; 8131 7798 dependencies = [ 8132 7799 sources."@dabh/diagnostics-2.0.2" ··· 8200 7867 sources."glossy-0.1.7" 8201 7868 sources."help-me-1.1.0" 8202 7869 sources."http-errors-1.7.3" 8203 - sources."humanize-duration-3.25.0" 7870 + sources."humanize-duration-3.24.0" 8204 7871 sources."ieee754-1.2.1" 8205 7872 sources."inflight-1.0.6" 8206 7873 sources."inherits-2.0.4" ··· 8214 7881 sources."is-unc-path-1.0.0" 8215 7882 sources."is-windows-1.0.2" 8216 7883 sources."isarray-1.0.0" 8217 - sources."js-yaml-3.14.1" 7884 + sources."js-yaml-3.14.0" 8218 7885 sources."json-schema-traverse-0.4.1" 8219 7886 sources."json-stable-stringify-without-jsonify-1.0.1" 8220 7887 sources."kuler-2.0.0" 8221 7888 sources."leven-2.1.0" 8222 7889 (sources."logform-2.2.0" // { 8223 7890 dependencies = [ 8224 - sources."ms-2.1.3" 7891 + sources."ms-2.1.2" 8225 7892 ]; 8226 7893 }) 8227 - sources."lru-cache-6.0.0" 8228 7894 sources."mime-1.6.0" 8229 7895 sources."minimatch-3.0.4" 8230 7896 sources."minimist-1.2.5" ··· 8236 7902 sources."ms-2.1.2" 8237 7903 ]; 8238 7904 }) 8239 - (sources."mqtt-packet-6.7.0" // { 7905 + (sources."mqtt-packet-6.6.0" // { 8240 7906 dependencies = [ 8241 7907 sources."debug-4.3.1" 8242 7908 sources."ms-2.1.2" ··· 8267 7933 sources."remove-trailing-separator-1.1.0" 8268 7934 sources."rimraf-3.0.2" 8269 7935 sources."safe-buffer-5.1.2" 8270 - sources."semver-7.3.4" 7936 + sources."semver-7.3.2" 8271 7937 (sources."send-0.17.1" // { 8272 7938 dependencies = [ 8273 7939 sources."ms-2.1.1" ··· 8308 7974 sources."winston-syslog-2.4.4" 8309 7975 sources."winston-transport-4.4.0" 8310 7976 sources."wrappy-1.0.2" 8311 - sources."ws-7.4.1" 7977 + sources."ws-7.4.0" 8312 7978 sources."xtend-4.0.2" 8313 - sources."yallist-4.0.0" 8314 - (sources."zigbee-herdsman-0.13.46" // { 7979 + (sources."zigbee-herdsman-0.13.37" // { 8315 7980 dependencies = [ 8316 - sources."@babel/cli-7.12.10" 8317 - sources."@babel/code-frame-7.12.11" 8318 - sources."@babel/compat-data-7.12.7" 8319 - sources."@babel/core-7.12.10" 8320 - sources."@babel/generator-7.12.11" 8321 - sources."@babel/helper-annotate-as-pure-7.12.10" 7981 + sources."@babel/cli-7.12.1" 7982 + sources."@babel/code-frame-7.10.4" 7983 + sources."@babel/compat-data-7.12.5" 7984 + sources."@babel/core-7.12.3" 7985 + sources."@babel/generator-7.12.5" 7986 + sources."@babel/helper-annotate-as-pure-7.10.4" 8322 7987 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" 8323 7988 sources."@babel/helper-compilation-targets-7.12.5" 8324 7989 sources."@babel/helper-create-class-features-plugin-7.12.1" 8325 - sources."@babel/helper-create-regexp-features-plugin-7.12.7" 7990 + sources."@babel/helper-create-regexp-features-plugin-7.12.1" 8326 7991 sources."@babel/helper-define-map-7.10.5" 8327 7992 sources."@babel/helper-explode-assignable-expression-7.12.1" 8328 - sources."@babel/helper-function-name-7.12.11" 8329 - sources."@babel/helper-get-function-arity-7.12.10" 7993 + sources."@babel/helper-function-name-7.10.4" 7994 + sources."@babel/helper-get-function-arity-7.10.4" 8330 7995 sources."@babel/helper-hoist-variables-7.10.4" 8331 - sources."@babel/helper-member-expression-to-functions-7.12.7" 7996 + sources."@babel/helper-member-expression-to-functions-7.12.1" 8332 7997 sources."@babel/helper-module-imports-7.12.5" 8333 7998 sources."@babel/helper-module-transforms-7.12.1" 8334 - sources."@babel/helper-optimise-call-expression-7.12.10" 7999 + sources."@babel/helper-optimise-call-expression-7.10.4" 8335 8000 sources."@babel/helper-plugin-utils-7.10.4" 8001 + sources."@babel/helper-regex-7.10.5" 8336 8002 sources."@babel/helper-remap-async-to-generator-7.12.1" 8337 - sources."@babel/helper-replace-supers-7.12.11" 8003 + sources."@babel/helper-replace-supers-7.12.5" 8338 8004 sources."@babel/helper-simple-access-7.12.1" 8339 8005 sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 8340 - sources."@babel/helper-split-export-declaration-7.12.11" 8341 - sources."@babel/helper-validator-identifier-7.12.11" 8342 - sources."@babel/helper-validator-option-7.12.11" 8006 + sources."@babel/helper-split-export-declaration-7.11.0" 8007 + sources."@babel/helper-validator-identifier-7.10.4" 8008 + sources."@babel/helper-validator-option-7.12.1" 8343 8009 sources."@babel/helper-wrap-function-7.12.3" 8344 8010 sources."@babel/helpers-7.12.5" 8345 8011 sources."@babel/highlight-7.10.4" 8346 - sources."@babel/parser-7.12.11" 8347 - sources."@babel/plugin-proposal-async-generator-functions-7.12.12" 8012 + sources."@babel/parser-7.12.5" 8013 + sources."@babel/plugin-proposal-async-generator-functions-7.12.1" 8348 8014 sources."@babel/plugin-proposal-class-properties-7.12.1" 8349 8015 sources."@babel/plugin-proposal-dynamic-import-7.12.1" 8350 8016 sources."@babel/plugin-proposal-export-namespace-from-7.12.1" 8351 8017 sources."@babel/plugin-proposal-json-strings-7.12.1" 8352 8018 sources."@babel/plugin-proposal-logical-assignment-operators-7.12.1" 8353 8019 sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" 8354 - sources."@babel/plugin-proposal-numeric-separator-7.12.7" 8020 + sources."@babel/plugin-proposal-numeric-separator-7.12.5" 8355 8021 sources."@babel/plugin-proposal-object-rest-spread-7.12.1" 8356 8022 sources."@babel/plugin-proposal-optional-catch-binding-7.12.1" 8357 - sources."@babel/plugin-proposal-optional-chaining-7.12.7" 8023 + sources."@babel/plugin-proposal-optional-chaining-7.12.1" 8358 8024 sources."@babel/plugin-proposal-private-methods-7.12.1" 8359 8025 sources."@babel/plugin-proposal-unicode-property-regex-7.12.1" 8360 8026 sources."@babel/plugin-syntax-async-generators-7.8.4" ··· 8375 8041 sources."@babel/plugin-transform-arrow-functions-7.12.1" 8376 8042 sources."@babel/plugin-transform-async-to-generator-7.12.1" 8377 8043 sources."@babel/plugin-transform-block-scoped-functions-7.12.1" 8378 - sources."@babel/plugin-transform-block-scoping-7.12.12" 8044 + sources."@babel/plugin-transform-block-scoping-7.12.1" 8379 8045 sources."@babel/plugin-transform-classes-7.12.1" 8380 8046 sources."@babel/plugin-transform-computed-properties-7.12.1" 8381 8047 sources."@babel/plugin-transform-destructuring-7.12.1" ··· 8399 8065 sources."@babel/plugin-transform-reserved-words-7.12.1" 8400 8066 sources."@babel/plugin-transform-shorthand-properties-7.12.1" 8401 8067 sources."@babel/plugin-transform-spread-7.12.1" 8402 - sources."@babel/plugin-transform-sticky-regex-7.12.7" 8068 + sources."@babel/plugin-transform-sticky-regex-7.12.1" 8403 8069 sources."@babel/plugin-transform-template-literals-7.12.1" 8404 - sources."@babel/plugin-transform-typeof-symbol-7.12.10" 8070 + sources."@babel/plugin-transform-typeof-symbol-7.12.1" 8405 8071 sources."@babel/plugin-transform-typescript-7.12.1" 8406 8072 sources."@babel/plugin-transform-unicode-escapes-7.12.1" 8407 8073 sources."@babel/plugin-transform-unicode-regex-7.12.1" 8408 - sources."@babel/preset-env-7.12.11" 8074 + sources."@babel/preset-env-7.12.1" 8409 8075 sources."@babel/preset-modules-0.1.4" 8410 - sources."@babel/preset-typescript-7.12.7" 8076 + sources."@babel/preset-typescript-7.12.1" 8411 8077 sources."@babel/runtime-7.12.5" 8412 - sources."@babel/template-7.12.7" 8413 - sources."@babel/traverse-7.12.12" 8414 - sources."@babel/types-7.12.12" 8078 + sources."@babel/template-7.10.4" 8079 + sources."@babel/traverse-7.12.5" 8080 + sources."@babel/types-7.12.6" 8415 8081 sources."@bcoe/v8-coverage-0.2.3" 8416 8082 sources."@cnakazawa/watch-1.0.4" 8417 - (sources."@eslint/eslintrc-0.2.2" // { 8083 + (sources."@eslint/eslintrc-0.2.1" // { 8418 8084 dependencies = [ 8419 8085 sources."globals-12.4.0" 8420 8086 sources."ignore-4.0.6" ··· 8446 8112 sources."has-flag-4.0.0" 8447 8113 sources."is-number-7.0.0" 8448 8114 sources."micromatch-4.0.2" 8115 + sources."rimraf-3.0.2" 8449 8116 sources."slash-3.0.0" 8450 8117 sources."strip-ansi-6.0.0" 8451 8118 sources."supports-color-7.2.0" ··· 8501 8168 sources."supports-color-7.2.0" 8502 8169 ]; 8503 8170 }) 8504 - sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" 8171 + (sources."@nicolo-ribaudo/chokidar-2-2.1.8" // { 8172 + dependencies = [ 8173 + sources."chokidar-2.1.8" 8174 + ]; 8175 + }) 8505 8176 sources."@nodelib/fs.scandir-2.1.3" 8506 8177 sources."@nodelib/fs.stat-2.0.3" 8507 8178 sources."@nodelib/fs.walk-1.2.4" 8508 8179 sources."@serialport/binding-abstract-9.0.2" 8509 8180 sources."@serialport/binding-mock-9.0.2" 8510 - sources."@serialport/bindings-9.0.4" 8181 + sources."@serialport/bindings-9.0.2" 8511 8182 sources."@serialport/parser-byte-length-9.0.1" 8512 8183 sources."@serialport/parser-cctalk-9.0.1" 8513 8184 sources."@serialport/parser-delimiter-9.0.1" ··· 8520 8191 sources."@types/babel__core-7.1.12" 8521 8192 sources."@types/babel__generator-7.6.2" 8522 8193 sources."@types/babel__template-7.4.0" 8523 - sources."@types/babel__traverse-7.11.0" 8194 + sources."@types/babel__traverse-7.0.15" 8524 8195 sources."@types/debounce-1.2.0" 8525 8196 sources."@types/debug-4.1.5" 8526 8197 sources."@types/graceful-fs-4.1.4" 8527 8198 sources."@types/istanbul-lib-coverage-2.0.3" 8528 8199 sources."@types/istanbul-lib-report-3.0.0" 8529 8200 sources."@types/istanbul-reports-3.0.0" 8530 - sources."@types/jest-26.0.19" 8201 + sources."@types/jest-26.0.15" 8531 8202 sources."@types/json-schema-7.0.6" 8532 8203 sources."@types/nedb-1.8.11" 8533 - sources."@types/node-14.14.16" 8204 + sources."@types/node-14.14.7" 8534 8205 sources."@types/normalize-package-data-2.4.0" 8535 - sources."@types/prettier-2.1.6" 8206 + sources."@types/prettier-2.1.5" 8536 8207 sources."@types/serialport-8.0.1" 8537 8208 sources."@types/stack-utils-2.0.0" 8538 - sources."@types/yargs-15.0.12" 8539 - sources."@types/yargs-parser-20.2.0" 8540 - (sources."@typescript-eslint/eslint-plugin-4.11.0" // { 8209 + sources."@types/yargs-15.0.9" 8210 + sources."@types/yargs-parser-15.0.0" 8211 + (sources."@typescript-eslint/eslint-plugin-4.7.0" // { 8541 8212 dependencies = [ 8542 - sources."semver-7.3.4" 8213 + sources."semver-7.3.2" 8543 8214 ]; 8544 8215 }) 8545 - sources."@typescript-eslint/experimental-utils-4.11.0" 8546 - sources."@typescript-eslint/parser-4.11.0" 8547 - sources."@typescript-eslint/scope-manager-4.11.0" 8548 - sources."@typescript-eslint/types-4.11.0" 8549 - (sources."@typescript-eslint/typescript-estree-4.11.0" // { 8216 + sources."@typescript-eslint/experimental-utils-4.7.0" 8217 + sources."@typescript-eslint/parser-4.7.0" 8218 + sources."@typescript-eslint/scope-manager-4.7.0" 8219 + sources."@typescript-eslint/types-4.7.0" 8220 + (sources."@typescript-eslint/typescript-estree-4.7.0" // { 8550 8221 dependencies = [ 8551 - sources."semver-7.3.4" 8222 + sources."semver-7.3.2" 8552 8223 ]; 8553 8224 }) 8554 - sources."@typescript-eslint/visitor-keys-4.11.0" 8225 + sources."@typescript-eslint/visitor-keys-4.7.0" 8555 8226 sources."abab-2.0.5" 8556 8227 sources."acorn-7.4.1" 8557 8228 sources."acorn-globals-6.0.0" ··· 8582 8253 sources."asn1-0.2.4" 8583 8254 sources."assert-plus-1.0.0" 8584 8255 sources."assign-symbols-1.0.0" 8585 - sources."astral-regex-2.0.0" 8256 + sources."astral-regex-1.0.0" 8586 8257 sources."async-each-1.0.3" 8587 8258 sources."asynckit-0.4.0" 8588 8259 sources."at-least-node-1.0.0" ··· 8603 8274 sources."babel-plugin-dynamic-import-node-2.3.3" 8604 8275 sources."babel-plugin-istanbul-6.0.0" 8605 8276 sources."babel-plugin-jest-hoist-26.6.2" 8606 - sources."babel-preset-current-node-syntax-1.0.1" 8277 + sources."babel-preset-current-node-syntax-1.0.0" 8607 8278 sources."babel-preset-jest-26.6.2" 8608 8279 sources."balanced-match-1.0.0" 8609 8280 (sources."base-0.11.2" // { ··· 8632 8303 ]; 8633 8304 }) 8634 8305 sources."browser-process-hrtime-1.0.0" 8635 - sources."browserslist-4.16.0" 8306 + sources."browserslist-4.14.7" 8636 8307 sources."bser-2.1.1" 8637 8308 sources."buffer-5.7.1" 8638 8309 sources."buffer-from-1.1.1" ··· 8640 8311 sources."call-bind-1.0.0" 8641 8312 sources."callsites-3.1.0" 8642 8313 sources."camelcase-5.3.1" 8643 - sources."caniuse-lite-1.0.30001170" 8314 + sources."caniuse-lite-1.0.30001157" 8644 8315 sources."capture-exit-2.0.0" 8645 8316 sources."caseless-0.12.0" 8646 8317 sources."chalk-2.4.2" ··· 8651 8322 sources."binary-extensions-2.1.0" 8652 8323 sources."braces-3.0.2" 8653 8324 sources."fill-range-7.0.1" 8325 + sources."fsevents-2.1.3" 8654 8326 sources."glob-parent-5.1.1" 8655 8327 sources."is-binary-path-2.1.0" 8656 8328 sources."is-number-7.0.0" ··· 8669 8341 (sources."cliui-6.0.0" // { 8670 8342 dependencies = [ 8671 8343 sources."ansi-regex-5.0.0" 8344 + sources."emoji-regex-8.0.0" 8672 8345 sources."is-fullwidth-code-point-3.0.0" 8673 8346 sources."string-width-4.2.0" 8674 8347 sources."strip-ansi-6.0.0" ··· 8681 8354 sources."color-convert-1.9.3" 8682 8355 sources."color-name-1.1.3" 8683 8356 sources."colorette-1.2.1" 8684 - sources."colors-1.4.0" 8685 8357 sources."combined-stream-1.0.8" 8686 8358 sources."commander-4.1.1" 8687 8359 sources."component-emitter-1.3.0" ··· 8689 8361 sources."console-control-strings-1.1.0" 8690 8362 sources."convert-source-map-1.7.0" 8691 8363 sources."copy-descriptor-0.1.1" 8692 - (sources."core-js-compat-3.8.1" // { 8364 + (sources."core-js-compat-3.7.0" // { 8693 8365 dependencies = [ 8694 8366 sources."semver-7.0.0" 8695 8367 ]; ··· 8705 8377 sources."dashdash-1.14.1" 8706 8378 sources."data-urls-2.0.0" 8707 8379 sources."debounce-1.2.0" 8708 - sources."debug-4.3.1" 8380 + sources."debug-4.2.0" 8709 8381 sources."decamelize-1.2.0" 8710 8382 sources."decimal.js-10.2.1" 8711 8383 sources."decode-uri-component-0.2.0" ··· 8734 8406 ]; 8735 8407 }) 8736 8408 sources."ecc-jsbn-0.1.2" 8737 - sources."electron-to-chromium-1.3.633" 8409 + sources."electron-to-chromium-1.3.596" 8738 8410 sources."emittery-0.7.2" 8739 - sources."emoji-regex-8.0.0" 8411 + sources."emoji-regex-7.0.3" 8740 8412 sources."end-of-stream-1.4.4" 8741 8413 sources."enquirer-2.3.6" 8742 8414 sources."error-ex-1.3.2" ··· 8751 8423 sources."type-check-0.3.2" 8752 8424 ]; 8753 8425 }) 8754 - (sources."eslint-7.16.0" // { 8426 + (sources."eslint-7.13.0" // { 8755 8427 dependencies = [ 8756 8428 sources."ansi-regex-5.0.0" 8757 8429 sources."ansi-styles-4.3.0" ··· 8764 8436 sources."has-flag-4.0.0" 8765 8437 sources."ignore-4.0.6" 8766 8438 sources."path-key-3.1.1" 8767 - sources."semver-7.3.4" 8439 + sources."semver-7.3.2" 8768 8440 sources."shebang-command-2.0.0" 8769 8441 sources."shebang-regex-3.0.0" 8770 8442 sources."strip-ansi-6.0.0" ··· 8780 8452 ]; 8781 8453 }) 8782 8454 sources."eslint-visitor-keys-2.0.0" 8783 - (sources."espree-7.3.1" // { 8455 + (sources."espree-7.3.0" // { 8784 8456 dependencies = [ 8785 8457 sources."eslint-visitor-keys-1.3.0" 8786 8458 ]; ··· 8846 8518 }) 8847 8519 sources."fast-json-stable-stringify-2.1.0" 8848 8520 sources."fast-levenshtein-2.0.6" 8849 - sources."fastq-1.10.0" 8521 + sources."fastq-1.9.0" 8850 8522 sources."fb-watchman-2.0.1" 8851 - sources."file-entry-cache-6.0.0" 8523 + sources."file-entry-cache-5.0.1" 8852 8524 sources."file-uri-to-path-1.0.0" 8853 8525 (sources."fill-range-4.0.0" // { 8854 8526 dependencies = [ ··· 8856 8528 ]; 8857 8529 }) 8858 8530 sources."find-up-4.1.0" 8859 - sources."flat-cache-3.0.4" 8860 - sources."flatted-3.1.0" 8531 + sources."flat-cache-2.0.1" 8532 + sources."flatted-2.0.2" 8861 8533 sources."for-in-1.0.2" 8862 8534 sources."forever-agent-0.6.1" 8863 8535 sources."form-data-2.3.3" ··· 8866 8538 sources."fs-extra-9.0.1" 8867 8539 sources."fs-readdir-recursive-1.1.0" 8868 8540 sources."fs.realpath-1.0.0" 8869 - sources."fsevents-2.1.3" 8541 + sources."fsevents-1.2.13" 8870 8542 sources."function-bind-1.1.1" 8871 8543 sources."functional-red-black-tree-1.0.1" 8872 8544 sources."gauge-2.7.4" 8873 8545 sources."gensync-1.0.0-beta.2" 8874 8546 sources."get-caller-file-2.0.5" 8875 - sources."get-intrinsic-1.0.2" 8547 + sources."get-intrinsic-1.0.1" 8876 8548 sources."get-package-type-0.1.0" 8877 8549 sources."get-stream-4.1.0" 8878 8550 sources."get-value-2.0.6" ··· 8909 8581 sources."kind-of-4.0.0" 8910 8582 ]; 8911 8583 }) 8584 + sources."highlight.js-10.3.2" 8912 8585 sources."hosted-git-info-2.8.8" 8913 8586 sources."html-encoding-sniffer-2.0.1" 8914 8587 sources."html-escaper-2.0.2" ··· 8917 8590 sources."iconv-lite-0.4.24" 8918 8591 sources."ieee754-1.2.1" 8919 8592 sources."ignore-5.1.8" 8920 - (sources."import-fresh-3.3.0" // { 8593 + (sources."import-fresh-3.2.2" // { 8921 8594 dependencies = [ 8922 8595 sources."resolve-from-4.0.0" 8923 8596 ]; ··· 8926 8599 sources."imurmurhash-0.1.4" 8927 8600 sources."inflight-1.0.6" 8928 8601 sources."inherits-2.0.4" 8929 - sources."ini-1.3.8" 8602 + sources."ini-1.3.5" 8930 8603 sources."interpret-1.4.0" 8931 8604 sources."ip-regex-2.1.0" 8932 8605 (sources."is-accessor-descriptor-0.1.6" // { ··· 8938 8611 sources."is-binary-path-1.0.1" 8939 8612 sources."is-buffer-1.1.6" 8940 8613 sources."is-ci-2.0.0" 8941 - sources."is-core-module-2.2.0" 8614 + sources."is-core-module-2.1.0" 8942 8615 (sources."is-data-descriptor-0.1.4" // { 8943 8616 dependencies = [ 8944 8617 sources."kind-of-3.2.2" ··· 9058 8731 sources."anymatch-3.1.1" 9059 8732 sources."braces-3.0.2" 9060 8733 sources."fill-range-7.0.1" 8734 + sources."fsevents-2.2.1" 9061 8735 sources."is-number-7.0.0" 9062 8736 sources."micromatch-4.0.2" 9063 8737 sources."to-regex-range-5.0.1" ··· 9144 8818 sources."color-convert-2.0.1" 9145 8819 sources."color-name-1.1.4" 9146 8820 sources."has-flag-4.0.0" 9147 - sources."semver-7.3.4" 8821 + sources."semver-7.3.2" 9148 8822 sources."supports-color-7.2.0" 9149 8823 ]; 9150 8824 }) ··· 9191 8865 ]; 9192 8866 }) 9193 8867 sources."js-tokens-4.0.0" 9194 - sources."js-yaml-3.14.1" 8868 + sources."js-yaml-3.14.0" 9195 8869 sources."jsbn-0.1.1" 9196 8870 sources."jsdom-16.4.0" 9197 8871 sources."jsesc-2.5.2" ··· 9215 8889 sources."locate-path-5.0.0" 9216 8890 sources."lodash-4.17.20" 9217 8891 sources."lodash.sortby-4.7.0" 9218 - sources."lru-cache-6.0.0" 9219 8892 sources."lunr-2.3.9" 9220 8893 sources."make-dir-2.1.0" 9221 8894 sources."makeerror-1.0.11" 9222 8895 sources."map-cache-0.2.2" 9223 8896 sources."map-visit-1.0.0" 9224 - sources."marked-1.2.7" 8897 + sources."marked-1.2.3" 9225 8898 sources."merge-stream-2.0.0" 9226 8899 sources."merge2-1.4.1" 9227 8900 sources."micromatch-3.1.10" ··· 9232 8905 sources."minimatch-3.0.4" 9233 8906 sources."minimist-1.2.5" 9234 8907 sources."mixin-deep-2.0.1" 8908 + sources."mkdirp-0.5.5" 9235 8909 sources."mkdirp-classic-0.5.3" 9236 8910 sources."ms-2.1.2" 9237 8911 sources."nan-2.14.2" ··· 9240 8914 sources."natural-compare-1.4.0" 9241 8915 sources."neo-async-2.6.2" 9242 8916 sources."nice-try-1.0.5" 9243 - sources."node-abi-2.19.3" 8917 + sources."node-abi-2.19.1" 9244 8918 sources."node-int64-0.4.0" 9245 8919 sources."node-modules-regexp-1.0.0" 9246 - (sources."node-notifier-8.0.1" // { 8920 + (sources."node-notifier-8.0.0" // { 9247 8921 dependencies = [ 9248 - sources."semver-7.3.4" 8922 + sources."semver-7.3.2" 9249 8923 sources."which-2.0.2" 9250 8924 ]; 9251 8925 }) 9252 - sources."node-releases-1.1.67" 8926 + sources."node-releases-1.1.66" 9253 8927 sources."noop-logger-0.1.1" 9254 8928 sources."normalize-package-data-2.5.0" 9255 8929 sources."normalize-path-3.0.0" ··· 9271 8945 sources."object.pick-1.3.0" 9272 8946 sources."once-1.4.0" 9273 8947 sources."onetime-5.1.2" 9274 - (sources."onigasm-2.2.5" // { 9275 - dependencies = [ 9276 - sources."lru-cache-5.1.1" 9277 - sources."yallist-3.1.1" 9278 - ]; 9279 - }) 9280 8948 sources."optionator-0.9.1" 9281 - sources."p-each-series-2.2.0" 8949 + sources."p-each-series-2.1.0" 9282 8950 sources."p-finally-1.0.0" 9283 8951 sources."p-limit-2.3.0" 9284 8952 sources."p-locate-4.1.0" ··· 9299 8967 sources."pirates-4.0.1" 9300 8968 sources."pkg-dir-4.2.0" 9301 8969 sources."posix-character-classes-0.1.1" 9302 - sources."prebuild-install-6.0.0" 8970 + sources."prebuild-install-5.3.6" 9303 8971 sources."prelude-ls-1.2.1" 9304 8972 (sources."pretty-format-26.6.2" // { 9305 8973 dependencies = [ ··· 9363 9031 sources."resolve-url-0.2.1" 9364 9032 sources."ret-0.1.15" 9365 9033 sources."reusify-1.0.4" 9366 - sources."rimraf-3.0.2" 9034 + sources."rimraf-2.6.3" 9367 9035 sources."rsvp-4.8.5" 9368 9036 sources."run-parallel-1.1.10" 9369 9037 sources."safe-buffer-5.1.2" ··· 9372 9040 sources."sane-4.1.0" 9373 9041 sources."saxes-5.0.1" 9374 9042 sources."semver-5.7.1" 9375 - sources."serialport-9.0.4" 9043 + sources."serialport-9.0.2" 9376 9044 sources."set-blocking-2.0.0" 9377 9045 (sources."set-value-2.0.1" // { 9378 9046 dependencies = [ ··· 9383 9051 sources."shebang-regex-1.0.0" 9384 9052 sources."shelljs-0.8.4" 9385 9053 sources."shellwords-0.1.1" 9386 - sources."shiki-0.2.7" 9387 - sources."shiki-languages-0.2.7" 9388 - sources."shiki-themes-0.2.7" 9389 9054 sources."signal-exit-3.0.3" 9390 9055 sources."simple-concat-1.0.1" 9391 9056 sources."simple-get-3.1.0" 9392 9057 sources."sisteransi-1.0.5" 9393 9058 sources."slash-2.0.0" 9394 - (sources."slice-ansi-4.0.0" // { 9059 + (sources."slice-ansi-2.1.0" // { 9395 9060 dependencies = [ 9396 - sources."ansi-styles-4.3.0" 9397 - sources."color-convert-2.0.1" 9398 - sources."color-name-1.1.4" 9399 - sources."is-fullwidth-code-point-3.0.0" 9061 + sources."is-fullwidth-code-point-2.0.0" 9400 9062 ]; 9401 9063 }) 9402 9064 sources."slip-1.0.2" ··· 9432 9094 sources."spdx-correct-3.1.1" 9433 9095 sources."spdx-exceptions-2.3.0" 9434 9096 sources."spdx-expression-parse-3.0.1" 9435 - sources."spdx-license-ids-3.0.7" 9097 + sources."spdx-license-ids-3.0.6" 9436 9098 sources."split-string-3.1.0" 9437 9099 sources."sprintf-js-1.0.3" 9438 9100 sources."sshpk-1.16.1" ··· 9468 9130 ]; 9469 9131 }) 9470 9132 sources."symbol-tree-3.2.4" 9471 - (sources."table-6.0.4" // { 9133 + (sources."table-5.4.6" // { 9472 9134 dependencies = [ 9473 - sources."ansi-regex-5.0.0" 9474 - sources."is-fullwidth-code-point-3.0.0" 9475 - sources."string-width-4.2.0" 9476 - sources."strip-ansi-6.0.0" 9135 + sources."ansi-regex-4.1.0" 9136 + sources."is-fullwidth-code-point-2.0.0" 9137 + sources."string-width-3.1.0" 9138 + sources."strip-ansi-5.2.0" 9477 9139 ]; 9478 9140 }) 9479 9141 sources."tar-fs-2.1.1" ··· 9505 9167 sources."type-detect-4.0.8" 9506 9168 sources."type-fest-0.8.1" 9507 9169 sources."typedarray-to-buffer-3.1.5" 9508 - sources."typedoc-0.20.0-beta.30" 9509 - sources."typedoc-default-themes-0.12.0-beta.10" 9510 - sources."typedoc-plugin-markdown-3.1.1" 9170 + (sources."typedoc-0.19.2" // { 9171 + dependencies = [ 9172 + sources."semver-7.3.2" 9173 + ]; 9174 + }) 9175 + sources."typedoc-default-themes-0.11.4" 9176 + sources."typedoc-plugin-markdown-3.0.11" 9511 9177 sources."typedoc-plugin-no-inherit-1.2.0" 9512 9178 sources."typedoc-plugin-sourcefile-url-1.0.6" 9513 - sources."typescript-4.1.3" 9514 - sources."uglify-js-3.12.3" 9179 + sources."typescript-4.0.5" 9180 + sources."uglify-js-3.11.6" 9515 9181 sources."unicode-canonical-property-names-ecmascript-1.0.4" 9516 9182 sources."unicode-match-property-ecmascript-1.0.4" 9517 9183 sources."unicode-match-property-value-ecmascript-1.2.0" ··· 9533 9199 sources."urix-0.1.0" 9534 9200 sources."use-3.1.1" 9535 9201 sources."util-deprecate-1.0.2" 9536 - sources."uuid-8.3.2" 9202 + sources."uuid-8.3.1" 9537 9203 sources."v8-compile-cache-2.2.0" 9538 - (sources."v8-to-istanbul-7.1.0" // { 9204 + (sources."v8-to-istanbul-7.0.0" // { 9539 9205 dependencies = [ 9540 9206 sources."source-map-0.7.3" 9541 9207 ]; 9542 9208 }) 9543 9209 sources."validate-npm-package-license-3.0.4" 9544 9210 sources."verror-1.10.0" 9545 - sources."vscode-textmate-5.2.0" 9546 9211 sources."w3c-hr-time-1.0.2" 9547 9212 sources."w3c-xmlserializer-2.0.0" 9548 9213 sources."walker-1.0.7" ··· 9562 9227 sources."ansi-styles-4.3.0" 9563 9228 sources."color-convert-2.0.1" 9564 9229 sources."color-name-1.1.4" 9230 + sources."emoji-regex-8.0.0" 9565 9231 sources."is-fullwidth-code-point-3.0.0" 9566 9232 sources."string-width-4.2.0" 9567 9233 sources."strip-ansi-6.0.0" 9568 9234 ]; 9569 9235 }) 9570 9236 sources."wrappy-1.0.2" 9237 + sources."write-1.0.3" 9571 9238 sources."write-file-atomic-3.0.3" 9572 - sources."ws-7.4.1" 9239 + sources."ws-7.4.0" 9573 9240 sources."xml-name-validator-3.0.0" 9574 9241 sources."xmlchars-2.2.0" 9575 - sources."y18n-4.0.1" 9576 - sources."yallist-4.0.0" 9242 + sources."y18n-4.0.0" 9577 9243 (sources."yargs-15.4.1" // { 9578 9244 dependencies = [ 9579 9245 sources."ansi-regex-5.0.0" 9246 + sources."emoji-regex-8.0.0" 9580 9247 sources."is-fullwidth-code-point-3.0.0" 9581 9248 sources."string-width-4.2.0" 9582 9249 sources."strip-ansi-6.0.0" ··· 9585 9252 sources."yargs-parser-18.1.3" 9586 9253 ]; 9587 9254 }) 9588 - (sources."zigbee-herdsman-converters-14.0.3" // { 9255 + (sources."zigbee-herdsman-converters-13.0.7" // { 9589 9256 dependencies = [ 9590 - sources."@babel/code-frame-7.12.11" 9591 - (sources."@babel/core-7.12.10" // { 9257 + sources."@babel/code-frame-7.10.4" 9258 + (sources."@babel/core-7.12.9" // { 9592 9259 dependencies = [ 9593 9260 sources."semver-5.7.1" 9594 9261 sources."source-map-0.5.7" 9595 9262 ]; 9596 9263 }) 9597 - (sources."@babel/generator-7.12.11" // { 9264 + (sources."@babel/generator-7.12.5" // { 9598 9265 dependencies = [ 9599 9266 sources."source-map-0.5.7" 9600 9267 ]; 9601 9268 }) 9602 - sources."@babel/helper-function-name-7.12.11" 9603 - sources."@babel/helper-get-function-arity-7.12.10" 9269 + sources."@babel/helper-function-name-7.10.4" 9270 + sources."@babel/helper-get-function-arity-7.10.4" 9604 9271 sources."@babel/helper-member-expression-to-functions-7.12.7" 9605 9272 sources."@babel/helper-module-imports-7.12.5" 9606 9273 sources."@babel/helper-module-transforms-7.12.1" 9607 - sources."@babel/helper-optimise-call-expression-7.12.10" 9274 + sources."@babel/helper-optimise-call-expression-7.12.7" 9608 9275 sources."@babel/helper-plugin-utils-7.10.4" 9609 - sources."@babel/helper-replace-supers-7.12.11" 9276 + sources."@babel/helper-replace-supers-7.12.5" 9610 9277 sources."@babel/helper-simple-access-7.12.1" 9611 - sources."@babel/helper-split-export-declaration-7.12.11" 9612 - sources."@babel/helper-validator-identifier-7.12.11" 9278 + sources."@babel/helper-split-export-declaration-7.11.0" 9279 + sources."@babel/helper-validator-identifier-7.10.4" 9613 9280 sources."@babel/helpers-7.12.5" 9614 9281 (sources."@babel/highlight-7.10.4" // { 9615 9282 dependencies = [ 9616 9283 sources."chalk-2.4.2" 9617 9284 ]; 9618 9285 }) 9619 - sources."@babel/parser-7.12.11" 9286 + sources."@babel/parser-7.12.7" 9620 9287 sources."@babel/plugin-syntax-async-generators-7.8.4" 9621 9288 sources."@babel/plugin-syntax-bigint-7.8.3" 9622 9289 sources."@babel/plugin-syntax-class-properties-7.12.1" ··· 9630 9297 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 9631 9298 sources."@babel/plugin-syntax-top-level-await-7.12.1" 9632 9299 sources."@babel/template-7.12.7" 9633 - (sources."@babel/traverse-7.12.12" // { 9300 + (sources."@babel/traverse-7.12.9" // { 9634 9301 dependencies = [ 9635 9302 sources."globals-11.12.0" 9636 9303 ]; 9637 9304 }) 9638 - sources."@babel/types-7.12.12" 9305 + sources."@babel/types-7.12.7" 9639 9306 sources."@bcoe/v8-coverage-0.2.3" 9640 9307 sources."@cnakazawa/watch-1.0.4" 9641 - sources."@eslint/eslintrc-0.2.2" 9308 + sources."@eslint/eslintrc-0.2.1" 9642 9309 (sources."@istanbuljs/load-nyc-config-1.1.0" // { 9643 9310 dependencies = [ 9644 9311 sources."resolve-from-5.0.0" ··· 9646 9313 }) 9647 9314 sources."@istanbuljs/schema-0.1.2" 9648 9315 sources."@jest/console-26.6.2" 9649 - sources."@jest/core-26.6.3" 9316 + (sources."@jest/core-26.6.3" // { 9317 + dependencies = [ 9318 + sources."rimraf-3.0.2" 9319 + ]; 9320 + }) 9650 9321 sources."@jest/environment-26.6.2" 9651 9322 sources."@jest/fake-timers-26.6.2" 9652 9323 sources."@jest/globals-26.6.2" ··· 9664 9335 sources."@types/babel__core-7.1.12" 9665 9336 sources."@types/babel__generator-7.6.2" 9666 9337 sources."@types/babel__template-7.4.0" 9667 - sources."@types/babel__traverse-7.11.0" 9338 + sources."@types/babel__traverse-7.0.16" 9668 9339 sources."@types/graceful-fs-4.1.4" 9669 9340 sources."@types/istanbul-lib-coverage-2.0.3" 9670 9341 sources."@types/istanbul-lib-report-3.0.0" 9671 9342 sources."@types/istanbul-reports-3.0.0" 9672 9343 sources."@types/json-schema-7.0.6" 9673 - sources."@types/node-14.14.16" 9344 + sources."@types/node-14.14.10" 9674 9345 sources."@types/normalize-package-data-2.4.0" 9675 - sources."@types/prettier-2.1.6" 9346 + sources."@types/prettier-2.1.5" 9676 9347 sources."@types/stack-utils-2.0.0" 9677 - sources."@types/yargs-15.0.12" 9678 - sources."@types/yargs-parser-20.2.0" 9679 - sources."@typescript-eslint/experimental-utils-4.11.0" 9680 - sources."@typescript-eslint/scope-manager-4.11.0" 9681 - sources."@typescript-eslint/types-4.11.0" 9682 - sources."@typescript-eslint/typescript-estree-4.11.0" 9683 - sources."@typescript-eslint/visitor-keys-4.11.0" 9348 + sources."@types/yargs-15.0.10" 9349 + sources."@types/yargs-parser-15.0.0" 9350 + sources."@typescript-eslint/experimental-utils-4.8.2" 9351 + sources."@typescript-eslint/scope-manager-4.8.2" 9352 + sources."@typescript-eslint/types-4.8.2" 9353 + sources."@typescript-eslint/typescript-estree-4.8.2" 9354 + sources."@typescript-eslint/visitor-keys-4.8.2" 9684 9355 sources."abab-2.0.5" 9685 9356 sources."acorn-7.4.1" 9686 9357 sources."acorn-globals-6.0.0" ··· 9706 9377 sources."asn1-0.2.4" 9707 9378 sources."assert-plus-1.0.0" 9708 9379 sources."assign-symbols-1.0.0" 9709 - sources."astral-regex-2.0.0" 9380 + sources."astral-regex-1.0.0" 9710 9381 sources."asynckit-0.4.0" 9711 9382 sources."atob-2.1.2" 9712 9383 sources."aws-sign2-0.7.0" 9713 9384 sources."aws4-1.11.0" 9714 - sources."axios-0.21.1" 9385 + sources."axios-0.21.0" 9715 9386 sources."babel-jest-26.6.3" 9716 9387 sources."babel-plugin-istanbul-6.0.0" 9717 9388 sources."babel-plugin-jest-hoist-26.6.2" 9718 - sources."babel-preset-current-node-syntax-1.0.1" 9389 + sources."babel-preset-current-node-syntax-1.0.0" 9719 9390 sources."babel-preset-jest-26.6.2" 9720 9391 sources."balanced-match-1.0.0" 9721 9392 (sources."base-0.11.2" // { ··· 9758 9429 sources."define-property-0.2.5" 9759 9430 ]; 9760 9431 }) 9761 - sources."cliui-6.0.0" 9432 + (sources."cliui-6.0.0" // { 9433 + dependencies = [ 9434 + sources."emoji-regex-8.0.0" 9435 + sources."is-fullwidth-code-point-3.0.0" 9436 + sources."string-width-4.2.0" 9437 + ]; 9438 + }) 9762 9439 sources."co-4.6.0" 9763 9440 sources."collect-v8-coverage-1.0.1" 9764 9441 sources."collection-visit-1.0.0" ··· 9808 9485 }) 9809 9486 sources."ecc-jsbn-0.1.2" 9810 9487 sources."emittery-0.7.2" 9811 - sources."emoji-regex-8.0.0" 9488 + sources."emoji-regex-7.0.3" 9812 9489 sources."end-of-stream-1.4.4" 9813 9490 sources."enquirer-2.3.6" 9814 9491 sources."error-ex-1.3.2" ··· 9821 9498 sources."type-check-0.3.2" 9822 9499 ]; 9823 9500 }) 9824 - sources."eslint-7.16.0" 9501 + sources."eslint-7.14.0" 9825 9502 sources."eslint-config-google-0.14.0" 9826 9503 sources."eslint-plugin-jest-24.1.3" 9827 9504 sources."eslint-scope-5.1.1" ··· 9831 9508 ]; 9832 9509 }) 9833 9510 sources."eslint-visitor-keys-2.0.0" 9834 - (sources."espree-7.3.1" // { 9511 + (sources."espree-7.3.0" // { 9835 9512 dependencies = [ 9836 9513 sources."eslint-visitor-keys-1.3.0" 9837 9514 ]; ··· 9896 9573 sources."fast-glob-3.2.4" 9897 9574 sources."fast-json-stable-stringify-2.1.0" 9898 9575 sources."fast-levenshtein-2.0.6" 9899 - sources."fastq-1.10.0" 9576 + sources."fastq-1.9.0" 9900 9577 sources."fb-watchman-2.0.1" 9901 - sources."file-entry-cache-6.0.0" 9578 + sources."file-entry-cache-5.0.1" 9902 9579 sources."fill-range-7.0.1" 9903 9580 sources."find-up-4.1.0" 9904 - sources."flat-cache-3.0.4" 9905 - sources."flatted-3.1.0" 9906 - sources."follow-redirects-1.13.1" 9581 + sources."flat-cache-2.0.1" 9582 + sources."flatted-2.0.2" 9583 + sources."follow-redirects-1.13.0" 9907 9584 sources."for-in-1.0.2" 9908 9585 sources."forever-agent-0.6.1" 9909 9586 sources."form-data-2.3.3" ··· 9953 9630 sources."iconv-lite-0.4.24" 9954 9631 sources."ieee754-1.2.1" 9955 9632 sources."ignore-4.0.6" 9956 - sources."import-fresh-3.3.0" 9633 + sources."import-fresh-3.2.2" 9957 9634 sources."import-local-3.0.2" 9958 9635 sources."imurmurhash-0.1.4" 9959 9636 sources."inflight-1.0.6" ··· 9981 9658 sources."is-docker-2.1.1" 9982 9659 sources."is-extendable-0.1.1" 9983 9660 sources."is-extglob-2.1.1" 9984 - sources."is-fullwidth-code-point-3.0.0" 9661 + sources."is-fullwidth-code-point-2.0.0" 9985 9662 sources."is-generator-fn-2.1.0" 9986 9663 sources."is-glob-4.0.1" 9987 9664 sources."is-number-7.0.0" ··· 10057 9734 ]; 10058 9735 }) 10059 9736 sources."js-tokens-4.0.0" 10060 - sources."js-yaml-3.14.1" 9737 + sources."js-yaml-3.14.0" 10061 9738 sources."jsbn-0.1.1" 10062 9739 sources."jsdom-16.4.0" 10063 9740 sources."jsesc-2.5.2" ··· 10076 9753 sources."locate-path-5.0.0" 10077 9754 sources."lodash-4.17.20" 10078 9755 sources."lodash.sortby-4.7.0" 10079 - sources."lru-cache-6.0.0" 10080 9756 (sources."make-dir-3.1.0" // { 10081 9757 dependencies = [ 10082 9758 sources."semver-6.3.0" ··· 10098 9774 sources."is-extendable-1.0.1" 10099 9775 ]; 10100 9776 }) 9777 + sources."mkdirp-0.5.5" 10101 9778 sources."ms-2.1.2" 10102 9779 sources."nanomatch-1.2.13" 10103 9780 sources."natural-compare-1.4.0" 10104 9781 sources."nice-try-1.0.5" 10105 9782 sources."node-int64-0.4.0" 10106 9783 sources."node-modules-regexp-1.0.0" 10107 - sources."node-notifier-8.0.1" 9784 + sources."node-notifier-8.0.0" 10108 9785 (sources."normalize-package-data-2.5.0" // { 10109 9786 dependencies = [ 10110 9787 sources."semver-5.7.1" ··· 10199 9876 sources."resolve-url-0.2.1" 10200 9877 sources."ret-0.1.15" 10201 9878 sources."reusify-1.0.4" 10202 - sources."rimraf-3.0.2" 9879 + sources."rimraf-2.6.3" 10203 9880 sources."rsvp-4.8.5" 10204 9881 sources."run-parallel-1.1.10" 10205 9882 sources."safe-buffer-5.2.1" ··· 10229 9906 ]; 10230 9907 }) 10231 9908 sources."saxes-5.0.1" 10232 - sources."semver-7.3.4" 9909 + sources."semver-7.3.2" 10233 9910 sources."set-blocking-2.0.0" 10234 9911 (sources."set-value-2.0.1" // { 10235 9912 dependencies = [ ··· 10242 9919 sources."signal-exit-3.0.3" 10243 9920 sources."sisteransi-1.0.5" 10244 9921 sources."slash-3.0.0" 10245 - (sources."slice-ansi-4.0.0" // { 10246 - dependencies = [ 10247 - sources."ansi-styles-4.3.0" 10248 - sources."color-convert-2.0.1" 10249 - sources."color-name-1.1.4" 10250 - ]; 10251 - }) 9922 + sources."slice-ansi-2.1.0" 10252 9923 (sources."snapdragon-0.8.2" // { 10253 9924 dependencies = [ 10254 9925 sources."debug-2.6.9" ··· 10278 9949 sources."spdx-correct-3.1.1" 10279 9950 sources."spdx-exceptions-2.3.0" 10280 9951 sources."spdx-expression-parse-3.0.1" 10281 - sources."spdx-license-ids-3.0.7" 9952 + sources."spdx-license-ids-3.0.6" 10282 9953 sources."split-string-3.1.0" 10283 9954 sources."sprintf-js-1.0.3" 10284 9955 sources."sshpk-1.16.1" ··· 10294 9965 }) 10295 9966 sources."stealthy-require-1.1.1" 10296 9967 sources."string-length-4.0.1" 10297 - sources."string-width-4.2.0" 9968 + (sources."string-width-3.1.0" // { 9969 + dependencies = [ 9970 + sources."ansi-regex-4.1.0" 9971 + sources."strip-ansi-5.2.0" 9972 + ]; 9973 + }) 10298 9974 sources."string_decoder-1.3.0" 10299 9975 sources."strip-ansi-6.0.0" 10300 9976 sources."strip-bom-4.0.0" ··· 10309 9985 ]; 10310 9986 }) 10311 9987 sources."symbol-tree-3.2.4" 10312 - sources."table-6.0.4" 9988 + sources."table-5.4.6" 10313 9989 sources."tar-stream-2.1.4" 10314 9990 sources."terminal-link-2.1.1" 10315 9991 sources."test-exclude-6.0.0" ··· 10349 10025 sources."urix-0.1.0" 10350 10026 sources."use-3.1.1" 10351 10027 sources."util-deprecate-1.0.2" 10352 - sources."uuid-8.3.2" 10028 + sources."uuid-8.3.1" 10353 10029 sources."v8-compile-cache-2.2.0" 10354 - (sources."v8-to-istanbul-7.1.0" // { 10030 + (sources."v8-to-istanbul-7.0.0" // { 10355 10031 dependencies = [ 10356 10032 sources."source-map-0.7.3" 10357 10033 ]; ··· 10373 10049 sources."ansi-styles-4.3.0" 10374 10050 sources."color-convert-2.0.1" 10375 10051 sources."color-name-1.1.4" 10052 + sources."emoji-regex-8.0.0" 10053 + sources."is-fullwidth-code-point-3.0.0" 10054 + sources."string-width-4.2.0" 10376 10055 ]; 10377 10056 }) 10378 10057 sources."wrappy-1.0.2" 10058 + sources."write-1.0.3" 10379 10059 sources."write-file-atomic-3.0.3" 10380 - sources."ws-7.4.1" 10060 + sources."ws-7.4.0" 10381 10061 sources."xml-name-validator-3.0.0" 10382 10062 sources."xmlchars-2.2.0" 10383 - sources."y18n-4.0.1" 10384 - sources."yallist-4.0.0" 10385 - sources."yargs-15.4.1" 10386 - sources."yargs-parser-18.1.3" 10387 - (sources."zigbee-herdsman-0.13.41" // { 10063 + sources."y18n-4.0.0" 10064 + (sources."yargs-15.4.1" // { 10388 10065 dependencies = [ 10389 - sources."@babel/cli-7.12.8" 10390 - sources."@babel/code-frame-7.10.4" 10391 - sources."@babel/compat-data-7.12.7" 10392 - sources."@babel/core-7.12.9" 10393 - sources."@babel/generator-7.12.5" 10394 - sources."@babel/helper-annotate-as-pure-7.10.4" 10395 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" 10396 - sources."@babel/helper-compilation-targets-7.12.5" 10397 - sources."@babel/helper-create-class-features-plugin-7.12.1" 10398 - sources."@babel/helper-create-regexp-features-plugin-7.12.7" 10399 - sources."@babel/helper-define-map-7.10.5" 10400 - sources."@babel/helper-explode-assignable-expression-7.12.1" 10401 - sources."@babel/helper-function-name-7.10.4" 10402 - sources."@babel/helper-get-function-arity-7.10.4" 10403 - sources."@babel/helper-hoist-variables-7.10.4" 10404 - sources."@babel/helper-member-expression-to-functions-7.12.7" 10405 - sources."@babel/helper-module-imports-7.12.5" 10406 - sources."@babel/helper-module-transforms-7.12.1" 10407 - sources."@babel/helper-optimise-call-expression-7.12.7" 10408 - sources."@babel/helper-plugin-utils-7.10.4" 10409 - sources."@babel/helper-remap-async-to-generator-7.12.1" 10410 - sources."@babel/helper-replace-supers-7.12.5" 10411 - sources."@babel/helper-simple-access-7.12.1" 10412 - sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1" 10413 - sources."@babel/helper-split-export-declaration-7.11.0" 10414 - sources."@babel/helper-validator-identifier-7.10.4" 10415 - sources."@babel/helper-validator-option-7.12.1" 10416 - sources."@babel/helper-wrap-function-7.12.3" 10417 - sources."@babel/helpers-7.12.5" 10418 - sources."@babel/highlight-7.10.4" 10419 - sources."@babel/parser-7.12.7" 10420 - sources."@babel/plugin-proposal-async-generator-functions-7.12.1" 10421 - sources."@babel/plugin-proposal-class-properties-7.12.1" 10422 - sources."@babel/plugin-proposal-dynamic-import-7.12.1" 10423 - sources."@babel/plugin-proposal-export-namespace-from-7.12.1" 10424 - sources."@babel/plugin-proposal-json-strings-7.12.1" 10425 - sources."@babel/plugin-proposal-logical-assignment-operators-7.12.1" 10426 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" 10427 - sources."@babel/plugin-proposal-numeric-separator-7.12.7" 10428 - sources."@babel/plugin-proposal-object-rest-spread-7.12.1" 10429 - sources."@babel/plugin-proposal-optional-catch-binding-7.12.1" 10430 - sources."@babel/plugin-proposal-optional-chaining-7.12.7" 10431 - sources."@babel/plugin-proposal-private-methods-7.12.1" 10432 - sources."@babel/plugin-proposal-unicode-property-regex-7.12.1" 10433 - sources."@babel/plugin-syntax-async-generators-7.8.4" 10434 - sources."@babel/plugin-syntax-bigint-7.8.3" 10435 - sources."@babel/plugin-syntax-class-properties-7.12.1" 10436 - sources."@babel/plugin-syntax-dynamic-import-7.8.3" 10437 - sources."@babel/plugin-syntax-export-namespace-from-7.8.3" 10438 - sources."@babel/plugin-syntax-import-meta-7.10.4" 10439 - sources."@babel/plugin-syntax-json-strings-7.8.3" 10440 - sources."@babel/plugin-syntax-logical-assignment-operators-7.10.4" 10441 - sources."@babel/plugin-syntax-nullish-coalescing-operator-7.8.3" 10442 - sources."@babel/plugin-syntax-numeric-separator-7.10.4" 10443 - sources."@babel/plugin-syntax-object-rest-spread-7.8.3" 10444 - sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 10445 - sources."@babel/plugin-syntax-optional-chaining-7.8.3" 10446 - sources."@babel/plugin-syntax-top-level-await-7.12.1" 10447 - sources."@babel/plugin-syntax-typescript-7.12.1" 10448 - sources."@babel/plugin-transform-arrow-functions-7.12.1" 10449 - sources."@babel/plugin-transform-async-to-generator-7.12.1" 10450 - sources."@babel/plugin-transform-block-scoped-functions-7.12.1" 10451 - sources."@babel/plugin-transform-block-scoping-7.12.1" 10452 - sources."@babel/plugin-transform-classes-7.12.1" 10453 - sources."@babel/plugin-transform-computed-properties-7.12.1" 10454 - sources."@babel/plugin-transform-destructuring-7.12.1" 10455 - sources."@babel/plugin-transform-dotall-regex-7.12.1" 10456 - sources."@babel/plugin-transform-duplicate-keys-7.12.1" 10457 - sources."@babel/plugin-transform-exponentiation-operator-7.12.1" 10458 - sources."@babel/plugin-transform-for-of-7.12.1" 10459 - sources."@babel/plugin-transform-function-name-7.12.1" 10460 - sources."@babel/plugin-transform-literals-7.12.1" 10461 - sources."@babel/plugin-transform-member-expression-literals-7.12.1" 10462 - sources."@babel/plugin-transform-modules-amd-7.12.1" 10463 - sources."@babel/plugin-transform-modules-commonjs-7.12.1" 10464 - sources."@babel/plugin-transform-modules-systemjs-7.12.1" 10465 - sources."@babel/plugin-transform-modules-umd-7.12.1" 10466 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.1" 10467 - sources."@babel/plugin-transform-new-target-7.12.1" 10468 - sources."@babel/plugin-transform-object-super-7.12.1" 10469 - sources."@babel/plugin-transform-parameters-7.12.1" 10470 - sources."@babel/plugin-transform-property-literals-7.12.1" 10471 - sources."@babel/plugin-transform-regenerator-7.12.1" 10472 - sources."@babel/plugin-transform-reserved-words-7.12.1" 10473 - sources."@babel/plugin-transform-shorthand-properties-7.12.1" 10474 - sources."@babel/plugin-transform-spread-7.12.1" 10475 - sources."@babel/plugin-transform-sticky-regex-7.12.7" 10476 - sources."@babel/plugin-transform-template-literals-7.12.1" 10477 - sources."@babel/plugin-transform-typeof-symbol-7.12.1" 10478 - sources."@babel/plugin-transform-typescript-7.12.1" 10479 - sources."@babel/plugin-transform-unicode-escapes-7.12.1" 10480 - sources."@babel/plugin-transform-unicode-regex-7.12.1" 10481 - sources."@babel/preset-env-7.12.7" 10482 - sources."@babel/preset-modules-0.1.4" 10483 - sources."@babel/preset-typescript-7.12.7" 10484 - sources."@babel/runtime-7.12.5" 10485 - sources."@babel/template-7.12.7" 10486 - sources."@babel/traverse-7.12.9" 10487 - sources."@babel/types-7.12.7" 10488 - sources."@bcoe/v8-coverage-0.2.3" 10489 - sources."@cnakazawa/watch-1.0.4" 10490 - (sources."@eslint/eslintrc-0.2.2" // { 10491 - dependencies = [ 10492 - sources."globals-12.4.0" 10493 - sources."ignore-4.0.6" 10494 - sources."strip-json-comments-3.1.1" 10495 - ]; 10496 - }) 10497 - sources."@istanbuljs/load-nyc-config-1.1.0" 10498 - sources."@istanbuljs/schema-0.1.2" 10499 - (sources."@jest/console-26.6.2" // { 10500 - dependencies = [ 10501 - sources."ansi-styles-4.3.0" 10502 - sources."chalk-4.1.0" 10503 - sources."color-convert-2.0.1" 10504 - sources."color-name-1.1.4" 10505 - sources."has-flag-4.0.0" 10506 - sources."slash-3.0.0" 10507 - sources."supports-color-7.2.0" 10508 - ]; 10509 - }) 10510 - (sources."@jest/core-26.6.3" // { 10511 - dependencies = [ 10512 - sources."ansi-regex-5.0.0" 10513 - sources."ansi-styles-4.3.0" 10514 - sources."braces-3.0.2" 10515 - sources."chalk-4.1.0" 10516 - sources."color-convert-2.0.1" 10517 - sources."color-name-1.1.4" 10518 - sources."fill-range-7.0.1" 10519 - sources."has-flag-4.0.0" 10520 - sources."is-number-7.0.0" 10521 - sources."micromatch-4.0.2" 10522 - sources."slash-3.0.0" 10523 - sources."strip-ansi-6.0.0" 10524 - sources."supports-color-7.2.0" 10525 - sources."to-regex-range-5.0.1" 10526 - ]; 10527 - }) 10528 - sources."@jest/environment-26.6.2" 10529 - sources."@jest/fake-timers-26.6.2" 10530 - sources."@jest/globals-26.6.2" 10531 - (sources."@jest/reporters-26.6.2" // { 10532 - dependencies = [ 10533 - sources."ansi-styles-4.3.0" 10534 - sources."chalk-4.1.0" 10535 - sources."color-convert-2.0.1" 10536 - sources."color-name-1.1.4" 10537 - sources."has-flag-4.0.0" 10538 - sources."slash-3.0.0" 10539 - sources."source-map-0.6.1" 10540 - sources."supports-color-7.2.0" 10541 - ]; 10542 - }) 10543 - (sources."@jest/source-map-26.6.2" // { 10544 - dependencies = [ 10545 - sources."source-map-0.6.1" 10546 - ]; 10547 - }) 10548 - sources."@jest/test-result-26.6.2" 10549 - sources."@jest/test-sequencer-26.6.3" 10550 - (sources."@jest/transform-26.6.2" // { 10551 - dependencies = [ 10552 - sources."ansi-styles-4.3.0" 10553 - sources."braces-3.0.2" 10554 - sources."chalk-4.1.0" 10555 - sources."color-convert-2.0.1" 10556 - sources."color-name-1.1.4" 10557 - sources."fill-range-7.0.1" 10558 - sources."has-flag-4.0.0" 10559 - sources."is-number-7.0.0" 10560 - sources."micromatch-4.0.2" 10561 - sources."slash-3.0.0" 10562 - sources."source-map-0.6.1" 10563 - sources."supports-color-7.2.0" 10564 - sources."to-regex-range-5.0.1" 10565 - ]; 10566 - }) 10567 - (sources."@jest/types-26.6.2" // { 10568 - dependencies = [ 10569 - sources."ansi-styles-4.3.0" 10570 - sources."chalk-4.1.0" 10571 - sources."color-convert-2.0.1" 10572 - sources."color-name-1.1.4" 10573 - sources."has-flag-4.0.0" 10574 - sources."supports-color-7.2.0" 10575 - ]; 10576 - }) 10577 - sources."@nicolo-ribaudo/chokidar-2-2.1.8-no-fsevents" 10578 - sources."@nodelib/fs.scandir-2.1.3" 10579 - sources."@nodelib/fs.stat-2.0.3" 10580 - sources."@nodelib/fs.walk-1.2.4" 10581 - sources."@serialport/binding-abstract-9.0.2" 10582 - sources."@serialport/binding-mock-9.0.2" 10583 - sources."@serialport/bindings-9.0.3" 10584 - sources."@serialport/parser-byte-length-9.0.1" 10585 - sources."@serialport/parser-cctalk-9.0.1" 10586 - sources."@serialport/parser-delimiter-9.0.1" 10587 - sources."@serialport/parser-readline-9.0.1" 10588 - sources."@serialport/parser-ready-9.0.1" 10589 - sources."@serialport/parser-regex-9.0.1" 10590 - sources."@serialport/stream-9.0.2" 10591 - sources."@sinonjs/commons-1.8.1" 10592 - sources."@sinonjs/fake-timers-6.0.1" 10593 - sources."@types/babel__core-7.1.12" 10594 - sources."@types/babel__generator-7.6.2" 10595 - sources."@types/babel__template-7.4.0" 10596 - sources."@types/babel__traverse-7.11.0" 10597 - sources."@types/debounce-1.2.0" 10598 - sources."@types/debug-4.1.5" 10599 - sources."@types/graceful-fs-4.1.4" 10600 - sources."@types/istanbul-lib-coverage-2.0.3" 10601 - sources."@types/istanbul-lib-report-3.0.0" 10602 - sources."@types/istanbul-reports-3.0.0" 10603 - sources."@types/jest-26.0.18" 10604 - sources."@types/json-schema-7.0.6" 10605 - sources."@types/nedb-1.8.11" 10606 - sources."@types/node-14.14.11" 10607 - sources."@types/normalize-package-data-2.4.0" 10608 - sources."@types/prettier-2.1.5" 10609 - sources."@types/serialport-8.0.1" 10610 - sources."@types/stack-utils-2.0.0" 10611 - sources."@types/yargs-15.0.11" 10612 - sources."@types/yargs-parser-15.0.0" 10613 - (sources."@typescript-eslint/eslint-plugin-4.9.1" // { 10614 - dependencies = [ 10615 - sources."semver-7.3.4" 10616 - ]; 10617 - }) 10618 - sources."@typescript-eslint/experimental-utils-4.9.1" 10619 - sources."@typescript-eslint/parser-4.9.1" 10620 - sources."@typescript-eslint/scope-manager-4.9.1" 10621 - sources."@typescript-eslint/types-4.9.1" 10622 - (sources."@typescript-eslint/typescript-estree-4.9.1" // { 10623 - dependencies = [ 10624 - sources."semver-7.3.4" 10625 - ]; 10626 - }) 10627 - sources."@typescript-eslint/visitor-keys-4.9.1" 10628 - sources."abab-2.0.5" 10629 - sources."acorn-7.4.1" 10630 - sources."acorn-globals-6.0.0" 10631 - sources."acorn-jsx-5.3.1" 10632 - sources."acorn-walk-7.2.0" 10633 - sources."ajv-6.12.6" 10634 - sources."ansi-colors-4.1.1" 10635 - (sources."ansi-escapes-4.3.1" // { 10636 - dependencies = [ 10637 - sources."type-fest-0.11.0" 10638 - ]; 10639 - }) 10640 - sources."ansi-regex-2.1.1" 10641 - sources."ansi-styles-3.2.1" 10642 - (sources."anymatch-2.0.0" // { 10643 - dependencies = [ 10644 - sources."normalize-path-2.1.1" 10645 - ]; 10646 - }) 10647 - sources."aproba-1.2.0" 10648 - sources."are-we-there-yet-1.1.5" 10649 - sources."argparse-1.0.10" 10650 - sources."arr-diff-4.0.0" 10651 - sources."arr-flatten-1.1.0" 10652 - sources."arr-union-3.1.0" 10653 - sources."array-union-2.1.0" 10654 - sources."array-unique-0.3.2" 10655 - sources."asn1-0.2.4" 10656 - sources."assert-plus-1.0.0" 10657 - sources."assign-symbols-1.0.0" 10658 - sources."astral-regex-1.0.0" 10659 - sources."async-each-1.0.3" 10660 - sources."asynckit-0.4.0" 10661 - sources."at-least-node-1.0.0" 10662 - sources."atob-2.1.2" 10663 - sources."aws-sign2-0.7.0" 10664 - sources."aws4-1.11.0" 10665 - (sources."babel-jest-26.6.3" // { 10666 - dependencies = [ 10667 - sources."ansi-styles-4.3.0" 10668 - sources."chalk-4.1.0" 10669 - sources."color-convert-2.0.1" 10670 - sources."color-name-1.1.4" 10671 - sources."has-flag-4.0.0" 10672 - sources."slash-3.0.0" 10673 - sources."supports-color-7.2.0" 10674 - ]; 10675 - }) 10676 - sources."babel-plugin-dynamic-import-node-2.3.3" 10677 - sources."babel-plugin-istanbul-6.0.0" 10678 - sources."babel-plugin-jest-hoist-26.6.2" 10679 - sources."babel-preset-current-node-syntax-1.0.0" 10680 - sources."babel-preset-jest-26.6.2" 10681 - sources."balanced-match-1.0.0" 10682 - (sources."base-0.11.2" // { 10683 - dependencies = [ 10684 - sources."define-property-1.0.0" 10685 - sources."is-accessor-descriptor-1.0.0" 10686 - sources."is-data-descriptor-1.0.0" 10687 - sources."is-descriptor-1.0.2" 10688 - sources."is-extendable-1.0.1" 10689 - sources."mixin-deep-1.3.2" 10690 - ]; 10691 - }) 10692 - sources."base64-js-1.5.1" 10693 - sources."bcrypt-pbkdf-1.0.2" 10694 - sources."binary-extensions-1.13.1" 10695 - sources."bindings-1.5.0" 10696 - (sources."bl-4.0.3" // { 10697 - dependencies = [ 10698 - sources."readable-stream-3.6.0" 10699 - ]; 10700 - }) 10701 - sources."brace-expansion-1.1.11" 10702 - (sources."braces-2.3.2" // { 10703 - dependencies = [ 10704 - sources."extend-shallow-2.0.1" 10705 - ]; 10706 - }) 10707 - sources."browser-process-hrtime-1.0.0" 10708 - sources."browserslist-4.15.0" 10709 - sources."bser-2.1.1" 10710 - sources."buffer-5.7.1" 10711 - sources."buffer-from-1.1.1" 10712 - sources."cache-base-1.0.1" 10713 - sources."call-bind-1.0.0" 10714 - sources."callsites-3.1.0" 10715 - sources."camelcase-5.3.1" 10716 - sources."caniuse-lite-1.0.30001165" 10717 - sources."capture-exit-2.0.0" 10718 - sources."caseless-0.12.0" 10719 - sources."chalk-2.4.2" 10720 - sources."char-regex-1.0.2" 10721 - (sources."chokidar-3.4.3" // { 10722 - dependencies = [ 10723 - sources."anymatch-3.1.1" 10724 - sources."binary-extensions-2.1.0" 10725 - sources."braces-3.0.2" 10726 - sources."fill-range-7.0.1" 10727 - sources."glob-parent-5.1.1" 10728 - sources."is-binary-path-2.1.0" 10729 - sources."is-number-7.0.0" 10730 - sources."readdirp-3.5.0" 10731 - sources."to-regex-range-5.0.1" 10732 - ]; 10733 - }) 10734 - sources."chownr-1.1.4" 10735 - sources."ci-info-2.0.0" 10736 - sources."cjs-module-lexer-0.6.0" 10737 - (sources."class-utils-0.3.6" // { 10738 - dependencies = [ 10739 - sources."define-property-0.2.5" 10740 - ]; 10741 - }) 10742 - (sources."cliui-6.0.0" // { 10743 - dependencies = [ 10744 - sources."ansi-regex-5.0.0" 10745 - sources."emoji-regex-8.0.0" 10746 - sources."is-fullwidth-code-point-3.0.0" 10747 - sources."string-width-4.2.0" 10748 - sources."strip-ansi-6.0.0" 10749 - ]; 10750 - }) 10751 - sources."co-4.6.0" 10752 - sources."code-point-at-1.1.0" 10753 - sources."collect-v8-coverage-1.0.1" 10754 - sources."collection-visit-1.0.0" 10755 - sources."color-convert-1.9.3" 10756 - sources."color-name-1.1.3" 10757 - sources."colorette-1.2.1" 10758 - sources."colors-1.4.0" 10759 - sources."combined-stream-1.0.8" 10760 - sources."commander-4.1.1" 10761 - sources."component-emitter-1.3.0" 10762 - sources."concat-map-0.0.1" 10763 - sources."console-control-strings-1.1.0" 10764 - sources."convert-source-map-1.7.0" 10765 - sources."copy-descriptor-0.1.1" 10766 - (sources."core-js-compat-3.8.1" // { 10767 - dependencies = [ 10768 - sources."semver-7.0.0" 10769 - ]; 10770 - }) 10771 - sources."core-util-is-1.0.2" 10772 - sources."cross-spawn-6.0.5" 10773 - sources."cssom-0.4.4" 10774 - (sources."cssstyle-2.3.0" // { 10775 - dependencies = [ 10776 - sources."cssom-0.3.8" 10777 - ]; 10778 - }) 10779 - sources."dashdash-1.14.1" 10780 - sources."data-urls-2.0.0" 10781 - sources."debounce-1.2.0" 10782 - sources."debug-4.3.1" 10783 - sources."decamelize-1.2.0" 10784 - sources."decimal.js-10.2.1" 10785 - sources."decode-uri-component-0.2.0" 10786 - sources."decompress-response-4.2.1" 10787 - sources."deep-extend-0.6.0" 10788 - sources."deep-is-0.1.3" 10789 - sources."deepmerge-4.2.2" 10790 - sources."define-properties-1.1.3" 10791 - (sources."define-property-2.0.2" // { 10792 - dependencies = [ 10793 - sources."is-accessor-descriptor-1.0.0" 10794 - sources."is-data-descriptor-1.0.0" 10795 - sources."is-descriptor-1.0.2" 10796 - ]; 10797 - }) 10798 - sources."delayed-stream-1.0.0" 10799 - sources."delegates-1.0.0" 10800 - sources."detect-libc-1.0.3" 10801 - sources."detect-newline-3.1.0" 10802 - sources."diff-sequences-26.6.2" 10803 - sources."dir-glob-3.0.1" 10804 - sources."doctrine-3.0.0" 10805 - (sources."domexception-2.0.1" // { 10806 - dependencies = [ 10807 - sources."webidl-conversions-5.0.0" 10808 - ]; 10809 - }) 10810 - sources."ecc-jsbn-0.1.2" 10811 - sources."electron-to-chromium-1.3.620" 10812 - sources."emittery-0.7.2" 10813 - sources."emoji-regex-7.0.3" 10814 - sources."end-of-stream-1.4.4" 10815 - sources."enquirer-2.3.6" 10816 - sources."error-ex-1.3.2" 10817 - sources."escalade-3.1.1" 10818 - sources."escape-string-regexp-1.0.5" 10819 - (sources."escodegen-1.14.3" // { 10820 - dependencies = [ 10821 - sources."levn-0.3.0" 10822 - sources."optionator-0.8.3" 10823 - sources."prelude-ls-1.1.2" 10824 - sources."source-map-0.6.1" 10825 - sources."type-check-0.3.2" 10826 - ]; 10827 - }) 10828 - (sources."eslint-7.15.0" // { 10829 - dependencies = [ 10830 - sources."ansi-regex-5.0.0" 10831 - sources."ansi-styles-4.3.0" 10832 - sources."chalk-4.1.0" 10833 - sources."color-convert-2.0.1" 10834 - sources."color-name-1.1.4" 10835 - sources."cross-spawn-7.0.3" 10836 - sources."glob-parent-5.1.1" 10837 - sources."globals-12.4.0" 10838 - sources."has-flag-4.0.0" 10839 - sources."ignore-4.0.6" 10840 - sources."path-key-3.1.1" 10841 - sources."semver-7.3.4" 10842 - sources."shebang-command-2.0.0" 10843 - sources."shebang-regex-3.0.0" 10844 - sources."strip-ansi-6.0.0" 10845 - sources."strip-json-comments-3.1.1" 10846 - sources."supports-color-7.2.0" 10847 - sources."which-2.0.2" 10848 - ]; 10849 - }) 10850 - sources."eslint-scope-5.1.1" 10851 - (sources."eslint-utils-2.1.0" // { 10852 - dependencies = [ 10853 - sources."eslint-visitor-keys-1.3.0" 10854 - ]; 10855 - }) 10856 - sources."eslint-visitor-keys-2.0.0" 10857 - (sources."espree-7.3.1" // { 10858 - dependencies = [ 10859 - sources."eslint-visitor-keys-1.3.0" 10860 - ]; 10861 - }) 10862 - sources."esprima-4.0.1" 10863 - (sources."esquery-1.3.1" // { 10864 - dependencies = [ 10865 - sources."estraverse-5.2.0" 10866 - ]; 10867 - }) 10868 - (sources."esrecurse-4.3.0" // { 10869 - dependencies = [ 10870 - sources."estraverse-5.2.0" 10871 - ]; 10872 - }) 10873 - sources."estraverse-4.3.0" 10874 - sources."esutils-2.0.3" 10875 - sources."exec-sh-0.3.4" 10876 - sources."execa-1.0.0" 10877 - sources."exit-0.1.2" 10878 - (sources."expand-brackets-2.1.4" // { 10879 - dependencies = [ 10880 - sources."debug-2.6.9" 10881 - sources."define-property-0.2.5" 10882 - sources."extend-shallow-2.0.1" 10883 - sources."ms-2.0.0" 10884 - ]; 10885 - }) 10886 - sources."expand-template-2.0.3" 10887 - (sources."expect-26.6.2" // { 10888 - dependencies = [ 10889 - sources."ansi-styles-4.3.0" 10890 - sources."color-convert-2.0.1" 10891 - sources."color-name-1.1.4" 10892 - ]; 10893 - }) 10894 - sources."extend-3.0.2" 10895 - (sources."extend-shallow-3.0.2" // { 10896 - dependencies = [ 10897 - sources."is-extendable-1.0.1" 10898 - ]; 10899 - }) 10900 - (sources."extglob-2.0.4" // { 10901 - dependencies = [ 10902 - sources."define-property-1.0.0" 10903 - sources."extend-shallow-2.0.1" 10904 - sources."is-accessor-descriptor-1.0.0" 10905 - sources."is-data-descriptor-1.0.0" 10906 - sources."is-descriptor-1.0.2" 10907 - ]; 10908 - }) 10909 - sources."extsprintf-1.3.0" 10910 - sources."fast-deep-equal-3.1.3" 10911 - (sources."fast-glob-3.2.4" // { 10912 - dependencies = [ 10913 - sources."braces-3.0.2" 10914 - sources."fill-range-7.0.1" 10915 - sources."glob-parent-5.1.1" 10916 - sources."is-number-7.0.0" 10917 - sources."micromatch-4.0.2" 10918 - sources."to-regex-range-5.0.1" 10919 - ]; 10920 - }) 10921 - sources."fast-json-stable-stringify-2.1.0" 10922 - sources."fast-levenshtein-2.0.6" 10923 - sources."fastq-1.9.0" 10924 - sources."fb-watchman-2.0.1" 10925 - sources."file-entry-cache-6.0.0" 10926 - sources."file-uri-to-path-1.0.0" 10927 - (sources."fill-range-4.0.0" // { 10928 - dependencies = [ 10929 - sources."extend-shallow-2.0.1" 10930 - ]; 10931 - }) 10932 - sources."find-up-4.1.0" 10933 - sources."flat-cache-3.0.4" 10934 - sources."flatted-3.1.0" 10935 - sources."for-in-1.0.2" 10936 - sources."forever-agent-0.6.1" 10937 - sources."form-data-2.3.3" 10938 - sources."fragment-cache-0.2.1" 10939 - sources."fs-constants-1.0.0" 10940 - sources."fs-extra-9.0.1" 10941 - sources."fs-readdir-recursive-1.1.0" 10942 - sources."fs.realpath-1.0.0" 10943 - sources."fsevents-2.1.3" 10944 - sources."function-bind-1.1.1" 10945 - sources."functional-red-black-tree-1.0.1" 10946 - sources."gauge-2.7.4" 10947 - sources."gensync-1.0.0-beta.2" 10948 - sources."get-caller-file-2.0.5" 10949 - sources."get-intrinsic-1.0.1" 10950 - sources."get-package-type-0.1.0" 10951 - sources."get-stream-4.1.0" 10952 - sources."get-value-2.0.6" 10953 - sources."getpass-0.1.7" 10954 - sources."github-from-package-0.0.0" 10955 - sources."glob-7.1.6" 10956 - (sources."glob-parent-3.1.0" // { 10957 - dependencies = [ 10958 - sources."is-glob-3.1.0" 10959 - ]; 10960 - }) 10961 - sources."globals-11.12.0" 10962 - (sources."globby-11.0.1" // { 10963 - dependencies = [ 10964 - sources."slash-3.0.0" 10965 - ]; 10966 - }) 10967 - sources."graceful-fs-4.2.4" 10968 - sources."growly-1.3.0" 10969 - (sources."handlebars-4.7.6" // { 10970 - dependencies = [ 10971 - sources."source-map-0.6.1" 10972 - ]; 10973 - }) 10974 - sources."har-schema-2.0.0" 10975 - sources."har-validator-5.1.5" 10976 - sources."has-1.0.3" 10977 - sources."has-flag-3.0.0" 10978 - sources."has-symbols-1.0.1" 10979 - sources."has-unicode-2.0.1" 10980 - sources."has-value-1.0.0" 10981 - (sources."has-values-1.0.0" // { 10982 - dependencies = [ 10983 - sources."kind-of-4.0.0" 10984 - ]; 10985 - }) 10986 - sources."hosted-git-info-2.8.8" 10987 - sources."html-encoding-sniffer-2.0.1" 10988 - sources."html-escaper-2.0.2" 10989 - sources."http-signature-1.2.0" 10990 - sources."human-signals-1.1.1" 10991 - sources."iconv-lite-0.4.24" 10992 - sources."ieee754-1.2.1" 10993 - sources."ignore-5.1.8" 10994 - (sources."import-fresh-3.2.2" // { 10995 - dependencies = [ 10996 - sources."resolve-from-4.0.0" 10997 - ]; 10998 - }) 10999 - sources."import-local-3.0.2" 11000 - sources."imurmurhash-0.1.4" 11001 - sources."inflight-1.0.6" 11002 - sources."inherits-2.0.4" 11003 - sources."ini-1.3.6" 11004 - sources."interpret-1.4.0" 11005 - sources."ip-regex-2.1.0" 11006 - (sources."is-accessor-descriptor-0.1.6" // { 11007 - dependencies = [ 11008 - sources."kind-of-3.2.2" 11009 - ]; 11010 - }) 11011 - sources."is-arrayish-0.2.1" 11012 - sources."is-binary-path-1.0.1" 11013 - sources."is-buffer-1.1.6" 11014 - sources."is-ci-2.0.0" 11015 - sources."is-core-module-2.2.0" 11016 - (sources."is-data-descriptor-0.1.4" // { 11017 - dependencies = [ 11018 - sources."kind-of-3.2.2" 11019 - ]; 11020 - }) 11021 - (sources."is-descriptor-0.1.6" // { 11022 - dependencies = [ 11023 - sources."kind-of-5.1.0" 11024 - ]; 11025 - }) 11026 - sources."is-docker-2.1.1" 11027 - sources."is-extendable-0.1.1" 11028 - sources."is-extglob-2.1.1" 11029 - sources."is-fullwidth-code-point-1.0.0" 11030 - sources."is-generator-fn-2.1.0" 11031 - sources."is-glob-4.0.1" 11032 - (sources."is-number-3.0.0" // { 11033 - dependencies = [ 11034 - sources."kind-of-3.2.2" 11035 - ]; 11036 - }) 11037 - sources."is-plain-object-2.0.4" 11038 - sources."is-potential-custom-element-name-1.0.0" 11039 - sources."is-stream-1.1.0" 11040 - sources."is-typedarray-1.0.0" 11041 - sources."is-windows-1.0.2" 11042 - sources."is-wsl-2.2.0" 11043 - sources."isarray-1.0.0" 11044 - sources."isexe-2.0.0" 11045 - sources."isobject-3.0.1" 11046 - sources."isstream-0.1.2" 11047 - sources."istanbul-lib-coverage-3.0.0" 11048 - (sources."istanbul-lib-instrument-4.0.3" // { 11049 - dependencies = [ 11050 - sources."semver-6.3.0" 11051 - ]; 11052 - }) 11053 - (sources."istanbul-lib-report-3.0.0" // { 11054 - dependencies = [ 11055 - sources."has-flag-4.0.0" 11056 - sources."make-dir-3.1.0" 11057 - sources."semver-6.3.0" 11058 - sources."supports-color-7.2.0" 11059 - ]; 11060 - }) 11061 - (sources."istanbul-lib-source-maps-4.0.0" // { 11062 - dependencies = [ 11063 - sources."source-map-0.6.1" 11064 - ]; 11065 - }) 11066 - sources."istanbul-reports-3.0.2" 11067 - (sources."jest-26.6.3" // { 11068 - dependencies = [ 11069 - sources."ansi-styles-4.3.0" 11070 - sources."chalk-4.1.0" 11071 - sources."color-convert-2.0.1" 11072 - sources."color-name-1.1.4" 11073 - sources."has-flag-4.0.0" 11074 - sources."jest-cli-26.6.3" 11075 - sources."supports-color-7.2.0" 11076 - ]; 11077 - }) 11078 - (sources."jest-changed-files-26.6.2" // { 11079 - dependencies = [ 11080 - sources."cross-spawn-7.0.3" 11081 - sources."execa-4.1.0" 11082 - sources."get-stream-5.2.0" 11083 - sources."is-stream-2.0.0" 11084 - sources."npm-run-path-4.0.1" 11085 - sources."path-key-3.1.1" 11086 - sources."shebang-command-2.0.0" 11087 - sources."shebang-regex-3.0.0" 11088 - sources."which-2.0.2" 11089 - ]; 11090 - }) 11091 - (sources."jest-config-26.6.3" // { 11092 - dependencies = [ 11093 - sources."ansi-styles-4.3.0" 11094 - sources."braces-3.0.2" 11095 - sources."chalk-4.1.0" 11096 - sources."color-convert-2.0.1" 11097 - sources."color-name-1.1.4" 11098 - sources."fill-range-7.0.1" 11099 - sources."has-flag-4.0.0" 11100 - sources."is-number-7.0.0" 11101 - sources."micromatch-4.0.2" 11102 - sources."supports-color-7.2.0" 11103 - sources."to-regex-range-5.0.1" 11104 - ]; 11105 - }) 11106 - (sources."jest-diff-26.6.2" // { 11107 - dependencies = [ 11108 - sources."ansi-styles-4.3.0" 11109 - sources."chalk-4.1.0" 11110 - sources."color-convert-2.0.1" 11111 - sources."color-name-1.1.4" 11112 - sources."has-flag-4.0.0" 11113 - sources."supports-color-7.2.0" 11114 - ]; 11115 - }) 11116 - sources."jest-docblock-26.0.0" 11117 - (sources."jest-each-26.6.2" // { 11118 - dependencies = [ 11119 - sources."ansi-styles-4.3.0" 11120 - sources."chalk-4.1.0" 11121 - sources."color-convert-2.0.1" 11122 - sources."color-name-1.1.4" 11123 - sources."has-flag-4.0.0" 11124 - sources."supports-color-7.2.0" 11125 - ]; 11126 - }) 11127 - sources."jest-environment-jsdom-26.6.2" 11128 - sources."jest-environment-node-26.6.2" 11129 - sources."jest-get-type-26.3.0" 11130 - (sources."jest-haste-map-26.6.2" // { 11131 - dependencies = [ 11132 - sources."anymatch-3.1.1" 11133 - sources."braces-3.0.2" 11134 - sources."fill-range-7.0.1" 11135 - sources."is-number-7.0.0" 11136 - sources."micromatch-4.0.2" 11137 - sources."to-regex-range-5.0.1" 11138 - ]; 11139 - }) 11140 - (sources."jest-jasmine2-26.6.3" // { 11141 - dependencies = [ 11142 - sources."ansi-styles-4.3.0" 11143 - sources."chalk-4.1.0" 11144 - sources."color-convert-2.0.1" 11145 - sources."color-name-1.1.4" 11146 - sources."has-flag-4.0.0" 11147 - sources."supports-color-7.2.0" 11148 - ]; 11149 - }) 11150 - sources."jest-leak-detector-26.6.2" 11151 - (sources."jest-matcher-utils-26.6.2" // { 11152 - dependencies = [ 11153 - sources."ansi-styles-4.3.0" 11154 - sources."chalk-4.1.0" 11155 - sources."color-convert-2.0.1" 11156 - sources."color-name-1.1.4" 11157 - sources."has-flag-4.0.0" 11158 - sources."supports-color-7.2.0" 11159 - ]; 11160 - }) 11161 - (sources."jest-message-util-26.6.2" // { 11162 - dependencies = [ 11163 - sources."ansi-styles-4.3.0" 11164 - sources."braces-3.0.2" 11165 - sources."chalk-4.1.0" 11166 - sources."color-convert-2.0.1" 11167 - sources."color-name-1.1.4" 11168 - sources."fill-range-7.0.1" 11169 - sources."has-flag-4.0.0" 11170 - sources."is-number-7.0.0" 11171 - sources."micromatch-4.0.2" 11172 - sources."slash-3.0.0" 11173 - sources."supports-color-7.2.0" 11174 - sources."to-regex-range-5.0.1" 11175 - ]; 11176 - }) 11177 - sources."jest-mock-26.6.2" 11178 - sources."jest-pnp-resolver-1.2.2" 11179 - sources."jest-regex-util-26.0.0" 11180 - (sources."jest-resolve-26.6.2" // { 11181 - dependencies = [ 11182 - sources."ansi-styles-4.3.0" 11183 - sources."chalk-4.1.0" 11184 - sources."color-convert-2.0.1" 11185 - sources."color-name-1.1.4" 11186 - sources."has-flag-4.0.0" 11187 - sources."slash-3.0.0" 11188 - sources."supports-color-7.2.0" 11189 - ]; 11190 - }) 11191 - sources."jest-resolve-dependencies-26.6.3" 11192 - (sources."jest-runner-26.6.3" // { 11193 - dependencies = [ 11194 - sources."ansi-styles-4.3.0" 11195 - sources."chalk-4.1.0" 11196 - sources."color-convert-2.0.1" 11197 - sources."color-name-1.1.4" 11198 - sources."has-flag-4.0.0" 11199 - sources."supports-color-7.2.0" 11200 - ]; 11201 - }) 11202 - (sources."jest-runtime-26.6.3" // { 11203 - dependencies = [ 11204 - sources."ansi-styles-4.3.0" 11205 - sources."chalk-4.1.0" 11206 - sources."color-convert-2.0.1" 11207 - sources."color-name-1.1.4" 11208 - sources."has-flag-4.0.0" 11209 - sources."slash-3.0.0" 11210 - sources."supports-color-7.2.0" 11211 - ]; 11212 - }) 11213 - sources."jest-serializer-26.6.2" 11214 - (sources."jest-snapshot-26.6.2" // { 11215 - dependencies = [ 11216 - sources."ansi-styles-4.3.0" 11217 - sources."chalk-4.1.0" 11218 - sources."color-convert-2.0.1" 11219 - sources."color-name-1.1.4" 11220 - sources."has-flag-4.0.0" 11221 - sources."semver-7.3.4" 11222 - sources."supports-color-7.2.0" 11223 - ]; 11224 - }) 11225 - (sources."jest-util-26.6.2" // { 11226 - dependencies = [ 11227 - sources."ansi-styles-4.3.0" 11228 - sources."braces-3.0.2" 11229 - sources."chalk-4.1.0" 11230 - sources."color-convert-2.0.1" 11231 - sources."color-name-1.1.4" 11232 - sources."fill-range-7.0.1" 11233 - sources."has-flag-4.0.0" 11234 - sources."is-number-7.0.0" 11235 - sources."micromatch-4.0.2" 11236 - sources."supports-color-7.2.0" 11237 - sources."to-regex-range-5.0.1" 11238 - ]; 11239 - }) 11240 - (sources."jest-validate-26.6.2" // { 11241 - dependencies = [ 11242 - sources."ansi-styles-4.3.0" 11243 - sources."camelcase-6.2.0" 11244 - sources."chalk-4.1.0" 11245 - sources."color-convert-2.0.1" 11246 - sources."color-name-1.1.4" 11247 - sources."has-flag-4.0.0" 11248 - sources."supports-color-7.2.0" 11249 - ]; 11250 - }) 11251 - (sources."jest-watcher-26.6.2" // { 11252 - dependencies = [ 11253 - sources."ansi-styles-4.3.0" 11254 - sources."chalk-4.1.0" 11255 - sources."color-convert-2.0.1" 11256 - sources."color-name-1.1.4" 11257 - sources."has-flag-4.0.0" 11258 - sources."supports-color-7.2.0" 11259 - ]; 11260 - }) 11261 - (sources."jest-worker-26.6.2" // { 11262 - dependencies = [ 11263 - sources."has-flag-4.0.0" 11264 - sources."supports-color-7.2.0" 11265 - ]; 11266 - }) 11267 - sources."js-tokens-4.0.0" 11268 - sources."js-yaml-3.14.1" 11269 - sources."jsbn-0.1.1" 11270 - sources."jsdom-16.4.0" 11271 - sources."jsesc-2.5.2" 11272 - sources."json-parse-even-better-errors-2.3.1" 11273 - sources."json-schema-0.2.3" 11274 - sources."json-schema-traverse-0.4.1" 11275 - sources."json-stable-stringify-without-jsonify-1.0.1" 11276 - sources."json-stringify-safe-5.0.1" 11277 - sources."json5-2.1.3" 11278 - (sources."jsonfile-6.1.0" // { 11279 - dependencies = [ 11280 - sources."universalify-2.0.0" 11281 - ]; 11282 - }) 11283 - sources."jsprim-1.4.1" 11284 - sources."kind-of-6.0.3" 11285 - sources."kleur-3.0.3" 11286 - sources."leven-3.1.0" 11287 - sources."levn-0.4.1" 11288 - sources."lines-and-columns-1.1.6" 11289 - sources."locate-path-5.0.0" 11290 - sources."lodash-4.17.20" 11291 - sources."lodash.sortby-4.7.0" 11292 - sources."lru-cache-6.0.0" 11293 - sources."lunr-2.3.9" 11294 - sources."make-dir-2.1.0" 11295 - sources."makeerror-1.0.11" 11296 - sources."map-cache-0.2.2" 11297 - sources."map-visit-1.0.0" 11298 - sources."marked-1.2.5" 11299 - sources."merge-stream-2.0.0" 11300 - sources."merge2-1.4.1" 11301 - sources."micromatch-3.1.10" 11302 - sources."mime-db-1.44.0" 11303 - sources."mime-types-2.1.27" 11304 - sources."mimic-fn-2.1.0" 11305 - sources."mimic-response-2.1.0" 11306 - sources."minimatch-3.0.4" 11307 - sources."minimist-1.2.5" 11308 - sources."mixin-deep-2.0.1" 11309 - sources."mkdirp-classic-0.5.3" 11310 - sources."ms-2.1.2" 11311 - sources."nan-2.14.2" 11312 - sources."nanomatch-1.2.13" 11313 - sources."napi-build-utils-1.0.2" 11314 - sources."natural-compare-1.4.0" 11315 - sources."neo-async-2.6.2" 11316 - sources."nice-try-1.0.5" 11317 - sources."node-abi-2.19.3" 11318 - sources."node-int64-0.4.0" 11319 - sources."node-modules-regexp-1.0.0" 11320 - (sources."node-notifier-8.0.0" // { 11321 - dependencies = [ 11322 - sources."semver-7.3.4" 11323 - sources."which-2.0.2" 11324 - ]; 11325 - }) 11326 - sources."node-releases-1.1.67" 11327 - sources."noop-logger-0.1.1" 11328 - sources."normalize-package-data-2.5.0" 11329 - sources."normalize-path-3.0.0" 11330 - sources."npm-run-path-2.0.2" 11331 - sources."npmlog-4.1.2" 11332 - sources."number-is-nan-1.0.1" 11333 - sources."nwsapi-2.2.0" 11334 - sources."oauth-sign-0.9.0" 11335 - sources."object-assign-4.1.1" 11336 - (sources."object-copy-0.1.0" // { 11337 - dependencies = [ 11338 - sources."define-property-0.2.5" 11339 - sources."kind-of-3.2.2" 11340 - ]; 11341 - }) 11342 - sources."object-keys-1.1.1" 11343 - sources."object-visit-1.0.1" 11344 - sources."object.assign-4.1.2" 11345 - sources."object.pick-1.3.0" 11346 - sources."once-1.4.0" 11347 - sources."onetime-5.1.2" 11348 - (sources."onigasm-2.2.5" // { 11349 - dependencies = [ 11350 - sources."lru-cache-5.1.1" 11351 - sources."yallist-3.1.1" 11352 - ]; 11353 - }) 11354 - sources."optionator-0.9.1" 11355 - sources."p-each-series-2.2.0" 11356 - sources."p-finally-1.0.0" 11357 - sources."p-limit-2.3.0" 11358 - sources."p-locate-4.1.0" 11359 - sources."p-try-2.2.0" 11360 - sources."parent-module-1.0.1" 11361 - sources."parse-json-5.1.0" 11362 - sources."parse5-5.1.1" 11363 - sources."pascalcase-0.1.1" 11364 - sources."path-dirname-1.0.2" 11365 - sources."path-exists-4.0.0" 11366 - sources."path-is-absolute-1.0.1" 11367 - sources."path-key-2.0.1" 11368 - sources."path-parse-1.0.6" 11369 - sources."path-type-4.0.0" 11370 - sources."performance-now-2.1.0" 11371 - sources."picomatch-2.2.2" 11372 - sources."pify-4.0.1" 11373 - sources."pirates-4.0.1" 11374 - sources."pkg-dir-4.2.0" 11375 - sources."posix-character-classes-0.1.1" 11376 - sources."prebuild-install-6.0.0" 11377 - sources."prelude-ls-1.2.1" 11378 - (sources."pretty-format-26.6.2" // { 11379 - dependencies = [ 11380 - sources."ansi-regex-5.0.0" 11381 - sources."ansi-styles-4.3.0" 11382 - sources."color-convert-2.0.1" 11383 - sources."color-name-1.1.4" 11384 - ]; 11385 - }) 11386 - sources."process-nextick-args-2.0.1" 11387 - sources."progress-2.0.3" 11388 - sources."prompts-2.4.0" 11389 - sources."psl-1.8.0" 11390 - sources."pump-3.0.0" 11391 - sources."punycode-2.1.1" 11392 - sources."qs-6.5.2" 11393 - sources."rc-1.2.8" 11394 - sources."react-is-17.0.1" 11395 - (sources."read-pkg-5.2.0" // { 11396 - dependencies = [ 11397 - sources."type-fest-0.6.0" 11398 - ]; 11399 - }) 11400 - sources."read-pkg-up-7.0.1" 11401 - sources."readable-stream-2.3.7" 11402 - sources."readdirp-2.2.1" 11403 - sources."rechoir-0.6.2" 11404 - sources."regenerate-1.4.2" 11405 - sources."regenerate-unicode-properties-8.2.0" 11406 - sources."regenerator-runtime-0.13.7" 11407 - sources."regenerator-transform-0.14.5" 11408 - sources."regex-not-1.0.2" 11409 - sources."regexpp-3.1.0" 11410 - sources."regexpu-core-4.7.1" 11411 - sources."regjsgen-0.5.2" 11412 - (sources."regjsparser-0.6.4" // { 11413 - dependencies = [ 11414 - sources."jsesc-0.5.0" 11415 - ]; 11416 - }) 11417 - sources."remove-trailing-separator-1.1.0" 11418 - sources."repeat-element-1.1.3" 11419 - sources."repeat-string-1.6.1" 11420 - (sources."request-2.88.2" // { 11421 - dependencies = [ 11422 - sources."tough-cookie-2.5.0" 11423 - sources."uuid-3.4.0" 11424 - ]; 11425 - }) 11426 - sources."request-promise-core-1.1.4" 11427 - (sources."request-promise-native-1.0.9" // { 11428 - dependencies = [ 11429 - sources."tough-cookie-2.5.0" 11430 - ]; 11431 - }) 11432 - sources."require-directory-2.1.1" 11433 - sources."require-main-filename-2.0.0" 11434 - sources."resolve-1.19.0" 11435 - sources."resolve-cwd-3.0.0" 11436 - sources."resolve-from-5.0.0" 11437 - sources."resolve-url-0.2.1" 11438 - sources."ret-0.1.15" 11439 - sources."reusify-1.0.4" 11440 - sources."rimraf-3.0.2" 11441 - sources."rsvp-4.8.5" 11442 - sources."run-parallel-1.1.10" 11443 - sources."safe-buffer-5.1.2" 11444 - sources."safe-regex-1.1.0" 11445 - sources."safer-buffer-2.1.2" 11446 - sources."sane-4.1.0" 11447 - sources."saxes-5.0.1" 11448 - sources."semver-5.7.1" 11449 - sources."serialport-9.0.3" 11450 - sources."set-blocking-2.0.0" 11451 - (sources."set-value-2.0.1" // { 11452 - dependencies = [ 11453 - sources."extend-shallow-2.0.1" 11454 - ]; 11455 - }) 11456 - sources."shebang-command-1.2.0" 11457 - sources."shebang-regex-1.0.0" 11458 - sources."shelljs-0.8.4" 11459 - sources."shellwords-0.1.1" 11460 - sources."shiki-0.2.7" 11461 - sources."shiki-languages-0.2.7" 11462 - sources."shiki-themes-0.2.7" 11463 - sources."signal-exit-3.0.3" 11464 - sources."simple-concat-1.0.1" 11465 - sources."simple-get-3.1.0" 11466 - sources."sisteransi-1.0.5" 11467 - sources."slash-2.0.0" 11468 - (sources."slice-ansi-2.1.0" // { 11469 - dependencies = [ 11470 - sources."is-fullwidth-code-point-2.0.0" 11471 - ]; 11472 - }) 11473 - sources."slip-1.0.2" 11474 - (sources."snapdragon-0.8.2" // { 11475 - dependencies = [ 11476 - sources."debug-2.6.9" 11477 - sources."define-property-0.2.5" 11478 - sources."extend-shallow-2.0.1" 11479 - sources."ms-2.0.0" 11480 - ]; 11481 - }) 11482 - (sources."snapdragon-node-2.1.1" // { 11483 - dependencies = [ 11484 - sources."define-property-1.0.0" 11485 - sources."is-accessor-descriptor-1.0.0" 11486 - sources."is-data-descriptor-1.0.0" 11487 - sources."is-descriptor-1.0.2" 11488 - ]; 11489 - }) 11490 - (sources."snapdragon-util-3.0.1" // { 11491 - dependencies = [ 11492 - sources."kind-of-3.2.2" 11493 - ]; 11494 - }) 11495 - sources."source-map-0.5.7" 11496 - sources."source-map-resolve-0.5.3" 11497 - (sources."source-map-support-0.5.19" // { 11498 - dependencies = [ 11499 - sources."source-map-0.6.1" 11500 - ]; 11501 - }) 11502 - sources."source-map-url-0.4.0" 11503 - sources."spdx-correct-3.1.1" 11504 - sources."spdx-exceptions-2.3.0" 11505 - sources."spdx-expression-parse-3.0.1" 11506 - sources."spdx-license-ids-3.0.7" 11507 - sources."split-string-3.1.0" 11508 - sources."sprintf-js-1.0.3" 11509 - sources."sshpk-1.16.1" 11510 - (sources."stack-utils-2.0.3" // { 11511 - dependencies = [ 11512 - sources."escape-string-regexp-2.0.0" 11513 - ]; 11514 - }) 11515 - (sources."static-extend-0.1.2" // { 11516 - dependencies = [ 11517 - sources."define-property-0.2.5" 11518 - ]; 11519 - }) 11520 - sources."stealthy-require-1.1.1" 11521 - (sources."string-length-4.0.1" // { 11522 - dependencies = [ 11523 - sources."ansi-regex-5.0.0" 11524 - sources."strip-ansi-6.0.0" 11525 - ]; 11526 - }) 11527 - sources."string-width-1.0.2" 11528 - sources."string_decoder-1.1.1" 11529 - sources."strip-ansi-3.0.1" 11530 - sources."strip-bom-4.0.0" 11531 - sources."strip-eof-1.0.0" 11532 - sources."strip-final-newline-2.0.0" 11533 - sources."strip-json-comments-2.0.1" 11534 - sources."supports-color-5.5.0" 11535 - (sources."supports-hyperlinks-2.1.0" // { 11536 - dependencies = [ 11537 - sources."has-flag-4.0.0" 11538 - sources."supports-color-7.2.0" 11539 - ]; 11540 - }) 11541 - sources."symbol-tree-3.2.4" 11542 - (sources."table-5.4.6" // { 11543 - dependencies = [ 11544 - sources."ansi-regex-4.1.0" 11545 - sources."is-fullwidth-code-point-2.0.0" 11546 - sources."string-width-3.1.0" 11547 - sources."strip-ansi-5.2.0" 11548 - ]; 11549 - }) 11550 - sources."tar-fs-2.1.1" 11551 - (sources."tar-stream-2.1.4" // { 11552 - dependencies = [ 11553 - sources."readable-stream-3.6.0" 11554 - ]; 11555 - }) 11556 - sources."terminal-link-2.1.1" 11557 - sources."test-exclude-6.0.0" 11558 - sources."text-table-0.2.0" 11559 - sources."throat-5.0.0" 11560 - sources."tmpl-1.0.4" 11561 - sources."to-fast-properties-2.0.0" 11562 - (sources."to-object-path-0.3.0" // { 11563 - dependencies = [ 11564 - sources."kind-of-3.2.2" 11565 - ]; 11566 - }) 11567 - sources."to-regex-3.0.2" 11568 - sources."to-regex-range-2.1.1" 11569 - sources."tough-cookie-3.0.1" 11570 - sources."tr46-2.0.2" 11571 - sources."tslib-1.14.1" 11572 - sources."tsutils-3.17.1" 11573 - sources."tunnel-agent-0.6.0" 11574 - sources."tweetnacl-0.14.5" 11575 - sources."type-check-0.4.0" 11576 - sources."type-detect-4.0.8" 11577 - sources."type-fest-0.8.1" 11578 - sources."typedarray-to-buffer-3.1.5" 11579 - sources."typedoc-0.20.0-beta.27" 11580 - sources."typedoc-default-themes-0.12.0-beta.10" 11581 - sources."typedoc-plugin-markdown-3.1.0" 11582 - sources."typedoc-plugin-no-inherit-1.2.0" 11583 - sources."typedoc-plugin-sourcefile-url-1.0.6" 11584 - sources."typescript-4.1.2" 11585 - sources."uglify-js-3.12.1" 11586 - sources."unicode-canonical-property-names-ecmascript-1.0.4" 11587 - sources."unicode-match-property-ecmascript-1.0.4" 11588 - sources."unicode-match-property-value-ecmascript-1.2.0" 11589 - sources."unicode-property-aliases-ecmascript-1.1.0" 11590 - sources."union-value-1.0.1" 11591 - sources."universalify-1.0.0" 11592 - (sources."unset-value-1.0.0" // { 11593 - dependencies = [ 11594 - (sources."has-value-0.3.1" // { 11595 - dependencies = [ 11596 - sources."isobject-2.1.0" 11597 - ]; 11598 - }) 11599 - sources."has-values-0.1.4" 11600 - ]; 11601 - }) 11602 - sources."upath-1.2.0" 11603 - sources."uri-js-4.4.0" 11604 - sources."urix-0.1.0" 11605 - sources."use-3.1.1" 11606 - sources."util-deprecate-1.0.2" 11607 - sources."uuid-8.3.2" 11608 - sources."v8-compile-cache-2.2.0" 11609 - (sources."v8-to-istanbul-7.0.0" // { 11610 - dependencies = [ 11611 - sources."source-map-0.7.3" 11612 - ]; 11613 - }) 11614 - sources."validate-npm-package-license-3.0.4" 11615 - sources."verror-1.10.0" 11616 - sources."vscode-textmate-5.2.0" 11617 - sources."w3c-hr-time-1.0.2" 11618 - sources."w3c-xmlserializer-2.0.0" 11619 - sources."walker-1.0.7" 11620 - sources."webidl-conversions-6.1.0" 11621 - sources."whatwg-encoding-1.0.5" 11622 - sources."whatwg-mimetype-2.3.0" 11623 - sources."whatwg-url-8.4.0" 11624 - sources."which-1.3.1" 11625 - sources."which-module-2.0.0" 11626 - sources."which-pm-runs-1.0.0" 11627 - sources."wide-align-1.1.3" 11628 - sources."word-wrap-1.2.3" 11629 - sources."wordwrap-1.0.0" 11630 - (sources."wrap-ansi-6.2.0" // { 11631 - dependencies = [ 11632 - sources."ansi-regex-5.0.0" 11633 - sources."ansi-styles-4.3.0" 11634 - sources."color-convert-2.0.1" 11635 - sources."color-name-1.1.4" 11636 - sources."emoji-regex-8.0.0" 11637 - sources."is-fullwidth-code-point-3.0.0" 11638 - sources."string-width-4.2.0" 11639 - sources."strip-ansi-6.0.0" 11640 - ]; 11641 - }) 11642 - sources."wrappy-1.0.2" 11643 - sources."write-file-atomic-3.0.3" 11644 - sources."ws-7.4.1" 11645 - sources."xml-name-validator-3.0.0" 11646 - sources."xmlchars-2.2.0" 11647 - sources."y18n-4.0.1" 11648 - sources."yallist-4.0.0" 11649 - (sources."yargs-15.4.1" // { 11650 - dependencies = [ 11651 - sources."ansi-regex-5.0.0" 11652 - sources."emoji-regex-8.0.0" 11653 - sources."is-fullwidth-code-point-3.0.0" 11654 - sources."string-width-4.2.0" 11655 - sources."strip-ansi-6.0.0" 11656 - ]; 11657 - }) 11658 - sources."yargs-parser-18.1.3" 10066 + sources."emoji-regex-8.0.0" 10067 + sources."is-fullwidth-code-point-3.0.0" 10068 + sources."string-width-4.2.0" 11659 10069 ]; 11660 10070 }) 10071 + sources."yargs-parser-18.1.3" 11661 10072 ]; 11662 10073 }) 11663 - sources."zigbee2mqtt-frontend-0.2.129" 10074 + sources."zigbee2mqtt-frontend-0.2.100" 11664 10075 ]; 11665 10076 buildInputs = globalBuildInputs; 11666 10077 meta = {
+9 -8
pkgs/tools/graphics/vulkan-tools-lunarg/default.nix
··· 6 6 stdenv.mkDerivation rec { 7 7 pname = "vulkan-tools-lunarg"; 8 8 # The version must match that in vulkan-headers 9 - version = "1.2.141.0"; 9 + version = "1.2.162.0"; 10 10 11 - src = (assert version == vulkan-headers.version; fetchFromGitHub { 12 - owner = "LunarG"; 13 - repo = "VulkanTools"; 14 - rev = "sdk-${version}"; 15 - sha256 = "1zsgc1hdmivdahzrarx7a5byhgnmm5ahz366l92fmdb8pffgq42g"; 16 - fetchSubmodules = true; 17 - }); 11 + src = (assert version == vulkan-headers.version; 12 + fetchFromGitHub { 13 + owner = "LunarG"; 14 + repo = "VulkanTools"; 15 + rev = "sdk-${version}"; 16 + sha256 = "13v4202bfd7d7nwi8w12ja9k1vi10p9xxypzkpi063hmsgzxm5k5"; 17 + fetchSubmodules = true; 18 + }); 18 19 19 20 nativeBuildInputs = [ cmake pkgconfig python3 jq ]; 20 21
+2 -2
pkgs/tools/graphics/vulkan-tools/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 pname = "vulkan-tools"; 7 - version = "1.2.141.0"; 7 + version = "1.2.162.0"; 8 8 9 9 src = fetchFromGitHub { 10 10 owner = "KhronosGroup"; 11 11 repo = "Vulkan-Tools"; 12 12 rev = "sdk-${version}"; 13 - sha256 = "1ch56ihm7rmilipfyc4i4ww7l6i20fb3qikkpm1ch43kzn42zjaw"; 13 + sha256 = "088vqh956zma3p1qc3p6rsygf5s395b6cv8b1x0whp2a0a1y81xz"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ cmake pkgconfig ];
+3 -3
pkgs/tools/misc/starship/default.nix
··· 10 10 11 11 rustPlatform.buildRustPackage rec { 12 12 pname = "starship"; 13 - version = "0.47.0"; 13 + version = "0.48.0"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "starship"; 17 17 repo = pname; 18 18 rev = "v${version}"; 19 - sha256 = "0vdfdwsaqrah0hgvr62qsww7s5znb1rg5kk068qpf06lmyc4gd8w"; 19 + sha256 = "1p37cfkcpqv74gp7g099alkqxanfc002kaq1cim6zkinx50gxjxw"; 20 20 }; 21 21 22 22 nativeBuildInputs = [ installShellFiles ] ++ stdenv.lib.optionals stdenv.isLinux [ pkg-config ]; ··· 31 31 done 32 32 ''; 33 33 34 - cargoSha256 = "01brsckfa2zy1aqs9vjwrn4w416i8b621bvkhicanz9q56xlnd77"; 34 + cargoSha256 = "02djpwvwrrp7f0ifiypx1cr1v4bkqxrhqfhy0abfjszza95fjasv"; 35 35 36 36 checkFlags = [ 37 37 "--skip=directory_in_home"
+5 -6
pkgs/tools/networking/wavemon/default.nix
··· 1 - { stdenv, fetchFromGitHub, ncurses, libnl, pkgconfig }: 1 + { stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }: 2 2 3 3 stdenv.mkDerivation rec { 4 - version = "0.9.2"; 5 - baseName = "wavemon"; 6 - name = "${baseName}-${version}"; 4 + pname = "wavemon"; 5 + version = "0.9.3"; 7 6 8 - nativeBuildInputs = [ pkgconfig ]; 7 + nativeBuildInputs = [ pkg-config ]; 9 8 buildInputs = [ ncurses libnl ]; 10 9 11 10 src = fetchFromGitHub { 12 11 owner = "uoaerg"; 13 12 repo = "wavemon"; 14 13 rev = "v${version}"; 15 - sha256 = "0y984wm03lzqf7bk06a07mw7d1fzjsp9x7zxcvlx4xqmv7wlgb29"; 14 + sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193"; 16 15 }; 17 16 18 17 meta = with stdenv.lib; {
+3 -3
pkgs/tools/package-management/cargo-download/Cargo.nix
··· 427 427 serde_urlencoded = "0.5.1"; 428 428 tokio = "0.1.7"; 429 429 tokio_io = "0.1.10"; 430 - url = "1.6.0"; 430 + url = "1.6.1"; 431 431 uuid = "0.7.1"; 432 432 }; 433 433 deps.rustc_version."0.2.3" = { ··· 464 464 dtoa = "0.4.2"; 465 465 itoa = "0.3.4"; 466 466 serde = "1.0.21"; 467 - url = "1.6.0"; 467 + url = "1.6.1"; 468 468 }; 469 469 deps.siphasher."0.2.2" = {}; 470 470 deps.slab."0.4.0" = {}; ··· 639 639 deps.unreachable."1.0.0" = { 640 640 void = "1.0.2"; 641 641 }; 642 - deps.url."1.6.0" = { 642 + deps.url."1.6.1" = { 643 643 idna = "0.1.4"; 644 644 matches = "0.1.6"; 645 645 percent_encoding = "1.0.1";
+24 -24
pkgs/tools/package-management/cargo-download/crates-io.nix
··· 4926 4926 4927 4927 4928 4928 # end 4929 - # url-1.6.0 4929 + # url-1.6.1 4930 4930 4931 - crates.url."1.6.0" = deps: { features?(features_.url."1.6.0" deps {}) }: buildRustCrate { 4931 + crates.url."1.6.1" = deps: { features?(features_.url."1.6.1" deps {}) }: buildRustCrate { 4932 4932 crateName = "url"; 4933 - version = "1.6.0"; 4933 + version = "1.6.1"; 4934 4934 description = "URL library for Rust, based on the WHATWG URL Standard"; 4935 4935 authors = [ "The rust-url developers" ]; 4936 - sha256 = "1bvzl4dvjj84h46ai3x23wyafa2wwhchj08vr2brf25dxwc7mg18"; 4936 + sha256 = "1qsnhmxznzaxl068a3ksz69kwcz7ghvl4zflg9qj7lyw4bk9ma38"; 4937 4937 dependencies = mapFeatures features ([ 4938 - (crates."idna"."${deps."url"."1.6.0"."idna"}" deps) 4939 - (crates."matches"."${deps."url"."1.6.0"."matches"}" deps) 4940 - (crates."percent_encoding"."${deps."url"."1.6.0"."percent_encoding"}" deps) 4938 + (crates."idna"."${deps."url"."1.6.1"."idna"}" deps) 4939 + (crates."matches"."${deps."url"."1.6.1"."matches"}" deps) 4940 + (crates."percent_encoding"."${deps."url"."1.6.1"."percent_encoding"}" deps) 4941 4941 ]); 4942 - features = mkFeatures (features."url"."1.6.0" or {}); 4942 + features = mkFeatures (features."url"."1.6.1" or {}); 4943 4943 }; 4944 - features_.url."1.6.0" = deps: f: updateFeatures f (rec { 4945 - idna."${deps.url."1.6.0".idna}".default = true; 4946 - matches."${deps.url."1.6.0".matches}".default = true; 4947 - percent_encoding."${deps.url."1.6.0".percent_encoding}".default = true; 4944 + features_.url."1.6.1" = deps: f: updateFeatures f (rec { 4945 + idna."${deps.url."1.6.1".idna}".default = true; 4946 + matches."${deps.url."1.6.1".matches}".default = true; 4947 + percent_encoding."${deps.url."1.6.1".percent_encoding}".default = true; 4948 4948 url = fold recursiveUpdate {} [ 4949 - { "1.6.0"."encoding" = 4950 - (f.url."1.6.0"."encoding" or false) || 4951 - (f.url."1.6.0".query_encoding or false) || 4952 - (url."1.6.0"."query_encoding" or false); } 4953 - { "1.6.0"."heapsize" = 4954 - (f.url."1.6.0"."heapsize" or false) || 4955 - (f.url."1.6.0".heap_size or false) || 4956 - (url."1.6.0"."heap_size" or false); } 4957 - { "1.6.0".default = (f.url."1.6.0".default or true); } 4949 + { "1.6.1"."encoding" = 4950 + (f.url."1.6.1"."encoding" or false) || 4951 + (f.url."1.6.1".query_encoding or false) || 4952 + (url."1.6.1"."query_encoding" or false); } 4953 + { "1.6.1"."heapsize" = 4954 + (f.url."1.6.1"."heapsize" or false) || 4955 + (f.url."1.6.1".heap_size or false) || 4956 + (url."1.6.1"."heap_size" or false); } 4957 + { "1.6.1".default = (f.url."1.6.1".default or true); } 4958 4958 ]; 4959 4959 }) [ 4960 - (features_.idna."${deps."url"."1.6.0"."idna"}" deps) 4961 - (features_.matches."${deps."url"."1.6.0"."matches"}" deps) 4962 - (features_.percent_encoding."${deps."url"."1.6.0"."percent_encoding"}" deps) 4960 + (features_.idna."${deps."url"."1.6.1"."idna"}" deps) 4961 + (features_.matches."${deps."url"."1.6.1"."matches"}" deps) 4962 + (features_.percent_encoding."${deps."url"."1.6.1"."percent_encoding"}" deps) 4963 4963 ]; 4964 4964 4965 4965
+7 -2
pkgs/top-level/all-packages.nix
··· 1624 1624 1625 1625 boot = callPackage ../development/tools/build-managers/boot { }; 1626 1626 1627 + bowtie = callPackage ../applications/science/biology/bowtie { }; 1628 + 1627 1629 bowtie2 = callPackage ../applications/science/biology/bowtie2 { }; 1628 1630 1629 1631 boxfs = callPackage ../tools/filesystems/boxfs { }; ··· 10074 10076 10075 10077 neko = callPackage ../development/compilers/neko { }; 10076 10078 10077 - nextpnr = libsForQt5.callPackage ../development/compilers/nextpnr { 10079 + nextpnr = callPackage ../development/compilers/nextpnr { }; 10080 + 10081 + nextpnrWithGui = libsForQt5.callPackage ../development/compilers/nextpnr { 10082 + enableGui = true; 10078 10083 inherit (darwin.apple_sdk.frameworks) OpenGL; 10079 10084 }; 10080 10085 ··· 21346 21351 21347 21352 etherape = callPackage ../applications/networking/sniffers/etherape { }; 21348 21353 21349 - evilpixie = libsForQt514.callPackage ../applications/graphics/evilpixie { }; 21354 + evilpixie = libsForQt5.callPackage ../applications/graphics/evilpixie { }; 21350 21355 21351 21356 exercism = callPackage ../applications/misc/exercism { }; 21352 21357
+2
pkgs/top-level/python-packages.nix
··· 1552 1552 1553 1553 dbus-python = callPackage ../development/python-modules/dbus { inherit (pkgs) dbus pkgconfig; }; 1554 1554 1555 + dbutils = callPackage ../development/python-modules/dbutils { }; 1556 + 1555 1557 dcmstack = callPackage ../development/python-modules/dcmstack { }; 1556 1558 1557 1559 ddt = callPackage ../development/python-modules/ddt { };