Merge master into staging-next

authored by github-actions[bot] and committed by GitHub fc36f69a 40a18fbf

+1511 -941
+2
nixos/tests/all-tests.nix
··· 281 #logstash = handleTest ./logstash.nix {}; 282 lorri = handleTest ./lorri/default.nix {}; 283 maddy = handleTest ./maddy.nix {}; 284 magic-wormhole-mailbox-server = handleTest ./magic-wormhole-mailbox-server.nix {}; 285 magnetico = handleTest ./magnetico.nix {}; 286 mailcatcher = handleTest ./mailcatcher.nix {}; ··· 315 moosefs = handleTest ./moosefs.nix {}; 316 mpd = handleTest ./mpd.nix {}; 317 mpv = handleTest ./mpv.nix {}; 318 mumble = handleTest ./mumble.nix {}; 319 musescore = handleTest ./musescore.nix {}; 320 munin = handleTest ./munin.nix {};
··· 281 #logstash = handleTest ./logstash.nix {}; 282 lorri = handleTest ./lorri/default.nix {}; 283 maddy = handleTest ./maddy.nix {}; 284 + maestral = handleTest ./maestral.nix {}; 285 magic-wormhole-mailbox-server = handleTest ./magic-wormhole-mailbox-server.nix {}; 286 magnetico = handleTest ./magnetico.nix {}; 287 mailcatcher = handleTest ./mailcatcher.nix {}; ··· 316 moosefs = handleTest ./moosefs.nix {}; 317 mpd = handleTest ./mpd.nix {}; 318 mpv = handleTest ./mpv.nix {}; 319 + mtp = handleTest ./mtp.nix {}; 320 mumble = handleTest ./mumble.nix {}; 321 musescore = handleTest ./musescore.nix {}; 322 munin = handleTest ./munin.nix {};
+72
nixos/tests/maestral.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: { 2 + name = "maestral"; 3 + meta = with pkgs.lib.maintainers; { 4 + maintainers = [ peterhoeg ]; 5 + }; 6 + 7 + nodes = 8 + let 9 + common = attrs: 10 + pkgs.lib.recursiveUpdate 11 + { 12 + imports = [ ./common/user-account.nix ]; 13 + systemd.user.services.maestral = { 14 + description = "Maestral Dropbox Client"; 15 + serviceConfig.Type = "exec"; 16 + }; 17 + } 18 + attrs; 19 + 20 + in 21 + { 22 + cli = { ... }: common { 23 + systemd.user.services.maestral = { 24 + wantedBy = [ "default.target" ]; 25 + serviceConfig.ExecStart = "${pkgs.maestral}/bin/maestral start --foreground"; 26 + }; 27 + }; 28 + 29 + gui = { ... }: common { 30 + services.xserver = { 31 + enable = true; 32 + displayManager.sddm.enable = true; 33 + displayManager.defaultSession = "plasma"; 34 + desktopManager.plasma5.enable = true; 35 + desktopManager.plasma5.runUsingSystemd = true; 36 + displayManager.autoLogin = { 37 + enable = true; 38 + user = "alice"; 39 + }; 40 + }; 41 + 42 + systemd.user.services = { 43 + maestral = { 44 + wantedBy = [ "graphical-session.target" ]; 45 + serviceConfig.ExecStart = "${pkgs.maestral-gui}/bin/maestral_qt"; 46 + }; 47 + # PowerDevil doesn't like our VM 48 + plasma-powerdevil.enable = false; 49 + }; 50 + }; 51 + }; 52 + 53 + testScript = { nodes, ... }: 54 + let 55 + user = nodes.cli.config.users.users.alice; 56 + in 57 + '' 58 + start_all() 59 + 60 + with subtest("CLI"): 61 + # we need SOME way to give the user an active login session 62 + cli.execute("loginctl enable-linger ${user.name}") 63 + cli.systemctl("start user@${toString user.uid}") 64 + cli.wait_for_unit("maestral.service", "${user.name}") 65 + 66 + with subtest("GUI"): 67 + gui.wait_for_x() 68 + gui.succeed("xauth merge ${user.home}/.Xauthority") 69 + gui.wait_for_window("^Desktop ") 70 + gui.wait_for_unit("maestral.service", "${user.name}") 71 + ''; 72 + })
+109
nixos/tests/mtp.nix
···
··· 1 + import ./make-test-python.nix ({ pkgs, ... }: { 2 + name = "mtp"; 3 + meta = with pkgs.lib.maintainers; { 4 + maintainers = [ matthewcroughan nixinator ]; 5 + }; 6 + 7 + nodes = 8 + { 9 + client = { config, pkgs, ... }: { 10 + # DBUS runs only once a user session is created, which means a user has to 11 + # login. Here, we log in as root. Once logged in, the gvfs-daemon service runs 12 + # as UID 0 in User-0.service 13 + services.getty.autologinUser = "root"; 14 + 15 + # XDG_RUNTIME_DIR is needed for running systemd-user services such as 16 + # gvfs-daemon as root. 17 + environment.variables.XDG_RUNTIME_DIR = "/run/user/0"; 18 + 19 + environment.systemPackages = with pkgs; [ usbutils glib jmtpfs tree ]; 20 + services.gvfs.enable = true; 21 + 22 + # Creates a usb-mtp device inside the VM, which is mapped to the host's 23 + # /tmp folder, it is able to write files to this location, but only has 24 + # permissions to read its own creations. 25 + virtualisation.qemu.options = [ 26 + "-usb" 27 + "-device usb-mtp,rootdir=/tmp,readonly=false" 28 + ]; 29 + }; 30 + }; 31 + 32 + 33 + testScript = { nodes, ... }: 34 + let 35 + # Creates a list of QEMU MTP devices matching USB ID (46f4:0004). This 36 + # value can be sourced in a shell script. This is so we can loop over the 37 + # devices we find, as this test may want to use more than one MTP device 38 + # in future. 39 + mtpDevices = pkgs.writeScript "mtpDevices.sh" '' 40 + export mtpDevices=$(lsusb -d 46f4:0004 | awk {'print $2","$4'} | sed 's/[:-]/ /g') 41 + ''; 42 + # Qemu is only capable of creating an MTP device with Picture Transfer 43 + # Protocol. This means that gvfs must use gphoto2:// rather than mtp:// 44 + # when mounting. 45 + # https://github.com/qemu/qemu/blob/970bc16f60937bcfd334f14c614bd4407c247961/hw/usb/dev-mtp.c#L278 46 + gvfs = rec { 47 + mountAllMtpDevices = pkgs.writeScript "mountAllMtpDevices.sh" '' 48 + set -e 49 + source ${mtpDevices} 50 + for i in $mtpDevices 51 + do 52 + gio mount "gphoto2://[usb:$i]/" 53 + done 54 + ''; 55 + unmountAllMtpDevices = pkgs.writeScript "unmountAllMtpDevices.sh" '' 56 + set -e 57 + source ${mtpDevices} 58 + for i in $mtpDevices 59 + do 60 + gio mount -u "gphoto2://[usb:$i]/" 61 + done 62 + ''; 63 + # gvfsTest: 64 + # 1. Creates a 10M test file 65 + # 2. Copies it to the device using GIO tools 66 + # 3. Checks for corruption with `diff` 67 + # 4. Removes the file, then unmounts the disks. 68 + gvfsTest = pkgs.writeScript "gvfsTest.sh" '' 69 + set -e 70 + source ${mtpDevices} 71 + ${mountAllMtpDevices} 72 + dd if=/dev/urandom of=testFile10M bs=1M count=10 73 + for i in $mtpDevices 74 + do 75 + gio copy ./testFile10M gphoto2://[usb:$i]/ 76 + ls -lah /run/user/0/gvfs/*/testFile10M 77 + gio remove gphoto2://[usb:$i]/testFile10M 78 + done 79 + ${unmountAllMtpDevices} 80 + ''; 81 + }; 82 + jmtpfs = { 83 + # jmtpfsTest: 84 + # 1. Mounts the device on a dir named `phone` using jmtpfs 85 + # 2. Puts the current Nixpkgs libmtp version into a file 86 + # 3. Checks for corruption with `diff` 87 + # 4. Prints the directory tree 88 + jmtpfsTest = pkgs.writeScript "jmtpfsTest.sh" '' 89 + set -e 90 + mkdir phone 91 + jmtpfs phone 92 + echo "${pkgs.libmtp.version}" > phone/tmp/testFile 93 + echo "${pkgs.libmtp.version}" > testFile 94 + diff phone/tmp/testFile testFile 95 + tree phone 96 + ''; 97 + }; 98 + in 99 + # Using >&2 allows the results of the scripts to be printed to the terminal 100 + # when building this test with Nix. Scripts would otherwise complete 101 + # silently. 102 + '' 103 + start_all() 104 + client.wait_for_unit("multi-user.target") 105 + client.wait_for_unit("dbus.service") 106 + client.succeed("${gvfs.gvfsTest} >&2") 107 + client.succeed("${jmtpfs.jmtpfsTest} >&2") 108 + ''; 109 + })
+2 -2
pkgs/applications/networking/browsers/qutebrowser/default.nix
··· 31 32 in mkDerivationWith python3Packages.buildPythonApplication rec { 33 pname = "qutebrowser"; 34 - version = "2.4.0"; 35 36 # the release tarballs are different from the git checkout! 37 src = fetchurl { 38 url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz"; 39 - sha256 = "8s2auxTrq/ljBXOy+4RHvhkod3h9xOOWThtV9yqFkuw="; 40 }; 41 42 # Needs tox
··· 31 32 in mkDerivationWith python3Packages.buildPythonApplication rec { 33 pname = "qutebrowser"; 34 + version = "2.5.0"; 35 36 # the release tarballs are different from the git checkout! 37 src = fetchurl { 38 url = "https://github.com/qutebrowser/qutebrowser/releases/download/v${version}/${pname}-${version}.tar.gz"; 39 + sha256 = "1zai8ivc9cqax2idspwvyp24dkis0x6sv29fia8ja3sp62i45171"; 40 }; 41 42 # Needs tox
+3
pkgs/applications/networking/maestral-qt/default.nix
··· 2 , fetchFromGitHub 3 , python3 4 , wrapQtAppsHook 5 }: 6 7 python3.pkgs.buildPythonApplication rec { ··· 43 doCheck = false; 44 45 pythonImportsCheck = [ "maestral_qt" ]; 46 47 meta = with lib; { 48 description = "GUI front-end for maestral (an open-source Dropbox client) for Linux";
··· 2 , fetchFromGitHub 3 , python3 4 , wrapQtAppsHook 5 + , nixosTests 6 }: 7 8 python3.pkgs.buildPythonApplication rec { ··· 44 doCheck = false; 45 46 pythonImportsCheck = [ "maestral_qt" ]; 47 + 48 + passthru.tests.maestral = nixosTests.maestral; 49 50 meta = with lib; { 51 description = "GUI front-end for maestral (an open-source Dropbox client) for Linux";
+1122 -860
pkgs/development/compilers/elm/packages/node-packages.nix
··· 22 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 23 }; 24 }; 25 - "@babel/code-frame-7.16.0" = { 26 name = "_at_babel_slash_code-frame"; 27 packageName = "@babel/code-frame"; 28 - version = "7.16.0"; 29 src = fetchurl { 30 - url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.0.tgz"; 31 - sha512 = "IF4EOMEV+bfYwOmNxGzSnjR2EmQod7f1UXOpZM3l4i4o4QNwzjtJAu/HxdjHq0aYBvdqMuQEY1eg0nqW9ZPORA=="; 32 }; 33 }; 34 - "@babel/compat-data-7.16.4" = { 35 name = "_at_babel_slash_compat-data"; 36 packageName = "@babel/compat-data"; 37 - version = "7.16.4"; 38 src = fetchurl { 39 - url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.16.4.tgz"; 40 - sha512 = "1o/jo7D+kC9ZjHX5v+EHrdjl3PhxMrLSOTGsOdHJ+KL8HCaEK6ehrVL2RS6oHDZp+L7xLirLrPmQtEng769J/Q=="; 41 }; 42 }; 43 "@babel/core-7.12.10" = { ··· 49 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 50 }; 51 }; 52 - "@babel/generator-7.16.5" = { 53 name = "_at_babel_slash_generator"; 54 packageName = "@babel/generator"; 55 - version = "7.16.5"; 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.16.5.tgz"; 58 - sha512 = "kIvCdjZqcdKqoDbVVdt5R99icaRtrtYhYK/xux5qiWCBmfdvEYMFZ68QCrpE5cbFM1JsuArUNs1ZkuKtTtUcZA=="; 59 }; 60 }; 61 - "@babel/helper-annotate-as-pure-7.16.0" = { 62 name = "_at_babel_slash_helper-annotate-as-pure"; 63 packageName = "@babel/helper-annotate-as-pure"; 64 - version = "7.16.0"; 65 src = fetchurl { 66 - url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.0.tgz"; 67 - sha512 = "ItmYF9vR4zA8cByDocY05o0LGUkp1zhbTQOH1NFyl5xXEqlTJQCEJjieriw+aFpxo16swMxUnUiKS7a/r4vtHg=="; 68 }; 69 }; 70 - "@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" = { 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 - version = "7.16.5"; 74 src = fetchurl { 75 - url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.5.tgz"; 76 - sha512 = "3JEA9G5dmmnIWdzaT9d0NmFRgYnWUThLsDaL7982H0XqqWr56lRrsmwheXFMjR+TMl7QMBb6mzy9kvgr1lRLUA=="; 77 }; 78 }; 79 - "@babel/helper-compilation-targets-7.16.3" = { 80 name = "_at_babel_slash_helper-compilation-targets"; 81 packageName = "@babel/helper-compilation-targets"; 82 - version = "7.16.3"; 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.16.3.tgz"; 85 - sha512 = "vKsoSQAyBmxS35JUOOt+07cLc6Nk/2ljLIHwmq2/NM6hdioUaqEXq/S+nXvbvXbZkNDlWOymPanJGOc4CBjSJA=="; 86 }; 87 }; 88 - "@babel/helper-create-class-features-plugin-7.16.5" = { 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.16.5"; 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.16.5.tgz"; 94 - sha512 = "NEohnYA7mkB8L5JhU7BLwcBdU3j83IziR9aseMueWGeAjblbul3zzb8UvJ3a1zuBiqCMObzCJHFqKIQE6hTVmg=="; 95 }; 96 }; 97 - "@babel/helper-create-regexp-features-plugin-7.16.0" = { 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 packageName = "@babel/helper-create-regexp-features-plugin"; 100 - version = "7.16.0"; 101 src = fetchurl { 102 - url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.16.0.tgz"; 103 - sha512 = "3DyG0zAFAZKcOp7aVr33ddwkxJ0Z0Jr5V99y3I690eYLpukJsJvAbzTy1ewoCqsML8SbIrjH14Jc/nSQ4TvNPA=="; 104 }; 105 }; 106 - "@babel/helper-environment-visitor-7.16.5" = { 107 name = "_at_babel_slash_helper-environment-visitor"; 108 packageName = "@babel/helper-environment-visitor"; 109 - version = "7.16.5"; 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.5.tgz"; 112 - sha512 = "ODQyc5AnxmZWm/R2W7fzhamOk1ey8gSguo5SGvF0zcB3uUzRpTRmM/jmLSm9bDMyPlvbyJ+PwPEK0BWIoZ9wjg=="; 113 }; 114 }; 115 - "@babel/helper-explode-assignable-expression-7.16.0" = { 116 name = "_at_babel_slash_helper-explode-assignable-expression"; 117 packageName = "@babel/helper-explode-assignable-expression"; 118 - version = "7.16.0"; 119 src = fetchurl { 120 - url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.0.tgz"; 121 - sha512 = "Hk2SLxC9ZbcOhLpg/yMznzJ11W++lg5GMbxt1ev6TXUiJB0N42KPC+7w8a+eWGuqDnUYuwStJoZHM7RgmIOaGQ=="; 122 }; 123 }; 124 - "@babel/helper-function-name-7.16.0" = { 125 name = "_at_babel_slash_helper-function-name"; 126 packageName = "@babel/helper-function-name"; 127 - version = "7.16.0"; 128 src = fetchurl { 129 - url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.0.tgz"; 130 - sha512 = "BZh4mEk1xi2h4HFjWUXRQX5AEx4rvaZxHgax9gcjdLWdkjsY7MKt5p0otjsg5noXw+pB+clMCjw+aEVYADMjog=="; 131 }; 132 }; 133 - "@babel/helper-get-function-arity-7.16.0" = { 134 name = "_at_babel_slash_helper-get-function-arity"; 135 packageName = "@babel/helper-get-function-arity"; 136 - version = "7.16.0"; 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.0.tgz"; 139 - sha512 = "ASCquNcywC1NkYh/z7Cgp3w31YW8aojjYIlNg4VeJiHkqyP4AzIvr4qx7pYDb4/s8YcsZWqqOSxgkvjUz1kpDQ=="; 140 }; 141 }; 142 - "@babel/helper-hoist-variables-7.16.0" = { 143 name = "_at_babel_slash_helper-hoist-variables"; 144 packageName = "@babel/helper-hoist-variables"; 145 - version = "7.16.0"; 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.0.tgz"; 148 - sha512 = "1AZlpazjUR0EQZQv3sgRNfM9mEVWPK3M6vlalczA+EECcPz3XPh6VplbErL5UoMpChhSck5wAJHthlj1bYpcmg=="; 149 }; 150 }; 151 - "@babel/helper-member-expression-to-functions-7.16.5" = { 152 name = "_at_babel_slash_helper-member-expression-to-functions"; 153 packageName = "@babel/helper-member-expression-to-functions"; 154 - version = "7.16.5"; 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.16.5.tgz"; 157 - sha512 = "7fecSXq7ZrLE+TWshbGT+HyCLkxloWNhTbU2QM1NTI/tDqyf0oZiMcEfYtDuUDCo528EOlt39G1rftea4bRZIw=="; 158 }; 159 }; 160 - "@babel/helper-module-imports-7.16.0" = { 161 name = "_at_babel_slash_helper-module-imports"; 162 packageName = "@babel/helper-module-imports"; 163 - version = "7.16.0"; 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.0.tgz"; 166 - sha512 = "kkH7sWzKPq0xt3H1n+ghb4xEMP8k0U7XV3kkB+ZGy69kDk2ySFW1qPi06sjKzFY3t1j6XbJSqr4mF9L7CYVyhg=="; 167 }; 168 }; 169 - "@babel/helper-module-transforms-7.16.5" = { 170 name = "_at_babel_slash_helper-module-transforms"; 171 packageName = "@babel/helper-module-transforms"; 172 - version = "7.16.5"; 173 src = fetchurl { 174 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.16.5.tgz"; 175 - sha512 = "CkvMxgV4ZyyioElFwcuWnDCcNIeyqTkCm9BxXZi73RR1ozqlpboqsbGUNvRTflgZtFbbJ1v5Emvm+lkjMYY/LQ=="; 176 }; 177 }; 178 - "@babel/helper-optimise-call-expression-7.16.0" = { 179 name = "_at_babel_slash_helper-optimise-call-expression"; 180 packageName = "@babel/helper-optimise-call-expression"; 181 - version = "7.16.0"; 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.0.tgz"; 184 - sha512 = "SuI467Gi2V8fkofm2JPnZzB/SUuXoJA5zXe/xzyPP2M04686RzFKFHPK6HDVN6JvWBIEW8tt9hPR7fXdn2Lgpw=="; 185 }; 186 }; 187 - "@babel/helper-plugin-utils-7.16.5" = { 188 name = "_at_babel_slash_helper-plugin-utils"; 189 packageName = "@babel/helper-plugin-utils"; 190 - version = "7.16.5"; 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.5.tgz"; 193 - sha512 = "59KHWHXxVA9K4HNF4sbHCf+eJeFe0Te/ZFGqBT4OjXhrwvA04sGfaEGsVTdsjoszq0YTP49RC9UKe5g8uN2RwQ=="; 194 }; 195 }; 196 - "@babel/helper-remap-async-to-generator-7.16.5" = { 197 name = "_at_babel_slash_helper-remap-async-to-generator"; 198 packageName = "@babel/helper-remap-async-to-generator"; 199 - version = "7.16.5"; 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.5.tgz"; 202 - sha512 = "X+aAJldyxrOmN9v3FKp+Hu1NO69VWgYgDGq6YDykwRPzxs5f2N+X988CBXS7EQahDU+Vpet5QYMqLk+nsp+Qxw=="; 203 }; 204 }; 205 - "@babel/helper-replace-supers-7.16.5" = { 206 name = "_at_babel_slash_helper-replace-supers"; 207 packageName = "@babel/helper-replace-supers"; 208 - version = "7.16.5"; 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.5.tgz"; 211 - sha512 = "ao3seGVa/FZCMCCNDuBcqnBFSbdr8N2EW35mzojx3TwfIbdPmNK+JV6+2d5bR0Z71W5ocLnQp9en/cTF7pBJiQ=="; 212 }; 213 }; 214 - "@babel/helper-simple-access-7.16.0" = { 215 name = "_at_babel_slash_helper-simple-access"; 216 packageName = "@babel/helper-simple-access"; 217 - version = "7.16.0"; 218 src = fetchurl { 219 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.16.0.tgz"; 220 - sha512 = "o1rjBT/gppAqKsYfUdfHq5Rk03lMQrkPHG1OWzHWpLgVXRH4HnMM9Et9CVdIqwkCQlobnGHEJMsgWP/jE1zUiw=="; 221 }; 222 }; 223 "@babel/helper-skip-transparent-expression-wrappers-7.16.0" = { ··· 229 sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; 230 }; 231 }; 232 - "@babel/helper-split-export-declaration-7.16.0" = { 233 name = "_at_babel_slash_helper-split-export-declaration"; 234 packageName = "@babel/helper-split-export-declaration"; 235 - version = "7.16.0"; 236 src = fetchurl { 237 - url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.0.tgz"; 238 - sha512 = "0YMMRpuDFNGTHNRiiqJX19GjNXA4H0E8jZ2ibccfSxaCogbm3am5WN/2nQNj0YnQwGWM1J06GOcQ2qnh3+0paw=="; 239 }; 240 }; 241 - "@babel/helper-validator-identifier-7.15.7" = { 242 name = "_at_babel_slash_helper-validator-identifier"; 243 packageName = "@babel/helper-validator-identifier"; 244 - version = "7.15.7"; 245 src = fetchurl { 246 - url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz"; 247 - sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w=="; 248 }; 249 }; 250 - "@babel/helper-validator-option-7.14.5" = { 251 name = "_at_babel_slash_helper-validator-option"; 252 packageName = "@babel/helper-validator-option"; 253 - version = "7.14.5"; 254 src = fetchurl { 255 - url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz"; 256 - sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow=="; 257 }; 258 }; 259 - "@babel/helper-wrap-function-7.16.5" = { 260 name = "_at_babel_slash_helper-wrap-function"; 261 packageName = "@babel/helper-wrap-function"; 262 - version = "7.16.5"; 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.5.tgz"; 265 - sha512 = "2J2pmLBqUqVdJw78U0KPNdeE2qeuIyKoG4mKV7wAq3mc4jJG282UgjZw4ZYDnqiWQuS3Y3IYdF/AQ6CpyBV3VA=="; 266 }; 267 }; 268 - "@babel/helpers-7.16.5" = { 269 name = "_at_babel_slash_helpers"; 270 packageName = "@babel/helpers"; 271 - version = "7.16.5"; 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.16.5.tgz"; 274 - sha512 = "TLgi6Lh71vvMZGEkFuIxzaPsyeYCHQ5jJOOX1f0xXn0uciFuE8cEk0wyBquMcCxBXZ5BJhE2aUB7pnWTD150Tw=="; 275 }; 276 }; 277 - "@babel/highlight-7.16.0" = { 278 name = "_at_babel_slash_highlight"; 279 packageName = "@babel/highlight"; 280 - version = "7.16.0"; 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.0.tgz"; 283 - sha512 = "t8MH41kUQylBtu2+4IQA3atqevA2lRgqA2wyVB/YiWmsDSuylZZuXOUy9ric30hfzauEFfdsuk/eXTRrGrfd0g=="; 284 }; 285 }; 286 - "@babel/parser-7.16.6" = { 287 name = "_at_babel_slash_parser"; 288 packageName = "@babel/parser"; 289 - version = "7.16.6"; 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.16.6.tgz"; 292 - sha512 = "Gr86ujcNuPDnNOY8mi383Hvi8IYrJVJYuf3XcuBM/Dgd+bINn/7tHqsj+tKkoreMbmGsFLsltI/JJd8fOFWGDQ=="; 293 }; 294 }; 295 - "@babel/plugin-proposal-async-generator-functions-7.16.5" = { 296 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 297 packageName = "@babel/plugin-proposal-async-generator-functions"; 298 - version = "7.16.5"; 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.5.tgz"; 301 - sha512 = "C/FX+3HNLV6sz7AqbTQqEo1L9/kfrKjxcVtgyBCmvIgOjvuBVUWooDoi7trsLxOzCEo5FccjRvKHkfDsJFZlfA=="; 302 }; 303 }; 304 - "@babel/plugin-proposal-class-properties-7.16.5" = { 305 name = "_at_babel_slash_plugin-proposal-class-properties"; 306 packageName = "@babel/plugin-proposal-class-properties"; 307 - version = "7.16.5"; 308 src = fetchurl { 309 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.5.tgz"; 310 - sha512 = "pJD3HjgRv83s5dv1sTnDbZOaTjghKEz8KUn1Kbh2eAIRhGuyQ1XSeI4xVXU3UlIEVA3DAyIdxqT1eRn7Wcn55A=="; 311 }; 312 }; 313 - "@babel/plugin-proposal-dynamic-import-7.16.5" = { 314 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 315 packageName = "@babel/plugin-proposal-dynamic-import"; 316 - version = "7.16.5"; 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.5.tgz"; 319 - sha512 = "P05/SJZTTvHz79LNYTF8ff5xXge0kk5sIIWAypcWgX4BTRUgyHc8wRxJ/Hk+mU0KXldgOOslKaeqnhthcDJCJQ=="; 320 }; 321 }; 322 - "@babel/plugin-proposal-export-namespace-from-7.16.5" = { 323 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 324 packageName = "@babel/plugin-proposal-export-namespace-from"; 325 - version = "7.16.5"; 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.5.tgz"; 328 - sha512 = "i+sltzEShH1vsVydvNaTRsgvq2vZsfyrd7K7vPLUU/KgS0D5yZMe6uipM0+izminnkKrEfdUnz7CxMRb6oHZWw=="; 329 }; 330 }; 331 - "@babel/plugin-proposal-json-strings-7.16.5" = { 332 name = "_at_babel_slash_plugin-proposal-json-strings"; 333 packageName = "@babel/plugin-proposal-json-strings"; 334 - version = "7.16.5"; 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.5.tgz"; 337 - sha512 = "QQJueTFa0y9E4qHANqIvMsuxM/qcLQmKttBACtPCQzGUEizsXDACGonlPiSwynHfOa3vNw0FPMVvQzbuXwh4SQ=="; 338 }; 339 }; 340 - "@babel/plugin-proposal-logical-assignment-operators-7.16.5" = { 341 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 342 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 343 - version = "7.16.5"; 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.5.tgz"; 346 - sha512 = "xqibl7ISO2vjuQM+MzR3rkd0zfNWltk7n9QhaD8ghMmMceVguYrNDt7MikRyj4J4v3QehpnrU8RYLnC7z/gZLA=="; 347 }; 348 }; 349 - "@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" = { 350 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 351 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 352 - version = "7.16.5"; 353 src = fetchurl { 354 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.5.tgz"; 355 - sha512 = "YwMsTp/oOviSBhrjwi0vzCUycseCYwoXnLiXIL3YNjHSMBHicGTz7GjVU/IGgz4DtOEXBdCNG72pvCX22ehfqg=="; 356 }; 357 }; 358 - "@babel/plugin-proposal-numeric-separator-7.16.5" = { 359 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 360 packageName = "@babel/plugin-proposal-numeric-separator"; 361 - version = "7.16.5"; 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.5.tgz"; 364 - sha512 = "DvB9l/TcsCRvsIV9v4jxR/jVP45cslTVC0PMVHvaJhhNuhn2Y1SOhCSFlPK777qLB5wb8rVDaNoqMTyOqtY5Iw=="; 365 }; 366 }; 367 - "@babel/plugin-proposal-object-rest-spread-7.16.5" = { 368 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 369 packageName = "@babel/plugin-proposal-object-rest-spread"; 370 - version = "7.16.5"; 371 src = fetchurl { 372 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.16.5.tgz"; 373 - sha512 = "UEd6KpChoyPhCoE840KRHOlGhEZFutdPDMGj+0I56yuTTOaT51GzmnEl/0uT41fB/vD2nT+Pci2KjezyE3HmUw=="; 374 }; 375 }; 376 - "@babel/plugin-proposal-optional-catch-binding-7.16.5" = { 377 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 378 packageName = "@babel/plugin-proposal-optional-catch-binding"; 379 - version = "7.16.5"; 380 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.5.tgz"; 382 - sha512 = "ihCMxY1Iljmx4bWy/PIMJGXN4NS4oUj1MKynwO07kiKms23pNvIn1DMB92DNB2R0EA882sw0VXIelYGdtF7xEQ=="; 383 }; 384 }; 385 - "@babel/plugin-proposal-optional-chaining-7.16.5" = { 386 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 387 packageName = "@babel/plugin-proposal-optional-chaining"; 388 - version = "7.16.5"; 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.5.tgz"; 391 - sha512 = "kzdHgnaXRonttiTfKYnSVafbWngPPr2qKw9BWYBESl91W54e+9R5pP70LtWxV56g0f05f/SQrwHYkfvbwcdQ/A=="; 392 }; 393 }; 394 - "@babel/plugin-proposal-private-methods-7.16.5" = { 395 name = "_at_babel_slash_plugin-proposal-private-methods"; 396 packageName = "@babel/plugin-proposal-private-methods"; 397 - version = "7.16.5"; 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.5.tgz"; 400 - sha512 = "+yFMO4BGT3sgzXo+lrq7orX5mAZt57DwUK6seqII6AcJnJOIhBJ8pzKH47/ql/d426uQ7YhN8DpUFirQzqYSUA=="; 401 }; 402 }; 403 - "@babel/plugin-proposal-unicode-property-regex-7.16.5" = { 404 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 405 packageName = "@babel/plugin-proposal-unicode-property-regex"; 406 - version = "7.16.5"; 407 src = fetchurl { 408 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.5.tgz"; 409 - sha512 = "s5sKtlKQyFSatt781HQwv1hoM5BQ9qRH30r+dK56OLDsHmV74mzwJNX7R1yMuE7VZKG5O6q/gmOGSAO6ikTudg=="; 410 }; 411 }; 412 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 517 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 518 }; 519 }; 520 - "@babel/plugin-transform-arrow-functions-7.16.5" = { 521 name = "_at_babel_slash_plugin-transform-arrow-functions"; 522 packageName = "@babel/plugin-transform-arrow-functions"; 523 - version = "7.16.5"; 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.5.tgz"; 526 - sha512 = "8bTHiiZyMOyfZFULjsCnYOWG059FVMes0iljEHSfARhNgFfpsqE92OrCffv3veSw9rwMkYcFe9bj0ZoXU2IGtQ=="; 527 }; 528 }; 529 - "@babel/plugin-transform-async-to-generator-7.16.5" = { 530 name = "_at_babel_slash_plugin-transform-async-to-generator"; 531 packageName = "@babel/plugin-transform-async-to-generator"; 532 - version = "7.16.5"; 533 src = fetchurl { 534 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.5.tgz"; 535 - sha512 = "TMXgfioJnkXU+XRoj7P2ED7rUm5jbnDWwlCuFVTpQboMfbSya5WrmubNBAMlk7KXvywpo8rd8WuYZkis1o2H8w=="; 536 }; 537 }; 538 - "@babel/plugin-transform-block-scoped-functions-7.16.5" = { 539 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 540 packageName = "@babel/plugin-transform-block-scoped-functions"; 541 - version = "7.16.5"; 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.5.tgz"; 544 - sha512 = "BxmIyKLjUGksJ99+hJyL/HIxLIGnLKtw772zYDER7UuycDZ+Xvzs98ZQw6NGgM2ss4/hlFAaGiZmMNKvValEjw=="; 545 }; 546 }; 547 - "@babel/plugin-transform-block-scoping-7.16.5" = { 548 name = "_at_babel_slash_plugin-transform-block-scoping"; 549 packageName = "@babel/plugin-transform-block-scoping"; 550 - version = "7.16.5"; 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.5.tgz"; 553 - sha512 = "JxjSPNZSiOtmxjX7PBRBeRJTUKTyJ607YUYeT0QJCNdsedOe+/rXITjP08eG8xUpsLfPirgzdCFN+h0w6RI+pQ=="; 554 }; 555 }; 556 - "@babel/plugin-transform-classes-7.16.5" = { 557 name = "_at_babel_slash_plugin-transform-classes"; 558 packageName = "@babel/plugin-transform-classes"; 559 - version = "7.16.5"; 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.5.tgz"; 562 - sha512 = "DzJ1vYf/7TaCYy57J3SJ9rV+JEuvmlnvvyvYKFbk5u46oQbBvuB9/0w+YsVsxkOv8zVWKpDmUoj4T5ILHoXevA=="; 563 }; 564 }; 565 - "@babel/plugin-transform-computed-properties-7.16.5" = { 566 name = "_at_babel_slash_plugin-transform-computed-properties"; 567 packageName = "@babel/plugin-transform-computed-properties"; 568 - version = "7.16.5"; 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.5.tgz"; 571 - sha512 = "n1+O7xtU5lSLraRzX88CNcpl7vtGdPakKzww74bVwpAIRgz9JVLJJpOLb0uYqcOaXVM0TL6X0RVeIJGD2CnCkg=="; 572 }; 573 }; 574 - "@babel/plugin-transform-destructuring-7.16.5" = { 575 name = "_at_babel_slash_plugin-transform-destructuring"; 576 packageName = "@babel/plugin-transform-destructuring"; 577 - version = "7.16.5"; 578 src = fetchurl { 579 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.16.5.tgz"; 580 - sha512 = "GuRVAsjq+c9YPK6NeTkRLWyQskDC099XkBSVO+6QzbnOnH2d/4mBVXYStaPrZD3dFRfg00I6BFJ9Atsjfs8mlg=="; 581 }; 582 }; 583 - "@babel/plugin-transform-dotall-regex-7.16.5" = { 584 name = "_at_babel_slash_plugin-transform-dotall-regex"; 585 packageName = "@babel/plugin-transform-dotall-regex"; 586 - version = "7.16.5"; 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.5.tgz"; 589 - sha512 = "iQiEMt8Q4/5aRGHpGVK2Zc7a6mx7qEAO7qehgSug3SDImnuMzgmm/wtJALXaz25zUj1PmnNHtShjFgk4PDx4nw=="; 590 }; 591 }; 592 - "@babel/plugin-transform-duplicate-keys-7.16.5" = { 593 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 594 packageName = "@babel/plugin-transform-duplicate-keys"; 595 - version = "7.16.5"; 596 src = fetchurl { 597 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.5.tgz"; 598 - sha512 = "81tijpDg2a6I1Yhj4aWY1l3O1J4Cg/Pd7LfvuaH2VVInAkXtzibz9+zSPdUM1WvuUi128ksstAP0hM5w48vQgg=="; 599 }; 600 }; 601 - "@babel/plugin-transform-exponentiation-operator-7.16.5" = { 602 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 603 packageName = "@babel/plugin-transform-exponentiation-operator"; 604 - version = "7.16.5"; 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.5.tgz"; 607 - sha512 = "12rba2HwemQPa7BLIKCzm1pT2/RuQHtSFHdNl41cFiC6oi4tcrp7gjB07pxQvFpcADojQywSjblQth6gJyE6CA=="; 608 }; 609 }; 610 - "@babel/plugin-transform-for-of-7.16.5" = { 611 name = "_at_babel_slash_plugin-transform-for-of"; 612 packageName = "@babel/plugin-transform-for-of"; 613 - version = "7.16.5"; 614 src = fetchurl { 615 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.5.tgz"; 616 - sha512 = "+DpCAJFPAvViR17PIMi9x2AE34dll5wNlXO43wagAX2YcRGgEVHCNFC4azG85b4YyyFarvkc/iD5NPrz4Oneqw=="; 617 }; 618 }; 619 - "@babel/plugin-transform-function-name-7.16.5" = { 620 name = "_at_babel_slash_plugin-transform-function-name"; 621 packageName = "@babel/plugin-transform-function-name"; 622 - version = "7.16.5"; 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.5.tgz"; 625 - sha512 = "Fuec/KPSpVLbGo6z1RPw4EE1X+z9gZk1uQmnYy7v4xr4TO9p41v1AoUuXEtyqAI7H+xNJYSICzRqZBhDEkd3kQ=="; 626 }; 627 }; 628 - "@babel/plugin-transform-literals-7.16.5" = { 629 name = "_at_babel_slash_plugin-transform-literals"; 630 packageName = "@babel/plugin-transform-literals"; 631 - version = "7.16.5"; 632 src = fetchurl { 633 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.5.tgz"; 634 - sha512 = "B1j9C/IfvshnPcklsc93AVLTrNVa69iSqztylZH6qnmiAsDDOmmjEYqOm3Ts2lGSgTSywnBNiqC949VdD0/gfw=="; 635 }; 636 }; 637 - "@babel/plugin-transform-member-expression-literals-7.16.5" = { 638 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 639 packageName = "@babel/plugin-transform-member-expression-literals"; 640 - version = "7.16.5"; 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.5.tgz"; 643 - sha512 = "d57i3vPHWgIde/9Y8W/xSFUndhvhZN5Wu2TjRrN1MVz5KzdUihKnfDVlfP1U7mS5DNj/WHHhaE4/tTi4hIyHwQ=="; 644 }; 645 }; 646 - "@babel/plugin-transform-modules-amd-7.16.5" = { 647 name = "_at_babel_slash_plugin-transform-modules-amd"; 648 packageName = "@babel/plugin-transform-modules-amd"; 649 - version = "7.16.5"; 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.5.tgz"; 652 - sha512 = "oHI15S/hdJuSCfnwIz+4lm6wu/wBn7oJ8+QrkzPPwSFGXk8kgdI/AIKcbR/XnD1nQVMg/i6eNaXpszbGuwYDRQ=="; 653 }; 654 }; 655 - "@babel/plugin-transform-modules-commonjs-7.16.5" = { 656 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 657 packageName = "@babel/plugin-transform-modules-commonjs"; 658 - version = "7.16.5"; 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.16.5.tgz"; 661 - sha512 = "ABhUkxvoQyqhCWyb8xXtfwqNMJD7tx+irIRnUh6lmyFud7Jln1WzONXKlax1fg/ey178EXbs4bSGNd6PngO+SQ=="; 662 }; 663 }; 664 - "@babel/plugin-transform-modules-systemjs-7.16.5" = { 665 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 666 packageName = "@babel/plugin-transform-modules-systemjs"; 667 - version = "7.16.5"; 668 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.16.5.tgz"; 670 - sha512 = "53gmLdScNN28XpjEVIm7LbWnD/b/TpbwKbLk6KV4KqC9WyU6rq1jnNmVG6UgAdQZVVGZVoik3DqHNxk4/EvrjA=="; 671 }; 672 }; 673 - "@babel/plugin-transform-modules-umd-7.16.5" = { 674 name = "_at_babel_slash_plugin-transform-modules-umd"; 675 packageName = "@babel/plugin-transform-modules-umd"; 676 - version = "7.16.5"; 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.5.tgz"; 679 - sha512 = "qTFnpxHMoenNHkS3VoWRdwrcJ3FhX567GvDA3hRZKF0Dj8Fmg0UzySZp3AP2mShl/bzcywb/UWAMQIjA1bhXvw=="; 680 }; 681 }; 682 - "@babel/plugin-transform-named-capturing-groups-regex-7.16.5" = { 683 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 684 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 685 - version = "7.16.5"; 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.5.tgz"; 688 - sha512 = "/wqGDgvFUeKELW6ex6QB7dLVRkd5ehjw34tpXu1nhKC0sFfmaLabIswnpf8JgDyV2NeDmZiwoOb0rAmxciNfjA=="; 689 }; 690 }; 691 - "@babel/plugin-transform-new-target-7.16.5" = { 692 name = "_at_babel_slash_plugin-transform-new-target"; 693 packageName = "@babel/plugin-transform-new-target"; 694 - version = "7.16.5"; 695 src = fetchurl { 696 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.5.tgz"; 697 - sha512 = "ZaIrnXF08ZC8jnKR4/5g7YakGVL6go6V9ql6Jl3ecO8PQaQqFE74CuM384kezju7Z9nGCCA20BqZaR1tJ/WvHg=="; 698 }; 699 }; 700 - "@babel/plugin-transform-object-super-7.16.5" = { 701 name = "_at_babel_slash_plugin-transform-object-super"; 702 packageName = "@babel/plugin-transform-object-super"; 703 - version = "7.16.5"; 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.5.tgz"; 706 - sha512 = "tded+yZEXuxt9Jdtkc1RraW1zMF/GalVxaVVxh41IYwirdRgyAxxxCKZ9XB7LxZqmsjfjALxupNE1MIz9KH+Zg=="; 707 }; 708 }; 709 - "@babel/plugin-transform-parameters-7.16.5" = { 710 name = "_at_babel_slash_plugin-transform-parameters"; 711 packageName = "@babel/plugin-transform-parameters"; 712 - version = "7.16.5"; 713 src = fetchurl { 714 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.5.tgz"; 715 - sha512 = "B3O6AL5oPop1jAVg8CV+haeUte9oFuY85zu0jwnRNZZi3tVAbJriu5tag/oaO2kGaQM/7q7aGPBlTI5/sr9enA=="; 716 }; 717 }; 718 - "@babel/plugin-transform-property-literals-7.16.5" = { 719 name = "_at_babel_slash_plugin-transform-property-literals"; 720 packageName = "@babel/plugin-transform-property-literals"; 721 - version = "7.16.5"; 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.5.tgz"; 724 - sha512 = "+IRcVW71VdF9pEH/2R/Apab4a19LVvdVsr/gEeotH00vSDVlKD+XgfSIw+cgGWsjDB/ziqGv/pGoQZBIiQVXHg=="; 725 }; 726 }; 727 - "@babel/plugin-transform-regenerator-7.16.5" = { 728 name = "_at_babel_slash_plugin-transform-regenerator"; 729 packageName = "@babel/plugin-transform-regenerator"; 730 - version = "7.16.5"; 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.5.tgz"; 733 - sha512 = "2z+it2eVWU8TtQQRauvGUqZwLy4+7rTfo6wO4npr+fvvN1SW30ZF3O/ZRCNmTuu4F5MIP8OJhXAhRV5QMJOuYg=="; 734 }; 735 }; 736 - "@babel/plugin-transform-reserved-words-7.16.5" = { 737 name = "_at_babel_slash_plugin-transform-reserved-words"; 738 packageName = "@babel/plugin-transform-reserved-words"; 739 - version = "7.16.5"; 740 src = fetchurl { 741 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.5.tgz"; 742 - sha512 = "aIB16u8lNcf7drkhXJRoggOxSTUAuihTSTfAcpynowGJOZiGf+Yvi7RuTwFzVYSYPmWyARsPqUGoZWWWxLiknw=="; 743 }; 744 }; 745 "@babel/plugin-transform-runtime-7.12.10" = { ··· 751 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 752 }; 753 }; 754 - "@babel/plugin-transform-shorthand-properties-7.16.5" = { 755 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 756 packageName = "@babel/plugin-transform-shorthand-properties"; 757 - version = "7.16.5"; 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.5.tgz"; 760 - sha512 = "ZbuWVcY+MAXJuuW7qDoCwoxDUNClfZxoo7/4swVbOW1s/qYLOMHlm9YRWMsxMFuLs44eXsv4op1vAaBaBaDMVg=="; 761 }; 762 }; 763 - "@babel/plugin-transform-spread-7.16.5" = { 764 name = "_at_babel_slash_plugin-transform-spread"; 765 packageName = "@babel/plugin-transform-spread"; 766 - version = "7.16.5"; 767 src = fetchurl { 768 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.5.tgz"; 769 - sha512 = "5d6l/cnG7Lw4tGHEoga4xSkYp1euP7LAtrah1h1PgJ3JY7yNsjybsxQAnVK4JbtReZ/8z6ASVmd3QhYYKLaKZw=="; 770 }; 771 }; 772 - "@babel/plugin-transform-sticky-regex-7.16.5" = { 773 name = "_at_babel_slash_plugin-transform-sticky-regex"; 774 packageName = "@babel/plugin-transform-sticky-regex"; 775 - version = "7.16.5"; 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.5.tgz"; 778 - sha512 = "usYsuO1ID2LXxzuUxifgWtJemP7wL2uZtyrTVM4PKqsmJycdS4U4mGovL5xXkfUheds10Dd2PjoQLXw6zCsCbg=="; 779 }; 780 }; 781 - "@babel/plugin-transform-template-literals-7.16.5" = { 782 name = "_at_babel_slash_plugin-transform-template-literals"; 783 packageName = "@babel/plugin-transform-template-literals"; 784 - version = "7.16.5"; 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.5.tgz"; 787 - sha512 = "gnyKy9RyFhkovex4BjKWL3BVYzUDG6zC0gba7VMLbQoDuqMfJ1SDXs8k/XK41Mmt1Hyp4qNAvGFb9hKzdCqBRQ=="; 788 }; 789 }; 790 - "@babel/plugin-transform-typeof-symbol-7.16.5" = { 791 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 792 packageName = "@babel/plugin-transform-typeof-symbol"; 793 - version = "7.16.5"; 794 src = fetchurl { 795 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.5.tgz"; 796 - sha512 = "ldxCkW180qbrvyCVDzAUZqB0TAeF8W/vGJoRcaf75awm6By+PxfJKvuqVAnq8N9wz5Xa6mSpM19OfVKKVmGHSQ=="; 797 }; 798 }; 799 - "@babel/plugin-transform-unicode-escapes-7.16.5" = { 800 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 801 packageName = "@babel/plugin-transform-unicode-escapes"; 802 - version = "7.16.5"; 803 src = fetchurl { 804 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.5.tgz"; 805 - sha512 = "shiCBHTIIChGLdyojsKQjoAyB8MBwat25lKM7MJjbe1hE0bgIppD+LX9afr41lLHOhqceqeWl4FkLp+Bgn9o1Q=="; 806 }; 807 }; 808 - "@babel/plugin-transform-unicode-regex-7.16.5" = { 809 name = "_at_babel_slash_plugin-transform-unicode-regex"; 810 packageName = "@babel/plugin-transform-unicode-regex"; 811 - version = "7.16.5"; 812 src = fetchurl { 813 - url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.5.tgz"; 814 - sha512 = "GTJ4IW012tiPEMMubd7sD07iU9O/LOo8Q/oU4xNhcaq0Xn8+6TcUQaHtC8YxySo1T+ErQ8RaWogIEeFhKGNPzw=="; 815 }; 816 }; 817 "@babel/preset-env-7.12.10" = { ··· 841 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 842 }; 843 }; 844 - "@babel/template-7.16.0" = { 845 name = "_at_babel_slash_template"; 846 packageName = "@babel/template"; 847 - version = "7.16.0"; 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/template/-/template-7.16.0.tgz"; 850 - sha512 = "MnZdpFD/ZdYhXwiunMqqgyZyucaYsbL0IrjoGjaVhGilz+x8YB++kRfygSOIj1yOtWKPlx7NBp+9I1RQSgsd5A=="; 851 }; 852 }; 853 - "@babel/traverse-7.16.5" = { 854 name = "_at_babel_slash_traverse"; 855 packageName = "@babel/traverse"; 856 - version = "7.16.5"; 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.16.5.tgz"; 859 - sha512 = "FOCODAzqUMROikDYLYxl4nmwiLlu85rNqBML/A5hKRVXG2LV8d0iMqgPzdYTcIpjZEBB7D6UDU9vxRZiriASdQ=="; 860 }; 861 }; 862 - "@babel/types-7.16.0" = { 863 name = "_at_babel_slash_types"; 864 packageName = "@babel/types"; 865 - version = "7.16.0"; 866 src = fetchurl { 867 - url = "https://registry.npmjs.org/@babel/types/-/types-7.16.0.tgz"; 868 - sha512 = "PJgg/k3SdLsGb3hhisFvtLOw5ts113klrpLuIPtCJIU+BB24fqq6lf8RWqKJEjzqXR9AEH1rIb5XTqwBHB+kQg=="; 869 }; 870 }; 871 "@hapi/address-2.1.4" = { ··· 913 sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 914 }; 915 }; 916 "@mrmlnc/readdir-enhanced-2.2.1" = { 917 name = "_at_mrmlnc_slash_readdir-enhanced"; 918 packageName = "@mrmlnc/readdir-enhanced"; ··· 1039 sha512 = "5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA=="; 1040 }; 1041 }; 1042 - "@types/json-schema-7.0.9" = { 1043 name = "_at_types_slash_json-schema"; 1044 packageName = "@types/json-schema"; 1045 - version = "7.0.9"; 1046 src = fetchurl { 1047 - url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.9.tgz"; 1048 - sha512 = "qcUXuemtEu+E5wZSJHNxUXeCZhAfXKQ41D+duX+VYPde7xyEVZci+/oXKJL13tnRs9lR2pr4fod59GT6/X1/yQ=="; 1049 }; 1050 }; 1051 - "@types/keyv-3.1.3" = { 1052 name = "_at_types_slash_keyv"; 1053 packageName = "@types/keyv"; 1054 - version = "3.1.3"; 1055 src = fetchurl { 1056 - url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.3.tgz"; 1057 - sha512 = "FXCJgyyN3ivVgRoml4h94G/p3kY+u/B86La+QptcqJaWtBWtmc6TtkNfS40n9bIvyLteHh7zXOtgbobORKPbDg=="; 1058 }; 1059 }; 1060 "@types/minimatch-3.0.5" = { ··· 1066 sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1067 }; 1068 }; 1069 - "@types/node-17.0.5" = { 1070 name = "_at_types_slash_node"; 1071 packageName = "@types/node"; 1072 - version = "17.0.5"; 1073 src = fetchurl { 1074 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.5.tgz"; 1075 - sha512 = "w3mrvNXLeDYV1GKTZorGJQivK6XLCoGwpnyJFbJVK/aTBQUxOCaa/GlFAAN3OTDFcb7h5tiFG+YXCO2By+riZw=="; 1076 }; 1077 }; 1078 "@types/parse-json-4.0.0" = { ··· 1336 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 1337 }; 1338 }; 1339 - "accepts-1.3.7" = { 1340 name = "accepts"; 1341 packageName = "accepts"; 1342 - version = "1.3.7"; 1343 src = fetchurl { 1344 - url = "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz"; 1345 - sha512 = "Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA=="; 1346 }; 1347 }; 1348 "acorn-6.4.2" = { ··· 1370 src = fetchurl { 1371 url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 1372 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1373 }; 1374 }; 1375 "ajv-errors-1.0.1" = { ··· 1444 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1445 }; 1446 }; 1447 - "ansi-regex-3.0.0" = { 1448 name = "ansi-regex"; 1449 packageName = "ansi-regex"; 1450 - version = "3.0.0"; 1451 src = fetchurl { 1452 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz"; 1453 - sha1 = "ed0317c322064f79466c02966bddb605ab37d998"; 1454 }; 1455 }; 1456 - "ansi-regex-4.1.0" = { 1457 name = "ansi-regex"; 1458 packageName = "ansi-regex"; 1459 - version = "4.1.0"; 1460 src = fetchurl { 1461 - url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz"; 1462 - sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg=="; 1463 }; 1464 }; 1465 "ansi-regex-5.0.1" = { ··· 1496 src = fetchurl { 1497 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 1498 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 1499 }; 1500 }; 1501 "anymatch-2.0.0" = { ··· 1705 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1706 }; 1707 }; 1708 - "astral-regex-1.0.0" = { 1709 name = "astral-regex"; 1710 packageName = "astral-regex"; 1711 - version = "1.0.0"; 1712 src = fetchurl { 1713 - url = "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz"; 1714 - sha512 = "+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg=="; 1715 }; 1716 }; 1717 "async-0.9.2" = { ··· 2056 sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; 2057 }; 2058 }; 2059 - "body-parser-1.19.1" = { 2060 name = "body-parser"; 2061 packageName = "body-parser"; 2062 - version = "1.19.1"; 2063 src = fetchurl { 2064 - url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.1.tgz"; 2065 - sha512 = "8ljfQi5eBk8EJfECMrgqNGWPEY5jWP+1IzkzkGdFFEwFQZZyaZ21UqdaHktgiMlH0xLHqIFtE/u2OYE5dOtViA=="; 2066 }; 2067 }; 2068 "bonjour-3.5.0" = { ··· 2182 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2183 }; 2184 }; 2185 - "browserslist-4.19.1" = { 2186 name = "browserslist"; 2187 packageName = "browserslist"; 2188 - version = "4.19.1"; 2189 src = fetchurl { 2190 - url = "https://registry.npmjs.org/browserslist/-/browserslist-4.19.1.tgz"; 2191 - sha512 = "u2tbbG5PdKRTUoctO3NBD8FQ5HdPh1ZXPHzp1rwaa5jTc+RV9/+RlWiAIKmjRPQF+xbGM9Kklj5bZQFa2s/38A=="; 2192 }; 2193 }; 2194 "buffer-4.9.2" = { ··· 2272 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 2273 }; 2274 }; 2275 - "bytes-3.1.1" = { 2276 name = "bytes"; 2277 packageName = "bytes"; 2278 - version = "3.1.1"; 2279 src = fetchurl { 2280 - url = "https://registry.npmjs.org/bytes/-/bytes-3.1.1.tgz"; 2281 - sha512 = "dWe4nWO/ruEOY7HkUJ5gFt1DCFV9zPRoJr8pV0/ASQermOZjtq8jMjOprC0Kd10GLN+l7xaUPvxzJFWtxGu8Fg=="; 2282 }; 2283 }; 2284 "cacache-10.0.4" = { ··· 2416 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2417 }; 2418 }; 2419 - "camelcase-6.2.1" = { 2420 name = "camelcase"; 2421 packageName = "camelcase"; 2422 - version = "6.2.1"; 2423 src = fetchurl { 2424 - url = "https://registry.npmjs.org/camelcase/-/camelcase-6.2.1.tgz"; 2425 - sha512 = "tVI4q5jjFV5CavAU8DXfza/TJcZutVKo/5Foskmsqcm0MsL91moHvwiGNnqaa2o6PF/7yT5ikDRcVcl8Rj6LCA=="; 2426 }; 2427 }; 2428 "caniuse-api-3.0.0" = { ··· 2434 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2435 }; 2436 }; 2437 - "caniuse-lite-1.0.30001294" = { 2438 name = "caniuse-lite"; 2439 packageName = "caniuse-lite"; 2440 - version = "1.0.30001294"; 2441 src = fetchurl { 2442 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001294.tgz"; 2443 - sha512 = "LiMlrs1nSKZ8qkNhpUf5KD0Al1KCBE3zaT7OLOwEkagXMEDij98SiOovn9wxVGQpklk9vVC/pUSqgYmkmKOS8g=="; 2444 }; 2445 }; 2446 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2569 sha512 = "/j5PPkb5Feyps9e+jo07jUZGvkB5Aj953NrI4s8xSVScrAo/RHeILrtdb4uzR7N6aaFFxxJ+gt8mA8HfNpw76w=="; 2570 }; 2571 }; 2572 - "chokidar-3.5.2" = { 2573 name = "chokidar"; 2574 packageName = "chokidar"; 2575 - version = "3.5.2"; 2576 src = fetchurl { 2577 - url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 2578 - sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 2579 }; 2580 }; 2581 "chownr-1.1.4" = { ··· 3064 sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; 3065 }; 3066 }; 3067 - "cookie-0.4.1" = { 3068 name = "cookie"; 3069 packageName = "cookie"; 3070 - version = "0.4.1"; 3071 src = fetchurl { 3072 - url = "https://registry.npmjs.org/cookie/-/cookie-0.4.1.tgz"; 3073 - sha512 = "ZwrFkGJxUR3EIoXtO+yVE69Eb7KlixbaeAWfBQB9vVsNn/o+Yw69gBWSSDK825hQNdN+wF8zELf3dFNl/kxkUA=="; 3074 }; 3075 }; 3076 "cookie-signature-1.0.6" = { ··· 3118 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3119 }; 3120 }; 3121 - "core-js-compat-3.20.1" = { 3122 name = "core-js-compat"; 3123 packageName = "core-js-compat"; 3124 - version = "3.20.1"; 3125 src = fetchurl { 3126 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.20.1.tgz"; 3127 - sha512 = "AVhKZNpqMV3Jz8hU0YEXXE06qoxtQGsAqU0u1neUngz5IusDJRX/ZJ6t3i7mS7QxNyEONbCo14GprkBrxPlTZA=="; 3128 }; 3129 }; 3130 "core-util-is-1.0.2" = { ··· 3298 sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; 3299 }; 3300 }; 3301 - "css-select-4.2.1" = { 3302 name = "css-select"; 3303 packageName = "css-select"; 3304 - version = "4.2.1"; 3305 src = fetchurl { 3306 - url = "https://registry.npmjs.org/css-select/-/css-select-4.2.1.tgz"; 3307 - sha512 = "/aUslKhzkTNCQUB2qTX84lVmfia9NyjP3WpDGtj/WxhwBzWBYUV3DgUpurHTme8UTPcPlAD1DJ+b0nN/t50zDQ=="; 3308 }; 3309 }; 3310 "css-select-base-adapter-0.1.1" = { ··· 3343 sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; 3344 }; 3345 }; 3346 - "css-what-5.1.0" = { 3347 name = "css-what"; 3348 packageName = "css-what"; 3349 - version = "5.1.0"; 3350 src = fetchurl { 3351 - url = "https://registry.npmjs.org/css-what/-/css-what-5.1.0.tgz"; 3352 - sha512 = "arSMRWIIFY0hV8pIxZMEfmMI47Wj3R/aWpZDDxWYCPEiOMv6tfOrnpDtgxBYPEQD4V0Y/958+1TdC3iWTFcUPw=="; 3353 }; 3354 }; 3355 "cssesc-3.0.0" = { ··· 3469 sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 3470 }; 3471 }; 3472 - "debug-4.3.3" = { 3473 name = "debug"; 3474 packageName = "debug"; 3475 - version = "4.3.3"; 3476 src = fetchurl { 3477 - url = "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz"; 3478 - sha512 = "/zxw5+vh1Tfv+4Qn7a5nsbcJKPaSvCDhojn6FEl9vupwK2VCSDtEiEtqr8DFtzYFOdz63LBkxec7DYuc2jon6Q=="; 3479 }; 3480 }; 3481 "decamelize-1.2.0" = { ··· 3647 src = fetchurl { 3648 url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; 3649 sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 3650 }; 3651 }; 3652 "des.js-1.0.1" = { ··· 3667 sha1 = "978857442c44749e4206613e37946205826abd80"; 3668 }; 3669 }; 3670 "detect-node-2.1.0" = { 3671 name = "detect-node"; 3672 packageName = "detect-node"; ··· 3685 sha512 = "5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q=="; 3686 }; 3687 }; 3688 "diffie-hellman-5.0.3" = { 3689 name = "diffie-hellman"; 3690 packageName = "diffie-hellman"; ··· 3793 sha512 = "DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="; 3794 }; 3795 }; 3796 - "domhandler-4.3.0" = { 3797 name = "domhandler"; 3798 packageName = "domhandler"; 3799 - version = "4.3.0"; 3800 src = fetchurl { 3801 - url = "https://registry.npmjs.org/domhandler/-/domhandler-4.3.0.tgz"; 3802 - sha512 = "fC0aXNQXqKSFTr2wDNZDhsEYjCiYsDWl3D01kwt25hm1YIPyDGHvvi3rw+PLqHAl/m71MaiF7d5zvBr0p5UB2g=="; 3803 }; 3804 }; 3805 "domutils-1.7.0" = { ··· 3892 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 3893 }; 3894 }; 3895 - "electron-to-chromium-1.4.30" = { 3896 name = "electron-to-chromium"; 3897 packageName = "electron-to-chromium"; 3898 - version = "1.4.30"; 3899 src = fetchurl { 3900 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.30.tgz"; 3901 - sha512 = "609z9sIMxDHg+TcR/VB3MXwH+uwtrYyeAwWc/orhnr90ixs6WVGSrt85CDLGUdNnLqCA7liv426V20EecjvflQ=="; 3902 }; 3903 }; 3904 "elliptic-6.5.4" = { ··· 4099 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4100 }; 4101 }; 4102 - "es-abstract-1.19.1" = { 4103 name = "es-abstract"; 4104 packageName = "es-abstract"; 4105 - version = "1.19.1"; 4106 src = fetchurl { 4107 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz"; 4108 - sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w=="; 4109 }; 4110 }; 4111 "es-to-primitive-1.2.1" = { ··· 4333 sha1 = "6af8a502350db3246ecc4becf6b5a34d22f7ed53"; 4334 }; 4335 }; 4336 - "express-4.17.2" = { 4337 name = "express"; 4338 packageName = "express"; 4339 - version = "4.17.2"; 4340 src = fetchurl { 4341 - url = "https://registry.npmjs.org/express/-/express-4.17.2.tgz"; 4342 - sha512 = "oxlxJxcQlYwqPWKVJJtvQiwHgosH/LrLSPA+H4UxpyvSS6jC5aH+5MoHFM+KABgTOt0APue4w66Ha8jCUo9QGg=="; 4343 }; 4344 }; 4345 "express-ws-2.0.0" = { ··· 4450 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4451 }; 4452 }; 4453 - "fast-glob-3.2.7" = { 4454 name = "fast-glob"; 4455 packageName = "fast-glob"; 4456 - version = "3.2.7"; 4457 src = fetchurl { 4458 - url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz"; 4459 - sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q=="; 4460 }; 4461 }; 4462 "fast-json-stable-stringify-2.1.0" = { ··· 4747 sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 4748 }; 4749 }; 4750 - "follow-redirects-1.14.6" = { 4751 name = "follow-redirects"; 4752 packageName = "follow-redirects"; 4753 - version = "1.14.6"; 4754 src = fetchurl { 4755 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.6.tgz"; 4756 - sha512 = "fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A=="; 4757 }; 4758 }; 4759 "for-in-1.0.2" = { ··· 4792 sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 4793 }; 4794 }; 4795 - "fraction.js-4.1.2" = { 4796 name = "fraction.js"; 4797 packageName = "fraction.js"; 4798 - version = "4.1.2"; 4799 src = fetchurl { 4800 - url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.1.2.tgz"; 4801 - sha512 = "o2RiJQ6DZaR/5+Si0qJUIy637QMRudSi9kU/FFzx9EZazrIdnBgpU+3sEWCxAVhH2RtxW2Oz+T4p2o8uOPVcgA=="; 4802 }; 4803 }; 4804 "fragment-cache-0.2.1" = { ··· 5080 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 5081 }; 5082 }; 5083 "glob-7.1.4" = { 5084 name = "glob"; 5085 packageName = "glob"; ··· 5152 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 5153 }; 5154 }; 5155 - "globby-11.0.4" = { 5156 name = "globby"; 5157 packageName = "globby"; 5158 - version = "11.0.4"; 5159 src = fetchurl { 5160 - url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 5161 - sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 5162 }; 5163 }; 5164 "globby-6.1.0" = { ··· 5206 sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q=="; 5207 }; 5208 }; 5209 - "graceful-fs-4.2.8" = { 5210 name = "graceful-fs"; 5211 packageName = "graceful-fs"; 5212 - version = "4.2.8"; 5213 src = fetchurl { 5214 - url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz"; 5215 - sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg=="; 5216 }; 5217 }; 5218 "gzip-size-5.0.0" = { ··· 5305 sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="; 5306 }; 5307 }; 5308 - "has-symbols-1.0.2" = { 5309 name = "has-symbols"; 5310 packageName = "has-symbols"; 5311 - version = "1.0.2"; 5312 src = fetchurl { 5313 - url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz"; 5314 - sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="; 5315 }; 5316 }; 5317 "has-to-string-tag-x-1.4.1" = { ··· 5557 sha512 = "Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g=="; 5558 }; 5559 }; 5560 - "http-parser-js-0.5.5" = { 5561 name = "http-parser-js"; 5562 packageName = "http-parser-js"; 5563 - version = "0.5.5"; 5564 src = fetchurl { 5565 - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.5.tgz"; 5566 - sha512 = "x+JVEkO2PoM8qqpbPbOL3cqHPwerep7OwzK7Ay+sMQjKzaKCqWvjoXm5tqMP9tXWWTnTzAjIhXg+J99XYuPhPA=="; 5567 }; 5568 }; 5569 "http-proxy-1.17.0" = { ··· 5998 sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; 5999 }; 6000 }; 6001 - "is-core-module-2.8.0" = { 6002 name = "is-core-module"; 6003 packageName = "is-core-module"; 6004 - version = "2.8.0"; 6005 src = fetchurl { 6006 - url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz"; 6007 - sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw=="; 6008 }; 6009 }; 6010 "is-data-descriptor-0.1.4" = { ··· 6124 sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 6125 }; 6126 }; 6127 - "is-git-url-1.0.0" = { 6128 - name = "is-git-url"; 6129 - packageName = "is-git-url"; 6130 - version = "1.0.0"; 6131 - src = fetchurl { 6132 - url = "https://registry.npmjs.org/is-git-url/-/is-git-url-1.0.0.tgz"; 6133 - sha1 = "53f684cd143285b52c3244b4e6f28253527af66b"; 6134 - }; 6135 - }; 6136 "is-glob-3.1.0" = { 6137 name = "is-glob"; 6138 packageName = "is-glob"; ··· 6187 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 6188 }; 6189 }; 6190 - "is-number-object-1.0.6" = { 6191 name = "is-number-object"; 6192 packageName = "is-number-object"; 6193 - version = "1.0.6"; 6194 src = fetchurl { 6195 - url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz"; 6196 - sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g=="; 6197 }; 6198 }; 6199 "is-obj-1.0.1" = { ··· 6304 sha512 = "F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg=="; 6305 }; 6306 }; 6307 - "is-shared-array-buffer-1.0.1" = { 6308 name = "is-shared-array-buffer"; 6309 packageName = "is-shared-array-buffer"; 6310 - version = "1.0.1"; 6311 src = fetchurl { 6312 - url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz"; 6313 - sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA=="; 6314 }; 6315 }; 6316 "is-stream-1.1.0" = { ··· 6466 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 6467 }; 6468 }; 6469 "js-tokens-4.0.0" = { 6470 name = "js-tokens"; 6471 packageName = "js-tokens"; ··· 6565 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 6566 }; 6567 }; 6568 "json-stable-stringify-1.0.1" = { 6569 name = "json-stable-stringify"; 6570 packageName = "json-stable-stringify"; ··· 6610 sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 6611 }; 6612 }; 6613 - "json5-2.2.0" = { 6614 name = "json5"; 6615 packageName = "json5"; 6616 - version = "2.2.0"; 6617 src = fetchurl { 6618 - url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz"; 6619 - sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA=="; 6620 }; 6621 }; 6622 "jsonfile-2.4.0" = { ··· 6673 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 6674 }; 6675 }; 6676 - "keyv-4.0.4" = { 6677 name = "keyv"; 6678 packageName = "keyv"; 6679 - version = "4.0.4"; 6680 src = fetchurl { 6681 - url = "https://registry.npmjs.org/keyv/-/keyv-4.0.4.tgz"; 6682 - sha512 = "vqNHbAc8BBsxk+7QBYLW0Y219rWcClspR6WSeoHYKG5mnsSoOH+BL1pWq02DDCVdvvuUny5rkBlzMRzoqc+GIg=="; 6683 }; 6684 }; 6685 "killable-1.0.1" = { ··· 6916 sha512 = "stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="; 6917 }; 6918 }; 6919 "lodash.uniq-4.5.0" = { 6920 name = "lodash.uniq"; 6921 packageName = "lodash.uniq"; ··· 7150 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 7151 }; 7152 }; 7153 - "micromatch-4.0.4" = { 7154 name = "micromatch"; 7155 packageName = "micromatch"; 7156 - version = "4.0.4"; 7157 src = fetchurl { 7158 - url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz"; 7159 - sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg=="; 7160 }; 7161 }; 7162 "miller-rabin-4.0.1" = { ··· 7204 sha512 = "USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="; 7205 }; 7206 }; 7207 - "mime-db-1.51.0" = { 7208 name = "mime-db"; 7209 packageName = "mime-db"; 7210 - version = "1.51.0"; 7211 src = fetchurl { 7212 - url = "https://registry.npmjs.org/mime-db/-/mime-db-1.51.0.tgz"; 7213 - sha512 = "5y8A56jg7XVQx2mbv1lu49NR4dokRnhZYTtL+KGfaa27uq4pSTXkwQkFJl4pkRMyNFz/EtYDSkiiEHx3F7UN6g=="; 7214 }; 7215 }; 7216 - "mime-types-2.1.34" = { 7217 name = "mime-types"; 7218 packageName = "mime-types"; 7219 - version = "2.1.34"; 7220 src = fetchurl { 7221 - url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.34.tgz"; 7222 - sha512 = "6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A=="; 7223 }; 7224 }; 7225 "mimic-fn-1.2.0" = { ··· 7294 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 7295 }; 7296 }; 7297 "minimist-1.2.0" = { 7298 name = "minimist"; 7299 packageName = "minimist"; ··· 7310 src = fetchurl { 7311 url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 7312 sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 7313 }; 7314 }; 7315 "minipass-2.9.0" = { ··· 7384 sha512 = "P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg=="; 7385 }; 7386 }; 7387 - "mkdirp-0.5.5" = { 7388 name = "mkdirp"; 7389 packageName = "mkdirp"; 7390 - version = "0.5.5"; 7391 src = fetchurl { 7392 - url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz"; 7393 - sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ=="; 7394 }; 7395 }; 7396 "mkdirp-1.0.4" = { ··· 7519 sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="; 7520 }; 7521 }; 7522 - "nanoid-3.1.30" = { 7523 name = "nanoid"; 7524 packageName = "nanoid"; 7525 - version = "3.1.30"; 7526 src = fetchurl { 7527 - url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.30.tgz"; 7528 - sha512 = "zJpuPDwOv8D2zq2WRoMe1HsfZthVewpel9CAvTfc/2mBD1uUT/agc5f7GHGWXlYkFvi1mVxe4IjvP2HNrop7nQ=="; 7529 }; 7530 }; 7531 "nanomatch-1.2.13" = { ··· 7546 sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246"; 7547 }; 7548 }; 7549 - "negotiator-0.6.2" = { 7550 name = "negotiator"; 7551 packageName = "negotiator"; 7552 - version = "0.6.2"; 7553 src = fetchurl { 7554 - url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz"; 7555 - sha512 = "hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw=="; 7556 }; 7557 }; 7558 "neo-async-2.6.2" = { ··· 7627 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 7628 }; 7629 }; 7630 - "node-releases-2.0.1" = { 7631 name = "node-releases"; 7632 packageName = "node-releases"; 7633 - version = "2.0.1"; 7634 src = fetchurl { 7635 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.1.tgz"; 7636 - sha512 = "CqyzN6z7Q6aMeF/ktcMVTzhAHCEpf8SOarwpzpf8pNBY2k5/oM34UHldUwp8VKI7uxct2HxSRdJjBaZeESzcxA=="; 7637 }; 7638 }; 7639 "node-watch-0.5.5" = { ··· 7906 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 7907 }; 7908 }; 7909 "on-headers-1.0.2" = { 7910 name = "on-headers"; 7911 packageName = "on-headers"; ··· 8464 sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 8465 }; 8466 }; 8467 - "picomatch-2.3.0" = { 8468 name = "picomatch"; 8469 packageName = "picomatch"; 8470 - version = "2.3.0"; 8471 src = fetchurl { 8472 - url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz"; 8473 - sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw=="; 8474 }; 8475 }; 8476 "pify-2.3.0" = { ··· 8608 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 8609 }; 8610 }; 8611 - "postcss-8.4.5" = { 8612 name = "postcss"; 8613 packageName = "postcss"; 8614 - version = "8.4.5"; 8615 src = fetchurl { 8616 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz"; 8617 - sha512 = "jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg=="; 8618 }; 8619 }; 8620 "postcss-calc-7.0.5" = { ··· 8914 sha512 = "h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA=="; 8915 }; 8916 }; 8917 - "postcss-selector-parser-6.0.8" = { 8918 name = "postcss-selector-parser"; 8919 packageName = "postcss-selector-parser"; 8920 - version = "6.0.8"; 8921 src = fetchurl { 8922 - url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.8.tgz"; 8923 - sha512 = "D5PG53d209Z1Uhcc0qAZ5U3t5HagH3cxu+WLZ22jt3gLUpXM4eXXfiO14jiDWST3NNooX/E8wISfOhZ9eIjGTQ=="; 8924 }; 8925 }; 8926 "postcss-svgo-4.0.3" = { ··· 8995 sha512 = "EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw=="; 8996 }; 8997 }; 8998 "process-0.11.10" = { 8999 name = "process"; 9000 packageName = "process"; ··· 9184 sha512 = "eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="; 9185 }; 9186 }; 9187 - "qs-6.5.2" = { 9188 name = "qs"; 9189 packageName = "qs"; 9190 - version = "6.5.2"; 9191 src = fetchurl { 9192 - url = "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz"; 9193 - sha512 = "N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="; 9194 }; 9195 }; 9196 "qs-6.7.0" = { ··· 9202 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 9203 }; 9204 }; 9205 - "qs-6.9.6" = { 9206 name = "qs"; 9207 packageName = "qs"; 9208 - version = "6.9.6"; 9209 src = fetchurl { 9210 - url = "https://registry.npmjs.org/qs/-/qs-6.9.6.tgz"; 9211 - sha512 = "TIRk4aqYLNoJUbd+g2lEdz5kLWIuTMRagAXxl78Q0RiVjAOugHmeKNGdd3cwo/ktpf9aL9epCfFqWDEKysUlLQ=="; 9212 }; 9213 }; 9214 "query-string-4.3.4" = { ··· 9301 sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; 9302 }; 9303 }; 9304 - "raw-body-2.4.2" = { 9305 name = "raw-body"; 9306 packageName = "raw-body"; 9307 - version = "2.4.2"; 9308 src = fetchurl { 9309 - url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.2.tgz"; 9310 - sha512 = "RPMAFUJP19WIet/99ngh6Iv8fzAbqum4Li7AD6DtGaW2RpMB/11xDoalPiJMTbu6I3hkbMVkATvZrqb9EEqeeQ=="; 9311 }; 9312 }; 9313 "rc-1.2.8" = { ··· 9346 sha512 = "X1Y+0jR47ImDVr54Ab6V9eGk0Hnu7fVWGeHQSOXHf/C2pF9c6uy3gef8QUeuUiWlNb0i08InPSE5a/KJzNzw1Q=="; 9347 }; 9348 }; 9349 "read-1.0.7" = { 9350 name = "read"; 9351 packageName = "read"; ··· 9454 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 9455 }; 9456 }; 9457 - "regenerate-unicode-properties-9.0.0" = { 9458 name = "regenerate-unicode-properties"; 9459 packageName = "regenerate-unicode-properties"; 9460 - version = "9.0.0"; 9461 src = fetchurl { 9462 - url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz"; 9463 - sha512 = "3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA=="; 9464 }; 9465 }; 9466 "regenerator-runtime-0.11.1" = { ··· 9508 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 9509 }; 9510 }; 9511 - "regexp.prototype.flags-1.3.1" = { 9512 name = "regexp.prototype.flags"; 9513 packageName = "regexp.prototype.flags"; 9514 - version = "1.3.1"; 9515 src = fetchurl { 9516 - url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz"; 9517 - sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA=="; 9518 }; 9519 }; 9520 - "regexpu-core-4.8.0" = { 9521 name = "regexpu-core"; 9522 packageName = "regexpu-core"; 9523 - version = "4.8.0"; 9524 src = fetchurl { 9525 - url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz"; 9526 - sha512 = "1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg=="; 9527 }; 9528 }; 9529 "registry-auth-token-4.2.1" = { ··· 9544 sha512 = "8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw=="; 9545 }; 9546 }; 9547 - "regjsgen-0.5.2" = { 9548 name = "regjsgen"; 9549 packageName = "regjsgen"; 9550 - version = "0.5.2"; 9551 src = fetchurl { 9552 - url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.2.tgz"; 9553 - sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A=="; 9554 }; 9555 }; 9556 - "regjsparser-0.7.0" = { 9557 name = "regjsparser"; 9558 packageName = "regjsparser"; 9559 - version = "0.7.0"; 9560 src = fetchurl { 9561 - url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz"; 9562 - sha512 = "A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ=="; 9563 }; 9564 }; 9565 "relateurl-0.2.7" = { ··· 9652 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 9653 }; 9654 }; 9655 "require-main-filename-1.0.1" = { 9656 name = "require-main-filename"; 9657 packageName = "require-main-filename"; ··· 9679 sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; 9680 }; 9681 }; 9682 - "resolve-1.20.0" = { 9683 name = "resolve"; 9684 packageName = "resolve"; 9685 - version = "1.20.0"; 9686 src = fetchurl { 9687 - url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz"; 9688 - sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A=="; 9689 }; 9690 }; 9691 "resolve-cwd-2.0.0" = { ··· 10003 sha1 = "625d8658f865af43ec962bfc376a37359a4994ca"; 10004 }; 10005 }; 10006 - "selfsigned-1.10.11" = { 10007 name = "selfsigned"; 10008 packageName = "selfsigned"; 10009 - version = "1.10.11"; 10010 src = fetchurl { 10011 - url = "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.11.tgz"; 10012 - sha512 = "aVmbPOfViZqOZPgRBT0+3u4yZFHpmnIghLMlAcb5/xhp5ZtB/RVnKhz5vl2M32CLXAqR4kha9zfhNg0Lf/sxKA=="; 10013 }; 10014 }; 10015 "semver-5.7.1" = { ··· 10048 sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 10049 }; 10050 }; 10051 - "semver-regex-1.0.0" = { 10052 name = "semver-regex"; 10053 packageName = "semver-regex"; 10054 - version = "1.0.0"; 10055 src = fetchurl { 10056 - url = "https://registry.npmjs.org/semver-regex/-/semver-regex-1.0.0.tgz"; 10057 - sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9"; 10058 }; 10059 }; 10060 - "semver-sort-0.0.4" = { 10061 name = "semver-sort"; 10062 packageName = "semver-sort"; 10063 - version = "0.0.4"; 10064 src = fetchurl { 10065 - url = "https://registry.npmjs.org/semver-sort/-/semver-sort-0.0.4.tgz"; 10066 - sha1 = "34fdbddc6a6b2b4161398c3c4dba56243bfeaa8b"; 10067 }; 10068 }; 10069 "send-0.16.2" = { ··· 10093 sha512 = "UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww=="; 10094 }; 10095 }; 10096 "serialize-javascript-1.9.1" = { 10097 name = "serialize-javascript"; 10098 packageName = "serialize-javascript"; ··· 10145 src = fetchurl { 10146 url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz"; 10147 sha512 = "+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ=="; 10148 }; 10149 }; 10150 "set-blocking-2.0.0" = { ··· 10273 sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 10274 }; 10275 }; 10276 - "signal-exit-3.0.6" = { 10277 name = "signal-exit"; 10278 packageName = "signal-exit"; 10279 - version = "3.0.6"; 10280 src = fetchurl { 10281 - url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz"; 10282 - sha512 = "sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ=="; 10283 }; 10284 }; 10285 - "simple-git-1.132.0" = { 10286 name = "simple-git"; 10287 packageName = "simple-git"; 10288 - version = "1.132.0"; 10289 src = fetchurl { 10290 - url = "https://registry.npmjs.org/simple-git/-/simple-git-1.132.0.tgz"; 10291 - sha512 = "xauHm1YqCTom1sC9eOjfq3/9RKiUA9iPnxBbrY2DdL8l4ADMu0jjM5l5lphQP5YWNqAL2aXC/OeuQ76vHtW5fg=="; 10292 }; 10293 }; 10294 "simple-swizzle-0.2.2" = { ··· 10336 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 10337 }; 10338 }; 10339 - "slice-ansi-2.1.0" = { 10340 name = "slice-ansi"; 10341 packageName = "slice-ansi"; 10342 - version = "2.1.0"; 10343 src = fetchurl { 10344 - url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-2.1.0.tgz"; 10345 - sha512 = "Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ=="; 10346 }; 10347 }; 10348 "snapdragon-0.8.2" = { ··· 10444 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 10445 }; 10446 }; 10447 - "source-map-js-1.0.1" = { 10448 name = "source-map-js"; 10449 packageName = "source-map-js"; 10450 - version = "1.0.1"; 10451 src = fetchurl { 10452 - url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.1.tgz"; 10453 - sha512 = "4+TN2b3tqOCd/kaGRJ/sTYA0tR0mdXx26ipdolxcwtJVqEnqNYvlCAt1q3ypy4QMlYus+Zh34RNtYLoq2oQ4IA=="; 10454 }; 10455 }; 10456 "source-map-resolve-0.5.3" = { ··· 10561 sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 10562 }; 10563 }; 10564 - "sshpk-1.16.1" = { 10565 name = "sshpk"; 10566 packageName = "sshpk"; 10567 - version = "1.16.1"; 10568 src = fetchurl { 10569 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz"; 10570 - sha512 = "HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg=="; 10571 }; 10572 }; 10573 "ssri-5.3.0" = { ··· 10631 src = fetchurl { 10632 url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; 10633 sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 10634 }; 10635 }; 10636 "stealthy-require-1.1.1" = { ··· 10957 sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; 10958 }; 10959 }; 10960 "svgo-1.3.2" = { 10961 name = "svgo"; 10962 packageName = "svgo"; ··· 10966 sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; 10967 }; 10968 }; 10969 - "table-5.4.6" = { 10970 name = "table"; 10971 packageName = "table"; 10972 - version = "5.4.6"; 10973 src = fetchurl { 10974 - url = "https://registry.npmjs.org/table/-/table-5.4.6.tgz"; 10975 - sha512 = "wmEc8m4fjnob4gt5riFRtTu/6+4rSe12TpAELNSqHMfF3IqnA+CH37USM6/YR3qRZv7e56kAEAtd6nKZaxe0Ug=="; 10976 }; 10977 }; 10978 "tapable-1.1.3" = { ··· 11272 sha1 = "61dbc2d53b69ff6091a12a168fd7d433107e40f1"; 11273 }; 11274 }; 11275 - "ts-debounce-3.0.0" = { 11276 name = "ts-debounce"; 11277 packageName = "ts-debounce"; 11278 - version = "3.0.0"; 11279 src = fetchurl { 11280 - url = "https://registry.npmjs.org/ts-debounce/-/ts-debounce-3.0.0.tgz"; 11281 - sha512 = "7jiRWgN4/8IdvCxbIwnwg2W0bbYFBH6BxFqBjMKk442t7+liF2Z1H6AUCcl8e/pD93GjPru+axeiJwFmRww1WQ=="; 11282 }; 11283 }; 11284 "ts-union-2.3.0" = { ··· 11380 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 11381 }; 11382 }; 11383 - "typescript-3.9.10" = { 11384 name = "typescript"; 11385 packageName = "typescript"; 11386 - version = "3.9.10"; 11387 src = fetchurl { 11388 - url = "https://registry.npmjs.org/typescript/-/typescript-3.9.10.tgz"; 11389 - sha512 = "w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q=="; 11390 }; 11391 }; 11392 "uglify-es-3.3.10" = { ··· 11578 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 11579 }; 11580 }; 11581 "upgrade-1.1.0" = { 11582 name = "upgrade"; 11583 packageName = "upgrade"; ··· 11623 sha512 = "3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA=="; 11624 }; 11625 }; 11626 - "url-parse-1.5.4" = { 11627 name = "url-parse"; 11628 packageName = "url-parse"; 11629 - version = "1.5.4"; 11630 src = fetchurl { 11631 - url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.4.tgz"; 11632 - sha512 = "ITeAByWWoqutFClc/lRZnFplgXgEZr3WJ6XngMM/N9DMIm4K8zXPCZ1Jdu0rERwO84w1WC5wkle2ubwTA4NTBg=="; 11633 }; 11634 }; 11635 "url-parse-lax-3.0.0" = { ··· 11803 sha512 = "sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A=="; 11804 }; 11805 }; 11806 - "vscode-languageserver-textdocument-1.0.2" = { 11807 name = "vscode-languageserver-textdocument"; 11808 packageName = "vscode-languageserver-textdocument"; 11809 - version = "1.0.2"; 11810 src = fetchurl { 11811 - url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.2.tgz"; 11812 - sha512 = "T7uPC18+f8mYE4lbVZwb3OSmvwTZm3cuFhrdx9Bn2l11lmp3SvSuSVjy2JtvrghzjAo4G6Trqny2m9XGnFnWVA=="; 11813 }; 11814 }; 11815 "vscode-languageserver-types-3.16.0" = { ··· 11866 sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; 11867 }; 11868 }; 11869 - "web-tree-sitter-0.19.4" = { 11870 name = "web-tree-sitter"; 11871 packageName = "web-tree-sitter"; 11872 - version = "0.19.4"; 11873 src = fetchurl { 11874 - url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.19.4.tgz"; 11875 - sha512 = "8G0xBj05hqZybCqBtW7RPZ/hWEtP3DiLTauQzGJZuZYfVRgw7qj7iaZ+8djNqJ4VPrdOO+pS2dR1JsTbsLxdYg=="; 11876 }; 11877 }; 11878 "webpack-4.44.2" = { ··· 12262 sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A=="; 12263 }; 12264 }; 12265 - "ws-7.5.6" = { 12266 name = "ws"; 12267 packageName = "ws"; 12268 - version = "7.5.6"; 12269 src = fetchurl { 12270 - url = "https://registry.npmjs.org/ws/-/ws-7.5.6.tgz"; 12271 - sha512 = "6GLgCqo2cy2A2rjCNFlxQS6ZljG/coZfZXclldI8FB/1G3CCI36Zd8xy2HrFVACi8tfk5XrgLQEk+P0Tnz9UcA=="; 12272 }; 12273 }; 12274 "xmlbuilder-13.0.2" = { ··· 12427 sha512 = "I7dgGFOc+mYDcDuyo1/HcIn3E5MiMbocStNzivsPSjCUviuEieHdDKZmJJ9uM3IdCu0fdBmRNWQBSOXtXrgzKg=="; 12428 }; 12429 dependencies = [ 12430 - sources."accepts-1.3.7" 12431 sources."ajv-6.12.6" 12432 sources."array-flatten-1.1.1" 12433 sources."asn1-0.2.6" ··· 12498 sources."fresh-0.5.2" 12499 sources."fs-extra-2.0.0" 12500 sources."getpass-0.1.7" 12501 - sources."graceful-fs-4.2.8" 12502 sources."har-schema-2.0.0" 12503 sources."har-validator-5.1.5" 12504 sources."http-errors-1.7.2" ··· 12522 sources."merge-descriptors-1.0.1" 12523 sources."methods-1.1.2" 12524 sources."mime-1.4.1" 12525 - sources."mime-db-1.51.0" 12526 - sources."mime-types-2.1.34" 12527 sources."minimist-1.2.0" 12528 sources."ms-2.0.0" 12529 - sources."negotiator-0.6.2" 12530 sources."node-watch-0.5.5" 12531 sources."oauth-sign-0.9.0" 12532 sources."on-finished-2.3.0" ··· 12548 sources."regenerator-runtime-0.9.6" 12549 (sources."request-2.88.0" // { 12550 dependencies = [ 12551 - sources."qs-6.5.2" 12552 sources."safe-buffer-5.2.1" 12553 ]; 12554 }) ··· 12563 }) 12564 sources."serve-static-1.13.2" 12565 sources."setprototypeof-1.1.1" 12566 - sources."sshpk-1.16.1" 12567 sources."statuses-1.5.0" 12568 sources."string_decoder-0.10.31" 12569 sources."sums-0.2.4" ··· 12607 elm-coverage = nodeEnv.buildNodePackage { 12608 name = "elm-coverage"; 12609 packageName = "elm-coverage"; 12610 - version = "0.3.0"; 12611 src = fetchurl { 12612 - url = "https://registry.npmjs.org/elm-coverage/-/elm-coverage-0.3.0.tgz"; 12613 - sha512 = "WHlO9LCu6DLzlIPR28GqcCgtyy6ZjRKBR+c6yYwy7m2o0D0buuLsr3wsZxJBjZYmwregmWRseUOM3DzHmoiIzg=="; 12614 }; 12615 dependencies = [ 12616 sources."abbrev-1.1.1" 12617 sources."ajv-6.12.6" 12618 - sources."ansi-regex-4.1.0" 12619 sources."ansi-styles-3.2.1" 12620 sources."anymatch-3.1.2" 12621 sources."asn1-0.2.6" 12622 sources."assert-plus-1.0.0" 12623 - sources."astral-regex-1.0.0" 12624 sources."asynckit-0.4.0" 12625 sources."aws-sign2-0.7.0" 12626 sources."aws4-1.11.0" ··· 12643 }) 12644 sources."chokidar-3.2.1" 12645 sources."chownr-2.0.0" 12646 - (sources."cliui-6.0.0" // { 12647 - dependencies = [ 12648 - sources."ansi-regex-5.0.1" 12649 - sources."emoji-regex-8.0.0" 12650 - sources."is-fullwidth-code-point-3.0.0" 12651 - sources."string-width-4.2.3" 12652 - sources."strip-ansi-6.0.1" 12653 - ]; 12654 - }) 12655 sources."color-convert-1.9.3" 12656 sources."color-name-1.1.3" 12657 sources."combined-stream-1.0.8" ··· 12682 sources."fs-minipass-1.2.7" 12683 sources."minipass-2.9.0" 12684 sources."minizlib-1.3.3" 12685 - sources."mkdirp-0.5.5" 12686 sources."tar-4.4.19" 12687 sources."yallist-3.1.1" 12688 ]; 12689 }) 12690 - sources."emoji-regex-7.0.3" 12691 sources."escape-string-regexp-1.0.5" 12692 sources."extend-3.0.2" 12693 sources."extsprintf-1.3.0" ··· 12714 sources."getpass-0.1.7" 12715 sources."glob-7.1.4" 12716 sources."glob-parent-5.1.2" 12717 - sources."graceful-fs-4.2.8" 12718 sources."har-schema-2.0.0" 12719 sources."har-validator-5.1.5" 12720 sources."has-flag-3.0.0" ··· 12723 sources."inherits-2.0.4" 12724 sources."is-binary-path-2.1.0" 12725 sources."is-extglob-2.1.1" 12726 - sources."is-fullwidth-code-point-2.0.0" 12727 sources."is-glob-4.0.3" 12728 sources."is-number-7.0.0" 12729 sources."is-typedarray-1.0.0" ··· 12738 sources."jsprim-1.4.2" 12739 sources."locate-path-5.0.0" 12740 sources."lodash-4.17.21" 12741 (sources."lru-cache-4.1.5" // { 12742 dependencies = [ 12743 sources."yallist-2.1.2" 12744 ]; 12745 }) 12746 - sources."mime-db-1.51.0" 12747 - sources."mime-types-2.1.34" 12748 - sources."minimatch-3.0.4" 12749 - sources."minimist-1.2.5" 12750 sources."minipass-3.1.6" 12751 sources."minizlib-2.1.2" 12752 sources."mkdirp-1.0.4" ··· 12774 sources."path-is-absolute-1.0.1" 12775 sources."path-key-3.1.1" 12776 sources."performance-now-2.1.0" 12777 - sources."picomatch-2.3.0" 12778 sources."pseudomap-1.0.2" 12779 sources."psl-1.8.0" 12780 sources."punycode-2.1.1" 12781 - sources."qs-6.5.2" 12782 sources."readdirp-3.1.3" 12783 sources."request-2.88.2" 12784 sources."request-promise-4.2.6" 12785 sources."request-promise-core-1.1.4" 12786 sources."require-directory-2.1.1" 12787 sources."require-main-filename-2.0.0" 12788 sources."rimraf-2.6.3" 12789 sources."safe-buffer-5.2.1" ··· 12792 sources."set-blocking-2.0.0" 12793 sources."shebang-command-1.2.0" 12794 sources."shebang-regex-1.0.0" 12795 - sources."slice-ansi-2.1.0" 12796 sources."split-1.0.1" 12797 - sources."sshpk-1.16.1" 12798 sources."stealthy-require-1.1.1" 12799 - sources."string-width-3.1.0" 12800 - sources."strip-ansi-5.2.0" 12801 (sources."supports-color-7.1.0" // { 12802 dependencies = [ 12803 sources."has-flag-4.0.0" 12804 ]; 12805 }) 12806 - sources."table-5.4.6" 12807 sources."tar-6.1.11" 12808 sources."temp-0.9.0" 12809 sources."through-2.3.8" ··· 12818 sources."universalify-0.1.2" 12819 (sources."unzip-stream-0.3.1" // { 12820 dependencies = [ 12821 - sources."mkdirp-0.5.5" 12822 ]; 12823 }) 12824 sources."upgrade-1.1.0" ··· 12829 sources."which-module-2.0.0" 12830 (sources."wrap-ansi-6.2.0" // { 12831 dependencies = [ 12832 - sources."ansi-regex-5.0.1" 12833 sources."ansi-styles-4.3.0" 12834 sources."color-convert-2.0.1" 12835 sources."color-name-1.1.4" 12836 - sources."emoji-regex-8.0.0" 12837 - sources."is-fullwidth-code-point-3.0.0" 12838 - sources."string-width-4.2.3" 12839 - sources."strip-ansi-6.0.1" 12840 ]; 12841 }) 12842 sources."wrappy-1.0.2" 12843 sources."xmlbuilder-13.0.2" 12844 sources."y18n-4.0.3" 12845 sources."yallist-4.0.0" 12846 - (sources."yargs-15.4.1" // { 12847 - dependencies = [ 12848 - sources."ansi-regex-5.0.1" 12849 - sources."emoji-regex-8.0.0" 12850 - sources."is-fullwidth-code-point-3.0.0" 12851 - sources."string-width-4.2.3" 12852 - sources."strip-ansi-6.0.1" 12853 - ]; 12854 - }) 12855 sources."yargs-parser-18.1.3" 12856 ]; 12857 buildInputs = globalBuildInputs; ··· 12875 dependencies = [ 12876 sources."@sindresorhus/is-0.14.0" 12877 sources."@szmarczak/http-timer-1.1.2" 12878 - sources."accepts-1.3.7" 12879 sources."ansi-styles-4.3.0" 12880 sources."anymatch-3.1.2" 12881 sources."array-flatten-1.1.1" ··· 12883 sources."balanced-match-1.0.2" 12884 sources."batch-0.6.1" 12885 sources."binary-extensions-2.2.0" 12886 - sources."body-parser-1.19.1" 12887 sources."brace-expansion-1.1.11" 12888 sources."braces-3.0.2" 12889 - sources."bytes-3.1.1" 12890 (sources."cacheable-request-6.1.0" // { 12891 dependencies = [ 12892 sources."get-stream-5.2.0" ··· 12894 ]; 12895 }) 12896 sources."chalk-3.0.0" 12897 - sources."chokidar-3.5.2" 12898 sources."clone-response-1.0.2" 12899 sources."color-convert-2.0.1" 12900 sources."color-name-1.1.4" ··· 12902 sources."concat-map-0.0.1" 12903 sources."content-disposition-0.5.4" 12904 sources."content-type-1.0.4" 12905 - sources."cookie-0.4.1" 12906 sources."cookie-signature-1.0.6" 12907 sources."cross-spawn-7.0.3" 12908 sources."debug-2.6.9" ··· 12917 sources."end-of-stream-1.4.4" 12918 sources."escape-html-1.0.3" 12919 sources."etag-1.8.1" 12920 - sources."express-4.17.2" 12921 (sources."express-ws-4.0.0" // { 12922 dependencies = [ 12923 sources."ws-5.2.3" ··· 12956 sources."merge-descriptors-1.0.1" 12957 sources."methods-1.1.2" 12958 sources."mime-1.6.0" 12959 - sources."mime-db-1.51.0" 12960 - sources."mime-types-2.1.34" 12961 sources."mimic-response-1.0.1" 12962 - sources."minimatch-3.0.4" 12963 - sources."minimist-1.2.5" 12964 sources."ms-2.0.0" 12965 - sources."negotiator-0.6.2" 12966 sources."normalize-path-3.0.0" 12967 sources."normalize-url-4.5.1" 12968 sources."on-finished-2.3.0" ··· 12974 sources."path-is-absolute-1.0.1" 12975 sources."path-key-3.1.1" 12976 sources."path-to-regexp-0.1.7" 12977 - sources."picomatch-2.3.0" 12978 sources."prepend-http-2.0.0" 12979 sources."proxy-addr-2.0.7" 12980 sources."pump-3.0.0" 12981 - sources."qs-6.9.6" 12982 sources."range-parser-1.2.1" 12983 - sources."raw-body-2.4.2" 12984 sources."rc-1.2.8" 12985 sources."readdirp-3.6.0" 12986 sources."registry-auth-token-4.2.1" ··· 13002 sources."setprototypeof-1.1.0" 13003 ]; 13004 }) 13005 - sources."serve-static-1.14.2" 13006 sources."setprototypeof-1.2.0" 13007 sources."shebang-command-2.0.0" 13008 sources."shebang-regex-3.0.0" ··· 13020 sources."vary-1.1.2" 13021 sources."which-2.0.2" 13022 sources."wrappy-1.0.2" 13023 - sources."ws-7.5.6" 13024 ]; 13025 buildInputs = globalBuildInputs; 13026 meta = { ··· 13035 "@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage { 13036 name = "_at_elm-tooling_slash_elm-language-server"; 13037 packageName = "@elm-tooling/elm-language-server"; 13038 - version = "2.3.0"; 13039 src = fetchurl { 13040 - url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-2.3.0.tgz"; 13041 - sha512 = "j5EYk1FVsRk54mQt4bRzODq4o+2RnklW9UlTQI3xvkPsIXM1wrjGcTZF0fVBWjRN/QulYQgrQAFrNZ8iTp71sg=="; 13042 }; 13043 dependencies = [ 13044 sources."@nodelib/fs.scandir-2.1.5" ··· 13048 sources."array-union-2.1.0" 13049 sources."binary-extensions-2.2.0" 13050 sources."braces-3.0.2" 13051 - sources."chokidar-3.5.2" 13052 sources."cross-spawn-7.0.3" 13053 sources."dir-glob-3.0.1" 13054 sources."escape-string-regexp-4.0.0" 13055 sources."execa-5.1.1" 13056 sources."fast-diff-1.2.0" 13057 - sources."fast-glob-3.2.7" 13058 sources."fastq-1.13.0" 13059 sources."fill-range-7.0.1" 13060 sources."fsevents-2.3.2" 13061 sources."get-stream-6.0.1" 13062 sources."glob-parent-5.1.2" 13063 - sources."globby-11.0.4" 13064 sources."human-signals-2.1.0" 13065 sources."ignore-5.2.0" 13066 sources."is-binary-path-2.1.0" ··· 13071 sources."isexe-2.0.0" 13072 sources."merge-stream-2.0.0" 13073 sources."merge2-1.4.1" 13074 - sources."micromatch-4.0.4" 13075 sources."mimic-fn-2.1.0" 13076 sources."normalize-path-3.0.0" 13077 sources."npm-run-path-4.0.1" 13078 sources."onetime-5.1.2" 13079 sources."path-key-3.1.1" 13080 sources."path-type-4.0.0" 13081 - sources."picomatch-2.3.0" 13082 sources."pjson-1.0.9" 13083 sources."queue-microtask-1.2.3" 13084 sources."readdirp-3.6.0" ··· 13087 sources."run-parallel-1.2.0" 13088 sources."shebang-command-2.0.0" 13089 sources."shebang-regex-3.0.0" 13090 - sources."signal-exit-3.0.6" 13091 sources."slash-3.0.0" 13092 sources."strip-final-newline-2.0.0" 13093 sources."to-regex-range-5.0.1" 13094 - sources."ts-debounce-3.0.0" 13095 sources."tslib-1.14.1" 13096 sources."tsyringe-4.6.0" 13097 sources."vscode-jsonrpc-6.0.0" 13098 sources."vscode-languageserver-7.0.0" 13099 sources."vscode-languageserver-protocol-3.16.0" 13100 - sources."vscode-languageserver-textdocument-1.0.2" 13101 sources."vscode-languageserver-types-3.16.0" 13102 sources."vscode-uri-3.0.3" 13103 - sources."web-tree-sitter-0.19.4" 13104 sources."which-2.0.2" 13105 ]; 13106 buildInputs = globalBuildInputs; ··· 13155 }) 13156 sources."fill-range-7.0.1" 13157 sources."finalhandler-1.1.2" 13158 - sources."follow-redirects-1.14.6" 13159 sources."fresh-0.5.2" 13160 sources."fsevents-2.3.2" 13161 sources."get-stream-4.1.0" ··· 13190 sources."parseurl-1.3.3" 13191 sources."path-key-2.0.1" 13192 sources."pem-1.14.2" 13193 - sources."picomatch-2.3.0" 13194 sources."pseudomap-1.0.2" 13195 sources."pump-3.0.0" 13196 sources."range-parser-1.2.1" ··· 13207 sources."setprototypeof-1.1.1" 13208 sources."shebang-command-1.2.0" 13209 sources."shebang-regex-1.0.0" 13210 - sources."signal-exit-3.0.6" 13211 sources."statuses-1.5.0" 13212 sources."strip-ansi-3.0.1" 13213 sources."strip-eof-1.0.0" ··· 13246 sources."brace-expansion-1.1.11" 13247 sources."braces-3.0.2" 13248 sources."chalk-4.1.2" 13249 - sources."chokidar-3.5.2" 13250 sources."color-convert-2.0.1" 13251 sources."color-name-1.1.4" 13252 sources."commander-7.2.0" ··· 13258 sources."fsevents-2.3.2" 13259 sources."glob-7.2.0" 13260 sources."glob-parent-5.1.2" 13261 - sources."graceful-fs-4.2.8" 13262 sources."has-flag-4.0.0" 13263 sources."inflight-1.0.6" 13264 sources."inherits-2.0.4" ··· 13267 sources."is-glob-4.0.3" 13268 sources."is-number-7.0.0" 13269 sources."isexe-2.0.0" 13270 - sources."minimatch-3.0.4" 13271 sources."normalize-path-3.0.0" 13272 sources."once-1.4.0" 13273 sources."path-is-absolute-1.0.1" 13274 sources."path-key-3.1.1" 13275 - sources."picomatch-2.3.0" 13276 sources."readdirp-3.6.0" 13277 sources."rimraf-3.0.2" 13278 sources."shebang-command-2.0.0" ··· 13308 sources."@szmarczak/http-timer-4.0.6" 13309 sources."@types/cacheable-request-6.0.2" 13310 sources."@types/http-cache-semantics-4.0.1" 13311 - sources."@types/keyv-3.1.3" 13312 - sources."@types/node-17.0.5" 13313 sources."@types/responselike-1.0.0" 13314 sources."cacheable-lookup-2.0.1" 13315 sources."cacheable-request-7.0.2" ··· 13328 sources."get-proxy-2.1.0" 13329 sources."get-stream-5.2.0" 13330 sources."got-10.7.0" 13331 - sources."graceful-fs-4.2.8" 13332 sources."has-symbol-support-x-1.4.2" 13333 sources."has-to-string-tag-x-1.4.1" 13334 sources."http-cache-semantics-4.1.0" ··· 13338 sources."isurl-1.0.0" 13339 sources."json-buffer-3.0.1" 13340 sources."jsonfile-4.0.0" 13341 - sources."keyv-4.0.4" 13342 sources."lowercase-keys-2.0.0" 13343 sources."lru-cache-6.0.0" 13344 sources."mimic-response-2.1.0" ··· 13386 }; 13387 dependencies = [ 13388 sources."ajv-6.12.6" 13389 - sources."ansi-regex-4.1.0" 13390 sources."ansi-styles-3.2.1" 13391 sources."anymatch-3.1.2" 13392 sources."asn1-0.2.6" ··· 13457 sources."getpass-0.1.7" 13458 sources."glob-7.1.4" 13459 sources."glob-parent-5.1.2" 13460 - sources."graceful-fs-4.2.8" 13461 sources."har-schema-2.0.0" 13462 sources."har-validator-5.1.5" 13463 sources."has-flag-3.0.0" ··· 13480 sources."jsprim-1.4.2" 13481 sources."locate-path-3.0.0" 13482 sources."lodash-4.17.15" 13483 - sources."mime-db-1.51.0" 13484 - sources."mime-types-2.1.34" 13485 - sources."minimatch-3.0.4" 13486 - sources."minimist-1.2.5" 13487 sources."minipass-2.9.0" 13488 sources."minizlib-1.3.3" 13489 - sources."mkdirp-0.5.5" 13490 sources."murmur-hash-js-1.0.0" 13491 sources."mustache-3.2.1" 13492 sources."nice-try-1.0.5" ··· 13507 sources."path-is-absolute-1.0.1" 13508 sources."path-key-3.1.1" 13509 sources."performance-now-2.1.0" 13510 - sources."picomatch-2.3.0" 13511 sources."psl-1.8.0" 13512 sources."punycode-2.1.1" 13513 - sources."qs-6.5.2" 13514 sources."readdirp-3.1.3" 13515 sources."request-2.88.2" 13516 sources."request-promise-4.2.6" ··· 13529 sources."shebang-command-1.2.0" 13530 sources."shebang-regex-1.0.0" 13531 sources."split-1.0.1" 13532 - sources."sshpk-1.16.1" 13533 sources."stealthy-require-1.1.1" 13534 sources."string-width-3.1.0" 13535 sources."strip-ansi-5.2.0" ··· 13573 elm-xref = nodeEnv.buildNodePackage { 13574 name = "elm-xref"; 13575 packageName = "elm-xref"; 13576 - version = "4.1.0"; 13577 src = fetchurl { 13578 - url = "https://registry.npmjs.org/elm-xref/-/elm-xref-4.1.0.tgz"; 13579 - sha512 = "23nVGYsArS2DZ0RnFq6cKYO49pCjuLULhM+fvBcfA7ZIbKSw5WkDyK9c5hlQEm+JZAPZ43PNcI0yLzTEqaajiA=="; 13580 }; 13581 dependencies = [ 13582 sources."bluebird-3.7.2" 13583 sources."compare-versions-3.6.0" 13584 sources."core-util-is-1.0.3" 13585 sources."fs-extra-6.0.1" 13586 - sources."graceful-fs-4.2.8" 13587 sources."inherits-2.0.4" 13588 sources."isarray-1.0.0" 13589 sources."jsonfile-4.0.0" 13590 sources."klaw-2.1.1" 13591 - sources."minimist-1.2.5" 13592 sources."process-nextick-args-2.0.1" 13593 sources."readable-stream-2.3.7" 13594 sources."safe-buffer-5.1.2" 13595 sources."semver-6.3.0" 13596 - sources."semver-regex-1.0.0" 13597 - (sources."semver-sort-0.0.4" // { 13598 dependencies = [ 13599 sources."semver-5.7.1" 13600 ]; ··· 13625 }; 13626 dependencies = [ 13627 sources."@babel/cli-7.12.10" 13628 - sources."@babel/code-frame-7.16.0" 13629 - sources."@babel/compat-data-7.16.4" 13630 sources."@babel/core-7.12.10" 13631 - sources."@babel/generator-7.16.5" 13632 - sources."@babel/helper-annotate-as-pure-7.16.0" 13633 - sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.5" 13634 - (sources."@babel/helper-compilation-targets-7.16.3" // { 13635 dependencies = [ 13636 sources."semver-6.3.0" 13637 ]; 13638 }) 13639 - sources."@babel/helper-create-class-features-plugin-7.16.5" 13640 - sources."@babel/helper-create-regexp-features-plugin-7.16.0" 13641 - sources."@babel/helper-environment-visitor-7.16.5" 13642 - sources."@babel/helper-explode-assignable-expression-7.16.0" 13643 - sources."@babel/helper-function-name-7.16.0" 13644 - sources."@babel/helper-get-function-arity-7.16.0" 13645 - sources."@babel/helper-hoist-variables-7.16.0" 13646 - sources."@babel/helper-member-expression-to-functions-7.16.5" 13647 - sources."@babel/helper-module-imports-7.16.0" 13648 - sources."@babel/helper-module-transforms-7.16.5" 13649 - sources."@babel/helper-optimise-call-expression-7.16.0" 13650 - sources."@babel/helper-plugin-utils-7.16.5" 13651 - sources."@babel/helper-remap-async-to-generator-7.16.5" 13652 - sources."@babel/helper-replace-supers-7.16.5" 13653 - sources."@babel/helper-simple-access-7.16.0" 13654 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 13655 - sources."@babel/helper-split-export-declaration-7.16.0" 13656 - sources."@babel/helper-validator-identifier-7.15.7" 13657 - sources."@babel/helper-validator-option-7.14.5" 13658 - sources."@babel/helper-wrap-function-7.16.5" 13659 - sources."@babel/helpers-7.16.5" 13660 - sources."@babel/highlight-7.16.0" 13661 - sources."@babel/parser-7.16.6" 13662 - sources."@babel/plugin-proposal-async-generator-functions-7.16.5" 13663 - sources."@babel/plugin-proposal-class-properties-7.16.5" 13664 - sources."@babel/plugin-proposal-dynamic-import-7.16.5" 13665 - sources."@babel/plugin-proposal-export-namespace-from-7.16.5" 13666 - sources."@babel/plugin-proposal-json-strings-7.16.5" 13667 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.5" 13668 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.5" 13669 - sources."@babel/plugin-proposal-numeric-separator-7.16.5" 13670 - sources."@babel/plugin-proposal-object-rest-spread-7.16.5" 13671 - sources."@babel/plugin-proposal-optional-catch-binding-7.16.5" 13672 - sources."@babel/plugin-proposal-optional-chaining-7.16.5" 13673 - sources."@babel/plugin-proposal-private-methods-7.16.5" 13674 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.5" 13675 sources."@babel/plugin-syntax-async-generators-7.8.4" 13676 sources."@babel/plugin-syntax-class-properties-7.12.13" 13677 sources."@babel/plugin-syntax-dynamic-import-7.8.3" ··· 13684 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 13685 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 13686 sources."@babel/plugin-syntax-top-level-await-7.14.5" 13687 - sources."@babel/plugin-transform-arrow-functions-7.16.5" 13688 - sources."@babel/plugin-transform-async-to-generator-7.16.5" 13689 - sources."@babel/plugin-transform-block-scoped-functions-7.16.5" 13690 - sources."@babel/plugin-transform-block-scoping-7.16.5" 13691 - sources."@babel/plugin-transform-classes-7.16.5" 13692 - sources."@babel/plugin-transform-computed-properties-7.16.5" 13693 - sources."@babel/plugin-transform-destructuring-7.16.5" 13694 - sources."@babel/plugin-transform-dotall-regex-7.16.5" 13695 - sources."@babel/plugin-transform-duplicate-keys-7.16.5" 13696 - sources."@babel/plugin-transform-exponentiation-operator-7.16.5" 13697 - sources."@babel/plugin-transform-for-of-7.16.5" 13698 - sources."@babel/plugin-transform-function-name-7.16.5" 13699 - sources."@babel/plugin-transform-literals-7.16.5" 13700 - sources."@babel/plugin-transform-member-expression-literals-7.16.5" 13701 - sources."@babel/plugin-transform-modules-amd-7.16.5" 13702 - sources."@babel/plugin-transform-modules-commonjs-7.16.5" 13703 - sources."@babel/plugin-transform-modules-systemjs-7.16.5" 13704 - sources."@babel/plugin-transform-modules-umd-7.16.5" 13705 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.5" 13706 - sources."@babel/plugin-transform-new-target-7.16.5" 13707 - sources."@babel/plugin-transform-object-super-7.16.5" 13708 - sources."@babel/plugin-transform-parameters-7.16.5" 13709 - sources."@babel/plugin-transform-property-literals-7.16.5" 13710 - sources."@babel/plugin-transform-regenerator-7.16.5" 13711 - sources."@babel/plugin-transform-reserved-words-7.16.5" 13712 sources."@babel/plugin-transform-runtime-7.12.10" 13713 - sources."@babel/plugin-transform-shorthand-properties-7.16.5" 13714 - sources."@babel/plugin-transform-spread-7.16.5" 13715 - sources."@babel/plugin-transform-sticky-regex-7.16.5" 13716 - sources."@babel/plugin-transform-template-literals-7.16.5" 13717 - sources."@babel/plugin-transform-typeof-symbol-7.16.5" 13718 - sources."@babel/plugin-transform-unicode-escapes-7.16.5" 13719 - sources."@babel/plugin-transform-unicode-regex-7.16.5" 13720 sources."@babel/preset-env-7.12.10" 13721 sources."@babel/preset-modules-0.1.5" 13722 sources."@babel/runtime-7.12.5" 13723 - sources."@babel/template-7.16.0" 13724 - sources."@babel/traverse-7.16.5" 13725 - sources."@babel/types-7.16.0" 13726 sources."@hapi/address-2.1.4" 13727 sources."@hapi/bourne-1.3.2" 13728 sources."@hapi/hoek-8.5.1" ··· 13733 sources."@types/glob-7.2.0" 13734 sources."@types/html-minifier-terser-5.1.2" 13735 sources."@types/http-proxy-1.17.8" 13736 - sources."@types/json-schema-7.0.9" 13737 sources."@types/minimatch-3.0.5" 13738 - sources."@types/node-17.0.5" 13739 sources."@types/parse-json-4.0.0" 13740 sources."@types/q-1.5.5" 13741 sources."@types/source-list-map-0.1.2" ··· 13775 sources."@webassemblyjs/wast-printer-1.9.0" 13776 sources."@xtuc/ieee754-1.2.0" 13777 sources."@xtuc/long-4.2.2" 13778 - sources."accepts-1.3.7" 13779 sources."acorn-6.4.2" 13780 sources."address-1.0.3" 13781 sources."ajv-6.12.6" ··· 13858 sources."bindings-1.5.0" 13859 sources."bluebird-3.7.2" 13860 sources."bn.js-5.2.0" 13861 - (sources."body-parser-1.19.1" // { 13862 dependencies = [ 13863 - sources."bytes-3.1.1" 13864 sources."debug-2.6.9" 13865 sources."ms-2.0.0" 13866 - sources."qs-6.9.6" 13867 ]; 13868 }) 13869 (sources."bonjour-3.5.0" // { ··· 13886 ]; 13887 }) 13888 sources."browserify-zlib-0.2.0" 13889 - sources."browserslist-4.19.1" 13890 sources."buffer-4.9.2" 13891 sources."buffer-from-1.1.2" 13892 sources."buffer-indexof-1.1.1" ··· 13903 sources."camel-case-4.1.2" 13904 sources."camelcase-5.3.1" 13905 sources."caniuse-api-3.0.0" 13906 - sources."caniuse-lite-1.0.30001294" 13907 sources."case-sensitive-paths-webpack-plugin-2.3.0" 13908 sources."caseless-0.12.0" 13909 (sources."chalk-2.4.2" // { ··· 13912 ]; 13913 }) 13914 sources."chardet-0.7.0" 13915 - (sources."chokidar-3.5.2" // { 13916 dependencies = [ 13917 sources."glob-parent-5.1.2" 13918 ]; ··· 13986 }) 13987 sources."content-type-1.0.4" 13988 sources."convert-source-map-1.8.0" 13989 - sources."cookie-0.4.1" 13990 sources."cookie-signature-1.0.6" 13991 sources."copy-concurrently-1.0.5" 13992 sources."copy-descriptor-0.1.1" ··· 14002 ]; 14003 }) 14004 sources."core-js-2.6.12" 14005 - (sources."core-js-compat-3.20.1" // { 14006 dependencies = [ 14007 sources."semver-7.0.0" 14008 ]; ··· 14022 sources."css-declaration-sorter-4.0.1" 14023 (sources."css-loader-4.3.0" // { 14024 dependencies = [ 14025 - sources."camelcase-6.2.1" 14026 sources."loader-utils-2.0.2" 14027 sources."lru-cache-6.0.0" 14028 sources."semver-7.3.5" 14029 sources."yallist-4.0.0" 14030 ]; 14031 }) 14032 - sources."css-select-4.2.1" 14033 sources."css-select-base-adapter-0.1.1" 14034 (sources."css-tree-1.0.0-alpha.37" // { 14035 dependencies = [ 14036 sources."source-map-0.6.1" 14037 ]; 14038 }) 14039 - sources."css-what-5.1.0" 14040 sources."cssesc-3.0.0" 14041 sources."cssnano-4.1.11" 14042 sources."cssnano-preset-default-4.0.8" ··· 14054 sources."cycle-1.0.3" 14055 sources."cyclist-1.0.1" 14056 sources."dashdash-1.14.1" 14057 - sources."debug-4.3.3" 14058 sources."decamelize-1.2.0" 14059 sources."decode-uri-component-0.2.0" 14060 sources."deep-equal-0.2.2" ··· 14094 sources."dom-serializer-1.3.2" 14095 sources."domain-browser-1.2.0" 14096 sources."domelementtype-2.2.0" 14097 - sources."domhandler-4.3.0" 14098 sources."domutils-2.8.0" 14099 sources."dot-case-3.0.4" 14100 sources."dot-prop-5.3.0" ··· 14103 sources."duplexify-3.7.1" 14104 sources."ecc-jsbn-0.1.2" 14105 sources."ee-first-1.1.1" 14106 - sources."electron-to-chromium-1.4.30" 14107 (sources."elliptic-6.5.4" // { 14108 dependencies = [ 14109 sources."bn.js-4.12.0" ··· 14139 sources."entities-2.2.0" 14140 sources."errno-0.1.8" 14141 sources."error-ex-1.3.2" 14142 - sources."es-abstract-1.19.1" 14143 sources."es-to-primitive-1.2.1" 14144 sources."escalade-3.1.1" 14145 sources."escape-html-1.0.3" ··· 14188 ]; 14189 }) 14190 sources."expand-tilde-2.0.2" 14191 - (sources."express-4.17.2" // { 14192 dependencies = [ 14193 sources."array-flatten-1.1.1" 14194 sources."debug-2.6.9" 14195 sources."ms-2.0.0" 14196 - sources."qs-6.9.6" 14197 sources."safe-buffer-5.2.1" 14198 ]; 14199 }) ··· 14267 sources."find-up-4.1.0" 14268 sources."firstline-1.3.1" 14269 sources."flush-write-stream-1.1.1" 14270 - sources."follow-redirects-1.14.6" 14271 sources."for-in-1.0.2" 14272 sources."forever-agent-0.6.1" 14273 sources."form-data-2.3.3" 14274 sources."forwarded-0.2.0" 14275 - sources."fraction.js-4.1.2" 14276 sources."fragment-cache-0.2.1" 14277 sources."fresh-0.5.2" 14278 sources."from2-2.3.0" ··· 14310 sources."slash-1.0.0" 14311 ]; 14312 }) 14313 - sources."graceful-fs-4.2.8" 14314 (sources."gzip-size-5.0.0" // { 14315 dependencies = [ 14316 sources."pify-3.0.0" ··· 14322 sources."has-1.0.3" 14323 sources."has-bigints-1.0.1" 14324 sources."has-flag-3.0.0" 14325 - sources."has-symbols-1.0.2" 14326 sources."has-tostringtag-1.0.0" 14327 sources."has-value-1.0.0" 14328 (sources."has-values-1.0.0" // { ··· 14356 sources."htmlparser2-6.1.0" 14357 sources."http-deceiver-1.2.7" 14358 sources."http-errors-1.8.1" 14359 - sources."http-parser-js-0.5.5" 14360 sources."http-proxy-1.18.1" 14361 sources."http-proxy-middleware-0.21.0" 14362 sources."http-signature-1.2.0" ··· 14386 sources."ini-1.3.8" 14387 (sources."inquirer-6.2.0" // { 14388 dependencies = [ 14389 - sources."ansi-regex-3.0.0" 14390 sources."is-fullwidth-code-point-2.0.0" 14391 sources."mute-stream-0.0.7" 14392 sources."string-width-2.1.1" ··· 14409 sources."is-buffer-1.1.6" 14410 sources."is-callable-1.2.4" 14411 sources."is-color-stop-1.1.0" 14412 - sources."is-core-module-2.8.0" 14413 sources."is-data-descriptor-1.0.0" 14414 sources."is-date-object-1.0.5" 14415 sources."is-descriptor-1.0.2" ··· 14420 sources."is-glob-4.0.3" 14421 sources."is-negative-zero-2.0.2" 14422 sources."is-number-7.0.0" 14423 - sources."is-number-object-1.0.6" 14424 sources."is-obj-2.0.0" 14425 sources."is-path-cwd-2.2.0" 14426 sources."is-path-in-cwd-2.1.0" ··· 14431 sources."is-regexp-1.0.0" 14432 sources."is-resolvable-1.1.0" 14433 sources."is-root-2.0.0" 14434 - sources."is-shared-array-buffer-1.0.1" 14435 sources."is-stream-1.1.0" 14436 sources."is-string-1.0.7" 14437 sources."is-symbol-1.0.4" ··· 14455 sources."json-stable-stringify-1.0.1" 14456 sources."json-stringify-safe-5.0.1" 14457 sources."json3-3.3.3" 14458 - sources."json5-2.2.0" 14459 sources."jsonfile-4.0.0" 14460 sources."jsonify-0.0.0" 14461 sources."jsprim-1.4.2" ··· 14497 sources."merge-descriptors-1.0.1" 14498 sources."merge2-1.4.1" 14499 sources."methods-1.1.2" 14500 - sources."micromatch-4.0.4" 14501 (sources."miller-rabin-4.0.1" // { 14502 dependencies = [ 14503 sources."bn.js-4.12.0" 14504 ]; 14505 }) 14506 sources."mime-1.6.0" 14507 - sources."mime-db-1.51.0" 14508 - sources."mime-types-2.1.34" 14509 sources."mimic-fn-1.2.0" 14510 (sources."mini-css-extract-plugin-0.12.0" // { 14511 dependencies = [ ··· 14514 }) 14515 sources."minimalistic-assert-1.0.1" 14516 sources."minimalistic-crypto-utils-1.0.1" 14517 - sources."minimatch-3.0.4" 14518 sources."minimist-1.2.5" 14519 sources."mississippi-3.0.0" 14520 (sources."mixin-deep-1.3.2" // { ··· 14529 sources."multicast-dns-service-types-1.1.0" 14530 sources."mute-stream-0.0.8" 14531 sources."nan-2.15.0" 14532 - sources."nanoid-3.1.30" 14533 sources."nanomatch-1.2.13" 14534 sources."ncp-1.0.1" 14535 - sources."negotiator-0.6.2" 14536 sources."neo-async-2.6.2" 14537 sources."nice-try-1.0.5" 14538 sources."no-case-3.0.4" ··· 14551 sources."punycode-1.4.1" 14552 ]; 14553 }) 14554 - sources."node-releases-2.0.1" 14555 sources."normalize-package-data-2.5.0" 14556 sources."normalize-path-3.0.0" 14557 sources."normalize-range-0.1.2" ··· 14634 sources."pbkdf2-3.1.2" 14635 sources."performance-now-2.1.0" 14636 sources."picocolors-1.0.0" 14637 - sources."picomatch-2.3.0" 14638 sources."pify-4.0.1" 14639 sources."pinkie-2.0.4" 14640 sources."pinkie-promise-2.0.1" ··· 14654 dependencies = [ 14655 sources."async-2.6.3" 14656 sources."debug-3.2.7" 14657 - sources."mkdirp-0.5.5" 14658 ]; 14659 }) 14660 sources."posix-character-classes-0.1.1" ··· 14783 }) 14784 (sources."postcss-safe-parser-5.0.2" // { 14785 dependencies = [ 14786 - sources."postcss-8.4.5" 14787 ]; 14788 }) 14789 - sources."postcss-selector-parser-6.0.8" 14790 (sources."postcss-svgo-4.0.3" // { 14791 dependencies = [ 14792 sources."postcss-value-parser-3.3.1" ··· 14819 }) 14820 sources."punycode-2.1.1" 14821 sources."q-1.5.1" 14822 - sources."qs-6.5.2" 14823 sources."query-string-4.3.4" 14824 sources."querystring-0.2.0" 14825 sources."querystring-es3-0.2.1" ··· 14827 sources."randombytes-2.1.0" 14828 sources."randomfill-1.0.4" 14829 sources."range-parser-1.2.1" 14830 - (sources."raw-body-2.4.2" // { 14831 dependencies = [ 14832 - sources."bytes-3.1.1" 14833 ]; 14834 }) 14835 (sources."react-dev-utils-6.1.1" // { 14836 dependencies = [ 14837 sources."@babel/code-frame-7.0.0" 14838 - sources."ansi-regex-3.0.0" 14839 sources."big.js-3.2.0" 14840 sources."browserslist-4.1.1" 14841 sources."chalk-2.4.1" ··· 14879 }) 14880 sources."readable-stream-2.3.7" 14881 sources."readdirp-3.6.0" 14882 - sources."recursive-readdir-2.2.2" 14883 sources."regenerate-1.4.2" 14884 - sources."regenerate-unicode-properties-9.0.0" 14885 sources."regenerator-runtime-0.13.9" 14886 sources."regenerator-transform-0.14.5" 14887 sources."regex-not-1.0.2" 14888 - sources."regexp.prototype.flags-1.3.1" 14889 - sources."regexpu-core-4.8.0" 14890 - sources."regjsgen-0.5.2" 14891 - (sources."regjsparser-0.7.0" // { 14892 dependencies = [ 14893 sources."jsesc-0.5.0" 14894 ]; ··· 14907 sources."require-directory-2.1.1" 14908 sources."require-main-filename-1.0.1" 14909 sources."requires-port-1.0.0" 14910 - sources."resolve-1.20.0" 14911 sources."resolve-cwd-2.0.0" 14912 sources."resolve-dir-1.0.1" 14913 sources."resolve-from-3.0.0" ··· 14933 sources."sax-1.2.4" 14934 sources."schema-utils-2.7.1" 14935 sources."select-hose-2.0.0" 14936 - sources."selfsigned-1.10.11" 14937 sources."semver-5.7.1" 14938 (sources."send-0.17.2" // { 14939 dependencies = [ ··· 14969 sources."shebang-regex-3.0.0" 14970 sources."shell-quote-1.6.1" 14971 sources."side-channel-1.0.4" 14972 - sources."signal-exit-3.0.6" 14973 (sources."simple-swizzle-0.2.2" // { 14974 dependencies = [ 14975 sources."is-arrayish-0.3.2" ··· 15021 sources."sort-keys-1.1.2" 15022 sources."source-list-map-2.0.1" 15023 sources."source-map-0.5.7" 15024 - sources."source-map-js-1.0.1" 15025 sources."source-map-resolve-0.5.3" 15026 (sources."source-map-support-0.5.21" // { 15027 dependencies = [ ··· 15042 sources."split-1.0.1" 15043 sources."split-string-3.1.0" 15044 sources."sprintf-js-1.0.3" 15045 - sources."sshpk-1.16.1" 15046 sources."ssri-6.0.2" 15047 sources."stable-0.1.8" 15048 sources."stack-trace-0.0.10" ··· 15098 ]; 15099 }) 15100 sources."supports-color-5.5.0" 15101 (sources."svgo-1.3.2" // { 15102 dependencies = [ 15103 sources."css-select-2.1.0" ··· 15226 sources."schema-utils-3.1.1" 15227 ]; 15228 }) 15229 - sources."url-parse-1.5.4" 15230 sources."use-3.1.1" 15231 (sources."util-0.11.1" // { 15232 dependencies = [ ··· 15294 sources."chokidar-2.1.8" 15295 (sources."cliui-5.0.0" // { 15296 dependencies = [ 15297 - sources."ansi-regex-4.1.0" 15298 sources."strip-ansi-5.2.0" 15299 ]; 15300 }) ··· 15322 sources."semver-6.3.0" 15323 (sources."string-width-3.1.0" // { 15324 dependencies = [ 15325 - sources."ansi-regex-4.1.0" 15326 sources."strip-ansi-5.2.0" 15327 ]; 15328 }) ··· 15332 sources."which-module-2.0.0" 15333 (sources."wrap-ansi-5.1.0" // { 15334 dependencies = [ 15335 - sources."ansi-regex-4.1.0" 15336 sources."strip-ansi-5.2.0" 15337 ]; 15338 }) ··· 15429 elm-optimize-level-2 = nodeEnv.buildNodePackage { 15430 name = "elm-optimize-level-2"; 15431 packageName = "elm-optimize-level-2"; 15432 - version = "0.2.3"; 15433 src = fetchurl { 15434 - url = "https://registry.npmjs.org/elm-optimize-level-2/-/elm-optimize-level-2-0.2.3.tgz"; 15435 - sha512 = "IX/tbLx+8ZHZWSRQLN7nZoEcfkA3OR/ta8tnQgAE+tbX3yadR3zGQZeU3MsvSe42x/uCtiwruZWsT7qi/VMAYw=="; 15436 }; 15437 dependencies = [ 15438 - sources."ansi-styles-4.3.0" 15439 sources."balanced-match-1.0.2" 15440 sources."brace-expansion-1.1.11" 15441 - sources."chalk-4.1.2" 15442 sources."color-convert-2.0.1" 15443 sources."color-name-1.1.4" 15444 sources."commander-6.2.1" 15445 sources."concat-map-0.0.1" 15446 sources."cross-spawn-6.0.5" 15447 sources."find-elm-dependencies-2.0.4" 15448 sources."firstline-1.3.1" 15449 sources."fs.realpath-1.0.0" ··· 15452 sources."inflight-1.0.6" 15453 sources."inherits-2.0.4" 15454 sources."isexe-2.0.0" 15455 sources."lodash-4.17.21" 15456 - sources."minimatch-3.0.4" 15457 - sources."minimist-1.2.5" 15458 - sources."mkdirp-0.5.5" 15459 sources."nice-try-1.0.5" 15460 sources."node-elm-compiler-5.0.6" 15461 sources."once-1.4.0" 15462 sources."path-is-absolute-1.0.1" 15463 sources."path-key-2.0.1" 15464 sources."rimraf-2.6.3" 15465 sources."semver-5.7.1" 15466 sources."shebang-command-1.2.0" ··· 15468 sources."supports-color-7.2.0" 15469 sources."temp-0.9.4" 15470 sources."ts-union-2.3.0" 15471 - sources."typescript-3.9.10" 15472 sources."which-1.3.1" 15473 sources."wrappy-1.0.2" 15474 ]; ··· 15485 elm-review = nodeEnv.buildNodePackage { 15486 name = "elm-review"; 15487 packageName = "elm-review"; 15488 - version = "2.7.0"; 15489 src = fetchurl { 15490 - url = "https://registry.npmjs.org/elm-review/-/elm-review-2.7.0.tgz"; 15491 - sha512 = "PvZj6M6rHYpyAGp2MKF/TzeDawioQacBTkVxzlBBGuMoO4LXw2PMIm/NmhkxcD38l5SvDIwpWmyDKvEsMaWNhQ=="; 15492 }; 15493 dependencies = [ 15494 sources."@sindresorhus/is-2.1.1" 15495 sources."@szmarczak/http-timer-4.0.6" 15496 sources."@types/cacheable-request-6.0.2" 15497 sources."@types/http-cache-semantics-4.0.1" 15498 - sources."@types/keyv-3.1.3" 15499 - sources."@types/node-17.0.5" 15500 sources."@types/responselike-1.0.0" 15501 (sources."ansi-escapes-4.3.2" // { 15502 dependencies = [ ··· 15517 sources."cacheable-lookup-2.0.1" 15518 sources."cacheable-request-7.0.2" 15519 sources."chalk-4.1.2" 15520 - sources."chokidar-3.5.2" 15521 sources."cli-cursor-3.1.0" 15522 sources."cli-spinners-2.6.1" 15523 sources."clone-1.0.4" ··· 15530 sources."color-name-1.1.4" 15531 sources."concat-map-0.0.1" 15532 sources."cross-spawn-7.0.3" 15533 - sources."debug-4.3.3" 15534 sources."decompress-response-5.0.0" 15535 sources."defaults-1.0.3" 15536 sources."defer-to-connect-2.0.1" ··· 15550 sources."glob-7.2.0" 15551 sources."glob-parent-5.1.2" 15552 sources."got-10.7.0" 15553 - sources."graceful-fs-4.2.8" 15554 sources."has-flag-4.0.0" 15555 sources."http-cache-semantics-4.1.0" 15556 sources."ieee754-1.2.1" ··· 15566 sources."isexe-2.0.0" 15567 sources."json-buffer-3.0.1" 15568 sources."jsonfile-6.1.0" 15569 - sources."keyv-4.0.4" 15570 sources."kleur-3.0.3" 15571 sources."locate-path-5.0.0" 15572 sources."log-symbols-4.1.0" 15573 sources."lowercase-keys-2.0.0" 15574 sources."mimic-fn-2.1.0" 15575 sources."mimic-response-2.1.0" 15576 - sources."minimatch-3.0.4" 15577 - sources."minimist-1.2.5" 15578 - sources."mkdirp-0.5.5" 15579 sources."ms-2.1.2" 15580 sources."normalize-path-3.0.0" 15581 sources."normalize-url-6.1.0" ··· 15592 sources."path-exists-4.0.0" 15593 sources."path-is-absolute-1.0.1" 15594 sources."path-key-3.1.1" 15595 - sources."picomatch-2.3.0" 15596 sources."prompts-2.4.2" 15597 sources."pump-3.0.0" 15598 sources."readable-stream-3.6.0" ··· 15603 sources."safe-buffer-5.2.1" 15604 sources."shebang-command-2.0.0" 15605 sources."shebang-regex-3.0.0" 15606 - sources."signal-exit-3.0.6" 15607 sources."sisteransi-1.0.5" 15608 sources."string-width-4.2.3" 15609 sources."string_decoder-1.3.0" ··· 15635 elm-git-install = nodeEnv.buildNodePackage { 15636 name = "elm-git-install"; 15637 packageName = "elm-git-install"; 15638 - version = "0.1.3"; 15639 src = fetchurl { 15640 - url = "https://registry.npmjs.org/elm-git-install/-/elm-git-install-0.1.3.tgz"; 15641 - sha512 = "TdMhhgnj15UtbVAIfGo71zoUYKlZRJISriDJLNH/jx1xbvYLAF/x5hbOUG2gFlWypLurUiEPvzpAZzIYdI0N9Q=="; 15642 }; 15643 dependencies = [ 15644 - sources."debug-4.3.3" 15645 - sources."is-git-url-1.0.0" 15646 sources."ms-2.1.2" 15647 - sources."semver-5.7.1" 15648 - sources."simple-git-1.132.0" 15649 - sources."upath-1.2.0" 15650 ]; 15651 buildInputs = globalBuildInputs; 15652 meta = { 15653 description = "A tool for installing private Elm packages from any git url."; 15654 - homepage = "https://github.com/Skinney/elm-git-install#readme"; 15655 license = "BSD-3-Clause"; 15656 }; 15657 production = true;
··· 22 sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA=="; 23 }; 24 }; 25 + "@babel/code-frame-7.16.7" = { 26 name = "_at_babel_slash_code-frame"; 27 packageName = "@babel/code-frame"; 28 + version = "7.16.7"; 29 src = fetchurl { 30 + url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.16.7.tgz"; 31 + sha512 = "iAXqUn8IIeBTNd72xsFlgaXHkMBMt6y4HJp1tIaK465CWLT/fG1aqB7ykr95gHHmlBdGbFeWWfyB4NJJ0nmeIg=="; 32 }; 33 }; 34 + "@babel/compat-data-7.17.7" = { 35 name = "_at_babel_slash_compat-data"; 36 packageName = "@babel/compat-data"; 37 + version = "7.17.7"; 38 src = fetchurl { 39 + url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.17.7.tgz"; 40 + sha512 = "p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ=="; 41 }; 42 }; 43 "@babel/core-7.12.10" = { ··· 49 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 50 }; 51 }; 52 + "@babel/generator-7.17.7" = { 53 name = "_at_babel_slash_generator"; 54 packageName = "@babel/generator"; 55 + version = "7.17.7"; 56 src = fetchurl { 57 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.7.tgz"; 58 + sha512 = "oLcVCTeIFadUoArDTwpluncplrYBmTCCZZgXCbgNGvOBBiSDDK3eWO4b/+eOTli5tKv1lg+a5/NAXg+nTcei1w=="; 59 }; 60 }; 61 + "@babel/helper-annotate-as-pure-7.16.7" = { 62 name = "_at_babel_slash_helper-annotate-as-pure"; 63 packageName = "@babel/helper-annotate-as-pure"; 64 + version = "7.16.7"; 65 src = fetchurl { 66 + url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.16.7.tgz"; 67 + sha512 = "s6t2w/IPQVTAET1HitoowRGXooX8mCgtuP5195wD/QJPV6wYjpujCGF7JuMODVX2ZAJOf1GT6DT9MHEZvLOFSw=="; 68 }; 69 }; 70 + "@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" = { 71 name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor"; 72 packageName = "@babel/helper-builder-binary-assignment-operator-visitor"; 73 + version = "7.16.7"; 74 src = fetchurl { 75 + url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.16.7.tgz"; 76 + sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; 77 }; 78 }; 79 + "@babel/helper-compilation-targets-7.17.7" = { 80 name = "_at_babel_slash_helper-compilation-targets"; 81 packageName = "@babel/helper-compilation-targets"; 82 + version = "7.17.7"; 83 src = fetchurl { 84 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.7.tgz"; 85 + sha512 = "UFzlz2jjd8kroj0hmCFV5zr+tQPi1dpC2cRsDV/3IEW8bJfCPrPpmcSN6ZS8RqIq4LXcmpipCQFPddyFA5Yc7w=="; 86 }; 87 }; 88 + "@babel/helper-create-class-features-plugin-7.17.6" = { 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 packageName = "@babel/helper-create-class-features-plugin"; 91 + version = "7.17.6"; 92 src = fetchurl { 93 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.6.tgz"; 94 + sha512 = "SogLLSxXm2OkBbSsHZMM4tUi8fUzjs63AT/d0YQIzr6GSd8Hxsbk2KYDX0k0DweAzGMj/YWeiCsorIdtdcW8Eg=="; 95 }; 96 }; 97 + "@babel/helper-create-regexp-features-plugin-7.17.0" = { 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 packageName = "@babel/helper-create-regexp-features-plugin"; 100 + version = "7.17.0"; 101 src = fetchurl { 102 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.0.tgz"; 103 + sha512 = "awO2So99wG6KnlE+TPs6rn83gCz5WlEePJDTnLEqbchMVrBeAujURVphRdigsk094VhvZehFoNOihSlcBjwsXA=="; 104 }; 105 }; 106 + "@babel/helper-environment-visitor-7.16.7" = { 107 name = "_at_babel_slash_helper-environment-visitor"; 108 packageName = "@babel/helper-environment-visitor"; 109 + version = "7.16.7"; 110 src = fetchurl { 111 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"; 112 + sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; 113 }; 114 }; 115 + "@babel/helper-explode-assignable-expression-7.16.7" = { 116 name = "_at_babel_slash_helper-explode-assignable-expression"; 117 packageName = "@babel/helper-explode-assignable-expression"; 118 + version = "7.16.7"; 119 src = fetchurl { 120 + url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.16.7.tgz"; 121 + sha512 = "KyUenhWMC8VrxzkGP0Jizjo4/Zx+1nNZhgocs+gLzyZyB8SHidhoq9KK/8Ato4anhwsivfkBLftky7gvzbZMtQ=="; 122 }; 123 }; 124 + "@babel/helper-function-name-7.16.7" = { 125 name = "_at_babel_slash_helper-function-name"; 126 packageName = "@babel/helper-function-name"; 127 + version = "7.16.7"; 128 src = fetchurl { 129 + url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.16.7.tgz"; 130 + sha512 = "QfDfEnIUyyBSR3HtrtGECuZ6DAyCkYFp7GHl75vFtTnn6pjKeK0T1DB5lLkFvBea8MdaiUABx3osbgLyInoejA=="; 131 }; 132 }; 133 + "@babel/helper-get-function-arity-7.16.7" = { 134 name = "_at_babel_slash_helper-get-function-arity"; 135 packageName = "@babel/helper-get-function-arity"; 136 + version = "7.16.7"; 137 src = fetchurl { 138 + url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.16.7.tgz"; 139 + sha512 = "flc+RLSOBXzNzVhcLu6ujeHUrD6tANAOU5ojrRx/as+tbzf8+stUCj7+IfRRoAbEZqj/ahXEMsjhOhgeZsrnTw=="; 140 }; 141 }; 142 + "@babel/helper-hoist-variables-7.16.7" = { 143 name = "_at_babel_slash_helper-hoist-variables"; 144 packageName = "@babel/helper-hoist-variables"; 145 + version = "7.16.7"; 146 src = fetchurl { 147 + url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.16.7.tgz"; 148 + sha512 = "m04d/0Op34H5v7pbZw6pSKP7weA6lsMvfiIAMeIvkY/R4xQtBSMFEigu9QTZ2qB/9l22vsxtM8a+Q8CzD255fg=="; 149 }; 150 }; 151 + "@babel/helper-member-expression-to-functions-7.17.7" = { 152 name = "_at_babel_slash_helper-member-expression-to-functions"; 153 packageName = "@babel/helper-member-expression-to-functions"; 154 + version = "7.17.7"; 155 src = fetchurl { 156 + url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.17.7.tgz"; 157 + sha512 = "thxXgnQ8qQ11W2wVUObIqDL4p148VMxkt5T/qpN5k2fboRyzFGFmKsTGViquyM5QHKUy48OZoca8kw4ajaDPyw=="; 158 }; 159 }; 160 + "@babel/helper-module-imports-7.16.7" = { 161 name = "_at_babel_slash_helper-module-imports"; 162 packageName = "@babel/helper-module-imports"; 163 + version = "7.16.7"; 164 src = fetchurl { 165 + url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.16.7.tgz"; 166 + sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 167 }; 168 }; 169 + "@babel/helper-module-transforms-7.17.7" = { 170 name = "_at_babel_slash_helper-module-transforms"; 171 packageName = "@babel/helper-module-transforms"; 172 + version = "7.17.7"; 173 src = fetchurl { 174 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz"; 175 + sha512 = "VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw=="; 176 }; 177 }; 178 + "@babel/helper-optimise-call-expression-7.16.7" = { 179 name = "_at_babel_slash_helper-optimise-call-expression"; 180 packageName = "@babel/helper-optimise-call-expression"; 181 + version = "7.16.7"; 182 src = fetchurl { 183 + url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.16.7.tgz"; 184 + sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="; 185 }; 186 }; 187 + "@babel/helper-plugin-utils-7.16.7" = { 188 name = "_at_babel_slash_helper-plugin-utils"; 189 packageName = "@babel/helper-plugin-utils"; 190 + version = "7.16.7"; 191 src = fetchurl { 192 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"; 193 + sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="; 194 }; 195 }; 196 + "@babel/helper-remap-async-to-generator-7.16.8" = { 197 name = "_at_babel_slash_helper-remap-async-to-generator"; 198 packageName = "@babel/helper-remap-async-to-generator"; 199 + version = "7.16.8"; 200 src = fetchurl { 201 + url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.16.8.tgz"; 202 + sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="; 203 }; 204 }; 205 + "@babel/helper-replace-supers-7.16.7" = { 206 name = "_at_babel_slash_helper-replace-supers"; 207 packageName = "@babel/helper-replace-supers"; 208 + version = "7.16.7"; 209 src = fetchurl { 210 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"; 211 + sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="; 212 }; 213 }; 214 + "@babel/helper-simple-access-7.17.7" = { 215 name = "_at_babel_slash_helper-simple-access"; 216 packageName = "@babel/helper-simple-access"; 217 + version = "7.17.7"; 218 src = fetchurl { 219 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz"; 220 + sha512 = "txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA=="; 221 }; 222 }; 223 "@babel/helper-skip-transparent-expression-wrappers-7.16.0" = { ··· 229 sha512 = "+il1gTy0oHwUsBQZyJvukbB4vPMdcYBrFHa0Uc4AizLxbq6BOYC51Rv4tWocX9BLBDLZ4kc6qUFpQ6HRgL+3zw=="; 230 }; 231 }; 232 + "@babel/helper-split-export-declaration-7.16.7" = { 233 name = "_at_babel_slash_helper-split-export-declaration"; 234 packageName = "@babel/helper-split-export-declaration"; 235 + version = "7.16.7"; 236 src = fetchurl { 237 + url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.16.7.tgz"; 238 + sha512 = "xbWoy/PFoxSWazIToT9Sif+jJTlrMcndIsaOKvTA6u7QEo7ilkRZpjew18/W3c7nm8fXdUDXh02VXTbZ0pGDNw=="; 239 }; 240 }; 241 + "@babel/helper-validator-identifier-7.16.7" = { 242 name = "_at_babel_slash_helper-validator-identifier"; 243 packageName = "@babel/helper-validator-identifier"; 244 + version = "7.16.7"; 245 src = fetchurl { 246 + url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz"; 247 + sha512 = "hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw=="; 248 }; 249 }; 250 + "@babel/helper-validator-option-7.16.7" = { 251 name = "_at_babel_slash_helper-validator-option"; 252 packageName = "@babel/helper-validator-option"; 253 + version = "7.16.7"; 254 src = fetchurl { 255 + url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.16.7.tgz"; 256 + sha512 = "TRtenOuRUVo9oIQGPC5G9DgK4743cdxvtOw0weQNpZXaS16SCBi5MNjZF8vba3ETURjZpTbVn7Vvcf2eAwFozQ=="; 257 }; 258 }; 259 + "@babel/helper-wrap-function-7.16.8" = { 260 name = "_at_babel_slash_helper-wrap-function"; 261 packageName = "@babel/helper-wrap-function"; 262 + version = "7.16.8"; 263 src = fetchurl { 264 + url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.16.8.tgz"; 265 + sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 266 }; 267 }; 268 + "@babel/helpers-7.17.8" = { 269 name = "_at_babel_slash_helpers"; 270 packageName = "@babel/helpers"; 271 + version = "7.17.8"; 272 src = fetchurl { 273 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz"; 274 + sha512 = "QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw=="; 275 }; 276 }; 277 + "@babel/highlight-7.16.10" = { 278 name = "_at_babel_slash_highlight"; 279 packageName = "@babel/highlight"; 280 + version = "7.16.10"; 281 src = fetchurl { 282 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.16.10.tgz"; 283 + sha512 = "5FnTQLSLswEj6IkgVw5KusNUUFY9ZGqe/TRFnP/BKYHYgfh7tc+C7mwiy95/yNP7Dh9x580Vv8r7u7ZfTBFxdw=="; 284 }; 285 }; 286 + "@babel/parser-7.17.8" = { 287 name = "_at_babel_slash_parser"; 288 packageName = "@babel/parser"; 289 + version = "7.17.8"; 290 src = fetchurl { 291 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz"; 292 + sha512 = "BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ=="; 293 }; 294 }; 295 + "@babel/plugin-proposal-async-generator-functions-7.16.8" = { 296 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 297 packageName = "@babel/plugin-proposal-async-generator-functions"; 298 + version = "7.16.8"; 299 src = fetchurl { 300 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"; 301 + sha512 = "71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ=="; 302 }; 303 }; 304 + "@babel/plugin-proposal-class-properties-7.16.7" = { 305 name = "_at_babel_slash_plugin-proposal-class-properties"; 306 packageName = "@babel/plugin-proposal-class-properties"; 307 + version = "7.16.7"; 308 src = fetchurl { 309 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"; 310 + sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww=="; 311 }; 312 }; 313 + "@babel/plugin-proposal-dynamic-import-7.16.7" = { 314 name = "_at_babel_slash_plugin-proposal-dynamic-import"; 315 packageName = "@babel/plugin-proposal-dynamic-import"; 316 + version = "7.16.7"; 317 src = fetchurl { 318 + url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.16.7.tgz"; 319 + sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="; 320 }; 321 }; 322 + "@babel/plugin-proposal-export-namespace-from-7.16.7" = { 323 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 324 packageName = "@babel/plugin-proposal-export-namespace-from"; 325 + version = "7.16.7"; 326 src = fetchurl { 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"; 328 + sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA=="; 329 }; 330 }; 331 + "@babel/plugin-proposal-json-strings-7.16.7" = { 332 name = "_at_babel_slash_plugin-proposal-json-strings"; 333 packageName = "@babel/plugin-proposal-json-strings"; 334 + version = "7.16.7"; 335 src = fetchurl { 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; 337 + sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ=="; 338 }; 339 }; 340 + "@babel/plugin-proposal-logical-assignment-operators-7.16.7" = { 341 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 342 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 343 + version = "7.16.7"; 344 src = fetchurl { 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"; 346 + sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg=="; 347 }; 348 }; 349 + "@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" = { 350 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 351 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 352 + version = "7.16.7"; 353 src = fetchurl { 354 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; 355 + sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ=="; 356 }; 357 }; 358 + "@babel/plugin-proposal-numeric-separator-7.16.7" = { 359 name = "_at_babel_slash_plugin-proposal-numeric-separator"; 360 packageName = "@babel/plugin-proposal-numeric-separator"; 361 + version = "7.16.7"; 362 src = fetchurl { 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.16.7.tgz"; 364 + sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="; 365 }; 366 }; 367 + "@babel/plugin-proposal-object-rest-spread-7.17.3" = { 368 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 369 packageName = "@babel/plugin-proposal-object-rest-spread"; 370 + version = "7.17.3"; 371 src = fetchurl { 372 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz"; 373 + sha512 = "yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw=="; 374 }; 375 }; 376 + "@babel/plugin-proposal-optional-catch-binding-7.16.7" = { 377 name = "_at_babel_slash_plugin-proposal-optional-catch-binding"; 378 packageName = "@babel/plugin-proposal-optional-catch-binding"; 379 + version = "7.16.7"; 380 src = fetchurl { 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.16.7.tgz"; 382 + sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA=="; 383 }; 384 }; 385 + "@babel/plugin-proposal-optional-chaining-7.16.7" = { 386 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 387 packageName = "@babel/plugin-proposal-optional-chaining"; 388 + version = "7.16.7"; 389 src = fetchurl { 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; 391 + sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA=="; 392 }; 393 }; 394 + "@babel/plugin-proposal-private-methods-7.16.11" = { 395 name = "_at_babel_slash_plugin-proposal-private-methods"; 396 packageName = "@babel/plugin-proposal-private-methods"; 397 + version = "7.16.11"; 398 src = fetchurl { 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"; 400 + sha512 = "F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw=="; 401 }; 402 }; 403 + "@babel/plugin-proposal-unicode-property-regex-7.16.7" = { 404 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 405 packageName = "@babel/plugin-proposal-unicode-property-regex"; 406 + version = "7.16.7"; 407 src = fetchurl { 408 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; 409 + sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg=="; 410 }; 411 }; 412 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 517 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 518 }; 519 }; 520 + "@babel/plugin-transform-arrow-functions-7.16.7" = { 521 name = "_at_babel_slash_plugin-transform-arrow-functions"; 522 packageName = "@babel/plugin-transform-arrow-functions"; 523 + version = "7.16.7"; 524 src = fetchurl { 525 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"; 526 + sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ=="; 527 }; 528 }; 529 + "@babel/plugin-transform-async-to-generator-7.16.8" = { 530 name = "_at_babel_slash_plugin-transform-async-to-generator"; 531 packageName = "@babel/plugin-transform-async-to-generator"; 532 + version = "7.16.8"; 533 src = fetchurl { 534 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; 535 + sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg=="; 536 }; 537 }; 538 + "@babel/plugin-transform-block-scoped-functions-7.16.7" = { 539 name = "_at_babel_slash_plugin-transform-block-scoped-functions"; 540 packageName = "@babel/plugin-transform-block-scoped-functions"; 541 + version = "7.16.7"; 542 src = fetchurl { 543 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.16.7.tgz"; 544 + sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg=="; 545 }; 546 }; 547 + "@babel/plugin-transform-block-scoping-7.16.7" = { 548 name = "_at_babel_slash_plugin-transform-block-scoping"; 549 packageName = "@babel/plugin-transform-block-scoping"; 550 + version = "7.16.7"; 551 src = fetchurl { 552 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; 553 + sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ=="; 554 }; 555 }; 556 + "@babel/plugin-transform-classes-7.16.7" = { 557 name = "_at_babel_slash_plugin-transform-classes"; 558 packageName = "@babel/plugin-transform-classes"; 559 + version = "7.16.7"; 560 src = fetchurl { 561 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"; 562 + sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ=="; 563 }; 564 }; 565 + "@babel/plugin-transform-computed-properties-7.16.7" = { 566 name = "_at_babel_slash_plugin-transform-computed-properties"; 567 packageName = "@babel/plugin-transform-computed-properties"; 568 + version = "7.16.7"; 569 src = fetchurl { 570 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; 571 + sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; 572 }; 573 }; 574 + "@babel/plugin-transform-destructuring-7.17.7" = { 575 name = "_at_babel_slash_plugin-transform-destructuring"; 576 packageName = "@babel/plugin-transform-destructuring"; 577 + version = "7.17.7"; 578 src = fetchurl { 579 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz"; 580 + sha512 = "XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ=="; 581 }; 582 }; 583 + "@babel/plugin-transform-dotall-regex-7.16.7" = { 584 name = "_at_babel_slash_plugin-transform-dotall-regex"; 585 packageName = "@babel/plugin-transform-dotall-regex"; 586 + version = "7.16.7"; 587 src = fetchurl { 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.16.7.tgz"; 589 + sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ=="; 590 }; 591 }; 592 + "@babel/plugin-transform-duplicate-keys-7.16.7" = { 593 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 594 packageName = "@babel/plugin-transform-duplicate-keys"; 595 + version = "7.16.7"; 596 src = fetchurl { 597 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"; 598 + sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw=="; 599 }; 600 }; 601 + "@babel/plugin-transform-exponentiation-operator-7.16.7" = { 602 name = "_at_babel_slash_plugin-transform-exponentiation-operator"; 603 packageName = "@babel/plugin-transform-exponentiation-operator"; 604 + version = "7.16.7"; 605 src = fetchurl { 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.16.7.tgz"; 607 + sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="; 608 }; 609 }; 610 + "@babel/plugin-transform-for-of-7.16.7" = { 611 name = "_at_babel_slash_plugin-transform-for-of"; 612 packageName = "@babel/plugin-transform-for-of"; 613 + version = "7.16.7"; 614 src = fetchurl { 615 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"; 616 + sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg=="; 617 }; 618 }; 619 + "@babel/plugin-transform-function-name-7.16.7" = { 620 name = "_at_babel_slash_plugin-transform-function-name"; 621 packageName = "@babel/plugin-transform-function-name"; 622 + version = "7.16.7"; 623 src = fetchurl { 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.16.7.tgz"; 625 + sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="; 626 }; 627 }; 628 + "@babel/plugin-transform-literals-7.16.7" = { 629 name = "_at_babel_slash_plugin-transform-literals"; 630 packageName = "@babel/plugin-transform-literals"; 631 + version = "7.16.7"; 632 src = fetchurl { 633 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"; 634 + sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ=="; 635 }; 636 }; 637 + "@babel/plugin-transform-member-expression-literals-7.16.7" = { 638 name = "_at_babel_slash_plugin-transform-member-expression-literals"; 639 packageName = "@babel/plugin-transform-member-expression-literals"; 640 + version = "7.16.7"; 641 src = fetchurl { 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.16.7.tgz"; 643 + sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="; 644 }; 645 }; 646 + "@babel/plugin-transform-modules-amd-7.16.7" = { 647 name = "_at_babel_slash_plugin-transform-modules-amd"; 648 packageName = "@babel/plugin-transform-modules-amd"; 649 + version = "7.16.7"; 650 src = fetchurl { 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"; 652 + sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 653 }; 654 }; 655 + "@babel/plugin-transform-modules-commonjs-7.17.7" = { 656 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 657 packageName = "@babel/plugin-transform-modules-commonjs"; 658 + version = "7.17.7"; 659 src = fetchurl { 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.7.tgz"; 661 + sha512 = "ITPmR2V7MqioMJyrxUo2onHNC3e+MvfFiFIR0RP21d3PtlVb6sfzoxNKiphSZUOM9hEIdzCcZe83ieX3yoqjUA=="; 662 }; 663 }; 664 + "@babel/plugin-transform-modules-systemjs-7.17.8" = { 665 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 666 packageName = "@babel/plugin-transform-modules-systemjs"; 667 + version = "7.17.8"; 668 src = fetchurl { 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz"; 670 + sha512 = "39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw=="; 671 }; 672 }; 673 + "@babel/plugin-transform-modules-umd-7.16.7" = { 674 name = "_at_babel_slash_plugin-transform-modules-umd"; 675 packageName = "@babel/plugin-transform-modules-umd"; 676 + version = "7.16.7"; 677 src = fetchurl { 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; 679 + sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; 680 }; 681 }; 682 + "@babel/plugin-transform-named-capturing-groups-regex-7.16.8" = { 683 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 684 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 685 + version = "7.16.8"; 686 src = fetchurl { 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz"; 688 + sha512 = "j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw=="; 689 }; 690 }; 691 + "@babel/plugin-transform-new-target-7.16.7" = { 692 name = "_at_babel_slash_plugin-transform-new-target"; 693 packageName = "@babel/plugin-transform-new-target"; 694 + version = "7.16.7"; 695 src = fetchurl { 696 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; 697 + sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg=="; 698 }; 699 }; 700 + "@babel/plugin-transform-object-super-7.16.7" = { 701 name = "_at_babel_slash_plugin-transform-object-super"; 702 packageName = "@babel/plugin-transform-object-super"; 703 + version = "7.16.7"; 704 src = fetchurl { 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.16.7.tgz"; 706 + sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw=="; 707 }; 708 }; 709 + "@babel/plugin-transform-parameters-7.16.7" = { 710 name = "_at_babel_slash_plugin-transform-parameters"; 711 packageName = "@babel/plugin-transform-parameters"; 712 + version = "7.16.7"; 713 src = fetchurl { 714 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; 715 + sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw=="; 716 }; 717 }; 718 + "@babel/plugin-transform-property-literals-7.16.7" = { 719 name = "_at_babel_slash_plugin-transform-property-literals"; 720 packageName = "@babel/plugin-transform-property-literals"; 721 + version = "7.16.7"; 722 src = fetchurl { 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.16.7.tgz"; 724 + sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="; 725 }; 726 }; 727 + "@babel/plugin-transform-regenerator-7.16.7" = { 728 name = "_at_babel_slash_plugin-transform-regenerator"; 729 packageName = "@babel/plugin-transform-regenerator"; 730 + version = "7.16.7"; 731 src = fetchurl { 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.16.7.tgz"; 733 + sha512 = "mF7jOgGYCkSJagJ6XCujSQg+6xC1M77/03K2oBmVJWoFGNUtnVJO4WHKJk3dnPC8HCcj4xBQP1Egm8DWh3Pb3Q=="; 734 }; 735 }; 736 + "@babel/plugin-transform-reserved-words-7.16.7" = { 737 name = "_at_babel_slash_plugin-transform-reserved-words"; 738 packageName = "@babel/plugin-transform-reserved-words"; 739 + version = "7.16.7"; 740 src = fetchurl { 741 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"; 742 + sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg=="; 743 }; 744 }; 745 "@babel/plugin-transform-runtime-7.12.10" = { ··· 751 sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA=="; 752 }; 753 }; 754 + "@babel/plugin-transform-shorthand-properties-7.16.7" = { 755 name = "_at_babel_slash_plugin-transform-shorthand-properties"; 756 packageName = "@babel/plugin-transform-shorthand-properties"; 757 + version = "7.16.7"; 758 src = fetchurl { 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.16.7.tgz"; 760 + sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; 761 }; 762 }; 763 + "@babel/plugin-transform-spread-7.16.7" = { 764 name = "_at_babel_slash_plugin-transform-spread"; 765 packageName = "@babel/plugin-transform-spread"; 766 + version = "7.16.7"; 767 src = fetchurl { 768 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"; 769 + sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg=="; 770 }; 771 }; 772 + "@babel/plugin-transform-sticky-regex-7.16.7" = { 773 name = "_at_babel_slash_plugin-transform-sticky-regex"; 774 packageName = "@babel/plugin-transform-sticky-regex"; 775 + version = "7.16.7"; 776 src = fetchurl { 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.16.7.tgz"; 778 + sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="; 779 }; 780 }; 781 + "@babel/plugin-transform-template-literals-7.16.7" = { 782 name = "_at_babel_slash_plugin-transform-template-literals"; 783 packageName = "@babel/plugin-transform-template-literals"; 784 + version = "7.16.7"; 785 src = fetchurl { 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"; 787 + sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA=="; 788 }; 789 }; 790 + "@babel/plugin-transform-typeof-symbol-7.16.7" = { 791 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 792 packageName = "@babel/plugin-transform-typeof-symbol"; 793 + version = "7.16.7"; 794 src = fetchurl { 795 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"; 796 + sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ=="; 797 }; 798 }; 799 + "@babel/plugin-transform-unicode-escapes-7.16.7" = { 800 name = "_at_babel_slash_plugin-transform-unicode-escapes"; 801 packageName = "@babel/plugin-transform-unicode-escapes"; 802 + version = "7.16.7"; 803 src = fetchurl { 804 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.16.7.tgz"; 805 + sha512 = "TAV5IGahIz3yZ9/Hfv35TV2xEm+kaBDaZQCn2S/hG9/CZ0DktxJv9eKfPc7yYCvOYR4JGx1h8C+jcSOvgaaI/Q=="; 806 }; 807 }; 808 + "@babel/plugin-transform-unicode-regex-7.16.7" = { 809 name = "_at_babel_slash_plugin-transform-unicode-regex"; 810 packageName = "@babel/plugin-transform-unicode-regex"; 811 + version = "7.16.7"; 812 src = fetchurl { 813 + url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.16.7.tgz"; 814 + sha512 = "oC5tYYKw56HO75KZVLQ+R/Nl3Hro9kf8iG0hXoaHP7tjAyCpvqBiSNe6vGrZni1Z6MggmUOC6A7VP7AVmw225Q=="; 815 }; 816 }; 817 "@babel/preset-env-7.12.10" = { ··· 841 sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg=="; 842 }; 843 }; 844 + "@babel/template-7.16.7" = { 845 name = "_at_babel_slash_template"; 846 packageName = "@babel/template"; 847 + version = "7.16.7"; 848 src = fetchurl { 849 + url = "https://registry.npmjs.org/@babel/template/-/template-7.16.7.tgz"; 850 + sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 851 }; 852 }; 853 + "@babel/traverse-7.17.3" = { 854 name = "_at_babel_slash_traverse"; 855 packageName = "@babel/traverse"; 856 + version = "7.17.3"; 857 src = fetchurl { 858 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.3.tgz"; 859 + sha512 = "5irClVky7TxRWIRtxlh2WPUUOLhcPN06AGgaQSB8AEwuyEBgJVuJ5imdHm5zxk8w0QS5T+tDfnDxAlhWjpb7cw=="; 860 }; 861 }; 862 + "@babel/types-7.17.0" = { 863 name = "_at_babel_slash_types"; 864 packageName = "@babel/types"; 865 + version = "7.17.0"; 866 src = fetchurl { 867 + url = "https://registry.npmjs.org/@babel/types/-/types-7.17.0.tgz"; 868 + sha512 = "TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw=="; 869 }; 870 }; 871 "@hapi/address-2.1.4" = { ··· 913 sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 914 }; 915 }; 916 + "@kwsites/file-exists-1.1.1" = { 917 + name = "_at_kwsites_slash_file-exists"; 918 + packageName = "@kwsites/file-exists"; 919 + version = "1.1.1"; 920 + src = fetchurl { 921 + url = "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz"; 922 + sha512 = "m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw=="; 923 + }; 924 + }; 925 + "@kwsites/promise-deferred-1.1.1" = { 926 + name = "_at_kwsites_slash_promise-deferred"; 927 + packageName = "@kwsites/promise-deferred"; 928 + version = "1.1.1"; 929 + src = fetchurl { 930 + url = "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz"; 931 + sha512 = "GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw=="; 932 + }; 933 + }; 934 "@mrmlnc/readdir-enhanced-2.2.1" = { 935 name = "_at_mrmlnc_slash_readdir-enhanced"; 936 packageName = "@mrmlnc/readdir-enhanced"; ··· 1057 sha512 = "5kPLG5BKpWYkw/LVOGWpiq3nEVqxiN32rTgI53Sk12/xHFQ2rG3ehI9IO+O3W2QoKeyB92dJkoka8SUm6BX1pA=="; 1058 }; 1059 }; 1060 + "@types/jest-27.4.1" = { 1061 + name = "_at_types_slash_jest"; 1062 + packageName = "@types/jest"; 1063 + version = "27.4.1"; 1064 + src = fetchurl { 1065 + url = "https://registry.npmjs.org/@types/jest/-/jest-27.4.1.tgz"; 1066 + sha512 = "23iPJADSmicDVrWk+HT58LMJtzLAnB2AgIzplQuq/bSrGaxCrlvRFjGbXmamnnk/mAmCdLStiGqggu28ocUyiw=="; 1067 + }; 1068 + }; 1069 + "@types/json-schema-7.0.11" = { 1070 name = "_at_types_slash_json-schema"; 1071 packageName = "@types/json-schema"; 1072 + version = "7.0.11"; 1073 src = fetchurl { 1074 + url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.11.tgz"; 1075 + sha512 = "wOuvG1SN4Us4rez+tylwwwCV1psiNVOkJeM3AUWUNWg/jDQY2+HE/444y5gc+jBmRqASOm2Oeh5c1axHobwRKQ=="; 1076 }; 1077 }; 1078 + "@types/keyv-3.1.4" = { 1079 name = "_at_types_slash_keyv"; 1080 packageName = "@types/keyv"; 1081 + version = "3.1.4"; 1082 src = fetchurl { 1083 + url = "https://registry.npmjs.org/@types/keyv/-/keyv-3.1.4.tgz"; 1084 + sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1085 }; 1086 }; 1087 "@types/minimatch-3.0.5" = { ··· 1093 sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1094 }; 1095 }; 1096 + "@types/node-17.0.23" = { 1097 name = "_at_types_slash_node"; 1098 packageName = "@types/node"; 1099 + version = "17.0.23"; 1100 src = fetchurl { 1101 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.23.tgz"; 1102 + sha512 = "UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw=="; 1103 }; 1104 }; 1105 "@types/parse-json-4.0.0" = { ··· 1363 sha512 = "nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q=="; 1364 }; 1365 }; 1366 + "accepts-1.3.8" = { 1367 name = "accepts"; 1368 packageName = "accepts"; 1369 + version = "1.3.8"; 1370 src = fetchurl { 1371 + url = "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz"; 1372 + sha512 = "PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw=="; 1373 }; 1374 }; 1375 "acorn-6.4.2" = { ··· 1397 src = fetchurl { 1398 url = "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz"; 1399 sha512 = "j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g=="; 1400 + }; 1401 + }; 1402 + "ajv-8.11.0" = { 1403 + name = "ajv"; 1404 + packageName = "ajv"; 1405 + version = "8.11.0"; 1406 + src = fetchurl { 1407 + url = "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz"; 1408 + sha512 = "wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg=="; 1409 }; 1410 }; 1411 "ajv-errors-1.0.1" = { ··· 1480 sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1481 }; 1482 }; 1483 + "ansi-regex-3.0.1" = { 1484 name = "ansi-regex"; 1485 packageName = "ansi-regex"; 1486 + version = "3.0.1"; 1487 src = fetchurl { 1488 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz"; 1489 + sha512 = "+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw=="; 1490 }; 1491 }; 1492 + "ansi-regex-4.1.1" = { 1493 name = "ansi-regex"; 1494 packageName = "ansi-regex"; 1495 + version = "4.1.1"; 1496 src = fetchurl { 1497 + url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.1.tgz"; 1498 + sha512 = "ILlv4k/3f6vfQ4OoP2AGvirOktlQ98ZEL1k9FaQjxa3L1abBgbuTDAdPOpvbGncC0BTVQrl+OM8xZGK6tWXt7g=="; 1499 }; 1500 }; 1501 "ansi-regex-5.0.1" = { ··· 1532 src = fetchurl { 1533 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz"; 1534 sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg=="; 1535 + }; 1536 + }; 1537 + "ansi-styles-5.2.0" = { 1538 + name = "ansi-styles"; 1539 + packageName = "ansi-styles"; 1540 + version = "5.2.0"; 1541 + src = fetchurl { 1542 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"; 1543 + sha512 = "Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA=="; 1544 }; 1545 }; 1546 "anymatch-2.0.0" = { ··· 1750 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1751 }; 1752 }; 1753 + "astral-regex-2.0.0" = { 1754 name = "astral-regex"; 1755 packageName = "astral-regex"; 1756 + version = "2.0.0"; 1757 src = fetchurl { 1758 + url = "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz"; 1759 + sha512 = "Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ=="; 1760 }; 1761 }; 1762 "async-0.9.2" = { ··· 2101 sha512 = "dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw=="; 2102 }; 2103 }; 2104 + "body-parser-1.19.2" = { 2105 name = "body-parser"; 2106 packageName = "body-parser"; 2107 + version = "1.19.2"; 2108 src = fetchurl { 2109 + url = "https://registry.npmjs.org/body-parser/-/body-parser-1.19.2.tgz"; 2110 + sha512 = "SAAwOxgoCKMGs9uUAUFHygfLAyaniaoun6I8mFY9pRAJL9+Kec34aU+oIjDhTycub1jozEfEwx1W1IuOYxVSFw=="; 2111 }; 2112 }; 2113 "bonjour-3.5.0" = { ··· 2227 sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q=="; 2228 }; 2229 }; 2230 + "browserslist-4.20.2" = { 2231 name = "browserslist"; 2232 packageName = "browserslist"; 2233 + version = "4.20.2"; 2234 src = fetchurl { 2235 + url = "https://registry.npmjs.org/browserslist/-/browserslist-4.20.2.tgz"; 2236 + sha512 = "CQOBCqp/9pDvDbx3xfMi+86pr4KXIf2FDkTTdeuYw8OxS9t898LA1Khq57gtufFILXpfgsSx5woNgsBgvGjpsA=="; 2237 }; 2238 }; 2239 "buffer-4.9.2" = { ··· 2317 sha512 = "zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg=="; 2318 }; 2319 }; 2320 + "bytes-3.1.2" = { 2321 name = "bytes"; 2322 packageName = "bytes"; 2323 + version = "3.1.2"; 2324 src = fetchurl { 2325 + url = "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz"; 2326 + sha512 = "/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="; 2327 }; 2328 }; 2329 "cacache-10.0.4" = { ··· 2461 sha512 = "L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg=="; 2462 }; 2463 }; 2464 + "camelcase-6.3.0" = { 2465 name = "camelcase"; 2466 packageName = "camelcase"; 2467 + version = "6.3.0"; 2468 src = fetchurl { 2469 + url = "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz"; 2470 + sha512 = "Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA=="; 2471 }; 2472 }; 2473 "caniuse-api-3.0.0" = { ··· 2479 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2480 }; 2481 }; 2482 + "caniuse-lite-1.0.30001324" = { 2483 name = "caniuse-lite"; 2484 packageName = "caniuse-lite"; 2485 + version = "1.0.30001324"; 2486 src = fetchurl { 2487 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001324.tgz"; 2488 + sha512 = "/eYp1J6zYh1alySQB4uzYFkLmxxI8tk0kxldbNHXp8+v+rdMKdUBNjRLz7T7fz6Iox+1lIdYpc7rq6ZcXfTukg=="; 2489 }; 2490 }; 2491 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2614 sha512 = "/j5PPkb5Feyps9e+jo07jUZGvkB5Aj953NrI4s8xSVScrAo/RHeILrtdb4uzR7N6aaFFxxJ+gt8mA8HfNpw76w=="; 2615 }; 2616 }; 2617 + "chokidar-3.5.3" = { 2618 name = "chokidar"; 2619 packageName = "chokidar"; 2620 + version = "3.5.3"; 2621 src = fetchurl { 2622 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz"; 2623 + sha512 = "Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw=="; 2624 }; 2625 }; 2626 "chownr-1.1.4" = { ··· 3109 sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; 3110 }; 3111 }; 3112 + "cookie-0.4.2" = { 3113 name = "cookie"; 3114 packageName = "cookie"; 3115 + version = "0.4.2"; 3116 src = fetchurl { 3117 + url = "https://registry.npmjs.org/cookie/-/cookie-0.4.2.tgz"; 3118 + sha512 = "aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA=="; 3119 }; 3120 }; 3121 "cookie-signature-1.0.6" = { ··· 3163 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3164 }; 3165 }; 3166 + "core-js-compat-3.21.1" = { 3167 name = "core-js-compat"; 3168 packageName = "core-js-compat"; 3169 + version = "3.21.1"; 3170 src = fetchurl { 3171 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.21.1.tgz"; 3172 + sha512 = "gbgX5AUvMb8gwxC7FLVWYT7Kkgu/y7+h/h1X43yJkNqhlK2fuYyQimqvKGNZFAY6CKii/GFKJ2cp/1/42TN36g=="; 3173 }; 3174 }; 3175 "core-util-is-1.0.2" = { ··· 3343 sha512 = "Dqk7LQKpwLoH3VovzZnkzegqNSuAziQyNZUcrdDM401iY+R5NkGBXGmtO05/yaXQziALuPogeG0b7UAgjnTJTQ=="; 3344 }; 3345 }; 3346 + "css-select-4.3.0" = { 3347 name = "css-select"; 3348 packageName = "css-select"; 3349 + version = "4.3.0"; 3350 src = fetchurl { 3351 + url = "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz"; 3352 + sha512 = "wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ=="; 3353 }; 3354 }; 3355 "css-select-base-adapter-0.1.1" = { ··· 3388 sha512 = "ACUm3L0/jiZTqfzRM3Hi9Q8eZqd6IK37mMWPLz9PJxkLWllYeRf+EHUSHYEtFop2Eqytaq1FizFVh7XfBnXCDQ=="; 3389 }; 3390 }; 3391 + "css-what-6.1.0" = { 3392 name = "css-what"; 3393 packageName = "css-what"; 3394 + version = "6.1.0"; 3395 src = fetchurl { 3396 + url = "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz"; 3397 + sha512 = "HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw=="; 3398 }; 3399 }; 3400 "cssesc-3.0.0" = { ··· 3514 sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ=="; 3515 }; 3516 }; 3517 + "debug-4.3.4" = { 3518 name = "debug"; 3519 packageName = "debug"; 3520 + version = "4.3.4"; 3521 src = fetchurl { 3522 + url = "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz"; 3523 + sha512 = "PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ=="; 3524 }; 3525 }; 3526 "decamelize-1.2.0" = { ··· 3692 src = fetchurl { 3693 url = "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz"; 3694 sha1 = "9bcd52e14c097763e749b274c4346ed2e560b5a9"; 3695 + }; 3696 + }; 3697 + "depd-2.0.0" = { 3698 + name = "depd"; 3699 + packageName = "depd"; 3700 + version = "2.0.0"; 3701 + src = fetchurl { 3702 + url = "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz"; 3703 + sha512 = "g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="; 3704 }; 3705 }; 3706 "des.js-1.0.1" = { ··· 3721 sha1 = "978857442c44749e4206613e37946205826abd80"; 3722 }; 3723 }; 3724 + "destroy-1.2.0" = { 3725 + name = "destroy"; 3726 + packageName = "destroy"; 3727 + version = "1.2.0"; 3728 + src = fetchurl { 3729 + url = "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz"; 3730 + sha512 = "2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="; 3731 + }; 3732 + }; 3733 "detect-node-2.1.0" = { 3734 name = "detect-node"; 3735 packageName = "detect-node"; ··· 3748 sha512 = "5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q=="; 3749 }; 3750 }; 3751 + "diff-sequences-27.5.1" = { 3752 + name = "diff-sequences"; 3753 + packageName = "diff-sequences"; 3754 + version = "27.5.1"; 3755 + src = fetchurl { 3756 + url = "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz"; 3757 + sha512 = "k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ=="; 3758 + }; 3759 + }; 3760 "diffie-hellman-5.0.3" = { 3761 name = "diffie-hellman"; 3762 packageName = "diffie-hellman"; ··· 3865 sha512 = "DtBMo82pv1dFtUmHyr48beiuq792Sxohr+8Hm9zoxklYPfa6n0Z3Byjj2IV7bmr2IyqClnqEQhfgHJJ5QF0R5A=="; 3866 }; 3867 }; 3868 + "domhandler-4.3.1" = { 3869 name = "domhandler"; 3870 packageName = "domhandler"; 3871 + version = "4.3.1"; 3872 src = fetchurl { 3873 + url = "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz"; 3874 + sha512 = "GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ=="; 3875 }; 3876 }; 3877 "domutils-1.7.0" = { ··· 3964 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 3965 }; 3966 }; 3967 + "electron-to-chromium-1.4.103" = { 3968 name = "electron-to-chromium"; 3969 packageName = "electron-to-chromium"; 3970 + version = "1.4.103"; 3971 src = fetchurl { 3972 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.103.tgz"; 3973 + sha512 = "c/uKWR1Z/W30Wy/sx3dkZoj4BijbXX85QKWu9jJfjho3LBAXNEGAEW3oWiGb+dotA6C6BzCTxL2/aLes7jlUeg=="; 3974 }; 3975 }; 3976 "elliptic-6.5.4" = { ··· 4171 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4172 }; 4173 }; 4174 + "es-abstract-1.19.2" = { 4175 name = "es-abstract"; 4176 packageName = "es-abstract"; 4177 + version = "1.19.2"; 4178 src = fetchurl { 4179 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.2.tgz"; 4180 + sha512 = "gfSBJoZdlL2xRiOCy0g8gLMryhoe1TlimjzU99L/31Z8QEGIhVQI+EWwt5lT+AuU9SnorVupXFqqOGqGfsyO6w=="; 4181 }; 4182 }; 4183 "es-to-primitive-1.2.1" = { ··· 4405 sha1 = "6af8a502350db3246ecc4becf6b5a34d22f7ed53"; 4406 }; 4407 }; 4408 + "express-4.17.3" = { 4409 name = "express"; 4410 packageName = "express"; 4411 + version = "4.17.3"; 4412 src = fetchurl { 4413 + url = "https://registry.npmjs.org/express/-/express-4.17.3.tgz"; 4414 + sha512 = "yuSQpz5I+Ch7gFrPCk4/c+dIBKlQUxtgwqzph132bsT6qhuzss6I8cLJQz7B3rFblzd6wtcI0ZbGltH/C4LjUg=="; 4415 }; 4416 }; 4417 "express-ws-2.0.0" = { ··· 4522 sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw=="; 4523 }; 4524 }; 4525 + "fast-glob-3.2.11" = { 4526 name = "fast-glob"; 4527 packageName = "fast-glob"; 4528 + version = "3.2.11"; 4529 src = fetchurl { 4530 + url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz"; 4531 + sha512 = "xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew=="; 4532 }; 4533 }; 4534 "fast-json-stable-stringify-2.1.0" = { ··· 4819 sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 4820 }; 4821 }; 4822 + "follow-redirects-1.14.9" = { 4823 name = "follow-redirects"; 4824 packageName = "follow-redirects"; 4825 + version = "1.14.9"; 4826 src = fetchurl { 4827 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.14.9.tgz"; 4828 + sha512 = "MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w=="; 4829 }; 4830 }; 4831 "for-in-1.0.2" = { ··· 4864 sha512 = "buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="; 4865 }; 4866 }; 4867 + "fraction.js-4.2.0" = { 4868 name = "fraction.js"; 4869 packageName = "fraction.js"; 4870 + version = "4.2.0"; 4871 src = fetchurl { 4872 + url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz"; 4873 + sha512 = "MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA=="; 4874 }; 4875 }; 4876 "fragment-cache-0.2.1" = { ··· 5152 sha1 = "5eff8e3e684d569ae4cb2b1282604e8ba62149fa"; 5153 }; 5154 }; 5155 + "git-clone-able-0.1.2" = { 5156 + name = "git-clone-able"; 5157 + packageName = "git-clone-able"; 5158 + version = "0.1.2"; 5159 + src = fetchurl { 5160 + url = "https://registry.npmjs.org/git-clone-able/-/git-clone-able-0.1.2.tgz"; 5161 + sha1 = "13d4cced31fdcaa51db5027b3c90a8bdf867bccb"; 5162 + }; 5163 + }; 5164 "glob-7.1.4" = { 5165 name = "glob"; 5166 packageName = "glob"; ··· 5233 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 5234 }; 5235 }; 5236 + "globby-11.1.0" = { 5237 name = "globby"; 5238 packageName = "globby"; 5239 + version = "11.1.0"; 5240 src = fetchurl { 5241 + url = "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz"; 5242 + sha512 = "jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g=="; 5243 }; 5244 }; 5245 "globby-6.1.0" = { ··· 5287 sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q=="; 5288 }; 5289 }; 5290 + "graceful-fs-4.2.9" = { 5291 name = "graceful-fs"; 5292 packageName = "graceful-fs"; 5293 + version = "4.2.9"; 5294 src = fetchurl { 5295 + url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.9.tgz"; 5296 + sha512 = "NtNxqUcXgpW2iMrfqSfR73Glt39K+BLwWsPs94yR63v45T0Wbej7eRmL5cWfwEgqXnmjQp3zaJTshdRW/qC2ZQ=="; 5297 }; 5298 }; 5299 "gzip-size-5.0.0" = { ··· 5386 sha512 = "3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw=="; 5387 }; 5388 }; 5389 + "has-symbols-1.0.3" = { 5390 name = "has-symbols"; 5391 packageName = "has-symbols"; 5392 + version = "1.0.3"; 5393 src = fetchurl { 5394 + url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz"; 5395 + sha512 = "l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="; 5396 }; 5397 }; 5398 "has-to-string-tag-x-1.4.1" = { ··· 5638 sha512 = "Kpk9Sm7NmI+RHhnj6OIWDI1d6fIoFAtFt9RLaTMRlg/8w49juAStsrBgp0Dp4OdxdVbRIeKhtCUvoi/RuAhO4g=="; 5639 }; 5640 }; 5641 + "http-errors-2.0.0" = { 5642 + name = "http-errors"; 5643 + packageName = "http-errors"; 5644 + version = "2.0.0"; 5645 + src = fetchurl { 5646 + url = "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz"; 5647 + sha512 = "FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ=="; 5648 + }; 5649 + }; 5650 + "http-parser-js-0.5.6" = { 5651 name = "http-parser-js"; 5652 packageName = "http-parser-js"; 5653 + version = "0.5.6"; 5654 src = fetchurl { 5655 + url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz"; 5656 + sha512 = "vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA=="; 5657 }; 5658 }; 5659 "http-proxy-1.17.0" = { ··· 6088 sha1 = "cfff471aee4dd5c9e158598fbe12967b5cdad345"; 6089 }; 6090 }; 6091 + "is-core-module-2.8.1" = { 6092 name = "is-core-module"; 6093 packageName = "is-core-module"; 6094 + version = "2.8.1"; 6095 src = fetchurl { 6096 + url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.1.tgz"; 6097 + sha512 = "SdNCUs284hr40hFTFP6l0IfZ/RSrMXF3qgoRHd3/79unUTvrFO/JoXwkGm+5J/Oe3E/b5GsnG330uUNgRpu1PA=="; 6098 }; 6099 }; 6100 "is-data-descriptor-0.1.4" = { ··· 6214 sha512 = "zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg=="; 6215 }; 6216 }; 6217 "is-glob-3.1.0" = { 6218 name = "is-glob"; 6219 packageName = "is-glob"; ··· 6268 sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng=="; 6269 }; 6270 }; 6271 + "is-number-object-1.0.7" = { 6272 name = "is-number-object"; 6273 packageName = "is-number-object"; 6274 + version = "1.0.7"; 6275 src = fetchurl { 6276 + url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz"; 6277 + sha512 = "k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ=="; 6278 }; 6279 }; 6280 "is-obj-1.0.1" = { ··· 6385 sha512 = "F/pJIk8QD6OX5DNhRB7hWamLsUilmkDGho48KbgZ6xg/lmAZXHxzXQ91jzB3yRSw5kdQGGGc4yz8HYhTYIMWPg=="; 6386 }; 6387 }; 6388 + "is-shared-array-buffer-1.0.2" = { 6389 name = "is-shared-array-buffer"; 6390 packageName = "is-shared-array-buffer"; 6391 + version = "1.0.2"; 6392 src = fetchurl { 6393 + url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz"; 6394 + sha512 = "sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA=="; 6395 }; 6396 }; 6397 "is-stream-1.1.0" = { ··· 6547 sha512 = "1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w=="; 6548 }; 6549 }; 6550 + "jest-diff-27.5.1" = { 6551 + name = "jest-diff"; 6552 + packageName = "jest-diff"; 6553 + version = "27.5.1"; 6554 + src = fetchurl { 6555 + url = "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz"; 6556 + sha512 = "m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw=="; 6557 + }; 6558 + }; 6559 + "jest-get-type-27.5.1" = { 6560 + name = "jest-get-type"; 6561 + packageName = "jest-get-type"; 6562 + version = "27.5.1"; 6563 + src = fetchurl { 6564 + url = "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz"; 6565 + sha512 = "2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw=="; 6566 + }; 6567 + }; 6568 + "jest-matcher-utils-27.5.1" = { 6569 + name = "jest-matcher-utils"; 6570 + packageName = "jest-matcher-utils"; 6571 + version = "27.5.1"; 6572 + src = fetchurl { 6573 + url = "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz"; 6574 + sha512 = "z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw=="; 6575 + }; 6576 + }; 6577 "js-tokens-4.0.0" = { 6578 name = "js-tokens"; 6579 packageName = "js-tokens"; ··· 6673 sha512 = "xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="; 6674 }; 6675 }; 6676 + "json-schema-traverse-1.0.0" = { 6677 + name = "json-schema-traverse"; 6678 + packageName = "json-schema-traverse"; 6679 + version = "1.0.0"; 6680 + src = fetchurl { 6681 + url = "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz"; 6682 + sha512 = "NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug=="; 6683 + }; 6684 + }; 6685 "json-stable-stringify-1.0.1" = { 6686 name = "json-stable-stringify"; 6687 packageName = "json-stable-stringify"; ··· 6727 sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow=="; 6728 }; 6729 }; 6730 + "json5-2.2.1" = { 6731 name = "json5"; 6732 packageName = "json5"; 6733 + version = "2.2.1"; 6734 src = fetchurl { 6735 + url = "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz"; 6736 + sha512 = "1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA=="; 6737 }; 6738 }; 6739 "jsonfile-2.4.0" = { ··· 6790 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 6791 }; 6792 }; 6793 + "keyv-4.1.1" = { 6794 name = "keyv"; 6795 packageName = "keyv"; 6796 + version = "4.1.1"; 6797 src = fetchurl { 6798 + url = "https://registry.npmjs.org/keyv/-/keyv-4.1.1.tgz"; 6799 + sha512 = "tGv1yP6snQVDSM4X6yxrv2zzq/EvpW+oYiUz6aueW1u9CtS8RzUQYxxmFwgZlO2jSgCxQbchhxaqXXp2hnKGpQ=="; 6800 }; 6801 }; 6802 "killable-1.0.1" = { ··· 7033 sha512 = "stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ=="; 7034 }; 7035 }; 7036 + "lodash.truncate-4.4.2" = { 7037 + name = "lodash.truncate"; 7038 + packageName = "lodash.truncate"; 7039 + version = "4.4.2"; 7040 + src = fetchurl { 7041 + url = "https://registry.npmjs.org/lodash.truncate/-/lodash.truncate-4.4.2.tgz"; 7042 + sha1 = "5a350da0b1113b837ecfffd5812cbe58d6eae193"; 7043 + }; 7044 + }; 7045 "lodash.uniq-4.5.0" = { 7046 name = "lodash.uniq"; 7047 packageName = "lodash.uniq"; ··· 7276 sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg=="; 7277 }; 7278 }; 7279 + "micromatch-4.0.5" = { 7280 name = "micromatch"; 7281 packageName = "micromatch"; 7282 + version = "4.0.5"; 7283 src = fetchurl { 7284 + url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz"; 7285 + sha512 = "DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA=="; 7286 }; 7287 }; 7288 "miller-rabin-4.0.1" = { ··· 7330 sha512 = "USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg=="; 7331 }; 7332 }; 7333 + "mime-db-1.52.0" = { 7334 name = "mime-db"; 7335 packageName = "mime-db"; 7336 + version = "1.52.0"; 7337 src = fetchurl { 7338 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz"; 7339 + sha512 = "sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="; 7340 }; 7341 }; 7342 + "mime-types-2.1.35" = { 7343 name = "mime-types"; 7344 packageName = "mime-types"; 7345 + version = "2.1.35"; 7346 src = fetchurl { 7347 + url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz"; 7348 + sha512 = "ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw=="; 7349 }; 7350 }; 7351 "mimic-fn-1.2.0" = { ··· 7420 sha512 = "yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA=="; 7421 }; 7422 }; 7423 + "minimatch-3.0.8" = { 7424 + name = "minimatch"; 7425 + packageName = "minimatch"; 7426 + version = "3.0.8"; 7427 + src = fetchurl { 7428 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz"; 7429 + sha512 = "6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q=="; 7430 + }; 7431 + }; 7432 + "minimatch-3.1.2" = { 7433 + name = "minimatch"; 7434 + packageName = "minimatch"; 7435 + version = "3.1.2"; 7436 + src = fetchurl { 7437 + url = "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz"; 7438 + sha512 = "J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw=="; 7439 + }; 7440 + }; 7441 "minimist-1.2.0" = { 7442 name = "minimist"; 7443 packageName = "minimist"; ··· 7454 src = fetchurl { 7455 url = "https://registry.npmjs.org/minimist/-/minimist-1.2.5.tgz"; 7456 sha512 = "FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw=="; 7457 + }; 7458 + }; 7459 + "minimist-1.2.6" = { 7460 + name = "minimist"; 7461 + packageName = "minimist"; 7462 + version = "1.2.6"; 7463 + src = fetchurl { 7464 + url = "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz"; 7465 + sha512 = "Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q=="; 7466 }; 7467 }; 7468 "minipass-2.9.0" = { ··· 7537 sha512 = "P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg=="; 7538 }; 7539 }; 7540 + "mkdirp-0.5.6" = { 7541 name = "mkdirp"; 7542 packageName = "mkdirp"; 7543 + version = "0.5.6"; 7544 src = fetchurl { 7545 + url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz"; 7546 + sha512 = "FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw=="; 7547 }; 7548 }; 7549 "mkdirp-1.0.4" = { ··· 7672 sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="; 7673 }; 7674 }; 7675 + "nanoid-3.3.2" = { 7676 name = "nanoid"; 7677 packageName = "nanoid"; 7678 + version = "3.3.2"; 7679 src = fetchurl { 7680 + url = "https://registry.npmjs.org/nanoid/-/nanoid-3.3.2.tgz"; 7681 + sha512 = "CuHBogktKwpm5g2sRgv83jEy2ijFzBwMoYA60orPDR7ynsLijJDqgsi4RDGj3OJpy3Ieb+LYwiRmIOGyytgITA=="; 7682 }; 7683 }; 7684 "nanomatch-1.2.13" = { ··· 7699 sha1 = "d15367e5cb87432ba117d2bf80fdf45aecfb4246"; 7700 }; 7701 }; 7702 + "negotiator-0.6.3" = { 7703 name = "negotiator"; 7704 packageName = "negotiator"; 7705 + version = "0.6.3"; 7706 src = fetchurl { 7707 + url = "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz"; 7708 + sha512 = "+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="; 7709 }; 7710 }; 7711 "neo-async-2.6.2" = { ··· 7780 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 7781 }; 7782 }; 7783 + "node-releases-2.0.2" = { 7784 name = "node-releases"; 7785 packageName = "node-releases"; 7786 + version = "2.0.2"; 7787 src = fetchurl { 7788 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.2.tgz"; 7789 + sha512 = "XxYDdcQ6eKqp/YjI+tb2C5WM2LgjnZrfYg4vgQt49EK268b6gYCHsBLrK2qvJo4FmCtqmKezb0WZFK4fkrZNsg=="; 7790 }; 7791 }; 7792 "node-watch-0.5.5" = { ··· 8059 sha1 = "20f1336481b083cd75337992a16971aa2d906947"; 8060 }; 8061 }; 8062 + "on-finished-2.4.1" = { 8063 + name = "on-finished"; 8064 + packageName = "on-finished"; 8065 + version = "2.4.1"; 8066 + src = fetchurl { 8067 + url = "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz"; 8068 + sha512 = "oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg=="; 8069 + }; 8070 + }; 8071 "on-headers-1.0.2" = { 8072 name = "on-headers"; 8073 packageName = "on-headers"; ··· 8626 sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ=="; 8627 }; 8628 }; 8629 + "picomatch-2.3.1" = { 8630 name = "picomatch"; 8631 packageName = "picomatch"; 8632 + version = "2.3.1"; 8633 src = fetchurl { 8634 + url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz"; 8635 + sha512 = "JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA=="; 8636 }; 8637 }; 8638 "pify-2.3.0" = { ··· 8770 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 8771 }; 8772 }; 8773 + "postcss-8.4.12" = { 8774 name = "postcss"; 8775 packageName = "postcss"; 8776 + version = "8.4.12"; 8777 src = fetchurl { 8778 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.12.tgz"; 8779 + sha512 = "lg6eITwYe9v6Hr5CncVbK70SoioNQIq81nsaG86ev5hAidQvmOeETBqs7jm43K2F5/Ley3ytDtriImV6TpNiSg=="; 8780 }; 8781 }; 8782 "postcss-calc-7.0.5" = { ··· 9076 sha512 = "h7fJ/5uWuRVyOtkO45pnt1Ih40CEleeyCHzipqAZO2e5H20g25Y48uYnFUiShvY4rZWNJ/Bib/KVPmanaCtOhA=="; 9077 }; 9078 }; 9079 + "postcss-selector-parser-6.0.10" = { 9080 name = "postcss-selector-parser"; 9081 packageName = "postcss-selector-parser"; 9082 + version = "6.0.10"; 9083 src = fetchurl { 9084 + url = "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"; 9085 + sha512 = "IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w=="; 9086 }; 9087 }; 9088 "postcss-svgo-4.0.3" = { ··· 9157 sha512 = "EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw=="; 9158 }; 9159 }; 9160 + "pretty-format-27.5.1" = { 9161 + name = "pretty-format"; 9162 + packageName = "pretty-format"; 9163 + version = "27.5.1"; 9164 + src = fetchurl { 9165 + url = "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz"; 9166 + sha512 = "Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ=="; 9167 + }; 9168 + }; 9169 "process-0.11.10" = { 9170 name = "process"; 9171 packageName = "process"; ··· 9355 sha512 = "eRzhrN1WSINYCDCbrz796z37LOe3m5tmW7RQf6oBntukAG1nmovJvhnwHHRMAfeoItc1m2Hk02WER2aQ/iqs+A=="; 9356 }; 9357 }; 9358 + "qs-6.5.3" = { 9359 name = "qs"; 9360 packageName = "qs"; 9361 + version = "6.5.3"; 9362 src = fetchurl { 9363 + url = "https://registry.npmjs.org/qs/-/qs-6.5.3.tgz"; 9364 + sha512 = "qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA=="; 9365 }; 9366 }; 9367 "qs-6.7.0" = { ··· 9373 sha512 = "VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ=="; 9374 }; 9375 }; 9376 + "qs-6.9.7" = { 9377 name = "qs"; 9378 packageName = "qs"; 9379 + version = "6.9.7"; 9380 src = fetchurl { 9381 + url = "https://registry.npmjs.org/qs/-/qs-6.9.7.tgz"; 9382 + sha512 = "IhMFgUmuNpyRfxA90umL7ByLlgRXu6tIfKPpF5TmcfRLlLCckfP/g3IQmju6jjpu+Hh8rA+2p6A27ZSPOOHdKw=="; 9383 }; 9384 }; 9385 "query-string-4.3.4" = { ··· 9472 sha512 = "4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q=="; 9473 }; 9474 }; 9475 + "raw-body-2.4.3" = { 9476 name = "raw-body"; 9477 packageName = "raw-body"; 9478 + version = "2.4.3"; 9479 src = fetchurl { 9480 + url = "https://registry.npmjs.org/raw-body/-/raw-body-2.4.3.tgz"; 9481 + sha512 = "UlTNLIcu0uzb4D2f4WltY6cVjLi+/jEN4lgEUj3E04tpMDpUlkBo/eSn6zou9hum2VMNpCCUone0O0WeJim07g=="; 9482 }; 9483 }; 9484 "rc-1.2.8" = { ··· 9517 sha512 = "X1Y+0jR47ImDVr54Ab6V9eGk0Hnu7fVWGeHQSOXHf/C2pF9c6uy3gef8QUeuUiWlNb0i08InPSE5a/KJzNzw1Q=="; 9518 }; 9519 }; 9520 + "react-is-17.0.2" = { 9521 + name = "react-is"; 9522 + packageName = "react-is"; 9523 + version = "17.0.2"; 9524 + src = fetchurl { 9525 + url = "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz"; 9526 + sha512 = "w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w=="; 9527 + }; 9528 + }; 9529 "read-1.0.7" = { 9530 name = "read"; 9531 packageName = "read"; ··· 9634 sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A=="; 9635 }; 9636 }; 9637 + "regenerate-unicode-properties-10.0.1" = { 9638 name = "regenerate-unicode-properties"; 9639 packageName = "regenerate-unicode-properties"; 9640 + version = "10.0.1"; 9641 src = fetchurl { 9642 + url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.0.1.tgz"; 9643 + sha512 = "vn5DU6yg6h8hP/2OkQo3K7uVILvY4iu0oI4t3HFa81UPkhGJwkRwM10JEc3upjdhHjs/k8GJY1sRBhk5sr69Bw=="; 9644 }; 9645 }; 9646 "regenerator-runtime-0.11.1" = { ··· 9688 sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A=="; 9689 }; 9690 }; 9691 + "regexp.prototype.flags-1.4.1" = { 9692 name = "regexp.prototype.flags"; 9693 packageName = "regexp.prototype.flags"; 9694 + version = "1.4.1"; 9695 src = fetchurl { 9696 + url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.1.tgz"; 9697 + sha512 = "pMR7hBVUUGI7PMA37m2ofIdQCsomVnas+Jn5UPGAHQ+/LlwKm/aTLJHdasmHRzlfeZwHiAOaRSo2rbBDm3nNUQ=="; 9698 }; 9699 }; 9700 + "regexpu-core-5.0.1" = { 9701 name = "regexpu-core"; 9702 packageName = "regexpu-core"; 9703 + version = "5.0.1"; 9704 src = fetchurl { 9705 + url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.0.1.tgz"; 9706 + sha512 = "CriEZlrKK9VJw/xQGJpQM5rY88BtuL8DM+AEwvcThHilbxiTAy8vq4iJnd2tqq8wLmjbGZzP7ZcKFjbGkmEFrw=="; 9707 }; 9708 }; 9709 "registry-auth-token-4.2.1" = { ··· 9724 sha512 = "8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw=="; 9725 }; 9726 }; 9727 + "regjsgen-0.6.0" = { 9728 name = "regjsgen"; 9729 packageName = "regjsgen"; 9730 + version = "0.6.0"; 9731 src = fetchurl { 9732 + url = "https://registry.npmjs.org/regjsgen/-/regjsgen-0.6.0.tgz"; 9733 + sha512 = "ozE883Uigtqj3bx7OhL1KNbCzGyW2NQZPl6Hs09WTvCuZD5sTI4JY58bkbQWa/Y9hxIsvJ3M8Nbf7j54IqeZbA=="; 9734 }; 9735 }; 9736 + "regjsparser-0.8.4" = { 9737 name = "regjsparser"; 9738 packageName = "regjsparser"; 9739 + version = "0.8.4"; 9740 src = fetchurl { 9741 + url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.8.4.tgz"; 9742 + sha512 = "J3LABycON/VNEu3abOviqGHuB/LOtOQj8SKmfP9anY5GfAVw/SPjwzSjxGjbZXIxbGfqTHtJw58C2Li/WkStmA=="; 9743 }; 9744 }; 9745 "relateurl-0.2.7" = { ··· 9832 sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42"; 9833 }; 9834 }; 9835 + "require-from-string-2.0.2" = { 9836 + name = "require-from-string"; 9837 + packageName = "require-from-string"; 9838 + version = "2.0.2"; 9839 + src = fetchurl { 9840 + url = "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz"; 9841 + sha512 = "Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw=="; 9842 + }; 9843 + }; 9844 "require-main-filename-1.0.1" = { 9845 name = "require-main-filename"; 9846 packageName = "require-main-filename"; ··· 9868 sha1 = "925d2601d39ac485e091cf0da5c6e694dc3dcaff"; 9869 }; 9870 }; 9871 + "resolve-1.22.0" = { 9872 name = "resolve"; 9873 packageName = "resolve"; 9874 + version = "1.22.0"; 9875 src = fetchurl { 9876 + url = "https://registry.npmjs.org/resolve/-/resolve-1.22.0.tgz"; 9877 + sha512 = "Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw=="; 9878 }; 9879 }; 9880 "resolve-cwd-2.0.0" = { ··· 10192 sha1 = "625d8658f865af43ec962bfc376a37359a4994ca"; 10193 }; 10194 }; 10195 + "selfsigned-1.10.14" = { 10196 name = "selfsigned"; 10197 packageName = "selfsigned"; 10198 + version = "1.10.14"; 10199 src = fetchurl { 10200 + url = "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.14.tgz"; 10201 + sha512 = "lkjaiAye+wBZDCBsu5BGi0XiLRxeUlsGod5ZP924CRSEoGuZAw/f7y9RKu28rwTfiHVhdavhB0qH0INV6P1lEA=="; 10202 }; 10203 }; 10204 "semver-5.7.1" = { ··· 10237 sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ=="; 10238 }; 10239 }; 10240 + "semver-regex-3.1.3" = { 10241 name = "semver-regex"; 10242 packageName = "semver-regex"; 10243 + version = "3.1.3"; 10244 src = fetchurl { 10245 + url = "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.3.tgz"; 10246 + sha512 = "Aqi54Mk9uYTjVexLnR67rTyBusmwd04cLkHy9hNvk3+G3nT2Oyg7E0l4XVbOaNwIvQ3hHeYxGcyEy+mKreyBFQ=="; 10247 }; 10248 }; 10249 + "semver-sort-1.0.0" = { 10250 name = "semver-sort"; 10251 packageName = "semver-sort"; 10252 + version = "1.0.0"; 10253 src = fetchurl { 10254 + url = "https://registry.npmjs.org/semver-sort/-/semver-sort-1.0.0.tgz"; 10255 + sha512 = "JicVlQKz/C//4BiPmbHEDou6HihXxo5xqB/8Hm9FaLJ6HHkRRvYgCECq4u/z0XF8kyJQ/KAZt++A/kYz/oOSSg=="; 10256 }; 10257 }; 10258 "send-0.16.2" = { ··· 10282 sha512 = "UJYB6wFSJE3G00nEivR5rgWp8c2xXvJ3OPWPhmuteU0IKj8nKbG3DrjiOmLwpnHGYWAVwA69zmTm++YG0Hmwww=="; 10283 }; 10284 }; 10285 + "send-0.18.0" = { 10286 + name = "send"; 10287 + packageName = "send"; 10288 + version = "0.18.0"; 10289 + src = fetchurl { 10290 + url = "https://registry.npmjs.org/send/-/send-0.18.0.tgz"; 10291 + sha512 = "qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg=="; 10292 + }; 10293 + }; 10294 "serialize-javascript-1.9.1" = { 10295 name = "serialize-javascript"; 10296 packageName = "serialize-javascript"; ··· 10343 src = fetchurl { 10344 url = "https://registry.npmjs.org/serve-static/-/serve-static-1.14.2.tgz"; 10345 sha512 = "+TMNA9AFxUEGuC0z2mevogSnn9MXKb4fa7ngeRMJaaGv8vTwnIEkKi+QGvPt33HSnf8pRS+WGM0EbMtCJLKMBQ=="; 10346 + }; 10347 + }; 10348 + "serve-static-1.15.0" = { 10349 + name = "serve-static"; 10350 + packageName = "serve-static"; 10351 + version = "1.15.0"; 10352 + src = fetchurl { 10353 + url = "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz"; 10354 + sha512 = "XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g=="; 10355 }; 10356 }; 10357 "set-blocking-2.0.0" = { ··· 10480 sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw=="; 10481 }; 10482 }; 10483 + "signal-exit-3.0.7" = { 10484 name = "signal-exit"; 10485 packageName = "signal-exit"; 10486 + version = "3.0.7"; 10487 src = fetchurl { 10488 + url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz"; 10489 + sha512 = "wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ=="; 10490 }; 10491 }; 10492 + "simple-git-3.5.0" = { 10493 name = "simple-git"; 10494 packageName = "simple-git"; 10495 + version = "3.5.0"; 10496 src = fetchurl { 10497 + url = "https://registry.npmjs.org/simple-git/-/simple-git-3.5.0.tgz"; 10498 + sha512 = "fZsaq5nzdxQRhMNs6ESGLpMUHoL5GRP+boWPhq9pMYMKwOGZV2jHOxi8AbFFA2Y/6u4kR99HoULizSbpzaODkA=="; 10499 }; 10500 }; 10501 "simple-swizzle-0.2.2" = { ··· 10543 sha512 = "g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q=="; 10544 }; 10545 }; 10546 + "slice-ansi-4.0.0" = { 10547 name = "slice-ansi"; 10548 packageName = "slice-ansi"; 10549 + version = "4.0.0"; 10550 src = fetchurl { 10551 + url = "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz"; 10552 + sha512 = "qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ=="; 10553 }; 10554 }; 10555 "snapdragon-0.8.2" = { ··· 10651 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 10652 }; 10653 }; 10654 + "source-map-js-1.0.2" = { 10655 name = "source-map-js"; 10656 packageName = "source-map-js"; 10657 + version = "1.0.2"; 10658 src = fetchurl { 10659 + url = "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz"; 10660 + sha512 = "R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw=="; 10661 }; 10662 }; 10663 "source-map-resolve-0.5.3" = { ··· 10768 sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 10769 }; 10770 }; 10771 + "sshpk-1.17.0" = { 10772 name = "sshpk"; 10773 packageName = "sshpk"; 10774 + version = "1.17.0"; 10775 src = fetchurl { 10776 + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.17.0.tgz"; 10777 + sha512 = "/9HIEs1ZXGhSPE8X6Ccm7Nam1z8KcoCqPdI7ecm1N33EzAetWahvQWVqLZtaZQ+IDKX4IyA2o0gBzqIMkAagHQ=="; 10778 }; 10779 }; 10780 "ssri-5.3.0" = { ··· 10838 src = fetchurl { 10839 url = "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz"; 10840 sha1 = "161c7dac177659fd9811f43771fa99381478628c"; 10841 + }; 10842 + }; 10843 + "statuses-2.0.1" = { 10844 + name = "statuses"; 10845 + packageName = "statuses"; 10846 + version = "2.0.1"; 10847 + src = fetchurl { 10848 + url = "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz"; 10849 + sha512 = "RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="; 10850 }; 10851 }; 10852 "stealthy-require-1.1.1" = { ··· 11173 sha512 = "6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ=="; 11174 }; 11175 }; 11176 + "supports-preserve-symlinks-flag-1.0.0" = { 11177 + name = "supports-preserve-symlinks-flag"; 11178 + packageName = "supports-preserve-symlinks-flag"; 11179 + version = "1.0.0"; 11180 + src = fetchurl { 11181 + url = "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz"; 11182 + sha512 = "ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w=="; 11183 + }; 11184 + }; 11185 "svgo-1.3.2" = { 11186 name = "svgo"; 11187 packageName = "svgo"; ··· 11191 sha512 = "yhy/sQYxR5BkC98CY7o31VGsg014AKLEPxdfhora76l36hD9Rdy5NZA/Ocn6yayNPgSamYdtX2rFJdcv07AYVw=="; 11192 }; 11193 }; 11194 + "table-6.8.0" = { 11195 name = "table"; 11196 packageName = "table"; 11197 + version = "6.8.0"; 11198 src = fetchurl { 11199 + url = "https://registry.npmjs.org/table/-/table-6.8.0.tgz"; 11200 + sha512 = "s/fitrbVeEyHKFa7mFdkuQMWlH1Wgw/yEXMt5xACT4ZpzWFluehAxRtUUQKPuWhaLAWhFcVx6w3oC8VKaUfPGA=="; 11201 }; 11202 }; 11203 "tapable-1.1.3" = { ··· 11497 sha1 = "61dbc2d53b69ff6091a12a168fd7d433107e40f1"; 11498 }; 11499 }; 11500 + "ts-debounce-4.0.0" = { 11501 name = "ts-debounce"; 11502 packageName = "ts-debounce"; 11503 + version = "4.0.0"; 11504 src = fetchurl { 11505 + url = "https://registry.npmjs.org/ts-debounce/-/ts-debounce-4.0.0.tgz"; 11506 + sha512 = "+1iDGY6NmOGidq7i7xZGA4cm8DAa6fqdYcvO5Z6yBevH++Bdo9Qt/mN0TzHUgcCcKv1gmh9+W5dHqz8pMWbCbg=="; 11507 }; 11508 }; 11509 "ts-union-2.3.0" = { ··· 11605 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 11606 }; 11607 }; 11608 + "typescript-4.6.3" = { 11609 name = "typescript"; 11610 packageName = "typescript"; 11611 + version = "4.6.3"; 11612 src = fetchurl { 11613 + url = "https://registry.npmjs.org/typescript/-/typescript-4.6.3.tgz"; 11614 + sha512 = "yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw=="; 11615 }; 11616 }; 11617 "uglify-es-3.3.10" = { ··· 11803 sha512 = "aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg=="; 11804 }; 11805 }; 11806 + "upath-2.0.1" = { 11807 + name = "upath"; 11808 + packageName = "upath"; 11809 + version = "2.0.1"; 11810 + src = fetchurl { 11811 + url = "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz"; 11812 + sha512 = "1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w=="; 11813 + }; 11814 + }; 11815 "upgrade-1.1.0" = { 11816 name = "upgrade"; 11817 packageName = "upgrade"; ··· 11857 sha512 = "3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA=="; 11858 }; 11859 }; 11860 + "url-parse-1.5.10" = { 11861 name = "url-parse"; 11862 packageName = "url-parse"; 11863 + version = "1.5.10"; 11864 src = fetchurl { 11865 + url = "https://registry.npmjs.org/url-parse/-/url-parse-1.5.10.tgz"; 11866 + sha512 = "WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ=="; 11867 }; 11868 }; 11869 "url-parse-lax-3.0.0" = { ··· 12037 sha512 = "sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A=="; 12038 }; 12039 }; 12040 + "vscode-languageserver-textdocument-1.0.4" = { 12041 name = "vscode-languageserver-textdocument"; 12042 packageName = "vscode-languageserver-textdocument"; 12043 + version = "1.0.4"; 12044 src = fetchurl { 12045 + url = "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.4.tgz"; 12046 + sha512 = "/xhqXP/2A2RSs+J8JNXpiiNVvvNM0oTosNVmQnunlKvq9o4mupHOBAnnzH0lwIPKazXKvAKsVp1kr+H/K4lgoQ=="; 12047 }; 12048 }; 12049 "vscode-languageserver-types-3.16.0" = { ··· 12100 sha1 = "f0b0dcf915bc5ff1528afadb2c0e17b532da2fe8"; 12101 }; 12102 }; 12103 + "web-tree-sitter-0.20.5" = { 12104 name = "web-tree-sitter"; 12105 packageName = "web-tree-sitter"; 12106 + version = "0.20.5"; 12107 src = fetchurl { 12108 + url = "https://registry.npmjs.org/web-tree-sitter/-/web-tree-sitter-0.20.5.tgz"; 12109 + sha512 = "mpXlqIeEBE5Q71cnBnt8w6XKhIiKmllPECqsIFBtMvzcfCxA8+614iyMJXBCQo95Vs3y1zORLqiLJn25pYZ4Tw=="; 12110 }; 12111 }; 12112 "webpack-4.44.2" = { ··· 12496 sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A=="; 12497 }; 12498 }; 12499 + "ws-7.5.7" = { 12500 name = "ws"; 12501 packageName = "ws"; 12502 + version = "7.5.7"; 12503 src = fetchurl { 12504 + url = "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz"; 12505 + sha512 = "KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A=="; 12506 }; 12507 }; 12508 "xmlbuilder-13.0.2" = { ··· 12661 sha512 = "I7dgGFOc+mYDcDuyo1/HcIn3E5MiMbocStNzivsPSjCUviuEieHdDKZmJJ9uM3IdCu0fdBmRNWQBSOXtXrgzKg=="; 12662 }; 12663 dependencies = [ 12664 + sources."accepts-1.3.8" 12665 sources."ajv-6.12.6" 12666 sources."array-flatten-1.1.1" 12667 sources."asn1-0.2.6" ··· 12732 sources."fresh-0.5.2" 12733 sources."fs-extra-2.0.0" 12734 sources."getpass-0.1.7" 12735 + sources."graceful-fs-4.2.9" 12736 sources."har-schema-2.0.0" 12737 sources."har-validator-5.1.5" 12738 sources."http-errors-1.7.2" ··· 12756 sources."merge-descriptors-1.0.1" 12757 sources."methods-1.1.2" 12758 sources."mime-1.4.1" 12759 + sources."mime-db-1.52.0" 12760 + sources."mime-types-2.1.35" 12761 sources."minimist-1.2.0" 12762 sources."ms-2.0.0" 12763 + sources."negotiator-0.6.3" 12764 sources."node-watch-0.5.5" 12765 sources."oauth-sign-0.9.0" 12766 sources."on-finished-2.3.0" ··· 12782 sources."regenerator-runtime-0.9.6" 12783 (sources."request-2.88.0" // { 12784 dependencies = [ 12785 + sources."qs-6.5.3" 12786 sources."safe-buffer-5.2.1" 12787 ]; 12788 }) ··· 12797 }) 12798 sources."serve-static-1.13.2" 12799 sources."setprototypeof-1.1.1" 12800 + sources."sshpk-1.17.0" 12801 sources."statuses-1.5.0" 12802 sources."string_decoder-0.10.31" 12803 sources."sums-0.2.4" ··· 12841 elm-coverage = nodeEnv.buildNodePackage { 12842 name = "elm-coverage"; 12843 packageName = "elm-coverage"; 12844 + version = "0.4.1"; 12845 src = fetchurl { 12846 + url = "https://registry.npmjs.org/elm-coverage/-/elm-coverage-0.4.1.tgz"; 12847 + sha512 = "flFXaCikbA6NccBEvrFIgJj9up7rc9A8aOwe0o0Erruvk5f5idWu3/gIBfqTaos7Xc2Fz6fshYyoH5sfyt1r7g=="; 12848 }; 12849 dependencies = [ 12850 sources."abbrev-1.1.1" 12851 sources."ajv-6.12.6" 12852 + sources."ansi-regex-5.0.1" 12853 sources."ansi-styles-3.2.1" 12854 sources."anymatch-3.1.2" 12855 sources."asn1-0.2.6" 12856 sources."assert-plus-1.0.0" 12857 + sources."astral-regex-2.0.0" 12858 sources."asynckit-0.4.0" 12859 sources."aws-sign2-0.7.0" 12860 sources."aws4-1.11.0" ··· 12877 }) 12878 sources."chokidar-3.2.1" 12879 sources."chownr-2.0.0" 12880 + sources."cliui-6.0.0" 12881 sources."color-convert-1.9.3" 12882 sources."color-name-1.1.3" 12883 sources."combined-stream-1.0.8" ··· 12908 sources."fs-minipass-1.2.7" 12909 sources."minipass-2.9.0" 12910 sources."minizlib-1.3.3" 12911 + sources."mkdirp-0.5.6" 12912 sources."tar-4.4.19" 12913 sources."yallist-3.1.1" 12914 ]; 12915 }) 12916 + sources."emoji-regex-8.0.0" 12917 sources."escape-string-regexp-1.0.5" 12918 sources."extend-3.0.2" 12919 sources."extsprintf-1.3.0" ··· 12940 sources."getpass-0.1.7" 12941 sources."glob-7.1.4" 12942 sources."glob-parent-5.1.2" 12943 + sources."graceful-fs-4.2.9" 12944 sources."har-schema-2.0.0" 12945 sources."har-validator-5.1.5" 12946 sources."has-flag-3.0.0" ··· 12949 sources."inherits-2.0.4" 12950 sources."is-binary-path-2.1.0" 12951 sources."is-extglob-2.1.1" 12952 + sources."is-fullwidth-code-point-3.0.0" 12953 sources."is-glob-4.0.3" 12954 sources."is-number-7.0.0" 12955 sources."is-typedarray-1.0.0" ··· 12964 sources."jsprim-1.4.2" 12965 sources."locate-path-5.0.0" 12966 sources."lodash-4.17.21" 12967 + sources."lodash.truncate-4.4.2" 12968 (sources."lru-cache-4.1.5" // { 12969 dependencies = [ 12970 sources."yallist-2.1.2" 12971 ]; 12972 }) 12973 + sources."mime-db-1.52.0" 12974 + sources."mime-types-2.1.35" 12975 + sources."minimatch-3.1.2" 12976 + sources."minimist-1.2.6" 12977 sources."minipass-3.1.6" 12978 sources."minizlib-2.1.2" 12979 sources."mkdirp-1.0.4" ··· 13001 sources."path-is-absolute-1.0.1" 13002 sources."path-key-3.1.1" 13003 sources."performance-now-2.1.0" 13004 + sources."picomatch-2.3.1" 13005 sources."pseudomap-1.0.2" 13006 sources."psl-1.8.0" 13007 sources."punycode-2.1.1" 13008 + sources."qs-6.5.3" 13009 sources."readdirp-3.1.3" 13010 sources."request-2.88.2" 13011 sources."request-promise-4.2.6" 13012 sources."request-promise-core-1.1.4" 13013 sources."require-directory-2.1.1" 13014 + sources."require-from-string-2.0.2" 13015 sources."require-main-filename-2.0.0" 13016 sources."rimraf-2.6.3" 13017 sources."safe-buffer-5.2.1" ··· 13020 sources."set-blocking-2.0.0" 13021 sources."shebang-command-1.2.0" 13022 sources."shebang-regex-1.0.0" 13023 + (sources."slice-ansi-4.0.0" // { 13024 + dependencies = [ 13025 + sources."ansi-styles-4.3.0" 13026 + sources."color-convert-2.0.1" 13027 + sources."color-name-1.1.4" 13028 + ]; 13029 + }) 13030 sources."split-1.0.1" 13031 + sources."sshpk-1.17.0" 13032 sources."stealthy-require-1.1.1" 13033 + sources."string-width-4.2.3" 13034 + sources."strip-ansi-6.0.1" 13035 (sources."supports-color-7.1.0" // { 13036 dependencies = [ 13037 sources."has-flag-4.0.0" 13038 ]; 13039 }) 13040 + (sources."table-6.8.0" // { 13041 + dependencies = [ 13042 + sources."ajv-8.11.0" 13043 + sources."json-schema-traverse-1.0.0" 13044 + ]; 13045 + }) 13046 sources."tar-6.1.11" 13047 sources."temp-0.9.0" 13048 sources."through-2.3.8" ··· 13057 sources."universalify-0.1.2" 13058 (sources."unzip-stream-0.3.1" // { 13059 dependencies = [ 13060 + sources."mkdirp-0.5.6" 13061 ]; 13062 }) 13063 sources."upgrade-1.1.0" ··· 13068 sources."which-module-2.0.0" 13069 (sources."wrap-ansi-6.2.0" // { 13070 dependencies = [ 13071 sources."ansi-styles-4.3.0" 13072 sources."color-convert-2.0.1" 13073 sources."color-name-1.1.4" 13074 ]; 13075 }) 13076 sources."wrappy-1.0.2" 13077 sources."xmlbuilder-13.0.2" 13078 sources."y18n-4.0.3" 13079 sources."yallist-4.0.0" 13080 + sources."yargs-15.4.1" 13081 sources."yargs-parser-18.1.3" 13082 ]; 13083 buildInputs = globalBuildInputs; ··· 13101 dependencies = [ 13102 sources."@sindresorhus/is-0.14.0" 13103 sources."@szmarczak/http-timer-1.1.2" 13104 + sources."accepts-1.3.8" 13105 sources."ansi-styles-4.3.0" 13106 sources."anymatch-3.1.2" 13107 sources."array-flatten-1.1.1" ··· 13109 sources."balanced-match-1.0.2" 13110 sources."batch-0.6.1" 13111 sources."binary-extensions-2.2.0" 13112 + sources."body-parser-1.19.2" 13113 sources."brace-expansion-1.1.11" 13114 sources."braces-3.0.2" 13115 + sources."bytes-3.1.2" 13116 (sources."cacheable-request-6.1.0" // { 13117 dependencies = [ 13118 sources."get-stream-5.2.0" ··· 13120 ]; 13121 }) 13122 sources."chalk-3.0.0" 13123 + sources."chokidar-3.5.3" 13124 sources."clone-response-1.0.2" 13125 sources."color-convert-2.0.1" 13126 sources."color-name-1.1.4" ··· 13128 sources."concat-map-0.0.1" 13129 sources."content-disposition-0.5.4" 13130 sources."content-type-1.0.4" 13131 + sources."cookie-0.4.2" 13132 sources."cookie-signature-1.0.6" 13133 sources."cross-spawn-7.0.3" 13134 sources."debug-2.6.9" ··· 13143 sources."end-of-stream-1.4.4" 13144 sources."escape-html-1.0.3" 13145 sources."etag-1.8.1" 13146 + (sources."express-4.17.3" // { 13147 + dependencies = [ 13148 + sources."serve-static-1.14.2" 13149 + ]; 13150 + }) 13151 (sources."express-ws-4.0.0" // { 13152 dependencies = [ 13153 sources."ws-5.2.3" ··· 13186 sources."merge-descriptors-1.0.1" 13187 sources."methods-1.1.2" 13188 sources."mime-1.6.0" 13189 + sources."mime-db-1.52.0" 13190 + sources."mime-types-2.1.35" 13191 sources."mimic-response-1.0.1" 13192 + sources."minimatch-3.1.2" 13193 + sources."minimist-1.2.6" 13194 sources."ms-2.0.0" 13195 + sources."negotiator-0.6.3" 13196 sources."normalize-path-3.0.0" 13197 sources."normalize-url-4.5.1" 13198 sources."on-finished-2.3.0" ··· 13204 sources."path-is-absolute-1.0.1" 13205 sources."path-key-3.1.1" 13206 sources."path-to-regexp-0.1.7" 13207 + sources."picomatch-2.3.1" 13208 sources."prepend-http-2.0.0" 13209 sources."proxy-addr-2.0.7" 13210 sources."pump-3.0.0" 13211 + sources."qs-6.9.7" 13212 sources."range-parser-1.2.1" 13213 + sources."raw-body-2.4.3" 13214 sources."rc-1.2.8" 13215 sources."readdirp-3.6.0" 13216 sources."registry-auth-token-4.2.1" ··· 13232 sources."setprototypeof-1.1.0" 13233 ]; 13234 }) 13235 + (sources."serve-static-1.15.0" // { 13236 + dependencies = [ 13237 + sources."depd-2.0.0" 13238 + sources."destroy-1.2.0" 13239 + sources."http-errors-2.0.0" 13240 + sources."ms-2.1.3" 13241 + sources."on-finished-2.4.1" 13242 + sources."send-0.18.0" 13243 + sources."statuses-2.0.1" 13244 + ]; 13245 + }) 13246 sources."setprototypeof-1.2.0" 13247 sources."shebang-command-2.0.0" 13248 sources."shebang-regex-3.0.0" ··· 13260 sources."vary-1.1.2" 13261 sources."which-2.0.2" 13262 sources."wrappy-1.0.2" 13263 + sources."ws-7.5.7" 13264 ]; 13265 buildInputs = globalBuildInputs; 13266 meta = { ··· 13275 "@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage { 13276 name = "_at_elm-tooling_slash_elm-language-server"; 13277 packageName = "@elm-tooling/elm-language-server"; 13278 + version = "2.4.1"; 13279 src = fetchurl { 13280 + url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-2.4.1.tgz"; 13281 + sha512 = "v8WU/LOrksaR1IO3WkcH5KCfS1ExDDNSE8Aqz/SYMlkZ4RF2aU418Pm54ppdiVX5AOTgHjc6U6mp5LXZocoEqw=="; 13282 }; 13283 dependencies = [ 13284 sources."@nodelib/fs.scandir-2.1.5" ··· 13288 sources."array-union-2.1.0" 13289 sources."binary-extensions-2.2.0" 13290 sources."braces-3.0.2" 13291 + sources."chokidar-3.5.3" 13292 sources."cross-spawn-7.0.3" 13293 sources."dir-glob-3.0.1" 13294 sources."escape-string-regexp-4.0.0" 13295 sources."execa-5.1.1" 13296 sources."fast-diff-1.2.0" 13297 + sources."fast-glob-3.2.11" 13298 sources."fastq-1.13.0" 13299 sources."fill-range-7.0.1" 13300 sources."fsevents-2.3.2" 13301 sources."get-stream-6.0.1" 13302 sources."glob-parent-5.1.2" 13303 + sources."globby-11.1.0" 13304 sources."human-signals-2.1.0" 13305 sources."ignore-5.2.0" 13306 sources."is-binary-path-2.1.0" ··· 13311 sources."isexe-2.0.0" 13312 sources."merge-stream-2.0.0" 13313 sources."merge2-1.4.1" 13314 + sources."micromatch-4.0.5" 13315 sources."mimic-fn-2.1.0" 13316 sources."normalize-path-3.0.0" 13317 sources."npm-run-path-4.0.1" 13318 sources."onetime-5.1.2" 13319 sources."path-key-3.1.1" 13320 sources."path-type-4.0.0" 13321 + sources."picomatch-2.3.1" 13322 sources."pjson-1.0.9" 13323 sources."queue-microtask-1.2.3" 13324 sources."readdirp-3.6.0" ··· 13327 sources."run-parallel-1.2.0" 13328 sources."shebang-command-2.0.0" 13329 sources."shebang-regex-3.0.0" 13330 + sources."signal-exit-3.0.7" 13331 sources."slash-3.0.0" 13332 sources."strip-final-newline-2.0.0" 13333 sources."to-regex-range-5.0.1" 13334 + sources."ts-debounce-4.0.0" 13335 sources."tslib-1.14.1" 13336 sources."tsyringe-4.6.0" 13337 sources."vscode-jsonrpc-6.0.0" 13338 sources."vscode-languageserver-7.0.0" 13339 sources."vscode-languageserver-protocol-3.16.0" 13340 + sources."vscode-languageserver-textdocument-1.0.4" 13341 sources."vscode-languageserver-types-3.16.0" 13342 sources."vscode-uri-3.0.3" 13343 + sources."web-tree-sitter-0.20.5" 13344 sources."which-2.0.2" 13345 ]; 13346 buildInputs = globalBuildInputs; ··· 13395 }) 13396 sources."fill-range-7.0.1" 13397 sources."finalhandler-1.1.2" 13398 + sources."follow-redirects-1.14.9" 13399 sources."fresh-0.5.2" 13400 sources."fsevents-2.3.2" 13401 sources."get-stream-4.1.0" ··· 13430 sources."parseurl-1.3.3" 13431 sources."path-key-2.0.1" 13432 sources."pem-1.14.2" 13433 + sources."picomatch-2.3.1" 13434 sources."pseudomap-1.0.2" 13435 sources."pump-3.0.0" 13436 sources."range-parser-1.2.1" ··· 13447 sources."setprototypeof-1.1.1" 13448 sources."shebang-command-1.2.0" 13449 sources."shebang-regex-1.0.0" 13450 + sources."signal-exit-3.0.7" 13451 sources."statuses-1.5.0" 13452 sources."strip-ansi-3.0.1" 13453 sources."strip-eof-1.0.0" ··· 13486 sources."brace-expansion-1.1.11" 13487 sources."braces-3.0.2" 13488 sources."chalk-4.1.2" 13489 + sources."chokidar-3.5.3" 13490 sources."color-convert-2.0.1" 13491 sources."color-name-1.1.4" 13492 sources."commander-7.2.0" ··· 13498 sources."fsevents-2.3.2" 13499 sources."glob-7.2.0" 13500 sources."glob-parent-5.1.2" 13501 + sources."graceful-fs-4.2.9" 13502 sources."has-flag-4.0.0" 13503 sources."inflight-1.0.6" 13504 sources."inherits-2.0.4" ··· 13507 sources."is-glob-4.0.3" 13508 sources."is-number-7.0.0" 13509 sources."isexe-2.0.0" 13510 + sources."minimatch-3.1.2" 13511 sources."normalize-path-3.0.0" 13512 sources."once-1.4.0" 13513 sources."path-is-absolute-1.0.1" 13514 sources."path-key-3.1.1" 13515 + sources."picomatch-2.3.1" 13516 sources."readdirp-3.6.0" 13517 sources."rimraf-3.0.2" 13518 sources."shebang-command-2.0.0" ··· 13548 sources."@szmarczak/http-timer-4.0.6" 13549 sources."@types/cacheable-request-6.0.2" 13550 sources."@types/http-cache-semantics-4.0.1" 13551 + sources."@types/keyv-3.1.4" 13552 + sources."@types/node-17.0.23" 13553 sources."@types/responselike-1.0.0" 13554 sources."cacheable-lookup-2.0.1" 13555 sources."cacheable-request-7.0.2" ··· 13568 sources."get-proxy-2.1.0" 13569 sources."get-stream-5.2.0" 13570 sources."got-10.7.0" 13571 + sources."graceful-fs-4.2.9" 13572 sources."has-symbol-support-x-1.4.2" 13573 sources."has-to-string-tag-x-1.4.1" 13574 sources."http-cache-semantics-4.1.0" ··· 13578 sources."isurl-1.0.0" 13579 sources."json-buffer-3.0.1" 13580 sources."jsonfile-4.0.0" 13581 + sources."keyv-4.1.1" 13582 sources."lowercase-keys-2.0.0" 13583 sources."lru-cache-6.0.0" 13584 sources."mimic-response-2.1.0" ··· 13626 }; 13627 dependencies = [ 13628 sources."ajv-6.12.6" 13629 + sources."ansi-regex-4.1.1" 13630 sources."ansi-styles-3.2.1" 13631 sources."anymatch-3.1.2" 13632 sources."asn1-0.2.6" ··· 13697 sources."getpass-0.1.7" 13698 sources."glob-7.1.4" 13699 sources."glob-parent-5.1.2" 13700 + sources."graceful-fs-4.2.9" 13701 sources."har-schema-2.0.0" 13702 sources."har-validator-5.1.5" 13703 sources."has-flag-3.0.0" ··· 13720 sources."jsprim-1.4.2" 13721 sources."locate-path-3.0.0" 13722 sources."lodash-4.17.15" 13723 + sources."mime-db-1.52.0" 13724 + sources."mime-types-2.1.35" 13725 + sources."minimatch-3.1.2" 13726 + sources."minimist-1.2.6" 13727 sources."minipass-2.9.0" 13728 sources."minizlib-1.3.3" 13729 + sources."mkdirp-0.5.6" 13730 sources."murmur-hash-js-1.0.0" 13731 sources."mustache-3.2.1" 13732 sources."nice-try-1.0.5" ··· 13747 sources."path-is-absolute-1.0.1" 13748 sources."path-key-3.1.1" 13749 sources."performance-now-2.1.0" 13750 + sources."picomatch-2.3.1" 13751 sources."psl-1.8.0" 13752 sources."punycode-2.1.1" 13753 + sources."qs-6.5.3" 13754 sources."readdirp-3.1.3" 13755 sources."request-2.88.2" 13756 sources."request-promise-4.2.6" ··· 13769 sources."shebang-command-1.2.0" 13770 sources."shebang-regex-1.0.0" 13771 sources."split-1.0.1" 13772 + sources."sshpk-1.17.0" 13773 sources."stealthy-require-1.1.1" 13774 sources."string-width-3.1.0" 13775 sources."strip-ansi-5.2.0" ··· 13813 elm-xref = nodeEnv.buildNodePackage { 13814 name = "elm-xref"; 13815 packageName = "elm-xref"; 13816 + version = "4.1.1"; 13817 src = fetchurl { 13818 + url = "https://registry.npmjs.org/elm-xref/-/elm-xref-4.1.1.tgz"; 13819 + sha512 = "1Cl3pZ8Z8Nd0VIu6277C4l4IMjDJEZuX1jkGZX/YZGdCQvGd1v0pB20NKi+U8YbfyjzaereAHah2eL3eXamn6w=="; 13820 }; 13821 dependencies = [ 13822 sources."bluebird-3.7.2" 13823 sources."compare-versions-3.6.0" 13824 sources."core-util-is-1.0.3" 13825 sources."fs-extra-6.0.1" 13826 + sources."graceful-fs-4.2.9" 13827 sources."inherits-2.0.4" 13828 sources."isarray-1.0.0" 13829 sources."jsonfile-4.0.0" 13830 sources."klaw-2.1.1" 13831 + sources."minimist-1.2.6" 13832 sources."process-nextick-args-2.0.1" 13833 sources."readable-stream-2.3.7" 13834 sources."safe-buffer-5.1.2" 13835 sources."semver-6.3.0" 13836 + sources."semver-regex-3.1.3" 13837 + (sources."semver-sort-1.0.0" // { 13838 dependencies = [ 13839 sources."semver-5.7.1" 13840 ]; ··· 13865 }; 13866 dependencies = [ 13867 sources."@babel/cli-7.12.10" 13868 + sources."@babel/code-frame-7.16.7" 13869 + sources."@babel/compat-data-7.17.7" 13870 sources."@babel/core-7.12.10" 13871 + sources."@babel/generator-7.17.7" 13872 + sources."@babel/helper-annotate-as-pure-7.16.7" 13873 + sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 13874 + (sources."@babel/helper-compilation-targets-7.17.7" // { 13875 dependencies = [ 13876 sources."semver-6.3.0" 13877 ]; 13878 }) 13879 + sources."@babel/helper-create-class-features-plugin-7.17.6" 13880 + sources."@babel/helper-create-regexp-features-plugin-7.17.0" 13881 + sources."@babel/helper-environment-visitor-7.16.7" 13882 + sources."@babel/helper-explode-assignable-expression-7.16.7" 13883 + sources."@babel/helper-function-name-7.16.7" 13884 + sources."@babel/helper-get-function-arity-7.16.7" 13885 + sources."@babel/helper-hoist-variables-7.16.7" 13886 + sources."@babel/helper-member-expression-to-functions-7.17.7" 13887 + sources."@babel/helper-module-imports-7.16.7" 13888 + sources."@babel/helper-module-transforms-7.17.7" 13889 + sources."@babel/helper-optimise-call-expression-7.16.7" 13890 + sources."@babel/helper-plugin-utils-7.16.7" 13891 + sources."@babel/helper-remap-async-to-generator-7.16.8" 13892 + sources."@babel/helper-replace-supers-7.16.7" 13893 + sources."@babel/helper-simple-access-7.17.7" 13894 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 13895 + sources."@babel/helper-split-export-declaration-7.16.7" 13896 + sources."@babel/helper-validator-identifier-7.16.7" 13897 + sources."@babel/helper-validator-option-7.16.7" 13898 + sources."@babel/helper-wrap-function-7.16.8" 13899 + sources."@babel/helpers-7.17.8" 13900 + sources."@babel/highlight-7.16.10" 13901 + sources."@babel/parser-7.17.8" 13902 + sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 13903 + sources."@babel/plugin-proposal-class-properties-7.16.7" 13904 + sources."@babel/plugin-proposal-dynamic-import-7.16.7" 13905 + sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 13906 + sources."@babel/plugin-proposal-json-strings-7.16.7" 13907 + sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 13908 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 13909 + sources."@babel/plugin-proposal-numeric-separator-7.16.7" 13910 + sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 13911 + sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 13912 + sources."@babel/plugin-proposal-optional-chaining-7.16.7" 13913 + sources."@babel/plugin-proposal-private-methods-7.16.11" 13914 + sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 13915 sources."@babel/plugin-syntax-async-generators-7.8.4" 13916 sources."@babel/plugin-syntax-class-properties-7.12.13" 13917 sources."@babel/plugin-syntax-dynamic-import-7.8.3" ··· 13924 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 13925 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 13926 sources."@babel/plugin-syntax-top-level-await-7.14.5" 13927 + sources."@babel/plugin-transform-arrow-functions-7.16.7" 13928 + sources."@babel/plugin-transform-async-to-generator-7.16.8" 13929 + sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 13930 + sources."@babel/plugin-transform-block-scoping-7.16.7" 13931 + sources."@babel/plugin-transform-classes-7.16.7" 13932 + sources."@babel/plugin-transform-computed-properties-7.16.7" 13933 + sources."@babel/plugin-transform-destructuring-7.17.7" 13934 + sources."@babel/plugin-transform-dotall-regex-7.16.7" 13935 + sources."@babel/plugin-transform-duplicate-keys-7.16.7" 13936 + sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 13937 + sources."@babel/plugin-transform-for-of-7.16.7" 13938 + sources."@babel/plugin-transform-function-name-7.16.7" 13939 + sources."@babel/plugin-transform-literals-7.16.7" 13940 + sources."@babel/plugin-transform-member-expression-literals-7.16.7" 13941 + sources."@babel/plugin-transform-modules-amd-7.16.7" 13942 + sources."@babel/plugin-transform-modules-commonjs-7.17.7" 13943 + sources."@babel/plugin-transform-modules-systemjs-7.17.8" 13944 + sources."@babel/plugin-transform-modules-umd-7.16.7" 13945 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.16.8" 13946 + sources."@babel/plugin-transform-new-target-7.16.7" 13947 + sources."@babel/plugin-transform-object-super-7.16.7" 13948 + sources."@babel/plugin-transform-parameters-7.16.7" 13949 + sources."@babel/plugin-transform-property-literals-7.16.7" 13950 + sources."@babel/plugin-transform-regenerator-7.16.7" 13951 + sources."@babel/plugin-transform-reserved-words-7.16.7" 13952 sources."@babel/plugin-transform-runtime-7.12.10" 13953 + sources."@babel/plugin-transform-shorthand-properties-7.16.7" 13954 + sources."@babel/plugin-transform-spread-7.16.7" 13955 + sources."@babel/plugin-transform-sticky-regex-7.16.7" 13956 + sources."@babel/plugin-transform-template-literals-7.16.7" 13957 + sources."@babel/plugin-transform-typeof-symbol-7.16.7" 13958 + sources."@babel/plugin-transform-unicode-escapes-7.16.7" 13959 + sources."@babel/plugin-transform-unicode-regex-7.16.7" 13960 sources."@babel/preset-env-7.12.10" 13961 sources."@babel/preset-modules-0.1.5" 13962 sources."@babel/runtime-7.12.5" 13963 + sources."@babel/template-7.16.7" 13964 + sources."@babel/traverse-7.17.3" 13965 + sources."@babel/types-7.17.0" 13966 sources."@hapi/address-2.1.4" 13967 sources."@hapi/bourne-1.3.2" 13968 sources."@hapi/hoek-8.5.1" ··· 13973 sources."@types/glob-7.2.0" 13974 sources."@types/html-minifier-terser-5.1.2" 13975 sources."@types/http-proxy-1.17.8" 13976 + sources."@types/json-schema-7.0.11" 13977 sources."@types/minimatch-3.0.5" 13978 + sources."@types/node-17.0.23" 13979 sources."@types/parse-json-4.0.0" 13980 sources."@types/q-1.5.5" 13981 sources."@types/source-list-map-0.1.2" ··· 14015 sources."@webassemblyjs/wast-printer-1.9.0" 14016 sources."@xtuc/ieee754-1.2.0" 14017 sources."@xtuc/long-4.2.2" 14018 + sources."accepts-1.3.8" 14019 sources."acorn-6.4.2" 14020 sources."address-1.0.3" 14021 sources."ajv-6.12.6" ··· 14098 sources."bindings-1.5.0" 14099 sources."bluebird-3.7.2" 14100 sources."bn.js-5.2.0" 14101 + (sources."body-parser-1.19.2" // { 14102 dependencies = [ 14103 + sources."bytes-3.1.2" 14104 sources."debug-2.6.9" 14105 sources."ms-2.0.0" 14106 + sources."qs-6.9.7" 14107 ]; 14108 }) 14109 (sources."bonjour-3.5.0" // { ··· 14126 ]; 14127 }) 14128 sources."browserify-zlib-0.2.0" 14129 + sources."browserslist-4.20.2" 14130 sources."buffer-4.9.2" 14131 sources."buffer-from-1.1.2" 14132 sources."buffer-indexof-1.1.1" ··· 14143 sources."camel-case-4.1.2" 14144 sources."camelcase-5.3.1" 14145 sources."caniuse-api-3.0.0" 14146 + sources."caniuse-lite-1.0.30001324" 14147 sources."case-sensitive-paths-webpack-plugin-2.3.0" 14148 sources."caseless-0.12.0" 14149 (sources."chalk-2.4.2" // { ··· 14152 ]; 14153 }) 14154 sources."chardet-0.7.0" 14155 + (sources."chokidar-3.5.3" // { 14156 dependencies = [ 14157 sources."glob-parent-5.1.2" 14158 ]; ··· 14226 }) 14227 sources."content-type-1.0.4" 14228 sources."convert-source-map-1.8.0" 14229 + sources."cookie-0.4.2" 14230 sources."cookie-signature-1.0.6" 14231 sources."copy-concurrently-1.0.5" 14232 sources."copy-descriptor-0.1.1" ··· 14242 ]; 14243 }) 14244 sources."core-js-2.6.12" 14245 + (sources."core-js-compat-3.21.1" // { 14246 dependencies = [ 14247 sources."semver-7.0.0" 14248 ]; ··· 14262 sources."css-declaration-sorter-4.0.1" 14263 (sources."css-loader-4.3.0" // { 14264 dependencies = [ 14265 + sources."camelcase-6.3.0" 14266 sources."loader-utils-2.0.2" 14267 sources."lru-cache-6.0.0" 14268 sources."semver-7.3.5" 14269 sources."yallist-4.0.0" 14270 ]; 14271 }) 14272 + sources."css-select-4.3.0" 14273 sources."css-select-base-adapter-0.1.1" 14274 (sources."css-tree-1.0.0-alpha.37" // { 14275 dependencies = [ 14276 sources."source-map-0.6.1" 14277 ]; 14278 }) 14279 + sources."css-what-6.1.0" 14280 sources."cssesc-3.0.0" 14281 sources."cssnano-4.1.11" 14282 sources."cssnano-preset-default-4.0.8" ··· 14294 sources."cycle-1.0.3" 14295 sources."cyclist-1.0.1" 14296 sources."dashdash-1.14.1" 14297 + sources."debug-4.3.4" 14298 sources."decamelize-1.2.0" 14299 sources."decode-uri-component-0.2.0" 14300 sources."deep-equal-0.2.2" ··· 14334 sources."dom-serializer-1.3.2" 14335 sources."domain-browser-1.2.0" 14336 sources."domelementtype-2.2.0" 14337 + sources."domhandler-4.3.1" 14338 sources."domutils-2.8.0" 14339 sources."dot-case-3.0.4" 14340 sources."dot-prop-5.3.0" ··· 14343 sources."duplexify-3.7.1" 14344 sources."ecc-jsbn-0.1.2" 14345 sources."ee-first-1.1.1" 14346 + sources."electron-to-chromium-1.4.103" 14347 (sources."elliptic-6.5.4" // { 14348 dependencies = [ 14349 sources."bn.js-4.12.0" ··· 14379 sources."entities-2.2.0" 14380 sources."errno-0.1.8" 14381 sources."error-ex-1.3.2" 14382 + sources."es-abstract-1.19.2" 14383 sources."es-to-primitive-1.2.1" 14384 sources."escalade-3.1.1" 14385 sources."escape-html-1.0.3" ··· 14428 ]; 14429 }) 14430 sources."expand-tilde-2.0.2" 14431 + (sources."express-4.17.3" // { 14432 dependencies = [ 14433 sources."array-flatten-1.1.1" 14434 sources."debug-2.6.9" 14435 sources."ms-2.0.0" 14436 + sources."qs-6.9.7" 14437 sources."safe-buffer-5.2.1" 14438 ]; 14439 }) ··· 14507 sources."find-up-4.1.0" 14508 sources."firstline-1.3.1" 14509 sources."flush-write-stream-1.1.1" 14510 + sources."follow-redirects-1.14.9" 14511 sources."for-in-1.0.2" 14512 sources."forever-agent-0.6.1" 14513 sources."form-data-2.3.3" 14514 sources."forwarded-0.2.0" 14515 + sources."fraction.js-4.2.0" 14516 sources."fragment-cache-0.2.1" 14517 sources."fresh-0.5.2" 14518 sources."from2-2.3.0" ··· 14550 sources."slash-1.0.0" 14551 ]; 14552 }) 14553 + sources."graceful-fs-4.2.9" 14554 (sources."gzip-size-5.0.0" // { 14555 dependencies = [ 14556 sources."pify-3.0.0" ··· 14562 sources."has-1.0.3" 14563 sources."has-bigints-1.0.1" 14564 sources."has-flag-3.0.0" 14565 + sources."has-symbols-1.0.3" 14566 sources."has-tostringtag-1.0.0" 14567 sources."has-value-1.0.0" 14568 (sources."has-values-1.0.0" // { ··· 14596 sources."htmlparser2-6.1.0" 14597 sources."http-deceiver-1.2.7" 14598 sources."http-errors-1.8.1" 14599 + sources."http-parser-js-0.5.6" 14600 sources."http-proxy-1.18.1" 14601 sources."http-proxy-middleware-0.21.0" 14602 sources."http-signature-1.2.0" ··· 14626 sources."ini-1.3.8" 14627 (sources."inquirer-6.2.0" // { 14628 dependencies = [ 14629 + sources."ansi-regex-3.0.1" 14630 sources."is-fullwidth-code-point-2.0.0" 14631 sources."mute-stream-0.0.7" 14632 sources."string-width-2.1.1" ··· 14649 sources."is-buffer-1.1.6" 14650 sources."is-callable-1.2.4" 14651 sources."is-color-stop-1.1.0" 14652 + sources."is-core-module-2.8.1" 14653 sources."is-data-descriptor-1.0.0" 14654 sources."is-date-object-1.0.5" 14655 sources."is-descriptor-1.0.2" ··· 14660 sources."is-glob-4.0.3" 14661 sources."is-negative-zero-2.0.2" 14662 sources."is-number-7.0.0" 14663 + sources."is-number-object-1.0.7" 14664 sources."is-obj-2.0.0" 14665 sources."is-path-cwd-2.2.0" 14666 sources."is-path-in-cwd-2.1.0" ··· 14671 sources."is-regexp-1.0.0" 14672 sources."is-resolvable-1.1.0" 14673 sources."is-root-2.0.0" 14674 + sources."is-shared-array-buffer-1.0.2" 14675 sources."is-stream-1.1.0" 14676 sources."is-string-1.0.7" 14677 sources."is-symbol-1.0.4" ··· 14695 sources."json-stable-stringify-1.0.1" 14696 sources."json-stringify-safe-5.0.1" 14697 sources."json3-3.3.3" 14698 + sources."json5-2.2.1" 14699 sources."jsonfile-4.0.0" 14700 sources."jsonify-0.0.0" 14701 sources."jsprim-1.4.2" ··· 14737 sources."merge-descriptors-1.0.1" 14738 sources."merge2-1.4.1" 14739 sources."methods-1.1.2" 14740 + sources."micromatch-4.0.5" 14741 (sources."miller-rabin-4.0.1" // { 14742 dependencies = [ 14743 sources."bn.js-4.12.0" 14744 ]; 14745 }) 14746 sources."mime-1.6.0" 14747 + sources."mime-db-1.52.0" 14748 + sources."mime-types-2.1.35" 14749 sources."mimic-fn-1.2.0" 14750 (sources."mini-css-extract-plugin-0.12.0" // { 14751 dependencies = [ ··· 14754 }) 14755 sources."minimalistic-assert-1.0.1" 14756 sources."minimalistic-crypto-utils-1.0.1" 14757 + sources."minimatch-3.1.2" 14758 sources."minimist-1.2.5" 14759 sources."mississippi-3.0.0" 14760 (sources."mixin-deep-1.3.2" // { ··· 14769 sources."multicast-dns-service-types-1.1.0" 14770 sources."mute-stream-0.0.8" 14771 sources."nan-2.15.0" 14772 + sources."nanoid-3.3.2" 14773 sources."nanomatch-1.2.13" 14774 sources."ncp-1.0.1" 14775 + sources."negotiator-0.6.3" 14776 sources."neo-async-2.6.2" 14777 sources."nice-try-1.0.5" 14778 sources."no-case-3.0.4" ··· 14791 sources."punycode-1.4.1" 14792 ]; 14793 }) 14794 + sources."node-releases-2.0.2" 14795 sources."normalize-package-data-2.5.0" 14796 sources."normalize-path-3.0.0" 14797 sources."normalize-range-0.1.2" ··· 14874 sources."pbkdf2-3.1.2" 14875 sources."performance-now-2.1.0" 14876 sources."picocolors-1.0.0" 14877 + sources."picomatch-2.3.1" 14878 sources."pify-4.0.1" 14879 sources."pinkie-2.0.4" 14880 sources."pinkie-promise-2.0.1" ··· 14894 dependencies = [ 14895 sources."async-2.6.3" 14896 sources."debug-3.2.7" 14897 + sources."minimist-1.2.6" 14898 + sources."mkdirp-0.5.6" 14899 ]; 14900 }) 14901 sources."posix-character-classes-0.1.1" ··· 15024 }) 15025 (sources."postcss-safe-parser-5.0.2" // { 15026 dependencies = [ 15027 + sources."postcss-8.4.12" 15028 ]; 15029 }) 15030 + sources."postcss-selector-parser-6.0.10" 15031 (sources."postcss-svgo-4.0.3" // { 15032 dependencies = [ 15033 sources."postcss-value-parser-3.3.1" ··· 15060 }) 15061 sources."punycode-2.1.1" 15062 sources."q-1.5.1" 15063 + sources."qs-6.5.3" 15064 sources."query-string-4.3.4" 15065 sources."querystring-0.2.0" 15066 sources."querystring-es3-0.2.1" ··· 15068 sources."randombytes-2.1.0" 15069 sources."randomfill-1.0.4" 15070 sources."range-parser-1.2.1" 15071 + (sources."raw-body-2.4.3" // { 15072 dependencies = [ 15073 + sources."bytes-3.1.2" 15074 ]; 15075 }) 15076 (sources."react-dev-utils-6.1.1" // { 15077 dependencies = [ 15078 sources."@babel/code-frame-7.0.0" 15079 + sources."ansi-regex-3.0.1" 15080 sources."big.js-3.2.0" 15081 sources."browserslist-4.1.1" 15082 sources."chalk-2.4.1" ··· 15120 }) 15121 sources."readable-stream-2.3.7" 15122 sources."readdirp-3.6.0" 15123 + (sources."recursive-readdir-2.2.2" // { 15124 + dependencies = [ 15125 + sources."minimatch-3.0.4" 15126 + ]; 15127 + }) 15128 sources."regenerate-1.4.2" 15129 + sources."regenerate-unicode-properties-10.0.1" 15130 sources."regenerator-runtime-0.13.9" 15131 sources."regenerator-transform-0.14.5" 15132 sources."regex-not-1.0.2" 15133 + sources."regexp.prototype.flags-1.4.1" 15134 + sources."regexpu-core-5.0.1" 15135 + sources."regjsgen-0.6.0" 15136 + (sources."regjsparser-0.8.4" // { 15137 dependencies = [ 15138 sources."jsesc-0.5.0" 15139 ]; ··· 15152 sources."require-directory-2.1.1" 15153 sources."require-main-filename-1.0.1" 15154 sources."requires-port-1.0.0" 15155 + sources."resolve-1.22.0" 15156 sources."resolve-cwd-2.0.0" 15157 sources."resolve-dir-1.0.1" 15158 sources."resolve-from-3.0.0" ··· 15178 sources."sax-1.2.4" 15179 sources."schema-utils-2.7.1" 15180 sources."select-hose-2.0.0" 15181 + sources."selfsigned-1.10.14" 15182 sources."semver-5.7.1" 15183 (sources."send-0.17.2" // { 15184 dependencies = [ ··· 15214 sources."shebang-regex-3.0.0" 15215 sources."shell-quote-1.6.1" 15216 sources."side-channel-1.0.4" 15217 + sources."signal-exit-3.0.7" 15218 (sources."simple-swizzle-0.2.2" // { 15219 dependencies = [ 15220 sources."is-arrayish-0.3.2" ··· 15266 sources."sort-keys-1.1.2" 15267 sources."source-list-map-2.0.1" 15268 sources."source-map-0.5.7" 15269 + sources."source-map-js-1.0.2" 15270 sources."source-map-resolve-0.5.3" 15271 (sources."source-map-support-0.5.21" // { 15272 dependencies = [ ··· 15287 sources."split-1.0.1" 15288 sources."split-string-3.1.0" 15289 sources."sprintf-js-1.0.3" 15290 + sources."sshpk-1.17.0" 15291 sources."ssri-6.0.2" 15292 sources."stable-0.1.8" 15293 sources."stack-trace-0.0.10" ··· 15343 ]; 15344 }) 15345 sources."supports-color-5.5.0" 15346 + sources."supports-preserve-symlinks-flag-1.0.0" 15347 (sources."svgo-1.3.2" // { 15348 dependencies = [ 15349 sources."css-select-2.1.0" ··· 15472 sources."schema-utils-3.1.1" 15473 ]; 15474 }) 15475 + sources."url-parse-1.5.10" 15476 sources."use-3.1.1" 15477 (sources."util-0.11.1" // { 15478 dependencies = [ ··· 15540 sources."chokidar-2.1.8" 15541 (sources."cliui-5.0.0" // { 15542 dependencies = [ 15543 + sources."ansi-regex-4.1.1" 15544 sources."strip-ansi-5.2.0" 15545 ]; 15546 }) ··· 15568 sources."semver-6.3.0" 15569 (sources."string-width-3.1.0" // { 15570 dependencies = [ 15571 + sources."ansi-regex-4.1.1" 15572 sources."strip-ansi-5.2.0" 15573 ]; 15574 }) ··· 15578 sources."which-module-2.0.0" 15579 (sources."wrap-ansi-5.1.0" // { 15580 dependencies = [ 15581 + sources."ansi-regex-4.1.1" 15582 sources."strip-ansi-5.2.0" 15583 ]; 15584 }) ··· 15675 elm-optimize-level-2 = nodeEnv.buildNodePackage { 15676 name = "elm-optimize-level-2"; 15677 packageName = "elm-optimize-level-2"; 15678 + version = "0.3.4"; 15679 src = fetchurl { 15680 + url = "https://registry.npmjs.org/elm-optimize-level-2/-/elm-optimize-level-2-0.3.4.tgz"; 15681 + sha512 = "DKhH6o+SNo3m8y9qAM932/gLMK0YmNSJevHdBYkaDWfKiw+vlo4Wtfskb8CI8ZAzWrAOcDNiLCsEbSsbPHk2Vg=="; 15682 }; 15683 dependencies = [ 15684 + sources."@types/jest-27.4.1" 15685 + sources."ansi-regex-5.0.1" 15686 + sources."ansi-styles-5.2.0" 15687 sources."balanced-match-1.0.2" 15688 sources."brace-expansion-1.1.11" 15689 + (sources."chalk-4.1.2" // { 15690 + dependencies = [ 15691 + sources."ansi-styles-4.3.0" 15692 + ]; 15693 + }) 15694 sources."color-convert-2.0.1" 15695 sources."color-name-1.1.4" 15696 sources."commander-6.2.1" 15697 sources."concat-map-0.0.1" 15698 sources."cross-spawn-6.0.5" 15699 + sources."diff-sequences-27.5.1" 15700 sources."find-elm-dependencies-2.0.4" 15701 sources."firstline-1.3.1" 15702 sources."fs.realpath-1.0.0" ··· 15705 sources."inflight-1.0.6" 15706 sources."inherits-2.0.4" 15707 sources."isexe-2.0.0" 15708 + sources."jest-diff-27.5.1" 15709 + sources."jest-get-type-27.5.1" 15710 + sources."jest-matcher-utils-27.5.1" 15711 sources."lodash-4.17.21" 15712 + sources."minimatch-3.1.2" 15713 + sources."minimist-1.2.6" 15714 + sources."mkdirp-0.5.6" 15715 sources."nice-try-1.0.5" 15716 sources."node-elm-compiler-5.0.6" 15717 sources."once-1.4.0" 15718 sources."path-is-absolute-1.0.1" 15719 sources."path-key-2.0.1" 15720 + sources."pretty-format-27.5.1" 15721 + sources."react-is-17.0.2" 15722 sources."rimraf-2.6.3" 15723 sources."semver-5.7.1" 15724 sources."shebang-command-1.2.0" ··· 15726 sources."supports-color-7.2.0" 15727 sources."temp-0.9.4" 15728 sources."ts-union-2.3.0" 15729 + sources."typescript-4.6.3" 15730 sources."which-1.3.1" 15731 sources."wrappy-1.0.2" 15732 ]; ··· 15743 elm-review = nodeEnv.buildNodePackage { 15744 name = "elm-review"; 15745 packageName = "elm-review"; 15746 + version = "2.7.1"; 15747 src = fetchurl { 15748 + url = "https://registry.npmjs.org/elm-review/-/elm-review-2.7.1.tgz"; 15749 + sha512 = "leDgjvE6ldYSOG/jMLmMw2g1vRnrd9nH9mnQcJt57SY2F4FnZT2hfIbuIUBXPaBwhWwC0a6BRt+Jv/2sGOG03A=="; 15750 }; 15751 dependencies = [ 15752 sources."@sindresorhus/is-2.1.1" 15753 sources."@szmarczak/http-timer-4.0.6" 15754 sources."@types/cacheable-request-6.0.2" 15755 sources."@types/http-cache-semantics-4.0.1" 15756 + sources."@types/keyv-3.1.4" 15757 + sources."@types/node-17.0.23" 15758 sources."@types/responselike-1.0.0" 15759 (sources."ansi-escapes-4.3.2" // { 15760 dependencies = [ ··· 15775 sources."cacheable-lookup-2.0.1" 15776 sources."cacheable-request-7.0.2" 15777 sources."chalk-4.1.2" 15778 + sources."chokidar-3.5.3" 15779 sources."cli-cursor-3.1.0" 15780 sources."cli-spinners-2.6.1" 15781 sources."clone-1.0.4" ··· 15788 sources."color-name-1.1.4" 15789 sources."concat-map-0.0.1" 15790 sources."cross-spawn-7.0.3" 15791 + sources."debug-4.3.4" 15792 sources."decompress-response-5.0.0" 15793 sources."defaults-1.0.3" 15794 sources."defer-to-connect-2.0.1" ··· 15808 sources."glob-7.2.0" 15809 sources."glob-parent-5.1.2" 15810 sources."got-10.7.0" 15811 + sources."graceful-fs-4.2.9" 15812 sources."has-flag-4.0.0" 15813 sources."http-cache-semantics-4.1.0" 15814 sources."ieee754-1.2.1" ··· 15824 sources."isexe-2.0.0" 15825 sources."json-buffer-3.0.1" 15826 sources."jsonfile-6.1.0" 15827 + sources."keyv-4.1.1" 15828 sources."kleur-3.0.3" 15829 sources."locate-path-5.0.0" 15830 sources."log-symbols-4.1.0" 15831 sources."lowercase-keys-2.0.0" 15832 sources."mimic-fn-2.1.0" 15833 sources."mimic-response-2.1.0" 15834 + sources."minimatch-3.0.8" 15835 + sources."minimist-1.2.6" 15836 + sources."mkdirp-0.5.6" 15837 sources."ms-2.1.2" 15838 sources."normalize-path-3.0.0" 15839 sources."normalize-url-6.1.0" ··· 15850 sources."path-exists-4.0.0" 15851 sources."path-is-absolute-1.0.1" 15852 sources."path-key-3.1.1" 15853 + sources."picomatch-2.3.1" 15854 sources."prompts-2.4.2" 15855 sources."pump-3.0.0" 15856 sources."readable-stream-3.6.0" ··· 15861 sources."safe-buffer-5.2.1" 15862 sources."shebang-command-2.0.0" 15863 sources."shebang-regex-3.0.0" 15864 + sources."signal-exit-3.0.7" 15865 sources."sisteransi-1.0.5" 15866 sources."string-width-4.2.3" 15867 sources."string_decoder-1.3.0" ··· 15893 elm-git-install = nodeEnv.buildNodePackage { 15894 name = "elm-git-install"; 15895 packageName = "elm-git-install"; 15896 + version = "0.1.4"; 15897 src = fetchurl { 15898 + url = "https://registry.npmjs.org/elm-git-install/-/elm-git-install-0.1.4.tgz"; 15899 + sha512 = "XQ0Jl0RruUpcB4thmX0wnTPhB3fup9klyLmWyYOj0oUcpGlNXWr65cNbEMypxguL7sljU4MRMpItQMxeczgGwg=="; 15900 }; 15901 dependencies = [ 15902 + sources."@kwsites/file-exists-1.1.1" 15903 + sources."@kwsites/promise-deferred-1.1.1" 15904 + sources."debug-4.3.4" 15905 + sources."git-clone-able-0.1.2" 15906 + sources."lru-cache-6.0.0" 15907 sources."ms-2.1.2" 15908 + sources."semver-7.3.5" 15909 + sources."simple-git-3.5.0" 15910 + sources."upath-2.0.1" 15911 + sources."yallist-4.0.0" 15912 ]; 15913 buildInputs = globalBuildInputs; 15914 meta = { 15915 description = "A tool for installing private Elm packages from any git url."; 15916 + homepage = "https://github.com/robinheghan/elm-git-install#readme"; 15917 license = "BSD-3-Clause"; 15918 }; 15919 production = true;
+6
pkgs/development/libraries/pipewire/default.nix
··· 102 ./0090-pipewire-config-template-paths.patch 103 # Place SPA data files in lib output to avoid dependency cycles 104 ./0095-spa-data-dir.patch 105 ]; 106 107 nativeBuildInputs = [
··· 102 ./0090-pipewire-config-template-paths.patch 103 # Place SPA data files in lib output to avoid dependency cycles 104 ./0095-spa-data-dir.patch 105 + # Fixes missing function declarations in pipewire headers 106 + # Should be removed after the next release 107 + (fetchpatch { 108 + url = "https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/a2e98e28c1e6fb58b273ef582398d8bee4d2b769.patch"; 109 + sha256 = "sha256-tqiiAW2fTEp23HT59XR2D/G08pVENJtpxUI7UVufj/A="; 110 + }) 111 ]; 112 113 nativeBuildInputs = [
+2 -2
pkgs/development/php-packages/composer/default.nix
··· 1 { mkDerivation, fetchurl, makeWrapper, unzip, lib, php }: 2 let 3 pname = "composer"; 4 - version = "2.2.9"; 5 in 6 mkDerivation { 7 inherit pname version; 8 9 src = fetchurl { 10 url = "https://getcomposer.org/download/${version}/composer.phar"; 11 - sha256 = "sha256-SPn9ya2TkE/ullULRa4DpR9pcYUC7oVdqJS0rXHS3+A="; 12 }; 13 14 dontUnpack = true;
··· 1 { mkDerivation, fetchurl, makeWrapper, unzip, lib, php }: 2 let 3 pname = "composer"; 4 + version = "2.3.3"; 5 in 6 mkDerivation { 7 inherit pname version; 8 9 src = fetchurl { 10 url = "https://getcomposer.org/download/${version}/composer.phar"; 11 + sha256 = "sha256-1pMewrOLQb0K1i+dFXkI5miLrAkbvwvWphnBBnuSJAI="; 12 }; 13 14 dontUnpack = true;
+2 -2
pkgs/development/php-packages/phpstan/default.nix
··· 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 let 3 pname = "phpstan"; 4 - version = "1.5.0"; 5 in 6 mkDerivation { 7 inherit pname version; 8 9 src = fetchurl { 10 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 11 - sha256 = "sha256-dgsBpFnolIMrSwNHZ9+mSW1zMJ/RbvYIWBUksDiYeqE="; 12 }; 13 14 dontUnpack = true;
··· 1 { mkDerivation, fetchurl, makeWrapper, lib, php }: 2 let 3 pname = "phpstan"; 4 + version = "1.5.3"; 5 in 6 mkDerivation { 7 inherit pname version; 8 9 src = fetchurl { 10 url = "https://github.com/phpstan/phpstan/releases/download/${version}/phpstan.phar"; 11 + sha256 = "sha256-tIVzXxOyHVz2AE0PjQdkQ+uevdSqsjBRIZQWVDwzuKg="; 12 }; 13 14 dontUnpack = true;
+2 -2
pkgs/development/python-modules/asyncsleepiq/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "asyncsleepiq"; 10 - version = "1.2.1"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - sha256 = "sha256-pIfEdNmtnwA+PE3lXVd7Qd8Igj+/aqZmuDqFs60PxgY="; 18 }; 19 20 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "asyncsleepiq"; 10 + version = "1.2.3"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + sha256 = "sha256-X+bJyzQxWJaS1/KNOE/3zQKSbwUpm9XN35HYf6s+BPs="; 18 }; 19 20 propagatedBuildInputs = [
+13 -5
pkgs/development/python-modules/atomman/default.nix
··· 1 { lib 2 , buildPythonPackage 3 , cython 4 , datamodeldict ··· 7 , numericalunits 8 , numpy 9 , pandas 10 , potentials 11 , pytest 12 , pythonOlder 13 , scipy 14 , toolz 15 , xmltodict 16 - , python 17 }: 18 19 buildPythonPackage rec { 20 - version = "1.4.3"; 21 pname = "atomman"; 22 format = "setuptools"; 23 ··· 27 owner = "usnistgov"; 28 repo = "atomman"; 29 rev = "v${version}"; 30 - sha256 = "sha256-is47O59Pjrh9tPC1Y2+DVVcHbxmcjUOFOVGnNHuURoM="; 31 }; 32 33 propagatedBuildInputs = [ ··· 38 numpy 39 pandas 40 potentials 41 scipy 42 toolz 43 xmltodict 44 ]; 45 46 checkInputs = [ 47 pytest 48 ]; 49 50 checkPhase = '' 51 # pytestCheckHook doesn't work 52 - py.test tests -k "not test_rootdir and not test_version \ 53 - and not test_atomic_mass and not imageflags" 54 ''; 55 56 pythonImportsCheck = [
··· 1 { lib 2 + , ase 3 , buildPythonPackage 4 , cython 5 , datamodeldict ··· 8 , numericalunits 9 , numpy 10 , pandas 11 + , phonopy 12 , potentials 13 + , pymatgen 14 , pytest 15 , pythonOlder 16 + , requests 17 , scipy 18 , toolz 19 , xmltodict 20 }: 21 22 buildPythonPackage rec { 23 + version = "1.4.4"; 24 pname = "atomman"; 25 format = "setuptools"; 26 ··· 30 owner = "usnistgov"; 31 repo = "atomman"; 32 rev = "v${version}"; 33 + hash = "sha256-iLAB0KMtrTCyGpx+81QfHDPVDhq8OA6CDL/ipVRpyo0="; 34 }; 35 36 propagatedBuildInputs = [ ··· 41 numpy 42 pandas 43 potentials 44 + requests 45 scipy 46 toolz 47 xmltodict 48 ]; 49 50 checkInputs = [ 51 + ase 52 + phonopy 53 + pymatgen 54 pytest 55 ]; 56 57 checkPhase = '' 58 # pytestCheckHook doesn't work 59 + pytest tests -k "not test_rootdir and not test_version \ 60 + and not test_atomic_mass and not imageflags" \ 61 + --ignore tests/plot/test_interpolate.py 62 ''; 63 64 pythonImportsCheck = [
+11 -4
pkgs/development/python-modules/cloudflare/default.nix
··· 7 , future 8 , pyyaml 9 , jsonlines 10 }: 11 12 buildPythonPackage rec { 13 pname = "cloudflare"; 14 - version = "2.8.15"; 15 16 src = fetchPypi { 17 inherit pname version; 18 - sha256 = "1f47bd324f80e91487dea2c79be934b1dc612bcfa63e784dcf74c6a2f52a41cc"; 19 }; 20 21 propagatedBuildInputs = [ ··· 29 30 # no tests associated with package 31 doCheck = false; 32 - pythonImportsCheck = [ "CloudFlare" ]; 33 34 meta = with lib; { 35 description = "Python wrapper for the Cloudflare v4 API"; 36 homepage = "https://github.com/cloudflare/python-cloudflare"; 37 license = licenses.mit; 38 - maintainers = [ maintainers.costrouc ]; 39 }; 40 }
··· 7 , future 8 , pyyaml 9 , jsonlines 10 + , pythonOlder 11 }: 12 13 buildPythonPackage rec { 14 pname = "cloudflare"; 15 + version = "2.9.8"; 16 + format = "setuptools"; 17 + 18 + disabled = pythonOlder "3.7"; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-rIIzwsGQidTRqE0eba7X/xicsMtWPxZ2PCGr6OUy+7U="; 23 }; 24 25 propagatedBuildInputs = [ ··· 33 34 # no tests associated with package 35 doCheck = false; 36 + 37 + pythonImportsCheck = [ 38 + "CloudFlare" 39 + ]; 40 41 meta = with lib; { 42 description = "Python wrapper for the Cloudflare v4 API"; 43 homepage = "https://github.com/cloudflare/python-cloudflare"; 44 license = licenses.mit; 45 + maintainers = with maintainers; [ costrouc ]; 46 }; 47 }
+2 -2
pkgs/development/python-modules/deep-translator/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "deep-translator"; 5 - version = "1.8.1"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "sha256-Oi5dzrC19PnlExCOgu+bT5n3/XwgJkDirzl8ra8w7Nw="; 10 }; 11 12 propagatedBuildInputs = [
··· 2 3 buildPythonPackage rec { 4 pname = "deep-translator"; 5 + version = "1.8.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-9YTDvrm5Q8k5G7qDF05651IxMV1BeTcgIAMSxU/bwM0="; 10 }; 11 12 propagatedBuildInputs = [
+12 -4
pkgs/development/python-modules/dotmap/default.nix
··· 2 , buildPythonPackage 3 , fetchPypi 4 , pytestCheckHook 5 }: 6 7 buildPythonPackage rec { 8 pname = "dotmap"; 9 - version = "1.3.26"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "cc87300f3a61d70f2bd18103ea2747dea846a2381a8321f43ce65cbd7afdfe3d"; 14 }; 15 16 checkInputs = [ 17 pytestCheckHook 18 ]; 19 20 - pytestFlagsArray = [ "dotmap/test.py" ]; 21 22 - pythonImportsCheck = [ "dotmap" ]; 23 24 meta = with lib; { 25 description = "Python for dot-access dictionaries";
··· 2 , buildPythonPackage 3 , fetchPypi 4 , pytestCheckHook 5 + , pythonOlder 6 }: 7 8 buildPythonPackage rec { 9 pname = "dotmap"; 10 + version = "1.3.27"; 11 + format = "setuptools"; 12 + 13 + disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-gHCQIN8CIeF8TgHWeQu8GCRxK1aQFJJ/d7jZurxxMik="; 18 }; 19 20 checkInputs = [ 21 pytestCheckHook 22 ]; 23 24 + pytestFlagsArray = [ 25 + "dotmap/test.py" 26 + ]; 27 28 + pythonImportsCheck = [ 29 + "dotmap" 30 + ]; 31 32 meta = with lib; { 33 description = "Python for dot-access dictionaries";
+2 -2
pkgs/development/python-modules/easygui/default.nix
··· 2 3 buildPythonPackage rec { 4 pname = "easygui"; 5 - version = "0.98.2"; 6 7 src = fetchPypi { 8 inherit pname version; 9 - sha256 = "073f728ca88a77b74f404446fb8ec3004945427677c5618bd00f70c1b999fef2"; 10 }; 11 12 postPatch = ''
··· 2 3 buildPythonPackage rec { 4 pname = "easygui"; 5 + version = "0.98.3"; 6 7 src = fetchPypi { 8 inherit pname version; 9 + sha256 = "sha256-1lP/ee4fQvY7WgkPL5jOAjNdhq2JY7POJmGAXK/pmgQ="; 10 }; 11 12 postPatch = ''
+2 -2
pkgs/development/python-modules/fastapi/default.nix
··· 19 20 buildPythonPackage rec { 21 pname = "fastapi"; 22 - version = "0.75.0"; 23 format = "flit"; 24 25 disabled = pythonOlder "3.6"; ··· 28 owner = "tiangolo"; 29 repo = pname; 30 rev = version; 31 - sha256 = "sha256-LCdScvQUdwOM8Don/5n/49bKrivT+bkhqWcBNku4fso="; 32 }; 33 34 propagatedBuildInputs = [
··· 19 20 buildPythonPackage rec { 21 pname = "fastapi"; 22 + version = "0.75.1"; 23 format = "flit"; 24 25 disabled = pythonOlder "3.6"; ··· 28 owner = "tiangolo"; 29 repo = pname; 30 rev = version; 31 + sha256 = "sha256-tSZ5isMzDhDsuVNQdoYXG0IYkgCvdVdARtFXELNjTtk="; 32 }; 33 34 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/glean-parser/default.nix
··· 15 16 buildPythonPackage rec { 17 pname = "glean-parser"; 18 - version = "5.1.1"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; ··· 23 src = fetchPypi { 24 pname = "glean_parser"; 25 inherit version; 26 - hash = "sha256-zUiF0buHBe0BaaeIRJcRoT/g+NhWv6XTuhCZ6WPrris="; 27 }; 28 29 nativeBuildInputs = [
··· 15 16 buildPythonPackage rec { 17 pname = "glean-parser"; 18 + version = "5.1.2"; 19 format = "setuptools"; 20 21 disabled = pythonOlder "3.6"; ··· 23 src = fetchPypi { 24 pname = "glean_parser"; 25 inherit version; 26 + hash = "sha256-PjOMNUnrz0kDfYEXv5Ni/9RIHn4Yylle6NJOK1Rb3SY="; 27 }; 28 29 nativeBuildInputs = [
+2 -7
pkgs/development/python-modules/idasen/default.nix
··· 12 13 buildPythonPackage rec { 14 pname = "idasen"; 15 - version = "0.8.2"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "newAM"; 22 repo = "idasen"; 23 rev = "v${version}"; 24 - hash = "sha256-s8CnYMUVl2VbGbVxICSaKH5DxTA+NP/zPX1z7vfMqi4="; 25 }; 26 27 nativeBuildInputs = [ ··· 38 pytestCheckHook 39 pytest-asyncio 40 ]; 41 - 42 - postPatch = '' 43 - substituteInPlace pyproject.toml \ 44 - --replace 'voluptuous = "^0.12"' 'voluptuous = "*"' 45 - ''; 46 47 pythonImportsCheck = [ 48 "idasen"
··· 12 13 buildPythonPackage rec { 14 pname = "idasen"; 15 + version = "0.8.3"; 16 format = "pyproject"; 17 18 disabled = pythonOlder "3.8"; ··· 21 owner = "newAM"; 22 repo = "idasen"; 23 rev = "v${version}"; 24 + hash = "sha256-tjA7qgU3JYvwSdDH+aWrmKBX1Q9J5/UT7KjiTBxvKAE="; 25 }; 26 27 nativeBuildInputs = [ ··· 38 pytestCheckHook 39 pytest-asyncio 40 ]; 41 42 pythonImportsCheck = [ 43 "idasen"
+20 -6
pkgs/development/python-modules/libthumbor/default.nix
··· 4 , django 5 , six 6 , pycrypto 7 }: 8 9 buildPythonPackage rec { 10 pname = "libthumbor"; 11 - version = "2.0.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "ed4fe5f27f8f90e7285b7e6dce99c1b67d43a140bf370e989080b43d80ce25f0"; 16 }; 17 18 - buildInputs = [ django ]; 19 - propagatedBuildInputs = [ six pycrypto ]; 20 21 doCheck = false; 22 23 meta = with lib; { 24 - description = "libthumbor is the python extension to thumbor"; 25 homepage = "https://github.com/heynemann/libthumbor"; 26 license = licenses.mit; 27 }; 28 - 29 }
··· 4 , django 5 , six 6 , pycrypto 7 + , pythonOlder 8 }: 9 10 buildPythonPackage rec { 11 pname = "libthumbor"; 12 + version = "2.0.2"; 13 + format = "setuptools"; 14 + 15 + disabled = pythonOlder "3.7"; 16 17 src = fetchPypi { 18 inherit pname version; 19 + hash = "sha256-1PsiFZrTDVQqy8A3nkaM5LdPiBoriRgHkklTOiczN+g="; 20 }; 21 22 + buildInputs = [ 23 + django 24 + ]; 25 + 26 + propagatedBuildInputs = [ 27 + six 28 + pycrypto 29 + ]; 30 31 doCheck = false; 32 33 + pythonImportsCheck = [ 34 + "libthumbor" 35 + ]; 36 + 37 meta = with lib; { 38 + description = "Python extension to thumbor"; 39 homepage = "https://github.com/heynemann/libthumbor"; 40 license = licenses.mit; 41 + maintainers = with maintainers; [ ]; 42 }; 43 }
+17 -1
pkgs/development/python-modules/maestral/default.nix
··· 3 , fetchFromGitHub 4 , pythonOlder 5 , python 6 - , click, desktop-notifier, dropbox, fasteners, keyring, keyrings-alt, packaging, pathspec, Pyro5, requests, setuptools, sdnotify, survey, watchdog 7 , importlib-metadata 8 , pytestCheckHook 9 }: 10 11 buildPythonPackage rec { ··· 65 ]; 66 67 pythonImportsCheck = [ "maestral" ]; 68 69 meta = with lib; { 70 description = "Open-source Dropbox client for macOS and Linux";
··· 3 , fetchFromGitHub 4 , pythonOlder 5 , python 6 + , click 7 + , desktop-notifier 8 + , dropbox 9 + , fasteners 10 + , keyring 11 + , keyrings-alt 12 + , packaging 13 + , pathspec 14 + , Pyro5 15 + , requests 16 + , setuptools 17 + , sdnotify 18 + , survey 19 + , watchdog 20 , importlib-metadata 21 , pytestCheckHook 22 + , nixosTests 23 }: 24 25 buildPythonPackage rec { ··· 79 ]; 80 81 pythonImportsCheck = [ "maestral" ]; 82 + 83 + passthru.tests.maestral = nixosTests.maestral; 84 85 meta = with lib; { 86 description = "Open-source Dropbox client for macOS and Linux";
+2 -2
pkgs/development/python-modules/pex/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 - version = "2.1.74"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-SyKOwESn+0pFtm2GBFcS+kzIuv5cNXcayTtI7OyFpQg="; 18 }; 19 20 nativeBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "pex"; 10 + version = "2.1.75"; 11 format = "flit"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-G5JE4/ZWZYo8Fpy3ZhIaWNzGfEkWb9qA9vL3UVTqf0Q="; 18 }; 19 20 nativeBuildInputs = [
+4 -2
pkgs/development/python-modules/potentials/default.nix
··· 16 , scipy 17 , unidecode 18 , xmltodict 19 }: 20 21 buildPythonPackage rec { 22 - version = "0.3.2"; 23 pname = "potentials"; 24 format = "setuptools"; 25 ··· 27 28 src = fetchPypi { 29 inherit pname version; 30 - sha256 = "sha256-u++ClAAc96u7k8w756sFR4oCtIOgERQ7foklxWWPprY="; 31 }; 32 33 propagatedBuildInputs = [ ··· 44 scipy 45 unidecode 46 xmltodict 47 ]; 48 49 # Project has no tests
··· 16 , scipy 17 , unidecode 18 , xmltodict 19 + , yabadaba 20 }: 21 22 buildPythonPackage rec { 23 + version = "0.3.3"; 24 pname = "potentials"; 25 format = "setuptools"; 26 ··· 28 29 src = fetchPypi { 30 inherit pname version; 31 + hash = "sha256-kj2RDls5ziCH+AF982h8TplZccwdcna3BQMoBXAbOHE="; 32 }; 33 34 propagatedBuildInputs = [ ··· 45 scipy 46 unidecode 47 xmltodict 48 + yabadaba 49 ]; 50 51 # Project has no tests
+2 -2
pkgs/development/python-modules/py3status/default.nix
··· 24 25 buildPythonPackage rec { 26 pname = "py3status"; 27 - version = "3.42"; 28 29 src = fetchPypi { 30 inherit pname version; 31 - sha256 = "sha256-2/YT36X4UvmmhiaxyJBtCKA3QuibYtReTS6MQ3YGV+c="; 32 }; 33 34 doCheck = false;
··· 24 25 buildPythonPackage rec { 26 pname = "py3status"; 27 + version = "3.43"; 28 29 src = fetchPypi { 30 inherit pname version; 31 + sha256 = "sha256-H37Jcd7wZmDiCn7fk0SmlWYj46D3w/B9BdsEwqgEBjw="; 32 }; 33 34 doCheck = false;
+14 -10
pkgs/development/python-modules/pymatgen/default.nix
··· 1 - { lib, buildPythonPackage, fetchFromGitHub 2 , cython 3 - , enum34 4 , glibcLocales 5 , matplotlib 6 , monty ··· 11 , plotly 12 , pybtex 13 , pydispatcher 14 , requests 15 , ruamel-yaml 16 , scipy 17 - , six 18 , spglib 19 , sympy 20 , tabulate ··· 23 24 buildPythonPackage rec { 25 pname = "pymatgen"; 26 - version = "2022.2.7"; 27 28 - # sdist doesn't include c files 29 src = fetchFromGitHub { 30 owner = "materialsproject"; 31 repo = "pymatgen"; 32 rev= "v${version}"; 33 - sha256 = "sha256-92Dxmo1Z9LR2caSOftIf1I6jeZmqDe3SqhhoCofWraw="; 34 }; 35 36 nativeBuildInputs = [ ··· 39 ]; 40 41 propagatedBuildInputs = [ 42 - enum34 43 matplotlib 44 monty 45 networkx ··· 52 requests 53 ruamel-yaml 54 scipy 55 - six 56 spglib 57 sympy 58 tabulate 59 uncertainties 60 ]; 61 62 - # No tests in pypi tarball. 63 doCheck = false; 64 - pythonImportsCheck = [ "pymatgen" ]; 65 66 meta = with lib; { 67 description = "A robust materials analysis code that defines core object representations for structures and molecules";
··· 1 + { lib 2 + , buildPythonPackage 3 + , fetchFromGitHub 4 , cython 5 , glibcLocales 6 , matplotlib 7 , monty ··· 12 , plotly 13 , pybtex 14 , pydispatcher 15 + , pythonOlder 16 , requests 17 , ruamel-yaml 18 , scipy 19 , spglib 20 , sympy 21 , tabulate ··· 24 25 buildPythonPackage rec { 26 pname = "pymatgen"; 27 + version = "2022.3.29"; 28 + format = "setuptools"; 29 30 + disabled = pythonOlder "3.8"; 31 + 32 src = fetchFromGitHub { 33 owner = "materialsproject"; 34 repo = "pymatgen"; 35 rev= "v${version}"; 36 + hash = "sha256-B2piRWx9TfKlGTPOAAGsq2GxyfHIRBVFpk6dxES0WF0="; 37 }; 38 39 nativeBuildInputs = [ ··· 42 ]; 43 44 propagatedBuildInputs = [ 45 matplotlib 46 monty 47 networkx ··· 54 requests 55 ruamel-yaml 56 scipy 57 spglib 58 sympy 59 tabulate 60 uncertainties 61 ]; 62 63 + # Tests are not detected by pytest 64 doCheck = false; 65 + 66 + pythonImportsCheck = [ 67 + "pymatgen" 68 + ]; 69 70 meta = with lib; { 71 description = "A robust materials analysis code that defines core object representations for structures and molecules";
+2 -2
pkgs/development/python-modules/spacy-loggers/default.nix
··· 8 9 buildPythonPackage rec { 10 pname = "spacy-loggers"; 11 - version = "1.0.1"; 12 13 src = fetchPypi { 14 inherit pname version; 15 - sha256 = "sha256-F9DiSbLmxlRsSfxlYaCmhfkajtvySlsrd1nq1EPHRlQ="; 16 }; 17 18 propagatedBuildInputs = [
··· 8 9 buildPythonPackage rec { 10 pname = "spacy-loggers"; 11 + version = "1.0.2"; 12 13 src = fetchPypi { 14 inherit pname version; 15 + sha256 = "sha256-511E9M+Z5nY9cTLKfIxCDgqSeQIioIvI654k6iwTU24="; 16 }; 17 18 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/stripe/default.nix
··· 7 8 buildPythonPackage rec { 9 pname = "stripe"; 10 - version = "2.69.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 - hash = "sha256-iDB4/FvTc34dBYDDAIMjxYbaNreuhHmle40WE0DTy58="; 18 }; 19 20 propagatedBuildInputs = [
··· 7 8 buildPythonPackage rec { 9 pname = "stripe"; 10 + version = "2.70.0"; 11 format = "setuptools"; 12 13 disabled = pythonOlder "3.7"; 14 15 src = fetchPypi { 16 inherit pname version; 17 + hash = "sha256-7YiX9o5rrDOYzJmOtWNFUYQGMNZQTAAm/P0K2RyadKQ="; 18 }; 19 20 propagatedBuildInputs = [
+2 -2
pkgs/development/python-modules/thrift/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "thrift"; 9 - version = "0.15.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - sha256 = "87c8205a71cf8bbb111cb99b1f7495070fbc9cabb671669568854210da5b3e29"; 14 }; 15 16 propagatedBuildInputs = [ six ];
··· 6 7 buildPythonPackage rec { 8 pname = "thrift"; 9 + version = "0.16.0"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + sha256 = "sha256-K1tkiPze0h+dMSqiPJ/2oBldD2ribdvVrZ4+Jd/BRAg="; 14 }; 15 16 propagatedBuildInputs = [ six ];
+2 -2
pkgs/development/python-modules/types-freezegun/default.nix
··· 5 6 buildPythonPackage rec { 7 pname = "types-freezegun"; 8 - version = "1.1.7"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 - hash = "sha256-6dEyfpjGyqj2XeABje0nQ0fo40GY1ZqppcJK2SZdXl4="; 14 }; 15 16 # Module doesn't have tests
··· 5 6 buildPythonPackage rec { 7 pname = "types-freezegun"; 8 + version = "1.1.8"; 9 format = "setuptools"; 10 11 src = fetchPypi { 12 inherit pname version; 13 + hash = "sha256-9LsIxUqkaBbHehtceipU9Tk8POWOfUAC5n+QgbQR6SE="; 14 }; 15 16 # Module doesn't have tests
+2 -2
pkgs/development/python-modules/types-requests/default.nix
··· 6 7 buildPythonPackage rec { 8 pname = "types-requests"; 9 - version = "2.27.15"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 - sha256 = "sha256-LTcRg8U1II0syP50c9m0nDRMcHfrcDAutwhjj7hghqg="; 15 }; 16 17 propagatedBuildInputs = [
··· 6 7 buildPythonPackage rec { 8 pname = "types-requests"; 9 + version = "2.27.16"; 10 format = "setuptools"; 11 12 src = fetchPypi { 13 inherit pname version; 14 + sha256 = "sha256-yAEMGLKRp++2CxRS2+ElMLwlaT3WV+cMYoA/zcS//ps="; 15 }; 16 17 propagatedBuildInputs = [
+57
pkgs/development/python-modules/yabadaba/default.nix
···
··· 1 + { lib 2 + , buildPythonPackage 3 + , cdcs 4 + , datamodeldict 5 + , fetchFromGitHub 6 + , ipython 7 + , lxml 8 + , numpy 9 + , pandas 10 + , pymongo 11 + , pytestCheckHook 12 + , pythonOlder 13 + }: 14 + 15 + buildPythonPackage rec { 16 + pname = "yabadaba"; 17 + version = "0.1.2"; 18 + format = "setuptools"; 19 + 20 + disabled = pythonOlder "3.7"; 21 + 22 + src = fetchFromGitHub { 23 + owner = "usnistgov"; 24 + repo = pname; 25 + rev = "v${version}"; 26 + hash = "sha256-Svw15epiSMEGMuFuMLqX2C9YFGtRtdg7DW2OVLPRmNI="; 27 + }; 28 + 29 + propagatedBuildInputs = [ 30 + cdcs 31 + datamodeldict 32 + ipython 33 + lxml 34 + numpy 35 + pandas 36 + pymongo 37 + ]; 38 + 39 + checkInputs = [ 40 + pytestCheckHook 41 + ]; 42 + 43 + pythonImportsCheck = [ 44 + "yabadaba" 45 + ]; 46 + 47 + preCheck = '' 48 + export HOME=$(mktemp -d); 49 + ''; 50 + 51 + meta = with lib; { 52 + description = "Abstraction layer allowing for common interactions with databases and records"; 53 + homepage = "https://github.com/usnistgov/yabadaba"; 54 + license = licenses.mit; 55 + maintainers = with maintainers; [ fab ]; 56 + }; 57 + }
+2 -2
pkgs/development/python-modules/zigpy-deconz/default.nix
··· 11 12 buildPythonPackage rec { 13 pname = "zigpy-deconz"; 14 - version = "0.14.0"; 15 format = "setuptools"; 16 17 src = fetchFromGitHub { 18 owner = "zigpy"; 19 repo = pname; 20 rev = version; 21 - sha256 = "sha256-PctS09twk8SRK3pTJvQU8drsqhmrPnMge2WO+VY84U8="; 22 }; 23 24 propagatedBuildInputs = [
··· 11 12 buildPythonPackage rec { 13 pname = "zigpy-deconz"; 14 + version = "0.15.0"; 15 format = "setuptools"; 16 17 src = fetchFromGitHub { 18 owner = "zigpy"; 19 repo = pname; 20 rev = version; 21 + sha256 = "sha256-QLEyEoX3gbrY/zvFmB1eah1wuc4bHH4S0D1B2WNHxaM="; 22 }; 23 24 propagatedBuildInputs = [
+10 -7
pkgs/games/space-cadet-pinball/default.nix
··· 38 SDL2 39 SDL2_mixer 40 makeWrapper 41 - Cocoa 42 - ]; 43 44 - preBuild = '' 45 - mkdir -p $out/lib/SpaceCadetPinball 46 mkdir -p $out/bin 47 ''; 48 49 - installPhase = '' 50 install ${assets}/*.{DAT,DOC,MID,BMP,INF} ${assets}/Sounds/*.WAV $out/lib/SpaceCadetPinball 51 52 # Assets are loaded from the directory of the program is stored in 53 # https://github.com/k4zmu2a/SpaceCadetPinball/blob/de13d4e326b2dfa8e6dfb59815c0a8b9657f942d/SpaceCadetPinball/winmain.cpp#L119 54 - cp ../bin/SpaceCadetPinball $out/bin 55 - cp $out/bin/SpaceCadetPinball $out/lib/SpaceCadetPinball 56 makeWrapper $out/lib/SpaceCadetPinball/SpaceCadetPinball $out/bin/SpaceCadetPinball 57 ''; 58
··· 38 SDL2 39 SDL2_mixer 40 makeWrapper 41 + ] ++ lib.optional stdenv.isDarwin Cocoa; 42 43 + # Darwin needs a custom installphase since it is excluded from the cmake install 44 + # https://github.com/k4zmu2a/SpaceCadetPinball/blob/0f88e43ba261bc21fa5c3ef9d44969a2a079d0de/CMakeLists.txt#L221 45 + installPhase = lib.optionalString stdenv.isDarwin '' 46 + runHook preInstall 47 mkdir -p $out/bin 48 + install ../bin/SpaceCadetPinball $out/bin 49 + runHook postInstall 50 ''; 51 52 + postInstall = '' 53 + mkdir -p $out/lib/SpaceCadetPinball 54 install ${assets}/*.{DAT,DOC,MID,BMP,INF} ${assets}/Sounds/*.WAV $out/lib/SpaceCadetPinball 55 56 # Assets are loaded from the directory of the program is stored in 57 # https://github.com/k4zmu2a/SpaceCadetPinball/blob/de13d4e326b2dfa8e6dfb59815c0a8b9657f942d/SpaceCadetPinball/winmain.cpp#L119 58 + mv $out/bin/SpaceCadetPinball $out/lib/SpaceCadetPinball 59 makeWrapper $out/lib/SpaceCadetPinball/SpaceCadetPinball $out/bin/SpaceCadetPinball 60 ''; 61
+3 -3
pkgs/tools/misc/zellij/default.nix
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "zellij"; 18 - version = "0.26.1"; 19 20 src = fetchFromGitHub { 21 owner = "zellij-org"; 22 repo = "zellij"; 23 rev = "v${version}"; 24 - sha256 = "sha256-ngCE1DhbbuOu07R69gSlFvDKl5EFtTGOkfr5e4u4Dkw="; 25 }; 26 27 - cargoSha256 = "sha256-lRnxZiJiq601oOXkxZqVNPXc0miK3TsAyGeVTjTxdhw="; 28 29 nativeBuildInputs = [ 30 mandown
··· 15 16 rustPlatform.buildRustPackage rec { 17 pname = "zellij"; 18 + version = "0.27.0"; 19 20 src = fetchFromGitHub { 21 owner = "zellij-org"; 22 repo = "zellij"; 23 rev = "v${version}"; 24 + sha256 = "sha256-iQ+Z1A/wiui2IHuK35e6T/44TYaf6+KbaDl5GfVF2vo="; 25 }; 26 27 + cargoSha256 = "sha256-DMHIvqClBpBplvqqXM2dUOumO+Ean4yAHWDplJ9PaUM="; 28 29 nativeBuildInputs = [ 30 mandown
+2
pkgs/top-level/python-packages.nix
··· 10900 10901 xxhash = callPackage ../development/python-modules/xxhash { }; 10902 10903 yahooweather = callPackage ../development/python-modules/yahooweather { }; 10904 10905 yalesmartalarmclient = callPackage ../development/python-modules/yalesmartalarmclient { };
··· 10900 10901 xxhash = callPackage ../development/python-modules/xxhash { }; 10902 10903 + yabadaba = callPackage ../development/python-modules/yabadaba { }; 10904 + 10905 yahooweather = callPackage ../development/python-modules/yahooweather { }; 10906 10907 yalesmartalarmclient = callPackage ../development/python-modules/yalesmartalarmclient { };