elmPackages.elm-pages: init at 2.1.11

`node-packages.nix` was regenerated after having run `generate-node-packages.sh`
in order to pick up dependencies for `elm-pages`. In addition, we add `elm`,
`elm-review`, and `elm-optimize-level-2` to the `PATH` for `elm-pages` since those
are needed at runtime.

A patch is also included to fix an issue where files are copied from the `nix-store`
as read-only (credit to @bcardiff for that fix). An upstream issue
https://github.com/dillonkearns/elm-pages/issues/305 has been opened to track this.

+1162 -406
+26
pkgs/development/compilers/elm/default.nix
··· 212 212 }; 213 213 }; 214 214 215 + elm-pages = nodePkgs."elm-pages".overrideAttrs ( 216 + old: { 217 + buildInputs = old.buildInputs ++ [ pkgs.makeWrapper ]; 218 + 219 + # can't use `patches = [ <patch_file> ]` with a nodePkgs derivation; 220 + # need to patch in one of the build phases instead. 221 + # see upstream issue https://github.com/dillonkearns/elm-pages/issues/305 for dealing with the read-only problem 222 + preFixup = '' 223 + patch $out/lib/node_modules/elm-pages/generator/src/codegen.js ${./packages/elm-pages-fix-read-only.patch} 224 + ''; 225 + 226 + postFixup = '' 227 + wrapProgram $out/bin/elm-pages --prefix PATH : ${ 228 + with pkgs.elmPackages; lib.makeBinPath [ elm elm-review elm-optimize-level-2 ] 229 + } 230 + ''; 231 + 232 + meta = with lib; nodePkgs."elm-pages".meta // { 233 + description = "A statically typed site generator for Elm."; 234 + homepage = "https://github.com/dillonkearns/elm-pages"; 235 + license = licenses.bsd3; 236 + maintainers = [ maintainers.turbomack maintainers.jali-clarke ]; 237 + }; 238 + } 239 + ); 240 + 215 241 inherit (nodePkgs) elm-doc-preview elm-live elm-upgrade elm-xref elm-analyse elm-git-install; 216 242 }) 217 243 )
+59
pkgs/development/compilers/elm/packages/elm-pages-fix-read-only.patch
··· 1 + diff --git a/generator/src/codegen.js b/generator/src/codegen.js 2 + index a0ef8806e..fe00ac904 100644 3 + --- a/generator/src/codegen.js 4 + +++ b/generator/src/codegen.js 5 + @@ -20,33 +20,33 @@ async function generate(basePath) { 6 + 7 + const uiFileContent = elmPagesUiFile(); 8 + await Promise.all([ 9 + - fs.promises.copyFile( 10 + - path.join(__dirname, `./Page.elm`), 11 + - `./.elm-pages/Page.elm` 12 + + fs.promises.writeFile( 13 + + `./.elm-pages/Page.elm`, 14 + + fs.readFileSync(path.join(__dirname, `./Page.elm`)) 15 + ), 16 + - fs.promises.copyFile( 17 + - path.join(__dirname, `./elm-application.json`), 18 + - `./elm-stuff/elm-pages/elm-application.json` 19 + + fs.promises.writeFile( 20 + + `./elm-stuff/elm-pages/elm-application.json`, 21 + + fs.readFileSync(path.join(__dirname, `./elm-application.json`)) 22 + ), 23 + - fs.promises.copyFile( 24 + - path.join(__dirname, `./Page.elm`), 25 + - `./elm-stuff/elm-pages/.elm-pages/Page.elm` 26 + + fs.promises.writeFile( 27 + + `./elm-stuff/elm-pages/.elm-pages/Page.elm`, 28 + + fs.readFileSync(path.join(__dirname, `./Page.elm`)) 29 + ), 30 + - fs.promises.copyFile( 31 + - path.join(__dirname, `./SharedTemplate.elm`), 32 + - `./.elm-pages/SharedTemplate.elm` 33 + + fs.promises.writeFile( 34 + + `./.elm-pages/SharedTemplate.elm`, 35 + + fs.readFileSync(path.join(__dirname, `./SharedTemplate.elm`)) 36 + ), 37 + - fs.promises.copyFile( 38 + - path.join(__dirname, `./SharedTemplate.elm`), 39 + - `./elm-stuff/elm-pages/.elm-pages/SharedTemplate.elm` 40 + + fs.promises.writeFile( 41 + + `./elm-stuff/elm-pages/.elm-pages/SharedTemplate.elm`, 42 + + fs.readFileSync(path.join(__dirname, `./SharedTemplate.elm`)) 43 + ), 44 + - fs.promises.copyFile( 45 + - path.join(__dirname, `./SiteConfig.elm`), 46 + - `./.elm-pages/SiteConfig.elm` 47 + + fs.promises.writeFile( 48 + + `./.elm-pages/SiteConfig.elm`, 49 + + fs.readFileSync(path.join(__dirname, `./SiteConfig.elm`)) 50 + ), 51 + - fs.promises.copyFile( 52 + - path.join(__dirname, `./SiteConfig.elm`), 53 + - `./elm-stuff/elm-pages/.elm-pages/SiteConfig.elm` 54 + + fs.promises.writeFile( 55 + + `./elm-stuff/elm-pages/.elm-pages/SiteConfig.elm`, 56 + + fs.readFileSync(path.join(__dirname, `./SiteConfig.elm`)) 57 + ), 58 + fs.promises.writeFile("./.elm-pages/Pages.elm", uiFileContent), 59 + // write `Pages.elm` with cli interface
+1 -1
pkgs/development/compilers/elm/packages/node-composition.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.11.1. Do not edit! 2 2 3 3 {pkgs ? import <nixpkgs> { 4 4 inherit system;
+1
pkgs/development/compilers/elm/packages/node-packages.json
··· 10 10 "elm-xref", 11 11 "create-elm-app", 12 12 "elm-optimize-level-2", 13 + "elm-pages", 13 14 "elm-review", 14 15 "elm-git-install" 15 16 ]
+1075 -405
pkgs/development/compilers/elm/packages/node-packages.nix
··· 1 - # This file has been generated by node2nix 1.9.0. Do not edit! 1 + # This file has been generated by node2nix 1.11.1. Do not edit! 2 2 3 3 {nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}: 4 4 ··· 49 49 sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w=="; 50 50 }; 51 51 }; 52 - "@babel/generator-7.17.10" = { 52 + "@babel/generator-7.18.2" = { 53 53 name = "_at_babel_slash_generator"; 54 54 packageName = "@babel/generator"; 55 - version = "7.17.10"; 55 + version = "7.18.2"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@babel/generator/-/generator-7.17.10.tgz"; 58 - sha512 = "46MJZZo9y3o4kmhBVc7zW7i8dtR1oIK/sdO5NcfcZRhTGYi+KKJRtHNgsU6c4VUcJmUNV/LQdebD/9Dlv4K+Tg=="; 57 + url = "https://registry.npmjs.org/@babel/generator/-/generator-7.18.2.tgz"; 58 + sha512 = "W1lG5vUwFvfMd8HVXqdfbuG7RuaSrTCCD8cl8fP8wOivdbtbIg2Db3IWUcgvfxKbbn6ZBGYRW/Zk1MIwK49mgw=="; 59 59 }; 60 60 }; 61 61 "@babel/helper-annotate-as-pure-7.16.7" = { ··· 76 76 sha512 = "C6FdbRaxYjwVu/geKW4ZeQ0Q31AftgRcdSnZ5/jsH6BzCJbtvXvhpfkbkThYSuutZA7nCXpPR6AD9zd1dprMkA=="; 77 77 }; 78 78 }; 79 - "@babel/helper-compilation-targets-7.17.10" = { 79 + "@babel/helper-compilation-targets-7.18.2" = { 80 80 name = "_at_babel_slash_helper-compilation-targets"; 81 81 packageName = "@babel/helper-compilation-targets"; 82 - version = "7.17.10"; 82 + version = "7.18.2"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.17.10.tgz"; 85 - sha512 = "gh3RxjWbauw/dFiU/7whjd0qN9K6nPJMqe6+Er7rOavFh0CQUSwhAE3IcTho2rywPJFxej6TUUHDkWcYI6gGqQ=="; 84 + url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.18.2.tgz"; 85 + sha512 = "s1jnPotJS9uQnzFtiZVBUxe67CuBa679oWFHpxYYnTpRL/1ffhyX44R9uYiXoa/pLXcY9H2moJta0iaanlk/rQ=="; 86 86 }; 87 87 }; 88 - "@babel/helper-create-class-features-plugin-7.17.9" = { 88 + "@babel/helper-create-class-features-plugin-7.18.0" = { 89 89 name = "_at_babel_slash_helper-create-class-features-plugin"; 90 90 packageName = "@babel/helper-create-class-features-plugin"; 91 - version = "7.17.9"; 91 + version = "7.18.0"; 92 92 src = fetchurl { 93 - url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.17.9.tgz"; 94 - sha512 = "kUjip3gruz6AJKOq5i3nC6CoCEEF/oHH3cp6tOZhB+IyyyPyW0g1Gfsxn3mkk6S08pIA2y8GQh609v9G/5sHVQ=="; 93 + url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.18.0.tgz"; 94 + sha512 = "Kh8zTGR9de3J63e5nS0rQUdRs/kbtwoeQQ0sriS0lItjC96u8XXZN6lKpuyWd2coKSU13py/y+LTmThLuVX0Pg=="; 95 95 }; 96 96 }; 97 - "@babel/helper-create-regexp-features-plugin-7.17.0" = { 97 + "@babel/helper-create-regexp-features-plugin-7.17.12" = { 98 98 name = "_at_babel_slash_helper-create-regexp-features-plugin"; 99 99 packageName = "@babel/helper-create-regexp-features-plugin"; 100 - version = "7.17.0"; 100 + version = "7.17.12"; 101 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=="; 102 + url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.17.12.tgz"; 103 + sha512 = "b2aZrV4zvutr9AIa6/gA3wsZKRwTKYoDxYiFKcESS3Ug2GTXzwBEvMuuFLhCQpEnRXs1zng4ISAXSUxxKBIcxw=="; 104 104 }; 105 105 }; 106 - "@babel/helper-environment-visitor-7.16.7" = { 106 + "@babel/helper-environment-visitor-7.18.2" = { 107 107 name = "_at_babel_slash_helper-environment-visitor"; 108 108 packageName = "@babel/helper-environment-visitor"; 109 - version = "7.16.7"; 109 + version = "7.18.2"; 110 110 src = fetchurl { 111 - url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.16.7.tgz"; 112 - sha512 = "SLLb0AAn6PkUeAfKJCCOl9e1R53pQlGAfc4y4XuMRZfqeMYLE0dM1LMhqbGAlGQY0lfw5/ohoYWAe9V1yibRag=="; 111 + url = "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.2.tgz"; 112 + sha512 = "14GQKWkX9oJzPiQQ7/J36FTXcD4kSp8egKjO9nINlSKiHITRA9q/R74qu8S9xlc/b/yjsJItQUeeh3xnGN0voQ=="; 113 113 }; 114 114 }; 115 115 "@babel/helper-explode-assignable-expression-7.16.7" = { ··· 157 157 sha512 = "LVtS6TqjJHFc+nYeITRo6VLXve70xmq7wPhWTqDJusJEgGmkAACWwMiTNrvfoQo6hEhFwAIixNkvB0jPXDL8Wg=="; 158 158 }; 159 159 }; 160 - "@babel/helper-module-transforms-7.17.7" = { 160 + "@babel/helper-module-transforms-7.18.0" = { 161 161 name = "_at_babel_slash_helper-module-transforms"; 162 162 packageName = "@babel/helper-module-transforms"; 163 - version = "7.17.7"; 163 + version = "7.18.0"; 164 164 src = fetchurl { 165 - url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.17.7.tgz"; 166 - sha512 = "VmZD99F3gNTYB7fJRDTi+u6l/zxY0BE6OIxPSU7a50s6ZUQkHwSDmV92FfM+oCG0pZRVojGYhkR8I0OGeCVREw=="; 165 + url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.18.0.tgz"; 166 + sha512 = "kclUYSUBIjlvnzN2++K9f2qzYKFgjmnmjwL4zlmU5f8ZtzgWe8s0rUPSTGy2HmK4P8T52MQsS+HTQAgZd3dMEA=="; 167 167 }; 168 168 }; 169 169 "@babel/helper-optimise-call-expression-7.16.7" = { ··· 175 175 sha512 = "EtgBhg7rd/JcnpZFXpBy0ze1YRfdm7BnBX4uKMBd3ixa3RGAE002JZB66FJyNH7g0F38U05pXmA5P8cBh7z+1w=="; 176 176 }; 177 177 }; 178 - "@babel/helper-plugin-utils-7.16.7" = { 178 + "@babel/helper-plugin-utils-7.17.12" = { 179 179 name = "_at_babel_slash_helper-plugin-utils"; 180 180 packageName = "@babel/helper-plugin-utils"; 181 - version = "7.16.7"; 181 + version = "7.17.12"; 182 182 src = fetchurl { 183 - url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.16.7.tgz"; 184 - sha512 = "Qg3Nk7ZxpgMrsox6HreY1ZNKdBq7K72tDSliA6dCl5f007jR4ne8iD5UzuNnCJH2xBf2BEEVGr+/OL6Gdp7RxA=="; 183 + url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.17.12.tgz"; 184 + sha512 = "JDkf04mqtN3y4iAbO1hv9U2ARpPyPL1zqyWs/2WG1pgSq9llHFjStX5jdxb84himgJm+8Ng+x0oiWF/nw/XQKA=="; 185 185 }; 186 186 }; 187 187 "@babel/helper-remap-async-to-generator-7.16.8" = { ··· 193 193 sha512 = "fm0gH7Flb8H51LqJHy3HJ3wnE1+qtYR2A99K06ahwrawLdOFsCEWjZOrYricXJHoPSudNKxrMBUPEIPxiIIvBw=="; 194 194 }; 195 195 }; 196 - "@babel/helper-replace-supers-7.16.7" = { 196 + "@babel/helper-replace-supers-7.18.2" = { 197 197 name = "_at_babel_slash_helper-replace-supers"; 198 198 packageName = "@babel/helper-replace-supers"; 199 - version = "7.16.7"; 199 + version = "7.18.2"; 200 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.16.7.tgz"; 202 - sha512 = "y9vsWilTNaVnVh6xiJfABzsNpgDPKev9HnAgz6Gb1p6UUwf9NepdlsV7VXGCftJM+jqD5f7JIEubcpLjZj5dBw=="; 201 + url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.18.2.tgz"; 202 + sha512 = "XzAIyxx+vFnrOxiQrToSUOzUOn0e1J2Li40ntddek1Y69AXUTXoDJ40/D5RdjFu7s7qHiaeoTiempZcbuVXh2Q=="; 203 203 }; 204 204 }; 205 - "@babel/helper-simple-access-7.17.7" = { 205 + "@babel/helper-simple-access-7.18.2" = { 206 206 name = "_at_babel_slash_helper-simple-access"; 207 207 packageName = "@babel/helper-simple-access"; 208 - version = "7.17.7"; 208 + version = "7.18.2"; 209 209 src = fetchurl { 210 - url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.17.7.tgz"; 211 - sha512 = "txyMCGroZ96i+Pxr3Je3lzEJjqwaRC9buMUgtomcrLe5Nd0+fk1h0LLA+ixUF5OW7AhHuQ7Es1WcQJZmZsz2XA=="; 210 + url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.18.2.tgz"; 211 + sha512 = "7LIrjYzndorDY88MycupkpQLKS1AFfsVRm2k/9PtKScSy5tZq0McZTj+DiMRynboZfIqOKvo03pmhTaUgiD6fQ=="; 212 212 }; 213 213 }; 214 214 "@babel/helper-skip-transparent-expression-wrappers-7.16.0" = { ··· 256 256 sha512 = "8RpyRVIAW1RcDDGTA+GpPAwV22wXCfKOoM9bet6TLkGIFTkRQSkH1nMQ5Yet4MpoXe1ZwHPVtNasc2w0uZMqnw=="; 257 257 }; 258 258 }; 259 - "@babel/helpers-7.17.9" = { 259 + "@babel/helpers-7.18.2" = { 260 260 name = "_at_babel_slash_helpers"; 261 261 packageName = "@babel/helpers"; 262 - version = "7.17.9"; 262 + version = "7.18.2"; 263 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.9.tgz"; 265 - sha512 = "cPCt915ShDWUEzEp3+UNRktO2n6v49l5RSnG9M5pS24hA+2FAc5si+Pn1i4VVbQQ+jh+bIZhPFQOJOzbrOYY1Q=="; 264 + url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.18.2.tgz"; 265 + sha512 = "j+d+u5xT5utcQSzrh9p+PaJX94h++KN+ng9b9WEJq7pkUPAd61FGqhjuUEdfknb3E/uDBb7ruwEeKkIxNJPIrg=="; 266 266 }; 267 267 }; 268 - "@babel/highlight-7.17.9" = { 268 + "@babel/highlight-7.17.12" = { 269 269 name = "_at_babel_slash_highlight"; 270 270 packageName = "@babel/highlight"; 271 - version = "7.17.9"; 271 + version = "7.17.12"; 272 272 src = fetchurl { 273 - url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.9.tgz"; 274 - sha512 = "J9PfEKCbFIv2X5bjTMiZu6Vf341N05QIY+d6FvVKynkG1S7G0j3I0QoRtWIrXhZ+/Nlb5Q0MzqL7TokEJ5BNHg=="; 273 + url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.17.12.tgz"; 274 + sha512 = "7yykMVF3hfZY2jsHZEEgLc+3x4o1O+fYyULu11GynEUQNwB6lua+IIQn1FiJxNucd5UlyJryrwsOh8PL9Sn8Qg=="; 275 275 }; 276 276 }; 277 - "@babel/parser-7.17.10" = { 277 + "@babel/parser-7.18.3" = { 278 278 name = "_at_babel_slash_parser"; 279 279 packageName = "@babel/parser"; 280 - version = "7.17.10"; 280 + version = "7.18.3"; 281 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/@babel/parser/-/parser-7.17.10.tgz"; 283 - sha512 = "n2Q6i+fnJqzOaq2VkdXxy2TCPCWQZHiCo0XqmrCvDWcZQKRyZzYi4Z0yxlBuN0w+r2ZHmre+Q087DSrw3pbJDQ=="; 282 + url = "https://registry.npmjs.org/@babel/parser/-/parser-7.18.3.tgz"; 283 + sha512 = "rL50YcEuHbbauAFAysNsJA4/f89fGTOBRNs9P81sniKnKAr4xULe5AecolcsKbi88xu0ByWYDj/S1AJ3FSFuSQ=="; 284 284 }; 285 285 }; 286 - "@babel/plugin-proposal-async-generator-functions-7.16.8" = { 286 + "@babel/plugin-proposal-async-generator-functions-7.17.12" = { 287 287 name = "_at_babel_slash_plugin-proposal-async-generator-functions"; 288 288 packageName = "@babel/plugin-proposal-async-generator-functions"; 289 - version = "7.16.8"; 289 + version = "7.17.12"; 290 290 src = fetchurl { 291 - url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.16.8.tgz"; 292 - sha512 = "71YHIvMuiuqWJQkebWJtdhQTfd4Q4mF76q2IX37uZPkG9+olBxsX+rH1vkhFto4UeJZ9dPY2s+mDvhDm1u2BGQ=="; 291 + url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.17.12.tgz"; 292 + sha512 = "RWVvqD1ooLKP6IqWTA5GyFVX2isGEgC5iFxKzfYOIy/QEFdxYyCybBDtIGjipHpb9bDWHzcqGqFakf+mVmBTdQ=="; 293 293 }; 294 294 }; 295 - "@babel/plugin-proposal-class-properties-7.16.7" = { 295 + "@babel/plugin-proposal-class-properties-7.17.12" = { 296 296 name = "_at_babel_slash_plugin-proposal-class-properties"; 297 297 packageName = "@babel/plugin-proposal-class-properties"; 298 - version = "7.16.7"; 298 + version = "7.17.12"; 299 299 src = fetchurl { 300 - url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.16.7.tgz"; 301 - sha512 = "IobU0Xme31ewjYOShSIqd/ZGM/r/cuOz2z0MDbNrhF5FW+ZVgi0f2lyeoj9KFPDOAqsYxmLWZte1WOwlvY9aww=="; 300 + url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.17.12.tgz"; 301 + sha512 = "U0mI9q8pW5Q9EaTHFPwSVusPMV/DV9Mm8p7csqROFLtIE9rBF5piLqyrBGigftALrBcsBGu4m38JneAe7ZDLXw=="; 302 302 }; 303 303 }; 304 304 "@babel/plugin-proposal-dynamic-import-7.16.7" = { ··· 310 310 sha512 = "I8SW9Ho3/8DRSdmDdH3gORdyUuYnk1m4cMxUAdu5oy4n3OfN8flDEH+d60iG7dUfi0KkYwSvoalHzzdRzpWHTg=="; 311 311 }; 312 312 }; 313 - "@babel/plugin-proposal-export-namespace-from-7.16.7" = { 313 + "@babel/plugin-proposal-export-namespace-from-7.17.12" = { 314 314 name = "_at_babel_slash_plugin-proposal-export-namespace-from"; 315 315 packageName = "@babel/plugin-proposal-export-namespace-from"; 316 - version = "7.16.7"; 316 + version = "7.17.12"; 317 317 src = fetchurl { 318 - url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.16.7.tgz"; 319 - sha512 = "ZxdtqDXLRGBL64ocZcs7ovt71L3jhC1RGSyR996svrCi3PYqHNkb3SwPJCs8RIzD86s+WPpt2S73+EHCGO+NUA=="; 318 + url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.17.12.tgz"; 319 + sha512 = "j7Ye5EWdwoXOpRmo5QmRyHPsDIe6+u70ZYZrd7uz+ebPYFKfRcLcNu3Ro0vOlJ5zuv8rU7xa+GttNiRzX56snQ=="; 320 320 }; 321 321 }; 322 - "@babel/plugin-proposal-json-strings-7.16.7" = { 322 + "@babel/plugin-proposal-json-strings-7.17.12" = { 323 323 name = "_at_babel_slash_plugin-proposal-json-strings"; 324 324 packageName = "@babel/plugin-proposal-json-strings"; 325 - version = "7.16.7"; 325 + version = "7.17.12"; 326 326 src = fetchurl { 327 - url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.16.7.tgz"; 328 - sha512 = "lNZ3EEggsGY78JavgbHsK9u5P3pQaW7k4axlgFLYkMd7UBsiNahCITShLjNQschPyjtO6dADrL24757IdhBrsQ=="; 327 + url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.17.12.tgz"; 328 + sha512 = "rKJ+rKBoXwLnIn7n6o6fulViHMrOThz99ybH+hKHcOZbnN14VuMnH9fo2eHE69C8pO4uX1Q7t2HYYIDmv8VYkg=="; 329 329 }; 330 330 }; 331 - "@babel/plugin-proposal-logical-assignment-operators-7.16.7" = { 331 + "@babel/plugin-proposal-logical-assignment-operators-7.17.12" = { 332 332 name = "_at_babel_slash_plugin-proposal-logical-assignment-operators"; 333 333 packageName = "@babel/plugin-proposal-logical-assignment-operators"; 334 - version = "7.16.7"; 334 + version = "7.17.12"; 335 335 src = fetchurl { 336 - url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.16.7.tgz"; 337 - sha512 = "K3XzyZJGQCr00+EtYtrDjmwX7o7PLK6U9bi1nCwkQioRFVUv6dJoxbQjtWVtP+bCPy82bONBKG8NPyQ4+i6yjg=="; 336 + url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.17.12.tgz"; 337 + sha512 = "EqFo2s1Z5yy+JeJu7SFfbIUtToJTVlC61/C7WLKDntSw4Sz6JNAIfL7zQ74VvirxpjB5kz/kIx0gCcb+5OEo2Q=="; 338 338 }; 339 339 }; 340 - "@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" = { 340 + "@babel/plugin-proposal-nullish-coalescing-operator-7.17.12" = { 341 341 name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator"; 342 342 packageName = "@babel/plugin-proposal-nullish-coalescing-operator"; 343 - version = "7.16.7"; 343 + version = "7.17.12"; 344 344 src = fetchurl { 345 - url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.16.7.tgz"; 346 - sha512 = "aUOrYU3EVtjf62jQrCj63pYZ7k6vns2h/DQvHPWGmsJRYzWXZ6/AsfgpiRy6XiuIDADhJzP2Q9MwSMKauBQ+UQ=="; 345 + url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.17.12.tgz"; 346 + sha512 = "ws/g3FSGVzv+VH86+QvgtuJL/kR67xaEIF2x0iPqdDfYW6ra6JF3lKVBkWynRLcNtIC1oCTfDRVxmm2mKzy+ag=="; 347 347 }; 348 348 }; 349 349 "@babel/plugin-proposal-numeric-separator-7.16.7" = { ··· 355 355 sha512 = "vQgPMknOIgiuVqbokToyXbkY/OmmjAzr/0lhSIbG/KmnzXPGwW/AdhdKpi+O4X/VkWiWjnkKOBiqJrTaC98VKw=="; 356 356 }; 357 357 }; 358 - "@babel/plugin-proposal-object-rest-spread-7.17.3" = { 358 + "@babel/plugin-proposal-object-rest-spread-7.18.0" = { 359 359 name = "_at_babel_slash_plugin-proposal-object-rest-spread"; 360 360 packageName = "@babel/plugin-proposal-object-rest-spread"; 361 - version = "7.17.3"; 361 + version = "7.18.0"; 362 362 src = fetchurl { 363 - url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.17.3.tgz"; 364 - sha512 = "yuL5iQA/TbZn+RGAfxQXfi7CNLmKi1f8zInn4IgobuCWcAb7i+zj4TYzQ9l8cEzVyJ89PDGuqxK1xZpUDISesw=="; 363 + url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.18.0.tgz"; 364 + sha512 = "nbTv371eTrFabDfHLElkn9oyf9VG+VKK6WMzhY2o4eHKaG19BToD9947zzGMO6I/Irstx9d8CwX6njPNIAR/yw=="; 365 365 }; 366 366 }; 367 367 "@babel/plugin-proposal-optional-catch-binding-7.16.7" = { ··· 373 373 sha512 = "eMOH/L4OvWSZAE1VkHbr1vckLG1WUcHGJSLqqQwl2GaUqG6QjddvrOaTUMNYiv77H5IKPMZ9U9P7EaHwvAShfA=="; 374 374 }; 375 375 }; 376 - "@babel/plugin-proposal-optional-chaining-7.16.7" = { 376 + "@babel/plugin-proposal-optional-chaining-7.17.12" = { 377 377 name = "_at_babel_slash_plugin-proposal-optional-chaining"; 378 378 packageName = "@babel/plugin-proposal-optional-chaining"; 379 - version = "7.16.7"; 379 + version = "7.17.12"; 380 380 src = fetchurl { 381 - url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.16.7.tgz"; 382 - sha512 = "eC3xy+ZrUcBtP7x+sq62Q/HYd674pPTb/77XZMb5wbDPGWIdUbSr4Agr052+zaUPSb+gGRnjxXfKFvx5iMJ+DA=="; 381 + url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.17.12.tgz"; 382 + sha512 = "7wigcOs/Z4YWlK7xxjkvaIw84vGhDv/P1dFGQap0nHkc8gFKY/r+hXc8Qzf5k1gY7CvGIcHqAnOagVKJJ1wVOQ=="; 383 383 }; 384 384 }; 385 - "@babel/plugin-proposal-private-methods-7.16.11" = { 385 + "@babel/plugin-proposal-private-methods-7.17.12" = { 386 386 name = "_at_babel_slash_plugin-proposal-private-methods"; 387 387 packageName = "@babel/plugin-proposal-private-methods"; 388 - version = "7.16.11"; 388 + version = "7.17.12"; 389 389 src = fetchurl { 390 - url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.16.11.tgz"; 391 - sha512 = "F/2uAkPlXDr8+BHpZvo19w3hLFKge+k75XUprE6jaqKxjGkSYcK+4c+bup5PdW/7W/Rpjwql7FTVEDW+fRAQsw=="; 390 + url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.17.12.tgz"; 391 + sha512 = "SllXoxo19HmxhDWm3luPz+cPhtoTSKLJE9PXshsfrOzBqs60QP0r8OaJItrPhAj0d7mZMnNF0Y1UUggCDgMz1A=="; 392 392 }; 393 393 }; 394 - "@babel/plugin-proposal-unicode-property-regex-7.16.7" = { 394 + "@babel/plugin-proposal-unicode-property-regex-7.17.12" = { 395 395 name = "_at_babel_slash_plugin-proposal-unicode-property-regex"; 396 396 packageName = "@babel/plugin-proposal-unicode-property-regex"; 397 - version = "7.16.7"; 397 + version = "7.17.12"; 398 398 src = fetchurl { 399 - url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.16.7.tgz"; 400 - sha512 = "QRK0YI/40VLhNVGIjRNAAQkEHws0cswSdFFjpFyt943YmJIU1da9uW63Iu6NFV6CxTZW5eTDCrwZUstBWgp/Rg=="; 399 + url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.17.12.tgz"; 400 + sha512 = "Wb9qLjXf3ZazqXA7IvI7ozqRIXIGPtSo+L5coFmEkhTQK18ao4UDDD0zdTGAarmbLj2urpRwrc6893cu5Bfh0A=="; 401 401 }; 402 402 }; 403 403 "@babel/plugin-syntax-async-generators-7.8.4" = { ··· 508 508 sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw=="; 509 509 }; 510 510 }; 511 - "@babel/plugin-transform-arrow-functions-7.16.7" = { 511 + "@babel/plugin-transform-arrow-functions-7.17.12" = { 512 512 name = "_at_babel_slash_plugin-transform-arrow-functions"; 513 513 packageName = "@babel/plugin-transform-arrow-functions"; 514 - version = "7.16.7"; 514 + version = "7.17.12"; 515 515 src = fetchurl { 516 - url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.16.7.tgz"; 517 - sha512 = "9ffkFFMbvzTvv+7dTp/66xvZAWASuPD5Tl9LK3Z9vhOmANo6j94rik+5YMBt4CwHVMWLWpMsriIc2zsa3WW3xQ=="; 516 + url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.17.12.tgz"; 517 + sha512 = "PHln3CNi/49V+mza4xMwrg+WGYevSF1oaiXaC2EQfdp4HWlSjRsrDXWJiQBKpP7749u6vQ9mcry2uuFOv5CXvA=="; 518 518 }; 519 519 }; 520 - "@babel/plugin-transform-async-to-generator-7.16.8" = { 520 + "@babel/plugin-transform-async-to-generator-7.17.12" = { 521 521 name = "_at_babel_slash_plugin-transform-async-to-generator"; 522 522 packageName = "@babel/plugin-transform-async-to-generator"; 523 - version = "7.16.8"; 523 + version = "7.17.12"; 524 524 src = fetchurl { 525 - url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.16.8.tgz"; 526 - sha512 = "MtmUmTJQHCnyJVrScNzNlofQJ3dLFuobYn3mwOTKHnSCMtbNsqvF71GQmJfFjdrXSsAA7iysFmYWw4bXZ20hOg=="; 525 + url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.17.12.tgz"; 526 + sha512 = "J8dbrWIOO3orDzir57NRsjg4uxucvhby0L/KZuGsWDj0g7twWK3g7JhJhOrXtuXiw8MeiSdJ3E0OW9H8LYEzLQ=="; 527 527 }; 528 528 }; 529 529 "@babel/plugin-transform-block-scoped-functions-7.16.7" = { ··· 535 535 sha512 = "JUuzlzmF40Z9cXyytcbZEZKckgrQzChbQJw/5PuEHYeqzCsvebDx0K0jWnIIVcmmDOAVctCgnYs0pMcrYj2zJg=="; 536 536 }; 537 537 }; 538 - "@babel/plugin-transform-block-scoping-7.16.7" = { 538 + "@babel/plugin-transform-block-scoping-7.17.12" = { 539 539 name = "_at_babel_slash_plugin-transform-block-scoping"; 540 540 packageName = "@babel/plugin-transform-block-scoping"; 541 - version = "7.16.7"; 541 + version = "7.17.12"; 542 542 src = fetchurl { 543 - url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.16.7.tgz"; 544 - sha512 = "ObZev2nxVAYA4bhyusELdo9hb3H+A56bxH3FZMbEImZFiEDYVHXQSJ1hQKFlDnlt8G9bBrCZ5ZpURZUrV4G5qQ=="; 543 + url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.17.12.tgz"; 544 + sha512 = "jw8XW/B1i7Lqwqj2CbrViPcZijSxfguBWZP2aN59NHgxUyO/OcO1mfdCxH13QhN5LbWhPkX+f+brKGhZTiqtZQ=="; 545 545 }; 546 546 }; 547 - "@babel/plugin-transform-classes-7.16.7" = { 547 + "@babel/plugin-transform-classes-7.17.12" = { 548 548 name = "_at_babel_slash_plugin-transform-classes"; 549 549 packageName = "@babel/plugin-transform-classes"; 550 - version = "7.16.7"; 550 + version = "7.17.12"; 551 551 src = fetchurl { 552 - url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.16.7.tgz"; 553 - sha512 = "WY7og38SFAGYRe64BrjKf8OrE6ulEHtr5jEYaZMwox9KebgqPi67Zqz8K53EKk1fFEJgm96r32rkKZ3qA2nCWQ=="; 552 + url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.17.12.tgz"; 553 + sha512 = "cvO7lc7pZat6BsvH6l/EGaI8zpl8paICaoGk+7x7guvtfak/TbIf66nYmJOH13EuG0H+Xx3M+9LQDtSvZFKXKw=="; 554 554 }; 555 555 }; 556 - "@babel/plugin-transform-computed-properties-7.16.7" = { 556 + "@babel/plugin-transform-computed-properties-7.17.12" = { 557 557 name = "_at_babel_slash_plugin-transform-computed-properties"; 558 558 packageName = "@babel/plugin-transform-computed-properties"; 559 - version = "7.16.7"; 559 + version = "7.17.12"; 560 560 src = fetchurl { 561 - url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.16.7.tgz"; 562 - sha512 = "gN72G9bcmenVILj//sv1zLNaPyYcOzUho2lIJBMh/iakJ9ygCo/hEF9cpGb61SCMEDxbbyBoVQxrt+bWKu5KGw=="; 561 + url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.17.12.tgz"; 562 + sha512 = "a7XINeplB5cQUWMg1E/GI1tFz3LfK021IjV1rj1ypE+R7jHm+pIHmHl25VNkZxtx9uuYp7ThGk8fur1HHG7PgQ=="; 563 563 }; 564 564 }; 565 - "@babel/plugin-transform-destructuring-7.17.7" = { 565 + "@babel/plugin-transform-destructuring-7.18.0" = { 566 566 name = "_at_babel_slash_plugin-transform-destructuring"; 567 567 packageName = "@babel/plugin-transform-destructuring"; 568 - version = "7.17.7"; 568 + version = "7.18.0"; 569 569 src = fetchurl { 570 - url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.17.7.tgz"; 571 - sha512 = "XVh0r5yq9sLR4vZ6eVZe8FKfIcSgaTBxVBRSYokRj2qksf6QerYnTxz9/GTuKTH/n/HwLP7t6gtlybHetJ/6hQ=="; 570 + url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.18.0.tgz"; 571 + sha512 = "Mo69klS79z6KEfrLg/1WkmVnB8javh75HX4pi2btjvlIoasuxilEyjtsQW6XPrubNd7AQy0MMaNIaQE4e7+PQw=="; 572 572 }; 573 573 }; 574 574 "@babel/plugin-transform-dotall-regex-7.16.7" = { ··· 580 580 sha512 = "Lyttaao2SjZF6Pf4vk1dVKv8YypMpomAbygW+mU5cYP3S5cWTfCJjG8xV6CFdzGFlfWK81IjL9viiTvpb6G7gQ=="; 581 581 }; 582 582 }; 583 - "@babel/plugin-transform-duplicate-keys-7.16.7" = { 583 + "@babel/plugin-transform-duplicate-keys-7.17.12" = { 584 584 name = "_at_babel_slash_plugin-transform-duplicate-keys"; 585 585 packageName = "@babel/plugin-transform-duplicate-keys"; 586 - version = "7.16.7"; 586 + version = "7.17.12"; 587 587 src = fetchurl { 588 - url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.16.7.tgz"; 589 - sha512 = "03DvpbRfvWIXyK0/6QiR1KMTWeT6OcQ7tbhjrXyFS02kjuX/mu5Bvnh5SDSWHxyawit2g5aWhKwI86EE7GUnTw=="; 588 + url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.17.12.tgz"; 589 + sha512 = "EA5eYFUG6xeerdabina/xIoB95jJ17mAkR8ivx6ZSu9frKShBjpOGZPn511MTDTkiCO+zXnzNczvUM69YSf3Zw=="; 590 590 }; 591 591 }; 592 592 "@babel/plugin-transform-exponentiation-operator-7.16.7" = { ··· 598 598 sha512 = "8UYLSlyLgRixQvlYH3J2ekXFHDFLQutdy7FfFAMm3CPZ6q9wHCwnUyiXpQCe3gVVnQlHc5nsuiEVziteRNTXEA=="; 599 599 }; 600 600 }; 601 - "@babel/plugin-transform-for-of-7.16.7" = { 601 + "@babel/plugin-transform-for-of-7.18.1" = { 602 602 name = "_at_babel_slash_plugin-transform-for-of"; 603 603 packageName = "@babel/plugin-transform-for-of"; 604 - version = "7.16.7"; 604 + version = "7.18.1"; 605 605 src = fetchurl { 606 - url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.16.7.tgz"; 607 - sha512 = "/QZm9W92Ptpw7sjI9Nx1mbcsWz33+l8kuMIQnDwgQBG5s3fAfQvkRjQ7NqXhtNcKOnPkdICmUHyCaWW06HCsqg=="; 606 + url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.1.tgz"; 607 + sha512 = "+TTB5XwvJ5hZbO8xvl2H4XaMDOAK57zF4miuC9qQJgysPNEAZZ9Z69rdF5LJkozGdZrjBIUAIyKUWRMmebI7vg=="; 608 608 }; 609 609 }; 610 610 "@babel/plugin-transform-function-name-7.16.7" = { ··· 616 616 sha512 = "SU/C68YVwTRxqWj5kgsbKINakGag0KTgq9f2iZEXdStoAbOzLHEBRYzImmA6yFo8YZhJVflvXmIHUO7GWHmxxA=="; 617 617 }; 618 618 }; 619 - "@babel/plugin-transform-literals-7.16.7" = { 619 + "@babel/plugin-transform-literals-7.17.12" = { 620 620 name = "_at_babel_slash_plugin-transform-literals"; 621 621 packageName = "@babel/plugin-transform-literals"; 622 - version = "7.16.7"; 622 + version = "7.17.12"; 623 623 src = fetchurl { 624 - url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.16.7.tgz"; 625 - sha512 = "6tH8RTpTWI0s2sV6uq3e/C9wPo4PTqqZps4uF0kzQ9/xPLFQtipynvmT1g/dOfEJ+0EQsHhkQ/zyRId8J2b8zQ=="; 624 + url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.17.12.tgz"; 625 + sha512 = "8iRkvaTjJciWycPIZ9k9duu663FT7VrBdNqNgxnVXEFwOIp55JWcZd23VBRySYbnS3PwQ3rGiabJBBBGj5APmQ=="; 626 626 }; 627 627 }; 628 628 "@babel/plugin-transform-member-expression-literals-7.16.7" = { ··· 634 634 sha512 = "mBruRMbktKQwbxaJof32LT9KLy2f3gH+27a5XSuXo6h7R3vqltl0PgZ80C8ZMKw98Bf8bqt6BEVi3svOh2PzMw=="; 635 635 }; 636 636 }; 637 - "@babel/plugin-transform-modules-amd-7.16.7" = { 637 + "@babel/plugin-transform-modules-amd-7.18.0" = { 638 638 name = "_at_babel_slash_plugin-transform-modules-amd"; 639 639 packageName = "@babel/plugin-transform-modules-amd"; 640 - version = "7.16.7"; 640 + version = "7.18.0"; 641 641 src = fetchurl { 642 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.16.7.tgz"; 643 - sha512 = "KaaEtgBL7FKYwjJ/teH63oAmE3lP34N3kshz8mm4VMAw7U3PxjVwwUmxEFksbgsNUaO3wId9R2AVQYSEGRa2+g=="; 642 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.18.0.tgz"; 643 + sha512 = "h8FjOlYmdZwl7Xm2Ug4iX2j7Qy63NANI+NQVWQzv6r25fqgg7k2dZl03p95kvqNclglHs4FZ+isv4p1uXMA+QA=="; 644 644 }; 645 645 }; 646 - "@babel/plugin-transform-modules-commonjs-7.17.9" = { 646 + "@babel/plugin-transform-modules-commonjs-7.18.2" = { 647 647 name = "_at_babel_slash_plugin-transform-modules-commonjs"; 648 648 packageName = "@babel/plugin-transform-modules-commonjs"; 649 - version = "7.17.9"; 649 + version = "7.18.2"; 650 650 src = fetchurl { 651 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.17.9.tgz"; 652 - sha512 = "2TBFd/r2I6VlYn0YRTz2JdazS+FoUuQ2rIFHoAxtyP/0G3D82SBLaRq9rnUkpqlLg03Byfl/+M32mpxjO6KaPw=="; 651 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.18.2.tgz"; 652 + sha512 = "f5A865gFPAJAEE0K7F/+nm5CmAE3y8AWlMBG9unu5j9+tk50UQVK0QS8RNxSp7MJf0wh97uYyLWt3Zvu71zyOQ=="; 653 653 }; 654 654 }; 655 - "@babel/plugin-transform-modules-systemjs-7.17.8" = { 655 + "@babel/plugin-transform-modules-systemjs-7.18.0" = { 656 656 name = "_at_babel_slash_plugin-transform-modules-systemjs"; 657 657 packageName = "@babel/plugin-transform-modules-systemjs"; 658 - version = "7.17.8"; 658 + version = "7.18.0"; 659 659 src = fetchurl { 660 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.17.8.tgz"; 661 - sha512 = "39reIkMTUVagzgA5x88zDYXPCMT6lcaRKs1+S9K6NKBPErbgO/w/kP8GlNQTC87b412ZTlmNgr3k2JrWgHH+Bw=="; 660 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.18.0.tgz"; 661 + sha512 = "vwKpxdHnlM5tIrRt/eA0bzfbi7gUBLN08vLu38np1nZevlPySRe6yvuATJB5F/WPJ+ur4OXwpVYq9+BsxqAQuQ=="; 662 662 }; 663 663 }; 664 - "@babel/plugin-transform-modules-umd-7.16.7" = { 664 + "@babel/plugin-transform-modules-umd-7.18.0" = { 665 665 name = "_at_babel_slash_plugin-transform-modules-umd"; 666 666 packageName = "@babel/plugin-transform-modules-umd"; 667 - version = "7.16.7"; 667 + version = "7.18.0"; 668 668 src = fetchurl { 669 - url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.16.7.tgz"; 670 - sha512 = "EMh7uolsC8O4xhudF2F6wedbSHm1HHZ0C6aJ7K67zcDNidMzVcxWdGr+htW9n21klm+bOn+Rx4CBsAntZd3rEQ=="; 669 + url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.0.tgz"; 670 + sha512 = "d/zZ8I3BWli1tmROLxXLc9A6YXvGK8egMxHp+E/rRwMh1Kip0AP77VwZae3snEJ33iiWwvNv2+UIIhfalqhzZA=="; 671 671 }; 672 672 }; 673 - "@babel/plugin-transform-named-capturing-groups-regex-7.17.10" = { 673 + "@babel/plugin-transform-named-capturing-groups-regex-7.17.12" = { 674 674 name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex"; 675 675 packageName = "@babel/plugin-transform-named-capturing-groups-regex"; 676 - version = "7.17.10"; 676 + version = "7.17.12"; 677 677 src = fetchurl { 678 - url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.10.tgz"; 679 - sha512 = "v54O6yLaJySCs6mGzaVOUw9T967GnH38T6CQSAtnzdNPwu84l2qAjssKzo/WSO8Yi7NF+7ekm5cVbF/5qiIgNA=="; 678 + url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.17.12.tgz"; 679 + sha512 = "vWoWFM5CKaTeHrdUJ/3SIOTRV+MBVGybOC9mhJkaprGNt5demMymDW24yC74avb915/mIRe3TgNb/d8idvnCRA=="; 680 680 }; 681 681 }; 682 - "@babel/plugin-transform-new-target-7.16.7" = { 682 + "@babel/plugin-transform-new-target-7.17.12" = { 683 683 name = "_at_babel_slash_plugin-transform-new-target"; 684 684 packageName = "@babel/plugin-transform-new-target"; 685 - version = "7.16.7"; 685 + version = "7.17.12"; 686 686 src = fetchurl { 687 - url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.16.7.tgz"; 688 - sha512 = "xiLDzWNMfKoGOpc6t3U+etCE2yRnn3SM09BXqWPIZOBpL2gvVrBWUKnsJx0K/ADi5F5YC5f8APFfWrz25TdlGg=="; 687 + url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.17.12.tgz"; 688 + sha512 = "CaOtzk2fDYisbjAD4Sd1MTKGVIpRtx9bWLyj24Y/k6p4s4gQ3CqDGJauFJxt8M/LEx003d0i3klVqnN73qvK3w=="; 689 689 }; 690 690 }; 691 691 "@babel/plugin-transform-object-super-7.16.7" = { ··· 697 697 sha512 = "14J1feiQVWaGvRxj2WjyMuXS2jsBkgB3MdSN5HuC2G5nRspa5RK9COcs82Pwy5BuGcjb+fYaUj94mYcOj7rCvw=="; 698 698 }; 699 699 }; 700 - "@babel/plugin-transform-parameters-7.16.7" = { 700 + "@babel/plugin-transform-parameters-7.17.12" = { 701 701 name = "_at_babel_slash_plugin-transform-parameters"; 702 702 packageName = "@babel/plugin-transform-parameters"; 703 - version = "7.16.7"; 703 + version = "7.17.12"; 704 704 src = fetchurl { 705 - url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.16.7.tgz"; 706 - sha512 = "AT3MufQ7zZEhU2hwOA11axBnExW0Lszu4RL/tAlUJBuNoRak+wehQW8h6KcXOcgjY42fHtDxswuMhMjFEuv/aw=="; 705 + url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.17.12.tgz"; 706 + sha512 = "6qW4rWo1cyCdq1FkYri7AHpauchbGLXpdwnYsfxFb+KtddHENfsY5JZb35xUwkK5opOLcJ3BNd2l7PhRYGlwIA=="; 707 707 }; 708 708 }; 709 709 "@babel/plugin-transform-property-literals-7.16.7" = { ··· 715 715 sha512 = "z4FGr9NMGdoIl1RqavCqGG+ZuYjfZ/hkCIeuH6Do7tXmSm0ls11nYVSJqFEUOSJbDab5wC6lRE/w6YjVcr6Hqw=="; 716 716 }; 717 717 }; 718 - "@babel/plugin-transform-regenerator-7.17.9" = { 718 + "@babel/plugin-transform-regenerator-7.18.0" = { 719 719 name = "_at_babel_slash_plugin-transform-regenerator"; 720 720 packageName = "@babel/plugin-transform-regenerator"; 721 - version = "7.17.9"; 721 + version = "7.18.0"; 722 722 src = fetchurl { 723 - url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.17.9.tgz"; 724 - sha512 = "Lc2TfbxR1HOyn/c6b4Y/b6NHoTb67n/IoWLxTu4kC7h4KQnWlhCq2S8Tx0t2SVvv5Uu87Hs+6JEJ5kt2tYGylQ=="; 723 + url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.18.0.tgz"; 724 + sha512 = "C8YdRw9uzx25HSIzwA7EM7YP0FhCe5wNvJbZzjVNHHPGVcDJ3Aie+qGYYdS1oVQgn+B3eAIJbWFLrJ4Jipv7nw=="; 725 725 }; 726 726 }; 727 - "@babel/plugin-transform-reserved-words-7.16.7" = { 727 + "@babel/plugin-transform-reserved-words-7.17.12" = { 728 728 name = "_at_babel_slash_plugin-transform-reserved-words"; 729 729 packageName = "@babel/plugin-transform-reserved-words"; 730 - version = "7.16.7"; 730 + version = "7.17.12"; 731 731 src = fetchurl { 732 - url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.16.7.tgz"; 733 - sha512 = "KQzzDnZ9hWQBjwi5lpY5v9shmm6IVG0U9pB18zvMu2i4H90xpT4gmqwPYsn8rObiadYe2M0gmgsiOIF5A/2rtg=="; 732 + url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.17.12.tgz"; 733 + sha512 = "1KYqwbJV3Co03NIi14uEHW8P50Md6KqFgt0FfpHdK6oyAHQVTosgPuPSiWud1HX0oYJ1hGRRlk0fP87jFpqXZA=="; 734 734 }; 735 735 }; 736 736 "@babel/plugin-transform-runtime-7.12.10" = { ··· 751 751 sha512 = "hah2+FEnoRoATdIb05IOXf+4GzXYTq75TVhIn1PewihbpyrNWUt2JbudKQOETWw6QpLe+AIUpJ5MVLYTQbeeUg=="; 752 752 }; 753 753 }; 754 - "@babel/plugin-transform-spread-7.16.7" = { 754 + "@babel/plugin-transform-spread-7.17.12" = { 755 755 name = "_at_babel_slash_plugin-transform-spread"; 756 756 packageName = "@babel/plugin-transform-spread"; 757 - version = "7.16.7"; 757 + version = "7.17.12"; 758 758 src = fetchurl { 759 - url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.16.7.tgz"; 760 - sha512 = "+pjJpgAngb53L0iaA5gU/1MLXJIfXcYepLgXB3esVRf4fqmj8f2cxM3/FKaHsZms08hFQJkFccEWuIpm429TXg=="; 759 + url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.17.12.tgz"; 760 + sha512 = "9pgmuQAtFi3lpNUstvG9nGfk9DkrdmWNp9KeKPFmuZCpEnxRzYlS8JgwPjYj+1AWDOSvoGN0H30p1cBOmT/Svg=="; 761 761 }; 762 762 }; 763 763 "@babel/plugin-transform-sticky-regex-7.16.7" = { ··· 769 769 sha512 = "NJa0Bd/87QV5NZZzTuZG5BPJjLYadeSZ9fO6oOUoL4iQx+9EEuw/eEM92SrsT19Yc2jgB1u1hsjqDtH02c3Drw=="; 770 770 }; 771 771 }; 772 - "@babel/plugin-transform-template-literals-7.16.7" = { 772 + "@babel/plugin-transform-template-literals-7.18.2" = { 773 773 name = "_at_babel_slash_plugin-transform-template-literals"; 774 774 packageName = "@babel/plugin-transform-template-literals"; 775 - version = "7.16.7"; 775 + version = "7.18.2"; 776 776 src = fetchurl { 777 - url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.16.7.tgz"; 778 - sha512 = "VwbkDDUeenlIjmfNeDX/V0aWrQH2QiVyJtwymVQSzItFDTpxfyJh3EVaQiS0rIN/CqbLGr0VcGmuwyTdZtdIsA=="; 777 + url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.2.tgz"; 778 + sha512 = "/cmuBVw9sZBGZVOMkpAEaVLwm4JmK2GZ1dFKOGGpMzEHWFmyZZ59lUU0PdRr8YNYeQdNzTDwuxP2X2gzydTc9g=="; 779 779 }; 780 780 }; 781 - "@babel/plugin-transform-typeof-symbol-7.16.7" = { 781 + "@babel/plugin-transform-typeof-symbol-7.17.12" = { 782 782 name = "_at_babel_slash_plugin-transform-typeof-symbol"; 783 783 packageName = "@babel/plugin-transform-typeof-symbol"; 784 - version = "7.16.7"; 784 + version = "7.17.12"; 785 785 src = fetchurl { 786 - url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.16.7.tgz"; 787 - sha512 = "p2rOixCKRJzpg9JB4gjnG4gjWkWa89ZoYUnl9snJ1cWIcTH/hvxZqfO+WjG6T8DRBpctEol5jw1O5rA8gkCokQ=="; 786 + url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.17.12.tgz"; 787 + sha512 = "Q8y+Jp7ZdtSPXCThB6zjQ74N3lj0f6TDh1Hnf5B+sYlzQ8i5Pjp8gW0My79iekSpT4WnI06blqP6DT0OmaXXmw=="; 788 788 }; 789 789 }; 790 790 "@babel/plugin-transform-unicode-escapes-7.16.7" = { ··· 841 841 sha512 = "I8j/x8kHUrbYRTUxXrrMbfCa7jxkE7tZre39x3kjr9hvI82cK1FfqLygotcWN5kdPGWcLdWMHpSBavse5tWw3w=="; 842 842 }; 843 843 }; 844 - "@babel/traverse-7.17.10" = { 844 + "@babel/traverse-7.18.2" = { 845 845 name = "_at_babel_slash_traverse"; 846 846 packageName = "@babel/traverse"; 847 - version = "7.17.10"; 847 + version = "7.18.2"; 848 848 src = fetchurl { 849 - url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.17.10.tgz"; 850 - sha512 = "VmbrTHQteIdUUQNTb+zE12SHS/xQVIShmBPhlNP12hD5poF2pbITW1Z4172d03HegaQWhLffdkRJYtAzp0AGcw=="; 849 + url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.18.2.tgz"; 850 + sha512 = "9eNwoeovJ6KH9zcCNnENY7DMFwTU9JdGCFtqNLfUAqtUHRCOsTOqWoffosP8vKmNYeSBUv3yVJXjfd8ucwOjUA=="; 851 851 }; 852 852 }; 853 - "@babel/types-7.17.10" = { 853 + "@babel/types-7.18.2" = { 854 854 name = "_at_babel_slash_types"; 855 855 packageName = "@babel/types"; 856 - version = "7.17.10"; 856 + version = "7.18.2"; 857 857 src = fetchurl { 858 - url = "https://registry.npmjs.org/@babel/types/-/types-7.17.10.tgz"; 859 - sha512 = "9O26jG0mBYfGkUYCYZRnBwbVLd1UZOICEr2Em6InB6jVfsAv1GKgwXHmrSg+WFWDmeKTA6vyTZiN8tCSM5Oo3A=="; 858 + url = "https://registry.npmjs.org/@babel/types/-/types-7.18.2.tgz"; 859 + sha512 = "0On6B8A4/+mFUto5WERt3EEuG1NznDirvwca1O8UwXQHVY8g3R7OzYgxXdOfMwLO08UrpUD/2+3Bclyq+/C94Q=="; 860 860 }; 861 861 }; 862 862 "@hapi/address-2.1.4" = { ··· 904 904 sha512 = "tAag0jEcjwH+P2quUfipd7liWCNX2F8NvYjQp2wtInsZxnMlypdw0FtAOLxtvvkO+GSRRbmNi8m/5y42PQJYCQ=="; 905 905 }; 906 906 }; 907 - "@jridgewell/gen-mapping-0.1.1" = { 907 + "@jridgewell/gen-mapping-0.3.1" = { 908 908 name = "_at_jridgewell_slash_gen-mapping"; 909 909 packageName = "@jridgewell/gen-mapping"; 910 - version = "0.1.1"; 910 + version = "0.3.1"; 911 911 src = fetchurl { 912 - url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz"; 913 - sha512 = "sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w=="; 912 + url = "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.1.tgz"; 913 + sha512 = "GcHwniMlA2z+WFPWuY8lp3fsza0I8xPFMWL5+n8LYyP6PSvPrXf4+n8stDHZY2DM0zy9sVkRDy1jDI4XGzYVqg=="; 914 + }; 915 + }; 916 + "@jridgewell/resolve-uri-3.0.7" = { 917 + name = "_at_jridgewell_slash_resolve-uri"; 918 + packageName = "@jridgewell/resolve-uri"; 919 + version = "3.0.7"; 920 + src = fetchurl { 921 + url = "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.0.7.tgz"; 922 + sha512 = "8cXDaBBHOr2pQ7j77Y6Vp5VDT2sIqWyWQ56TjEq4ih/a4iST3dItRe8Q9fp0rrIl9DoKhWQtUQz/YpOxLkXbNA=="; 914 923 }; 915 924 }; 916 925 "@jridgewell/set-array-1.1.1" = { ··· 929 938 src = fetchurl { 930 939 url = "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.13.tgz"; 931 940 sha512 = "GryiOJmNcWbovBxTfZSF71V/mXbgcV3MewDe3kIMCLyIh5e7SKAeUZs+rMnJ8jkMolZ/4/VsdBmMrw3l+VdZ3w=="; 941 + }; 942 + }; 943 + "@jridgewell/trace-mapping-0.3.13" = { 944 + name = "_at_jridgewell_slash_trace-mapping"; 945 + packageName = "@jridgewell/trace-mapping"; 946 + version = "0.3.13"; 947 + src = fetchurl { 948 + url = "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.13.tgz"; 949 + sha512 = "o1xbKhp9qnIAoHJSWd6KlCZfqslL4valSF81H8ImioOAxluWYWOpWkpyktY2vnt4tbrX9XYaxovq6cgowaJp2w=="; 932 950 }; 933 951 }; 934 952 "@kwsites/file-exists-1.1.1" = { ··· 1039 1057 sha512 = "B3xVo+dlKM6nnKTcmm5ZtY/OL8bOAOd2Olee9M1zft65ox50OzjEHW91sDiU9j6cvW8Ejg1/Qkf4xd2kugApUA=="; 1040 1058 }; 1041 1059 }; 1060 + "@types/configstore-2.1.1" = { 1061 + name = "_at_types_slash_configstore"; 1062 + packageName = "@types/configstore"; 1063 + version = "2.1.1"; 1064 + src = fetchurl { 1065 + url = "https://registry.npmjs.org/@types/configstore/-/configstore-2.1.1.tgz"; 1066 + sha512 = "YY+hm3afkDHeSM2rsFXxeZtu0garnusBWNG1+7MknmDWQHqcH2w21/xOU9arJUi8ch4qyFklidANLCu3ihhVwQ=="; 1067 + }; 1068 + }; 1069 + "@types/debug-0.0.30" = { 1070 + name = "_at_types_slash_debug"; 1071 + packageName = "@types/debug"; 1072 + version = "0.0.30"; 1073 + src = fetchurl { 1074 + url = "https://registry.npmjs.org/@types/debug/-/debug-0.0.30.tgz"; 1075 + sha512 = "orGL5LXERPYsLov6CWs3Fh6203+dXzJkR7OnddIr2514Hsecwc8xRpzCapshBbKFImCsvS/mk6+FWiN5LyZJAQ=="; 1076 + }; 1077 + }; 1078 + "@types/get-port-3.2.0" = { 1079 + name = "_at_types_slash_get-port"; 1080 + packageName = "@types/get-port"; 1081 + version = "3.2.0"; 1082 + src = fetchurl { 1083 + url = "https://registry.npmjs.org/@types/get-port/-/get-port-3.2.0.tgz"; 1084 + sha512 = "TiNg8R1kjDde5Pub9F9vCwZA/BNW9HeXP5b9j7Qucqncy/McfPZ6xze/EyBdXS5FhMIGN6Fx3vg75l5KHy3V1Q=="; 1085 + }; 1086 + }; 1087 + "@types/glob-5.0.37" = { 1088 + name = "_at_types_slash_glob"; 1089 + packageName = "@types/glob"; 1090 + version = "5.0.37"; 1091 + src = fetchurl { 1092 + url = "https://registry.npmjs.org/@types/glob/-/glob-5.0.37.tgz"; 1093 + sha512 = "ATA/xrS7CZ3A2WCPVY4eKdNpybq56zqlTirnHhhyOztZM/lPxJzusOBI3BsaXbu6FrUluqzvMlI4sZ6BDYMlMg=="; 1094 + }; 1095 + }; 1042 1096 "@types/glob-7.2.0" = { 1043 1097 name = "_at_types_slash_glob"; 1044 1098 packageName = "@types/glob"; ··· 1075 1129 sha512 = "QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw=="; 1076 1130 }; 1077 1131 }; 1078 - "@types/jest-27.5.0" = { 1132 + "@types/jest-27.5.1" = { 1079 1133 name = "_at_types_slash_jest"; 1080 1134 packageName = "@types/jest"; 1081 - version = "27.5.0"; 1135 + version = "27.5.1"; 1082 1136 src = fetchurl { 1083 - url = "https://registry.npmjs.org/@types/jest/-/jest-27.5.0.tgz"; 1084 - sha512 = "9RBFx7r4k+msyj/arpfaa0WOOEcaAZNmN+j80KFbFCoSqCJGHTz7YMAMGQW9Xmqm5w6l5c25vbSjMwlikJi5+g=="; 1137 + url = "https://registry.npmjs.org/@types/jest/-/jest-27.5.1.tgz"; 1138 + sha512 = "fUy7YRpT+rHXto1YlL+J9rs0uLGyiqVt3ZOTQR+4ROc47yNl8WLdVLgUloBRhOxP1PZvguHl44T3H0wAWxahYQ=="; 1085 1139 }; 1086 1140 }; 1087 1141 "@types/json-buffer-3.0.0" = { ··· 1111 1165 sha512 = "BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg=="; 1112 1166 }; 1113 1167 }; 1168 + "@types/lodash-4.14.182" = { 1169 + name = "_at_types_slash_lodash"; 1170 + packageName = "@types/lodash"; 1171 + version = "4.14.182"; 1172 + src = fetchurl { 1173 + url = "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz"; 1174 + sha512 = "/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q=="; 1175 + }; 1176 + }; 1114 1177 "@types/minimatch-3.0.5" = { 1115 1178 name = "_at_types_slash_minimatch"; 1116 1179 packageName = "@types/minimatch"; ··· 1120 1183 sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ=="; 1121 1184 }; 1122 1185 }; 1123 - "@types/node-17.0.31" = { 1186 + "@types/mkdirp-0.5.2" = { 1187 + name = "_at_types_slash_mkdirp"; 1188 + packageName = "@types/mkdirp"; 1189 + version = "0.5.2"; 1190 + src = fetchurl { 1191 + url = "https://registry.npmjs.org/@types/mkdirp/-/mkdirp-0.5.2.tgz"; 1192 + sha512 = "U5icWpv7YnZYGsN4/cmh3WD2onMY0aJIiTE6+51TwJCttdHvtCYmkBNOobHlXwrJRL0nkH9jH4kD+1FAdMN4Tg=="; 1193 + }; 1194 + }; 1195 + "@types/node-17.0.35" = { 1196 + name = "_at_types_slash_node"; 1197 + packageName = "@types/node"; 1198 + version = "17.0.35"; 1199 + src = fetchurl { 1200 + url = "https://registry.npmjs.org/@types/node/-/node-17.0.35.tgz"; 1201 + sha512 = "vu1SrqBjbbZ3J6vwY17jBs8Sr/BKA+/a/WtjRG+whKg1iuLFOosq872EXS0eXWILdO36DHQQeku/ZcL6hz2fpg=="; 1202 + }; 1203 + }; 1204 + "@types/node-8.10.66" = { 1124 1205 name = "_at_types_slash_node"; 1125 1206 packageName = "@types/node"; 1126 - version = "17.0.31"; 1207 + version = "8.10.66"; 1127 1208 src = fetchurl { 1128 - url = "https://registry.npmjs.org/@types/node/-/node-17.0.31.tgz"; 1129 - sha512 = "AR0x5HbXGqkEx9CadRH3EBYx/VkiUgZIhP4wvPn/+5KIsgpNoyFaRlVe0Zlx9gRtg8fA06a9tskE2MSN7TcG4Q=="; 1209 + url = "https://registry.npmjs.org/@types/node/-/node-8.10.66.tgz"; 1210 + sha512 = "tktOkFUA4kXx2hhhrB8bIFb5TbwzS4uOhKEmwiD+NoiL0qtP2OQ9mFldbgD4dV1djrlBYP6eBuQZiWjuHUpqFw=="; 1130 1211 }; 1131 1212 }; 1132 1213 "@types/parse-json-4.0.0" = { ··· 1156 1237 sha512 = "85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA=="; 1157 1238 }; 1158 1239 }; 1240 + "@types/rimraf-2.0.5" = { 1241 + name = "_at_types_slash_rimraf"; 1242 + packageName = "@types/rimraf"; 1243 + version = "2.0.5"; 1244 + src = fetchurl { 1245 + url = "https://registry.npmjs.org/@types/rimraf/-/rimraf-2.0.5.tgz"; 1246 + sha512 = "YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g=="; 1247 + }; 1248 + }; 1159 1249 "@types/source-list-map-0.1.2" = { 1160 1250 name = "_at_types_slash_source-list-map"; 1161 1251 packageName = "@types/source-list-map"; ··· 1172 1262 src = fetchurl { 1173 1263 url = "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.8.tgz"; 1174 1264 sha512 = "ipixuVrh2OdNmauvtT51o3d8z12p6LtFW9in7U79der/kwejjdNchQC5UMn5u/KxNoM7VHHOs/l8KS8uHxhODQ=="; 1265 + }; 1266 + }; 1267 + "@types/tmp-0.0.33" = { 1268 + name = "_at_types_slash_tmp"; 1269 + packageName = "@types/tmp"; 1270 + version = "0.0.33"; 1271 + src = fetchurl { 1272 + url = "https://registry.npmjs.org/@types/tmp/-/tmp-0.0.33.tgz"; 1273 + sha512 = "gVC1InwyVrO326wbBZw+AO3u2vRXz/iRWq9jYhpG4W8LXyIgDv3ZmcLQ5Q4Gs+gFMyqx+viFoFT+l3p61QFCmQ=="; 1175 1274 }; 1176 1275 }; 1177 1276 "@types/uglify-js-3.13.2" = { ··· 1408 1507 sha512 = "XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ=="; 1409 1508 }; 1410 1509 }; 1510 + "acorn-8.7.1" = { 1511 + name = "acorn"; 1512 + packageName = "acorn"; 1513 + version = "8.7.1"; 1514 + src = fetchurl { 1515 + url = "https://registry.npmjs.org/acorn/-/acorn-8.7.1.tgz"; 1516 + sha512 = "Xx54uLJQZ19lKygFXOWsscKUbsBZW0CPykPhVQdhIeIwrbPmJzqeASDInc8nKBnp/JT6igTs82qPXz069H8I/A=="; 1517 + }; 1518 + }; 1411 1519 "address-1.0.3" = { 1412 1520 name = "address"; 1413 1521 packageName = "address"; ··· 1459 1567 version = "1.0.2"; 1460 1568 src = fetchurl { 1461 1569 url = "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz"; 1462 - sha1 = "97a1119649b211ad33691d9f9f486a8ec9fbe0a3"; 1570 + sha512 = "0FcBfdcmaumGPQ0qPn7Q5qTgz/ooXgIyp1rf8ik5bGX8mpE2YHjC0P/eyQvxu1GURYQgq9ozf2mteQ5ZD9YiyQ=="; 1463 1571 }; 1464 1572 }; 1465 1573 "ansi-colors-3.2.4" = { ··· 1495 1603 version = "0.0.7"; 1496 1604 src = fetchurl { 1497 1605 url = "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz"; 1498 - sha1 = "813584021962a9e9e6fd039f940d12f56ca7859e"; 1606 + sha512 = "JoAxEa1DfP9m2xfB/y2r/aKcwXNlltr4+0QSBC4TrLfcxyvepX2Pv0t/xpgGV5bGsDzCYV8SzjWgyCW0T9yYbA=="; 1499 1607 }; 1500 1608 }; 1501 1609 "ansi-regex-2.1.1" = { ··· 1504 1612 version = "2.1.1"; 1505 1613 src = fetchurl { 1506 1614 url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz"; 1507 - sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df"; 1615 + sha512 = "TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA=="; 1508 1616 }; 1509 1617 }; 1510 1618 "ansi-regex-3.0.1" = { ··· 1540 1648 version = "2.2.1"; 1541 1649 src = fetchurl { 1542 1650 url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz"; 1543 - sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 1651 + sha512 = "kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA=="; 1544 1652 }; 1545 1653 }; 1546 1654 "ansi-styles-3.2.1" = { ··· 1588 1696 sha512 = "P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg=="; 1589 1697 }; 1590 1698 }; 1699 + "application-config-path-0.1.0" = { 1700 + name = "application-config-path"; 1701 + packageName = "application-config-path"; 1702 + version = "0.1.0"; 1703 + src = fetchurl { 1704 + url = "https://registry.npmjs.org/application-config-path/-/application-config-path-0.1.0.tgz"; 1705 + sha512 = "lljTpVvFteShrHuKRvweZfa9o/Nc34Y8r5/1Lqh/yyKaspRT2J3fkEiSSk1YLG8ZSVyU7yHysRy9zcDDS2aH1Q=="; 1706 + }; 1707 + }; 1591 1708 "aproba-1.2.0" = { 1592 1709 name = "aproba"; 1593 1710 packageName = "aproba"; ··· 1612 1729 version = "4.0.0"; 1613 1730 src = fetchurl { 1614 1731 url = "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz"; 1615 - sha1 = "d6461074febfec71e7e15235761a329a5dc7c520"; 1732 + sha512 = "YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA=="; 1616 1733 }; 1617 1734 }; 1618 1735 "arr-flatten-1.1.0" = { ··· 1630 1747 version = "3.1.0"; 1631 1748 src = fetchurl { 1632 1749 url = "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz"; 1633 - sha1 = "e39b09aea9def866a8f206e288af63919bae39c4"; 1750 + sha512 = "sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q=="; 1634 1751 }; 1635 1752 }; 1636 1753 "array-filter-0.0.1" = { ··· 1639 1756 version = "0.0.1"; 1640 1757 src = fetchurl { 1641 1758 url = "https://registry.npmjs.org/array-filter/-/array-filter-0.0.1.tgz"; 1642 - sha1 = "7da8cf2e26628ed732803581fd21f67cacd2eeec"; 1759 + sha512 = "VW0FpCIhjZdarWjIz8Vpva7U95fl2Jn+b+mmFFMLn8PIVscOQcAgEznwUzTEuUHuqZqIxwzRlcaN/urTFFQoiw=="; 1643 1760 }; 1644 1761 }; 1645 1762 "array-flatten-1.1.1" = { ··· 1648 1765 version = "1.1.1"; 1649 1766 src = fetchurl { 1650 1767 url = "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz"; 1651 - sha1 = "9a5f699051b1e7073328f2a008968b64ea2955d2"; 1768 + sha512 = "PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg=="; 1652 1769 }; 1653 1770 }; 1654 1771 "array-flatten-2.1.2" = { ··· 1666 1783 version = "0.0.0"; 1667 1784 src = fetchurl { 1668 1785 url = "https://registry.npmjs.org/array-map/-/array-map-0.0.0.tgz"; 1669 - sha1 = "88a2bab73d1cf7bcd5c1b118a003f66f665fa662"; 1786 + sha512 = "123XMszMB01QKVptpDQ7x1m1pP5NmJIG1kbl0JSPPRezvwQChxAN0Gvzo7rvR1IZ2tOL2tmiy7kY/KKgnpVVpg=="; 1670 1787 }; 1671 1788 }; 1672 1789 "array-reduce-0.0.0" = { ··· 1675 1792 version = "0.0.0"; 1676 1793 src = fetchurl { 1677 1794 url = "https://registry.npmjs.org/array-reduce/-/array-reduce-0.0.0.tgz"; 1678 - sha1 = "173899d3ffd1c7d9383e4479525dbe278cab5f2b"; 1795 + sha512 = "8jR+StqaC636u7h3ye1co3lQRefgVVUQUhuAmRbDqIMeR2yuXzRvkCNQiQ5J/wbREmoBLNtp13dhaaVpZQDRUw=="; 1679 1796 }; 1680 1797 }; 1681 1798 "array-union-1.0.2" = { ··· 1684 1801 version = "1.0.2"; 1685 1802 src = fetchurl { 1686 1803 url = "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz"; 1687 - sha1 = "9a34410e4f4e3da23dea375be5be70f24778ec39"; 1804 + sha512 = "Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng=="; 1688 1805 }; 1689 1806 }; 1690 1807 "array-union-2.1.0" = { ··· 1702 1819 version = "1.0.3"; 1703 1820 src = fetchurl { 1704 1821 url = "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz"; 1705 - sha1 = "af6ac877a25cc7f74e058894753858dfdb24fdb6"; 1822 + sha512 = "MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q=="; 1706 1823 }; 1707 1824 }; 1708 1825 "array-unique-0.3.2" = { ··· 1711 1828 version = "0.3.2"; 1712 1829 src = fetchurl { 1713 1830 url = "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz"; 1714 - sha1 = "a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"; 1831 + sha512 = "SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ=="; 1832 + }; 1833 + }; 1834 + "array.prototype.reduce-1.0.4" = { 1835 + name = "array.prototype.reduce"; 1836 + packageName = "array.prototype.reduce"; 1837 + version = "1.0.4"; 1838 + src = fetchurl { 1839 + url = "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.4.tgz"; 1840 + sha512 = "WnM+AjG/DvLRLo4DDl+r+SvCzYtD2Jd9oeBYMcEaI7t3fFrHY9M53/wdLcTvmZNQ70IU6Htj0emFkZ5TS+lrdw=="; 1715 1841 }; 1716 1842 }; 1717 1843 "asap-2.0.6" = { ··· 1720 1846 version = "2.0.6"; 1721 1847 src = fetchurl { 1722 1848 url = "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz"; 1723 - sha1 = "e50347611d7e690943208bbdafebcbc2fb866d46"; 1849 + sha512 = "BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA=="; 1724 1850 }; 1725 1851 }; 1726 1852 "asn1-0.2.6" = { ··· 1756 1882 version = "1.0.0"; 1757 1883 src = fetchurl { 1758 1884 url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz"; 1759 - sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"; 1885 + sha512 = "NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw=="; 1760 1886 }; 1761 1887 }; 1762 1888 "assets-webpack-plugin-3.9.12" = { ··· 1774 1900 version = "1.0.0"; 1775 1901 src = fetchurl { 1776 1902 url = "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz"; 1777 - sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1903 + sha512 = "Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw=="; 1778 1904 }; 1779 1905 }; 1780 1906 "astral-regex-2.0.0" = { ··· 1792 1918 version = "0.9.2"; 1793 1919 src = fetchurl { 1794 1920 url = "https://registry.npmjs.org/async/-/async-0.9.2.tgz"; 1795 - sha1 = "aea74d5e61c1f899613bf64bda66d4c78f2fd17d"; 1921 + sha512 = "l6ToIJIotphWahxxHyzK9bnLR6kM4jJIIgLShZeqLY7iboHoGkdgFl7W2/Ivi4SkMJYGKqW8vSuk0uKUj6qsSw=="; 1796 1922 }; 1797 1923 }; 1798 1924 "async-1.0.0" = { ··· 1801 1927 version = "1.0.0"; 1802 1928 src = fetchurl { 1803 1929 url = "https://registry.npmjs.org/async/-/async-1.0.0.tgz"; 1804 - sha1 = "f8fc04ca3a13784ade9e1641af98578cfbd647a9"; 1930 + sha512 = "5mO7DX4CbJzp9zjaFXusQQ4tzKJARjNB1Ih1pVBi8wkbmXy/xzIDgEMXxWePLzt2OdFwaxfneIlT1nCiXubrPQ=="; 1805 1931 }; 1806 1932 }; 1807 1933 "async-2.6.4" = { ··· 1837 1963 version = "0.4.0"; 1838 1964 src = fetchurl { 1839 1965 url = "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz"; 1840 - sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"; 1966 + sha512 = "Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q=="; 1841 1967 }; 1842 1968 }; 1843 1969 "at-least-node-1.0.0" = { ··· 1873 1999 version = "0.7.0"; 1874 2000 src = fetchurl { 1875 2001 url = "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz"; 1876 - sha1 = "b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"; 2002 + sha512 = "08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA=="; 1877 2003 }; 1878 2004 }; 1879 2005 "aws4-1.11.0" = { ··· 1918 2044 version = "6.13.0"; 1919 2045 src = fetchurl { 1920 2046 url = "https://registry.npmjs.org/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz"; 1921 - sha1 = "fd6536f2bce13836ffa3a5458c4903a597bb3bf5"; 2047 + sha512 = "C4Aq+GaAj83pRQ0EFgTvw5YO6T3Qz2KGrNRwIj9mSoNHVvdZY4KO2uA6HNtNXCw993iSZnckY1aLW8nOi8i4+w=="; 1922 2048 }; 1923 2049 }; 1924 2050 "babel-plugin-transform-object-rest-spread-6.26.0" = { ··· 1927 2053 version = "6.26.0"; 1928 2054 src = fetchurl { 1929 2055 url = "https://registry.npmjs.org/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz"; 1930 - sha1 = "0f36692d50fef6b7e2d4b3ac1478137a963b7b06"; 2056 + sha512 = "ocgA9VJvyxwt+qJB0ncxV8kb/CjfTcECUY4tQ5VT7nP6Aohzobm8CDFaQ5FHdvZQzLmf0sgDxB8iRXZXxwZcyA=="; 1931 2057 }; 1932 2058 }; 1933 2059 "babel-runtime-6.18.0" = { ··· 1936 2062 version = "6.18.0"; 1937 2063 src = fetchurl { 1938 2064 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.18.0.tgz"; 1939 - sha1 = "0f4177ffd98492ef13b9f823e9994a02584c9078"; 2065 + sha512 = "v7NCdzdD8DkDNmZfX4ZhOD9C573rbGnYtuxR1hKPPMf9eYNiopXXr9DnZ2KkiX5SO+mHAX2w815Piphb9UidZQ=="; 1940 2066 }; 1941 2067 }; 1942 2068 "babel-runtime-6.26.0" = { ··· 1945 2071 version = "6.26.0"; 1946 2072 src = fetchurl { 1947 2073 url = "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz"; 1948 - sha1 = "965c7058668e82b55d7bfe04ff2337bc8b5647fe"; 2074 + sha512 = "ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g=="; 1949 2075 }; 1950 2076 }; 1951 2077 "babylon-6.18.0" = { ··· 1990 2116 version = "0.6.1"; 1991 2117 src = fetchurl { 1992 2118 url = "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz"; 1993 - sha1 = "dc34314f4e679318093fc760272525f94bf25c16"; 2119 + sha512 = "x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw=="; 1994 2120 }; 1995 2121 }; 1996 2122 "bcrypt-pbkdf-1.0.2" = { ··· 1999 2125 version = "1.0.2"; 2000 2126 src = fetchurl { 2001 2127 url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz"; 2002 - sha1 = "a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"; 2128 + sha512 = "qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w=="; 2003 2129 }; 2004 2130 }; 2005 2131 "big.js-3.2.0" = { ··· 2026 2152 version = "0.3.0"; 2027 2153 src = fetchurl { 2028 2154 url = "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz"; 2029 - sha1 = "9f60553bc5ce8c3386f3b553cff47462adecaa79"; 2155 + sha512 = "D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg=="; 2030 2156 }; 2031 2157 }; 2032 2158 "binary-extensions-1.13.1" = { ··· 2101 2227 sha512 = "c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA=="; 2102 2228 }; 2103 2229 }; 2104 - "bn.js-5.2.0" = { 2230 + "bn.js-5.2.1" = { 2105 2231 name = "bn.js"; 2106 2232 packageName = "bn.js"; 2107 - version = "5.2.0"; 2233 + version = "5.2.1"; 2108 2234 src = fetchurl { 2109 - url = "https://registry.npmjs.org/bn.js/-/bn.js-5.2.0.tgz"; 2110 - sha512 = "D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw=="; 2235 + url = "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz"; 2236 + sha512 = "eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ=="; 2111 2237 }; 2112 2238 }; 2113 2239 "body-parser-1.18.2" = { ··· 2116 2242 version = "1.18.2"; 2117 2243 src = fetchurl { 2118 2244 url = "https://registry.npmjs.org/body-parser/-/body-parser-1.18.2.tgz"; 2119 - sha1 = "87678a19d84b47d859b83199bd59bce222b10454"; 2245 + sha512 = "XIXhPptoLGNcvFyyOzjNXCjDYIbYj4iuXO0VU9lM0f3kYdG0ar5yg7C+pIc3OyoTlZXDu5ObpLTmS2Cgp89oDg=="; 2120 2246 }; 2121 2247 }; 2122 2248 "body-parser-1.19.0" = { ··· 2143 2269 version = "3.5.0"; 2144 2270 src = fetchurl { 2145 2271 url = "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz"; 2146 - sha1 = "8e890a183d8ee9a2393b3844c691a42bcf7bc9f5"; 2272 + sha512 = "RaVTblr+OnEli0r/ud8InrU7D+G0y6aJhlxaLa6Pwty4+xoxboF1BsUI45tujvRpbj9dQVoglChqonGAsjEBYg=="; 2147 2273 }; 2148 2274 }; 2149 2275 "boolbase-1.0.0" = { ··· 2152 2278 version = "1.0.0"; 2153 2279 src = fetchurl { 2154 2280 url = "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"; 2155 - sha1 = "68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"; 2281 + sha512 = "JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww=="; 2156 2282 }; 2157 2283 }; 2158 2284 "brace-expansion-1.1.11" = { ··· 2188 2314 version = "1.1.0"; 2189 2315 src = fetchurl { 2190 2316 url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz"; 2191 - sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f"; 2317 + sha512 = "cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w=="; 2192 2318 }; 2193 2319 }; 2194 2320 "browserify-aes-1.2.0" = { ··· 2305 2431 version = "1.0.3"; 2306 2432 src = fetchurl { 2307 2433 url = "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz"; 2308 - sha1 = "26e61ed1422fb70dd42e6e36729ed51d855fe8d9"; 2434 + sha512 = "571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ=="; 2309 2435 }; 2310 2436 }; 2311 2437 "buffers-0.1.1" = { ··· 2314 2440 version = "0.1.1"; 2315 2441 src = fetchurl { 2316 2442 url = "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz"; 2317 - sha1 = "b24579c3bed4d6d396aeee6d9a8ae7f5482ab7bb"; 2443 + sha512 = "9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ=="; 2318 2444 }; 2319 2445 }; 2320 2446 "builtin-status-codes-3.0.0" = { ··· 2323 2449 version = "3.0.0"; 2324 2450 src = fetchurl { 2325 2451 url = "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz"; 2326 - sha1 = "85982878e21b98e1c66425e03d0174788f569ee8"; 2452 + sha512 = "HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ=="; 2327 2453 }; 2328 2454 }; 2329 2455 "bytes-3.0.0" = { ··· 2332 2458 version = "3.0.0"; 2333 2459 src = fetchurl { 2334 2460 url = "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz"; 2335 - sha1 = "d32815404d689699f85a4ea4fa8755dd13a96048"; 2461 + sha512 = "pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw=="; 2336 2462 }; 2337 2463 }; 2338 2464 "bytes-3.1.0" = { ··· 2422 2548 version = "1.0.1"; 2423 2549 src = fetchurl { 2424 2550 url = "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz"; 2425 - sha1 = "26d208ea89e37b5cbde60250a15f031c16a4d66b"; 2551 + sha512 = "wCyFsDQkKPwwF8BDwOiWNx/9K45L/hvggQiDbve+viMNMQnWhrlYIuBk09offfwCRtCO9P6XwUttufzU11WCVw=="; 2426 2552 }; 2427 2553 }; 2428 2554 "caller-callsite-2.0.0" = { ··· 2431 2557 version = "2.0.0"; 2432 2558 src = fetchurl { 2433 2559 url = "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz"; 2434 - sha1 = "847e0fce0a223750a9a027c54b33731ad3154134"; 2560 + sha512 = "JuG3qI4QOftFsZyOn1qq87fq5grLIyk1JYd5lJmdA+fG7aQ9pA/i3JIJGcO3q0MrRcHlOt1U+ZeHW8Dq9axALQ=="; 2435 2561 }; 2436 2562 }; 2437 2563 "caller-path-2.0.0" = { ··· 2440 2566 version = "2.0.0"; 2441 2567 src = fetchurl { 2442 2568 url = "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz"; 2443 - sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4"; 2569 + sha512 = "MCL3sf6nCSXOwCTzvPKhN18TU7AHTvdtam8DAogxcrJ8Rjfbbg7Lgng64H9Iy+vUV6VGFClN/TyxBkAebLRR4A=="; 2444 2570 }; 2445 2571 }; 2446 2572 "callsites-2.0.0" = { ··· 2449 2575 version = "2.0.0"; 2450 2576 src = fetchurl { 2451 2577 url = "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz"; 2452 - sha1 = "06eb84f00eea413da86affefacbffb36093b3c50"; 2578 + sha512 = "ksWePWBloaWPxJYQ8TL0JHvtci6G5QTKwQ95RcWAa/lzoAKuAOflGdAK92hpHXjkwb8zLxoLNUoNYZgVsaJzvQ=="; 2453 2579 }; 2454 2580 }; 2455 2581 "callsites-3.1.0" = { ··· 2476 2602 version = "3.0.0"; 2477 2603 src = fetchurl { 2478 2604 url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz"; 2479 - sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a"; 2605 + sha512 = "4nhGqUkc4BqbBBB4Q6zLuD7lzzrHYrjKGeYaEji/3tFR5VdJu9v+LilhGIVe8wxEJPPOeWo7eg8dwY13TZ1BNg=="; 2480 2606 }; 2481 2607 }; 2482 2608 "camelcase-5.3.1" = { ··· 2506 2632 sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw=="; 2507 2633 }; 2508 2634 }; 2509 - "caniuse-lite-1.0.30001338" = { 2635 + "caniuse-lite-1.0.30001344" = { 2510 2636 name = "caniuse-lite"; 2511 2637 packageName = "caniuse-lite"; 2512 - version = "1.0.30001338"; 2638 + version = "1.0.30001344"; 2513 2639 src = fetchurl { 2514 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001338.tgz"; 2515 - sha512 = "1gLHWyfVoRDsHieO+CaeYe7jSo/MT7D7lhaXUiwwbuR5BwQxORs0f1tAwUSQr3YbxRXJvxHM/PA5FfPQRnsPeQ=="; 2640 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001344.tgz"; 2641 + sha512 = "0ZFjnlCaXNOAYcV7i+TtdKBp0L/3XEU2MF/x6Du1lrh+SRX4IfzIVL4HNJg5pB2PmFb8rszIGyOvsZnqqRoc2g=="; 2516 2642 }; 2517 2643 }; 2518 2644 "case-sensitive-paths-webpack-plugin-2.3.0" = { ··· 2530 2656 version = "0.12.0"; 2531 2657 src = fetchurl { 2532 2658 url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz"; 2533 - sha1 = "1b681c21ff84033c826543090689420d187151dc"; 2659 + sha512 = "4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw=="; 2534 2660 }; 2535 2661 }; 2536 2662 "caw-2.0.1" = { ··· 2548 2674 version = "0.1.0"; 2549 2675 src = fetchurl { 2550 2676 url = "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz"; 2551 - sha1 = "5eab50b28afe58074d0d58291388828b5e5fbc98"; 2677 + sha512 = "75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ=="; 2552 2678 }; 2553 2679 }; 2554 2680 "chalk-1.1.3" = { ··· 2557 2683 version = "1.1.3"; 2558 2684 src = fetchurl { 2559 2685 url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz"; 2560 - sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98"; 2686 + sha512 = "U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A=="; 2561 2687 }; 2562 2688 }; 2563 2689 "chalk-2.4.1" = { ··· 2611 2737 version = "0.0.2"; 2612 2738 src = fetchurl { 2613 2739 url = "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz"; 2614 - sha1 = "c0a1d2f3a7092e03774bfa83f14c0fc5790a8667"; 2740 + sha512 = "yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA=="; 2615 2741 }; 2616 2742 }; 2617 2743 "chokidar-2.1.8" = { ··· 2639 2765 src = fetchurl { 2640 2766 url = "https://registry.npmjs.org/chokidar/-/chokidar-3.2.1.tgz"; 2641 2767 sha512 = "/j5PPkb5Feyps9e+jo07jUZGvkB5Aj953NrI4s8xSVScrAo/RHeILrtdb4uzR7N6aaFFxxJ+gt8mA8HfNpw76w=="; 2768 + }; 2769 + }; 2770 + "chokidar-3.5.2" = { 2771 + name = "chokidar"; 2772 + packageName = "chokidar"; 2773 + version = "3.5.2"; 2774 + src = fetchurl { 2775 + url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz"; 2776 + sha512 = "ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ=="; 2642 2777 }; 2643 2778 }; 2644 2779 "chokidar-3.5.3" = { ··· 2710 2845 version = "2.1.0"; 2711 2846 src = fetchurl { 2712 2847 url = "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz"; 2713 - sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5"; 2848 + sha512 = "8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw=="; 2714 2849 }; 2715 2850 }; 2716 2851 "cli-cursor-3.1.0" = { ··· 2755 2890 version = "3.2.0"; 2756 2891 src = fetchurl { 2757 2892 url = "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz"; 2758 - sha1 = "120601537a916d29940f934da3b48d585a39213d"; 2893 + sha512 = "0yayqDxWQbqk3ojkYqUKqaAQ6AfNKeKWRNA8kR0WXzAsdHpP4BIaOmMAG87JGuO6qcobyW4GjxHd9PmhEd+T9w=="; 2759 2894 }; 2760 2895 }; 2761 2896 "cliui-5.0.0" = { ··· 2782 2917 version = "1.0.4"; 2783 2918 src = fetchurl { 2784 2919 url = "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"; 2785 - sha1 = "da309cc263df15994c688ca902179ca3c7cd7c7e"; 2920 + sha512 = "JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg=="; 2786 2921 }; 2787 2922 }; 2788 2923 "clone-response-1.0.2" = { ··· 2791 2926 version = "1.0.2"; 2792 2927 src = fetchurl { 2793 2928 url = "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz"; 2794 - sha1 = "d1dc973920314df67fbeb94223b4ee350239e96b"; 2929 + sha512 = "yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q=="; 2795 2930 }; 2796 2931 }; 2797 2932 "coa-2.0.2" = { ··· 2809 2944 version = "1.1.0"; 2810 2945 src = fetchurl { 2811 2946 url = "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz"; 2812 - sha1 = "0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"; 2947 + sha512 = "RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA=="; 2813 2948 }; 2814 2949 }; 2815 2950 "collection-visit-1.0.0" = { ··· 2818 2953 version = "1.0.0"; 2819 2954 src = fetchurl { 2820 2955 url = "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz"; 2821 - sha1 = "4bc0373c164bc3291b4d368c829cf1a80a59dca0"; 2956 + sha512 = "lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw=="; 2822 2957 }; 2823 2958 }; 2824 2959 "color-3.2.1" = { ··· 2854 2989 version = "1.1.3"; 2855 2990 src = fetchurl { 2856 2991 url = "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz"; 2857 - sha1 = "a7d0558bd89c42f795dd42328f740831ca53bc25"; 2992 + sha512 = "72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw=="; 2858 2993 }; 2859 2994 }; 2860 2995 "color-name-1.1.4" = { ··· 2890 3025 version = "1.0.3"; 2891 3026 src = fetchurl { 2892 3027 url = "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz"; 2893 - sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; 3028 + sha512 = "pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw=="; 2894 3029 }; 2895 3030 }; 2896 3031 "colors-1.4.0" = { ··· 2911 3046 sha512 = "FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg=="; 2912 3047 }; 2913 3048 }; 3049 + "command-exists-1.2.9" = { 3050 + name = "command-exists"; 3051 + packageName = "command-exists"; 3052 + version = "1.2.9"; 3053 + src = fetchurl { 3054 + url = "https://registry.npmjs.org/command-exists/-/command-exists-1.2.9.tgz"; 3055 + sha512 = "LTQ/SGc+s0Xc0Fu5WaKnR0YiygZkm9eKFvyS+fRsU7/ZWFF8ykFM6Pc9aCVf1+xasOOZpO3BAVgVrKvsqKHV7w=="; 3056 + }; 3057 + }; 2914 3058 "commander-2.14.1" = { 2915 3059 name = "commander"; 2916 3060 packageName = "commander"; ··· 2972 3116 src = fetchurl { 2973 3117 url = "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"; 2974 3118 sha512 = "QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw=="; 3119 + }; 3120 + }; 3121 + "commander-8.3.0" = { 3122 + name = "commander"; 3123 + packageName = "commander"; 3124 + version = "8.3.0"; 3125 + src = fetchurl { 3126 + url = "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"; 3127 + sha512 = "OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww=="; 2975 3128 }; 2976 3129 }; 2977 3130 "common-tags-1.8.2" = { ··· 2989 3142 version = "1.0.1"; 2990 3143 src = fetchurl { 2991 3144 url = "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz"; 2992 - sha1 = "ddd800da0c66127393cca5950ea968a3aaf1253b"; 3145 + sha512 = "W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg=="; 2993 3146 }; 2994 3147 }; 2995 3148 "compare-versions-3.6.0" = { ··· 3043 3196 version = "0.0.1"; 3044 3197 src = fetchurl { 3045 3198 url = "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz"; 3046 - sha1 = "d8a96bd77fd68df7793a73036a3ba0d5405d477b"; 3199 + sha512 = "/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg=="; 3047 3200 }; 3048 3201 }; 3049 3202 "concat-stream-1.5.2" = { ··· 3052 3205 version = "1.5.2"; 3053 3206 src = fetchurl { 3054 3207 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz"; 3055 - sha1 = "708978624d856af41a5a741defdd261da752c266"; 3208 + sha512 = "H6xsIBfQ94aESBG8jGHXQ7i5AEpy5ZeVaLDOisDICiTCKpqEfr34/KmTrspKQNoLKNu9gTkovlpQcUi630AKiQ=="; 3056 3209 }; 3057 3210 }; 3058 3211 "concat-stream-1.6.2" = { ··· 3073 3226 sha512 = "qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ=="; 3074 3227 }; 3075 3228 }; 3229 + "connect-3.7.0" = { 3230 + name = "connect"; 3231 + packageName = "connect"; 3232 + version = "3.7.0"; 3233 + src = fetchurl { 3234 + url = "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz"; 3235 + sha512 = "ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ=="; 3236 + }; 3237 + }; 3076 3238 "connect-history-api-fallback-1.6.0" = { 3077 3239 name = "connect-history-api-fallback"; 3078 3240 packageName = "connect-history-api-fallback"; ··· 3097 3259 version = "1.0.0"; 3098 3260 src = fetchurl { 3099 3261 url = "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz"; 3100 - sha1 = "c20b96d8c617748aaf1c16021760cd27fcb8cb75"; 3262 + sha512 = "xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ=="; 3101 3263 }; 3102 3264 }; 3103 3265 "content-disposition-0.5.2" = { ··· 3106 3268 version = "0.5.2"; 3107 3269 src = fetchurl { 3108 3270 url = "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz"; 3109 - sha1 = "0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"; 3271 + sha512 = "kRGRZw3bLlFISDBgwTSA1TMBFN6J6GWDeubmDE3AF+3+yXL8hTWv8r5rkLbqYXY4RjPk/EzHnClI3zQf1cFmHA=="; 3110 3272 }; 3111 3273 }; 3112 3274 "content-disposition-0.5.4" = { ··· 3142 3304 version = "0.3.1"; 3143 3305 src = fetchurl { 3144 3306 url = "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz"; 3145 - sha1 = "e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"; 3307 + sha512 = "+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw=="; 3146 3308 }; 3147 3309 }; 3148 3310 "cookie-0.5.0" = { ··· 3160 3322 version = "1.0.6"; 3161 3323 src = fetchurl { 3162 3324 url = "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz"; 3163 - sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c"; 3325 + sha512 = "QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ=="; 3164 3326 }; 3165 3327 }; 3166 3328 "copy-concurrently-1.0.5" = { ··· 3178 3340 version = "0.1.1"; 3179 3341 src = fetchurl { 3180 3342 url = "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz"; 3181 - sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d"; 3343 + sha512 = "XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw=="; 3182 3344 }; 3183 3345 }; 3184 3346 "copy-webpack-plugin-5.1.2" = { ··· 3199 3361 sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ=="; 3200 3362 }; 3201 3363 }; 3202 - "core-js-compat-3.22.4" = { 3364 + "core-js-compat-3.22.7" = { 3203 3365 name = "core-js-compat"; 3204 3366 packageName = "core-js-compat"; 3205 - version = "3.22.4"; 3367 + version = "3.22.7"; 3206 3368 src = fetchurl { 3207 - url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.4.tgz"; 3208 - sha512 = "dIWcsszDezkFZrfm1cnB4f/J85gyhiCpxbgBdohWCDtSVuAaChTSpPV7ldOQf/Xds2U5xCIJZOK82G4ZPAIswA=="; 3369 + url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.22.7.tgz"; 3370 + sha512 = "uI9DAQKKiiE/mclIC5g4AjRpio27g+VMRhe6rQoz+q4Wm4L6A/fJhiLtBw+sfOpDG9wZ3O0pxIw7GbfOlBgjOA=="; 3209 3371 }; 3210 3372 }; 3211 3373 "core-util-is-1.0.2" = { ··· 3784 3946 sha512 = "5tQykt+LqfJFBEYaDITx7S7cR7mJ/zQmLXZ2qt5w04ainYZw6tBf9dBunMjVeVOdYVRUzUOE4HkY5J7+uttb5Q=="; 3785 3947 }; 3786 3948 }; 3949 + "devcert-1.2.1" = { 3950 + name = "devcert"; 3951 + packageName = "devcert"; 3952 + version = "1.2.1"; 3953 + src = fetchurl { 3954 + url = "https://registry.npmjs.org/devcert/-/devcert-1.2.1.tgz"; 3955 + sha512 = "R7DqtMtsNmFVY75kzRHXON3hXoJili2xxlEcZgHi0VHSx8aJECfm7ZqAquXzTeAM/I9f8G2pHc/zq5k6iXHQzA=="; 3956 + }; 3957 + }; 3787 3958 "diff-sequences-27.5.1" = { 3788 3959 name = "diff-sequences"; 3789 3960 packageName = "diff-sequences"; ··· 4000 4171 sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d"; 4001 4172 }; 4002 4173 }; 4003 - "electron-to-chromium-1.4.137" = { 4174 + "electron-to-chromium-1.4.140" = { 4004 4175 name = "electron-to-chromium"; 4005 4176 packageName = "electron-to-chromium"; 4006 - version = "1.4.137"; 4177 + version = "1.4.140"; 4007 4178 src = fetchurl { 4008 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.137.tgz"; 4009 - sha512 = "0Rcpald12O11BUogJagX3HsCN3FE83DSqWjgXoHo5a72KUKMSfI39XBgJpgNNxS9fuGzytaFjE06kZkiVFy2qA=="; 4179 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.140.tgz"; 4180 + sha512 = "NLz5va823QfJBYOO/hLV4AfU4Crmkl/6Hl2pH3qdJcmi0ySZ3YTWHxOlDm3uJOFBEPy3pIhu8gKQo6prQTWKKA=="; 4010 4181 }; 4011 4182 }; 4012 4183 "elliptic-6.5.4" = { ··· 4045 4216 sha512 = "jrXYtxk13LXtbxCiT23+RuNhUgbJgGBRW2sCqkMGojTZTFKttL1E8mSUvsIuomUiKLJOSXUZb3HjvwXNkJjTNA=="; 4046 4217 }; 4047 4218 }; 4219 + "elm-doc-preview-5.0.5" = { 4220 + name = "elm-doc-preview"; 4221 + packageName = "elm-doc-preview"; 4222 + version = "5.0.5"; 4223 + src = fetchurl { 4224 + url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-5.0.5.tgz"; 4225 + sha512 = "GlWnbw2Bl+pA7QzRlqSYNGEQ3r3oNxMr2Nu0uiCM6AWzQ6Sk3BwtqSiUZvXLLlzWBV9pAQnY9U8xpDpPuh5rOQ=="; 4226 + }; 4227 + }; 4048 4228 "elm-hot-1.1.4" = { 4049 4229 name = "elm-hot"; 4050 4230 packageName = "elm-hot"; ··· 4189 4369 sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A=="; 4190 4370 }; 4191 4371 }; 4372 + "eol-0.9.1" = { 4373 + name = "eol"; 4374 + packageName = "eol"; 4375 + version = "0.9.1"; 4376 + src = fetchurl { 4377 + url = "https://registry.npmjs.org/eol/-/eol-0.9.1.tgz"; 4378 + sha512 = "Ds/TEoZjwggRoz/Q2O7SE3i4Jm66mqTDfmdHdq/7DKVk3bro9Q8h6WdXKdPqFLMoqxrDK5SVRzHVPOS6uuGtrg=="; 4379 + }; 4380 + }; 4192 4381 "errno-0.1.8" = { 4193 4382 name = "errno"; 4194 4383 packageName = "errno"; ··· 4207 4396 sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g=="; 4208 4397 }; 4209 4398 }; 4210 - "es-abstract-1.20.0" = { 4399 + "es-abstract-1.20.1" = { 4211 4400 name = "es-abstract"; 4212 4401 packageName = "es-abstract"; 4213 - version = "1.20.0"; 4402 + version = "1.20.1"; 4214 4403 src = fetchurl { 4215 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.0.tgz"; 4216 - sha512 = "URbD8tgRthKD3YcC39vbvSDrX23upXnPcnGAjQfgxXF5ID75YcENawc9ZX/9iTP9ptUyfCLIxTTuMYoRfiOVKA=="; 4404 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz"; 4405 + sha512 = "WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA=="; 4406 + }; 4407 + }; 4408 + "es-array-method-boxes-properly-1.0.0" = { 4409 + name = "es-array-method-boxes-properly"; 4410 + packageName = "es-array-method-boxes-properly"; 4411 + version = "1.0.0"; 4412 + src = fetchurl { 4413 + url = "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz"; 4414 + sha512 = "wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA=="; 4217 4415 }; 4218 4416 }; 4219 4417 "es-to-primitive-1.2.1" = { ··· 4378 4576 sha1 = "0acede849ed7dd1ccc32c811bb11b944d4f29232"; 4379 4577 }; 4380 4578 }; 4381 - "eventsource-1.1.0" = { 4579 + "eventsource-1.1.1" = { 4382 4580 name = "eventsource"; 4383 4581 packageName = "eventsource"; 4384 - version = "1.1.0"; 4582 + version = "1.1.1"; 4385 4583 src = fetchurl { 4386 - url = "https://registry.npmjs.org/eventsource/-/eventsource-1.1.0.tgz"; 4387 - sha512 = "VSJjT5oCNrFvCS6igjzPAt5hBzQ2qPBFIbJ03zLI9SE0mxwZpMw6BfJrbFHm1a141AavMEB8JHmBhWAd66PfCg=="; 4584 + url = "https://registry.npmjs.org/eventsource/-/eventsource-1.1.1.tgz"; 4585 + sha512 = "qV5ZC0h7jYIAOhArFJgSfdyz6rALJyb270714o7ZtNnw2WSJ+eexhKtE0O8LYPRsHZHf2osHKZBxGPvm3kPkCA=="; 4388 4586 }; 4389 4587 }; 4390 4588 "evp_bytestokey-1.0.3" = { ··· 4864 5062 sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A=="; 4865 5063 }; 4866 5064 }; 4867 - "follow-redirects-1.15.0" = { 5065 + "follow-redirects-1.15.1" = { 4868 5066 name = "follow-redirects"; 4869 5067 packageName = "follow-redirects"; 4870 - version = "1.15.0"; 5068 + version = "1.15.1"; 4871 5069 src = fetchurl { 4872 - url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.0.tgz"; 4873 - sha512 = "aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ=="; 5070 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz"; 5071 + sha512 = "yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA=="; 4874 5072 }; 4875 5073 }; 4876 5074 "for-in-1.0.2" = { ··· 4945 5143 sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af"; 4946 5144 }; 4947 5145 }; 5146 + "fs-extra-10.1.0" = { 5147 + name = "fs-extra"; 5148 + packageName = "fs-extra"; 5149 + version = "10.1.0"; 5150 + src = fetchurl { 5151 + url = "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"; 5152 + sha512 = "oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ=="; 5153 + }; 5154 + }; 4948 5155 "fs-extra-2.0.0" = { 4949 5156 name = "fs-extra"; 4950 5157 packageName = "fs-extra"; ··· 5152 5359 sha512 = "I0UBV/XOz1XkIJHEUDMZAbzCThU/H8DxmSfmdGcKPnVhu2VfFqr34jr9777IyaTYvxjedWhqVIilEDsCdP5G6g=="; 5153 5360 }; 5154 5361 }; 5362 + "get-port-3.2.0" = { 5363 + name = "get-port"; 5364 + packageName = "get-port"; 5365 + version = "3.2.0"; 5366 + src = fetchurl { 5367 + url = "https://registry.npmjs.org/get-port/-/get-port-3.2.0.tgz"; 5368 + sha1 = "dd7ce7de187c06c8bf353796ac71e099f0980ebc"; 5369 + }; 5370 + }; 5155 5371 "get-proxy-2.1.0" = { 5156 5372 name = "get-proxy"; 5157 5373 packageName = "get-proxy"; ··· 5233 5449 sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A=="; 5234 5450 }; 5235 5451 }; 5236 - "glob-7.2.0" = { 5452 + "glob-7.2.3" = { 5237 5453 name = "glob"; 5238 5454 packageName = "glob"; 5239 - version = "7.2.0"; 5455 + version = "7.2.3"; 5240 5456 src = fetchurl { 5241 - url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz"; 5242 - sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q=="; 5457 + url = "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"; 5458 + sha512 = "nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q=="; 5243 5459 }; 5244 5460 }; 5245 5461 "glob-parent-3.1.0" = { ··· 5296 5512 sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA=="; 5297 5513 }; 5298 5514 }; 5515 + "globby-11.0.4" = { 5516 + name = "globby"; 5517 + packageName = "globby"; 5518 + version = "11.0.4"; 5519 + src = fetchurl { 5520 + url = "https://registry.npmjs.org/globby/-/globby-11.0.4.tgz"; 5521 + sha512 = "9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg=="; 5522 + }; 5523 + }; 5299 5524 "globby-11.1.0" = { 5300 5525 name = "globby"; 5301 5526 packageName = "globby"; ··· 5357 5582 src = fetchurl { 5358 5583 url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz"; 5359 5584 sha512 = "9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA=="; 5585 + }; 5586 + }; 5587 + "gray-matter-4.0.3" = { 5588 + name = "gray-matter"; 5589 + packageName = "gray-matter"; 5590 + version = "4.0.3"; 5591 + src = fetchurl { 5592 + url = "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz"; 5593 + sha512 = "5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q=="; 5360 5594 }; 5361 5595 }; 5362 5596 "gzip-size-5.0.0" = { ··· 5998 6232 sha1 = "104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6"; 5999 6233 }; 6000 6234 }; 6001 - "ip-1.1.5" = { 6235 + "ip-1.1.8" = { 6002 6236 name = "ip"; 6003 6237 packageName = "ip"; 6004 - version = "1.1.5"; 6238 + version = "1.1.8"; 6005 6239 src = fetchurl { 6006 - url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz"; 6007 - sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a"; 6240 + url = "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz"; 6241 + sha512 = "PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg=="; 6008 6242 }; 6009 6243 }; 6010 6244 "ip-regex-2.1.0" = { ··· 6520 6754 sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; 6521 6755 }; 6522 6756 }; 6757 + "is-valid-domain-0.1.6" = { 6758 + name = "is-valid-domain"; 6759 + packageName = "is-valid-domain"; 6760 + version = "0.1.6"; 6761 + src = fetchurl { 6762 + url = "https://registry.npmjs.org/is-valid-domain/-/is-valid-domain-0.1.6.tgz"; 6763 + sha512 = "ZKtq737eFkZr71At8NxOFcP9O1K89gW3DkdrGMpp1upr/ueWjj+Weh4l9AI4rN0Gt8W2M1w7jrG2b/Yv83Ljpg=="; 6764 + }; 6765 + }; 6523 6766 "is-weakref-1.0.2" = { 6524 6767 name = "is-weakref"; 6525 6768 packageName = "is-weakref"; ··· 6682 6925 sha512 = "OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA=="; 6683 6926 }; 6684 6927 }; 6928 + "jsesc-3.0.2" = { 6929 + name = "jsesc"; 6930 + packageName = "jsesc"; 6931 + version = "3.0.2"; 6932 + src = fetchurl { 6933 + url = "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz"; 6934 + sha512 = "xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g=="; 6935 + }; 6936 + }; 6685 6937 "json-buffer-3.0.0" = { 6686 6938 name = "json-buffer"; 6687 6939 packageName = "json-buffer"; ··· 6853 7105 sha512 = "9ykJ/46SN/9KPM/sichzQ7OvXyGDYKGTaDlKMGCAlg2UK8KRy4jb0d8sFc+0Tt0YYnThq8X2RZgCg74RPxgcVA=="; 6854 7106 }; 6855 7107 }; 6856 - "keyv-4.2.2" = { 7108 + "keyv-4.3.0" = { 6857 7109 name = "keyv"; 6858 7110 packageName = "keyv"; 6859 - version = "4.2.2"; 7111 + version = "4.3.0"; 6860 7112 src = fetchurl { 6861 - url = "https://registry.npmjs.org/keyv/-/keyv-4.2.2.tgz"; 6862 - sha512 = "uYS0vKTlBIjNCAUqrjlxmruxOEiZxZIHXyp32sdcGmP+ukFrmWUnE//RcPXJH3Vxrni1H2gsQbjHE0bH7MtMQQ=="; 7113 + url = "https://registry.npmjs.org/keyv/-/keyv-4.3.0.tgz"; 7114 + sha512 = "C30Un9+63J0CsR7Wka5quXKqYZsT6dcRQ2aOwGcSc3RiQ4HGWpTAHlCA+puNfw2jA/s11EsxA1nCXgZRuRKMQQ=="; 6863 7115 }; 6864 7116 }; 6865 7117 "killable-1.0.1" = { ··· 6923 7175 src = fetchurl { 6924 7176 url = "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz"; 6925 7177 sha512 = "eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w=="; 7178 + }; 7179 + }; 7180 + "kleur-4.1.4" = { 7181 + name = "kleur"; 7182 + packageName = "kleur"; 7183 + version = "4.1.4"; 7184 + src = fetchurl { 7185 + url = "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz"; 7186 + sha512 = "8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA=="; 6926 7187 }; 6927 7188 }; 6928 7189 "klona-2.0.5" = { ··· 7076 7337 src = fetchurl { 7077 7338 url = "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"; 7078 7339 sha1 = "bcc6c49a42a2840ed997f323eada5ecd182e0bfe"; 7340 + }; 7341 + }; 7342 + "lodash.sortby-4.7.0" = { 7343 + name = "lodash.sortby"; 7344 + packageName = "lodash.sortby"; 7345 + version = "4.7.0"; 7346 + src = fetchurl { 7347 + url = "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz"; 7348 + sha1 = "edd14c824e2cc9c1e0b0a1b42bb5210516a42438"; 7079 7349 }; 7080 7350 }; 7081 7351 "lodash.template-4.5.0" = { ··· 7726 7996 sha512 = "nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA=="; 7727 7997 }; 7728 7998 }; 7729 - "nan-2.15.0" = { 7999 + "nan-2.16.0" = { 7730 8000 name = "nan"; 7731 8001 packageName = "nan"; 7732 - version = "2.15.0"; 8002 + version = "2.16.0"; 7733 8003 src = fetchurl { 7734 - url = "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz"; 7735 - sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ=="; 8004 + url = "https://registry.npmjs.org/nan/-/nan-2.16.0.tgz"; 8005 + sha512 = "UdAqHyFngu7TfQKsCBgAA6pWDkT8MAO7d0jyOecVhN5354xbLqdn8mV9Tat9gepAupm0bt2DbeaSC8vS52MuFA=="; 7736 8006 }; 7737 8007 }; 7738 8008 "nanoid-3.3.4" = { ··· 7843 8113 sha512 = "rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ=="; 7844 8114 }; 7845 8115 }; 7846 - "node-releases-2.0.4" = { 8116 + "node-releases-2.0.5" = { 7847 8117 name = "node-releases"; 7848 8118 packageName = "node-releases"; 7849 - version = "2.0.4"; 8119 + version = "2.0.5"; 7850 8120 src = fetchurl { 7851 - url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.4.tgz"; 7852 - sha512 = "gbMzqQtTtDz/00jQzZ21PQzdI9PyLYqUSvD0p3naOhX4odFji0ZxYdnVwPTxmSwkmxhcFImpozceidSG+AgoPQ=="; 8121 + url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.5.tgz"; 8122 + sha512 = "U9h1NLROZTq9uE1SNffn6WuPDg8icmi3ns4rEl/oTfIle4iLjTliCzgTsbaIFMq/Xn078/lfY/BL0GWZ+psK4Q=="; 7853 8123 }; 7854 8124 }; 7855 8125 "node-watch-0.5.5" = { ··· 7978 8248 sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg=="; 7979 8249 }; 7980 8250 }; 7981 - "nth-check-2.0.1" = { 8251 + "nth-check-2.1.1" = { 7982 8252 name = "nth-check"; 7983 8253 packageName = "nth-check"; 7984 - version = "2.0.1"; 8254 + version = "2.1.1"; 7985 8255 src = fetchurl { 7986 - url = "https://registry.npmjs.org/nth-check/-/nth-check-2.0.1.tgz"; 7987 - sha512 = "it1vE95zF6dTT9lBsYbxvqh0Soy4SPowchj0UBGj/V6cTPnXXtQOPUbhZ6CmGzAD/rW22LQK6E96pcdJXk4A4w=="; 8256 + url = "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz"; 8257 + sha512 = "lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w=="; 7988 8258 }; 7989 8259 }; 7990 8260 "number-is-nan-1.0.1" = { ··· 8023 8293 sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c"; 8024 8294 }; 8025 8295 }; 8026 - "object-inspect-1.12.0" = { 8296 + "object-hash-2.2.0" = { 8297 + name = "object-hash"; 8298 + packageName = "object-hash"; 8299 + version = "2.2.0"; 8300 + src = fetchurl { 8301 + url = "https://registry.npmjs.org/object-hash/-/object-hash-2.2.0.tgz"; 8302 + sha512 = "gScRMn0bS5fH+IuwyIFgnh9zBdo4DV+6GhygmWM9HyNJSgS0hScp1f5vjtm7oIIOiT9trXrShAkLFSc2IqKNgw=="; 8303 + }; 8304 + }; 8305 + "object-inspect-1.12.2" = { 8027 8306 name = "object-inspect"; 8028 8307 packageName = "object-inspect"; 8029 - version = "1.12.0"; 8308 + version = "1.12.2"; 8030 8309 src = fetchurl { 8031 - url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.0.tgz"; 8032 - sha512 = "Ho2z80bVIvJloH+YzRmpZVQe87+qASmBUKZDWgx9cu+KDrX2ZDH/3tMy+gXbZETVGs2M8YdxObOh7XAtim9Y0g=="; 8310 + url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz"; 8311 + sha512 = "z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ=="; 8033 8312 }; 8034 8313 }; 8035 8314 "object-is-1.1.5" = { ··· 8077 8356 sha512 = "TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g=="; 8078 8357 }; 8079 8358 }; 8080 - "object.getownpropertydescriptors-2.1.3" = { 8359 + "object.getownpropertydescriptors-2.1.4" = { 8081 8360 name = "object.getownpropertydescriptors"; 8082 8361 packageName = "object.getownpropertydescriptors"; 8083 - version = "2.1.3"; 8362 + version = "2.1.4"; 8084 8363 src = fetchurl { 8085 - url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz"; 8086 - sha512 = "VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw=="; 8364 + url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.4.tgz"; 8365 + sha512 = "sccv3L/pMModT6dJAYF3fzGMVcb38ysQ0tEE6ixv2yXJDtEIPph268OlAdJj5/qZMZDq2g/jqvwppt36uS/uQQ=="; 8087 8366 }; 8088 8367 }; 8089 8368 "object.pick-1.3.0" = { ··· 8518 8797 sha1 = "b363e55e8006ca6fe21784d2db22bd15d7917f14"; 8519 8798 }; 8520 8799 }; 8800 + "password-prompt-1.1.2" = { 8801 + name = "password-prompt"; 8802 + packageName = "password-prompt"; 8803 + version = "1.1.2"; 8804 + src = fetchurl { 8805 + url = "https://registry.npmjs.org/password-prompt/-/password-prompt-1.1.2.tgz"; 8806 + sha512 = "bpuBhROdrhuN3E7G/koAju0WjVw9/uQOG5Co5mokNj0MiOSBVZS1JTwM4zl55hu0WFmIEFvO9cU9sJQiBIYeIA=="; 8807 + }; 8808 + }; 8521 8809 "path-browserify-0.0.1" = { 8522 8810 name = "path-browserify"; 8523 8811 packageName = "path-browserify"; ··· 8833 9121 sha512 = "yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA=="; 8834 9122 }; 8835 9123 }; 8836 - "postcss-8.4.13" = { 9124 + "postcss-8.4.14" = { 8837 9125 name = "postcss"; 8838 9126 packageName = "postcss"; 8839 - version = "8.4.13"; 9127 + version = "8.4.14"; 8840 9128 src = fetchurl { 8841 - url = "https://registry.npmjs.org/postcss/-/postcss-8.4.13.tgz"; 8842 - sha512 = "jtL6eTBrza5MPzy8oJLFuUscHDXTV5KcLlqAWHl5q5WYRfnNRGSmOZmOZ1T6Gy7A99mOZfqungmZMpMmCVJ8ZA=="; 9129 + url = "https://registry.npmjs.org/postcss/-/postcss-8.4.14.tgz"; 9130 + sha512 = "E398TUmfAYFPBSdzgeieK2Y1+1cpdxJx8yXbK/m57nRhKSmk1GB2tO4lbLBtlkfPQTDKfe4Xqv1ASWPpayPEig=="; 8843 9131 }; 8844 9132 }; 8845 9133 "postcss-calc-7.0.5" = { ··· 10246 10534 sha512 = "Y5PQxS4ITlC+EahLuXaY86TXfR7Dc5lw294alXOq86JAHCihAIZfqv8nNCWvaEJvaC51uN9hbLGeV0cFBdH+Fw=="; 10247 10535 }; 10248 10536 }; 10537 + "section-matter-1.0.0" = { 10538 + name = "section-matter"; 10539 + packageName = "section-matter"; 10540 + version = "1.0.0"; 10541 + src = fetchurl { 10542 + url = "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz"; 10543 + sha512 = "vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA=="; 10544 + }; 10545 + }; 10249 10546 "select-hose-2.0.0" = { 10250 10547 name = "select-hose"; 10251 10548 packageName = "select-hose"; ··· 10300 10597 sha512 = "QlYTucUYOews+WeEujDoEGziz4K6c47V/Bd+LjSSYcA94p+DmINdf7ncaUinThfvZyu13lN9OY1XDxt8C0Tw0g=="; 10301 10598 }; 10302 10599 }; 10303 - "semver-regex-3.1.3" = { 10600 + "semver-regex-3.1.4" = { 10304 10601 name = "semver-regex"; 10305 10602 packageName = "semver-regex"; 10306 - version = "3.1.3"; 10603 + version = "3.1.4"; 10307 10604 src = fetchurl { 10308 - url = "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.3.tgz"; 10309 - sha512 = "Aqi54Mk9uYTjVexLnR67rTyBusmwd04cLkHy9hNvk3+G3nT2Oyg7E0l4XVbOaNwIvQ3hHeYxGcyEy+mKreyBFQ=="; 10605 + url = "https://registry.npmjs.org/semver-regex/-/semver-regex-3.1.4.tgz"; 10606 + sha512 = "6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA=="; 10310 10607 }; 10311 10608 }; 10312 10609 "semver-sort-1.0.0" = { ··· 10694 10991 src = fetchurl { 10695 10992 url = "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz"; 10696 10993 sha512 = "CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="; 10994 + }; 10995 + }; 10996 + "source-map-0.8.0-beta.0" = { 10997 + name = "source-map"; 10998 + packageName = "source-map"; 10999 + version = "0.8.0-beta.0"; 11000 + src = fetchurl { 11001 + url = "https://registry.npmjs.org/source-map/-/source-map-0.8.0-beta.0.tgz"; 11002 + sha512 = "2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA=="; 10697 11003 }; 10698 11004 }; 10699 11005 "source-map-js-1.0.2" = { ··· 11101 11407 sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e"; 11102 11408 }; 11103 11409 }; 11410 + "strip-bom-string-1.0.0" = { 11411 + name = "strip-bom-string"; 11412 + packageName = "strip-bom-string"; 11413 + version = "1.0.0"; 11414 + src = fetchurl { 11415 + url = "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz"; 11416 + sha1 = "e5211e9224369fbb81d633a2f00044dc8cedad92"; 11417 + }; 11418 + }; 11104 11419 "strip-comments-1.0.2" = { 11105 11420 name = "strip-comments"; 11106 11421 packageName = "strip-comments"; ··· 11153 11468 src = fetchurl { 11154 11469 url = "https://registry.npmjs.org/stylehacks/-/stylehacks-4.0.3.tgz"; 11155 11470 sha512 = "7GlLk9JwlElY4Y6a/rmbH2MhVlTyVmiJd1PfTCqFaIBEGMYNsrO/v3SeGTdhBThLg4Z+NbOk/qFMwCa+J+3p/g=="; 11471 + }; 11472 + }; 11473 + "sudo-prompt-8.2.5" = { 11474 + name = "sudo-prompt"; 11475 + packageName = "sudo-prompt"; 11476 + version = "8.2.5"; 11477 + src = fetchurl { 11478 + url = "https://registry.npmjs.org/sudo-prompt/-/sudo-prompt-8.2.5.tgz"; 11479 + sha512 = "rlBo3HU/1zAJUrkY6jNxDOC9eVYliG6nS4JA8u8KAshITd07tafMc/Br7xQwCSseXwJ2iCcHCE8SNWX3q8Z+kw=="; 11156 11480 }; 11157 11481 }; 11158 11482 "sums-0.2.4" = { ··· 11308 11632 sha512 = "EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw=="; 11309 11633 }; 11310 11634 }; 11635 + "terser-5.13.1" = { 11636 + name = "terser"; 11637 + packageName = "terser"; 11638 + version = "5.13.1"; 11639 + src = fetchurl { 11640 + url = "https://registry.npmjs.org/terser/-/terser-5.13.1.tgz"; 11641 + sha512 = "hn4WKOfwnwbYfe48NgrQjqNOH9jzLqRcIfbYytOXCOv46LBfWr9bDS17MQqOi+BWGD0sJK3Sj5NC/gJjiojaoA=="; 11642 + }; 11643 + }; 11311 11644 "terser-webpack-plugin-1.4.5" = { 11312 11645 name = "terser-webpack-plugin"; 11313 11646 packageName = "terser-webpack-plugin"; ··· 11524 11857 sha512 = "nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g=="; 11525 11858 }; 11526 11859 }; 11860 + "tr46-1.0.1" = { 11861 + name = "tr46"; 11862 + packageName = "tr46"; 11863 + version = "1.0.1"; 11864 + src = fetchurl { 11865 + url = "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz"; 11866 + sha1 = "a8b13fd6bfd2489519674ccde55ba3693b706d09"; 11867 + }; 11868 + }; 11527 11869 "traverse-0.3.9" = { 11528 11870 name = "traverse"; 11529 11871 packageName = "traverse"; ··· 11650 11992 sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777"; 11651 11993 }; 11652 11994 }; 11653 - "typescript-4.6.4" = { 11995 + "typescript-4.7.2" = { 11654 11996 name = "typescript"; 11655 11997 packageName = "typescript"; 11656 - version = "4.6.4"; 11998 + version = "4.7.2"; 11657 11999 src = fetchurl { 11658 - url = "https://registry.npmjs.org/typescript/-/typescript-4.6.4.tgz"; 11659 - sha512 = "9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg=="; 12000 + url = "https://registry.npmjs.org/typescript/-/typescript-4.7.2.tgz"; 12001 + sha512 = "Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A=="; 11660 12002 }; 11661 12003 }; 11662 12004 "uglify-es-3.3.10" = { ··· 11704 12046 sha512 = "61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw=="; 11705 12047 }; 11706 12048 }; 12049 + "undici-4.16.0" = { 12050 + name = "undici"; 12051 + packageName = "undici"; 12052 + version = "4.16.0"; 12053 + src = fetchurl { 12054 + url = "https://registry.npmjs.org/undici/-/undici-4.16.0.tgz"; 12055 + sha512 = "tkZSECUYi+/T1i4u+4+lwZmQgLXd4BLGlrc7KZPcLIW7Jpq99+Xpc30ONv7nS6F5UNOxp/HBZSSL9MafUrvJbw=="; 12056 + }; 12057 + }; 11707 12058 "unicode-canonical-property-names-ecmascript-2.0.0" = { 11708 12059 name = "unicode-canonical-property-names-ecmascript"; 11709 12060 packageName = "unicode-canonical-property-names-ecmascript"; ··· 12154 12505 sha512 = "mpXlqIeEBE5Q71cnBnt8w6XKhIiKmllPECqsIFBtMvzcfCxA8+614iyMJXBCQo95Vs3y1zORLqiLJn25pYZ4Tw=="; 12155 12506 }; 12156 12507 }; 12508 + "webidl-conversions-4.0.2" = { 12509 + name = "webidl-conversions"; 12510 + packageName = "webidl-conversions"; 12511 + version = "4.0.2"; 12512 + src = fetchurl { 12513 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz"; 12514 + sha512 = "YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg=="; 12515 + }; 12516 + }; 12157 12517 "webpack-4.44.2" = { 12158 12518 name = "webpack"; 12159 12519 packageName = "webpack"; ··· 12244 12604 sha512 = "jXkLtsR42xhXg7akoDKvKWE40eJeI+2KZqcp2h3NsOrRnDvtWX36KcKl30dy+hxECivdk2BVUHVNrPtoMBUx6A=="; 12245 12605 }; 12246 12606 }; 12607 + "whatwg-url-7.1.0" = { 12608 + name = "whatwg-url"; 12609 + packageName = "whatwg-url"; 12610 + version = "7.1.0"; 12611 + src = fetchurl { 12612 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.1.0.tgz"; 12613 + sha512 = "WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg=="; 12614 + }; 12615 + }; 12247 12616 "which-1.3.1" = { 12248 12617 name = "which"; 12249 12618 packageName = "which"; ··· 12541 12910 sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A=="; 12542 12911 }; 12543 12912 }; 12544 - "ws-7.5.7" = { 12913 + "ws-7.5.8" = { 12545 12914 name = "ws"; 12546 12915 packageName = "ws"; 12547 - version = "7.5.7"; 12916 + version = "7.5.8"; 12548 12917 src = fetchurl { 12549 - url = "https://registry.npmjs.org/ws/-/ws-7.5.7.tgz"; 12550 - sha512 = "KMvVuFzpKBuiIXW3E4u3mySRO2/mCHSyZDJQM5NQ9Q9KHWHWh0NHgfbRMLLrceUK5qAL4ytALJbpRMjixFZh8A=="; 12918 + url = "https://registry.npmjs.org/ws/-/ws-7.5.8.tgz"; 12919 + sha512 = "ri1Id1WinAX5Jqn9HejiGb8crfRio0Qgu8+MtL36rlTA6RLsMdWt1Az/19A2Qij6uSHUMphEFaTKa4WG+UNHNw=="; 12551 12920 }; 12552 12921 }; 12553 12922 "xmlbuilder-13.0.2" = { ··· 13204 13573 sources."function-bind-1.1.1" 13205 13574 sources."get-intrinsic-1.1.1" 13206 13575 sources."get-stream-4.1.0" 13207 - sources."glob-7.2.0" 13576 + sources."glob-7.2.3" 13208 13577 sources."glob-parent-5.1.2" 13209 13578 sources."got-9.6.0" 13210 13579 sources."has-1.0.3" ··· 13241 13610 sources."negotiator-0.6.3" 13242 13611 sources."normalize-path-3.0.0" 13243 13612 sources."normalize-url-4.5.1" 13244 - sources."object-inspect-1.12.0" 13613 + sources."object-inspect-1.12.2" 13245 13614 sources."on-finished-2.4.1" 13246 13615 sources."once-1.4.0" 13247 13616 sources."open-7.4.2" ··· 13300 13669 sources."vary-1.1.2" 13301 13670 sources."which-2.0.2" 13302 13671 sources."wrappy-1.0.2" 13303 - sources."ws-7.5.7" 13672 + sources."ws-7.5.8" 13304 13673 ]; 13305 13674 buildInputs = globalBuildInputs; 13306 13675 meta = { ··· 13435 13804 }) 13436 13805 sources."fill-range-7.0.1" 13437 13806 sources."finalhandler-1.1.2" 13438 - sources."follow-redirects-1.15.0" 13807 + sources."follow-redirects-1.15.1" 13439 13808 sources."fresh-0.5.2" 13440 13809 sources."fsevents-2.3.2" 13441 13810 sources."get-stream-4.1.0" ··· 13536 13905 sources."fill-range-7.0.1" 13537 13906 sources."fs.realpath-1.0.0" 13538 13907 sources."fsevents-2.3.2" 13539 - sources."glob-7.2.0" 13908 + sources."glob-7.2.3" 13540 13909 sources."glob-parent-5.1.2" 13541 13910 sources."graceful-fs-4.2.10" 13542 13911 sources."has-flag-4.0.0" ··· 13590 13959 sources."@types/http-cache-semantics-4.0.1" 13591 13960 sources."@types/json-buffer-3.0.0" 13592 13961 sources."@types/keyv-3.1.4" 13593 - sources."@types/node-17.0.31" 13962 + sources."@types/node-17.0.35" 13594 13963 sources."@types/responselike-1.0.0" 13595 13964 sources."cacheable-lookup-2.0.1" 13596 13965 sources."cacheable-request-7.0.2" ··· 13620 13989 sources."isurl-1.0.0" 13621 13990 sources."json-buffer-3.0.1" 13622 13991 sources."jsonfile-4.0.0" 13623 - sources."keyv-4.2.2" 13992 + sources."keyv-4.3.0" 13624 13993 sources."lowercase-keys-2.0.0" 13625 13994 sources."lru-cache-6.0.0" 13626 13995 sources."mimic-response-2.1.0" ··· 13875 14244 sources."readable-stream-2.3.7" 13876 14245 sources."safe-buffer-5.1.2" 13877 14246 sources."semver-6.3.0" 13878 - sources."semver-regex-3.1.3" 14247 + sources."semver-regex-3.1.4" 13879 14248 (sources."semver-sort-1.0.0" // { 13880 14249 dependencies = [ 13881 14250 sources."semver-5.7.1" ··· 13910 14279 sources."@babel/code-frame-7.16.7" 13911 14280 sources."@babel/compat-data-7.17.10" 13912 14281 sources."@babel/core-7.12.10" 13913 - sources."@babel/generator-7.17.10" 14282 + sources."@babel/generator-7.18.2" 13914 14283 sources."@babel/helper-annotate-as-pure-7.16.7" 13915 14284 sources."@babel/helper-builder-binary-assignment-operator-visitor-7.16.7" 13916 - (sources."@babel/helper-compilation-targets-7.17.10" // { 14285 + (sources."@babel/helper-compilation-targets-7.18.2" // { 13917 14286 dependencies = [ 13918 14287 sources."semver-6.3.0" 13919 14288 ]; 13920 14289 }) 13921 - sources."@babel/helper-create-class-features-plugin-7.17.9" 13922 - sources."@babel/helper-create-regexp-features-plugin-7.17.0" 13923 - sources."@babel/helper-environment-visitor-7.16.7" 14290 + sources."@babel/helper-create-class-features-plugin-7.18.0" 14291 + sources."@babel/helper-create-regexp-features-plugin-7.17.12" 14292 + sources."@babel/helper-environment-visitor-7.18.2" 13924 14293 sources."@babel/helper-explode-assignable-expression-7.16.7" 13925 14294 sources."@babel/helper-function-name-7.17.9" 13926 14295 sources."@babel/helper-hoist-variables-7.16.7" 13927 14296 sources."@babel/helper-member-expression-to-functions-7.17.7" 13928 14297 sources."@babel/helper-module-imports-7.16.7" 13929 - sources."@babel/helper-module-transforms-7.17.7" 14298 + sources."@babel/helper-module-transforms-7.18.0" 13930 14299 sources."@babel/helper-optimise-call-expression-7.16.7" 13931 - sources."@babel/helper-plugin-utils-7.16.7" 14300 + sources."@babel/helper-plugin-utils-7.17.12" 13932 14301 sources."@babel/helper-remap-async-to-generator-7.16.8" 13933 - sources."@babel/helper-replace-supers-7.16.7" 13934 - sources."@babel/helper-simple-access-7.17.7" 14302 + sources."@babel/helper-replace-supers-7.18.2" 14303 + sources."@babel/helper-simple-access-7.18.2" 13935 14304 sources."@babel/helper-skip-transparent-expression-wrappers-7.16.0" 13936 14305 sources."@babel/helper-split-export-declaration-7.16.7" 13937 14306 sources."@babel/helper-validator-identifier-7.16.7" 13938 14307 sources."@babel/helper-validator-option-7.16.7" 13939 14308 sources."@babel/helper-wrap-function-7.16.8" 13940 - sources."@babel/helpers-7.17.9" 13941 - sources."@babel/highlight-7.17.9" 13942 - sources."@babel/parser-7.17.10" 13943 - sources."@babel/plugin-proposal-async-generator-functions-7.16.8" 13944 - sources."@babel/plugin-proposal-class-properties-7.16.7" 14309 + sources."@babel/helpers-7.18.2" 14310 + sources."@babel/highlight-7.17.12" 14311 + sources."@babel/parser-7.18.3" 14312 + sources."@babel/plugin-proposal-async-generator-functions-7.17.12" 14313 + sources."@babel/plugin-proposal-class-properties-7.17.12" 13945 14314 sources."@babel/plugin-proposal-dynamic-import-7.16.7" 13946 - sources."@babel/plugin-proposal-export-namespace-from-7.16.7" 13947 - sources."@babel/plugin-proposal-json-strings-7.16.7" 13948 - sources."@babel/plugin-proposal-logical-assignment-operators-7.16.7" 13949 - sources."@babel/plugin-proposal-nullish-coalescing-operator-7.16.7" 14315 + sources."@babel/plugin-proposal-export-namespace-from-7.17.12" 14316 + sources."@babel/plugin-proposal-json-strings-7.17.12" 14317 + sources."@babel/plugin-proposal-logical-assignment-operators-7.17.12" 14318 + sources."@babel/plugin-proposal-nullish-coalescing-operator-7.17.12" 13950 14319 sources."@babel/plugin-proposal-numeric-separator-7.16.7" 13951 - sources."@babel/plugin-proposal-object-rest-spread-7.17.3" 14320 + sources."@babel/plugin-proposal-object-rest-spread-7.18.0" 13952 14321 sources."@babel/plugin-proposal-optional-catch-binding-7.16.7" 13953 - sources."@babel/plugin-proposal-optional-chaining-7.16.7" 13954 - sources."@babel/plugin-proposal-private-methods-7.16.11" 13955 - sources."@babel/plugin-proposal-unicode-property-regex-7.16.7" 14322 + sources."@babel/plugin-proposal-optional-chaining-7.17.12" 14323 + sources."@babel/plugin-proposal-private-methods-7.17.12" 14324 + sources."@babel/plugin-proposal-unicode-property-regex-7.17.12" 13956 14325 sources."@babel/plugin-syntax-async-generators-7.8.4" 13957 14326 sources."@babel/plugin-syntax-class-properties-7.12.13" 13958 14327 sources."@babel/plugin-syntax-dynamic-import-7.8.3" ··· 13965 14334 sources."@babel/plugin-syntax-optional-catch-binding-7.8.3" 13966 14335 sources."@babel/plugin-syntax-optional-chaining-7.8.3" 13967 14336 sources."@babel/plugin-syntax-top-level-await-7.14.5" 13968 - sources."@babel/plugin-transform-arrow-functions-7.16.7" 13969 - sources."@babel/plugin-transform-async-to-generator-7.16.8" 14337 + sources."@babel/plugin-transform-arrow-functions-7.17.12" 14338 + sources."@babel/plugin-transform-async-to-generator-7.17.12" 13970 14339 sources."@babel/plugin-transform-block-scoped-functions-7.16.7" 13971 - sources."@babel/plugin-transform-block-scoping-7.16.7" 13972 - sources."@babel/plugin-transform-classes-7.16.7" 13973 - sources."@babel/plugin-transform-computed-properties-7.16.7" 13974 - sources."@babel/plugin-transform-destructuring-7.17.7" 14340 + sources."@babel/plugin-transform-block-scoping-7.17.12" 14341 + sources."@babel/plugin-transform-classes-7.17.12" 14342 + sources."@babel/plugin-transform-computed-properties-7.17.12" 14343 + sources."@babel/plugin-transform-destructuring-7.18.0" 13975 14344 sources."@babel/plugin-transform-dotall-regex-7.16.7" 13976 - sources."@babel/plugin-transform-duplicate-keys-7.16.7" 14345 + sources."@babel/plugin-transform-duplicate-keys-7.17.12" 13977 14346 sources."@babel/plugin-transform-exponentiation-operator-7.16.7" 13978 - sources."@babel/plugin-transform-for-of-7.16.7" 14347 + sources."@babel/plugin-transform-for-of-7.18.1" 13979 14348 sources."@babel/plugin-transform-function-name-7.16.7" 13980 - sources."@babel/plugin-transform-literals-7.16.7" 14349 + sources."@babel/plugin-transform-literals-7.17.12" 13981 14350 sources."@babel/plugin-transform-member-expression-literals-7.16.7" 13982 - sources."@babel/plugin-transform-modules-amd-7.16.7" 13983 - sources."@babel/plugin-transform-modules-commonjs-7.17.9" 13984 - sources."@babel/plugin-transform-modules-systemjs-7.17.8" 13985 - sources."@babel/plugin-transform-modules-umd-7.16.7" 13986 - sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.10" 13987 - sources."@babel/plugin-transform-new-target-7.16.7" 14351 + sources."@babel/plugin-transform-modules-amd-7.18.0" 14352 + sources."@babel/plugin-transform-modules-commonjs-7.18.2" 14353 + sources."@babel/plugin-transform-modules-systemjs-7.18.0" 14354 + sources."@babel/plugin-transform-modules-umd-7.18.0" 14355 + sources."@babel/plugin-transform-named-capturing-groups-regex-7.17.12" 14356 + sources."@babel/plugin-transform-new-target-7.17.12" 13988 14357 sources."@babel/plugin-transform-object-super-7.16.7" 13989 - sources."@babel/plugin-transform-parameters-7.16.7" 14358 + sources."@babel/plugin-transform-parameters-7.17.12" 13990 14359 sources."@babel/plugin-transform-property-literals-7.16.7" 13991 - sources."@babel/plugin-transform-regenerator-7.17.9" 13992 - sources."@babel/plugin-transform-reserved-words-7.16.7" 14360 + sources."@babel/plugin-transform-regenerator-7.18.0" 14361 + sources."@babel/plugin-transform-reserved-words-7.17.12" 13993 14362 sources."@babel/plugin-transform-runtime-7.12.10" 13994 14363 sources."@babel/plugin-transform-shorthand-properties-7.16.7" 13995 - sources."@babel/plugin-transform-spread-7.16.7" 14364 + sources."@babel/plugin-transform-spread-7.17.12" 13996 14365 sources."@babel/plugin-transform-sticky-regex-7.16.7" 13997 - sources."@babel/plugin-transform-template-literals-7.16.7" 13998 - sources."@babel/plugin-transform-typeof-symbol-7.16.7" 14366 + sources."@babel/plugin-transform-template-literals-7.18.2" 14367 + sources."@babel/plugin-transform-typeof-symbol-7.17.12" 13999 14368 sources."@babel/plugin-transform-unicode-escapes-7.16.7" 14000 14369 sources."@babel/plugin-transform-unicode-regex-7.16.7" 14001 14370 sources."@babel/preset-env-7.12.10" 14002 14371 sources."@babel/preset-modules-0.1.5" 14003 14372 sources."@babel/runtime-7.12.5" 14004 14373 sources."@babel/template-7.16.7" 14005 - sources."@babel/traverse-7.17.10" 14006 - sources."@babel/types-7.17.10" 14374 + sources."@babel/traverse-7.18.2" 14375 + sources."@babel/types-7.18.2" 14007 14376 sources."@hapi/address-2.1.4" 14008 14377 sources."@hapi/bourne-1.3.2" 14009 14378 sources."@hapi/hoek-8.5.1" 14010 14379 sources."@hapi/joi-15.1.1" 14011 14380 sources."@hapi/topo-3.1.6" 14012 - sources."@jridgewell/gen-mapping-0.1.1" 14381 + sources."@jridgewell/gen-mapping-0.3.1" 14382 + sources."@jridgewell/resolve-uri-3.0.7" 14013 14383 sources."@jridgewell/set-array-1.1.1" 14014 14384 sources."@jridgewell/sourcemap-codec-1.4.13" 14385 + sources."@jridgewell/trace-mapping-0.3.13" 14015 14386 sources."@mrmlnc/readdir-enhanced-2.2.1" 14016 14387 sources."@nodelib/fs.stat-1.1.3" 14017 14388 sources."@types/glob-7.2.0" ··· 14019 14390 sources."@types/http-proxy-1.17.9" 14020 14391 sources."@types/json-schema-7.0.11" 14021 14392 sources."@types/minimatch-3.0.5" 14022 - sources."@types/node-17.0.31" 14393 + sources."@types/node-17.0.35" 14023 14394 sources."@types/parse-json-4.0.0" 14024 14395 sources."@types/q-1.5.5" 14025 14396 sources."@types/source-list-map-0.1.2" ··· 14084 14455 sources."array-union-1.0.2" 14085 14456 sources."array-uniq-1.0.3" 14086 14457 sources."array-unique-0.3.2" 14458 + sources."array.prototype.reduce-1.0.4" 14087 14459 sources."asap-2.0.6" 14088 14460 sources."asn1-0.2.6" 14089 14461 (sources."asn1.js-5.4.1" // { ··· 14141 14513 sources."binary-extensions-2.2.0" 14142 14514 sources."bindings-1.5.0" 14143 14515 sources."bluebird-3.7.2" 14144 - sources."bn.js-5.2.0" 14516 + sources."bn.js-5.2.1" 14145 14517 (sources."body-parser-1.20.0" // { 14146 14518 dependencies = [ 14147 14519 sources."bytes-3.1.2" ··· 14187 14559 sources."camel-case-4.1.2" 14188 14560 sources."camelcase-5.3.1" 14189 14561 sources."caniuse-api-3.0.0" 14190 - sources."caniuse-lite-1.0.30001338" 14562 + sources."caniuse-lite-1.0.30001344" 14191 14563 sources."case-sensitive-paths-webpack-plugin-2.3.0" 14192 14564 sources."caseless-0.12.0" 14193 14565 (sources."chalk-2.4.2" // { ··· 14286 14658 ]; 14287 14659 }) 14288 14660 sources."core-js-2.6.12" 14289 - (sources."core-js-compat-3.22.4" // { 14661 + (sources."core-js-compat-3.22.7" // { 14290 14662 dependencies = [ 14291 14663 sources."semver-7.0.0" 14292 14664 ]; ··· 14387 14759 sources."duplexify-3.7.1" 14388 14760 sources."ecc-jsbn-0.1.2" 14389 14761 sources."ee-first-1.1.1" 14390 - sources."electron-to-chromium-1.4.137" 14762 + sources."electron-to-chromium-1.4.140" 14391 14763 (sources."elliptic-6.5.4" // { 14392 14764 dependencies = [ 14393 14765 sources."bn.js-4.12.0" ··· 14423 14795 sources."entities-2.2.0" 14424 14796 sources."errno-0.1.8" 14425 14797 sources."error-ex-1.3.2" 14426 - sources."es-abstract-1.20.0" 14798 + sources."es-abstract-1.20.1" 14799 + sources."es-array-method-boxes-properly-1.0.0" 14427 14800 sources."es-to-primitive-1.2.1" 14428 14801 sources."escalade-3.1.1" 14429 14802 sources."escape-html-1.0.3" ··· 14551 14924 sources."find-up-4.1.0" 14552 14925 sources."firstline-1.3.1" 14553 14926 sources."flush-write-stream-1.1.1" 14554 - sources."follow-redirects-1.15.0" 14927 + sources."follow-redirects-1.15.1" 14555 14928 sources."for-in-1.0.2" 14556 14929 sources."forever-agent-0.6.1" 14557 14930 sources."form-data-2.3.3" ··· 14576 14949 sources."get-symbol-description-1.0.0" 14577 14950 sources."get-value-2.0.6" 14578 14951 sources."getpass-0.1.7" 14579 - sources."glob-7.2.0" 14952 + sources."glob-7.2.3" 14580 14953 (sources."glob-parent-3.1.0" // { 14581 14954 dependencies = [ 14582 14955 sources."is-glob-3.1.0" ··· 14683 15056 sources."internal-ip-4.3.0" 14684 15057 sources."internal-slot-1.0.3" 14685 15058 sources."invert-kv-1.0.0" 14686 - sources."ip-1.1.5" 15059 + sources."ip-1.1.8" 14687 15060 sources."ip-regex-2.1.0" 14688 15061 sources."ipaddr.js-1.9.1" 14689 15062 sources."is-absolute-url-2.1.0" ··· 14815 15188 sources."multicast-dns-6.2.3" 14816 15189 sources."multicast-dns-service-types-1.1.0" 14817 15190 sources."mute-stream-0.0.8" 14818 - sources."nan-2.15.0" 15191 + sources."nan-2.16.0" 14819 15192 sources."nanoid-3.3.4" 14820 15193 sources."nanomatch-1.2.13" 14821 15194 sources."ncp-1.0.1" ··· 14838 15211 sources."punycode-1.4.1" 14839 15212 ]; 14840 15213 }) 14841 - sources."node-releases-2.0.4" 15214 + sources."node-releases-2.0.5" 14842 15215 sources."normalize-package-data-2.5.0" 14843 15216 sources."normalize-path-3.0.0" 14844 15217 sources."normalize-range-0.1.2" ··· 14848 15221 sources."path-key-2.0.1" 14849 15222 ]; 14850 15223 }) 14851 - sources."nth-check-2.0.1" 15224 + sources."nth-check-2.1.1" 14852 15225 sources."number-is-nan-1.0.1" 14853 15226 sources."oauth-sign-0.9.0" 14854 15227 sources."object-assign-4.1.1" ··· 14865 15238 sources."kind-of-3.2.2" 14866 15239 ]; 14867 15240 }) 14868 - sources."object-inspect-1.12.0" 15241 + sources."object-inspect-1.12.2" 14869 15242 sources."object-is-1.1.5" 14870 15243 sources."object-keys-1.1.1" 14871 15244 sources."object-visit-1.0.1" 14872 15245 sources."object.assign-4.1.2" 14873 15246 sources."object.entries-1.1.5" 14874 - sources."object.getownpropertydescriptors-2.1.3" 15247 + sources."object.getownpropertydescriptors-2.1.4" 14875 15248 sources."object.pick-1.3.0" 14876 15249 sources."object.values-1.1.5" 14877 15250 sources."obuf-1.1.2" ··· 15071 15444 }) 15072 15445 (sources."postcss-safe-parser-5.0.2" // { 15073 15446 dependencies = [ 15074 - sources."postcss-8.4.13" 15447 + sources."postcss-8.4.14" 15075 15448 ]; 15076 15449 }) 15077 15450 sources."postcss-selector-parser-6.0.10" ··· 15309 15682 (sources."sockjs-client-1.4.0" // { 15310 15683 dependencies = [ 15311 15684 sources."debug-3.2.7" 15312 - sources."eventsource-1.1.0" 15685 + sources."eventsource-1.1.1" 15313 15686 ]; 15314 15687 }) 15315 15688 sources."sort-keys-1.1.2" ··· 15730 16103 sha512 = "DKhH6o+SNo3m8y9qAM932/gLMK0YmNSJevHdBYkaDWfKiw+vlo4Wtfskb8CI8ZAzWrAOcDNiLCsEbSsbPHk2Vg=="; 15731 16104 }; 15732 16105 dependencies = [ 15733 - sources."@types/jest-27.5.0" 16106 + sources."@types/jest-27.5.1" 15734 16107 sources."ansi-regex-5.0.1" 15735 16108 sources."ansi-styles-5.2.0" 15736 16109 sources."balanced-match-1.0.2" ··· 15749 16122 sources."find-elm-dependencies-2.0.4" 15750 16123 sources."firstline-1.3.1" 15751 16124 sources."fs.realpath-1.0.0" 15752 - sources."glob-7.2.0" 16125 + sources."glob-7.2.3" 15753 16126 sources."has-flag-4.0.0" 15754 16127 sources."inflight-1.0.6" 15755 16128 sources."inherits-2.0.4" ··· 15775 16148 sources."supports-color-7.2.0" 15776 16149 sources."temp-0.9.4" 15777 16150 sources."ts-union-2.3.0" 15778 - sources."typescript-4.6.4" 16151 + sources."typescript-4.7.2" 15779 16152 sources."which-1.3.1" 15780 16153 sources."wrappy-1.0.2" 15781 16154 ]; ··· 15789 16162 bypassCache = true; 15790 16163 reconstructLock = true; 15791 16164 }; 16165 + elm-pages = nodeEnv.buildNodePackage { 16166 + name = "elm-pages"; 16167 + packageName = "elm-pages"; 16168 + version = "2.1.11"; 16169 + src = fetchurl { 16170 + url = "https://registry.npmjs.org/elm-pages/-/elm-pages-2.1.11.tgz"; 16171 + sha512 = "Xs1ZlHIM5VZ/7QyerY+JNyNzB5VqBdBeVudZznX672xINgZUa36fAKwIp+LJ01A7u/+9rHEP9MItVurZ/aBzNQ=="; 16172 + }; 16173 + dependencies = [ 16174 + sources."@nodelib/fs.scandir-2.1.5" 16175 + sources."@nodelib/fs.stat-2.0.5" 16176 + sources."@nodelib/fs.walk-1.2.8" 16177 + sources."@sindresorhus/is-0.14.0" 16178 + sources."@szmarczak/http-timer-1.1.2" 16179 + sources."@types/configstore-2.1.1" 16180 + sources."@types/debug-0.0.30" 16181 + sources."@types/get-port-3.2.0" 16182 + sources."@types/glob-5.0.37" 16183 + sources."@types/lodash-4.14.182" 16184 + sources."@types/minimatch-3.0.5" 16185 + sources."@types/mkdirp-0.5.2" 16186 + sources."@types/node-8.10.66" 16187 + sources."@types/rimraf-2.0.5" 16188 + sources."@types/tmp-0.0.33" 16189 + sources."accepts-1.3.8" 16190 + sources."acorn-8.7.1" 16191 + sources."ansi-escapes-3.2.0" 16192 + sources."ansi-styles-4.3.0" 16193 + sources."anymatch-3.1.2" 16194 + sources."application-config-path-0.1.0" 16195 + sources."argparse-1.0.10" 16196 + sources."array-flatten-1.1.1" 16197 + sources."array-union-2.1.0" 16198 + sources."async-limiter-1.0.1" 16199 + sources."balanced-match-1.0.2" 16200 + sources."batch-0.6.1" 16201 + sources."binary-extensions-2.2.0" 16202 + (sources."body-parser-1.20.0" // { 16203 + dependencies = [ 16204 + sources."on-finished-2.4.1" 16205 + ]; 16206 + }) 16207 + sources."brace-expansion-1.1.11" 16208 + sources."braces-3.0.2" 16209 + sources."buffer-from-1.1.2" 16210 + sources."bytes-3.1.2" 16211 + (sources."cacheable-request-6.1.0" // { 16212 + dependencies = [ 16213 + sources."get-stream-5.2.0" 16214 + sources."lowercase-keys-2.0.0" 16215 + ]; 16216 + }) 16217 + sources."call-bind-1.0.2" 16218 + sources."chalk-3.0.0" 16219 + sources."chokidar-3.5.2" 16220 + sources."clone-response-1.0.2" 16221 + sources."color-convert-2.0.1" 16222 + sources."color-name-1.1.4" 16223 + sources."command-exists-1.2.9" 16224 + sources."commander-8.3.0" 16225 + sources."concat-map-0.0.1" 16226 + sources."connect-3.7.0" 16227 + sources."content-disposition-0.5.4" 16228 + sources."content-type-1.0.4" 16229 + sources."cookie-0.5.0" 16230 + sources."cookie-signature-1.0.6" 16231 + sources."cross-spawn-7.0.3" 16232 + sources."debug-2.6.9" 16233 + sources."decompress-response-3.3.0" 16234 + sources."deep-extend-0.6.0" 16235 + sources."defer-to-connect-1.1.3" 16236 + sources."depd-2.0.0" 16237 + sources."destroy-1.2.0" 16238 + (sources."devcert-1.2.1" // { 16239 + dependencies = [ 16240 + sources."debug-3.2.7" 16241 + sources."ms-2.1.3" 16242 + ]; 16243 + }) 16244 + sources."dir-glob-3.0.1" 16245 + sources."duplexer3-0.1.4" 16246 + sources."ee-first-1.1.1" 16247 + (sources."elm-doc-preview-5.0.5" // { 16248 + dependencies = [ 16249 + sources."commander-5.1.0" 16250 + sources."tmp-0.1.0" 16251 + ]; 16252 + }) 16253 + sources."elm-hot-1.1.6" 16254 + sources."encodeurl-1.0.2" 16255 + sources."end-of-stream-1.4.4" 16256 + sources."eol-0.9.1" 16257 + sources."escape-html-1.0.3" 16258 + sources."esprima-4.0.1" 16259 + sources."etag-1.8.1" 16260 + (sources."express-4.18.1" // { 16261 + dependencies = [ 16262 + sources."finalhandler-1.2.0" 16263 + sources."on-finished-2.4.1" 16264 + sources."statuses-2.0.1" 16265 + ]; 16266 + }) 16267 + (sources."express-ws-4.0.0" // { 16268 + dependencies = [ 16269 + sources."ws-5.2.3" 16270 + ]; 16271 + }) 16272 + sources."extend-shallow-2.0.1" 16273 + sources."fast-glob-3.2.11" 16274 + sources."fastq-1.13.0" 16275 + sources."fill-range-7.0.1" 16276 + sources."finalhandler-1.1.2" 16277 + sources."forwarded-0.2.0" 16278 + sources."fresh-0.5.2" 16279 + sources."fs-extra-10.1.0" 16280 + sources."fs.realpath-1.0.0" 16281 + sources."fsevents-2.3.2" 16282 + sources."function-bind-1.1.1" 16283 + sources."get-intrinsic-1.1.1" 16284 + sources."get-port-3.2.0" 16285 + sources."get-stream-4.1.0" 16286 + sources."glob-7.2.3" 16287 + sources."glob-parent-5.1.2" 16288 + sources."globby-11.0.4" 16289 + sources."got-9.6.0" 16290 + sources."graceful-fs-4.2.10" 16291 + sources."gray-matter-4.0.3" 16292 + sources."has-1.0.3" 16293 + sources."has-flag-4.0.0" 16294 + sources."has-symbols-1.0.3" 16295 + sources."http-cache-semantics-4.1.0" 16296 + (sources."http-errors-2.0.0" // { 16297 + dependencies = [ 16298 + sources."statuses-2.0.1" 16299 + ]; 16300 + }) 16301 + sources."iconv-lite-0.4.24" 16302 + sources."ignore-5.2.0" 16303 + sources."inflight-1.0.6" 16304 + sources."inherits-2.0.4" 16305 + sources."ini-1.3.8" 16306 + sources."ipaddr.js-1.9.1" 16307 + sources."is-binary-path-2.1.0" 16308 + sources."is-docker-2.2.1" 16309 + sources."is-extendable-0.1.1" 16310 + sources."is-extglob-2.1.1" 16311 + sources."is-glob-4.0.3" 16312 + sources."is-number-7.0.0" 16313 + sources."is-valid-domain-0.1.6" 16314 + sources."is-wsl-2.2.0" 16315 + sources."isexe-2.0.0" 16316 + sources."js-yaml-3.14.1" 16317 + sources."jsesc-3.0.2" 16318 + sources."json-buffer-3.0.0" 16319 + sources."jsonfile-6.1.0" 16320 + sources."keyv-3.1.0" 16321 + sources."kind-of-6.0.3" 16322 + sources."kleur-4.1.4" 16323 + sources."latest-version-5.1.0" 16324 + sources."lodash-4.17.21" 16325 + sources."lodash.sortby-4.7.0" 16326 + sources."lowercase-keys-1.0.1" 16327 + sources."media-typer-0.3.0" 16328 + sources."merge-descriptors-1.0.1" 16329 + sources."merge2-1.4.1" 16330 + sources."methods-1.1.2" 16331 + sources."micromatch-4.0.5" 16332 + sources."mime-1.6.0" 16333 + sources."mime-db-1.52.0" 16334 + sources."mime-types-2.1.35" 16335 + sources."mimic-response-1.0.1" 16336 + sources."minimatch-3.1.2" 16337 + sources."minimist-1.2.6" 16338 + sources."mkdirp-0.5.6" 16339 + sources."ms-2.0.0" 16340 + sources."negotiator-0.6.3" 16341 + sources."nice-try-1.0.5" 16342 + sources."normalize-path-3.0.0" 16343 + sources."normalize-url-4.5.1" 16344 + sources."object-hash-2.2.0" 16345 + sources."object-inspect-1.12.2" 16346 + sources."on-finished-2.3.0" 16347 + sources."once-1.4.0" 16348 + sources."open-7.4.2" 16349 + sources."os-tmpdir-1.0.2" 16350 + sources."p-cancelable-1.1.0" 16351 + (sources."package-json-6.5.0" // { 16352 + dependencies = [ 16353 + sources."semver-6.3.0" 16354 + ]; 16355 + }) 16356 + sources."parseurl-1.3.3" 16357 + (sources."password-prompt-1.1.2" // { 16358 + dependencies = [ 16359 + sources."cross-spawn-6.0.5" 16360 + sources."path-key-2.0.1" 16361 + sources."shebang-command-1.2.0" 16362 + sources."shebang-regex-1.0.0" 16363 + sources."which-1.3.1" 16364 + ]; 16365 + }) 16366 + sources."path-is-absolute-1.0.1" 16367 + sources."path-key-3.1.1" 16368 + sources."path-to-regexp-0.1.7" 16369 + sources."path-type-4.0.0" 16370 + sources."picomatch-2.3.1" 16371 + sources."prepend-http-2.0.0" 16372 + sources."proxy-addr-2.0.7" 16373 + sources."pump-3.0.0" 16374 + sources."punycode-2.1.1" 16375 + sources."qs-6.10.3" 16376 + sources."queue-microtask-1.2.3" 16377 + sources."range-parser-1.2.1" 16378 + sources."raw-body-2.5.1" 16379 + sources."rc-1.2.8" 16380 + sources."readdirp-3.6.0" 16381 + sources."registry-auth-token-4.2.1" 16382 + sources."registry-url-5.1.0" 16383 + sources."responselike-1.0.2" 16384 + sources."reusify-1.0.4" 16385 + sources."rimraf-2.7.1" 16386 + sources."run-parallel-1.2.0" 16387 + sources."safe-buffer-5.2.1" 16388 + sources."safer-buffer-2.1.2" 16389 + sources."section-matter-1.0.0" 16390 + sources."semver-5.7.1" 16391 + (sources."send-0.18.0" // { 16392 + dependencies = [ 16393 + sources."ms-2.1.3" 16394 + sources."on-finished-2.4.1" 16395 + sources."statuses-2.0.1" 16396 + ]; 16397 + }) 16398 + (sources."serve-index-1.9.1" // { 16399 + dependencies = [ 16400 + sources."depd-1.1.2" 16401 + sources."http-errors-1.6.3" 16402 + sources."inherits-2.0.3" 16403 + sources."setprototypeof-1.1.0" 16404 + ]; 16405 + }) 16406 + sources."serve-static-1.15.0" 16407 + sources."setprototypeof-1.2.0" 16408 + sources."shebang-command-2.0.0" 16409 + sources."shebang-regex-3.0.0" 16410 + sources."side-channel-1.0.4" 16411 + sources."slash-3.0.0" 16412 + sources."source-map-0.8.0-beta.0" 16413 + (sources."source-map-support-0.5.21" // { 16414 + dependencies = [ 16415 + sources."source-map-0.6.1" 16416 + ]; 16417 + }) 16418 + sources."sprintf-js-1.0.3" 16419 + sources."statuses-1.5.0" 16420 + sources."strip-bom-string-1.0.0" 16421 + sources."strip-json-comments-2.0.1" 16422 + sources."sudo-prompt-8.2.5" 16423 + sources."supports-color-7.2.0" 16424 + (sources."terser-5.13.1" // { 16425 + dependencies = [ 16426 + sources."commander-2.20.3" 16427 + ]; 16428 + }) 16429 + sources."tmp-0.0.33" 16430 + sources."to-readable-stream-1.0.0" 16431 + sources."to-regex-range-5.0.1" 16432 + sources."toidentifier-1.0.1" 16433 + sources."tr46-1.0.1" 16434 + sources."tslib-1.14.1" 16435 + sources."type-is-1.6.18" 16436 + sources."undici-4.16.0" 16437 + sources."universalify-2.0.0" 16438 + sources."unpipe-1.0.0" 16439 + sources."url-parse-lax-3.0.0" 16440 + sources."utils-merge-1.0.1" 16441 + sources."vary-1.1.2" 16442 + sources."webidl-conversions-4.0.2" 16443 + sources."whatwg-url-7.1.0" 16444 + sources."which-2.0.2" 16445 + sources."wrappy-1.0.2" 16446 + sources."ws-7.5.8" 16447 + ]; 16448 + buildInputs = globalBuildInputs; 16449 + meta = { 16450 + description = "Type-safe static sites, written in pure elm with your own custom elm-markup syntax."; 16451 + homepage = "https://elm-pages.com"; 16452 + license = "BSD-3-Clause"; 16453 + }; 16454 + production = true; 16455 + bypassCache = true; 16456 + reconstructLock = true; 16457 + }; 15792 16458 elm-review = nodeEnv.buildNodePackage { 15793 16459 name = "elm-review"; 15794 16460 packageName = "elm-review"; ··· 15804 16470 sources."@types/http-cache-semantics-4.0.1" 15805 16471 sources."@types/json-buffer-3.0.0" 15806 16472 sources."@types/keyv-3.1.4" 15807 - sources."@types/node-17.0.31" 16473 + sources."@types/node-17.0.35" 15808 16474 sources."@types/responselike-1.0.0" 15809 16475 (sources."ansi-escapes-4.3.2" // { 15810 16476 dependencies = [ ··· 15856 16522 sources."fs.realpath-1.0.0" 15857 16523 sources."fsevents-2.3.2" 15858 16524 sources."get-stream-5.2.0" 15859 - sources."glob-7.2.0" 16525 + (sources."glob-7.2.3" // { 16526 + dependencies = [ 16527 + sources."minimatch-3.1.2" 16528 + ]; 16529 + }) 15860 16530 sources."glob-parent-5.1.2" 15861 16531 sources."got-10.7.0" 15862 16532 sources."graceful-fs-4.2.10" ··· 15875 16545 sources."isexe-2.0.0" 15876 16546 sources."json-buffer-3.0.1" 15877 16547 sources."jsonfile-6.1.0" 15878 - sources."keyv-4.2.2" 16548 + sources."keyv-4.3.0" 15879 16549 sources."kleur-3.0.3" 15880 16550 sources."locate-path-5.0.0" 15881 16551 sources."log-symbols-4.1.0"