lol

Merge master into staging

+2842 -2553
+1
nixos/modules/module-list.nix
··· 541 541 ./services/networking/openntpd.nix 542 542 ./services/networking/openvpn.nix 543 543 ./services/networking/ostinato.nix 544 + ./services/networking/owamp.nix 544 545 ./services/networking/pdnsd.nix 545 546 ./services/networking/polipo.nix 546 547 ./services/networking/powerdns.nix
+6
nixos/modules/rename.nix
··· 200 200 (mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "forceAutohint" ] [ "fonts" "fontconfig" "forceAutohint" ]) 201 201 (mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "renderMonoTTFAsBitmap" ] [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ]) 202 202 203 + # postgresqlBackup 204 + (mkRemovedOptionModule [ "services" "postgresqlBackup" "period" ] '' 205 + A systemd timer is now used instead of cron. 206 + The starting time can be configured via <literal>services.postgresqlBackup.startAt</literal>. 207 + '') 208 + 203 209 # Profile splitting 204 210 (mkRenamedOptionModule [ "virtualization" "growPartition" ] [ "boot" "growPartition" ]) 205 211
+45 -17
nixos/modules/services/backup/postgresql-backup.nix
··· 3 3 with lib; 4 4 5 5 let 6 - inherit (pkgs) gzip; 7 6 8 - location = config.services.postgresqlBackup.location; 7 + cfg = config.services.postgresqlBackup; 9 8 10 - postgresqlBackupCron = db: 11 - '' 12 - ${config.services.postgresqlBackup.period} root ${config.services.postgresql.package}/bin/pg_dump ${db} | ${gzip}/bin/gzip -c > ${location}/${db}.gz 13 - ''; 9 + postgresqlBackupService = db : 10 + { 11 + enable = true; 12 + 13 + description = "Backup of database ${db}"; 14 + 15 + requires = [ "postgresql.service" ]; 16 + 17 + preStart = '' 18 + mkdir -m 0700 -p ${cfg.location} 19 + chown postgres ${cfg.location} 20 + ''; 14 21 15 - in 22 + script = '' 23 + if [ -e ${cfg.location}/${db}.sql.gz ]; then 24 + ${pkgs.coreutils}/bin/mv ${cfg.location}/${db}.sql.gz ${cfg.location}/${db}.prev.sql.gz 25 + fi 16 26 17 - { 27 + ${config.services.postgresql.package}/bin/pg_dump ${cfg.pgdumpOptions} ${db} | \ 28 + ${pkgs.gzip}/bin/gzip -c > ${cfg.location}/${db}.sql.gz 29 + ''; 30 + 31 + serviceConfig = { 32 + Type = "oneshot"; 33 + PermissionsStartOnly = "true"; 34 + User = "postgres"; 35 + }; 36 + 37 + startAt = cfg.startAt; 38 + }; 39 + 40 + in { 18 41 19 42 options = { 20 43 ··· 27 50 ''; 28 51 }; 29 52 30 - period = mkOption { 31 - default = "15 01 * * *"; 53 + startAt = mkOption { 54 + default = "*-*-* 01:15:00"; 32 55 description = '' 33 - This option defines (in the format used by cron) when the 56 + This option defines (see <literal>systemd.time</literal> for format) when the 34 57 databases should be dumped. 35 58 The default is to update at 01:15 (at night) every day. 36 59 ''; ··· 49 72 Location to put the gzipped PostgreSQL database dumps. 50 73 ''; 51 74 }; 75 + 76 + pgdumpOptions = mkOption { 77 + type = types.string; 78 + default = "-Cbo"; 79 + description = '' 80 + Command line options for pg_dump. 81 + ''; 82 + }; 52 83 }; 53 84 54 85 }; 55 86 56 87 config = mkIf config.services.postgresqlBackup.enable { 57 - services.cron.systemCronJobs = map postgresqlBackupCron config.services.postgresqlBackup.databases; 58 88 59 - system.activationScripts.postgresqlBackup = stringAfter [ "stdio" "users" ] 60 - '' 61 - mkdir -m 0700 -p ${config.services.postgresqlBackup.location} 62 - chown root ${config.services.postgresqlBackup.location} 63 - ''; 89 + systemd.services = listToAttrs (map (db : { 90 + name = "postgresqlBackup-${db}"; 91 + value = postgresqlBackupService db; } ) cfg.databases); 64 92 }; 65 93 66 94 }
+3 -2
nixos/modules/services/misc/docker-registry.nix
··· 42 42 }; 43 43 }; 44 44 45 - configFile = pkgs.writeText "docker-registry-config.yml" (builtins.toJSON (registryConfig // cfg.extraConfig)); 45 + configFile = pkgs.writeText "docker-registry-config.yml" (builtins.toJSON (recursiveUpdate registryConfig cfg.extraConfig)); 46 46 47 47 in { 48 48 options.services.dockerRegistry = { ··· 91 91 Docker extra registry configuration via environment variables. 92 92 ''; 93 93 default = {}; 94 - type = types.attrsOf types.str; 94 + type = types.attrs; 95 95 }; 96 96 97 97 enableGarbageCollect = mkEnableOption "garbage collect"; ··· 120 120 serviceConfig = { 121 121 User = "docker-registry"; 122 122 WorkingDirectory = cfg.storagePath; 123 + AmbientCapabilities = mkIf (cfg.port < 1024) "cap_net_bind_service"; 123 124 }; 124 125 }; 125 126
+47
nixos/modules/services/networking/owamp.nix
··· 1 + { config, lib, pkgs, ... }: 2 + 3 + with lib; 4 + 5 + let 6 + cfg = config.services.owamp; 7 + in 8 + { 9 + 10 + ###### interface 11 + 12 + options = { 13 + services.owamp.enable = mkEnableOption ''Enable OWAMP server''; 14 + }; 15 + 16 + 17 + ###### implementation 18 + 19 + config = mkIf cfg.enable { 20 + users.extraUsers = singleton { 21 + name = "owamp"; 22 + group = "owamp"; 23 + description = "Owamp daemon"; 24 + }; 25 + 26 + users.extraGroups = singleton { 27 + name = "owamp"; 28 + }; 29 + 30 + systemd.services.owamp = { 31 + description = "Owamp server"; 32 + wantedBy = [ "multi-user.target" ]; 33 + 34 + serviceConfig = { 35 + ExecStart="${pkgs.owamp}/bin/owampd -R /run/owamp -d /run/owamp -v -Z "; 36 + PrivateTmp = true; 37 + Restart = "always"; 38 + Type="simple"; 39 + User = "owamp"; 40 + Group = "owamp"; 41 + RuntimeDirectory = "owamp"; 42 + StateDirectory = "owamp"; 43 + AmbientCapabilities = "cap_net_bind_service"; 44 + }; 45 + }; 46 + }; 47 + }
+3 -3
nixos/modules/services/web-apps/mattermost.nix
··· 25 25 { 26 26 options = { 27 27 services.mattermost = { 28 - enable = mkEnableOption "Mattermost chat platform"; 28 + enable = mkEnableOption "Mattermost chat server"; 29 29 30 30 statePath = mkOption { 31 31 type = types.str; ··· 167 167 ''; 168 168 169 169 systemd.services.mattermost = { 170 - description = "Mattermost chat platform service"; 170 + description = "Mattermost chat service"; 171 171 wantedBy = [ "multi-user.target" ]; 172 172 after = [ "network.target" "postgresql.service" ]; 173 173 ··· 201 201 PermissionsStartOnly = true; 202 202 User = cfg.user; 203 203 Group = cfg.group; 204 - ExecStart = "${pkgs.mattermost}/bin/mattermost-platform"; 204 + ExecStart = "${pkgs.mattermost}/bin/mattermost"; 205 205 WorkingDirectory = "${cfg.statePath}"; 206 206 Restart = "always"; 207 207 RestartSec = "10";
+1
nixos/release.nix
··· 398 398 tests.switchTest = callTest tests/switch-test.nix {}; 399 399 tests.taskserver = callTest tests/taskserver.nix {}; 400 400 tests.tomcat = callTest tests/tomcat.nix {}; 401 + tests.tor = callTest tests/tor.nix {}; 401 402 tests.transmission = callTest tests/transmission.nix {}; 402 403 tests.udisks2 = callTest tests/udisks2.nix {}; 403 404 tests.vault = callTest tests/vault.nix {};
+7
nixos/tests/postgresql.nix
··· 26 26 { 27 27 services.postgresql.package=postgresql-package; 28 28 services.postgresql.enable = true; 29 + 30 + services.postgresqlBackup.enable = true; 31 + services.postgresqlBackup.databases = [ "postgres" ]; 29 32 }; 30 33 31 34 testScript = '' ··· 46 49 $machine->succeed(check_count("SELECT * FROM sth;", 5)); 47 50 $machine->fail(check_count("SELECT * FROM sth;", 4)); 48 51 $machine->succeed(check_count("SELECT xpath(\'/test/text()\', doc) FROM xmltest;", 1)); 52 + 53 + # Check backup service 54 + $machine->succeed("systemctl start postgresqlBackup-postgres.service"); 55 + $machine->succeed("zcat /var/backup/postgresql/postgres.sql.gz | grep '<test>ok</test>'"); 49 56 $machine->shutdown; 50 57 ''; 51 58
+28
nixos/tests/tor.nix
··· 1 + import ./make-test.nix ({ lib, ... }: with lib; 2 + 3 + rec { 4 + name = "tor"; 5 + meta.maintainers = with maintainers; [ joachifm ]; 6 + 7 + common = 8 + { config, ... }: 9 + { boot.kernelParams = [ "audit=0" "apparmor=0" "quiet" ]; 10 + networking.firewall.enable = false; 11 + networking.useDHCP = false; 12 + }; 13 + 14 + nodes.client = 15 + { config, pkgs, ... }: 16 + { imports = [ common ]; 17 + environment.systemPackages = with pkgs; [ netcat ]; 18 + services.tor.enable = true; 19 + services.tor.client.enable = true; 20 + services.tor.controlPort = 9051; 21 + }; 22 + 23 + testScript = '' 24 + $client->waitForUnit("tor.service"); 25 + $client->waitForOpenPort(9051); 26 + $client->succeed("echo GETINFO version | nc 127.0.0.1 9051") =~ /514 Authentication required./ or die; 27 + ''; 28 + })
+3 -3
pkgs/applications/altcoins/parity/default.nix
··· 1 1 let 2 - version = "1.10.6"; 3 - sha256 = "1x2sm262z8fdkx8zin6r8nwbb7znziw9nm224pr6ap3p0jmv7fcq"; 4 - cargoSha256 = "1wf1lh32f9dlhv810gdcssv92g1yximx09lw63m0mxcjbn9813bs"; 2 + version = "1.10.7"; 3 + sha256 = "0syhvr4n9zyxhx20xln7sf70ljzj6ab36xjz4710ivnwwz2pjajf"; 4 + cargoSha256 = "0zwk8xv71s7xkwvssh27772qfb23yhq5jlcny617qik6bwpcdh6b"; 5 5 patches = [ ./patches/vendored-sources-1.10.patch ]; 6 6 in 7 7 import ./parity.nix { inherit version sha256 cargoSha256 patches; }
+3 -2
pkgs/applications/editors/eclipse/plugins.nix
··· 532 532 533 533 spotbugs = buildEclipseUpdateSite rec { 534 534 name = "spotbugs-${version}"; 535 - version = "3.1.3"; 535 + version = "3.1.5"; 536 536 537 537 src = fetchzip { 538 + stripRoot = false; 538 539 url = "https://github.com/spotbugs/spotbugs/releases/download/${version}/eclipsePlugin.zip"; 539 - sha256 = "01zrmk497bxzqgwgbpsvi5iz5qk9b4q949h4918abm54zvkgndlg"; 540 + sha256 = "0fxdirz6ik9rqykm2lcr720apsaqgngr4c7q793rjb9b3bn30c85"; 540 541 }; 541 542 542 543 meta = with stdenv.lib; {
+2 -2
pkgs/applications/editors/emacs/macport.nix
··· 75 75 doCheck = true; 76 76 77 77 meta = with stdenv.lib; { 78 - description = "GNU Emacs 25, the extensible, customizable text editor"; 78 + description = "The extensible, customizable text editor"; 79 79 homepage = http://www.gnu.org/software/emacs/; 80 80 license = licenses.gpl3Plus; 81 81 maintainers = with maintainers; [ jwiegley matthewbauer ]; ··· 97 97 extensions are distributed with GNU Emacs; others are available 98 98 separately. 99 99 100 - This is "Mac port" addition to GNU Emacs 25. This provides a native 100 + This is the "Mac port" addition to GNU Emacs 26. This provides a native 101 101 GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later 102 102 already contain the official GUI support via the NS (Cocoa) port for 103 103 Mac OS X 10.4 and later. So if it is good enough for you, then you
+2 -2
pkgs/applications/misc/limesuite/default.nix
··· 4 4 } : 5 5 6 6 let 7 - version = "18.04.1"; 7 + version = "18.06.0"; 8 8 9 9 in stdenv.mkDerivation { 10 10 name = "limesuite-${version}"; ··· 13 13 owner = "myriadrf"; 14 14 repo = "LimeSuite"; 15 15 rev = "v${version}"; 16 - sha256 = "1aaqnwif1j045hvj011k5dyqxgxx72h33r4al74h5f8al81zvzj9"; 16 + sha256 = "0j6mxlvij2k6ib1d9jwzvilmqgm1h0q7wy9sf8a6bvidwlphvy25"; 17 17 }; 18 18 19 19 nativeBuildInputs = [ cmake ];
+2 -2
pkgs/applications/misc/tasknc/default.nix
··· 1 - { stdenv, fetchFromGitHub, makeWrapper, perl, ncurses, taskwarrior }: 1 + { stdenv, fetchFromGitHub, makeWrapper, perl, ncurses5, taskwarrior }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 version = "2017-05-15"; ··· 16 16 perl # For generating the man pages with pod2man 17 17 ]; 18 18 19 - buildInputs = [ ncurses ]; 19 + buildInputs = [ ncurses5 ]; 20 20 21 21 hardeningDisable = [ "format" ]; 22 22
+4 -5
pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
··· 1 1 { stdenv, fetchurl, dpkg, makeWrapper 2 2 , alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk_pixbuf, glib, glibc, gnome3 3 - , gtk2, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, xorg }: 3 + , gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, xorg }: 4 4 5 5 let 6 6 7 7 # Please keep the version x.y.0.z and do not update to x.y.76.z because the 8 8 # source of the latter disappears much faster. 9 - version = "8.18.0.6"; 9 + version = "8.24.0.2"; 10 10 11 11 rpath = stdenv.lib.makeLibraryPath [ 12 12 alsaLib ··· 24 24 25 25 gnome3.gconf 26 26 gdk_pixbuf 27 - gtk2 28 - 27 + gtk3 29 28 30 29 gnome3.gnome-keyring 31 30 ··· 57 56 if stdenv.system == "x86_64-linux" then 58 57 fetchurl { 59 58 url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb"; 60 - sha256 = "193icz1s385d25qzm5vx58h66m4hfwwmkavn0p3w6631gj617hig"; 59 + sha256 = "079bv0wilwwd9gqykcyfs4bj8za140788dxi058k4275h1jlvrww"; 61 60 } 62 61 else 63 62 throw "Skype for linux is not supported on ${stdenv.system}";
+3 -3
pkgs/applications/networking/instant-messengers/teamspeak/client.nix
··· 31 31 stdenv.mkDerivation rec { 32 32 name = "teamspeak-client-${version}"; 33 33 34 - version = "3.1.8"; 34 + version = "3.1.10"; 35 35 36 36 src = fetchurl { 37 37 urls = [ ··· 39 39 "http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run" 40 40 ]; 41 41 sha256 = if stdenv.is64bit 42 - then "0yav71sfklqg2k3ayd0bllsixd486l0587s5ygjlc9gnchw3zg6z" 43 - else "1agf6jf5hkyxazxqcnvcjfb263p5532ahi7h4rkifnnvqay36v5i"; 42 + then "17gylj5pxba14c1c98b5rdyyb87c58z8l8yrd1iw5k293wf7iwv3" 43 + else "1bkn3ykrc73wr02qaqwpr4garlqm3424y3dm2fjx6lqcfzm3ms2k"; 44 44 }; 45 45 46 46 # grab the plugin sdk for the desktop icon
+28
pkgs/applications/networking/owamp/default.nix
··· 1 + {stdenv, fetchurl, fetchFromGitHub 2 + , autoconf, automake, mandoc }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "owamp-${version}"; 6 + version = "3.5.6"; 7 + buildInputs = [ autoconf automake mandoc ]; 8 + src = fetchFromGitHub { 9 + owner = "perfsonar"; 10 + repo = "owamp"; 11 + rev = version; 12 + sha256="019rcshmrqk8pfp510j5jvazdcnz0igfkwv44mfxb5wirzj9p6s7"; 13 + fetchSubmodules = true; 14 + }; 15 + 16 + preConfigure = '' 17 + I2util/bootstrap.sh 18 + ./bootstrap 19 + ''; 20 + 21 + meta = with stdenv.lib; { 22 + homepage = http://software.internet2.edu/owamp/; 23 + description = ''A tool for performing one-way active measurements''; 24 + platforms = platforms.linux; 25 + maintainers = [maintainers.teto]; 26 + license = licenses.asl20; 27 + }; 28 + }
+10 -3
pkgs/applications/video/shotcut/default.nix
··· 1 1 { stdenv, fetchFromGitHub, SDL2, frei0r, gettext, mlt, jack1, pkgconfig, qtbase 2 2 , qtmultimedia, qtwebkit, qtx11extras, qtwebsockets, qtquickcontrols 3 3 , qtgraphicaleffects, libmlt 4 - , qmake, makeWrapper }: 4 + , qmake, makeWrapper, fetchpatch, qttools }: 5 5 6 6 assert stdenv.lib.versionAtLeast libmlt.version "6.8.0"; 7 7 assert stdenv.lib.versionAtLeast mlt.version "6.8.0"; 8 8 9 9 stdenv.mkDerivation rec { 10 10 name = "shotcut-${version}"; 11 - version = "18.05.08"; 11 + version = "18.06.02"; 12 12 13 13 src = fetchFromGitHub { 14 14 owner = "mltframework"; 15 15 repo = "shotcut"; 16 16 rev = "v${version}"; 17 - sha256 = "1qm1ycsx93qpw2vga25m3cr82vzqla1qqardjiln3iqfa0m93qsk"; 17 + sha256 = "1pqpgsb8ix1akq326chf46vvl5h02dwmdskskf2n6impygsy4x7v"; 18 18 }; 19 19 20 20 enableParallelBuilding = true; ··· 26 26 ]; 27 27 28 28 NIX_CFLAGS_COMPILE = "-I${libmlt}/include/mlt++ -I${libmlt}/include/mlt"; 29 + qmakeFlags = [ "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" ]; 29 30 30 31 prePatch = '' 31 32 sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp ··· 33 34 NICE=$(type -P nice) 34 35 sed "s_/usr/bin/nice_''${NICE}_" -i src/jobs/meltjob.cpp src/jobs/ffmpegjob.cpp 35 36 ''; 37 + 38 + patches = [ (fetchpatch { 39 + url = https://github.com/mltframework/shotcut/commit/f304b7403cc7beb57b1610afd9c5c8173749e80b.patch; 40 + name = "qt511.patch"; 41 + sha256 = "1ynvyjchcb33a33x4w1ddnah2gyzmnm125ailgg6xy60lqsnsmp9"; 42 + } ) ]; 36 43 37 44 postInstall = '' 38 45 mkdir -p $out/share/shotcut
+6 -4
pkgs/desktops/lxqt/base/lxqt-build-tools/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, qt5 }: 1 + { stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, qt5, glib }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "lxqt-build-tools-${version}"; 5 - version = "0.4.0"; 5 + version = "0.5.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "lxde"; 9 9 repo = "lxqt-build-tools"; 10 10 rev = version; 11 - sha256 = "0i3pzgyd80n73dnqs8f6axinaji7biflgqsi33baxn4r1hy58ym1"; 11 + sha256 = "0dcwzrijmn4sgivmy2zwz3xa4y69pwhranyw0m90g0pp55di2psz"; 12 12 }; 13 13 14 - nativeBuildInputs = [ cmake pkgconfig pcre qt5.qtbase ]; 14 + nativeBuildInputs = [ cmake pkgconfig ]; 15 + 16 + buildInputs = [ qt5.qtbase glib pcre ]; 15 17 16 18 preConfigure = ''cmakeFlags+=" -DLXQT_ETC_XDG_DIR=$out/etc/xdg"''; 17 19
+3 -3
pkgs/desktops/lxqt/core/pavucontrol-qt/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 name = "${pname}-${version}"; 5 5 pname = "pavucontrol-qt"; 6 - version = "0.3.0"; 6 + version = "0.4.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "lxde"; 10 10 repo = pname; 11 11 rev = version; 12 - sha256 = "1pfqdzsbygvq77npsizydps25d9g6vgw177yqvmz3cg3a68dad27"; 12 + sha256 = "1bxqpasfvaagbq8azl7536z2zk2725xg7jkvad5xh95zq1gb4hgk"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ ··· 32 32 description = "A Pulseaudio mixer in Qt (port of pavucontrol)"; 33 33 homepage = https://github.com/lxde/pavucontrol-qt; 34 34 license = licenses.gpl2; 35 - platforms = with platforms; unix; 35 + platforms = with platforms; linux; 36 36 maintainers = with maintainers; [ romildo ]; 37 37 }; 38 38 }
+2 -2
pkgs/desktops/mate/caja-extensions/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "caja-extensions-${version}"; 5 - version = "1.20.0"; 5 + version = "1.20.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "1abi7s31mx7v8x0f747bmb3s8hrv8fv007pflv2n545yvn0m1dpj"; 9 + sha256 = "01k7c3gw6rfd7vlch61zig22bvz40wlnalc5p3rz4d9i98fr643n"; 10 10 }; 11 11 12 12 nativeBuildInputs = [
+2 -2
pkgs/desktops/mate/engrampa/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "engrampa-${version}"; 5 - version = "1.20.0"; 5 + version = "1.20.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "1pk053i14a0r5s9qkipwnp4qjg76b763203z64ymnpkslrrarnnm"; 9 + sha256 = "09p9jaljaihc723zp17la6lw7h7q16ysk7q0fr0al0k11ss16w6f"; 10 10 }; 11 11 12 12 nativeBuildInputs = [
+2 -2
pkgs/desktops/mate/eom/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "eom-${version}"; 5 - version = "1.20.0"; 5 + version = "1.20.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "0320ph6cyh0m4cfyvky10j9prk2hry6rpm4jzgcn7ig03dnj4y0s"; 9 + sha256 = "0z9l96j0q637hw2mkcc2w737acl7g2c5brgrlk4h73hjamfmsdrm"; 10 10 }; 11 11 12 12 nativeBuildInputs = [
+2 -2
pkgs/desktops/mate/libmatekbd/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libmatekbd-${version}"; 5 - version = "1.20.1"; 5 + version = "1.20.2"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "1d80xnbb8w51cv9cziybdxca037lksqkc5bd8wqlyb2p79z77426"; 9 + sha256 = "1l1zbphs4snswf4bkrwkk6gsmb44bdhymcfgaaspzbrcmw3y7hr1"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig intltool ];
+2 -2
pkgs/desktops/mate/libmatemixer/default.nix
··· 6 6 7 7 stdenv.mkDerivation rec { 8 8 name = "libmatemixer-${version}"; 9 - version = "1.20.0"; 9 + version = "1.20.1"; 10 10 11 11 src = fetchurl { 12 12 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 13 - sha256 = "0jpfaqbspn2mjv6ysgzdmzhb07gx61yiiiwmrw94qymld2igrzb5"; 13 + sha256 = "00p67mi0flsbgn15qpwq60rzf917s5islbmhirbvz6npcvv0d493"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ pkgconfig intltool ];
+2 -2
pkgs/desktops/mate/libmateweather/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "libmateweather-${version}"; 5 - version = "1.20.0"; 5 + version = "1.20.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "1c8mvydb0h7z3zn0qahwlp15z5wl6nrv24q4z7ldhm340jnxsvh7"; 9 + sha256 = "0bp1nn3b5gf5nqrdwl43fxbb82j74s3x8jkmp40ilv2qpc2mxwr1"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig intltool ];
+2 -2
pkgs/desktops/mate/mate-calc/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "mate-calc-${version}"; 5 - version = "1.20.1"; 5 + version = "1.20.2"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "00k063ia4dclvcpg1q733lbi56533s6mj8bgb1nrgna6y7zw4q87"; 9 + sha256 = "1ghz03j9lfgrjrh8givsw83dpbkw4wlhq4ar3r5g1bf1z636jlx0"; 10 10 }; 11 11 12 12 nativeBuildInputs = [
+2 -2
pkgs/desktops/mate/mate-control-center/default.nix
··· 5 5 6 6 stdenv.mkDerivation rec { 7 7 name = "mate-control-center-${version}"; 8 - version = "1.20.2"; 8 + version = "1.20.3"; 9 9 10 10 src = fetchurl { 11 11 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 12 - sha256 = "1x40gxrz1hrzbdfl8vbag231g08h45vaky5z827k44qwl6pjd6nl"; 12 + sha256 = "0wpi8b3zz10xd5i7ir7nd737a9vl4q17rc5nh8vfrqpyrcilqzkd"; 13 13 }; 14 14 15 15 nativeBuildInputs = [
+2 -2
pkgs/desktops/mate/mate-menus/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "mate-menus-${version}"; 5 - version = "1.20.0"; 5 + version = "1.20.1"; 6 6 7 7 src = fetchurl { 8 8 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 9 - sha256 = "1w1k6kdabmabhpqvkizk1si6ri4rmspsbj0252ki834ml0dxpnhg"; 9 + sha256 = "1p8pkw6aby2hq2liqrnsf3lvyn2jqamfbs83fv6q7clw5w179sy6"; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkgconfig intltool ];
+2 -2
pkgs/desktops/mate/mate-notification-daemon/default.nix
··· 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "mate-notification-daemon-${version}"; 6 - version = "1.20.0"; 6 + version = "1.20.1"; 7 7 8 8 src = fetchurl { 9 9 url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz"; 10 - sha256 = "0dq457npzid20yfwigdh8gfqgf5wv8p6jhbxfnzybam9xidlqc5f"; 10 + sha256 = "0hwswgc3i6d7zvmj0as95xjjw431spxkf1d37mxwaf6j80gx0p78"; 11 11 }; 12 12 13 13 nativeBuildInputs = [
+2
pkgs/development/libraries/fribidi/default.nix
··· 4 4 , meson 5 5 , ninja 6 6 , pkgconfig 7 + , fixDarwinDylibNames 7 8 }: 8 9 9 10 stdenv.mkDerivation rec { ··· 18 19 }; 19 20 20 21 nativeBuildInputs = [ meson ninja pkgconfig ]; 22 + buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames; 21 23 22 24 outputs = [ "out" "devdoc" ]; 23 25
+2 -2
pkgs/development/libraries/lasso/default.nix
··· 3 3 stdenv.mkDerivation rec { 4 4 5 5 name = "lasso-${version}"; 6 - version = "2.5.1"; 6 + version = "2.6.0"; 7 7 8 8 src = fetchurl { 9 9 url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz"; 10 - sha256 = "0n10zjjw84303c9vfy9bqhyzdl01459akbwy86cbgphd826mq45y"; 10 + sha256 = "1kqagm63a4mv5sw5qc3y0qlky7r9qg5lccq0c3cnfr0n4mxgysql"; 11 11 12 12 }; 13 13
+3 -2
pkgs/development/node-packages/node-packages-v6.json
··· 54 54 , "js-yaml" 55 55 , "karma" 56 56 , { "kibana-authentication-proxy": "git://github.com/fangli/kibana-authentication-proxy.git" } 57 + , "lcov-result-merger" 58 + , "leetcode-cli" 57 59 , "lerna" 58 60 , "less" 59 61 , "less-plugin-clean-css" 60 - , "lcov-result-merger" 62 + , "live-server" 61 63 , "livedown" 62 - , "live-server" 63 64 , "meat" 64 65 , "meguca" 65 66 , "mocha"
+2250 -2102
pkgs/development/node-packages/node-packages-v6.nix
··· 76 76 sha512 = "3g9wzm6hszqh30x6hmwc9l4vw51c6a224cp2y9qzlj98vzbwbc4s7lfafi67v8401qagjsdxrndnnannzz6i71krmn8svxwk3lfkwbc"; 77 77 }; 78 78 }; 79 - "@nodelib/fs.stat-1.0.2" = { 79 + "@nodelib/fs.stat-1.1.0" = { 80 80 name = "_at_nodelib_slash_fs.stat"; 81 81 packageName = "@nodelib/fs.stat"; 82 - version = "1.0.2"; 82 + version = "1.1.0"; 83 83 src = fetchurl { 84 - url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.0.2.tgz"; 85 - sha512 = "37szl49qa9zv4jp9axp95i84m3iiqlip6lnkjc30rd7m8yzvcnlxkl7n1hqkwaq2nx8w560ldb01xhdz8cys7gmbqkdlwa3jbpmyamw"; 84 + url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz"; 85 + sha512 = "3l59qf6ykjzpr0n8wfqdzng342fg9pbrq7620if8m82cgsh8ki50yg790wl389dfs9wc97x82p2nrnfl8xxij660izj4zcghdvka11c"; 86 86 }; 87 87 }; 88 88 "@sindresorhus/is-0.7.0" = { ··· 130 130 sha512 = "2fv2qaz90rp6ib2s45ix0p3a4bd6yl6k94k1kkhw7w4s2aa5mqc6chppkf6pfvsz1l6phh7y0xswyfyzjgny7qzascch8c7ws20a0r4"; 131 131 }; 132 132 }; 133 - "@types/node-10.1.1" = { 133 + "@types/node-10.3.1" = { 134 134 name = "_at_types_slash_node"; 135 135 packageName = "@types/node"; 136 - version = "10.1.1"; 136 + version = "10.3.1"; 137 137 src = fetchurl { 138 - url = "https://registry.npmjs.org/@types/node/-/node-10.1.1.tgz"; 139 - sha512 = "35nbbgd4qp35g3nfbrsc9ndmigc9gl31xdjhx0fakfms35c6jqxpdx7m9c3pi0h3b062p31al5vas36facjhs1nmxf3bdpnrb5k3g4z"; 138 + url = "https://registry.npmjs.org/@types/node/-/node-10.3.1.tgz"; 139 + sha512 = "0xqz0wlddb3vi0mmlncn1ypd7sa2zv3fcq58jk7nr0xdsrwwzn9ncdq784lvg8d2k7lzq1p2kjyak5nghq0imbdj8hrmk6365lgvi92"; 140 140 }; 141 141 }; 142 - "@types/node-8.10.16" = { 142 + "@types/node-8.10.18" = { 143 143 name = "_at_types_slash_node"; 144 144 packageName = "@types/node"; 145 - version = "8.10.16"; 145 + version = "8.10.18"; 146 146 src = fetchurl { 147 - url = "https://registry.npmjs.org/@types/node/-/node-8.10.16.tgz"; 148 - sha512 = "2plzhji5iq482aa7kscxvsxrwscvrlrg9mxkx02nbslq31q178qki4ghi27z2lagmmzcvgm9r7ligx20bky617zx828yjap4ribnlia"; 147 + url = "https://registry.npmjs.org/@types/node/-/node-8.10.18.tgz"; 148 + sha512 = "22aca7kyrl75xvc3mpqj0ws9b5aql4ikllk56r062f49ii57l096mkxpks2iq03np6chgb0c5xifnivkjpa1f9s0qwma9mh7x5sk1ss"; 149 149 }; 150 150 }; 151 - "@types/node-9.6.17" = { 151 + "@types/node-9.6.20" = { 152 152 name = "_at_types_slash_node"; 153 153 packageName = "@types/node"; 154 - version = "9.6.17"; 154 + version = "9.6.20"; 155 155 src = fetchurl { 156 - url = "https://registry.npmjs.org/@types/node/-/node-9.6.17.tgz"; 157 - sha512 = "3czvpaxsivpv403rqgf4865q4nv81x0y1030r3xj697ik1hp65xdrqqpxvaafbwbf29gszsi2zxag68pblgi22mc1cmbg6yjm14xyib"; 156 + url = "https://registry.npmjs.org/@types/node/-/node-9.6.20.tgz"; 157 + sha512 = "03zcm94d4k4hmyilhw27w8ixxm2bkkr2my3d344viq4dzadjmzc9vyabyfs085j6a3qdv1ns0bbw5m72511bwq885064cpnn58ig0wq"; 158 158 }; 159 159 }; 160 160 "@types/request-2.47.0" = { ··· 184 184 sha512 = "1psrs8sjpmhz8sz2zjkkd7743vzdi7q7vcj8p219q1pkfawr619rl1m5pczp69hbm1769kn8zwlbayjylhl7an5hkvkdd2bi04lpx75"; 185 185 }; 186 186 }; 187 - "@webassemblyjs/ast-1.4.3" = { 187 + "@webassemblyjs/ast-1.5.10" = { 188 188 name = "_at_webassemblyjs_slash_ast"; 189 189 packageName = "@webassemblyjs/ast"; 190 - version = "1.4.3"; 190 + version = "1.5.10"; 191 191 src = fetchurl { 192 - url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.4.3.tgz"; 193 - sha512 = "3spjwi3cp2y297lils8dyh4277ijwg40ak6033w18yb8rffrhwm81h1ikcq407pl83kymmwb348298bpnkb1rfrggc70k6w2difkaab"; 192 + url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.5.10.tgz"; 193 + sha512 = "29rz7dwz37xly94s2qgvrs86i2nsgpiqp1zmlp6bm7bzrkhggjbkh59yc1b23sdpcbx3kzlv04si91jg8x7skryfz50jy2zljw9n4z0"; 194 194 }; 195 195 }; 196 - "@webassemblyjs/floating-point-hex-parser-1.4.3" = { 196 + "@webassemblyjs/floating-point-hex-parser-1.5.10" = { 197 197 name = "_at_webassemblyjs_slash_floating-point-hex-parser"; 198 198 packageName = "@webassemblyjs/floating-point-hex-parser"; 199 - version = "1.4.3"; 199 + version = "1.5.10"; 200 200 src = fetchurl { 201 - url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.4.3.tgz"; 202 - sha512 = "13vsay3gcir9hbx3kznsymnw558as2mrvy8gfymy5wq4k76qwzrkfclxgk5wim8p4f56acyjj61pbin9vzr1wvr6j7r7h9hbd4f8d6z"; 201 + url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.10.tgz"; 202 + sha512 = "09bsb6jvhfcnyyrqp0h6m063k4knang2iwf3n6rv05i87wdcdgjvq1dqrsz50hnijj54sb0hym4rp1bikpg1k8rnqxpjkl19vzqgkly"; 203 203 }; 204 204 }; 205 - "@webassemblyjs/helper-buffer-1.4.3" = { 205 + "@webassemblyjs/helper-api-error-1.5.10" = { 206 + name = "_at_webassemblyjs_slash_helper-api-error"; 207 + packageName = "@webassemblyjs/helper-api-error"; 208 + version = "1.5.10"; 209 + src = fetchurl { 210 + url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.10.tgz"; 211 + sha512 = "1fdzg33vfzsbbfmscl1bmhkwjfn2jsfihypdfgbvw3449aw9ksqvlf77dsghnvx30862zdqa9rawpz65md1kz6swhh8pqqya83s7r9r"; 212 + }; 213 + }; 214 + "@webassemblyjs/helper-buffer-1.5.10" = { 206 215 name = "_at_webassemblyjs_slash_helper-buffer"; 207 216 packageName = "@webassemblyjs/helper-buffer"; 208 - version = "1.4.3"; 217 + version = "1.5.10"; 209 218 src = fetchurl { 210 - url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.4.3.tgz"; 211 - sha512 = "29i4iwxw7bdqp5jpdvq7x2yvsiihzvhxngq7dcx8h29n3qxbpx5gb7bnpkfrf1wdipnyn3786r5ghfnjgdlc4psa865yibyg1j8mkvv"; 219 + url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.10.tgz"; 220 + sha512 = "3670gasr1syqrkikxaq2qb84zhzn5ll9cmdzm7ynhwn05xd2537jzy93qm5hp82w5iakm4l11dcnz3vclsxbmgcjw1pifz4h0yj125j"; 212 221 }; 213 222 }; 214 - "@webassemblyjs/helper-code-frame-1.4.3" = { 223 + "@webassemblyjs/helper-code-frame-1.5.10" = { 215 224 name = "_at_webassemblyjs_slash_helper-code-frame"; 216 225 packageName = "@webassemblyjs/helper-code-frame"; 217 - version = "1.4.3"; 226 + version = "1.5.10"; 218 227 src = fetchurl { 219 - url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.4.3.tgz"; 220 - sha512 = "3rlq4pj6pnf5j1xhdpd2i6b8ajsgdv5hkmlzahr45yv4p6f6rlsi04ns0kcq3qprlmsim99qkisa660xk4bd0mi58d0crbcsc90fn7l"; 228 + url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.10.tgz"; 229 + sha512 = "1jns41f077g54hga6qf9sycn4savzrz8ww6vpzffkyhf5m0kzrb1lm76ja7736xsb3aws1xr01l55lhp7hfslfazabc8c38cys5wqyn"; 221 230 }; 222 231 }; 223 - "@webassemblyjs/helper-fsm-1.4.3" = { 232 + "@webassemblyjs/helper-fsm-1.5.10" = { 224 233 name = "_at_webassemblyjs_slash_helper-fsm"; 225 234 packageName = "@webassemblyjs/helper-fsm"; 226 - version = "1.4.3"; 235 + version = "1.5.10"; 227 236 src = fetchurl { 228 - url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.4.3.tgz"; 229 - sha512 = "04nq8mpmb966xss2qhg9rzp046awfhx20kp8p6qp27fnhv65krbay68sfs5j7gp3r4ry7xd153znkdp1vlkxppy8n44vvrylppmi0r4"; 237 + url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.10.tgz"; 238 + sha512 = "0zz5va8i8ba6izqash183izgahn7sq56kvv5x8bw6fny5dznnhwc8b8139r5c6x8ikpny4dp84sq8zlfl38lswqrpjrlf47x65achks"; 230 239 }; 231 240 }; 232 - "@webassemblyjs/helper-wasm-bytecode-1.4.3" = { 241 + "@webassemblyjs/helper-module-context-1.5.10" = { 242 + name = "_at_webassemblyjs_slash_helper-module-context"; 243 + packageName = "@webassemblyjs/helper-module-context"; 244 + version = "1.5.10"; 245 + src = fetchurl { 246 + url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.10.tgz"; 247 + sha512 = "3z3cmlj3vblcrhh3n0774jfgs3c16pkambkfrgl15ckkqa6rpw4mvxa55gpx7rar4bb7nriig0hlqhww3k5y3lk4phj2j75c16qmvbi"; 248 + }; 249 + }; 250 + "@webassemblyjs/helper-wasm-bytecode-1.5.10" = { 233 251 name = "_at_webassemblyjs_slash_helper-wasm-bytecode"; 234 252 packageName = "@webassemblyjs/helper-wasm-bytecode"; 235 - version = "1.4.3"; 253 + version = "1.5.10"; 236 254 src = fetchurl { 237 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.4.3.tgz"; 238 - sha512 = "1wm9mkc0qy5srk9q78842pl0vkn9nvwlh6bci2615vbyw625dnrry390i60w4h53fkbdfp9jj550ggvdw9algcg48xsvl4ffvwd5di3"; 255 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.10.tgz"; 256 + sha512 = "1l0wq3agvx1b0msmb2ibpyxip633x8mymgsr0ydgri082mdvigwi559zjfqrpanffalbj28zk016lqjgsgklp6s3ipld4g4j0qihynj"; 239 257 }; 240 258 }; 241 - "@webassemblyjs/helper-wasm-section-1.4.3" = { 259 + "@webassemblyjs/helper-wasm-section-1.5.10" = { 242 260 name = "_at_webassemblyjs_slash_helper-wasm-section"; 243 261 packageName = "@webassemblyjs/helper-wasm-section"; 244 - version = "1.4.3"; 262 + version = "1.5.10"; 245 263 src = fetchurl { 246 - url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.4.3.tgz"; 247 - sha512 = "34nmg0qsq0wn6m9r9zjh3jpb0qwr4g7a234x0ws78q4n9dvv1q5ynp2c3ygqnmc1gixy99g6w87l92xf5zjbrr87zsbvnp1xxw9wk57"; 264 + url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.10.tgz"; 265 + sha512 = "39jg659fxagbr6n82qncd7bkpf0fp17aqhg7wm5ga22kxd9q6b1g40si8m9dg2jjxnc1qn3kzj06xcs0nrkfznkzqc2dy3hpxpglwdd"; 266 + }; 267 + }; 268 + "@webassemblyjs/ieee754-1.5.10" = { 269 + name = "_at_webassemblyjs_slash_ieee754"; 270 + packageName = "@webassemblyjs/ieee754"; 271 + version = "1.5.10"; 272 + src = fetchurl { 273 + url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.5.10.tgz"; 274 + sha512 = "2rn339x1rz3hy3x988ikha64ry6f4lhxbj8khy3bafpmcprs6wxpg9wqjc6bbp778j7cz811za487knm0mjcc1ya677lxwhmgk4wsar"; 248 275 }; 249 276 }; 250 - "@webassemblyjs/leb128-1.4.3" = { 277 + "@webassemblyjs/leb128-1.5.10" = { 251 278 name = "_at_webassemblyjs_slash_leb128"; 252 279 packageName = "@webassemblyjs/leb128"; 253 - version = "1.4.3"; 280 + version = "1.5.10"; 254 281 src = fetchurl { 255 - url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.4.3.tgz"; 256 - sha512 = "0lzzzxr5rk3qqg3ik3hm7yw0lgcvx334g75aphf2l3rsf8pxwycak36v5xsqkavvb4acmh5lddgx2c5sg5al7bwb11y9klgnhj0pvg2"; 282 + url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.5.10.tgz"; 283 + sha512 = "28s1rxcix7qw6hz2cb3lnfhpyhz61byynyrmd72ddfm5ka8lpizqb2g916ijxz25kjfxcqnls9n88z7spyv1br2lkkircci5r7xdq3g"; 257 284 }; 258 285 }; 259 - "@webassemblyjs/validation-1.4.3" = { 260 - name = "_at_webassemblyjs_slash_validation"; 261 - packageName = "@webassemblyjs/validation"; 262 - version = "1.4.3"; 286 + "@webassemblyjs/utf8-1.5.10" = { 287 + name = "_at_webassemblyjs_slash_utf8"; 288 + packageName = "@webassemblyjs/utf8"; 289 + version = "1.5.10"; 263 290 src = fetchurl { 264 - url = "https://registry.npmjs.org/@webassemblyjs/validation/-/validation-1.4.3.tgz"; 265 - sha512 = "02y4zsfg7y963d4i63g51xackih6zvs8szy2qlki5xmkfq2ywl97dwbds4wycw6pjwhwivzd4ilmlq37larmxmqsamdjxz1lwqd3sj7"; 291 + url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.5.10.tgz"; 292 + sha512 = "16yad2ja1si9dx2rk2ix4ph5fq2hp3diyyqrcgz7s06i2rhh4h339q6a3r0xqmfn9m38nwsi11rb9xrz28093s3p8qkml2xjvi380ri"; 266 293 }; 267 294 }; 268 - "@webassemblyjs/wasm-edit-1.4.3" = { 295 + "@webassemblyjs/wasm-edit-1.5.10" = { 269 296 name = "_at_webassemblyjs_slash_wasm-edit"; 270 297 packageName = "@webassemblyjs/wasm-edit"; 271 - version = "1.4.3"; 298 + version = "1.5.10"; 272 299 src = fetchurl { 273 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.4.3.tgz"; 274 - sha512 = "2knsyvscajz7vi6pm96i1azjxc3d574hwbninxgr5w6lyw3pslnxv41piv565kjdn5g6qqyh0jk6jjbvi2sm9dqzixgbm7vgr9b0fxb"; 300 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.10.tgz"; 301 + sha512 = "3xbz8wabffmhmwjvhqdfj2z716q5mhsyq05bfpdfpx49jmjrwgfqc4gqjdfpkh36wlpxm1w7rx8ji3ppwxbpan8wy09xyilj31ikcws"; 275 302 }; 276 303 }; 277 - "@webassemblyjs/wasm-gen-1.4.3" = { 304 + "@webassemblyjs/wasm-gen-1.5.10" = { 278 305 name = "_at_webassemblyjs_slash_wasm-gen"; 279 306 packageName = "@webassemblyjs/wasm-gen"; 280 - version = "1.4.3"; 307 + version = "1.5.10"; 281 308 src = fetchurl { 282 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.4.3.tgz"; 283 - sha512 = "1lxp49ldr0dwh3ksan4vadvdrsx9sx92wz63h8qpg096x7k3hp777kk33cbzsg6258rgp7saabz2aqmd6ggvm4y5klrf78x7zhzs7br"; 309 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.10.tgz"; 310 + sha512 = "2wh97zw4q7alpxmswln7z2vykyhnk9i12pfhpl0ccb7lylz3fmdbg708fq9wys8qyf9q3bfxg8v53rsp8b18xk8afk12sgk1rk2hxii"; 284 311 }; 285 312 }; 286 - "@webassemblyjs/wasm-opt-1.4.3" = { 313 + "@webassemblyjs/wasm-opt-1.5.10" = { 287 314 name = "_at_webassemblyjs_slash_wasm-opt"; 288 315 packageName = "@webassemblyjs/wasm-opt"; 289 - version = "1.4.3"; 316 + version = "1.5.10"; 290 317 src = fetchurl { 291 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.4.3.tgz"; 292 - sha512 = "0mpd5ig3h708hb5ixdnjlwikbr71va6awfp1gfmff33g7a1g35avv6b4s0ibhl9qdbq32pi8s02ngazg1mcdx82p21sif11qyg7wspc"; 318 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.10.tgz"; 319 + sha512 = "1yscbqqp4nxz9vyyysqxh8kgzpncf1lfybxjz1kh9ihv0pm17xi4a1pi5njn82aar4si1y20ymxpfl2a7m6c5b118iihldmyra6n3fl"; 293 320 }; 294 321 }; 295 - "@webassemblyjs/wasm-parser-1.4.3" = { 322 + "@webassemblyjs/wasm-parser-1.5.10" = { 296 323 name = "_at_webassemblyjs_slash_wasm-parser"; 297 324 packageName = "@webassemblyjs/wasm-parser"; 298 - version = "1.4.3"; 325 + version = "1.5.10"; 299 326 src = fetchurl { 300 - url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.4.3.tgz"; 301 - sha512 = "130bg13n9f63ihivbad61yw96k908g12ykw7mr8dhxswsck6rp1rbk9rr2dmgarxqd3v0jw605r4pqqpmq5iwhzj5p1bp00bjv66w19"; 327 + url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.10.tgz"; 328 + sha512 = "1slv08znc50va1mn5z425g8x9i2hlgyqbgrhf12wz4zz044wm2yl1yk17j2gp36qb15wirv3j3jlgygq4whjglxln64nz56spna4r2m"; 302 329 }; 303 330 }; 304 - "@webassemblyjs/wast-parser-1.4.3" = { 331 + "@webassemblyjs/wast-parser-1.5.10" = { 305 332 name = "_at_webassemblyjs_slash_wast-parser"; 306 333 packageName = "@webassemblyjs/wast-parser"; 307 - version = "1.4.3"; 334 + version = "1.5.10"; 308 335 src = fetchurl { 309 - url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.4.3.tgz"; 310 - sha512 = "3an2lfdbzn0y8c87qzdfwny0q5di5sr36pkxisp6jq3qdb9bbcbd91nqyqyadz8gxv3zrky8qsl4a8fs0ycjn2429n2ml4m791sq422"; 336 + url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.5.10.tgz"; 337 + sha512 = "1zd2pvwqbrydpp00dxnzjwxrv9nbi91j13bpr1an5jlsj3jy2h0x96frgjmv61bqf4l5vaxwdzbf58qhnhwx189ldh433iaim7mgr24"; 311 338 }; 312 339 }; 313 - "@webassemblyjs/wast-printer-1.4.3" = { 340 + "@webassemblyjs/wast-printer-1.5.10" = { 314 341 name = "_at_webassemblyjs_slash_wast-printer"; 315 342 packageName = "@webassemblyjs/wast-printer"; 316 - version = "1.4.3"; 343 + version = "1.5.10"; 317 344 src = fetchurl { 318 - url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.4.3.tgz"; 319 - sha512 = "2v460znblyp8svk9nm0k52kvhmgsk2cr6yw0cjgh9r22db3id8dd0inn2xgkbxvcrpi0hn4zbcz75nb58zshv4jp6k35wnzm7hy818j"; 345 + url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.5.10.tgz"; 346 + sha512 = "3qwkz89g5fgn3hwbm7fb4v0zdgq2vr8nb98cg4w0r5za21xry06m8yzwka5j6h9qxz2qqxy019mfxxga03c0g8v8lw5fkf4d4kdk34z"; 347 + }; 348 + }; 349 + "@zeit/schemas-1.2.0" = { 350 + name = "_at_zeit_slash_schemas"; 351 + packageName = "@zeit/schemas"; 352 + version = "1.2.0"; 353 + src = fetchurl { 354 + url = "https://registry.npmjs.org/@zeit/schemas/-/schemas-1.2.0.tgz"; 355 + sha512 = "1jdi566pj9g0pyq79li3lzzbschnib5ilxka7rkji83v7smba5p0r37pmm0z1dma0bjgijfki8b3bd3mp2qzh23al03h5ikdr189iw9"; 320 356 }; 321 357 }; 322 358 "CSSselect-0.4.1" = { ··· 364 400 sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd"; 365 401 }; 366 402 }; 367 - "JSONStream-1.3.2" = { 403 + "JSONStream-1.3.3" = { 368 404 name = "JSONStream"; 369 405 packageName = "JSONStream"; 370 - version = "1.3.2"; 406 + version = "1.3.3"; 371 407 src = fetchurl { 372 - url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz"; 373 - sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea"; 408 + url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.3.tgz"; 409 + sha512 = "0r6wmwsqyg9ig629f43sjxca6wvsjcbgcmq1db77nnwn0vg3ipz71y0lwg6an49jbkrfpxsf2g56jhwjs8ims1hkmz7k5bzjrcplanx"; 374 410 }; 375 411 }; 376 412 "JSV-4.0.2" = { ··· 382 418 sha1 = "d077f6825571f82132f9dffaed587b4029feff57"; 383 419 }; 384 420 }; 421 + "abab-1.0.4" = { 422 + name = "abab"; 423 + packageName = "abab"; 424 + version = "1.0.4"; 425 + src = fetchurl { 426 + url = "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz"; 427 + sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e"; 428 + }; 429 + }; 385 430 "abbrev-1.0.9" = { 386 431 name = "abbrev"; 387 432 packageName = "abbrev"; ··· 499 544 sha1 = "105495ae5361d697bd195c825192e1ad7f253787"; 500 545 }; 501 546 }; 502 - "acorn-5.5.3" = { 547 + "acorn-5.6.2" = { 503 548 name = "acorn"; 504 549 packageName = "acorn"; 505 - version = "5.5.3"; 550 + version = "5.6.2"; 506 551 src = fetchurl { 507 - url = "https://registry.npmjs.org/acorn/-/acorn-5.5.3.tgz"; 508 - sha512 = "0wmwifv9mm9gqcir9zbz5y1gl1rgwwprqh1f3csjydj8kf3byca7img3rh5b54kbnw3ik34bc6ynbnzsd01zmxrsfdvjv95hn84rpld"; 552 + url = "https://registry.npmjs.org/acorn/-/acorn-5.6.2.tgz"; 553 + sha512 = "2xy044ibkfyb71si1az16c4bbfbikr65l8z8jsg89xg2rhdbyk1fmiy9zrxr3p0qky41jvnqsa8rp5nww3pldpgycr628sx9vafhk6d"; 509 554 }; 510 555 }; 511 556 "acorn-dynamic-import-3.0.0" = { ··· 562 607 sha1 = "089b89b37145ff1d9ec74af6530be5526cae1f1a"; 563 608 }; 564 609 }; 565 - "adal-node-0.1.21" = { 566 - name = "adal-node"; 567 - packageName = "adal-node"; 568 - version = "0.1.21"; 569 - src = fetchurl { 570 - url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.21.tgz"; 571 - sha1 = "11c58e427b7e83d9ef2d77c9c3a2a60fbb0b6cc8"; 572 - }; 573 - }; 574 610 "adal-node-0.1.28" = { 575 611 name = "adal-node"; 576 612 packageName = "adal-node"; ··· 616 652 sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa"; 617 653 }; 618 654 }; 619 - "addons-linter-0.41.0" = { 655 + "addons-linter-1.0.0" = { 620 656 name = "addons-linter"; 621 657 packageName = "addons-linter"; 622 - version = "0.41.0"; 658 + version = "1.0.0"; 623 659 src = fetchurl { 624 - url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.41.0.tgz"; 625 - sha512 = "1cdq1s3zaz5547yn12h23434f3g6jjchrjdwv7x0qbg38zilaix5x04ajy87pw94rs1mk6kkawa517whzjn0jd7kpx6nac75qw7rcwf"; 660 + url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.0.0.tgz"; 661 + sha512 = "2g3j1vw3qp8b66kqkgg256aqsbdr1m65g9y2hcaxp1rl38zqdc0ph7x6ckxl1sm0dnrkl39q7pz3y4m6n05g4yf2dhcbg7lqwjv9h79"; 626 662 }; 627 663 }; 628 664 "addr-to-ip-port-1.4.3" = { ··· 634 670 sha512 = "0cjsq4lq001pd9nr0j7lc41vxyrf0x9qpaq8d8989n1grjzzbv8vjdq9l607ab8pgfh1qkx0vhgva4wsnfndkb2c955f04jq8dx78gq"; 635 671 }; 636 672 }; 637 - "address-1.0.3" = { 638 - name = "address"; 639 - packageName = "address"; 640 - version = "1.0.3"; 641 - src = fetchurl { 642 - url = "https://registry.npmjs.org/address/-/address-1.0.3.tgz"; 643 - sha512 = "27dii2i2aw9z3pw09110914532z5dfywxp8gbrfr14737cwy8m0jysam3abmfsbp8g51sd02ys57j5snwly3zfd0vrbli4109rni7ng"; 644 - }; 645 - }; 646 673 "addressparser-0.3.2" = { 647 674 name = "addressparser"; 648 675 packageName = "addressparser"; ··· 776 803 src = fetchurl { 777 804 url = "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz"; 778 805 sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965"; 779 - }; 780 - }; 781 - "ajv-6.3.0" = { 782 - name = "ajv"; 783 - packageName = "ajv"; 784 - version = "6.3.0"; 785 - src = fetchurl { 786 - url = "https://registry.npmjs.org/ajv/-/ajv-6.3.0.tgz"; 787 - sha1 = "1650a41114ef00574cac10b8032d8f4c14812da7"; 788 806 }; 789 807 }; 790 808 "ajv-6.5.0" = { ··· 1039 1057 sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe"; 1040 1058 }; 1041 1059 }; 1060 + "ansi-styles-3.2.0" = { 1061 + name = "ansi-styles"; 1062 + packageName = "ansi-styles"; 1063 + version = "3.2.0"; 1064 + src = fetchurl { 1065 + url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz"; 1066 + sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n"; 1067 + }; 1068 + }; 1042 1069 "ansi-styles-3.2.1" = { 1043 1070 name = "ansi-styles"; 1044 1071 packageName = "ansi-styles"; ··· 1147 1174 sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a"; 1148 1175 }; 1149 1176 }; 1150 - "append-tree-2.4.1" = { 1177 + "append-tree-2.4.4" = { 1151 1178 name = "append-tree"; 1152 1179 packageName = "append-tree"; 1153 - version = "2.4.1"; 1180 + version = "2.4.4"; 1154 1181 src = fetchurl { 1155 - url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.1.tgz"; 1156 - sha512 = "2zb14nlfxs726ng8jhfpf6n9b9kw32smg2krcl0vj90dfrkcc20fm36j2zgdd49b2ln1z4jz2wvvy4qgss14zzfr3rps719h6vlyjg7"; 1182 + url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz"; 1183 + sha512 = "0gfvfdnxy8zznb198pbzshiqg8vnn2icjbc49dmy158qqb33w2ifh86migd8xighgbjl66lhqlb9cvqv2ghviri1k7kh9kw8hr19wxc"; 1157 1184 }; 1158 1185 }; 1159 1186 "appendable-cli-menu-2.0.0" = { ··· 1219 1246 sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"; 1220 1247 }; 1221 1248 }; 1222 - "are-we-there-yet-1.1.4" = { 1249 + "are-we-there-yet-1.1.5" = { 1223 1250 name = "are-we-there-yet"; 1224 1251 packageName = "are-we-there-yet"; 1225 - version = "1.1.4"; 1252 + version = "1.1.5"; 1226 1253 src = fetchurl { 1227 - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz"; 1228 - sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d"; 1254 + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; 1255 + sha512 = "3mizm1yfxynlhaavbimv7n9qljrbhni22v4fch6zr89x6ps0gpjcxm5yfvv05n8vc3r17hmglyswgq9w0s598xv70nnyw358q11s5p6"; 1256 + }; 1257 + }; 1258 + "arg-2.0.0" = { 1259 + name = "arg"; 1260 + packageName = "arg"; 1261 + version = "2.0.0"; 1262 + src = fetchurl { 1263 + url = "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz"; 1264 + sha512 = "3iwdcvp3762nzympp65j1rpz06a18vjrdnzdr14ap4baqnyzfa52wzwwjdjl3x93akzs70vmkvl7yahjy6p0j3n5cnmgkx7699m64sz"; 1229 1265 }; 1230 1266 }; 1231 1267 "argparse-0.1.15" = { ··· 1262 1298 src = fetchurl { 1263 1299 url = "https://registry.npmjs.org/argparse/-/argparse-1.0.4.tgz"; 1264 1300 sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4"; 1265 - }; 1266 - }; 1267 - "args-4.0.0" = { 1268 - name = "args"; 1269 - packageName = "args"; 1270 - version = "4.0.0"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/args/-/args-4.0.0.tgz"; 1273 - sha512 = "2xd628jhziygi9jr16ckq557189nw5lracgzcpv8ddvymc3mjxvqzffgp68wmgknw6ps7nliwwyismriv6z4snvn0xmm7kwbrafbgp1"; 1274 1301 }; 1275 1302 }; 1276 1303 "arr-diff-1.1.0" = { ··· 1660 1687 sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"; 1661 1688 }; 1662 1689 }; 1663 - "ast-types-0.11.3" = { 1690 + "ast-types-0.11.5" = { 1664 1691 name = "ast-types"; 1665 1692 packageName = "ast-types"; 1666 - version = "0.11.3"; 1693 + version = "0.11.5"; 1667 1694 src = fetchurl { 1668 - url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.3.tgz"; 1669 - sha512 = "2lga5vgh6bz1vii6kfdy2k1g99arw9cikxx8705p9v92rqn7ksdvbzjvhgfdf4s21nbfafrxjh3hrr5jz2yq43dr4hw7hqdvgjnh3jw"; 1695 + url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.5.tgz"; 1696 + sha512 = "0rp4wq8vmdvsklw32gsxgpv0b41cc92gpkd2nyw6x88ah30c5vhxdqwic9jm16d490mgp8bmrnjjpcm382z4jjhv0fg3zmvjzxyi650"; 1670 1697 }; 1671 1698 }; 1672 1699 "ast-types-0.9.6" = { ··· 1804 1831 sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4"; 1805 1832 }; 1806 1833 }; 1834 + "async-2.6.1" = { 1835 + name = "async"; 1836 + packageName = "async"; 1837 + version = "2.6.1"; 1838 + src = fetchurl { 1839 + url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz"; 1840 + sha512 = "2aqgkis9ac37q6jv6zspfpj3rikh2vr9fdch7wajrvqihq5sxyd1gh5zv65hy0y3r22l720qkidwh6img8dngqcjj0dwrl0dwpj5lbw"; 1841 + }; 1842 + }; 1807 1843 "async-each-1.0.1" = { 1808 1844 name = "async-each"; 1809 1845 packageName = "async-each"; ··· 1867 1903 sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3"; 1868 1904 }; 1869 1905 }; 1870 - "aws-sdk-2.241.1" = { 1906 + "aws-sdk-2.252.1" = { 1871 1907 name = "aws-sdk"; 1872 1908 packageName = "aws-sdk"; 1873 - version = "2.241.1"; 1909 + version = "2.252.1"; 1874 1910 src = fetchurl { 1875 - url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.241.1.tgz"; 1876 - sha1 = "ae4e1ba772cc17284df00c03b58dcf914d5c72f9"; 1911 + url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.252.1.tgz"; 1912 + sha1 = "4ce45b16dc408883e20a564bd86270c67f25bb60"; 1877 1913 }; 1878 1914 }; 1879 1915 "aws-sign-0.2.0" = { ··· 1939 1975 sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f"; 1940 1976 }; 1941 1977 }; 1942 - "azure-arm-batch-0.3.0" = { 1978 + "azure-arm-batch-3.1.0" = { 1943 1979 name = "azure-arm-batch"; 1944 1980 packageName = "azure-arm-batch"; 1945 - version = "0.3.0"; 1981 + version = "3.1.0"; 1946 1982 src = fetchurl { 1947 - url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-0.3.0.tgz"; 1948 - sha1 = "78b000b10a16b97dcf273729b4dba919efbfdaf7"; 1983 + url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-3.1.0.tgz"; 1984 + sha512 = "282vyr654axav0gvwn1xalga7dlx9fh3ddk7qbkppvi2mwcv6zsin39aim0bzgif5rp4d18qhmaydhm4x5raayyvhkmzvzqgwx72103"; 1949 1985 }; 1950 1986 }; 1951 - "azure-arm-cdn-1.0.3" = { 1987 + "azure-arm-cdn-4.0.1" = { 1952 1988 name = "azure-arm-cdn"; 1953 1989 packageName = "azure-arm-cdn"; 1954 - version = "1.0.3"; 1990 + version = "4.0.1"; 1955 1991 src = fetchurl { 1956 - url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-1.0.3.tgz"; 1957 - sha1 = "39db281679dcdd33cb6ce032383b192430476412"; 1992 + url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-4.0.1.tgz"; 1993 + sha512 = "11r3v8l2q4w8jl8a83j13kjx4fi1casnyw9nwsxfsgn8aams01gyqx66447bzpamry61f17wlalmadbmf1kv9v713hl5ifpdxqgjmcr"; 1958 1994 }; 1959 1995 }; 1960 - "azure-arm-commerce-0.2.0" = { 1996 + "azure-arm-commerce-2.0.0" = { 1961 1997 name = "azure-arm-commerce"; 1962 1998 packageName = "azure-arm-commerce"; 1963 - version = "0.2.0"; 1999 + version = "2.0.0"; 1964 2000 src = fetchurl { 1965 - url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-0.2.0.tgz"; 1966 - sha1 = "152105f938603c94ec476c4cbd46b4ba058262bd"; 2001 + url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-2.0.0.tgz"; 2002 + sha512 = "0jkmkc889jyfb5513z5xffpwnk5hcr89apxnhh9i20adw0kanri6ifncrf33d36xkw5mjrnwy7hizv10hmgjcfsbvrpcrg7ind83hmi"; 1967 2003 }; 1968 2004 }; 1969 2005 "azure-arm-compute-3.0.0-preview" = { ··· 1993 2029 sha1 = "c8b7c113016c92703a84dc28d29ba518e8c64763"; 1994 2030 }; 1995 2031 }; 1996 - "azure-arm-devtestlabs-0.1.0" = { 2032 + "azure-arm-devtestlabs-2.1.1" = { 1997 2033 name = "azure-arm-devtestlabs"; 1998 2034 packageName = "azure-arm-devtestlabs"; 1999 - version = "0.1.0"; 2035 + version = "2.1.1"; 2000 2036 src = fetchurl { 2001 - url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-0.1.0.tgz"; 2002 - sha1 = "76604b8d2ad7b881f6ff53a37e37365481ca8c40"; 2037 + url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-2.1.1.tgz"; 2038 + sha512 = "1dw30m5r07pla1gba31w8d37ijqsca267qwrxlip5q24fsw429r5w4zd4qmvpd31v9wi6zrxcb0nz5m23rgbgff4n0vza1b6dhl55sb"; 2003 2039 }; 2004 2040 }; 2005 - "azure-arm-dns-2.0.0-preview" = { 2041 + "azure-arm-dns-2.1.0" = { 2006 2042 name = "azure-arm-dns"; 2007 2043 packageName = "azure-arm-dns"; 2008 - version = "2.0.0-preview"; 2044 + version = "2.1.0"; 2009 2045 src = fetchurl { 2010 - url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.0.0-preview.tgz"; 2011 - sha1 = "3dd0645c7f1767fe150e00a8ac33b4b55bce9b8c"; 2046 + url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.1.0.tgz"; 2047 + sha512 = "3lxdjr1mn9sfvqsjwdy1plyb7qkg6379j9xkg47gabr5g9rpqhmfljpii9ln2azz0rizr4bbxy348b28m9g6xx0cb7jhdkarww2sbgz"; 2012 2048 }; 2013 2049 }; 2014 2050 "azure-arm-hdinsight-0.2.2" = { ··· 2047 2083 sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91"; 2048 2084 }; 2049 2085 }; 2050 - "azure-arm-network-5.1.0" = { 2086 + "azure-arm-network-5.3.0" = { 2051 2087 name = "azure-arm-network"; 2052 2088 packageName = "azure-arm-network"; 2053 - version = "5.1.0"; 2089 + version = "5.3.0"; 2054 2090 src = fetchurl { 2055 - url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.1.0.tgz"; 2056 - sha1 = "b2be4bfc27173b1cb7fc54425cbee27824f65b52"; 2091 + url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.3.0.tgz"; 2092 + sha512 = "25c3hgi59w01ysjhk9hdzvx2viv7v3cknkbz9iwfhnnj6gz4rrzxhair0s8r5nfmcfxgz5y7qy6lvld1qgjq9j7z9cz0z582p2avs4f"; 2057 2093 }; 2058 2094 }; 2059 - "azure-arm-powerbiembedded-0.1.0" = { 2095 + "azure-arm-powerbiembedded-0.1.1" = { 2060 2096 name = "azure-arm-powerbiembedded"; 2061 2097 packageName = "azure-arm-powerbiembedded"; 2062 - version = "0.1.0"; 2098 + version = "0.1.1"; 2063 2099 src = fetchurl { 2064 - url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.0.tgz"; 2065 - sha1 = "f0050ed833e2b3b12daba83d6f9e3d96852ee970"; 2100 + url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.1.tgz"; 2101 + sha1 = "7103c94e06b3ddf628293f60e02fd0ba8f9c3ca9"; 2066 2102 }; 2067 2103 }; 2068 2104 "azure-arm-rediscache-0.2.3" = { ··· 2083 2119 sha1 = "aa9a49fb9081a210f2f4cc6596ca4653b68306e6"; 2084 2120 }; 2085 2121 }; 2086 - "azure-arm-servermanagement-0.1.2" = { 2122 + "azure-arm-servermanagement-1.1.0" = { 2087 2123 name = "azure-arm-servermanagement"; 2088 2124 packageName = "azure-arm-servermanagement"; 2089 - version = "0.1.2"; 2125 + version = "1.1.0"; 2090 2126 src = fetchurl { 2091 - url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-0.1.2.tgz"; 2092 - sha1 = "937f87a8aeceb641a8210a9ba837323f0206eb47"; 2127 + url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-1.1.0.tgz"; 2128 + sha512 = "1wfj1vg7q2f8s20x8lssxsjqkj52in2rbrz2lhh1cx360l9xhr3z6pkyxha44km23xhfqamqm2xdvpz08kx3y0v8cx6b9sl7qydflqs"; 2093 2129 }; 2094 2130 }; 2095 - "azure-arm-storage-0.15.0-preview" = { 2131 + "azure-arm-storage-5.0.0" = { 2096 2132 name = "azure-arm-storage"; 2097 2133 packageName = "azure-arm-storage"; 2098 - version = "0.15.0-preview"; 2134 + version = "5.0.0"; 2099 2135 src = fetchurl { 2100 - url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.15.0-preview.tgz"; 2101 - sha1 = "e25c13a1e716656caa019a7bc9fabe05c5062b7e"; 2136 + url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-5.0.0.tgz"; 2137 + sha512 = "24p38zb5jpf1bgm831ciqh70yp1qdvaw2vqxx3krj9lqn1d4vn0yw60whwzfj73ysliz3ysmwg6xskjypza3i497w8x13zk0r2278xj"; 2102 2138 }; 2103 2139 }; 2104 2140 "azure-arm-trafficmanager-1.1.0-preview" = { ··· 2110 2146 sha1 = "b46cfcf7f1690e4739864dcdb5c8de322e82ec50"; 2111 2147 }; 2112 2148 }; 2113 - "azure-arm-website-0.11.4" = { 2149 + "azure-arm-website-0.11.5" = { 2114 2150 name = "azure-arm-website"; 2115 2151 packageName = "azure-arm-website"; 2116 - version = "0.11.4"; 2152 + version = "0.11.5"; 2117 2153 src = fetchurl { 2118 - url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.4.tgz"; 2119 - sha1 = "6972dd9844a0d12376d74014b541c49247caa37d"; 2154 + url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.5.tgz"; 2155 + sha1 = "51942423e1238ec19e551926353a8e9f73bc534a"; 2120 2156 }; 2121 2157 }; 2122 2158 "azure-asm-compute-0.18.0" = { ··· 2200 2236 sha1 = "91e2e63d73869090613cd42ee38a3823e55f4447"; 2201 2237 }; 2202 2238 }; 2203 - "azure-asm-website-0.10.4" = { 2239 + "azure-asm-website-0.10.6" = { 2204 2240 name = "azure-asm-website"; 2205 2241 packageName = "azure-asm-website"; 2206 - version = "0.10.4"; 2242 + version = "0.10.6"; 2207 2243 src = fetchurl { 2208 - url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.4.tgz"; 2209 - sha1 = "bfd0c01a8ae6afd90eaa13360976242e28459650"; 2244 + url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.6.tgz"; 2245 + sha1 = "822f920f22b8572a014714a403e6aa009ed59295"; 2210 2246 }; 2211 2247 }; 2212 - "azure-batch-0.5.2" = { 2248 + "azure-batch-3.2.1" = { 2213 2249 name = "azure-batch"; 2214 2250 packageName = "azure-batch"; 2215 - version = "0.5.2"; 2251 + version = "3.2.1"; 2216 2252 src = fetchurl { 2217 - url = "https://registry.npmjs.org/azure-batch/-/azure-batch-0.5.2.tgz"; 2218 - sha1 = "21b23f9db7f42734e97f35bd703818a1cf2492eb"; 2253 + url = "https://registry.npmjs.org/azure-batch/-/azure-batch-3.2.1.tgz"; 2254 + sha512 = "3lfnm1rnai975asy9hxk4rvp5rkmhp0ky4p40ips8a7gg5sjkygwy31mb7aqf794zqw27zrp6cn5ncirmc3xhaglzkrginillni64gx"; 2219 2255 }; 2220 2256 }; 2221 - "azure-common-0.9.18" = { 2257 + "azure-common-0.9.20" = { 2222 2258 name = "azure-common"; 2223 2259 packageName = "azure-common"; 2224 - version = "0.9.18"; 2260 + version = "0.9.20"; 2225 2261 src = fetchurl { 2226 - url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.18.tgz"; 2227 - sha1 = "38b960f4ddadd44d34f52e8b85d5d1e0226440fd"; 2262 + url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.20.tgz"; 2263 + sha512 = "1yph9maam38j6pjydv947ndixp1kc22cjq7q1l03mgn0ywqpp0rm0sflnszplmsyjl88z8sj40ljgz32j02vnpajcd9mnkmnlw4a36j"; 2228 2264 }; 2229 2265 }; 2230 2266 "azure-gallery-2.0.0-pre.18" = { ··· 2236 2272 sha1 = "3cd4c5e4e0091551d6a5ee757af2354c8a36b3e6"; 2237 2273 }; 2238 2274 }; 2239 - "azure-graph-2.1.0-preview" = { 2275 + "azure-graph-2.2.0" = { 2240 2276 name = "azure-graph"; 2241 2277 packageName = "azure-graph"; 2242 - version = "2.1.0-preview"; 2278 + version = "2.2.0"; 2243 2279 src = fetchurl { 2244 - url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.1.0-preview.tgz"; 2245 - sha1 = "2005abb76d9193cbfb90f25ee92823cde87d4f5f"; 2280 + url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.2.0.tgz"; 2281 + sha512 = "0gj2pmkj5qshdxgk3hzrrp9r03x42h69zcnak979ij1gc6q3bx4bn0b5ksdqjxppj4wjcfqwhc76a6rn6n1fyp5kc59gpjhrsa0pgb9"; 2246 2282 }; 2247 2283 }; 2248 - "azure-keyvault-0.11.0" = { 2284 + "azure-keyvault-1.0.0" = { 2249 2285 name = "azure-keyvault"; 2250 2286 packageName = "azure-keyvault"; 2251 - version = "0.11.0"; 2287 + version = "1.0.0"; 2252 2288 src = fetchurl { 2253 - url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-0.11.0.tgz"; 2254 - sha1 = "379e6c2ed4155de86caff63243923c7330d34802"; 2289 + url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-1.0.0.tgz"; 2290 + sha1 = "d630f98032aadbb5e72fb04d2da49b368e441c9e"; 2255 2291 }; 2256 2292 }; 2257 - "azure-monitoring-0.10.2" = { 2293 + "azure-monitoring-0.10.5" = { 2258 2294 name = "azure-monitoring"; 2259 2295 packageName = "azure-monitoring"; 2260 - version = "0.10.2"; 2296 + version = "0.10.5"; 2261 2297 src = fetchurl { 2262 - url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.2.tgz"; 2263 - sha1 = "2b7d493306747b43e4e2dcad44d65328e6c3cf57"; 2298 + url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.5.tgz"; 2299 + sha1 = "b7d21e2cc76f94a5f72cf3ccb03ac9355d858d81"; 2264 2300 }; 2265 2301 }; 2266 2302 "azure-servicefabric-0.1.5" = { ··· 2272 2308 sha1 = "bdc4b378292490ce77e788ee189f291ce5ae25a6"; 2273 2309 }; 2274 2310 }; 2275 - "azure-storage-2.1.0" = { 2311 + "azure-storage-2.8.3" = { 2276 2312 name = "azure-storage"; 2277 2313 packageName = "azure-storage"; 2278 - version = "2.1.0"; 2314 + version = "2.8.3"; 2279 2315 src = fetchurl { 2280 - url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.1.0.tgz"; 2281 - sha1 = "7fc81246cd64b54cabced70b5138d7cc4571ea01"; 2316 + url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.8.3.tgz"; 2317 + sha512 = "0ddx9n5y0pzsgc8287f73fss5gnhdzvsmxhbszfh2qdld2d05h1knm76i3dwkbq2j5q6yx0r06x2sn58380y69mpv4jnbidim8xvil1"; 2282 2318 }; 2283 2319 }; 2284 2320 "babel-code-frame-6.26.0" = { ··· 3145 3181 sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4"; 3146 3182 }; 3147 3183 }; 3148 - "big-integer-1.6.28" = { 3184 + "big-integer-1.6.30" = { 3149 3185 name = "big-integer"; 3150 3186 packageName = "big-integer"; 3151 - version = "1.6.28"; 3187 + version = "1.6.30"; 3152 3188 src = fetchurl { 3153 - url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.28.tgz"; 3154 - sha512 = "3b56jaa0yvrl9p90c0phnhyh02sv9hxssl8y0nghv91ra8akrcdpxm55c1gf5w1is9991wm2g0wqcr4hm5ri9lmzwd8gc9d72pzg51q"; 3189 + url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.30.tgz"; 3190 + sha512 = "0mpq1fin33p53fjgylmnrc0g51raqmprdpkm51vkl2na7mar5a778mlnwv6wrj98fjcx30wijf0zms9l88ibprn36z39jpw9zpcaq1c"; 3155 3191 }; 3156 3192 }; 3157 3193 "big.js-3.2.0" = { ··· 3298 3334 sha512 = "10md5792s6q3xwdrmwh1a8ax9w128g607b5qsbxzw8x0gl9184g754hprchl6mq8lmf4f8qylk2h8vavsnbn9yy9gzjnyh2kwrzmxky"; 3299 3335 }; 3300 3336 }; 3301 - "bittorrent-dht-8.3.0" = { 3337 + "bittorrent-dht-8.4.0" = { 3302 3338 name = "bittorrent-dht"; 3303 3339 packageName = "bittorrent-dht"; 3304 - version = "8.3.0"; 3340 + version = "8.4.0"; 3305 3341 src = fetchurl { 3306 - url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-8.3.0.tgz"; 3307 - sha512 = "2p2fxhvwin4xnjdmbhrlwivx4a8pjzfn6mc5qxnxzl1q40xxp56wd6xrcxfq9viqjkvpc7g0j3dvgmvcywhgw41nvjyxi8pgm5v43kp"; 3342 + url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-8.4.0.tgz"; 3343 + sha512 = "18j3r8acrygcy5pdk684mlij31n25z9lqdadxsj8q8y04wpnqxql5j1v18rsfmadlafihzz2q7nwicnkis0bzl6xnpzfy01qvwby5qm"; 3308 3344 }; 3309 3345 }; 3310 3346 "bittorrent-peerid-1.2.0" = { ··· 3919 3955 sha512 = "24488d4s6d901hj9d9jdddapmcvmibbdpjq6nv3bpyjx72546fcqa0vripy0ydsrw1jk6bakfzvynh5i9cz0g59hrmn4ph75d3kdpk7"; 3920 3956 }; 3921 3957 }; 3922 - "browserslist-3.2.7" = { 3958 + "browserslist-3.2.8" = { 3923 3959 name = "browserslist"; 3924 3960 packageName = "browserslist"; 3925 - version = "3.2.7"; 3961 + version = "3.2.8"; 3926 3962 src = fetchurl { 3927 - url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.7.tgz"; 3928 - sha512 = "0qzgn4n32d6hjm129k06ry17ppzywr77kwpxh2rj1i26j9x43rwx6lpjqf6nlrkf9b9mwcqidgq5gv4xl94120k69p7z9baap24p1d1"; 3963 + url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz"; 3964 + sha512 = "00i65frm5jkbv8pzc13i02fzd39q0ahh653zzjzhq35pz6p0idajfjqg1b7mnnlvxymihcpmd1cfhwaj51hnqjmh4alrg8sjrq6hxaq"; 3929 3965 }; 3930 3966 }; 3931 3967 "bson-0.1.8" = { ··· 3964 4000 sha512 = "1ipkzdnq03rnxyl50wmzigdbd96lh0mgzffcab80yxl38x7k316kzs3h0w0bxdjj7vqh6dw3wgb7y3rsqab0ar4ky9rbh0r1f1i2hk2"; 3965 4001 }; 3966 4002 }; 3967 - "buffer-alloc-1.1.0" = { 4003 + "buffer-alloc-1.2.0" = { 3968 4004 name = "buffer-alloc"; 3969 4005 packageName = "buffer-alloc"; 3970 - version = "1.1.0"; 4006 + version = "1.2.0"; 3971 4007 src = fetchurl { 3972 - url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz"; 3973 - sha1 = "05514d33bf1656d3540c684f65b1202e90eca303"; 4008 + url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; 4009 + sha512 = "2isng7g5ld0a4ih1d38bcdqpw8jpqajmcn6vfkrqpahmhim4cfw51c1sikz5s5hnmfychcbzcxvwydn8qi6zq6mhl15anzd1110fnq8"; 3974 4010 }; 3975 4011 }; 3976 - "buffer-alloc-unsafe-0.1.1" = { 4012 + "buffer-alloc-unsafe-1.1.0" = { 3977 4013 name = "buffer-alloc-unsafe"; 3978 4014 packageName = "buffer-alloc-unsafe"; 3979 - version = "0.1.1"; 4015 + version = "1.1.0"; 3980 4016 src = fetchurl { 3981 - url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz"; 3982 - sha1 = "ffe1f67551dd055737de253337bfe853dfab1a6a"; 3983 - }; 3984 - }; 3985 - "buffer-alloc-unsafe-1.0.0" = { 3986 - name = "buffer-alloc-unsafe"; 3987 - packageName = "buffer-alloc-unsafe"; 3988 - version = "1.0.0"; 3989 - src = fetchurl { 3990 - url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz"; 3991 - sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe"; 4017 + url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; 4018 + sha512 = "01b27ck9qpkjb3s14q703k5vi00m7lpl0zkyi91z4kxjww4b6q09frq68lm6m9hvhb5m4w0arwybncm5hia3j9kr9vd4h84qa43chsc"; 3992 4019 }; 3993 4020 }; 3994 4021 "buffer-crc32-0.1.1" = { ··· 4054 4081 sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5"; 4055 4082 }; 4056 4083 }; 4057 - "buffer-fill-0.1.1" = { 4084 + "buffer-fill-1.0.0" = { 4058 4085 name = "buffer-fill"; 4059 4086 packageName = "buffer-fill"; 4060 - version = "0.1.1"; 4087 + version = "1.0.0"; 4061 4088 src = fetchurl { 4062 - url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz"; 4063 - sha512 = "3nny0zbpnaxp1544gp7lc53jvs1jgzpmp92cy939dik36bi8lvhrsh4g082lxdplwsma22cgg9q93dw5dnbn1ljqkh4fb2i6w3lq032"; 4089 + url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"; 4090 + sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c"; 4064 4091 }; 4065 4092 }; 4066 4093 "buffer-from-0.1.2" = { ··· 4072 4099 sha512 = "2z3dp7smyppzg5yc63hvyfxgrw5d14splmxbknz4v8g6bnncca1acr4xd6l3z13lpp4vj4120pyvk87040ajbx7v24cj9mcgdx8h9a6"; 4073 4100 }; 4074 4101 }; 4075 - "buffer-from-1.0.0" = { 4102 + "buffer-from-1.1.0" = { 4076 4103 name = "buffer-from"; 4077 4104 packageName = "buffer-from"; 4078 - version = "1.0.0"; 4105 + version = "1.1.0"; 4079 4106 src = fetchurl { 4080 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz"; 4081 - sha512 = "3252laq8prm41lgzlhmc7rdj99gwcvpf7cn6j686g4qmspnl3haid5khv9pc9cfjja9wb64nwfvgdwi2kpdf125xfg48aqapwssjxpk"; 4107 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz"; 4108 + sha512 = "0ch7mwp2p7iz81hlj769cki9vapg34rp3368mbxffjync131zz3cig7vkjv4n1lfyfnaapj9axq5d6sg92a8ri6fnvggz481fb936bk"; 4082 4109 }; 4083 4110 }; 4084 4111 "buffer-indexof-1.1.1" = { ··· 4522 4549 sha1 = "d545635be1e33c542649c69173e5de6acfae34dd"; 4523 4550 }; 4524 4551 }; 4525 - "camelcase-5.0.0" = { 4526 - name = "camelcase"; 4527 - packageName = "camelcase"; 4528 - version = "5.0.0"; 4529 - src = fetchurl { 4530 - url = "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz"; 4531 - sha512 = "2q57983k3n95gzbhqhc0cv6krvq7nd37h837xg6favqywdda14ha7k2xbdaryni3xzzm55pvi0adrl1fbgxypaxz1kvrifnm5kb1akx"; 4532 - }; 4533 - }; 4534 4552 "camelcase-keys-2.1.0" = { 4535 4553 name = "camelcase-keys"; 4536 4554 packageName = "camelcase-keys"; ··· 4549 4567 sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77"; 4550 4568 }; 4551 4569 }; 4552 - "caniuse-lite-1.0.30000842" = { 4570 + "caniuse-lite-1.0.30000850" = { 4553 4571 name = "caniuse-lite"; 4554 4572 packageName = "caniuse-lite"; 4555 - version = "1.0.30000842"; 4573 + version = "1.0.30000850"; 4556 4574 src = fetchurl { 4557 - url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000842.tgz"; 4558 - sha512 = "16dhvprw63c1dcvcn58bgf667cqldqkmmzda661xrwi0yadfmlpab913a980h6kwfk1yl0r13z4qap9g9rxqd23nhlihhghf902kswf"; 4575 + url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000850.tgz"; 4576 + sha512 = "109fg3d4qqzsnn1jmrjih7nhddicpkxsyhq60dhx3s6g2rgcfjas5n56h4xfncqq0j3vrbn3w0x35dhlq2cxh4khsfpq8kz8kqvhwl8"; 4559 4577 }; 4560 4578 }; 4561 4579 "capture-stack-trace-1.0.0" = { ··· 4711 4729 sha512 = "1fnn3znivja3xq1lacvsdwkl2s8ki9w95sylnf2pkmaia1mjz3llbdb5r2dxsflqfky3h8f1bh0piv0l5waw2bkdniqnyv0yx5wch9d"; 4712 4730 }; 4713 4731 }; 4714 - "chalk-2.3.2" = { 4715 - name = "chalk"; 4716 - packageName = "chalk"; 4717 - version = "2.3.2"; 4718 - src = fetchurl { 4719 - url = "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz"; 4720 - sha512 = "06jlrzx0nb92910rcfhx55n28jgvhc0qda49scnfyifnmc31dyfqsl5qqiwhsxkrhrc6c07x69q037f1pwg06kkfd1qdzaxz7dj7kk4"; 4721 - }; 4722 - }; 4723 4732 "chalk-2.4.0" = { 4724 4733 name = "chalk"; 4725 4734 packageName = "chalk"; ··· 4801 4810 sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; 4802 4811 }; 4803 4812 }; 4813 + "chardet-0.5.0" = { 4814 + name = "chardet"; 4815 + packageName = "chardet"; 4816 + version = "0.5.0"; 4817 + src = fetchurl { 4818 + url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz"; 4819 + sha512 = "3931r17a9qqilrj8ymqwiqrayvwaz6d7hvhscrh8s4a7cksmw0saq1bg2xk7r20mcnzbcpn4c05bii36axilkfrpj2j0gcy2shdm57m"; 4820 + }; 4821 + }; 4804 4822 "charenc-0.0.2" = { 4805 4823 name = "charenc"; 4806 4824 packageName = "charenc"; ··· 4826 4844 src = fetchurl { 4827 4845 url = "https://registry.npmjs.org/cheerio/-/cheerio-0.17.0.tgz"; 4828 4846 sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea"; 4847 + }; 4848 + }; 4849 + "cheerio-0.20.0" = { 4850 + name = "cheerio"; 4851 + packageName = "cheerio"; 4852 + version = "0.20.0"; 4853 + src = fetchurl { 4854 + url = "https://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz"; 4855 + sha1 = "5c710f2bab95653272842ba01c6ea61b3545ec35"; 4829 4856 }; 4830 4857 }; 4831 4858 "cheerio-0.22.0" = { ··· 5593 5620 sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63"; 5594 5621 }; 5595 5622 }; 5596 - "colors-1.2.5" = { 5623 + "colors-1.3.0" = { 5597 5624 name = "colors"; 5598 5625 packageName = "colors"; 5599 - version = "1.2.5"; 5626 + version = "1.3.0"; 5600 5627 src = fetchurl { 5601 - url = "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz"; 5602 - sha512 = "2k2a7k096qcm5fghgcmybg96y3x5bpqb62j0zdlnxq7za4asb6vsy9i69nkg9wqfhkcbh6qzm8zzvq7q516p54awxpp2qrzm8nm3cvs"; 5628 + url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz"; 5629 + sha512 = "03rrn3n1k9lcwlg5xdx0cj727blwc1a0r6rnq1r8nynwni4bwqlbzlb9qp02x09pfnrfj0ihb28wsimqxiivm5k0f2wa77hmvfmffhh"; 5603 5630 }; 5604 5631 }; 5605 5632 "colour-0.7.1" = { ··· 5890 5917 sha1 = "524a9f10903f3a813389b0225d27c48bb751890f"; 5891 5918 }; 5892 5919 }; 5893 - "compressible-2.0.13" = { 5920 + "compressible-2.0.14" = { 5894 5921 name = "compressible"; 5895 5922 packageName = "compressible"; 5896 - version = "2.0.13"; 5923 + version = "2.0.14"; 5897 5924 src = fetchurl { 5898 - url = "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz"; 5899 - sha1 = "0d1020ab924b2fdb4d6279875c7d6daba6baa7a9"; 5925 + url = "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz"; 5926 + sha1 = "326c5f507fbb055f54116782b969a81b67a29da7"; 5900 5927 }; 5901 5928 }; 5902 5929 "compression-1.5.2" = { ··· 5942 5969 src = fetchurl { 5943 5970 url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz"; 5944 5971 sha1 = "708978624d856af41a5a741defdd261da752c266"; 5945 - }; 5946 - }; 5947 - "concat-stream-1.6.0" = { 5948 - name = "concat-stream"; 5949 - packageName = "concat-stream"; 5950 - version = "1.6.0"; 5951 - src = fetchurl { 5952 - url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz"; 5953 - sha1 = "0aac662fd52be78964d5532f694784e70110acf7"; 5954 5972 }; 5955 5973 }; 5956 5974 "concat-stream-1.6.2" = { ··· 6575 6593 sha1 = "3d12752f6adf68a892f332433492bd5812bb668f"; 6576 6594 }; 6577 6595 }; 6578 - "cookiejar-2.1.1" = { 6596 + "cookiejar-2.1.2" = { 6579 6597 name = "cookiejar"; 6580 6598 packageName = "cookiejar"; 6581 - version = "2.1.1"; 6599 + version = "2.1.2"; 6582 6600 src = fetchurl { 6583 - url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz"; 6584 - sha1 = "41ad57b1b555951ec171412a81942b1e8200d34a"; 6601 + url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz"; 6602 + sha512 = "302w4kd3x9k0jy5iva1k5inp3r25avz8ddpkdb20icvrizicvas253kfp6ynmrcwpxv1lafcnagggxfs5dmmd4gg07ifgzkqxsrl3rk"; 6585 6603 }; 6586 6604 }; 6587 6605 "cookies-0.7.1" = { ··· 6620 6638 sha1 = "270e06b67b2ae94bcfee6592ed39eb42303d186f"; 6621 6639 }; 6622 6640 }; 6623 - "cordova-common-2.2.1" = { 6641 + "cordova-common-2.2.3" = { 6624 6642 name = "cordova-common"; 6625 6643 packageName = "cordova-common"; 6626 - version = "2.2.1"; 6644 + version = "2.2.3"; 6627 6645 src = fetchurl { 6628 - url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.1.tgz"; 6629 - sha1 = "7009bc591729caa7285a588cfd6a7b54cd834f0c"; 6646 + url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.3.tgz"; 6647 + sha512 = "109gw0072hyc4z9lavjgbl998xq5mk2ajzz2nmiab3yz2bgmpkqllanny4np7cc5q0awf8knjymna948s34mqg9h7yjfk9g93lvmwm0"; 6630 6648 }; 6631 6649 }; 6632 6650 "cordova-create-1.1.2" = { ··· 6692 6710 sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636"; 6693 6711 }; 6694 6712 }; 6695 - "core-js-2.5.6" = { 6713 + "core-js-2.5.7" = { 6696 6714 name = "core-js"; 6697 6715 packageName = "core-js"; 6698 - version = "2.5.6"; 6716 + version = "2.5.7"; 6699 6717 src = fetchurl { 6700 - url = "https://registry.npmjs.org/core-js/-/core-js-2.5.6.tgz"; 6701 - sha512 = "14myrl8hdl6z51ziv7l8326pyxfr51pil9s2glynqcj9vfpr37b9jkz9pshpb1jk7qg2wwg59hfxxqjr6x8wwhsvfqvhs5l11yia1cm"; 6718 + url = "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz"; 6719 + sha512 = "1rw87wykvh29zd2dfrylxhr1kk5lz0k9wb4ykmy6nka6slwbhsirccfy8c2br3b8d085rkly33rf55kh6z5rm9mpgxg7z301h4ckk26"; 6702 6720 }; 6703 6721 }; 6704 6722 "core-util-is-1.0.2" = { ··· 7115 7133 sha512 = "0rxlhy2ha4xjnw27ha5q8crvpqwydnhb4xnnsj2ba8i1r09n864ygl76lcjgnpnqp1qj5930qz8gnq76pwy6sr6hrb2gcfrzla67ljs"; 7116 7134 }; 7117 7135 }; 7136 + "cssom-0.3.2" = { 7137 + name = "cssom"; 7138 + packageName = "cssom"; 7139 + version = "0.3.2"; 7140 + src = fetchurl { 7141 + url = "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz"; 7142 + sha1 = "b8036170c79f07a90ff2f16e22284027a243848b"; 7143 + }; 7144 + }; 7145 + "cssstyle-0.2.37" = { 7146 + name = "cssstyle"; 7147 + packageName = "cssstyle"; 7148 + version = "0.2.37"; 7149 + src = fetchurl { 7150 + url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz"; 7151 + sha1 = "541097234cb2513c83ceed3acddc27ff27987d54"; 7152 + }; 7153 + }; 7118 7154 "csurf-1.8.3" = { 7119 7155 name = "csurf"; 7120 7156 packageName = "csurf"; ··· 7205 7241 sha1 = "5d02a46850adf1b4a317946a3928fccb5bfd0425"; 7206 7242 }; 7207 7243 }; 7208 - "cvss-1.0.2" = { 7244 + "cvss-1.0.3" = { 7209 7245 name = "cvss"; 7210 7246 packageName = "cvss"; 7211 - version = "1.0.2"; 7247 + version = "1.0.3"; 7212 7248 src = fetchurl { 7213 - url = "https://registry.npmjs.org/cvss/-/cvss-1.0.2.tgz"; 7214 - sha1 = "df67e92bf12a796f49e928799c8db3ba74b9fcd6"; 7249 + url = "https://registry.npmjs.org/cvss/-/cvss-1.0.3.tgz"; 7250 + sha512 = "2s5cl4bn952afccm1fqvg12k0rr7q3v8yfw78gvfclqpkdwcgxsd0r319jrmgxsz19cd2f94xg97qq8m2z14s86gszf0zam862csmyl"; 7215 7251 }; 7216 7252 }; 7217 7253 "cycle-1.0.3" = { ··· 7367 7403 sha1 = "69449ac8a368593a8f71902b282390c3655ab4b8"; 7368 7404 }; 7369 7405 }; 7370 - "dat-node-3.5.8" = { 7406 + "dat-node-3.5.9" = { 7371 7407 name = "dat-node"; 7372 7408 packageName = "dat-node"; 7373 - version = "3.5.8"; 7409 + version = "3.5.9"; 7374 7410 src = fetchurl { 7375 - url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.8.tgz"; 7376 - sha512 = "3j28p80dwmic3g00asmcpgiv3sh3s8023x1023g7bm534h1ai8i2zryivx95gc22is64k9mynmqr2g0ny25xp1f7h1cbc25klizg8dc"; 7411 + url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.9.tgz"; 7412 + sha512 = "104lk78v9z8z1p5dkkn5w6ciimn7gbh83yvfcpl6vcd6fahdghak9kp95wmmfjlbas1959a156552i8a891qjbfa32q1wcanyv4yri4"; 7377 7413 }; 7378 7414 }; 7379 7415 "dat-registry-4.0.0" = { ··· 7610 7646 sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9"; 7611 7647 }; 7612 7648 }; 7613 - "decimal.js-10.0.0" = { 7649 + "decimal.js-10.0.1" = { 7614 7650 name = "decimal.js"; 7615 7651 packageName = "decimal.js"; 7616 - version = "10.0.0"; 7652 + version = "10.0.1"; 7617 7653 src = fetchurl { 7618 - url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.0.tgz"; 7619 - sha512 = "1zfwp3adsdq838zcpkpm59x7kdqny1lcdk04r7fw28zy3va4jpjkrkpyyz7ifnzazpks9ky9mjb2xdrkx07nzrh909nzasps0aplcm1"; 7654 + url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.1.tgz"; 7655 + sha512 = "0pvhjhp6gb1n7717047gvr4pnrpjw1a8kysff39v9qp665kwkf9b0zbj4y2i6gx1qh755dan7zz82wq2kdkmnhrvwv3w2mqj03mcjdy"; 7620 7656 }; 7621 7657 }; 7622 7658 "decode-uri-component-0.2.0" = { ··· 7754 7790 sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f"; 7755 7791 }; 7756 7792 }; 7757 - "deep-extend-0.5.1" = { 7793 + "deep-extend-0.6.0" = { 7758 7794 name = "deep-extend"; 7759 7795 packageName = "deep-extend"; 7760 - version = "0.5.1"; 7796 + version = "0.6.0"; 7761 7797 src = fetchurl { 7762 - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz"; 7763 - sha512 = "3bzqm7nqgh7m8xjhl0q8jc0ccm9riymsfmy0144x6n2qy9v1gin2ww8s9wjlayk0xyzq9cz9pyar02yiv30mhqsj7rmw35ywrsc3jrp"; 7798 + url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; 7799 + sha512 = "0wc0sqg1aqx864bxf8xa4j8ncrc8rcvmiaj1sp3x1np2i8hdjybzjfd0w9gbf1yasmwycwzzg1mz6smr3q42hhv4pjx2qcgwqhg3q9c"; 7764 7800 }; 7765 7801 }; 7766 7802 "deep-is-0.1.3" = { ··· 8060 8096 sha1 = "f41f1c10be4b00e87b5f13da680759f2c5bfd3e2"; 8061 8097 }; 8062 8098 }; 8063 - "detect-port-1.2.2" = { 8064 - name = "detect-port"; 8065 - packageName = "detect-port"; 8066 - version = "1.2.2"; 8067 - src = fetchurl { 8068 - url = "https://registry.npmjs.org/detect-port/-/detect-port-1.2.2.tgz"; 8069 - sha512 = "2q44vf4c9rqz21wc7a1pj1xz6pa2s7sp2fz9zxksmz679xh8sbfzyzhgkkbyznsgbnif013n0a6387dppcs370gdkc0dhh2jgsgv8fk"; 8070 - }; 8071 - }; 8072 8099 "detective-4.7.1" = { 8073 8100 name = "detective"; 8074 8101 packageName = "detective"; ··· 8213 8240 sha1 = "5d3160a46019e50e874195765df7d601ee55a813"; 8214 8241 }; 8215 8242 }; 8216 - "dispensary-0.16.0" = { 8243 + "discovery-swarm-5.1.1" = { 8244 + name = "discovery-swarm"; 8245 + packageName = "discovery-swarm"; 8246 + version = "5.1.1"; 8247 + src = fetchurl { 8248 + url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.1.tgz"; 8249 + sha512 = "1sa0sciklf04fnha64gb01s3wqddxkzf9n1q0zyjcr3cdhn49xyql60cbxby922bqq0wd7k57b6qjk50vn4hjsk08pggzcggbvkszxg"; 8250 + }; 8251 + }; 8252 + "dispensary-0.18.0" = { 8217 8253 name = "dispensary"; 8218 8254 packageName = "dispensary"; 8219 - version = "0.16.0"; 8255 + version = "0.18.0"; 8220 8256 src = fetchurl { 8221 - url = "https://registry.npmjs.org/dispensary/-/dispensary-0.16.0.tgz"; 8222 - sha1 = "7173f2828380135e3c8eb9f61719fa038c0cd133"; 8257 + url = "https://registry.npmjs.org/dispensary/-/dispensary-0.18.0.tgz"; 8258 + sha512 = "0vn5s1km4ilb4kqba3rqh0wjrfwjvskp0k58qjywkvla2zmn5df46flvzs200kxmg6fbr8rn6c22mjp0y3sj8zql1g8k3qw52772ica"; 8223 8259 }; 8224 8260 }; 8225 8261 "diveSync-0.3.0" = { ··· 8600 8636 sha1 = "0b078d5517937d873101452d9146737557b75e51"; 8601 8637 }; 8602 8638 }; 8603 - "dtrace-provider-0.8.6" = { 8639 + "dtrace-provider-0.8.7" = { 8604 8640 name = "dtrace-provider"; 8605 8641 packageName = "dtrace-provider"; 8606 - version = "0.8.6"; 8642 + version = "0.8.7"; 8607 8643 src = fetchurl { 8608 - url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.6.tgz"; 8609 - sha1 = "428a223afe03425d2cd6d6347fdf40c66903563d"; 8644 + url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz"; 8645 + sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04"; 8610 8646 }; 8611 8647 }; 8612 8648 "duplexer-0.1.1" = { ··· 8771 8807 sha1 = "cc872c168880ae3c7189762fd5ffc00896c9518a"; 8772 8808 }; 8773 8809 }; 8774 - "electron-to-chromium-1.3.47" = { 8810 + "electron-to-chromium-1.3.48" = { 8775 8811 name = "electron-to-chromium"; 8776 8812 packageName = "electron-to-chromium"; 8777 - version = "1.3.47"; 8813 + version = "1.3.48"; 8778 8814 src = fetchurl { 8779 - url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz"; 8780 - sha1 = "764e887ca9104d01a0ac8eabee7dfc0e2ce14104"; 8815 + url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz"; 8816 + sha1 = "d3b0d8593814044e092ece2108fc3ac9aea4b900"; 8781 8817 }; 8782 8818 }; 8783 8819 "elegant-spinner-1.0.1" = { ··· 8816 8852 sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df"; 8817 8853 }; 8818 8854 }; 8819 - "email-validator-2.0.3" = { 8855 + "email-validator-2.0.4" = { 8820 8856 name = "email-validator"; 8821 8857 packageName = "email-validator"; 8822 - version = "2.0.3"; 8858 + version = "2.0.4"; 8823 8859 src = fetchurl { 8824 - url = "https://registry.npmjs.org/email-validator/-/email-validator-2.0.3.tgz"; 8825 - sha1 = "33e50d66f526b97cd72c17205aefaec79c8a2a1e"; 8860 + url = "https://registry.npmjs.org/email-validator/-/email-validator-2.0.4.tgz"; 8861 + sha512 = "2fphwmaifh5r33d0qxsw8zjgkhqjcr146jzy8lyqib0dsaqk5sz09k58flnwbx62s4hkwakfqrb8945zabjskr61z42vr91p6iv1041"; 8826 8862 }; 8827 8863 }; 8828 8864 "emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = { ··· 9159 9195 sha1 = "eaba64ca5d542a311ac945f582defc336165d9f4"; 9160 9196 }; 9161 9197 }; 9162 - "es-abstract-1.11.0" = { 9198 + "es-abstract-1.12.0" = { 9163 9199 name = "es-abstract"; 9164 9200 packageName = "es-abstract"; 9165 - version = "1.11.0"; 9201 + version = "1.12.0"; 9166 9202 src = fetchurl { 9167 - url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz"; 9168 - sha512 = "2aaq6ivy5raj1a99db6gvw7qn2vs27h0pqvgpf2fqfm9avwqsirr8gs86yx7n36qysjw1vabz6mlc8dfpi6fmz9yqvk8kapz49jnx36"; 9203 + url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz"; 9204 + sha512 = "2jdql8kh7rhb0wrblg2c4a809hrmgyc2c31qrww9q4r3mwa1l17nss7my5k0xrb7q78gywnv8vbkl9z7pq183l37r45x6f593zp3h8b"; 9169 9205 }; 9170 9206 }; 9171 9207 "es-to-primitive-1.1.1" = { ··· 9177 9213 sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d"; 9178 9214 }; 9179 9215 }; 9180 - "es5-ext-0.10.42" = { 9216 + "es5-ext-0.10.45" = { 9181 9217 name = "es5-ext"; 9182 9218 packageName = "es5-ext"; 9183 - version = "0.10.42"; 9219 + version = "0.10.45"; 9184 9220 src = fetchurl { 9185 - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz"; 9186 - sha512 = "1412ssfrx1kvraz8kp4x9lc1jzcdh2952vbmlimrfalmbjv44rh504ihb4fg5mjwx8ix1f1wii0a0qngwrfk4gl271mcywgp7b4x700"; 9221 + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz"; 9222 + sha512 = "04p6qjhmiaqlqqgi0690lz7zzcdg1n80pxiywkkk6qalpxd8b85kv4403ckchsv8jlx9rhz4chgh819ahzcgwanibnnqzkibklwqiqn"; 9187 9223 }; 9188 9224 }; 9189 9225 "es5-ext-0.8.2" = { ··· 9393 9429 sha1 = "c8fc6201c7f40dd08941b87c085767386a679acc"; 9394 9430 }; 9395 9431 }; 9396 - "eslint-4.19.0" = { 9397 - name = "eslint"; 9398 - packageName = "eslint"; 9399 - version = "4.19.0"; 9400 - src = fetchurl { 9401 - url = "https://registry.npmjs.org/eslint/-/eslint-4.19.0.tgz"; 9402 - sha512 = "29dc1z24n3c60hfac5afy7rk3mqdch8hnn07fnb9314dbyk5ih2l1284vl3nsgsm5ja5w144nsgmipbycva47gwpl1qfsma5gjcpkdg"; 9403 - }; 9404 - }; 9405 9432 "eslint-4.19.1" = { 9406 9433 name = "eslint"; 9407 9434 packageName = "eslint"; ··· 9681 9708 sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924"; 9682 9709 }; 9683 9710 }; 9684 - "events-2.0.0" = { 9711 + "events-2.1.0" = { 9685 9712 name = "events"; 9686 9713 packageName = "events"; 9687 - version = "2.0.0"; 9714 + version = "2.1.0"; 9688 9715 src = fetchurl { 9689 - url = "https://registry.npmjs.org/events/-/events-2.0.0.tgz"; 9690 - sha512 = "1r878as79mx3xg56nvjxxbryqa8lqn8xmiqi1xqfx2vjygnfaf15h5l658a9ikfr1bhc6ygxny8jr8ddjxpzlh6y443rxv08di3kwxg"; 9716 + url = "https://registry.npmjs.org/events/-/events-2.1.0.tgz"; 9717 + sha512 = "059cw923gab3r2d2nk9nafd3h9skxvimn2k4qhnhss6j5vwwgvqaac3668299zdc634q9r8by6vidhjnkf052ir1vyw6xx7nyhs56fx"; 9691 9718 }; 9692 9719 }; 9693 9720 "events.node-0.4.9" = { ··· 10059 10086 sha512 = "3sf897ajmkcp0j6rgd0jy6k95s9ck3j305yrr00kmckl8qdhswhbdd5g4m2fai03x8phs1vw2ahf9v7ym5ji4zfxydxyamiy61glabd"; 10060 10087 }; 10061 10088 }; 10089 + "external-editor-3.0.0" = { 10090 + name = "external-editor"; 10091 + packageName = "external-editor"; 10092 + version = "3.0.0"; 10093 + src = fetchurl { 10094 + url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.0.tgz"; 10095 + sha512 = "28h4s6rjdakrr2danff6n7mwwf1n2syyba9q93ac1wpic535lk0xvwh4bpnzhmw3gkjblvbvfsd4zp57hwy7d70hk41lxs4867iz6cs"; 10096 + }; 10097 + }; 10062 10098 "extglob-0.3.2" = { 10063 10099 name = "extglob"; 10064 10100 packageName = "extglob"; ··· 10095 10131 sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4"; 10096 10132 }; 10097 10133 }; 10098 - "extract-zip-1.6.6" = { 10134 + "extract-zip-1.6.7" = { 10099 10135 name = "extract-zip"; 10100 10136 packageName = "extract-zip"; 10101 - version = "1.6.6"; 10137 + version = "1.6.7"; 10102 10138 src = fetchurl { 10103 - url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz"; 10104 - sha1 = "1290ede8d20d0872b429fd3f351ca128ec5ef85c"; 10139 + url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz"; 10140 + sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9"; 10105 10141 }; 10106 10142 }; 10107 10143 "extsprintf-1.0.0" = { ··· 10266 10302 sha512 = "2bhxs6r2hxpjfxj7ycbs3blbwbmq9nmwar4swzvhbiwcbmn721l8wk0ndyw9n3i1508rlhhm70a8fn9bpy8mx8f0ncqhqhh5pz175j0"; 10267 10303 }; 10268 10304 }; 10305 + "fast-url-parser-1.1.3" = { 10306 + name = "fast-url-parser"; 10307 + packageName = "fast-url-parser"; 10308 + version = "1.1.3"; 10309 + src = fetchurl { 10310 + url = "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz"; 10311 + sha1 = "f4af3ea9f34d8a271cf58ad2b3759f431f0b318d"; 10312 + }; 10313 + }; 10269 10314 "faye-websocket-0.10.0" = { 10270 10315 name = "faye-websocket"; 10271 10316 packageName = "faye-websocket"; ··· 10309 10354 src = fetchurl { 10310 10355 url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz"; 10311 10356 sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; 10357 + }; 10358 + }; 10359 + "fd-slicer-1.1.0" = { 10360 + name = "fd-slicer"; 10361 + packageName = "fd-slicer"; 10362 + version = "1.1.0"; 10363 + src = fetchurl { 10364 + url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz"; 10365 + sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e"; 10312 10366 }; 10313 10367 }; 10314 10368 "feedparser-2.2.9" = { ··· 10437 10491 sha1 = "bd162262c0b6e94bfbcdcf19a3bbb3764f785695"; 10438 10492 }; 10439 10493 }; 10440 - "filesize-3.6.1" = { 10441 - name = "filesize"; 10442 - packageName = "filesize"; 10443 - version = "3.6.1"; 10444 - src = fetchurl { 10445 - url = "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz"; 10446 - sha512 = "1rfby2136b86m318244b42lrcx9hc28vz71cv9i84cd5z7dd3cwvj1gx8mykbjh937yyi1h4q5kk3vhjcldc8pkd2f7iapszgbd3a7c"; 10447 - }; 10448 - }; 10449 10494 "filestream-4.1.3" = { 10450 10495 name = "filestream"; 10451 10496 packageName = "filestream"; ··· 10725 10770 sha1 = "248cf79a3da7d7dc379e2a11c92a2719cbb540f6"; 10726 10771 }; 10727 10772 }; 10728 - "flatstr-1.0.5" = { 10773 + "flatstr-1.0.8" = { 10729 10774 name = "flatstr"; 10730 10775 packageName = "flatstr"; 10731 - version = "1.0.5"; 10776 + version = "1.0.8"; 10732 10777 src = fetchurl { 10733 - url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.5.tgz"; 10734 - sha1 = "5b451b08cbd48e2eac54a2bbe0bf46165aa14be3"; 10778 + url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.8.tgz"; 10779 + sha512 = "2myjl431vaakbfrr72hywwmrlin44zm9s7y32c4zw9ckk9giykx33qlzkxfr13jlslr15fsnj9smyl4fnlrqbamapp5qwzgzxpfaxk1"; 10735 10780 }; 10736 10781 }; 10737 10782 "flatten-0.0.1" = { ··· 10761 10806 sha1 = "c952de2240f812ebda0aa8006d7776ee2acf7d74"; 10762 10807 }; 10763 10808 }; 10764 - "fluent-syntax-0.6.6" = { 10809 + "fluent-syntax-0.7.0" = { 10765 10810 name = "fluent-syntax"; 10766 10811 packageName = "fluent-syntax"; 10767 - version = "0.6.6"; 10812 + version = "0.7.0"; 10768 10813 src = fetchurl { 10769 - url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.6.6.tgz"; 10770 - sha512 = "18dv619kjzc3fdahfc242r7lb27a3pjxx5xd8shascb9xb8c1zncsrbnj0an8qjsg1pwf0az7h7gv5v0g50b3pixznr7wk7d8yqfazj"; 10814 + url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.7.0.tgz"; 10815 + sha512 = "031cxan5lg9gnxfk0ig3np5v4zvb61jraigawngdc2waq6yf1dsck5zixvfmhbm5sx5dn073f72716cl3i61qx0vpn3mlmq21zalj2g"; 10771 10816 }; 10772 10817 }; 10773 10818 "flush-write-stream-1.0.3" = { ··· 10806 10851 sha512 = "2z7ai3f3g9j48z90kds4070nb8v2q02n7131c2zjplb0zfjxjrd1m2fm8ykg7psj8fiwc4iidn2g9rr2w09qijbssddr0p8acyiw5mv"; 10807 10852 }; 10808 10853 }; 10809 - "for-each-0.3.2" = { 10854 + "follow-redirects-1.5.0" = { 10855 + name = "follow-redirects"; 10856 + packageName = "follow-redirects"; 10857 + version = "1.5.0"; 10858 + src = fetchurl { 10859 + url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.0.tgz"; 10860 + sha512 = "0h5jsslx4wxfjvwhfjhims4m3nnkjdzmm1g1ch7wvd0pq8y2bpndfa8zrbga7sy1xa90zm85cjay3laz7fnzvq858xa9xmzppiyvnkx"; 10861 + }; 10862 + }; 10863 + "for-each-0.3.3" = { 10810 10864 name = "for-each"; 10811 10865 packageName = "for-each"; 10812 - version = "0.3.2"; 10866 + version = "0.3.3"; 10813 10867 src = fetchurl { 10814 - url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"; 10815 - sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4"; 10868 + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"; 10869 + sha512 = "2dikmdxwassw4w48vv82swjv4v1zx2sivsgcnxi3zi0imzw165ba8vaxgawz0wz4fgf138hvvc3xc5znr2wmz07r74dp8z6kqp1z9lf"; 10816 10870 }; 10817 10871 }; 10818 10872 "for-in-0.1.8" = { ··· 11319 11373 sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327"; 11320 11374 }; 11321 11375 }; 11322 - "fx-runner-1.0.8" = { 11376 + "fx-runner-1.0.9" = { 11323 11377 name = "fx-runner"; 11324 11378 packageName = "fx-runner"; 11325 - version = "1.0.8"; 11379 + version = "1.0.9"; 11326 11380 src = fetchurl { 11327 - url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.8.tgz"; 11328 - sha1 = "5ced3b04a8d51d634de20d1480f0dc5dd8325dec"; 11381 + url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.9.tgz"; 11382 + sha1 = "7b23f3773dc76aacc42f11d9aff2769675cb63f0"; 11329 11383 }; 11330 11384 }; 11331 11385 "galaxy-0.1.12" = { ··· 11526 11580 sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28"; 11527 11581 }; 11528 11582 }; 11529 - "getmac-1.4.1" = { 11583 + "getmac-1.4.3" = { 11530 11584 name = "getmac"; 11531 11585 packageName = "getmac"; 11532 - version = "1.4.1"; 11586 + version = "1.4.3"; 11533 11587 src = fetchurl { 11534 - url = "https://registry.npmjs.org/getmac/-/getmac-1.4.1.tgz"; 11535 - sha512 = "0r7zqgvfiv3r6zy8fms9gdcf3a1r46kpf8pm5x7vwrc27vgv69ra244s89k73hb9rna6r3s9v20yzbwjmz2c13gh3s0bbd07zq7w2lr"; 11588 + url = "https://registry.npmjs.org/getmac/-/getmac-1.4.3.tgz"; 11589 + sha512 = "30r4q3b0d0j7i6lcwwbihxgp08bjp2x9yiff9nwww0krdnr9h9mjscfl0my891245nswcg8i3xmdxi4cmxqr54j9c1dgmzyhmy5mrkc"; 11536 11590 }; 11537 11591 }; 11538 11592 "getpass-0.1.7" = { ··· 11733 11787 sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae"; 11734 11788 }; 11735 11789 }; 11790 + "glob-slash-1.0.0" = { 11791 + name = "glob-slash"; 11792 + packageName = "glob-slash"; 11793 + version = "1.0.0"; 11794 + src = fetchurl { 11795 + url = "https://registry.npmjs.org/glob-slash/-/glob-slash-1.0.0.tgz"; 11796 + sha1 = "fe52efa433233f74a2fe64c7abb9bc848202ab95"; 11797 + }; 11798 + }; 11799 + "glob-slasher-1.0.1" = { 11800 + name = "glob-slasher"; 11801 + packageName = "glob-slasher"; 11802 + version = "1.0.1"; 11803 + src = fetchurl { 11804 + url = "https://registry.npmjs.org/glob-slasher/-/glob-slasher-1.0.1.tgz"; 11805 + sha1 = "747a0e5bb222642ee10d3e05443e109493cb0f8e"; 11806 + }; 11807 + }; 11736 11808 "glob-stream-3.1.18" = { 11737 11809 name = "glob-stream"; 11738 11810 packageName = "glob-stream"; ··· 11740 11812 src = fetchurl { 11741 11813 url = "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz"; 11742 11814 sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b"; 11743 - }; 11744 - }; 11745 - "glob-stream-5.3.5" = { 11746 - name = "glob-stream"; 11747 - packageName = "glob-stream"; 11748 - version = "5.3.5"; 11749 - src = fetchurl { 11750 - url = "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz"; 11751 - sha1 = "a55665a9a8ccdc41915a87c701e32d4e016fad22"; 11752 11815 }; 11753 11816 }; 11754 11817 "glob-stream-6.1.0" = { ··· 12049 12112 sha1 = "c167d2a5319c5a0e0964ef6a25b7c2df8996c85c"; 12050 12113 }; 12051 12114 }; 12052 - "growl-1.10.3" = { 12115 + "growl-1.10.5" = { 12053 12116 name = "growl"; 12054 12117 packageName = "growl"; 12055 - version = "1.10.3"; 12118 + version = "1.10.5"; 12056 12119 src = fetchurl { 12057 - url = "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz"; 12058 - sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4"; 12120 + url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; 12121 + sha512 = "146i7if4fjml1p6xw1ybb7vm22k6i8yc7r8wcw8yia7qy385w1s6j18ip91g5mv47zvv5fw5m8kpzlaayjs183fkpg174hbw4xgh6m8"; 12059 12122 }; 12060 12123 }; 12061 12124 "growly-1.3.0" = { ··· 12119 12182 src = fetchurl { 12120 12183 url = "https://registry.npmjs.org/gulp-rename/-/gulp-rename-1.2.3.tgz"; 12121 12184 sha512 = "01v6g5dvnsxvzcwrw2m6kx3ghrpxmbwz4gwljm7qv9rhxhssssvy54llpib7b5i3iyjkb7mvy4a3lgcld7pxx9580wms9v380rlyrqa"; 12122 - }; 12123 - }; 12124 - "gulp-sourcemaps-1.6.0" = { 12125 - name = "gulp-sourcemaps"; 12126 - packageName = "gulp-sourcemaps"; 12127 - version = "1.6.0"; 12128 - src = fetchurl { 12129 - url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz"; 12130 - sha1 = "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c"; 12131 12185 }; 12132 12186 }; 12133 12187 "gulp-sourcemaps-2.6.4" = { ··· 12238 12292 sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd"; 12239 12293 }; 12240 12294 }; 12241 - "has-1.0.1" = { 12295 + "has-1.0.3" = { 12242 12296 name = "has"; 12243 12297 packageName = "has"; 12244 - version = "1.0.1"; 12298 + version = "1.0.3"; 12245 12299 src = fetchurl { 12246 - url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz"; 12247 - sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28"; 12300 + url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz"; 12301 + sha512 = "37vh53c11hws66navka0w9xxm6rcr034bxpyvaldiqz1msafqf0jpi1aqxbaygs53arz9y510qg6dl6vrm285hrxniygs2l8lxnyrvz"; 12248 12302 }; 12249 12303 }; 12250 12304 "has-ansi-0.1.0" = { ··· 12832 12886 sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430"; 12833 12887 }; 12834 12888 }; 12835 - "http-parser-js-0.4.12" = { 12889 + "http-parser-js-0.4.13" = { 12836 12890 name = "http-parser-js"; 12837 12891 packageName = "http-parser-js"; 12838 - version = "0.4.12"; 12892 + version = "0.4.13"; 12839 12893 src = fetchurl { 12840 - url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.12.tgz"; 12841 - sha1 = "b9cfbf4a2cf26f0fc34b10ca1489a27771e3474f"; 12894 + url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz"; 12895 + sha1 = "3bd6d6fde6e3172c9334c3b33b6c193d80fe1137"; 12842 12896 }; 12843 12897 }; 12844 12898 "http-proxy-1.0.2" = { ··· 13021 13075 sha512 = "3bml62y8rmpga8wbcxfqm6izvc9xxlblx0vc08r778qa42jgw6fjif4i7f9bj2y98bz4xyimg5vfgch92j6i2l7zcwiq5za8l34cziw"; 13022 13076 }; 13023 13077 }; 13024 - "hypercore-6.14.0" = { 13078 + "hypercore-6.15.0" = { 13025 13079 name = "hypercore"; 13026 13080 packageName = "hypercore"; 13027 - version = "6.14.0"; 13081 + version = "6.15.0"; 13028 13082 src = fetchurl { 13029 - url = "https://registry.npmjs.org/hypercore/-/hypercore-6.14.0.tgz"; 13030 - sha512 = "3liw77yhvn3nlrczf9s30vvn4bxrn3glh65a2psy1va9pvcnjwx6wfh52v5l9qbd7zyp4q4nb7qrq0n3am7jwmz3dkb5fzvdnlwikkh"; 13083 + url = "https://registry.npmjs.org/hypercore/-/hypercore-6.15.0.tgz"; 13084 + sha512 = "2qd2nd34xmr8fvagbifn72ffcr6hw9byas8rccy1wx252kj2qza8yy9g0ck9nf7np794267ry4jih7j1ryrjrbs8r8q2hbvgcyv5w0z"; 13031 13085 }; 13032 13086 }; 13033 13087 "hypercore-protocol-6.6.4" = { ··· 13039 13093 sha512 = "0rxj8d4lp45q7v3wwwv23m7qi84vw3wvyafqiy9x5f9lqkynq8v8yajpq9bcnc935927qjnxajn8n0cyhg0fqjnpywlfyxgxczkndgm"; 13040 13094 }; 13041 13095 }; 13042 - "hyperdrive-9.12.3" = { 13096 + "hyperdrive-9.13.0" = { 13043 13097 name = "hyperdrive"; 13044 13098 packageName = "hyperdrive"; 13045 - version = "9.12.3"; 13099 + version = "9.13.0"; 13046 13100 src = fetchurl { 13047 - url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.3.tgz"; 13048 - sha512 = "3w0ia766bacphqzgyjhiwbppgdja61vlz2xp6x710dk4pn6570gag3w5xa8rfivh2lvig8v2ics3bkdlm9cmq9kpzjgwzm19a089fb3"; 13101 + url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.13.0.tgz"; 13102 + sha512 = "1ncs5n26spkycvrfi5j0dy62bw3d9l0cmpaagc54nb6rfh33zyh228b3n99yajvzhyym0d6g0hphpwjyz8s7pngv13ql8f41x05zq40"; 13049 13103 }; 13050 13104 }; 13051 13105 "hyperdrive-http-4.2.2" = { ··· 13480 13534 sha512 = "18q95zmyca97iylvzibh193n81dp71yawcb56ib17inhq7g0nixmbx62j56bdv3d7lxsgwj8zw9zcmmhzjivx3wlb3b6a60jsf6dl0k"; 13481 13535 }; 13482 13536 }; 13537 + "inquirer-6.0.0" = { 13538 + name = "inquirer"; 13539 + packageName = "inquirer"; 13540 + version = "6.0.0"; 13541 + src = fetchurl { 13542 + url = "https://registry.npmjs.org/inquirer/-/inquirer-6.0.0.tgz"; 13543 + sha512 = "0k09hsg3dfdz7vp482v56hvhqa9g4qbm8jpmig9p0phdzsaspajxk9d4z575dd8rc70pmipg7pxxpgdqwa3x1z4rwmhhw1d3icr115l"; 13544 + }; 13545 + }; 13483 13546 "insert-module-globals-7.1.0" = { 13484 13547 name = "insert-module-globals"; 13485 13548 packageName = "insert-module-globals"; ··· 14110 14173 sha512 = "34m1wg28c9l1v9bqz2klwl4ybhyqkhk80d95664jmcbq1jjpg471nv96mqgqy4838xpa8wm7mbpynmq4294pq6iw163s0ar1b3a4f1r"; 14111 14174 }; 14112 14175 }; 14176 + "is-options-1.0.1" = { 14177 + name = "is-options"; 14178 + packageName = "is-options"; 14179 + version = "1.0.1"; 14180 + src = fetchurl { 14181 + url = "https://registry.npmjs.org/is-options/-/is-options-1.0.1.tgz"; 14182 + sha512 = "339gkkcm39mcw2c8wwl37y02rq3ga7309fgrvp2garlavgh93aydxpfx8wg9j9xs6k9h3ha11c4z9bkcqihd7w5d8fb03ik1nqgqy6r"; 14183 + }; 14184 + }; 14113 14185 "is-path-cwd-1.0.0" = { 14114 14186 name = "is-path-cwd"; 14115 14187 packageName = "is-path-cwd"; ··· 14389 14461 sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72"; 14390 14462 }; 14391 14463 }; 14392 - "is-valid-glob-0.3.0" = { 14393 - name = "is-valid-glob"; 14394 - packageName = "is-valid-glob"; 14395 - version = "0.3.0"; 14396 - src = fetchurl { 14397 - url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz"; 14398 - sha1 = "d4b55c69f51886f9b65c70d6c2622d37e29f48fe"; 14399 - }; 14400 - }; 14401 14464 "is-valid-glob-1.0.0" = { 14402 14465 name = "is-valid-glob"; 14403 14466 packageName = "is-valid-glob"; ··· 14477 14540 src = fetchurl { 14478 14541 url = "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.2.tgz"; 14479 14542 sha1 = "4a3e974ec0cba9004d3fc6cde7209ea69368a621"; 14480 - }; 14481 - }; 14482 - "isemail-1.2.0" = { 14483 - name = "isemail"; 14484 - packageName = "isemail"; 14485 - version = "1.2.0"; 14486 - src = fetchurl { 14487 - url = "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz"; 14488 - sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a"; 14489 14543 }; 14490 14544 }; 14491 14545 "isexe-1.1.2" = { ··· 14641 14695 sha1 = "06d4912255093419477d425633606e0e90782967"; 14642 14696 }; 14643 14697 }; 14644 - "joi-6.10.1" = { 14645 - name = "joi"; 14646 - packageName = "joi"; 14647 - version = "6.10.1"; 14648 - src = fetchurl { 14649 - url = "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz"; 14650 - sha1 = "4d50c318079122000fe5f16af1ff8e1917b77e06"; 14651 - }; 14652 - }; 14653 14698 "jquery-3.3.1" = { 14654 14699 name = "jquery"; 14655 14700 packageName = "jquery"; ··· 14659 14704 sha512 = "0d5v4s4626l13llvp6hq5wlghysf7lmfxpp0x0ymvcrvikz2xmyrag81wxndb9fy48mx61gcdlbmdwln78s43givdwpmrk9dir5vfai"; 14660 14705 }; 14661 14706 }; 14662 - "jquery-ui-1.12.1" = { 14663 - name = "jquery-ui"; 14664 - packageName = "jquery-ui"; 14707 + "jquery-ui-bundle-1.12.1" = { 14708 + name = "jquery-ui-bundle"; 14709 + packageName = "jquery-ui-bundle"; 14665 14710 version = "1.12.1"; 14666 14711 src = fetchurl { 14667 - url = "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.12.1.tgz"; 14668 - sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51"; 14712 + url = "https://registry.npmjs.org/jquery-ui-bundle/-/jquery-ui-bundle-1.12.1.tgz"; 14713 + sha1 = "d6be2e4c377494e2378b1cae2920a91d1182d8c4"; 14669 14714 }; 14670 14715 }; 14671 14716 "js-select-0.6.0" = { ··· 14731 14776 sha512 = "0gka65n4d9gmcy0c8cy5h55r273dbxnw54gibp2nq5mmdmksjgb2nhcdfgfxs1wg3yayyrydn2v79fny7hdyq907dg87vmgjnsnr8mi"; 14732 14777 }; 14733 14778 }; 14779 + "js-yaml-3.12.0" = { 14780 + name = "js-yaml"; 14781 + packageName = "js-yaml"; 14782 + version = "3.12.0"; 14783 + src = fetchurl { 14784 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz"; 14785 + sha512 = "3f8k2gvi3gnj9gpr3dnm5n5vpy2w68pshqk4hajlsmkb37ky30cnqza82l8sq153zx1nk67gizcm1ngmvlajw53hkwg4g96gir7d2rw"; 14786 + }; 14787 + }; 14734 14788 "js2xmlparser-1.0.0" = { 14735 14789 name = "js2xmlparser"; 14736 14790 packageName = "js2xmlparser"; ··· 14758 14812 sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"; 14759 14813 }; 14760 14814 }; 14815 + "jsdom-7.2.2" = { 14816 + name = "jsdom"; 14817 + packageName = "jsdom"; 14818 + version = "7.2.2"; 14819 + src = fetchurl { 14820 + url = "https://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz"; 14821 + sha1 = "40b402770c2bda23469096bee91ab675e3b1fc6e"; 14822 + }; 14823 + }; 14761 14824 "jsesc-0.5.0" = { 14762 14825 name = "jsesc"; 14763 14826 packageName = "jsesc"; ··· 14956 15019 sha1 = "1eade7acc012034ad84e2396767ead9fa5495821"; 14957 15020 }; 14958 15021 }; 14959 - "jsonata-1.5.3" = { 15022 + "jsonata-1.5.4" = { 14960 15023 name = "jsonata"; 14961 15024 packageName = "jsonata"; 14962 - version = "1.5.3"; 15025 + version = "1.5.4"; 14963 15026 src = fetchurl { 14964 - url = "https://registry.npmjs.org/jsonata/-/jsonata-1.5.3.tgz"; 14965 - sha512 = "0lgmcfyrax8g07h2lhdlzw3i5dp28mdhg3azf2h7c1ig3nf3xv0dkrpdfsr155zhmbx2cyjr3w90hvkxc0vv2s4nj0zxdw15j6ywibn"; 15027 + url = "https://registry.npmjs.org/jsonata/-/jsonata-1.5.4.tgz"; 15028 + sha512 = "27541bw7vmi7jjvk8s2qka188hdsqqrh961xcfyk5zwlwxdcmkvh53bpqz5kvclyljdm3kk82dgap4f4ggz713l1yj7yllq8pcpvyhp"; 14966 15029 }; 14967 15030 }; 14968 15031 "jsonfile-1.0.1" = { ··· 15064 15127 sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9"; 15065 15128 }; 15066 15129 }; 15067 - "jsonwebtoken-7.1.9" = { 15130 + "jsonwebtoken-8.2.1" = { 15068 15131 name = "jsonwebtoken"; 15069 15132 packageName = "jsonwebtoken"; 15070 - version = "7.1.9"; 15133 + version = "8.2.1"; 15071 15134 src = fetchurl { 15072 - url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-7.1.9.tgz"; 15073 - sha1 = "847804e5258bec5a9499a8dc4a5e7a3bae08d58a"; 15135 + url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz"; 15136 + sha512 = "0dwgmjxfm3hp813x0ixpflz3bm5j5r6mn714b4y9gqcyaw28yw2ylz6kn2a6wg9m5crnxfnpdds5cbvxrm68gyg7lq8da8zpl3d9jlp"; 15074 15137 }; 15075 15138 }; 15076 15139 "jspm-config-0.3.4" = { ··· 15668 15731 sha1 = "9144b6eebca5f1d0680169f1a6770dcea60b75c3"; 15669 15732 }; 15670 15733 }; 15671 - "leven-2.1.0" = { 15672 - name = "leven"; 15673 - packageName = "leven"; 15674 - version = "2.1.0"; 15675 - src = fetchurl { 15676 - url = "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz"; 15677 - sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580"; 15678 - }; 15679 - }; 15680 15734 "levn-0.3.0" = { 15681 15735 name = "levn"; 15682 15736 packageName = "levn"; ··· 16073 16127 sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c"; 16074 16128 }; 16075 16129 }; 16130 + "lodash._objecttypes-2.4.1" = { 16131 + name = "lodash._objecttypes"; 16132 + packageName = "lodash._objecttypes"; 16133 + version = "2.4.1"; 16134 + src = fetchurl { 16135 + url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz"; 16136 + sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11"; 16137 + }; 16138 + }; 16076 16139 "lodash._reescape-3.0.0" = { 16077 16140 name = "lodash._reescape"; 16078 16141 packageName = "lodash._reescape"; ··· 16280 16343 sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862"; 16281 16344 }; 16282 16345 }; 16346 + "lodash.includes-4.3.0" = { 16347 + name = "lodash.includes"; 16348 + packageName = "lodash.includes"; 16349 + version = "4.3.0"; 16350 + src = fetchurl { 16351 + url = "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz"; 16352 + sha1 = "60bb98a87cb923c68ca1e51325483314849f553f"; 16353 + }; 16354 + }; 16283 16355 "lodash.isarguments-3.1.0" = { 16284 16356 name = "lodash.isarguments"; 16285 16357 packageName = "lodash.isarguments"; ··· 16298 16370 sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55"; 16299 16371 }; 16300 16372 }; 16373 + "lodash.isboolean-3.0.3" = { 16374 + name = "lodash.isboolean"; 16375 + packageName = "lodash.isboolean"; 16376 + version = "3.0.3"; 16377 + src = fetchurl { 16378 + url = "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz"; 16379 + sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6"; 16380 + }; 16381 + }; 16301 16382 "lodash.isequal-4.5.0" = { 16302 16383 name = "lodash.isequal"; 16303 16384 packageName = "lodash.isequal"; ··· 16307 16388 sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0"; 16308 16389 }; 16309 16390 }; 16391 + "lodash.isinteger-4.0.4" = { 16392 + name = "lodash.isinteger"; 16393 + packageName = "lodash.isinteger"; 16394 + version = "4.0.4"; 16395 + src = fetchurl { 16396 + url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz"; 16397 + sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343"; 16398 + }; 16399 + }; 16400 + "lodash.isnumber-3.0.3" = { 16401 + name = "lodash.isnumber"; 16402 + packageName = "lodash.isnumber"; 16403 + version = "3.0.3"; 16404 + src = fetchurl { 16405 + url = "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz"; 16406 + sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc"; 16407 + }; 16408 + }; 16409 + "lodash.isobject-2.4.1" = { 16410 + name = "lodash.isobject"; 16411 + packageName = "lodash.isobject"; 16412 + version = "2.4.1"; 16413 + src = fetchurl { 16414 + url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz"; 16415 + sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5"; 16416 + }; 16417 + }; 16310 16418 "lodash.isplainobject-4.0.6" = { 16311 16419 name = "lodash.isplainobject"; 16312 16420 packageName = "lodash.isplainobject"; ··· 16568 16676 sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708"; 16569 16677 }; 16570 16678 }; 16571 - "log4js-2.6.1" = { 16679 + "log4js-2.8.0" = { 16572 16680 name = "log4js"; 16573 16681 packageName = "log4js"; 16574 - version = "2.6.1"; 16682 + version = "2.8.0"; 16575 16683 src = fetchurl { 16576 - url = "https://registry.npmjs.org/log4js/-/log4js-2.6.1.tgz"; 16577 - sha512 = "254l8in0izc772xvl9krch7nll86c1a3b1i9j1yb3sl1rialgynw6q2slza1vmmh49b375a3qfj4ir9pkzgsas48rbrzi10px71dsh4"; 16684 + url = "https://registry.npmjs.org/log4js/-/log4js-2.8.0.tgz"; 16685 + sha512 = "0c5w5kb3vbh6ff5l7srizxhnkjlnx4ip7zwrll04xm5i8k0mq0kcsgvz88dzlzkb002x7wzizaw5ynq3y0xg633inv4fjr5h49ilfry"; 16578 16686 }; 16579 16687 }; 16580 16688 "loggly-1.1.1" = { ··· 16955 17063 sha512 = "2dhd467iqwi8rmdzm8m0921z2mmixbdbpp9hvk02f5z6k1k2324k5l971x6j46mlq8nbixf21znq376dj431jnfajxllm123mgaw657"; 16956 17064 }; 16957 17065 }; 17066 + "mamacro-0.0.3" = { 17067 + name = "mamacro"; 17068 + packageName = "mamacro"; 17069 + version = "0.0.3"; 17070 + src = fetchurl { 17071 + url = "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz"; 17072 + sha512 = "1670fzjdl58zpljl3vblrzfz0805w0d99kdhf9rz4cgr1f2g01ibb5s5b1n7w7dqfv8lyig9zcqw2f0gsjlzxxwj4zc939fwn3k1hd8"; 17073 + }; 17074 + }; 16958 17075 "map-cache-0.2.2" = { 16959 17076 name = "map-cache"; 16960 17077 packageName = "map-cache"; ··· 17108 17225 sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d"; 17109 17226 }; 17110 17227 }; 17111 - "mdn-data-1.1.3" = { 17228 + "mdn-data-1.1.4" = { 17112 17229 name = "mdn-data"; 17113 17230 packageName = "mdn-data"; 17114 - version = "1.1.3"; 17231 + version = "1.1.4"; 17115 17232 src = fetchurl { 17116 - url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.3.tgz"; 17117 - sha512 = "0ly3w028pxhm83a538dms6xm5rw84xy7pq16354kfpbd72ng0rykvbnfcs1c3ijdcr7xfxzva4pp10wqf6nxysj375vinqbki1zmgl7"; 17233 + url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz"; 17234 + sha512 = "144x251sdslml324vr6hp0lzc54g6d90n3cc1drs8lyqixw798p42ar2a0s2id939pajpa185givxb2mdg35psfvjikqakjg6kin9hm"; 17118 17235 }; 17119 17236 }; 17120 17237 "mdns-js-0.5.0" = { ··· 17315 17432 sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61"; 17316 17433 }; 17317 17434 }; 17318 - "merge-stream-1.0.1" = { 17319 - name = "merge-stream"; 17320 - packageName = "merge-stream"; 17321 - version = "1.0.1"; 17322 - src = fetchurl { 17323 - url = "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz"; 17324 - sha1 = "4041202d508a342ba00174008df0c251b8c135e1"; 17325 - }; 17326 - }; 17327 17435 "merge2-1.2.2" = { 17328 17436 name = "merge2"; 17329 17437 packageName = "merge2"; ··· 17405 17513 sha1 = "5529a4d67654134edcc5266656835b0f851afcee"; 17406 17514 }; 17407 17515 }; 17408 - "micro-9.1.4" = { 17409 - name = "micro"; 17410 - packageName = "micro"; 17411 - version = "9.1.4"; 17412 - src = fetchurl { 17413 - url = "https://registry.npmjs.org/micro/-/micro-9.1.4.tgz"; 17414 - sha512 = "0zajgsz4m4z0cbibs2vz4brzp6ihq647id9zq67lrcy6nkc9fzjc8fx4g1bsf6nnbjha22fi5sz7lmfq46qixcz807v1p5pjd13kr6r"; 17415 - }; 17416 - }; 17417 - "micro-compress-1.0.0" = { 17418 - name = "micro-compress"; 17419 - packageName = "micro-compress"; 17420 - version = "1.0.0"; 17421 - src = fetchurl { 17422 - url = "https://registry.npmjs.org/micro-compress/-/micro-compress-1.0.0.tgz"; 17423 - sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f"; 17424 - }; 17425 - }; 17426 17516 "microee-0.0.6" = { 17427 17517 name = "microee"; 17428 17518 packageName = "microee"; ··· 17540 17630 sha512 = "36xnw59ik9fqym00cmwb5nyzg0l03k70cp413f7639j93wgmzk1mh0xjc7i6zz3r6k9xnwh0g5cm5a1f3y8c6plgy4qld7fm887ywh4"; 17541 17631 }; 17542 17632 }; 17633 + "mime-db-1.34.0" = { 17634 + name = "mime-db"; 17635 + packageName = "mime-db"; 17636 + version = "1.34.0"; 17637 + src = fetchurl { 17638 + url = "https://registry.npmjs.org/mime-db/-/mime-db-1.34.0.tgz"; 17639 + sha1 = "452d0ecff5c30346a6dc1e64b1eaee0d3719ff9a"; 17640 + }; 17641 + }; 17543 17642 "mime-types-2.0.14" = { 17544 17643 name = "mime-types"; 17545 17644 packageName = "mime-types"; ··· 17720 17819 sha512 = "1slngp5z9rczjirv9lpdwiv1ap4xmp28jxl4r0i5hpds1khlm89qp70ziz8k5h2vwjph6srjqi3gb2yrwwsnnwli6p8yxvlyx7nn80p"; 17721 17820 }; 17722 17821 }; 17723 - "minipass-2.3.0" = { 17822 + "minipass-2.3.3" = { 17724 17823 name = "minipass"; 17725 17824 packageName = "minipass"; 17726 - version = "2.3.0"; 17825 + version = "2.3.3"; 17727 17826 src = fetchurl { 17728 - url = "https://registry.npmjs.org/minipass/-/minipass-2.3.0.tgz"; 17729 - sha512 = "1p0pbj1iwnzb7kkqbh5h0vd6byh1l6na1yx69qmbb0wbmwm0qc5g4hn4z6lr8wkzb4kybvd1hjm4hxd93nrdr8ydbqqd9wd1w9bcq4d"; 17827 + url = "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz"; 17828 + sha512 = "1ii40xdjvsqw9k2pyavlv1h4wh5pc3fz4kn91gxpy404kilgp6p9q7q6zba7wa9i7xh9iijnz2pmr8h0wc4yh14lwkqhps4zgvjfc7y"; 17730 17829 }; 17731 17830 }; 17732 17831 "minizlib-1.1.0" = { ··· 17738 17837 sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1"; 17739 17838 }; 17740 17839 }; 17741 - "mirror-folder-2.2.0" = { 17840 + "mirror-folder-3.0.0" = { 17742 17841 name = "mirror-folder"; 17743 17842 packageName = "mirror-folder"; 17744 - version = "2.2.0"; 17843 + version = "3.0.0"; 17745 17844 src = fetchurl { 17746 - url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.2.0.tgz"; 17747 - sha512 = "3js8pwgmj4lzzi6nzl0wp021rhsnz31jpkkzdf35xzwm1l65m6ygjf4hz77vvy3dk2h5jb2d32nvzy26n3d5hswg3nb8s0rylvv510r"; 17845 + url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz"; 17846 + sha512 = "3vdfga0d1l6kpkk3bvkzw6jx6x6n4dn1z1q6rxgnsj0wqhs68v0fgdik67f3r9vll25kdmvwhn67v6p5xqiwkxncc55m90jfw6v07ky"; 17748 17847 }; 17749 17848 }; 17750 17849 "mississippi-2.0.0" = { ··· 17909 18008 sha1 = "f38f2c97c9889b0ee18fc6cc392e1e443ad2da8e"; 17910 18009 }; 17911 18010 }; 17912 - "moment-2.20.1" = { 18011 + "moment-2.18.1" = { 17913 18012 name = "moment"; 17914 18013 packageName = "moment"; 17915 - version = "2.20.1"; 18014 + version = "2.18.1"; 17916 18015 src = fetchurl { 17917 - url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz"; 17918 - sha512 = "2zc9qgzsrnp9g4jm4qsb1g1h7w5zmnkz8690br52l83yr9kwhch0mh7r2vdhc706jkrqczia9wbrgkscz0x6k8cwmb3r5jifbpp47v2"; 18016 + url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz"; 18017 + sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f"; 17919 18018 }; 17920 18019 }; 17921 - "moment-2.22.1" = { 18020 + "moment-2.20.1" = { 17922 18021 name = "moment"; 17923 18022 packageName = "moment"; 17924 - version = "2.22.1"; 18023 + version = "2.20.1"; 17925 18024 src = fetchurl { 17926 - url = "https://registry.npmjs.org/moment/-/moment-2.22.1.tgz"; 17927 - sha512 = "1hzs2jf69lrw76a4diywsl4451qpm3iavk8f324hgb6x3njb64bd77375kwv4ydllzc5cy1v1mabgciln7yhfd9avn7nvcy6i2n84mj"; 18025 + url = "https://registry.npmjs.org/moment/-/moment-2.20.1.tgz"; 18026 + sha512 = "2zc9qgzsrnp9g4jm4qsb1g1h7w5zmnkz8690br52l83yr9kwhch0mh7r2vdhc706jkrqczia9wbrgkscz0x6k8cwmb3r5jifbpp47v2"; 17928 18027 }; 17929 18028 }; 17930 - "moment-2.6.0" = { 18029 + "moment-2.22.2" = { 17931 18030 name = "moment"; 17932 18031 packageName = "moment"; 17933 - version = "2.6.0"; 18032 + version = "2.22.2"; 17934 18033 src = fetchurl { 17935 - url = "https://registry.npmjs.org/moment/-/moment-2.6.0.tgz"; 17936 - sha1 = "0765b72b841dd213fa91914c0f6765122719f061"; 18034 + url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz"; 18035 + sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66"; 17937 18036 }; 17938 18037 }; 17939 18038 "moment-2.7.0" = { ··· 18044 18143 sha1 = "fbbdc28cb0207e49b8a4eb1a4c0cea6c2de794c8"; 18045 18144 }; 18046 18145 }; 18047 - "mqtt-2.17.0" = { 18146 + "mqtt-2.18.0" = { 18048 18147 name = "mqtt"; 18049 18148 packageName = "mqtt"; 18050 - version = "2.17.0"; 18149 + version = "2.18.0"; 18051 18150 src = fetchurl { 18052 - url = "https://registry.npmjs.org/mqtt/-/mqtt-2.17.0.tgz"; 18053 - sha512 = "1mqfnz7s0gnga7gdh29qj4lfybm3fzsc6w3x610sr50h9dhbi3m5isfri63d87rdlyp5dspy11gpdah2h1ikaq3zi7wfhf6dzj8m1vr"; 18151 + url = "https://registry.npmjs.org/mqtt/-/mqtt-2.18.0.tgz"; 18152 + sha512 = "2f3n5f227fdi44ms963ga3w15b5hgljy6xhr5s9i2x4jcg0vjfb9ib7sqv7n0c00kk1f67n9r5xdqgjc4syab54ip6d5slk71dmg23p"; 18054 18153 }; 18055 18154 }; 18056 18155 "mqtt-packet-5.6.0" = { ··· 18060 18159 src = fetchurl { 18061 18160 url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.6.0.tgz"; 18062 18161 sha512 = "1gvb90a13pd8xx7mkx6nxfs8cc2ysf58vwccvm1jh5myhwjyvsamj5f9fi398vgk9haxmg25l00lwbs4cdnvs638r5iswga5gd9wh20"; 18063 - }; 18064 - }; 18065 - "mri-1.1.0" = { 18066 - name = "mri"; 18067 - packageName = "mri"; 18068 - version = "1.1.0"; 18069 - src = fetchurl { 18070 - url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz"; 18071 - sha1 = "5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a"; 18072 18162 }; 18073 18163 }; 18074 18164 "mri-1.1.1" = { ··· 18305 18395 sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b"; 18306 18396 }; 18307 18397 }; 18308 - "multistream-2.1.0" = { 18398 + "multistream-2.1.1" = { 18309 18399 name = "multistream"; 18310 18400 packageName = "multistream"; 18311 - version = "2.1.0"; 18401 + version = "2.1.1"; 18312 18402 src = fetchurl { 18313 - url = "https://registry.npmjs.org/multistream/-/multistream-2.1.0.tgz"; 18314 - sha1 = "625c267d5c44424ad6294788b5bb4da3dcb32f1d"; 18403 + url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz"; 18404 + sha512 = "0ssriqcskcwvja0aw04frfy7fymv2nwl0dqh3fp03d2cd78yf45r6jlvv1pn87w1b2yzp7iy8mznj7cybxr9dscfkspmsk5m3pjzay5"; 18315 18405 }; 18316 18406 }; 18317 18407 "muri-0.3.1" = { ··· 18503 18593 sha1 = "bce5d5d435a5362c7dad7f9e90cd21959589be86"; 18504 18594 }; 18505 18595 }; 18506 - "nanoid-1.0.2" = { 18596 + "nanoid-1.0.3" = { 18507 18597 name = "nanoid"; 18508 18598 packageName = "nanoid"; 18509 - version = "1.0.2"; 18599 + version = "1.0.3"; 18510 18600 src = fetchurl { 18511 - url = "https://registry.npmjs.org/nanoid/-/nanoid-1.0.2.tgz"; 18512 - sha512 = "2bzl500sgpk3i3ird4iviglsj0gj9a0qhmj4hnky3xmxbl4ahamjhi96rslr8k65j77glmw771m3jm7r5sr5akw6ip5glmxvqkg095h"; 18601 + url = "https://registry.npmjs.org/nanoid/-/nanoid-1.0.3.tgz"; 18602 + sha512 = "04vmzrfmvwj2jz8k4qw7hm3sbin33m5a12ayz1anmx8frrl1ppc4ij1p6zlmb65216kqyclljx72wwyrpjxx3ih6g9s0ssrgj6xd4wp"; 18513 18603 }; 18514 18604 }; 18515 18605 "nanolru-1.0.0" = { ··· 18597 18687 sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11"; 18598 18688 }; 18599 18689 }; 18600 - "natives-1.1.3" = { 18690 + "natives-1.1.4" = { 18601 18691 name = "natives"; 18602 18692 packageName = "natives"; 18603 - version = "1.1.3"; 18693 + version = "1.1.4"; 18604 18694 src = fetchurl { 18605 - url = "https://registry.npmjs.org/natives/-/natives-1.1.3.tgz"; 18606 - sha512 = "3pbpfnk3183j5mwxprr19bzahf7lxarcka2bad0mhcywnjlj63i55phbxyk0pn4l4v7nj3wv4gjrzdk7xfxxfrjl5rvqf0qbrhr5485"; 18695 + url = "https://registry.npmjs.org/natives/-/natives-1.1.4.tgz"; 18696 + sha512 = "0967ggrqp33pwjsmsa03yx5mbz26h54ldxylqb6aq9svgxyckqa6kg6lw0ia93mz2shkm0qdmhfzw9klc3lqr2p5lhsq52s1xx74vs3"; 18607 18697 }; 18608 18698 }; 18609 18699 "natural-compare-1.4.0" = { ··· 19048 19138 sha512 = "06is8ig0mlp85dl5hjp86gp7hwahssfls65gbwcql3awygilv9zlgxngm4yrl54vmkyjk2dk5gbf78r6bm4jgm3qf07xdbwvcgjvqz7"; 19049 19139 }; 19050 19140 }; 19051 - "node-red-node-twitter-0.1.13" = { 19141 + "node-red-node-twitter-0.1.15" = { 19052 19142 name = "node-red-node-twitter"; 19053 19143 packageName = "node-red-node-twitter"; 19054 - version = "0.1.13"; 19144 + version = "0.1.15"; 19055 19145 src = fetchurl { 19056 - url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.13.tgz"; 19057 - sha512 = "0wfkdalwxzyyivqxiwiba5j8pyis83lhipiwck2xrbks3w0x1ldf12fgnzx61kq64sdmzpczqwb7588ggh5drj64ymj88vwdbca0bd9"; 19146 + url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.15.tgz"; 19147 + sha512 = "07v6lmlyb0hdg9l86gvlipvs3ahi64fgswkadz1frczpi293hydlbdsy7rb917nf7z0kpcsrnch9d92xwirf4p6yzfhkmdsanrb9ha0"; 19058 19148 }; 19059 19149 }; 19060 19150 "node-ssdp-2.9.1" = { ··· 19093 19183 sha1 = "39aef510e5889a3dca9c895b506c73aae1bac048"; 19094 19184 }; 19095 19185 }; 19096 - "node-uuid-1.4.7" = { 19097 - name = "node-uuid"; 19098 - packageName = "node-uuid"; 19099 - version = "1.4.7"; 19100 - src = fetchurl { 19101 - url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz"; 19102 - sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f"; 19103 - }; 19104 - }; 19105 19186 "node-uuid-1.4.8" = { 19106 19187 name = "node-uuid"; 19107 19188 packageName = "node-uuid"; ··· 19109 19190 src = fetchurl { 19110 19191 url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz"; 19111 19192 sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907"; 19112 - }; 19113 - }; 19114 - "node-version-1.1.3" = { 19115 - name = "node-version"; 19116 - packageName = "node-version"; 19117 - version = "1.1.3"; 19118 - src = fetchurl { 19119 - url = "https://registry.npmjs.org/node-version/-/node-version-1.1.3.tgz"; 19120 - sha512 = "0zdxwcfi3gca8d1jdg3m1gh6b3xxsc7sxpdrnvabc5j5fdgmhcdqaxv3q28rl95ibb7qjcvw7c7k5wzhrvhayb9vn6lr7snabkh8k5c"; 19121 19193 }; 19122 19194 }; 19123 19195 "node-wsfederation-0.1.1" = { ··· 19381 19453 sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e"; 19382 19454 }; 19383 19455 }; 19384 - "npm-6.0.1" = { 19456 + "npm-6.1.0" = { 19385 19457 name = "npm"; 19386 19458 packageName = "npm"; 19387 - version = "6.0.1"; 19459 + version = "6.1.0"; 19388 19460 src = fetchurl { 19389 - url = "https://registry.npmjs.org/npm/-/npm-6.0.1.tgz"; 19390 - sha512 = "03x8626d7ngp160j0lx7vmzpjglvlqbz4gf9kmdndaxna9h81zr8rjhad3jcdkr9j1nnlc1rsr7acsdny5ykl3dwilq0p486zr9cyrp"; 19461 + url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz"; 19462 + sha512 = "3bhkx1ynzp39m6w5mnwfimc25arlpxgs9vgk0w7ai8zw0q6kxyljj4xjvkyxg7wv1f8jbj3k31ifgvy0kff4p3sbp5li53ls851qzvv"; 19391 19463 }; 19392 19464 }; 19393 19465 "npm-bundled-1.0.3" = { ··· 19568 19640 src = fetchurl { 19569 19641 url = "https://registry.npmjs.org/numeral/-/numeral-1.5.6.tgz"; 19570 19642 sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f"; 19643 + }; 19644 + }; 19645 + "nwmatcher-1.4.4" = { 19646 + name = "nwmatcher"; 19647 + packageName = "nwmatcher"; 19648 + version = "1.4.4"; 19649 + src = fetchurl { 19650 + url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz"; 19651 + sha512 = "24xrin7f593d6m3l1461j05p8lx8vw8fcii55q1zf04cgslah3qwcnqs7473kg56dlw5ncmbb2y0sklh1xmdkja14lh71jxvvh9hayy"; 19571 19652 }; 19572 19653 }; 19573 19654 "oauth-0.9.14" = { ··· 19922 20003 sha1 = "707375e59ab9f73025899727679b20328171c9aa"; 19923 20004 }; 19924 20005 }; 19925 - "openssl-self-signed-certificate-1.1.6" = { 19926 - name = "openssl-self-signed-certificate"; 19927 - packageName = "openssl-self-signed-certificate"; 19928 - version = "1.1.6"; 19929 - src = fetchurl { 19930 - url = "https://registry.npmjs.org/openssl-self-signed-certificate/-/openssl-self-signed-certificate-1.1.6.tgz"; 19931 - sha1 = "9d3a4776b1a57e9847350392114ad2f915a83dd4"; 19932 - }; 19933 - }; 19934 - "openssl-wrapper-0.2.1" = { 20006 + "openssl-wrapper-0.3.4" = { 19935 20007 name = "openssl-wrapper"; 19936 20008 packageName = "openssl-wrapper"; 19937 - version = "0.2.1"; 20009 + version = "0.3.4"; 19938 20010 src = fetchurl { 19939 - url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.2.1.tgz"; 19940 - sha1 = "ff2d6552c83bb14437edc0371784704c75289473"; 20011 + url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz"; 20012 + sha1 = "c01ec98e4dcd2b5dfe0b693f31827200e3b81b07"; 19941 20013 }; 19942 20014 }; 19943 20015 "opentracing-0.13.0" = { ··· 20075 20147 sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126"; 20076 20148 }; 20077 20149 }; 20078 - "ordered-read-streams-0.3.0" = { 20079 - name = "ordered-read-streams"; 20080 - packageName = "ordered-read-streams"; 20081 - version = "0.3.0"; 20082 - src = fetchurl { 20083 - url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz"; 20084 - sha1 = "7137e69b3298bb342247a1bbee3881c80e2fd78b"; 20085 - }; 20086 - }; 20087 20150 "ordered-read-streams-1.0.1" = { 20088 20151 name = "ordered-read-streams"; 20089 20152 packageName = "ordered-read-streams"; ··· 20246 20309 sha1 = "9c9456989e9f6588017b0434d56097675c3da05e"; 20247 20310 }; 20248 20311 }; 20249 - "p-limit-1.2.0" = { 20312 + "p-limit-1.3.0" = { 20250 20313 name = "p-limit"; 20251 20314 packageName = "p-limit"; 20252 - version = "1.2.0"; 20315 + version = "1.3.0"; 20253 20316 src = fetchurl { 20254 - url = "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz"; 20255 - sha512 = "2g0r6r6bbcdp6lrxbj2zbcihr1byd55kycm1ijz80l2zvmcvhqsbd7rhmfqylp004d61fibvmwzk4ig89dbyk4azpwgll7dllhsvwv3"; 20317 + url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz"; 20318 + sha512 = "3sh18calqxbww99pxc84hldflmj0i915g8npihlmazw8wjqabihi9475v0ll3fhx44sxn35j014j1k5d2xr73q3mpwkmx09n2q1gxxy"; 20256 20319 }; 20257 20320 }; 20258 20321 "p-locate-2.0.0" = { ··· 20489 20552 sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0"; 20490 20553 }; 20491 20554 }; 20555 + "parse-numeric-range-0.0.2" = { 20556 + name = "parse-numeric-range"; 20557 + packageName = "parse-numeric-range"; 20558 + version = "0.0.2"; 20559 + src = fetchurl { 20560 + url = "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-0.0.2.tgz"; 20561 + sha1 = "b4f09d413c7adbcd987f6e9233c7b4b210c938e4"; 20562 + }; 20563 + }; 20492 20564 "parse-passwd-1.0.0" = { 20493 20565 name = "parse-passwd"; 20494 20566 packageName = "parse-passwd"; ··· 20516 20588 sha512 = "31lm2ifw06p00gc0qvxinqvy8afhq0lrg3fpf5rrhb6dqx3avd3ykps8sjv2nj91wf06k62yvn9cvf1f243yzl9xpzy9255556x8bnb"; 20517 20589 }; 20518 20590 }; 20519 - "parse-torrent-6.0.0" = { 20591 + "parse-torrent-6.0.1" = { 20520 20592 name = "parse-torrent"; 20521 20593 packageName = "parse-torrent"; 20522 - version = "6.0.0"; 20594 + version = "6.0.1"; 20523 20595 src = fetchurl { 20524 - url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.0.0.tgz"; 20525 - sha512 = "1yr12djspi83lybgycwsaz5wbikbsazwhk2w4xf3niri1lx0p3965br1xbsjw1m0xrzc71q6mw5xz44w0hd3ic5wmb2v62abl7kld16"; 20596 + url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.0.1.tgz"; 20597 + sha512 = "0mgzmnc5qrvp4lzd8cnpnlbz8pjc9s6vcx5q7mbpgv5pamn2cs1lmd3yircfkrdz1f24ss7xsfz0zan5xhxi5gwj9y4b5k8y3fb7f5n"; 20526 20598 }; 20527 20599 }; 20528 20600 "parse-torrent-file-2.1.4" = { ··· 20532 20604 src = fetchurl { 20533 20605 url = "https://registry.npmjs.org/parse-torrent-file/-/parse-torrent-file-2.1.4.tgz"; 20534 20606 sha1 = "32d4b6afde631420e5f415919a222b774b575707"; 20607 + }; 20608 + }; 20609 + "parse5-1.5.1" = { 20610 + name = "parse5"; 20611 + packageName = "parse5"; 20612 + version = "1.5.1"; 20613 + src = fetchurl { 20614 + url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz"; 20615 + sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94"; 20535 20616 }; 20536 20617 }; 20537 20618 "parse5-3.0.3" = { ··· 20894 20975 sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d"; 20895 20976 }; 20896 20977 }; 20978 + "path-to-regexp-2.2.1" = { 20979 + name = "path-to-regexp"; 20980 + packageName = "path-to-regexp"; 20981 + version = "2.2.1"; 20982 + src = fetchurl { 20983 + url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz"; 20984 + sha512 = "0cndhcd7swpnjv1gwkjb1lqcjcd09is4c4ryjycs39jil9ngklsk7n0l6b09qapj68ni9r924albq2lyghrlg5mmq3brrfslh7mpvw2"; 20985 + }; 20986 + }; 20897 20987 "path-type-1.1.0" = { 20898 20988 name = "path-type"; 20899 20989 packageName = "path-type"; ··· 21102 21192 sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa"; 21103 21193 }; 21104 21194 }; 21105 - "pino-4.14.0" = { 21195 + "pino-4.16.1" = { 21106 21196 name = "pino"; 21107 21197 packageName = "pino"; 21108 - version = "4.14.0"; 21198 + version = "4.16.1"; 21109 21199 src = fetchurl { 21110 - url = "https://registry.npmjs.org/pino/-/pino-4.14.0.tgz"; 21111 - sha512 = "1x3dsg8pg321khfaf3dd91ykkwhdn60wk169l3b2kp8wkbw242ld99qiv7cmbn76ccba75wdydv8mb2v4fg58lrfnn7jf5pvk2x7qwy"; 21200 + url = "https://registry.npmjs.org/pino/-/pino-4.16.1.tgz"; 21201 + sha512 = "35gg7lc0k4ry5wq0a786amc4n7lkbwjf57y7qywv4xy5wn4zfwf756gxgp6bybgqzria04ay7hn2gn3qfiap1xzck7amjjcjh5whgs9"; 21112 21202 }; 21113 21203 }; 21114 - "pino-std-serializers-1.2.0" = { 21204 + "pino-std-serializers-2.1.0" = { 21115 21205 name = "pino-std-serializers"; 21116 21206 packageName = "pino-std-serializers"; 21117 - version = "1.2.0"; 21207 + version = "2.1.0"; 21118 21208 src = fetchurl { 21119 - url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-1.2.0.tgz"; 21120 - sha512 = "0h8xndhy3qwgkycbmypfp7a2dvk875prgnfg46zj9vz14i24xqqdw1xp748hkv2xl2phwhyaa82yr1ym6jn6r61527kz5f7f8qird78"; 21209 + url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.1.0.tgz"; 21210 + sha512 = "2jpbixd78yd4pglp7x635pxj872kw9j08dcjqw0g8rmdpnwcacm9ah83ydqzxqxkhx3m10ia753rn7xw8f39qi6ycxrc6pz02nsz99n"; 21121 21211 }; 21122 21212 }; 21123 21213 "pkg-dir-2.0.0" = { ··· 21624 21714 sha1 = "bbcfd248725259f2bb115a27bfa8d65dc420f931"; 21625 21715 }; 21626 21716 }; 21627 - "promise-timeout-1.3.0" = { 21628 - name = "promise-timeout"; 21629 - packageName = "promise-timeout"; 21630 - version = "1.3.0"; 21631 - src = fetchurl { 21632 - url = "https://registry.npmjs.org/promise-timeout/-/promise-timeout-1.3.0.tgz"; 21633 - sha512 = "2m6ixvg01qqcrywfm8jv1phv3irv63qbk901nq6wg3vhvs4wg5c8qz45fs8rzw8yr1h0p6f7dyb0ndll2irpcpkz1z2x6id9m60s877"; 21634 - }; 21635 - }; 21636 21717 "promised-temp-0.1.0" = { 21637 21718 name = "promised-temp"; 21638 21719 packageName = "promised-temp"; ··· 21847 21928 src = fetchurl { 21848 21929 url = "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz"; 21849 21930 sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3"; 21931 + }; 21932 + }; 21933 + "psl-1.1.27" = { 21934 + name = "psl"; 21935 + packageName = "psl"; 21936 + version = "1.1.27"; 21937 + src = fetchurl { 21938 + url = "https://registry.npmjs.org/psl/-/psl-1.1.27.tgz"; 21939 + sha512 = "0q5srdkdq8sz6gm0w48vvvj0azp2w2f41vxw4ypz9vkbyj9fsmxaf5aq3hlckx36mk84lvfhga9b7iik86xpj04nmylly20kdglkjr7"; 21850 21940 }; 21851 21941 }; 21852 21942 "pstree.remy-1.1.0" = { ··· 22101 22191 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; 22102 22192 }; 22103 22193 }; 22104 - "punycode-2.1.0" = { 22194 + "punycode-2.1.1" = { 22105 22195 name = "punycode"; 22106 22196 packageName = "punycode"; 22107 - version = "2.1.0"; 22108 - src = fetchurl { 22109 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz"; 22110 - sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d"; 22111 - }; 22112 - }; 22113 - "q-0.9.7" = { 22114 - name = "q"; 22115 - packageName = "q"; 22116 - version = "0.9.7"; 22197 + version = "2.1.1"; 22117 22198 src = fetchurl { 22118 - url = "https://registry.npmjs.org/q/-/q-0.9.7.tgz"; 22119 - sha1 = "4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75"; 22199 + url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 22200 + sha512 = "381vqgh5xkqzrr6cxbzfykgnnk83m7qgpx3wjwj1hddn3sg2aibjxyr30rajpgv4js0cqknrbzwbfk5ryhiiyigzfjrk3zysy6i26sx"; 22120 22201 }; 22121 22202 }; 22122 22203 "q-1.0.1" = { ··· 22398 22479 sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2"; 22399 22480 }; 22400 22481 }; 22482 + "random-access-memory-3.0.0" = { 22483 + name = "random-access-memory"; 22484 + packageName = "random-access-memory"; 22485 + version = "3.0.0"; 22486 + src = fetchurl { 22487 + url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz"; 22488 + sha512 = "160skc30mby806rmlwilb56h0r5bcc3sf2dr980k4a93c3bhnlnjcfiqbx1k5sjljqiygs6sn014gpgilzhhx9c1vdcyfhkz45pkxrv"; 22489 + }; 22490 + }; 22401 22491 "random-access-storage-1.2.0" = { 22402 22492 name = "random-access-storage"; 22403 22493 packageName = "random-access-storage"; ··· 22488 22578 sha1 = "01ba954276052b783900e63d6118d8fcf3875d7f"; 22489 22579 }; 22490 22580 }; 22491 - "raven-2.4.2" = { 22581 + "raven-2.6.2" = { 22492 22582 name = "raven"; 22493 22583 packageName = "raven"; 22494 - version = "2.4.2"; 22584 + version = "2.6.2"; 22495 22585 src = fetchurl { 22496 - url = "https://registry.npmjs.org/raven/-/raven-2.4.2.tgz"; 22497 - sha1 = "0129e2adc30788646fd530b67d08a8ce25d4f6dc"; 22586 + url = "https://registry.npmjs.org/raven/-/raven-2.6.2.tgz"; 22587 + sha1 = "c92f30890e2dfcd15258d184e43e39326e58032e"; 22498 22588 }; 22499 22589 }; 22500 22590 "raw-body-0.0.3" = { ··· 22551 22641 sha512 = "27ygzjzpajjmz2bl1f7y1bla7wdw65w912r4i29x9p1r0pa5jivip658vwlkqq77n1nc619w1p52818mvihxhks4dlbc1pmbc925szm"; 22552 22642 }; 22553 22643 }; 22554 - "raw-socket-1.6.0" = { 22644 + "raw-socket-1.6.1" = { 22555 22645 name = "raw-socket"; 22556 22646 packageName = "raw-socket"; 22557 - version = "1.6.0"; 22647 + version = "1.6.1"; 22558 22648 src = fetchurl { 22559 - url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.6.0.tgz"; 22560 - sha512 = "2268lfw8q4mz0v988by3y0hbad848sx7kmmqm3rk7nbj7xc3sy045adcdbnh3c8vrhk57ljk61wshphgr69y8pw3987f1if369ny7pr"; 22649 + url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.6.1.tgz"; 22650 + sha512 = "0fhy1r7pyl4v2zmjz1fmvqbdmjscib47pbc5di3cn965j7zj3y5h2bs8x0r131i4s7xj47c36na1cgpppp71kvdc1qs78y4bf7fpa45"; 22561 22651 }; 22562 22652 }; 22563 22653 "rc-0.4.0" = { ··· 22569 22659 sha1 = "ce24a2029ad94c3a40d09604a87227027d7210d3"; 22570 22660 }; 22571 22661 }; 22572 - "rc-1.2.7" = { 22662 + "rc-1.2.8" = { 22573 22663 name = "rc"; 22574 22664 packageName = "rc"; 22575 - version = "1.2.7"; 22665 + version = "1.2.8"; 22576 22666 src = fetchurl { 22577 - url = "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz"; 22578 - sha512 = "30b4pqzhk8f4ppzyk5diwxac7xpf4hd3rysyin012l59da9v5iaai4wd6yzlz3rjspfvvy191q6qcsw47mwlw9y07n35kzq23rw7lid"; 22667 + url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; 22668 + sha512 = "0xhy1n9n3y6cp28f8f0f2mi0xzc7ay1g5nhbp64fyvcwv9q30zq2zvyc5q2d0al8aa0hx101yq2y6d2ln4r5jxnqifh1pd3la1ccxnb"; 22579 22669 }; 22580 22670 }; 22581 22671 "rc-config-loader-2.0.1" = { ··· 22803 22893 sha1 = "85204b54dba82d5742e28c96756ef43af50e3384"; 22804 22894 }; 22805 22895 }; 22806 - "record-cache-1.0.2" = { 22896 + "record-cache-1.1.0" = { 22807 22897 name = "record-cache"; 22808 22898 packageName = "record-cache"; 22809 - version = "1.0.2"; 22899 + version = "1.1.0"; 22810 22900 src = fetchurl { 22811 - url = "https://registry.npmjs.org/record-cache/-/record-cache-1.0.2.tgz"; 22812 - sha512 = "2iykkjgwmmcma3306cjzsq34dg6rxfvwr4r11fyq56dfsybp9qwnvhc4fbi3l854zfj71fbw887bgab78ykr6b3m9gdw2lpf5sa53c0"; 22901 + url = "https://registry.npmjs.org/record-cache/-/record-cache-1.1.0.tgz"; 22902 + sha512 = "3shd2b83m3bh5bcli5zl99k652hv5b06ldcnjv48gwarfxh02smyy2vr1z3z2zi9p9zgp41bhsgql042a66azy9d78v2mq9n6sdpjmv"; 22813 22903 }; 22814 22904 }; 22815 22905 "recursive-readdir-2.2.2" = { ··· 23253 23343 sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0"; 23254 23344 }; 23255 23345 }; 23346 + "request-2.83.0" = { 23347 + name = "request"; 23348 + packageName = "request"; 23349 + version = "2.83.0"; 23350 + src = fetchurl { 23351 + url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz"; 23352 + sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm"; 23353 + }; 23354 + }; 23256 23355 "request-2.85.0" = { 23257 23356 name = "request"; 23258 23357 packageName = "request"; ··· 23262 23361 sha512 = "2d3hg10zs5ycnr8prmiwdhacf88fl0x0bi6szs0z2r07zcbk419laixwpjp8sqapbc2ifyyih7p3r60wgr58bmcncz3pqnx523c8zph"; 23263 23362 }; 23264 23363 }; 23265 - "request-2.86.0" = { 23364 + "request-2.87.0" = { 23266 23365 name = "request"; 23267 23366 packageName = "request"; 23268 - version = "2.86.0"; 23367 + version = "2.87.0"; 23269 23368 src = fetchurl { 23270 - url = "https://registry.npmjs.org/request/-/request-2.86.0.tgz"; 23271 - sha512 = "37xa5i4dk3fkcl9gxrzxkjjy6vcqn6bcc61bwq6kjpqrg5i01yc6xn0iq3zy68vqqav93k1kgr2xdabp22p0bfynfcbzxp8ms3n41h5"; 23369 + url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz"; 23370 + sha512 = "0vnsbflzj7gxa33r47bzsiaf7jc00b9iqkqdz8l7n9x5dgdgbq1qpcqqslds1arazipz8pjr4m5rf4ikg4d59d49gn9dky0ds921jkx"; 23272 23371 }; 23273 23372 }; 23274 23373 "request-2.9.203" = { ··· 23757 23856 sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; 23758 23857 }; 23759 23858 }; 23760 - "rxjs-5.5.10" = { 23859 + "rxjs-5.5.11" = { 23860 + name = "rxjs"; 23861 + packageName = "rxjs"; 23862 + version = "5.5.11"; 23863 + src = fetchurl { 23864 + url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz"; 23865 + sha512 = "029r8qw66ax8g757mxnmvzr302rv7b2lw33sqv7b81qnbkms9qz0biijvpm2bv3fd3zpydal11iygnf061w2rmray10sz0n9knwxf6x"; 23866 + }; 23867 + }; 23868 + "rxjs-6.2.0" = { 23761 23869 name = "rxjs"; 23762 23870 packageName = "rxjs"; 23763 - version = "5.5.10"; 23871 + version = "6.2.0"; 23764 23872 src = fetchurl { 23765 - url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.10.tgz"; 23766 - sha512 = "3lc28jznaclc3qcipvf29dnfa11m4xdzyr4gkas29pgp0s4c44f8cyzsxyfwkqzqa8k06q7j7hl5wwyy671d8gdkwl9j76lh2cf4629"; 23873 + url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.0.tgz"; 23874 + sha512 = "01sy4p9dqb8xiv59c5dn2lwza4jm6dv1hsy9v4ifj60kwh1l8iqar17lvgxmhjpqjaqgqkrx6kx0kv7l121704v16if4y5sxgkdy758"; 23767 23875 }; 23768 23876 }; 23769 23877 "safe-buffer-5.0.1" = { ··· 23802 23910 sha1 = "3e76723e38dfdda13c9b1d29a1e07ffee4b30b57"; 23803 23911 }; 23804 23912 }; 23805 - "safe-json-stringify-1.1.0" = { 23913 + "safe-json-stringify-1.2.0" = { 23806 23914 name = "safe-json-stringify"; 23807 23915 packageName = "safe-json-stringify"; 23808 - version = "1.1.0"; 23916 + version = "1.2.0"; 23809 23917 src = fetchurl { 23810 - url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.1.0.tgz"; 23811 - sha512 = "30fqwpa7qn9rsk4va9ih61jqhm0x59s3wa2n5kff1ygdwpi9hxmpig24y1vhdv1di2pfd6gy0iwkryix6lc5gff7pcb3xa7l58nsc0k"; 23918 + url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz"; 23919 + sha512 = "2z2n4cbf392dw9gbghn8paj8jsqkijbkpb6gf8z2nm4kdkzqwjjb7szpadczbcxbd5i035g2dha2yy6vgmv9wm47g8d7ffrd63iwzw0"; 23812 23920 }; 23813 23921 }; 23814 23922 "safe-regex-1.1.0" = { ··· 24189 24297 sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0"; 24190 24298 }; 24191 24299 }; 24300 + "serve-handler-3.1.0" = { 24301 + name = "serve-handler"; 24302 + packageName = "serve-handler"; 24303 + version = "3.1.0"; 24304 + src = fetchurl { 24305 + url = "https://registry.npmjs.org/serve-handler/-/serve-handler-3.1.0.tgz"; 24306 + sha512 = "2aha60igym9agandgfm7r4wy0g4ql85bs904k1556hdw098s3akj72c8mwb3ws5ldsy3ac5iw79f0ryjk3cac0fg2n3n9jhjy11mnh9"; 24307 + }; 24308 + }; 24192 24309 "serve-index-1.7.3" = { 24193 24310 name = "serve-index"; 24194 24311 packageName = "serve-index"; ··· 24423 24540 sha512 = "0c12wlk7s62rnm6d8cc4frddll01p5f117v2ss075y9zxxfpl5qr322bw7qdksgl7ljfc04rv2wyn6qyjv1m5953ywmgk39srif43v0"; 24424 24541 }; 24425 24542 }; 24543 + "shelljs-0.8.2" = { 24544 + name = "shelljs"; 24545 + packageName = "shelljs"; 24546 + version = "0.8.2"; 24547 + src = fetchurl { 24548 + url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz"; 24549 + sha512 = "1nj08kpx8435xrk1w1jk0g6mlcfd3jim2px55dmpg97rnjd2md5fzhrqw0wpk54ipfaclrhkly2z51dg6xbq8fwi9yngnc0n0vdw5d5"; 24550 + }; 24551 + }; 24426 24552 "shellwords-0.1.1" = { 24427 24553 name = "shellwords"; 24428 24554 packageName = "shellwords"; ··· 24450 24576 sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590"; 24451 24577 }; 24452 24578 }; 24453 - "sign-addon-0.3.0" = { 24579 + "sign-addon-0.3.1" = { 24454 24580 name = "sign-addon"; 24455 24581 packageName = "sign-addon"; 24456 - version = "0.3.0"; 24582 + version = "0.3.1"; 24457 24583 src = fetchurl { 24458 - url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.0.tgz"; 24459 - sha512 = "2czjlarf0pa0svlhbdb9i6hrk429za0gsialmxbmgwgbhyjx7mxkgf5mww4rkmsbncdi2va8p64rxjxf7gv8b0jd2a87cvm7rw5pky5"; 24584 + url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.1.tgz"; 24585 + sha512 = "3a5wipkwz1q19jlw99bsrjinimlb6a21c4sihrk1aqx0pdkclskjmayby3j1xwx1l0ngba0asar542d2pgi33i99gypl8dwpwdsirkx"; 24460 24586 }; 24461 24587 }; 24462 24588 "signal-exit-3.0.2" = { ··· 24522 24648 sha512 = "021na7dsxyawdzbif9l56dzgvzdd5s4kwm09rb8hg3abvr94i05arvn0z6q5vmpi24bmnnp2i677rf7964fza0frx3zx406a82x6kbm"; 24523 24649 }; 24524 24650 }; 24525 - "simple-git-1.92.0" = { 24651 + "simple-git-1.95.1" = { 24526 24652 name = "simple-git"; 24527 24653 packageName = "simple-git"; 24528 - version = "1.92.0"; 24654 + version = "1.95.1"; 24529 24655 src = fetchurl { 24530 - url = "https://registry.npmjs.org/simple-git/-/simple-git-1.92.0.tgz"; 24531 - sha1 = "6061468eb7d19f0141078fc742e62457e910f547"; 24656 + url = "https://registry.npmjs.org/simple-git/-/simple-git-1.95.1.tgz"; 24657 + sha512 = "3ssfxzdgj6ycrklss1hxrmwcfsncx9bccnsxrkdknw68p2g9is3j3dc2kk748jn0kky9q7ajdjqvv6k18n6qbj9llaiy5kh9k1i7mbj"; 24532 24658 }; 24533 24659 }; 24534 24660 "simple-lru-cache-0.0.2" = { ··· 24549 24675 sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3"; 24550 24676 }; 24551 24677 }; 24552 - "simple-peer-9.1.1" = { 24678 + "simple-peer-9.1.2" = { 24553 24679 name = "simple-peer"; 24554 24680 packageName = "simple-peer"; 24555 - version = "9.1.1"; 24681 + version = "9.1.2"; 24556 24682 src = fetchurl { 24557 - url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.1.tgz"; 24558 - sha512 = "27d9j7ah5ync1cndpinw966zb81lc9z6pc38y8dkc1l5rxdkv3fmf5ilhf0jq94m3qvb2ipldjmvbs1sza5ccvazwlr4pjgfr07ym23"; 24683 + url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.2.tgz"; 24684 + sha512 = "3csdx7k87pxpga7kmqdwl6fxyrj0q2kfv4174qcp5nkiyr19458p45jmvr3rss656ldas23p8jd1hyp22bf51x3934cprb8isg9ci9i"; 24559 24685 }; 24560 24686 }; 24561 24687 "simple-plist-0.2.1" = { ··· 24648 24774 sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9"; 24649 24775 }; 24650 24776 }; 24651 - "siphash24-1.1.0" = { 24777 + "siphash24-1.1.1" = { 24652 24778 name = "siphash24"; 24653 24779 packageName = "siphash24"; 24654 - version = "1.1.0"; 24780 + version = "1.1.1"; 24655 24781 src = fetchurl { 24656 - url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz"; 24657 - sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w"; 24782 + url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz"; 24783 + sha512 = "1ach37ibirvd6yxa42ffkn1dwfcar70pjbnj9alrf713n1bdzb4y44nbrm5bi3swpvqrr7f8sbbcyj586wn049hxmyawf8kia6b18kl"; 24658 24784 }; 24659 24785 }; 24660 24786 "skin-tone-1.0.0" = { ··· 24855 24981 sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l"; 24856 24982 }; 24857 24983 }; 24858 - "snyk-1.80.1" = { 24984 + "snyk-1.82.1" = { 24859 24985 name = "snyk"; 24860 24986 packageName = "snyk"; 24861 - version = "1.80.1"; 24987 + version = "1.82.1"; 24862 24988 src = fetchurl { 24863 - url = "https://registry.npmjs.org/snyk/-/snyk-1.80.1.tgz"; 24864 - sha1 = "f92d1fea82833a39a607598f847e2699f033be5c"; 24989 + url = "https://registry.npmjs.org/snyk/-/snyk-1.82.1.tgz"; 24990 + sha1 = "df0abf9d398507b512e2749790da67e56c3a853e"; 24865 24991 }; 24866 24992 }; 24867 24993 "snyk-config-2.1.0" = { ··· 24873 24999 sha512 = "0r81kdx8az7nfiv0r36ggarzdw5rzai06qivv1r48xdfax2gdz9axxjhnwyzhf3mpz6245fz2ilc8l349h85s01yh05rxjsjvbg6m8g"; 24874 25000 }; 24875 25001 }; 24876 - "snyk-go-plugin-1.5.0" = { 25002 + "snyk-go-plugin-1.5.1" = { 24877 25003 name = "snyk-go-plugin"; 24878 25004 packageName = "snyk-go-plugin"; 24879 - version = "1.5.0"; 25005 + version = "1.5.1"; 24880 25006 src = fetchurl { 24881 - url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.0.tgz"; 24882 - sha512 = "20i967dg1n1pir2j0ivpd72i5j3y9xa3826jvl8jspmg9wfnpfq6x0isp3irw42zrcvflshi0nhk3sckcj3lqgjaw82g14wda28g80z"; 25007 + url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.1.tgz"; 25008 + sha512 = "1zmpzigws5iqn3zfv0800m0hnlxf43vbwgi3220mafnij8g8narf0dlaywdbacvhbv1l0mmaj78l3pwkdg5slpiwl5zarrr7lwwkqzh"; 24883 25009 }; 24884 25010 }; 24885 25011 "snyk-gradle-plugin-1.3.0" = { ··· 24936 25062 sha512 = "3pmnx9hjrlz0gpxy6b2gia65h1rpdalc1g68s759p0ik0xq5rgi8hm3cqnvicg24cgqm8qwdsf5v7bcfxcj3m6yi7rc2wgkf0vahj08"; 24937 25063 }; 24938 25064 }; 24939 - "snyk-python-plugin-1.6.0" = { 25065 + "snyk-python-plugin-1.6.1" = { 24940 25066 name = "snyk-python-plugin"; 24941 25067 packageName = "snyk-python-plugin"; 24942 - version = "1.6.0"; 25068 + version = "1.6.1"; 24943 25069 src = fetchurl { 24944 - url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.6.0.tgz"; 24945 - sha512 = "06n8zx8az0afp7b2gnav664hzmjxg5dp96a5vmy5a58dhr278x6fl7pgsd332ykxanphrm59dsm0hyka2s8wibam2v8wjbgm4xxrlzz"; 25070 + url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.6.1.tgz"; 25071 + sha512 = "3z8rghcn45p0mmj39ivns6arnnqshmxrqbcrmdccawnffkw9jrnrsk6w64jqk524c1iw770hj5fd8zrcfbncccl67qgd9vp026gjfpb"; 24946 25072 }; 24947 25073 }; 24948 25074 "snyk-resolve-1.0.1" = { ··· 25026 25152 sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014"; 25027 25153 }; 25028 25154 }; 25029 - "socket.io-2.1.0" = { 25155 + "socket.io-2.1.1" = { 25030 25156 name = "socket.io"; 25031 25157 packageName = "socket.io"; 25032 - version = "2.1.0"; 25158 + version = "2.1.1"; 25033 25159 src = fetchurl { 25034 - url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz"; 25035 - sha512 = "2wkm6yqxvn8wk51rbakza3zxg3rknzfgmwqrbzvnlacf1yylplsr61i67m01sg8x7589ymj6x3z266ngvqd6qyyakdx4dlnsl4bfbr9"; 25160 + url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz"; 25161 + sha512 = "343q0n5zxyjzzcmyq7dr3naqbrpl3x469y1ff8zxxr104np1l5l9w1d0vl7nncbaxhxymwplbzfy9sbipjrbp5d001nvv9ysymnmr5c"; 25036 25162 }; 25037 25163 }; 25038 25164 "socket.io-adapter-0.2.0" = { ··· 25098 25224 sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e"; 25099 25225 }; 25100 25226 }; 25101 - "socket.io-client-2.1.0" = { 25227 + "socket.io-client-2.1.1" = { 25102 25228 name = "socket.io-client"; 25103 25229 packageName = "socket.io-client"; 25104 - version = "2.1.0"; 25230 + version = "2.1.1"; 25105 25231 src = fetchurl { 25106 - url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.0.tgz"; 25107 - sha512 = "1xkd66603gshd7s080j107ms405z18mljc7gbmnkllph1zfg82sz5mgvsyhi1zs3bbv5lgvv29gxfn624gpv46v5mwy610wpnj8zwjf"; 25232 + url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz"; 25233 + sha512 = "0cz212gqzp9irm3pk6inzssq4skpihd5i0xszrwv1j27igvqdwvnrimk8ah6px53j77yjhhw5q96fl74pj7c852iqgic5rf235ca6cg"; 25108 25234 }; 25109 25235 }; 25110 25236 "socket.io-parser-2.1.2" = { ··· 25251 25377 sha1 = "0df42a679d7ae4aed9c30ba2f55807d979910fcc"; 25252 25378 }; 25253 25379 }; 25254 - "sorted-array-functions-1.1.0" = { 25380 + "sorted-array-functions-1.2.0" = { 25255 25381 name = "sorted-array-functions"; 25256 25382 packageName = "sorted-array-functions"; 25257 - version = "1.1.0"; 25383 + version = "1.2.0"; 25258 25384 src = fetchurl { 25259 - url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.1.0.tgz"; 25260 - sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf"; 25385 + url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz"; 25386 + sha512 = "1759vgxawg63w16nnrklz5azzj9kklrlz5sdd643y8jp8qz7hiwdn5ydlnwx2ns4j761x4rqllh6fvlzjqgi3dixy7dl9hr28z66smi"; 25261 25387 }; 25262 25388 }; 25263 25389 "sorted-indexof-1.0.0" = { ··· 25395 25521 sha512 = "3xy2ylp2qm8jwglcsf2fjwvn5w56im64w7yjghyv9ilw2fc5qj65w8h38lpls27m3b5prv8x9cnfmrhkfk7rlb52hmf810ycs0i7abq"; 25396 25522 }; 25397 25523 }; 25398 - "source-map-support-0.5.4" = { 25524 + "source-map-support-0.5.6" = { 25399 25525 name = "source-map-support"; 25400 25526 packageName = "source-map-support"; 25401 - version = "0.5.4"; 25527 + version = "0.5.6"; 25402 25528 src = fetchurl { 25403 - url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.4.tgz"; 25404 - sha512 = "1vfdnbvldylljhm89hfxwsr3pd108my5z1l9gx8ld1j2v2bfpranqc7kc8i9mj24lbq6c4xxs181anrsa5ypbfd3r08v3c1dqyd4i1w"; 25529 + url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz"; 25530 + sha512 = "3x2mxqlzmqrwgf52cfc1pspxkzfwzasapfbrgcl50akjzpn8xva5nwm6xp8z1l3f2acnr5rsp7hhm6nfn8vvxk6gy7slw737q9rg0ip"; 25405 25531 }; 25406 25532 }; 25407 25533 "source-map-url-0.4.0" = { ··· 25593 25719 sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 25594 25720 }; 25595 25721 }; 25722 + "sprintf-js-1.1.1" = { 25723 + name = "sprintf-js"; 25724 + packageName = "sprintf-js"; 25725 + version = "1.1.1"; 25726 + src = fetchurl { 25727 + url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz"; 25728 + sha1 = "36be78320afe5801f6cea3ee78b6e5aab940ea0c"; 25729 + }; 25730 + }; 25596 25731 "srcset-1.0.0" = { 25597 25732 name = "srcset"; 25598 25733 packageName = "srcset"; ··· 25629 25764 sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4"; 25630 25765 }; 25631 25766 }; 25632 - "sshpk-1.14.1" = { 25767 + "sshpk-1.14.2" = { 25633 25768 name = "sshpk"; 25634 25769 packageName = "sshpk"; 25635 - version = "1.14.1"; 25770 + version = "1.14.2"; 25636 25771 src = fetchurl { 25637 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz"; 25638 - sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb"; 25772 + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz"; 25773 + sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98"; 25639 25774 }; 25640 25775 }; 25641 25776 "sshpk-1.7.1" = { ··· 25681 25816 src = fetchurl { 25682 25817 url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz"; 25683 25818 sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0"; 25684 - }; 25685 - }; 25686 - "stack-trace-0.0.9" = { 25687 - name = "stack-trace"; 25688 - packageName = "stack-trace"; 25689 - version = "0.0.9"; 25690 - src = fetchurl { 25691 - url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz"; 25692 - sha1 = "a8f6eaeca90674c333e7c43953f275b451510695"; 25693 25819 }; 25694 25820 }; 25695 25821 "stat-mode-0.2.2" = { ··· 25845 25971 sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr"; 25846 25972 }; 25847 25973 }; 25848 - "stream-http-2.8.2" = { 25974 + "stream-http-2.8.3" = { 25849 25975 name = "stream-http"; 25850 25976 packageName = "stream-http"; 25851 - version = "2.8.2"; 25977 + version = "2.8.3"; 25852 25978 src = fetchurl { 25853 - url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.2.tgz"; 25854 - sha512 = "2acp8k8lfjmh87zlzmx7ah9wwxsbjdff6mmms6c24kkrjqvgh0iv6mzbaakmspnx8kc9ysw3ba378xkjc95nfiyfg7m05va32n5yna2"; 25979 + url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz"; 25980 + sha512 = "19y2xbs1xzzpjwfdczl21d0d76ahd7013cr3mhfa6a8nbwwv9jpncng8idf0g8hnmnq2mcl3xh912rjlasl06wsz44qw3j7hdya8d7r"; 25855 25981 }; 25856 25982 }; 25857 25983 "stream-parser-0.3.1" = { ··· 26241 26367 sha1 = "1cb45aaf57530f4caf86c7f75179d2c9a51dd572"; 26242 26368 }; 26243 26369 }; 26244 - "strip-bom-stream-1.0.0" = { 26245 - name = "strip-bom-stream"; 26246 - packageName = "strip-bom-stream"; 26247 - version = "1.0.0"; 26248 - src = fetchurl { 26249 - url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz"; 26250 - sha1 = "e7144398577d51a6bed0fa1994fa05f43fd988ee"; 26251 - }; 26252 - }; 26253 26370 "strip-bom-stream-2.0.0" = { 26254 26371 name = "strip-bom-stream"; 26255 26372 packageName = "strip-bom-stream"; ··· 26349 26466 sha512 = "31a8vlzg4gwak3cx7n0lask77xyqpf5mz4ckphc10ykmb9r2lais7v4w8a8xij9lv2115xjnl7avkwp2l7cw3kbc3lpjsghl72757lk"; 26350 26467 }; 26351 26468 }; 26352 - "strong-data-uri-1.0.5" = { 26469 + "strong-data-uri-1.0.6" = { 26353 26470 name = "strong-data-uri"; 26354 26471 packageName = "strong-data-uri"; 26355 - version = "1.0.5"; 26472 + version = "1.0.6"; 26356 26473 src = fetchurl { 26357 - url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.5.tgz"; 26358 - sha512 = "2mwdm0k873sdi2bramixwg6fafqyi2313scq32fsnq2qa5hqbpdln34rc9a67wd15mi05v3c6bfiw6r4h7dy4aac1q3ac8b2ig6j96n"; 26474 + url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.6.tgz"; 26475 + sha512 = "37yd0qnzaq13fz3972b3fckz0hcpq2xxhjbz769vl8fb35sd3ycr5qs181d5in9cq08qlf59c9xl5sylyvplm5i4bv19fplxdjw276f"; 26359 26476 }; 26360 26477 }; 26361 26478 "strong-log-transformer-1.0.6" = { ··· 26466 26583 sha512 = "158ng0v99ac7csif7v6153bp63nxmlz2a613z8y09sk8jsj2rpalscgg0lfzdlpfdd5612jqsnkvrz0137inka2qjcmcjrmy2xhrkaf"; 26467 26584 }; 26468 26585 }; 26469 - "supports-color-4.4.0" = { 26586 + "supports-color-5.1.0" = { 26470 26587 name = "supports-color"; 26471 26588 packageName = "supports-color"; 26472 - version = "4.4.0"; 26589 + version = "5.1.0"; 26473 26590 src = fetchurl { 26474 - url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz"; 26475 - sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c"; 26591 + url = "https://registry.npmjs.org/supports-color/-/supports-color-5.1.0.tgz"; 26592 + sha512 = "04q31rfgx0r6jgs2r1k6kmzab1vw3qrikiv8wsl86rxll77vdalrag7r4ypww3qp6v8k3avsjc0jxd3ga45fb5f51akm30a9b100ba7"; 26476 26593 }; 26477 26594 }; 26478 26595 "supports-color-5.4.0" = { ··· 26491 26608 src = fetchurl { 26492 26609 url = "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.0.1.tgz"; 26493 26610 sha1 = "8340fc4702c3122df5d22288f88283f513d3fdd4"; 26611 + }; 26612 + }; 26613 + "symbol-tree-3.2.2" = { 26614 + name = "symbol-tree"; 26615 + packageName = "symbol-tree"; 26616 + version = "3.2.2"; 26617 + src = fetchurl { 26618 + url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz"; 26619 + sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6"; 26494 26620 }; 26495 26621 }; 26496 26622 "sync-request-3.0.0" = { ··· 26620 26746 sha512 = "1ryql8hyrrhd0gdd71ishbj3cnr8ay0i0wpvy9mj3hjiy35cc1wa0h07wz8jwils98j00gr03ix3cf2j1xm43xjn9bsavwn1yr4a0x5"; 26621 26747 }; 26622 26748 }; 26623 - "tar-4.4.2" = { 26749 + "tar-4.4.4" = { 26624 26750 name = "tar"; 26625 26751 packageName = "tar"; 26626 - version = "4.4.2"; 26752 + version = "4.4.4"; 26627 26753 src = fetchurl { 26628 - url = "https://registry.npmjs.org/tar/-/tar-4.4.2.tgz"; 26629 - sha512 = "25ypdsz6l4xmg1f89pjy8s773j3lzx855iiakbdknz115vxyg4p4z1j0i84iyjpzwgfjfs2l2njpd0y2hlr5sh4n01nh6124zs09y85"; 26754 + url = "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz"; 26755 + sha512 = "3iy3r78nycp0ly9nldcygkklrc7jas93k4bis6ypiw5fqlsygqyylgwl1378qf61r1yh2lsd11vrjr8hwfzw4j25d95yd0zhv265bws"; 26630 26756 }; 26631 26757 }; 26632 26758 "tar-fs-1.16.2" = { ··· 27061 27187 sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d"; 27062 27188 }; 27063 27189 }; 27064 - "to-absolute-glob-0.1.1" = { 27065 - name = "to-absolute-glob"; 27066 - packageName = "to-absolute-glob"; 27067 - version = "0.1.1"; 27068 - src = fetchurl { 27069 - url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz"; 27070 - sha1 = "1cdfa472a9ef50c239ee66999b662ca0eb39937f"; 27071 - }; 27072 - }; 27073 27190 "to-absolute-glob-2.0.2" = { 27074 27191 name = "to-absolute-glob"; 27075 27192 packageName = "to-absolute-glob"; ··· 27196 27313 sha512 = "16a6xk2s4y4llqya2gjgwzlvb0512sw8ahxfd4b225j2sd9i52zca1w65d69wd7frzhcz2ak3gf3r3y9ws727b5gnp1n7wh2j3gkciv"; 27197 27314 }; 27198 27315 }; 27199 - "topo-1.1.0" = { 27200 - name = "topo"; 27201 - packageName = "topo"; 27202 - version = "1.1.0"; 27203 - src = fetchurl { 27204 - url = "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz"; 27205 - sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5"; 27206 - }; 27207 - }; 27208 27316 "torrent-discovery-5.4.0" = { 27209 27317 name = "torrent-discovery"; 27210 27318 packageName = "torrent-discovery"; ··· 27295 27403 sha512 = "0ncm6j3cjq1f26mzjf04k9bkw1b08w53s4qa3a11c1bdj4pgnqv1422c1xs5jyy6y1psppjx52fhagq5zkjkgrcpdkxcdiry96r77jd"; 27296 27404 }; 27297 27405 }; 27406 + "tough-cookie-2.4.2" = { 27407 + name = "tough-cookie"; 27408 + packageName = "tough-cookie"; 27409 + version = "2.4.2"; 27410 + src = fetchurl { 27411 + url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.2.tgz"; 27412 + sha512 = "3misq0zgh4jfhiq1yy0zasmg3zrjk1g3a4hjh7ixj9wcfyjqfw1x2h2265s9013ah2az6mx60wp8np5677pkqkwip55yj95gzwnda5x"; 27413 + }; 27414 + }; 27298 27415 "township-client-1.3.2" = { 27299 27416 name = "township-client"; 27300 27417 packageName = "township-client"; ··· 27304 27421 sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78"; 27305 27422 }; 27306 27423 }; 27424 + "toxic-1.0.0" = { 27425 + name = "toxic"; 27426 + packageName = "toxic"; 27427 + version = "1.0.0"; 27428 + src = fetchurl { 27429 + url = "https://registry.npmjs.org/toxic/-/toxic-1.0.0.tgz"; 27430 + sha1 = "f1154d8b6ac21875ac943a9f7408df2dfe164ea2"; 27431 + }; 27432 + }; 27433 + "tr46-0.0.3" = { 27434 + name = "tr46"; 27435 + packageName = "tr46"; 27436 + version = "0.0.3"; 27437 + src = fetchurl { 27438 + url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz"; 27439 + sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a"; 27440 + }; 27441 + }; 27307 27442 "tr46-1.0.1" = { 27308 27443 name = "tr46"; 27309 27444 packageName = "tr46"; ··· 27439 27574 sha1 = "dd1a6d15630515663d8475f6f24edf2f800ebb1b"; 27440 27575 }; 27441 27576 }; 27442 - "tslib-1.9.1" = { 27577 + "tslib-1.9.2" = { 27443 27578 name = "tslib"; 27444 27579 packageName = "tslib"; 27445 - version = "1.9.1"; 27580 + version = "1.9.2"; 27446 27581 src = fetchurl { 27447 - url = "https://registry.npmjs.org/tslib/-/tslib-1.9.1.tgz"; 27448 - sha512 = "115mr4g9y5y6k797nyyxwca0rhx5ax7bqdf3i3kw14dh5n64h27f3v3pnc0asccwllfdyq7azc2lhnq3ibplf3afg5n5607dx5wzxva"; 27582 + url = "https://registry.npmjs.org/tslib/-/tslib-1.9.2.tgz"; 27583 + sha512 = "0ms6i864mv97lfwlmnzpbf6f539kqcsnj8qbyj12h46r0zszxpk8gsfchs5s7spfwpnapfmbaakx8xiqg0v4rxqmz22nnkpi5ggjlq1"; 27449 27584 }; 27450 27585 }; 27451 27586 "tsscmp-1.0.5" = { ··· 27644 27779 src = fetchurl { 27645 27780 url = "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz"; 27646 27781 sha512 = "2vwhgmdrdw42wwaqbmrnz7zy197hrxl6smkmhrb3n93vsjmqg24a4r10czdralib6qpj82bx2gw97r3gxlspj7y54jswigs2vj3bf1b"; 27782 + }; 27783 + }; 27784 + "typescript-2.9.1" = { 27785 + name = "typescript"; 27786 + packageName = "typescript"; 27787 + version = "2.9.1"; 27788 + src = fetchurl { 27789 + url = "https://registry.npmjs.org/typescript/-/typescript-2.9.1.tgz"; 27790 + sha512 = "1066hcxz9xdrz1mnyz6kl6ms4szdjxvlz6j37mdp6jlf6vnhmdxx8qyikbzgy7yzvx6i7hvxhg51kc6isw9wpar2r1ch3f6zzclral7"; 27647 27791 }; 27648 27792 }; 27649 27793 "typewise-1.0.3" = { ··· 27754 27898 sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd"; 27755 27899 }; 27756 27900 }; 27757 - "uglify-js-3.3.24" = { 27901 + "uglify-js-3.3.25" = { 27902 + name = "uglify-js"; 27903 + packageName = "uglify-js"; 27904 + version = "3.3.25"; 27905 + src = fetchurl { 27906 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.25.tgz"; 27907 + sha512 = "1qcjjk817lmd65xc8h3axwdnx4h7xkn3k9lf7dy65bm564jhrqvq5v11va9jiamdva9q0nk589i3vm2pn7dvjmjavx5s3d3pj1fi1l6"; 27908 + }; 27909 + }; 27910 + "uglify-js-3.3.28" = { 27758 27911 name = "uglify-js"; 27759 27912 packageName = "uglify-js"; 27760 - version = "3.3.24"; 27913 + version = "3.3.28"; 27761 27914 src = fetchurl { 27762 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.24.tgz"; 27763 - sha512 = "05g7wl6mnfcv2f8qhfh82m743qd8p5hvd99ky9gifcx5zblrbiqcp0qp1jlcayijzr8l9rkf4rfc309kcf2k76097ban8ma716gwbl5"; 27915 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.28.tgz"; 27916 + sha512 = "25lqpkcyapxq7ql7s778zwxm8mn0h2ir7m3nimvfnbs7myrv1aj5c3xgvvv1nbzvxrhs340gxfmqhpmgd7sqlhfd4icqwisl3ymri7b"; 27764 27917 }; 27765 27918 }; 27766 - "uglify-js-3.3.25" = { 27919 + "uglify-js-3.4.0" = { 27767 27920 name = "uglify-js"; 27768 27921 packageName = "uglify-js"; 27769 - version = "3.3.25"; 27922 + version = "3.4.0"; 27770 27923 src = fetchurl { 27771 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.25.tgz"; 27772 - sha512 = "1qcjjk817lmd65xc8h3axwdnx4h7xkn3k9lf7dy65bm564jhrqvq5v11va9jiamdva9q0nk589i3vm2pn7dvjmjavx5s3d3pj1fi1l6"; 27924 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.0.tgz"; 27925 + sha512 = "0jsplc22wvbnzdbcs1adsqcdpkn65ywg5ab8lk4v4ajsh9zhiys0qwf2ylairyj8znh9ml8ppknp94vamzlca947paplpz4lffzkir5"; 27773 27926 }; 27774 27927 }; 27775 27928 "uglify-to-browserify-1.0.2" = { ··· 27979 28132 sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022"; 27980 28133 }; 27981 28134 }; 27982 - "underscore-1.9.0" = { 28135 + "underscore-1.9.1" = { 27983 28136 name = "underscore"; 27984 28137 packageName = "underscore"; 27985 - version = "1.9.0"; 28138 + version = "1.9.1"; 27986 28139 src = fetchurl { 27987 - url = "https://registry.npmjs.org/underscore/-/underscore-1.9.0.tgz"; 27988 - sha512 = "3w8byp6gw4jzam7sl3g72zy9k8qb67jc9h4fhlhd6xj3zn07rnnm812g9jc6ygfxqi4yv54l800ijnl9b8kizf8wc5582xi4h6pb1g0"; 28140 + url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz"; 28141 + sha512 = "1v1j738fqadps32lirl0nxzfhif6db9kslri77cwxq3c12adksibr6ips2zxqywh672d32sxrhfcvx2gwpc4a08hcydfxx4f2v1xzp7"; 27989 28142 }; 27990 28143 }; 27991 28144 "underscore-contrib-0.3.0" = { ··· 28231 28384 sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0"; 28232 28385 }; 28233 28386 }; 28234 - "untildify-3.0.2" = { 28387 + "untildify-3.0.3" = { 28235 28388 name = "untildify"; 28236 28389 packageName = "untildify"; 28237 - version = "3.0.2"; 28390 + version = "3.0.3"; 28238 28391 src = fetchurl { 28239 - url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz"; 28240 - sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1"; 28392 + url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz"; 28393 + sha512 = "0l4awya87dx6bnxaywh0dn50ka8hybj603k75d98vlwj9grqfcmaib9hhjy52nsgm62f39v0nnv4yn268jpjy7n9y7wpbwzqwkkyac9"; 28241 28394 }; 28242 28395 }; 28243 28396 "unyield-0.0.1" = { ··· 28267 28420 sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97"; 28268 28421 }; 28269 28422 }; 28270 - "upath-1.0.4" = { 28423 + "upath-1.0.5" = { 28271 28424 name = "upath"; 28272 28425 packageName = "upath"; 28273 - version = "1.0.4"; 28426 + version = "1.0.5"; 28274 28427 src = fetchurl { 28275 - url = "https://registry.npmjs.org/upath/-/upath-1.0.4.tgz"; 28276 - sha512 = "0xw24ba88hfvwwgniyn17n26av45g1pxqf095231065l4n9dp5w3hyc7azjd8sqyix7pnfx1pmr44fzmwwazkz0ly83cp214g4qk13p"; 28428 + url = "https://registry.npmjs.org/upath/-/upath-1.0.5.tgz"; 28429 + sha512 = "31m1lljcfngdnpyz67gpkwvb66gx6750si3jzmf1vg6kq420fq5lcd34cfgp6wz3manjpqbp9i98ax2yjl2xs7mq824chw38vvsgcm9"; 28277 28430 }; 28278 28431 }; 28279 28432 "upath-1.1.0" = { ··· 28285 28438 sha512 = "2pyjsmaajf6k6ql5qj270l0p3xkjvn25wky2qd1vndvl54ljbv8p8sbr44zsfh33mmrnj93ys4499c3h956wbgn4g82z8b1h3z4ffkg"; 28286 28439 }; 28287 28440 }; 28288 - "update-check-1.5.0" = { 28441 + "update-check-1.5.2" = { 28289 28442 name = "update-check"; 28290 28443 packageName = "update-check"; 28291 - version = "1.5.0"; 28444 + version = "1.5.2"; 28292 28445 src = fetchurl { 28293 - url = "https://registry.npmjs.org/update-check/-/update-check-1.5.0.tgz"; 28294 - sha512 = "3prydk2hhjbg29waf3dvx4097qs7vx5xfp4ibl8ic8nwr01vkd2nwz5lzj1ga02hfyz6cpzcwv3h1q18fxdz6w6z542hwnkjrky2b3d"; 28446 + url = "https://registry.npmjs.org/update-check/-/update-check-1.5.2.tgz"; 28447 + sha512 = "1lq6181kzdp7xwzay0j8yjy771q89wi18b9cc1wx4l97k1z7gpyv03l3sx7ag2hrdsk6537fcgwqn3pqnvln57wl9czx3wbpdhfcfnm"; 28295 28448 }; 28296 28449 }; 28297 28450 "update-notifier-0.5.0" = { ··· 28366 28519 sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa"; 28367 28520 }; 28368 28521 }; 28369 - "uri-js-4.2.1" = { 28522 + "uri-js-4.2.2" = { 28370 28523 name = "uri-js"; 28371 28524 packageName = "uri-js"; 28372 - version = "4.2.1"; 28525 + version = "4.2.2"; 28373 28526 src = fetchurl { 28374 - url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.1.tgz"; 28375 - sha512 = "3s1r9yqdqw9bwiyvkq7gd4ylivchfabhk59s1w1wxq6q8gpysw82340fx3hmsmkwzm2cgf2fz48s065q08ca8711k91gc73f41q54lf"; 28527 + url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz"; 28528 + sha512 = "2fz60s71ghl56ddfiiaws81xpiidlbjk69jyjmahz190d2advy9zdbcwh5if4rgg5hxdbfxhkwiipjrnjy8w834bxsmzambd2p4b3r9"; 28376 28529 }; 28377 28530 }; 28378 28531 "urix-0.1.0" = { ··· 28528 28681 sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9"; 28529 28682 }; 28530 28683 }; 28684 + "util-0.10.4" = { 28685 + name = "util"; 28686 + packageName = "util"; 28687 + version = "0.10.4"; 28688 + src = fetchurl { 28689 + url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz"; 28690 + sha512 = "3sbbgsya51i86ih8bn3nfwi3f9556xlnwh32z4k54dwcpi0jibhfa5dpbfmpzyla63yh2zlxs9chl6wkhc8bqjmjxjyxc9p6j2vvyfh"; 28691 + }; 28692 + }; 28531 28693 "util-0.4.9" = { 28532 28694 name = "util"; 28533 28695 packageName = "util"; ··· 28699 28861 sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4"; 28700 28862 }; 28701 28863 }; 28702 - "vali-date-1.0.0" = { 28703 - name = "vali-date"; 28704 - packageName = "vali-date"; 28705 - version = "1.0.0"; 28706 - src = fetchurl { 28707 - url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz"; 28708 - sha1 = "1b904a59609fb328ef078138420934f6b86709a6"; 28709 - }; 28710 - }; 28711 28864 "valid-identifier-0.0.1" = { 28712 28865 name = "valid-identifier"; 28713 28866 packageName = "valid-identifier"; ··· 28735 28888 sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; 28736 28889 }; 28737 28890 }; 28738 - "validator-3.22.2" = { 28891 + "validator-5.2.0" = { 28739 28892 name = "validator"; 28740 28893 packageName = "validator"; 28741 - version = "3.22.2"; 28894 + version = "5.2.0"; 28742 28895 src = fetchurl { 28743 - url = "https://registry.npmjs.org/validator/-/validator-3.22.2.tgz"; 28744 - sha1 = "6f297ae67f7f82acc76d0afdb49f18d9a09c18c0"; 28896 + url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz"; 28897 + sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689"; 28745 28898 }; 28746 28899 }; 28747 - "validator-5.2.0" = { 28900 + "validator-9.4.1" = { 28748 28901 name = "validator"; 28749 28902 packageName = "validator"; 28750 - version = "5.2.0"; 28903 + version = "9.4.1"; 28751 28904 src = fetchurl { 28752 - url = "https://registry.npmjs.org/validator/-/validator-5.2.0.tgz"; 28753 - sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689"; 28905 + url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz"; 28906 + sha512 = "2f2x8zxh7czpkf33h5x8fvj48rfszyhkar554x5c2hw7qlsbdqjqvv6nczzsfkw6z5rj6gqabxhcg8haip0xgz7sn4jr6fi7f7llpk1"; 28754 28907 }; 28755 28908 }; 28756 28909 "value-or-function-3.0.0" = { ··· 28960 29113 sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6"; 28961 29114 }; 28962 29115 }; 28963 - "vinyl-fs-2.4.4" = { 28964 - name = "vinyl-fs"; 28965 - packageName = "vinyl-fs"; 28966 - version = "2.4.4"; 28967 - src = fetchurl { 28968 - url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz"; 28969 - sha1 = "be6ff3270cb55dfd7d3063640de81f25d7532239"; 28970 - }; 28971 - }; 28972 29116 "vinyl-fs-3.0.3" = { 28973 29117 name = "vinyl-fs"; 28974 29118 packageName = "vinyl-fs"; ··· 29131 29275 sha1 = "e48d79962f0b8e02de955e3f524908e2b19c0374"; 29132 29276 }; 29133 29277 }; 29134 - "vscode-languageserver-types-3.7.2" = { 29278 + "vscode-languageserver-types-3.8.1" = { 29135 29279 name = "vscode-languageserver-types"; 29136 29280 packageName = "vscode-languageserver-types"; 29137 - version = "3.7.2"; 29281 + version = "3.8.1"; 29138 29282 src = fetchurl { 29139 - url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.7.2.tgz"; 29140 - sha512 = "3n581a9795k5a0qvbz28rfqjp0dmyjm1rq0djpjvbqrairl7p30d24qpaj3wgfbdc3wx3gjym3b5sdcb6742jr8if12s3cg1x2gdl1g"; 29283 + url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.8.1.tgz"; 29284 + sha512 = "2kmqzghy2829p65vyf6q1q0ia27sdr2vmvny3krqzxqi4m2vbww8aa3yza4zwvpq81dqcncmrgs1phryq20f6dj004n19w12jph3hiv"; 29141 29285 }; 29142 29286 }; 29143 29287 "vscode-uri-1.0.3" = { ··· 29147 29291 src = fetchurl { 29148 29292 url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.3.tgz"; 29149 29293 sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52"; 29294 + }; 29295 + }; 29296 + "vscode-uri-1.0.5" = { 29297 + name = "vscode-uri"; 29298 + packageName = "vscode-uri"; 29299 + version = "1.0.5"; 29300 + src = fetchurl { 29301 + url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.5.tgz"; 29302 + sha1 = "3b899a8ef71c37f3054d79bdbdda31c7bf36f20d"; 29150 29303 }; 29151 29304 }; 29152 29305 "walk-2.3.13" = { ··· 29212 29365 sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb"; 29213 29366 }; 29214 29367 }; 29215 - "webassemblyjs-1.4.3" = { 29216 - name = "webassemblyjs"; 29217 - packageName = "webassemblyjs"; 29218 - version = "1.4.3"; 29368 + "webidl-conversions-2.0.1" = { 29369 + name = "webidl-conversions"; 29370 + packageName = "webidl-conversions"; 29371 + version = "2.0.1"; 29219 29372 src = fetchurl { 29220 - url = "https://registry.npmjs.org/webassemblyjs/-/webassemblyjs-1.4.3.tgz"; 29221 - sha512 = "2786k2y7kvcmjs50g35vaxik7kjr475fdhynq35yi7vayfjd7zkpn6gydh8vqhmx3g8xmr7j2ddwqgk540ij0wr7ks5r8pspga9alz2"; 29373 + url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz"; 29374 + sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506"; 29222 29375 }; 29223 29376 }; 29224 29377 "webidl-conversions-4.0.2" = { ··· 29266 29419 sha512 = "1bq9cabpvsx4b0aajmbhsgkdzh816rrixhbnsmvcr0ypcndhn5zz9fggfc8i4l2s00b6jhif65phkc9l6zvika8ngb21rip9qx4pj4m"; 29267 29420 }; 29268 29421 }; 29269 - "webtorrent-0.99.4" = { 29422 + "webtorrent-0.100.0" = { 29270 29423 name = "webtorrent"; 29271 29424 packageName = "webtorrent"; 29272 - version = "0.99.4"; 29425 + version = "0.100.0"; 29273 29426 src = fetchurl { 29274 - url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.99.4.tgz"; 29275 - sha512 = "1d0rpdlr8flkbipr3qhr59qknfc3mlmz8ka9w6mnkbxhdflwky2l1f3z244xzgis509c8r1qyyjskv99ccrmc10rz93l52f4bb7m0kj"; 29427 + url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.100.0.tgz"; 29428 + sha512 = "05cwyzkhrwrrnb5mwnv8xb2db8p0i0fb6ys01rm22iymgcmx56r6cj4b0yiy3j13k1sin6h36sbvvpmamgl6d2mwriy35mm41yn2wvg"; 29276 29429 }; 29277 29430 }; 29278 29431 "whatwg-fetch-2.0.4" = { ··· 29284 29437 sha512 = "2g4p2ymmww4wm7cf86xwpb0dndwlxk1gg3brsrj892a4z593h25hyhqv0rmv4hzz4zxv3smmaflsnhilakfpr6y8f2gf3sfd8ckbi3m"; 29285 29438 }; 29286 29439 }; 29287 - "whatwg-url-6.3.0" = { 29440 + "whatwg-url-6.4.1" = { 29288 29441 name = "whatwg-url"; 29289 29442 packageName = "whatwg-url"; 29290 - version = "6.3.0"; 29443 + version = "6.4.1"; 29291 29444 src = fetchurl { 29292 - url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.3.0.tgz"; 29293 - sha512 = "01m395qx0wag7d63id97v2d86ifpw677f42lys2k6bipw4n9kmwngghsb7la19impgkrg3n4ihyk3j7963rhfgd7b066a4qk09s3kxc"; 29445 + url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.4.1.tgz"; 29446 + sha512 = "27rkflmrkzbamg28yflyisk49jl2dnvmk4651sn7hhig2rsahxj4c5ld3ljx9mjps0f6zqv0yvwl7d37w817vkmx7qnxiqp3frs030p"; 29447 + }; 29448 + }; 29449 + "whatwg-url-compat-0.6.5" = { 29450 + name = "whatwg-url-compat"; 29451 + packageName = "whatwg-url-compat"; 29452 + version = "0.6.5"; 29453 + src = fetchurl { 29454 + url = "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz"; 29455 + sha1 = "00898111af689bb097541cd5a45ca6c8798445bf"; 29294 29456 }; 29295 29457 }; 29296 29458 "when-3.4.6" = { ··· 29338 29500 sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722"; 29339 29501 }; 29340 29502 }; 29341 - "which-1.3.0" = { 29503 + "which-1.3.1" = { 29342 29504 name = "which"; 29343 29505 packageName = "which"; 29344 - version = "1.3.0"; 29506 + version = "1.3.1"; 29345 29507 src = fetchurl { 29346 - url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz"; 29347 - sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5"; 29508 + url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; 29509 + sha512 = "0hr4hxkk8yb9fz993bs69pf8z2z2qb6sdpxfxb84sd16lja9fsx444pk1ang1ivmjjv5srnsm6fihdj593w7rwxdh834cdmd9hms4hz"; 29348 29510 }; 29349 29511 }; 29350 29512 "which-module-1.0.0" = { ··· 29374 29536 sha1 = "670b3afbc552e0b55df6b7780ca74615f23ad1cb"; 29375 29537 }; 29376 29538 }; 29377 - "wide-align-1.1.2" = { 29539 + "wide-align-1.1.3" = { 29378 29540 name = "wide-align"; 29379 29541 packageName = "wide-align"; 29380 - version = "1.1.2"; 29542 + version = "1.1.3"; 29381 29543 src = fetchurl { 29382 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz"; 29383 - sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a"; 29544 + url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 29545 + sha512 = "2224a32flpf40nhq6rj4idzkcdz0vx65bfxp90hd06db18l6fiqgxz1xnaygm3pbfb1a6v73hl8ryq4996b09zwwins0bqprx0hwsa0"; 29384 29546 }; 29385 29547 }; 29386 29548 "widest-line-2.0.0" = { ··· 29680 29842 sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f"; 29681 29843 }; 29682 29844 }; 29683 - "write-pkg-3.1.0" = { 29845 + "write-pkg-3.2.0" = { 29684 29846 name = "write-pkg"; 29685 29847 packageName = "write-pkg"; 29686 - version = "3.1.0"; 29848 + version = "3.2.0"; 29687 29849 src = fetchurl { 29688 - url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz"; 29689 - sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9"; 29850 + url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.2.0.tgz"; 29851 + sha512 = "1msk3p98r3hzidf6hvbxnljq4l0kx707g3fjd7xpnfrdmm03plhmk8amgpbqlgya3syknzlr0pcvpckixnla8sw2x743a0qkmys4zdm"; 29690 29852 }; 29691 29853 }; 29692 29854 "ws-0.4.31" = { ··· 29743 29905 sha512 = "1ldy8hddsvy7lb045cx4jrnx09962j98zp7y16f64gkw8z99ww61w91mjhrm85bqpsf3b158yhfh6yf01g1a2zrgm6v9bkx87r7ys34"; 29744 29906 }; 29745 29907 }; 29746 - "ws-5.1.1" = { 29908 + "ws-5.2.0" = { 29747 29909 name = "ws"; 29748 29910 packageName = "ws"; 29749 - version = "5.1.1"; 29911 + version = "5.2.0"; 29750 29912 src = fetchurl { 29751 - url = "https://registry.npmjs.org/ws/-/ws-5.1.1.tgz"; 29752 - sha512 = "01whkym8fx8qjmx8s548zzw3ba05x8canb59v5yzidbwxdm7w1kfcfqhzzrxni1r9idqgla5ll5d3kp6fmk1sdn0k7d9lwvj2zarsvc"; 29913 + url = "https://registry.npmjs.org/ws/-/ws-5.2.0.tgz"; 29914 + sha512 = "3pmkb3asbbxiwwa4s5zajisi21girs2bba8pzl2ywwls6pjv3rzmmzckycl6705850jn68akzhm42844wxq9r2w1hfl8g5ywlqispvk"; 29753 29915 }; 29754 29916 }; 29755 29917 "wtf-8-1.0.0" = { ··· 29806 29968 sha1 = "f82d2fedee63af76687b70115ce6274dc71310e9"; 29807 29969 }; 29808 29970 }; 29809 - "xhr-2.4.1" = { 29971 + "xhr-2.5.0" = { 29810 29972 name = "xhr"; 29811 29973 packageName = "xhr"; 29812 - version = "2.4.1"; 29974 + version = "2.5.0"; 29813 29975 src = fetchurl { 29814 - url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz"; 29815 - sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4"; 29976 + url = "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz"; 29977 + sha512 = "36z7hw07wb42na5hy12xmsrg9yzd3hd5ln8y3wyq88qh4xvxr2lp07bbp5la5254mf8qaimgg1plwzvvvsmvj0mcma17p1dbvzlwyg2"; 29816 29978 }; 29817 29979 }; 29818 29980 "xml-1.0.0" = { ··· 29824 29986 sha1 = "de3ee912477be2f250b60f612f34a8c4da616efe"; 29825 29987 }; 29826 29988 }; 29989 + "xml-name-validator-2.0.1" = { 29990 + name = "xml-name-validator"; 29991 + packageName = "xml-name-validator"; 29992 + version = "2.0.1"; 29993 + src = fetchurl { 29994 + url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz"; 29995 + sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635"; 29996 + }; 29997 + }; 29827 29998 "xml2js-0.1.14" = { 29828 29999 name = "xml2js"; 29829 30000 packageName = "xml2js"; ··· 30023 30194 sha1 = "fcd82267e9351c13f0fb9c73307f25331d29c63a"; 30024 30195 }; 30025 30196 }; 30026 - "xpath.js-1.0.7" = { 30027 - name = "xpath.js"; 30028 - packageName = "xpath.js"; 30029 - version = "1.0.7"; 30030 - src = fetchurl { 30031 - url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.0.7.tgz"; 30032 - sha1 = "7e94627f541276cbc6a6b02b5d35e9418565b3e4"; 30033 - }; 30034 - }; 30035 30197 "xpath.js-1.1.0" = { 30036 30198 name = "xpath.js"; 30037 30199 packageName = "xpath.js"; ··· 30149 30311 sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a"; 30150 30312 }; 30151 30313 }; 30314 + "yargs-10.0.3" = { 30315 + name = "yargs"; 30316 + packageName = "yargs"; 30317 + version = "10.0.3"; 30318 + src = fetchurl { 30319 + url = "https://registry.npmjs.org/yargs/-/yargs-10.0.3.tgz"; 30320 + sha512 = "1vn6jsqrhybxddyhmvkh0d43n2lk1z8081glfq80zpjfs4xgwpk0mmgdiry9zgsihmv9a2qidmp5hhyqqq8mzzkr037wla0qd1nk80f"; 30321 + }; 30322 + }; 30152 30323 "yargs-10.1.2" = { 30153 30324 name = "yargs"; 30154 30325 packageName = "yargs"; ··· 30167 30338 sha512 = "03n9lfnyx1dfj5sm811f3d96djsr6fixd5qi6cl6wj8xf0y01sgn7w3ynv5gn2vl30dwq5mz2hw5f522v8xbwc8m9h6nf8hqsa7wfj6"; 30168 30339 }; 30169 30340 }; 30170 - "yargs-11.1.0" = { 30341 + "yargs-12.0.0-candidate.0" = { 30171 30342 name = "yargs"; 30172 30343 packageName = "yargs"; 30173 - version = "11.1.0"; 30344 + version = "12.0.0-candidate.0"; 30174 30345 src = fetchurl { 30175 - url = "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz"; 30176 - sha512 = "3j5awbfcbh8ik0kz01mycydpi1bz9fg70xc66lk1r1qvrs5x41i2w8nvgj0aip7z9vypcsxks76z75sz4lr6z3ida9c04inkvsbl19p"; 30346 + url = "https://registry.npmjs.org/yargs/-/yargs-12.0.0-candidate.0.tgz"; 30347 + sha512 = "37vyz2vs984q5yf8pgzrk4bpfd1xr5c24scmy2mpdqkr06vwdr2d9zkicq2pih940ji5jb8yr8frfqnha9s8x0sa1xnz78k6v8qxcyi"; 30177 30348 }; 30178 30349 }; 30179 30350 "yargs-3.10.0" = { ··· 30230 30401 sha1 = "52acc23feecac34042078ee78c0c007f5085db4c"; 30231 30402 }; 30232 30403 }; 30404 + "yargs-parser-10.0.0" = { 30405 + name = "yargs-parser"; 30406 + packageName = "yargs-parser"; 30407 + version = "10.0.0"; 30408 + src = fetchurl { 30409 + url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.0.0.tgz"; 30410 + sha512 = "3ibmsxsbhaixclrqx83c1f4hglv4ydcry35kzs40phbri2nbb1lj7c44f89yvzvl7f6j4iqw7idrcpa7p2pzpvj60g5ckd3df6xwcgq"; 30411 + }; 30412 + }; 30233 30413 "yargs-parser-4.2.1" = { 30234 30414 name = "yargs-parser"; 30235 30415 packageName = "yargs-parser"; ··· 30291 30471 src = fetchurl { 30292 30472 url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz"; 30293 30473 sha1 = "a81981ea70a57946133883f029c5821a89359a7f"; 30474 + }; 30475 + }; 30476 + "yauzl-2.9.2" = { 30477 + name = "yauzl"; 30478 + packageName = "yauzl"; 30479 + version = "2.9.2"; 30480 + src = fetchurl { 30481 + url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz"; 30482 + sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77"; 30294 30483 }; 30295 30484 }; 30296 30485 "yeast-0.1.2" = { ··· 30320 30509 sha1 = "94ab784896a64f53a9fac452d5e9133e2750a236"; 30321 30510 }; 30322 30511 }; 30323 - "yeoman-environment-2.1.1" = { 30512 + "yeoman-environment-2.2.0" = { 30324 30513 name = "yeoman-environment"; 30325 30514 packageName = "yeoman-environment"; 30326 - version = "2.1.1"; 30515 + version = "2.2.0"; 30327 30516 src = fetchurl { 30328 - url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.1.1.tgz"; 30329 - sha512 = "0sy09nlr3nq9mmxlglxwf3crzy5krv9hn9pbd6xfpnglg23mz3kmd9s237fnlmisb8rabkn4kycwpdqf1nn47gcc90krb69984z04i0"; 30517 + url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.2.0.tgz"; 30518 + sha512 = "1j1l2698kspscp1safdg4df58da6gd90dgys9b2n2lyb5kgzgi0cd6s4hnbbsr2axxm48fs4pak9a7spqlhr09iw8l5aihhdwhs23w1"; 30330 30519 }; 30331 30520 }; 30332 30521 "yosay-2.0.2" = { ··· 30417 30606 sources."ansi-regex-2.1.1" 30418 30607 sources."ansi-styles-2.2.1" 30419 30608 sources."array-unique-0.3.2" 30420 - sources."async-2.6.0" 30609 + sources."async-2.6.1" 30421 30610 sources."babel-code-frame-6.26.0" 30422 30611 (sources."babel-core-6.26.3" // { 30423 30612 dependencies = [ ··· 30441 30630 sources."brace-expansion-1.1.11" 30442 30631 sources."chalk-1.1.3" 30443 30632 sources."chmodr-1.0.2" 30444 - sources."colors-1.2.5" 30633 + sources."colors-1.3.0" 30445 30634 sources."commander-2.15.1" 30446 30635 sources."concat-map-0.0.1" 30447 30636 sources."convert-source-map-1.5.1" 30448 - sources."core-js-2.5.6" 30637 + sources."core-js-2.5.7" 30449 30638 sources."debug-2.6.9" 30450 30639 sources."detect-indent-4.0.0" 30451 30640 sources."ejs-2.5.7" ··· 30515 30704 sources."underscore-1.6.0" 30516 30705 sources."universalify-0.1.1" 30517 30706 sources."walk-sync-0.3.2" 30518 - sources."which-1.3.0" 30707 + sources."which-1.3.1" 30519 30708 sources."xml2js-0.2.8" 30520 30709 sources."xml2tss-0.0.5" 30521 30710 sources."xmldom-0.1.27" ··· 30548 30737 sources."balanced-match-1.0.0" 30549 30738 sources."bcrypt-pbkdf-1.0.1" 30550 30739 sources."binary-0.3.0" 30551 - sources."boom-4.3.1" 30552 30740 sources."brace-expansion-1.1.11" 30553 30741 sources."buffers-0.1.1" 30554 30742 sources."caseless-0.12.0" ··· 30559 30747 sources."commander-2.15.1" 30560 30748 sources."concat-map-0.0.1" 30561 30749 sources."core-util-is-1.0.2" 30562 - (sources."cryptiles-3.1.2" // { 30563 - dependencies = [ 30564 - sources."boom-5.2.0" 30565 - ]; 30566 - }) 30567 30750 sources."cuint-0.2.2" 30568 30751 sources."dashdash-1.14.1" 30569 30752 sources."decompress-zip-0.3.0" ··· 30582 30765 sources."graceful-fs-4.1.11" 30583 30766 sources."har-schema-2.0.0" 30584 30767 sources."har-validator-5.0.3" 30585 - sources."hawk-6.0.2" 30586 - sources."hoek-4.2.1" 30587 30768 sources."http-signature-1.2.0" 30588 30769 sources."inflight-1.0.6" 30589 30770 sources."inherits-2.0.3" ··· 30618 30799 sources."q-1.5.1" 30619 30800 sources."qs-6.5.2" 30620 30801 sources."readable-stream-1.1.14" 30621 - sources."request-2.86.0" 30802 + sources."request-2.87.0" 30622 30803 sources."rimraf-2.6.2" 30623 30804 sources."safe-buffer-5.1.2" 30624 - sources."sntp-2.1.0" 30625 - sources."sshpk-1.14.1" 30805 + sources."safer-buffer-2.1.2" 30806 + sources."sshpk-1.14.2" 30626 30807 sources."string_decoder-0.10.31" 30627 30808 sources."tmp-0.0.28" 30628 30809 (sources."touch-0.0.3" // { ··· 30650 30831 azure-cli = nodeEnv.buildNodePackage { 30651 30832 name = "azure-cli"; 30652 30833 packageName = "azure-cli"; 30653 - version = "0.10.18"; 30834 + version = "0.10.19"; 30654 30835 src = fetchurl { 30655 - url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.18.tgz"; 30656 - sha512 = "05k876g0s9ac53vrqqcn5h2l6s9ccawihr29gxvj8fib49qg2mhf1v52277r2wgcjxibj7vq2b3zp2jkp0vwd6d1pkv8alwf84ri6wc"; 30836 + url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.19.tgz"; 30837 + sha512 = "34bg8wqi85ixnqxjvcz6qh1mny2v5p93dhspifymj6hhyxdxxzm83bmrzbhk8n5d9sl46167y5q8ddx7wv2jb5v00ypirwb5y3n5q7l"; 30657 30838 }; 30658 30839 dependencies = [ 30659 30840 sources."@types/caseless-0.12.1" 30660 30841 sources."@types/form-data-2.2.1" 30661 - sources."@types/node-8.10.16" 30842 + sources."@types/node-8.10.18" 30662 30843 sources."@types/request-2.47.0" 30663 30844 sources."@types/tough-cookie-2.3.3" 30664 30845 sources."@types/uuid-3.4.3" 30665 30846 sources."JSV-4.0.2" 30666 - sources."adal-node-0.1.21" 30847 + sources."adal-node-0.1.28" 30667 30848 sources."ajv-5.5.2" 30668 30849 sources."amdefine-1.0.1" 30669 30850 sources."ansi-regex-2.1.1" 30670 - sources."ansi-styles-1.0.0" 30851 + sources."ansi-styles-2.2.1" 30671 30852 sources."applicationinsights-0.16.0" 30672 30853 sources."asap-2.0.6" 30673 30854 sources."asn1-0.2.3" 30674 - sources."assert-plus-1.0.0" 30855 + sources."assert-plus-0.2.0" 30675 30856 sources."async-1.4.2" 30676 30857 sources."asynckit-0.4.0" 30677 - sources."aws-sign2-0.7.0" 30858 + sources."aws-sign2-0.6.0" 30678 30859 sources."aws4-1.7.0" 30679 30860 sources."azure-arm-authorization-2.0.0" 30680 - (sources."azure-arm-batch-0.3.0" // { 30681 - dependencies = [ 30682 - sources."async-0.2.7" 30683 - sources."ms-rest-1.15.7" 30684 - sources."ms-rest-azure-1.15.7" 30685 - ]; 30686 - }) 30687 - (sources."azure-arm-cdn-1.0.3" // { 30688 - dependencies = [ 30689 - sources."async-0.2.7" 30690 - sources."ms-rest-1.15.7" 30691 - sources."ms-rest-azure-1.15.7" 30692 - ]; 30693 - }) 30694 - (sources."azure-arm-commerce-0.2.0" // { 30695 - dependencies = [ 30696 - sources."async-0.2.7" 30697 - sources."ms-rest-1.15.7" 30698 - sources."ms-rest-azure-1.15.7" 30699 - ]; 30700 - }) 30861 + sources."azure-arm-batch-3.1.0" 30862 + sources."azure-arm-cdn-4.0.1" 30863 + sources."azure-arm-commerce-2.0.0" 30701 30864 sources."azure-arm-compute-3.0.0-preview" 30702 30865 (sources."azure-arm-datalake-analytics-1.0.2-preview" // { 30703 30866 dependencies = [ 30704 - sources."async-0.2.7" 30867 + sources."async-2.6.1" 30868 + sources."commander-2.15.1" 30705 30869 sources."ms-rest-1.15.7" 30706 - sources."ms-rest-azure-1.15.7" 30870 + (sources."ms-rest-azure-1.15.7" // { 30871 + dependencies = [ 30872 + sources."async-0.2.7" 30873 + ]; 30874 + }) 30875 + sources."readable-stream-2.0.6" 30876 + sources."request-2.74.0" 30707 30877 ]; 30708 30878 }) 30709 30879 (sources."azure-arm-datalake-store-1.0.2-preview" // { ··· 30711 30881 sources."async-0.2.7" 30712 30882 sources."ms-rest-1.15.7" 30713 30883 sources."ms-rest-azure-1.15.7" 30714 - ]; 30715 - }) 30716 - (sources."azure-arm-devtestlabs-0.1.0" // { 30717 - dependencies = [ 30718 - sources."async-0.2.7" 30719 - sources."ms-rest-1.15.7" 30720 - sources."ms-rest-azure-1.15.7" 30884 + sources."request-2.74.0" 30721 30885 ]; 30722 30886 }) 30723 - sources."azure-arm-dns-2.0.0-preview" 30887 + sources."azure-arm-devtestlabs-2.1.1" 30888 + sources."azure-arm-dns-2.1.0" 30724 30889 sources."azure-arm-hdinsight-0.2.2" 30725 30890 sources."azure-arm-hdinsight-jobs-0.1.0" 30726 30891 sources."azure-arm-insights-0.11.3" 30727 30892 sources."azure-arm-iothub-1.0.1-preview" 30728 - sources."azure-arm-network-5.1.0" 30729 - (sources."azure-arm-powerbiembedded-0.1.0" // { 30893 + sources."azure-arm-network-5.3.0" 30894 + (sources."azure-arm-powerbiembedded-0.1.1" // { 30730 30895 dependencies = [ 30731 30896 sources."async-0.2.7" 30732 30897 sources."ms-rest-1.15.7" 30733 30898 sources."ms-rest-azure-1.15.7" 30899 + sources."request-2.74.0" 30734 30900 ]; 30735 30901 }) 30736 30902 (sources."azure-arm-rediscache-0.2.3" // { ··· 30738 30904 sources."async-0.2.7" 30739 30905 sources."ms-rest-1.15.7" 30740 30906 sources."ms-rest-azure-1.15.7" 30907 + sources."request-2.74.0" 30741 30908 ]; 30742 30909 }) 30743 30910 (sources."azure-arm-resource-1.6.1-preview" // { ··· 30745 30912 sources."async-0.2.7" 30746 30913 sources."ms-rest-1.15.7" 30747 30914 sources."ms-rest-azure-1.15.7" 30748 - ]; 30749 - }) 30750 - (sources."azure-arm-servermanagement-0.1.2" // { 30751 - dependencies = [ 30752 - sources."async-0.2.7" 30753 - sources."ms-rest-1.15.7" 30754 - sources."ms-rest-azure-1.15.7" 30915 + sources."request-2.74.0" 30755 30916 ]; 30756 30917 }) 30757 - (sources."azure-arm-storage-0.15.0-preview" // { 30758 - dependencies = [ 30759 - sources."async-0.2.7" 30760 - sources."ms-rest-1.15.7" 30761 - sources."ms-rest-azure-1.15.7" 30762 - ]; 30763 - }) 30918 + sources."azure-arm-servermanagement-1.1.0" 30919 + sources."azure-arm-storage-5.0.0" 30764 30920 sources."azure-arm-trafficmanager-1.1.0-preview" 30765 - (sources."azure-arm-website-0.11.4" // { 30921 + (sources."azure-arm-website-0.11.5" // { 30766 30922 dependencies = [ 30767 30923 sources."async-0.2.7" 30768 30924 sources."ms-rest-1.15.7" 30769 30925 sources."ms-rest-azure-1.15.7" 30926 + sources."request-2.74.0" 30770 30927 ]; 30771 30928 }) 30772 30929 sources."azure-asm-compute-0.18.0" ··· 30778 30935 sources."azure-asm-storage-0.12.0" 30779 30936 sources."azure-asm-subscription-0.10.1" 30780 30937 sources."azure-asm-trafficmanager-0.10.3" 30781 - (sources."azure-asm-website-0.10.4" // { 30938 + (sources."azure-asm-website-0.10.6" // { 30782 30939 dependencies = [ 30783 - sources."moment-2.14.1" 30940 + sources."moment-2.18.1" 30941 + sources."underscore-1.9.1" 30784 30942 ]; 30785 30943 }) 30786 - (sources."azure-batch-0.5.2" // { 30944 + (sources."azure-batch-3.2.1" // { 30787 30945 dependencies = [ 30788 - sources."async-0.2.7" 30789 - sources."ms-rest-1.15.7" 30790 - sources."ms-rest-azure-1.15.7" 30946 + sources."underscore-1.9.1" 30791 30947 ]; 30792 30948 }) 30793 - (sources."azure-common-0.9.18" // { 30949 + (sources."azure-common-0.9.20" // { 30794 30950 dependencies = [ 30795 - sources."validator-3.22.2" 30951 + sources."validator-9.4.1" 30796 30952 sources."xml2js-0.2.7" 30797 30953 ]; 30798 30954 }) 30799 30955 sources."azure-gallery-2.0.0-pre.18" 30800 - sources."azure-graph-2.1.0-preview" 30801 - (sources."azure-keyvault-0.11.0" // { 30956 + sources."azure-graph-2.2.0" 30957 + (sources."azure-keyvault-1.0.0" // { 30802 30958 dependencies = [ 30803 30959 sources."async-0.2.7" 30804 30960 sources."ms-rest-1.15.7" 30805 30961 sources."ms-rest-azure-1.15.7" 30962 + sources."request-2.74.0" 30806 30963 ]; 30807 30964 }) 30808 - (sources."azure-monitoring-0.10.2" // { 30965 + (sources."azure-monitoring-0.10.5" // { 30809 30966 dependencies = [ 30810 - sources."moment-2.6.0" 30967 + sources."moment-2.14.1" 30968 + sources."underscore-1.9.1" 30811 30969 ]; 30812 30970 }) 30813 30971 (sources."azure-servicefabric-0.1.5" // { ··· 30815 30973 sources."async-0.2.7" 30816 30974 sources."ms-rest-1.15.7" 30817 30975 sources."ms-rest-azure-1.15.7" 30976 + sources."request-2.74.0" 30818 30977 ]; 30819 30978 }) 30820 - (sources."azure-storage-2.1.0" // { 30979 + (sources."azure-storage-2.8.3" // { 30821 30980 dependencies = [ 30981 + sources."extend-1.2.1" 30822 30982 sources."readable-stream-2.0.6" 30823 - sources."validator-3.22.2" 30824 - sources."xml2js-0.2.7" 30983 + sources."underscore-1.8.3" 30984 + sources."validator-9.4.1" 30985 + sources."xml2js-0.2.8" 30825 30986 ]; 30826 30987 }) 30827 30988 sources."balanced-match-1.0.0" 30828 30989 sources."bcrypt-pbkdf-1.0.1" 30829 30990 sources."bl-1.1.2" 30830 - sources."boom-4.3.1" 30991 + sources."boom-2.10.1" 30831 30992 sources."brace-expansion-1.1.11" 30832 30993 sources."browserify-mime-1.2.9" 30833 30994 sources."buffer-equal-constant-time-1.0.1" 30834 - sources."buffer-from-1.0.0" 30995 + sources."buffer-from-1.1.0" 30835 30996 sources."caller-id-0.1.0" 30836 - sources."caseless-0.12.0" 30837 - sources."chalk-0.4.0" 30997 + sources."caseless-0.11.0" 30998 + sources."chalk-1.1.3" 30838 30999 sources."clone-1.0.4" 30839 31000 sources."co-4.6.0" 30840 31001 sources."colors-1.1.2" ··· 30843 31004 sources."concat-map-0.0.1" 30844 31005 sources."concat-stream-1.6.2" 30845 31006 sources."core-util-is-1.0.2" 30846 - (sources."cryptiles-3.1.2" // { 30847 - dependencies = [ 30848 - sources."boom-5.2.0" 30849 - ]; 30850 - }) 31007 + sources."cryptiles-2.0.5" 30851 31008 sources."ctype-0.5.2" 30852 31009 sources."cycle-1.0.3" 30853 31010 sources."dashdash-1.14.1" 30854 31011 sources."date-utils-1.2.21" 30855 31012 sources."dateformat-1.0.2-1.2.3" 30856 - sources."debug-0.7.4" 30857 31013 sources."deep-equal-1.0.1" 30858 31014 sources."defaults-1.0.3" 30859 31015 sources."delayed-stream-1.0.0" ··· 30864 31020 sources."envconf-0.0.4" 30865 31021 sources."escape-string-regexp-1.0.5" 30866 31022 sources."event-stream-3.1.5" 30867 - sources."extend-1.2.1" 31023 + sources."extend-3.0.1" 30868 31024 sources."extsprintf-1.3.0" 30869 31025 sources."eyes-0.1.8" 30870 31026 sources."fast-deep-equal-1.1.0" ··· 30872 31028 sources."fast-json-stable-stringify-2.0.0" 30873 31029 sources."fibers-1.0.15" 30874 31030 sources."forever-agent-0.6.1" 30875 - sources."form-data-2.3.2" 31031 + sources."form-data-1.0.1" 30876 31032 sources."from-0.1.7" 30877 31033 sources."fs.realpath-1.0.0" 30878 31034 sources."galaxy-0.1.12" ··· 30882 31038 sources."github-0.1.6" 30883 31039 sources."glob-7.1.2" 30884 31040 sources."har-schema-2.0.0" 30885 - sources."har-validator-5.0.3" 31041 + sources."har-validator-2.0.6" 30886 31042 sources."has-ansi-2.0.0" 30887 31043 sources."has-color-0.1.7" 30888 31044 sources."hash-base-3.0.4" 30889 - sources."hawk-6.0.2" 30890 - sources."hoek-4.2.1" 31045 + sources."hawk-3.1.3" 31046 + sources."hoek-2.16.3" 30891 31047 sources."http-basic-2.5.1" 30892 31048 sources."http-response-object-1.1.0" 30893 - sources."http-signature-1.2.0" 31049 + sources."http-signature-1.1.1" 30894 31050 sources."i-0.3.6" 30895 31051 sources."inflight-1.0.6" 30896 31052 sources."inherits-2.0.3" ··· 30910 31066 sources."json-stringify-safe-5.0.1" 30911 31067 (sources."jsonlint-1.6.2" // { 30912 31068 dependencies = [ 31069 + sources."ansi-styles-1.0.0" 31070 + sources."chalk-0.4.0" 31071 + sources."strip-ansi-0.1.1" 30913 31072 sources."underscore-1.6.0" 30914 31073 ]; 30915 31074 }) 30916 31075 sources."jsonminify-0.4.1" 30917 31076 sources."jsonparse-1.2.0" 30918 31077 sources."jsonpointer-4.0.1" 30919 - sources."jsprim-1.4.1" 31078 + (sources."jsprim-1.4.1" // { 31079 + dependencies = [ 31080 + sources."assert-plus-1.0.0" 31081 + ]; 31082 + }) 30920 31083 sources."jsrsasign-4.8.2" 30921 31084 sources."jwa-1.1.6" 30922 31085 sources."jws-3.1.5" ··· 30936 31099 sources."minimatch-3.0.4" 30937 31100 sources."minimist-0.0.8" 30938 31101 sources."mkdirp-0.5.1" 30939 - sources."moment-2.22.1" 31102 + sources."moment-2.22.2" 30940 31103 (sources."ms-rest-2.3.3" // { 30941 31104 dependencies = [ 30942 - sources."extend-3.0.1" 30943 - sources."request-2.86.0" 30944 31105 sources."through-2.3.8" 30945 31106 sources."tunnel-0.0.5" 30946 31107 ]; 30947 31108 }) 30948 31109 (sources."ms-rest-azure-2.5.5" // { 30949 31110 dependencies = [ 30950 - sources."@types/node-9.6.17" 30951 - (sources."adal-node-0.1.28" // { 30952 - dependencies = [ 30953 - sources."@types/node-8.10.16" 30954 - ]; 30955 - }) 31111 + sources."@types/node-9.6.20" 30956 31112 sources."async-2.6.0" 30957 - sources."xpath.js-1.1.0" 30958 31113 ]; 30959 31114 }) 30960 31115 sources."mute-stream-0.0.7" 30961 31116 sources."ncp-0.4.2" 30962 31117 sources."node-forge-0.6.23" 30963 - sources."node-uuid-1.4.7" 31118 + sources."node-uuid-1.4.8" 30964 31119 sources."nomnom-1.8.1" 30965 31120 sources."oauth-sign-0.8.2" 30966 31121 sources."omelette-0.3.2" 30967 31122 sources."once-1.4.0" 30968 - sources."openssl-wrapper-0.2.1" 31123 + sources."openssl-wrapper-0.3.4" 30969 31124 sources."os-homedir-1.0.2" 30970 31125 sources."path-is-absolute-1.0.1" 30971 31126 sources."pause-stream-0.0.11" ··· 30988 31143 ]; 30989 31144 }) 30990 31145 sources."punycode-1.4.1" 30991 - sources."q-0.9.7" 30992 - sources."qs-6.5.2" 31146 + sources."qs-6.2.3" 30993 31147 sources."read-1.0.7" 30994 31148 (sources."readable-stream-1.0.34" // { 30995 31149 dependencies = [ 30996 31150 sources."isarray-0.0.1" 30997 31151 ]; 30998 31152 }) 30999 - (sources."request-2.74.0" // { 31153 + (sources."request-2.87.0" // { 31000 31154 dependencies = [ 31001 - sources."ansi-styles-2.2.1" 31002 - sources."assert-plus-0.2.0" 31003 - sources."async-2.6.0" 31004 - sources."aws-sign2-0.6.0" 31005 - sources."boom-2.10.1" 31006 - sources."caseless-0.11.0" 31007 - sources."chalk-1.1.3" 31008 - sources."commander-2.15.1" 31009 - sources."cryptiles-2.0.5" 31010 - sources."extend-3.0.1" 31011 - sources."form-data-1.0.1" 31012 - sources."har-validator-2.0.6" 31013 - sources."hawk-3.1.3" 31014 - sources."hoek-2.16.3" 31015 - sources."http-signature-1.1.1" 31016 - sources."qs-6.2.3" 31017 - sources."readable-stream-2.0.6" 31018 - sources."sntp-1.0.9" 31019 - sources."strip-ansi-3.0.1" 31020 - sources."tunnel-agent-0.4.3" 31155 + sources."assert-plus-1.0.0" 31156 + sources."aws-sign2-0.7.0" 31157 + sources."caseless-0.12.0" 31158 + sources."form-data-2.3.2" 31159 + sources."har-validator-5.0.3" 31160 + sources."http-signature-1.2.0" 31161 + sources."qs-6.5.2" 31162 + sources."tunnel-agent-0.6.0" 31021 31163 ]; 31022 31164 }) 31023 31165 sources."revalidator-0.1.8" 31024 31166 sources."rimraf-2.6.2" 31025 31167 sources."safe-buffer-5.1.2" 31168 + sources."safer-buffer-2.1.2" 31026 31169 sources."sax-0.5.2" 31027 - sources."sntp-2.1.0" 31170 + sources."sntp-1.0.9" 31028 31171 sources."source-map-0.1.43" 31029 31172 sources."split-0.2.10" 31030 31173 (sources."ssh-key-to-pem-0.11.0" // { ··· 31032 31175 sources."asn1-0.1.11" 31033 31176 ]; 31034 31177 }) 31035 - sources."sshpk-1.14.1" 31178 + (sources."sshpk-1.14.2" // { 31179 + dependencies = [ 31180 + sources."assert-plus-1.0.0" 31181 + ]; 31182 + }) 31036 31183 sources."stack-trace-0.0.10" 31037 31184 sources."stream-combiner-0.0.4" 31038 31185 sources."streamline-0.10.17" 31039 31186 sources."streamline-streams-0.1.5" 31040 31187 sources."string_decoder-0.10.31" 31041 31188 sources."stringstream-0.0.6" 31042 - sources."strip-ansi-0.1.1" 31189 + sources."strip-ansi-3.0.1" 31043 31190 sources."supports-color-2.0.0" 31044 31191 (sources."sync-request-3.0.0" // { 31045 31192 dependencies = [ 31046 - sources."caseless-0.11.0" 31047 31193 sources."process-nextick-args-2.0.0" 31048 31194 sources."readable-stream-2.3.6" 31049 31195 sources."string_decoder-1.1.1" ··· 31053 31199 sources."through-2.3.4" 31054 31200 sources."tough-cookie-2.3.4" 31055 31201 sources."tunnel-0.0.2" 31056 - sources."tunnel-agent-0.6.0" 31202 + sources."tunnel-agent-0.4.3" 31057 31203 sources."tweetnacl-0.14.5" 31058 31204 sources."typedarray-0.0.6" 31059 31205 sources."underscore-1.4.4" ··· 31076 31222 sources."xml2js-0.1.14" 31077 31223 sources."xmlbuilder-0.4.3" 31078 31224 sources."xmldom-0.1.27" 31079 - sources."xpath.js-1.0.7" 31225 + sources."xpath.js-1.1.0" 31080 31226 sources."xtend-4.0.1" 31081 31227 ]; 31082 31228 buildInputs = globalBuildInputs; ··· 31166 31312 sources."loud-rejection-1.6.0" 31167 31313 sources."map-obj-1.0.1" 31168 31314 sources."meow-3.7.0" 31169 - sources."mime-db-1.33.0" 31315 + sources."mime-db-1.34.0" 31170 31316 sources."minimatch-3.0.4" 31171 31317 sources."minimist-1.2.0" 31172 31318 sources."mkdirp-0.5.1" 31173 31319 sources."ms-2.0.0" 31174 - sources."natives-1.1.3" 31320 + sources."natives-1.1.4" 31175 31321 sources."normalize-package-data-2.4.0" 31176 31322 sources."number-is-nan-1.0.1" 31177 31323 sources."object-assign-4.1.1" ··· 31233 31379 sha512 = "3ycb2arffvn5xg0dgk03zyvpg6pizz17wix457vg1cx166h59lz0vhyr2sw3224ny8brs3lg8f1acyr2ijv196fnsjfpm1akk9i5hbw"; 31234 31380 }; 31235 31381 dependencies = [ 31236 - sources."JSONStream-1.3.2" 31382 + sources."JSONStream-1.3.3" 31237 31383 sources."acorn-4.0.13" 31238 31384 sources."acorn-node-1.3.0" 31239 31385 sources."array-filter-0.0.1" 31240 31386 sources."array-map-0.0.0" 31241 31387 sources."array-reduce-0.0.0" 31242 31388 sources."asn1.js-4.10.1" 31243 - sources."assert-1.4.1" 31389 + (sources."assert-1.4.1" // { 31390 + dependencies = [ 31391 + sources."inherits-2.0.1" 31392 + sources."util-0.10.3" 31393 + ]; 31394 + }) 31244 31395 sources."astw-2.2.0" 31245 31396 sources."balanced-match-1.0.0" 31246 31397 sources."base64-js-1.3.0" ··· 31260 31411 sources."browserify-sign-4.0.4" 31261 31412 sources."browserify-zlib-0.2.0" 31262 31413 sources."buffer-5.1.0" 31263 - sources."buffer-from-1.0.0" 31414 + sources."buffer-from-1.1.0" 31264 31415 sources."buffer-xor-1.0.3" 31265 31416 sources."builtin-status-codes-3.0.0" 31266 31417 sources."cached-path-relative-1.0.1" ··· 31285 31436 sources."domain-browser-1.2.0" 31286 31437 sources."duplexer2-0.1.4" 31287 31438 sources."elliptic-6.4.0" 31288 - sources."events-2.0.0" 31439 + sources."events-2.1.0" 31289 31440 sources."evp_bytestokey-1.0.3" 31290 31441 sources."fs.realpath-1.0.0" 31291 31442 sources."function-bind-1.1.1" 31292 31443 sources."glob-7.1.2" 31293 - sources."has-1.0.1" 31444 + sources."has-1.0.3" 31294 31445 sources."hash-base-3.0.4" 31295 31446 sources."hash.js-1.1.3" 31296 31447 sources."hmac-drbg-1.0.1" ··· 31318 31469 sources."mkdirp-0.5.1" 31319 31470 (sources."module-deps-6.1.0" // { 31320 31471 dependencies = [ 31321 - sources."acorn-5.5.3" 31472 + sources."acorn-5.6.2" 31322 31473 sources."minimist-1.2.0" 31323 31474 ]; 31324 31475 }) ··· 31355 31506 sources."source-map-0.5.7" 31356 31507 sources."stream-browserify-2.0.1" 31357 31508 sources."stream-combiner2-1.1.1" 31358 - sources."stream-http-2.8.2" 31509 + sources."stream-http-2.8.3" 31359 31510 sources."stream-splicer-2.0.0" 31360 31511 sources."string_decoder-1.1.1" 31361 31512 (sources."subarg-1.0.0" // { ··· 31376 31527 sources."punycode-1.3.2" 31377 31528 ]; 31378 31529 }) 31379 - (sources."util-0.10.3" // { 31380 - dependencies = [ 31381 - sources."inherits-2.0.1" 31382 - ]; 31383 - }) 31530 + sources."util-0.10.4" 31384 31531 sources."util-deprecate-1.0.2" 31385 31532 sources."vm-browserify-1.0.1" 31386 31533 sources."wrappy-1.0.2" ··· 31427 31574 sources."bncode-0.5.3" 31428 31575 sources."boom-0.3.8" 31429 31576 sources."brace-expansion-1.1.11" 31430 - sources."buffer-alloc-1.1.0" 31431 - sources."buffer-alloc-unsafe-0.1.1" 31577 + sources."buffer-alloc-1.2.0" 31578 + sources."buffer-alloc-unsafe-1.1.0" 31432 31579 sources."buffer-equal-0.0.1" 31433 31580 sources."buffer-equals-1.0.4" 31434 - sources."buffer-fill-0.1.1" 31435 - sources."buffer-from-1.0.0" 31581 + sources."buffer-fill-1.0.0" 31582 + sources."buffer-from-1.1.0" 31436 31583 sources."bufferview-1.0.1" 31437 31584 sources."builtin-modules-1.1.1" 31438 31585 sources."bytebuffer-3.5.5" ··· 31786 31933 sources."code-point-at-1.1.0" 31787 31934 sources."color-convert-1.9.1" 31788 31935 sources."color-name-1.1.3" 31789 - sources."colors-1.2.5" 31936 + sources."colors-1.3.0" 31790 31937 sources."commander-2.15.1" 31791 31938 sources."debug-3.1.0" 31792 31939 sources."escape-string-regexp-1.0.5" 31793 - sources."follow-redirects-1.4.1" 31940 + sources."follow-redirects-1.5.0" 31794 31941 sources."has-flag-3.0.0" 31795 31942 sources."humanize-plus-1.8.2" 31796 31943 sources."is-buffer-1.1.6" ··· 31860 32007 sha1 = "2e8446d9493caafd870b1090785e7f03e2ae6a43"; 31861 32008 }; 31862 32009 dependencies = [ 31863 - sources."JSONStream-1.3.2" 32010 + sources."JSONStream-1.3.3" 31864 32011 sources."abbrev-1.1.1" 31865 32012 sources."accepts-1.3.5" 31866 - sources."acorn-5.5.3" 32013 + sources."acorn-5.6.2" 31867 32014 sources."acorn-node-1.3.0" 31868 32015 sources."aliasify-2.1.0" 31869 32016 sources."ansi-0.3.1" ··· 31876 32023 sources."array-reduce-0.0.0" 31877 32024 sources."asn1-0.2.3" 31878 32025 sources."asn1.js-4.10.1" 31879 - sources."assert-1.4.1" 32026 + (sources."assert-1.4.1" // { 32027 + dependencies = [ 32028 + sources."inherits-2.0.1" 32029 + sources."util-0.10.3" 32030 + ]; 32031 + }) 31880 32032 sources."assert-plus-0.2.0" 31881 32033 sources."astw-2.2.0" 31882 32034 sources."async-1.5.2" ··· 31884 32036 sources."aws-sign2-0.6.0" 31885 32037 sources."aws4-1.7.0" 31886 32038 sources."balanced-match-1.0.0" 31887 - sources."base64-js-0.0.8" 32039 + sources."base64-js-1.3.0" 31888 32040 sources."bcrypt-pbkdf-1.0.1" 31889 - sources."big-integer-1.6.28" 32041 + sources."big-integer-1.6.30" 31890 32042 sources."block-stream-0.0.9" 31891 32043 sources."bn.js-4.11.8" 31892 32044 (sources."body-parser-1.18.2" // { ··· 31918 32070 sources."browserify-transform-tools-1.7.0" 31919 32071 sources."browserify-zlib-0.1.4" 31920 32072 sources."buffer-5.1.0" 31921 - sources."buffer-from-1.0.0" 32073 + sources."buffer-from-1.1.0" 31922 32074 sources."buffer-xor-1.0.3" 31923 32075 sources."builtin-modules-1.1.1" 31924 32076 sources."builtin-status-codes-3.0.0" ··· 31934 32086 sources."combine-source-map-0.8.0" 31935 32087 sources."combined-stream-1.0.6" 31936 32088 sources."commander-2.15.1" 31937 - sources."compressible-2.0.13" 32089 + sources."compressible-2.0.14" 31938 32090 sources."compression-1.7.2" 31939 32091 sources."concat-map-0.0.1" 31940 32092 (sources."concat-stream-1.5.2" // { ··· 31952 32104 sources."cookie-0.3.1" 31953 32105 sources."cookie-signature-1.0.6" 31954 32106 sources."cordova-app-hello-world-3.12.0" 31955 - sources."cordova-common-2.2.1" 32107 + sources."cordova-common-2.2.3" 31956 32108 sources."cordova-create-1.1.2" 31957 32109 (sources."cordova-fetch-1.3.0" // { 31958 32110 dependencies = [ ··· 31962 32114 }) 31963 32115 (sources."cordova-js-4.2.2" // { 31964 32116 dependencies = [ 31965 - sources."acorn-5.5.3" 32117 + sources."acorn-5.6.2" 31966 32118 sources."isarray-2.0.4" 31967 32119 ]; 31968 32120 }) 31969 32121 (sources."cordova-lib-8.0.0" // { 31970 32122 dependencies = [ 31971 32123 sources."acorn-4.0.13" 31972 - sources."base64-js-1.3.0" 32124 + sources."base64-js-1.1.2" 32125 + sources."elementtree-0.1.6" 31973 32126 sources."glob-7.1.1" 31974 32127 sources."isarray-1.0.0" 32128 + sources."mime-db-1.34.0" 31975 32129 sources."minimist-1.2.0" 31976 32130 sources."nopt-4.0.1" 31977 - (sources."plist-2.0.1" // { 31978 - dependencies = [ 31979 - sources."base64-js-1.1.2" 31980 - ]; 31981 - }) 32131 + sources."plist-2.0.1" 31982 32132 sources."process-nextick-args-2.0.0" 31983 32133 sources."q-1.0.1" 31984 32134 sources."qs-6.3.2" 31985 32135 sources."safe-buffer-5.1.1" 32136 + sources."sax-0.3.5" 31986 32137 sources."shelljs-0.3.0" 31987 32138 sources."underscore-1.8.3" 31988 32139 sources."uuid-3.2.1" ··· 32004 32155 sources."dashdash-1.14.1" 32005 32156 sources."date-now-0.1.4" 32006 32157 sources."debug-2.6.9" 32007 - sources."deep-extend-0.5.1" 32158 + sources."deep-extend-0.6.0" 32008 32159 sources."defined-1.0.0" 32009 32160 sources."delayed-stream-1.0.0" 32010 32161 (sources."dep-graph-1.1.0" // { ··· 32031 32182 sources."ecc-jsbn-0.1.1" 32032 32183 sources."editor-1.0.0" 32033 32184 sources."ee-first-1.1.1" 32034 - sources."elementtree-0.1.6" 32185 + sources."elementtree-0.1.7" 32035 32186 sources."elliptic-6.4.0" 32036 32187 sources."encodeurl-1.0.2" 32037 32188 sources."end-of-stream-1.4.1" ··· 32058 32209 sources."generate-function-2.0.0" 32059 32210 sources."generate-object-property-1.2.0" 32060 32211 sources."getpass-0.1.7" 32061 - sources."glob-5.0.15" 32212 + sources."glob-7.1.2" 32062 32213 sources."got-3.3.1" 32063 32214 sources."graceful-fs-4.1.11" 32064 32215 sources."har-validator-2.0.6" 32065 - sources."has-1.0.1" 32216 + sources."has-1.0.3" 32066 32217 sources."has-ansi-2.0.0" 32067 32218 sources."hash-base-3.0.4" 32068 32219 sources."hash.js-1.1.3" ··· 32191 32342 sources."pegjs-0.10.0" 32192 32343 sources."pinkie-2.0.4" 32193 32344 sources."pinkie-promise-2.0.1" 32194 - sources."plist-1.2.0" 32345 + sources."plist-3.0.1" 32195 32346 sources."prepend-http-1.0.4" 32196 32347 sources."process-0.11.10" 32197 32348 sources."process-nextick-args-1.0.7" ··· 32213 32364 sources."http-errors-1.6.2" 32214 32365 ]; 32215 32366 }) 32216 - sources."rc-1.2.7" 32367 + sources."rc-1.2.8" 32217 32368 sources."read-1.0.7" 32218 32369 sources."read-all-stream-3.1.0" 32219 32370 sources."read-only-stream-2.0.0" ··· 32235 32386 sources."run-async-0.1.0" 32236 32387 sources."rx-lite-3.1.2" 32237 32388 sources."safe-buffer-5.1.2" 32238 - sources."sax-0.3.5" 32389 + sources."safer-buffer-2.1.2" 32390 + sources."sax-1.1.4" 32239 32391 sources."semver-5.5.0" 32240 32392 sources."semver-diff-2.1.0" 32241 32393 sources."send-0.16.2" ··· 32244 32396 sources."sha.js-2.4.11" 32245 32397 sources."shasum-1.0.2" 32246 32398 sources."shell-quote-1.6.1" 32247 - sources."shelljs-0.5.3" 32399 + sources."shelljs-0.8.2" 32248 32400 sources."simple-plist-0.2.1" 32249 32401 sources."slash-1.0.0" 32250 32402 sources."slide-1.1.6" ··· 32254 32406 sources."spdx-exceptions-2.1.0" 32255 32407 sources."spdx-expression-parse-3.0.0" 32256 32408 sources."spdx-license-ids-3.0.0" 32257 - (sources."sshpk-1.14.1" // { 32409 + (sources."sshpk-1.14.2" // { 32258 32410 dependencies = [ 32259 32411 sources."assert-plus-1.0.0" 32260 32412 ]; ··· 32263 32415 sources."stream-browserify-2.0.1" 32264 32416 sources."stream-buffers-2.2.0" 32265 32417 sources."stream-combiner2-1.1.1" 32266 - sources."stream-http-2.8.2" 32418 + sources."stream-http-2.8.3" 32267 32419 sources."stream-shift-1.0.0" 32268 32420 sources."stream-splicer-2.0.0" 32269 32421 sources."string-length-1.0.1" ··· 32271 32423 sources."string_decoder-1.0.3" 32272 32424 sources."stringstream-0.0.6" 32273 32425 sources."strip-ansi-3.0.1" 32426 + sources."strip-bom-3.0.0" 32274 32427 sources."strip-json-comments-2.0.1" 32275 32428 sources."subarg-1.0.0" 32276 32429 sources."supports-color-2.0.0" ··· 32288 32441 sources."type-is-1.6.16" 32289 32442 sources."typedarray-0.0.6" 32290 32443 sources."umd-3.0.3" 32291 - sources."underscore-1.9.0" 32444 + sources."underscore-1.9.1" 32292 32445 sources."unorm-1.4.1" 32293 32446 sources."unpipe-1.0.0" 32294 32447 (sources."update-notifier-0.5.0" // { ··· 32303 32456 sources."punycode-1.3.2" 32304 32457 ]; 32305 32458 }) 32306 - (sources."util-0.10.3" // { 32307 - dependencies = [ 32308 - sources."inherits-2.0.1" 32309 - ]; 32310 - }) 32459 + sources."util-0.10.4" 32311 32460 sources."util-deprecate-1.0.2" 32312 32461 sources."utils-merge-1.0.1" 32313 32462 sources."uuid-2.0.3" ··· 32326 32475 ]; 32327 32476 }) 32328 32477 sources."xdg-basedir-2.0.0" 32329 - sources."xmlbuilder-4.0.0" 32478 + sources."xmlbuilder-9.0.7" 32330 32479 sources."xmldom-0.1.27" 32331 32480 sources."xtend-4.0.1" 32332 32481 ]; ··· 32415 32564 sources."uid-number-0.0.6" 32416 32565 sources."util-deprecate-1.0.2" 32417 32566 sources."validate-npm-package-name-3.0.0" 32418 - sources."which-1.3.0" 32567 + sources."which-1.3.1" 32419 32568 sources."win-release-1.1.1" 32420 32569 sources."wrappy-1.0.2" 32421 32570 sources."xtend-4.0.1" ··· 32444 32593 sources."chalk-2.4.1" 32445 32594 sources."color-convert-1.9.1" 32446 32595 sources."color-name-1.1.3" 32447 - sources."core-js-2.5.6" 32596 + sources."core-js-2.5.7" 32448 32597 sources."cross-spawn-5.1.0" 32449 32598 sources."escape-string-regexp-1.0.5" 32450 32599 sources."fs-extra-4.0.3" ··· 32464 32613 sources."source-map-support-0.4.18" 32465 32614 sources."supports-color-5.4.0" 32466 32615 sources."universalify-0.1.1" 32467 - sources."which-1.3.0" 32616 + sources."which-1.3.1" 32468 32617 sources."yallist-2.1.2" 32469 32618 ]; 32470 32619 buildInputs = globalBuildInputs; ··· 32513 32662 sources."ansi-styles-3.2.1" 32514 32663 sources."anymatch-1.3.2" 32515 32664 sources."ap-0.1.0" 32516 - sources."append-tree-2.4.1" 32665 + sources."append-tree-2.4.4" 32517 32666 sources."arr-diff-2.0.0" 32518 32667 sources."arr-flatten-1.1.0" 32519 32668 sources."array-lru-1.1.1" ··· 32537 32686 sources."blake2b-2.1.2" 32538 32687 sources."blake2b-wasm-1.1.7" 32539 32688 sources."body-0.1.0" 32540 - sources."boom-4.3.1" 32541 32689 sources."brace-expansion-1.1.11" 32542 32690 (sources."braces-1.8.5" // { 32543 32691 dependencies = [ 32544 32692 sources."kind-of-6.0.2" 32545 32693 ]; 32546 32694 }) 32547 - sources."buffer-alloc-1.1.0" 32548 - sources."buffer-alloc-unsafe-1.0.0" 32695 + sources."buffer-alloc-1.2.0" 32696 + sources."buffer-alloc-unsafe-1.1.0" 32549 32697 sources."buffer-equals-1.0.4" 32550 - sources."buffer-fill-0.1.1" 32551 - sources."buffer-from-1.0.0" 32698 + sources."buffer-fill-1.0.0" 32699 + sources."buffer-from-1.1.0" 32552 32700 sources."buffer-indexof-1.1.1" 32553 32701 sources."bulk-write-stream-1.1.4" 32554 32702 sources."bytes-3.0.0" ··· 32562 32710 sources."codecs-1.2.1" 32563 32711 sources."color-convert-1.9.1" 32564 32712 sources."color-name-1.1.3" 32565 - sources."colors-1.2.5" 32713 + sources."colors-1.3.0" 32566 32714 sources."combined-stream-1.0.6" 32567 32715 sources."concat-map-0.0.1" 32568 32716 sources."concat-stream-1.6.2" ··· 32570 32718 sources."content-types-0.1.0" 32571 32719 sources."core-util-is-1.0.2" 32572 32720 sources."corsify-2.1.0" 32573 - (sources."cryptiles-3.1.2" // { 32574 - dependencies = [ 32575 - sources."boom-5.2.0" 32576 - ]; 32577 - }) 32578 32721 sources."cycle-1.0.3" 32579 32722 sources."dashdash-1.14.1" 32580 32723 sources."dat-dns-1.3.2" ··· 32606 32749 sources."process-nextick-args-1.0.7" 32607 32750 ]; 32608 32751 }) 32609 - (sources."dat-node-3.5.8" // { 32752 + (sources."dat-node-3.5.9" // { 32610 32753 dependencies = [ 32611 - sources."buffer-alloc-unsafe-0.1.1" 32754 + (sources."discovery-swarm-5.1.1" // { 32755 + dependencies = [ 32756 + sources."debug-2.6.9" 32757 + ]; 32758 + }) 32612 32759 sources."minimist-0.0.8" 32613 32760 sources."process-nextick-args-1.0.7" 32614 32761 sources."pump-1.0.3" 32762 + sources."random-access-memory-3.0.0" 32615 32763 sources."unordered-set-2.0.0" 32616 32764 sources."varint-5.0.0" 32617 32765 ]; ··· 32660 32808 sources."filename-regex-2.0.1" 32661 32809 sources."fill-range-2.2.4" 32662 32810 sources."flat-tree-1.6.0" 32663 - sources."for-each-0.3.2" 32811 + sources."for-each-0.3.3" 32664 32812 sources."for-in-1.0.2" 32665 32813 sources."for-own-0.1.5" 32666 32814 sources."forever-agent-0.6.1" ··· 32675 32823 sources."har-schema-2.0.0" 32676 32824 sources."har-validator-5.0.3" 32677 32825 sources."has-flag-3.0.0" 32678 - sources."hawk-6.0.2" 32679 - sources."hoek-4.2.1" 32680 32826 sources."http-methods-0.1.0" 32681 32827 sources."http-signature-1.2.0" 32682 - (sources."hypercore-6.14.0" // { 32828 + (sources."hypercore-6.15.0" // { 32683 32829 dependencies = [ 32684 32830 sources."varint-5.0.0" 32685 32831 ]; 32686 32832 }) 32687 32833 sources."hypercore-protocol-6.6.4" 32688 - (sources."hyperdrive-9.12.3" // { 32834 + (sources."hyperdrive-9.13.0" // { 32689 32835 dependencies = [ 32690 32836 sources."varint-4.0.1" 32691 32837 ]; ··· 32698 32844 sources."ini-1.3.5" 32699 32845 sources."ip-1.1.5" 32700 32846 sources."is-buffer-1.1.6" 32847 + sources."is-callable-1.1.3" 32701 32848 sources."is-dotfile-1.0.3" 32702 32849 sources."is-equal-shallow-0.1.3" 32703 32850 sources."is-extendable-0.1.1" ··· 32706 32853 sources."is-function-1.0.1" 32707 32854 sources."is-glob-2.0.1" 32708 32855 sources."is-number-2.1.0" 32856 + sources."is-options-1.0.1" 32709 32857 sources."is-posix-bracket-0.1.1" 32710 32858 sources."is-primitive-2.0.0" 32711 32859 sources."is-string-1.0.4" ··· 32743 32891 sources."min-document-2.19.0" 32744 32892 sources."minimatch-3.0.4" 32745 32893 sources."minimist-1.2.0" 32746 - sources."mirror-folder-2.2.0" 32894 + sources."mirror-folder-3.0.0" 32747 32895 sources."mkdirp-0.5.1" 32748 32896 sources."ms-2.0.0" 32749 32897 sources."multi-random-access-2.1.1" 32750 32898 sources."multicast-dns-7.0.0" 32751 32899 sources."multicb-1.2.2" 32752 - sources."multistream-2.1.0" 32900 + sources."multistream-2.1.1" 32753 32901 sources."mute-stream-0.0.7" 32754 32902 sources."mutexify-1.2.0" 32755 32903 sources."nan-2.10.0" ··· 32807 32955 sources."remove-trailing-separator-1.1.0" 32808 32956 sources."repeat-element-1.1.2" 32809 32957 sources."repeat-string-1.6.1" 32810 - sources."request-2.86.0" 32958 + sources."request-2.87.0" 32811 32959 sources."revalidator-0.1.8" 32812 32960 sources."rimraf-2.6.2" 32813 32961 sources."rusha-0.8.13" 32814 32962 sources."safe-buffer-5.1.2" 32963 + sources."safer-buffer-2.1.2" 32815 32964 sources."signed-varint-2.0.1" 32816 32965 sources."simple-sha1-2.1.1" 32817 - sources."siphash24-1.1.0" 32966 + sources."siphash24-1.1.1" 32818 32967 sources."slice-ansi-1.0.0" 32819 - sources."sntp-2.1.0" 32820 32968 sources."sodium-javascript-0.5.5" 32821 32969 sources."sodium-native-2.1.6" 32822 32970 sources."sodium-universal-2.0.0" 32823 - sources."sorted-array-functions-1.1.0" 32971 + sources."sorted-array-functions-1.2.0" 32824 32972 sources."sorted-indexof-1.0.0" 32825 32973 sources."sparse-bitfield-3.0.3" 32826 32974 sources."speedometer-1.0.0" 32827 - sources."sshpk-1.14.1" 32975 + sources."sshpk-1.14.2" 32828 32976 sources."stack-trace-0.0.10" 32829 32977 sources."status-logger-3.1.1" 32830 32978 sources."stream-collector-1.0.1" ··· 32860 33008 sources."unixify-1.0.0" 32861 33009 sources."unordered-array-remove-1.0.2" 32862 33010 sources."unordered-set-1.1.0" 32863 - sources."untildify-3.0.2" 33011 + sources."untildify-3.0.3" 32864 33012 sources."util-deprecate-1.0.2" 32865 33013 sources."utile-0.3.0" 32866 33014 sources."utp-native-1.7.1" ··· 32875 33023 }) 32876 33024 sources."wrap-ansi-3.0.1" 32877 33025 sources."wrappy-1.0.2" 32878 - sources."xhr-2.4.1" 33026 + sources."xhr-2.5.0" 32879 33027 sources."xsalsa20-1.0.2" 32880 33028 sources."xtend-4.0.1" 32881 33029 ]; ··· 32964 33112 sources."fresh-0.2.4" 32965 33113 sources."from-0.1.7" 32966 33114 sources."hiredis-0.4.1" 32967 - sources."http-parser-js-0.4.12" 33115 + sources."http-parser-js-0.4.13" 32968 33116 sources."inherits-2.0.3" 32969 33117 sources."ini-1.3.5" 32970 33118 sources."ipaddr.js-1.0.5" ··· 33064 33212 sources."basic-auth-1.1.0" 33065 33213 sources."bindings-1.2.1" 33066 33214 sources."bl-0.8.2" 33067 - sources."buffer-alloc-1.1.0" 33068 - sources."buffer-alloc-unsafe-0.1.1" 33069 - sources."buffer-fill-0.1.1" 33215 + sources."buffer-alloc-1.2.0" 33216 + sources."buffer-alloc-unsafe-1.1.0" 33217 + sources."buffer-fill-1.0.0" 33070 33218 sources."bytewise-1.1.0" 33071 33219 sources."bytewise-core-1.2.3" 33072 33220 sources."cookie-signature-1.1.0" ··· 33215 33363 sha512 = "1bvfy3zh4ir1griyp1af3c2vc11wrkxyi4h8bfsdlgwwgq9azp1l8l1v03b88x69fqr3llr6kgacjr1cykd64p10dr5438zjlw1vcr4"; 33216 33364 }; 33217 33365 dependencies = [ 33218 - sources."JSONStream-1.3.2" 33366 + sources."JSONStream-1.3.3" 33219 33367 sources."ajv-5.5.2" 33220 33368 sources."asn1-0.2.3" 33221 33369 sources."assert-plus-1.0.0" 33222 - sources."async-2.6.0" 33370 + sources."async-2.6.1" 33223 33371 sources."asynckit-0.4.0" 33224 - sources."aws-sdk-2.241.1" 33372 + sources."aws-sdk-2.252.1" 33225 33373 sources."aws-sign2-0.7.0" 33226 33374 sources."aws4-1.7.0" 33227 33375 sources."base64-js-1.3.0" 33228 33376 sources."bcrypt-pbkdf-1.0.1" 33229 - sources."boom-4.3.1" 33230 33377 sources."buffer-4.9.1" 33231 33378 sources."caseless-0.12.0" 33232 33379 sources."co-4.6.0" 33233 33380 sources."combined-stream-1.0.6" 33234 33381 sources."core-util-is-1.0.2" 33235 - (sources."cryptiles-3.1.2" // { 33236 - dependencies = [ 33237 - sources."boom-5.2.0" 33238 - ]; 33239 - }) 33240 33382 sources."dashdash-1.14.1" 33241 - sources."decimal.js-10.0.0" 33383 + sources."decimal.js-10.0.1" 33242 33384 sources."delayed-stream-1.0.0" 33243 33385 sources."ecc-jsbn-0.1.1" 33244 33386 sources."events-1.1.1" ··· 33251 33393 sources."getpass-0.1.7" 33252 33394 sources."har-schema-2.0.0" 33253 33395 sources."har-validator-5.0.3" 33254 - sources."hawk-6.0.2" 33255 - sources."hoek-4.2.1" 33256 33396 sources."http-signature-1.2.0" 33257 33397 sources."ieee754-1.1.8" 33258 33398 sources."ini-1.3.5" ··· 33277 33417 sources."punycode-1.3.2" 33278 33418 sources."qs-6.5.2" 33279 33419 sources."querystring-0.2.0" 33280 - (sources."request-2.86.0" // { 33420 + (sources."request-2.87.0" // { 33281 33421 dependencies = [ 33282 33422 sources."punycode-1.4.1" 33283 33423 ]; 33284 33424 }) 33285 33425 sources."safe-buffer-5.1.2" 33426 + sources."safer-buffer-2.1.2" 33286 33427 sources."sax-1.2.1" 33287 - sources."sntp-2.1.0" 33288 - sources."sshpk-1.14.1" 33428 + sources."sshpk-1.14.2" 33289 33429 sources."through-2.3.8" 33290 33430 sources."tough-cookie-2.3.4" 33291 33431 sources."tunnel-agent-0.6.0" ··· 33490 33630 sources."request-2.79.0" 33491 33631 sources."rimraf-2.6.2" 33492 33632 sources."safe-buffer-5.1.2" 33633 + sources."safer-buffer-2.1.2" 33493 33634 sources."set-immediate-shim-1.0.1" 33494 33635 sources."sntp-1.0.9" 33495 33636 sources."split-1.0.1" 33496 - (sources."sshpk-1.14.1" // { 33637 + (sources."sshpk-1.14.2" // { 33497 33638 dependencies = [ 33498 33639 sources."assert-plus-1.0.0" 33499 33640 ]; ··· 33511 33652 sources."util-deprecate-1.0.2" 33512 33653 sources."uuid-3.2.1" 33513 33654 sources."verror-1.10.0" 33514 - sources."which-1.3.0" 33655 + sources."which-1.3.1" 33515 33656 sources."wrappy-1.0.2" 33516 33657 sources."xmlbuilder-8.2.2" 33517 33658 sources."xtend-4.0.1" ··· 33576 33717 sources."concat-map-0.0.1" 33577 33718 sources."conf-1.4.0" 33578 33719 sources."convert-source-map-1.5.1" 33579 - sources."core-js-2.5.6" 33720 + sources."core-js-2.5.7" 33580 33721 sources."cross-spawn-5.1.0" 33581 33722 sources."currently-unhandled-0.4.1" 33582 33723 sources."debug-2.6.9" ··· 33679 33820 sources."os-tmpdir-1.0.2" 33680 33821 sources."p-cancelable-0.3.0" 33681 33822 sources."p-finally-1.0.0" 33682 - sources."p-limit-1.2.0" 33823 + sources."p-limit-1.3.0" 33683 33824 sources."p-locate-2.0.0" 33684 33825 sources."p-timeout-1.2.1" 33685 33826 sources."p-try-1.0.0" ··· 33736 33877 sources."url-to-options-1.0.1" 33737 33878 sources."validate-npm-package-license-3.0.3" 33738 33879 sources."whatwg-fetch-2.0.4" 33739 - sources."which-1.3.0" 33880 + sources."which-1.3.1" 33740 33881 sources."wrap-ansi-3.0.1" 33741 33882 sources."write-file-atomic-2.3.0" 33742 33883 sources."yallist-2.1.2" ··· 33759 33900 sha512 = "0hw70vjlg6z0y9kf6vjr7g0w9hbm426fwvyzr88l62c5hd9mxrbw5v34b6zb31vbbyda3mkvcwgfnxgqaxvpn0wlrxr0va43pbzygbd"; 33760 33901 }; 33761 33902 dependencies = [ 33762 - sources."acorn-5.5.3" 33903 + sources."acorn-5.6.2" 33763 33904 (sources."acorn-jsx-3.0.1" // { 33764 33905 dependencies = [ 33765 33906 sources."acorn-3.3.0" ··· 33782 33923 }) 33783 33924 sources."balanced-match-1.0.0" 33784 33925 sources."brace-expansion-1.1.11" 33785 - sources."buffer-from-1.0.0" 33926 + sources."buffer-from-1.1.0" 33786 33927 sources."caller-path-0.1.0" 33787 33928 sources."callsites-0.2.0" 33788 33929 (sources."chalk-2.4.1" // { ··· 33845 33986 sources."isarray-1.0.0" 33846 33987 sources."isexe-2.0.0" 33847 33988 sources."js-tokens-3.0.2" 33848 - sources."js-yaml-3.11.0" 33989 + sources."js-yaml-3.12.0" 33849 33990 sources."json-schema-traverse-0.3.1" 33850 33991 sources."json-stable-stringify-without-jsonify-1.0.1" 33851 33992 sources."levn-0.3.0" ··· 33906 34047 sources."type-check-0.3.2" 33907 34048 sources."typedarray-0.0.6" 33908 34049 sources."util-deprecate-1.0.2" 33909 - sources."which-1.3.0" 34050 + sources."which-1.3.1" 33910 34051 sources."wordwrap-1.0.0" 33911 34052 sources."wrappy-1.0.2" 33912 34053 sources."write-0.2.1" ··· 33930 34071 sha512 = "0xcqrxpj24cns2rq91k2k2khr96129p7ncyjx4bda77dy0nkwn53lv6dhjbr0nq1bm6f13p0as4jkqcf3j4lygd7z1l2mbi829xyglw"; 33931 34072 }; 33932 34073 dependencies = [ 33933 - sources."acorn-5.5.3" 34074 + sources."acorn-5.6.2" 33934 34075 (sources."acorn-jsx-3.0.1" // { 33935 34076 dependencies = [ 33936 34077 sources."acorn-3.3.0" ··· 33953 34094 }) 33954 34095 sources."balanced-match-1.0.0" 33955 34096 sources."brace-expansion-1.1.11" 33956 - sources."buffer-from-1.0.0" 34097 + sources."buffer-from-1.1.0" 33957 34098 sources."caller-path-0.1.0" 33958 34099 sources."callsites-0.2.0" 33959 34100 (sources."chalk-1.1.3" // { ··· 34028 34169 sources."isarray-1.0.0" 34029 34170 sources."isexe-2.0.0" 34030 34171 sources."js-tokens-3.0.2" 34031 - sources."js-yaml-3.11.0" 34172 + sources."js-yaml-3.12.0" 34032 34173 sources."json-schema-traverse-0.3.1" 34033 34174 sources."json-stable-stringify-without-jsonify-1.0.1" 34034 34175 sources."levn-0.3.0" ··· 34092 34233 sources."type-check-0.3.2" 34093 34234 sources."typedarray-0.0.6" 34094 34235 sources."util-deprecate-1.0.2" 34095 - sources."which-1.3.0" 34236 + sources."which-1.3.1" 34096 34237 sources."wordwrap-1.0.0" 34097 34238 sources."wrappy-1.0.2" 34098 34239 sources."write-0.2.1" ··· 34143 34284 sources."aws-sign2-0.7.0" 34144 34285 sources."aws4-1.7.0" 34145 34286 sources."bcrypt-pbkdf-1.0.1" 34146 - sources."boom-4.3.1" 34287 + sources."buffer-from-1.1.0" 34147 34288 sources."builtin-modules-1.1.1" 34148 34289 sources."camelcase-2.1.1" 34149 34290 sources."camelcase-keys-2.1.0" ··· 34155 34296 sources."color-convert-1.9.1" 34156 34297 sources."color-name-1.1.3" 34157 34298 sources."combined-stream-1.0.6" 34158 - sources."concat-stream-1.6.0" 34299 + sources."concat-stream-1.6.2" 34159 34300 sources."core-util-is-1.0.2" 34160 - (sources."cryptiles-3.1.2" // { 34161 - dependencies = [ 34162 - sources."boom-5.2.0" 34163 - ]; 34164 - }) 34165 34301 sources."currently-unhandled-0.4.1" 34166 34302 sources."dashdash-1.14.1" 34167 34303 sources."debug-2.6.9" ··· 34173 34309 sources."escape-string-regexp-1.0.5" 34174 34310 sources."exit-hook-1.1.1" 34175 34311 sources."extend-3.0.1" 34176 - sources."extract-zip-1.6.6" 34312 + sources."extract-zip-1.6.7" 34177 34313 sources."extsprintf-1.3.0" 34178 34314 sources."fast-deep-equal-1.1.0" 34179 34315 sources."fast-json-stable-stringify-2.0.0" ··· 34190 34326 sources."has-ansi-2.0.0" 34191 34327 sources."has-flag-3.0.0" 34192 34328 sources."hasha-2.2.0" 34193 - sources."hawk-6.0.2" 34194 - sources."hoek-4.2.1" 34195 34329 sources."hosted-git-info-2.6.0" 34196 34330 sources."http-signature-1.2.0" 34197 34331 sources."indent-string-2.1.0" ··· 34223 34357 sources."mime-types-2.1.18" 34224 34358 sources."mimic-fn-1.2.0" 34225 34359 sources."minimist-1.2.0" 34226 - sources."mkdirp-0.5.0" 34360 + sources."mkdirp-0.5.1" 34227 34361 sources."mkpath-1.0.0" 34228 34362 sources."ms-2.0.0" 34229 34363 sources."node-phantom-simple-2.2.4" ··· 34266 34400 sources."readable-stream-2.3.6" 34267 34401 sources."redent-1.0.0" 34268 34402 sources."repeating-2.0.1" 34269 - sources."request-2.86.0" 34403 + sources."request-2.87.0" 34270 34404 sources."request-progress-2.0.1" 34271 34405 sources."restore-cursor-1.0.1" 34272 34406 sources."safe-buffer-5.1.2" 34407 + sources."safer-buffer-2.1.2" 34273 34408 sources."semver-5.5.0" 34274 34409 sources."signal-exit-3.0.2" 34275 - sources."sntp-2.1.0" 34276 34410 sources."spdx-correct-3.0.0" 34277 34411 sources."spdx-exceptions-2.1.0" 34278 34412 sources."spdx-expression-parse-3.0.0" 34279 34413 sources."spdx-license-ids-3.0.0" 34280 - sources."sshpk-1.14.1" 34414 + sources."sshpk-1.14.2" 34281 34415 sources."string_decoder-1.1.1" 34282 34416 sources."strip-ansi-3.0.1" 34283 34417 sources."strip-bom-2.0.0" ··· 34294 34428 sources."uuid-3.2.1" 34295 34429 sources."validate-npm-package-license-3.0.3" 34296 34430 sources."verror-1.10.0" 34297 - sources."which-1.3.0" 34431 + sources."which-1.3.1" 34298 34432 sources."yauzl-2.4.1" 34299 34433 sources."zen-observable-0.5.2" 34300 34434 ]; ··· 34446 34580 sources."preserve-0.2.0" 34447 34581 (sources."prettyjson-1.2.1" // { 34448 34582 dependencies = [ 34449 - sources."colors-1.2.5" 34583 + sources."colors-1.3.0" 34450 34584 sources."minimist-1.2.0" 34451 34585 ]; 34452 34586 }) ··· 34505 34639 sha512 = "0j00v2mkrqla05ynq3cziyh4vslsshbkxdyqbzzg2vkg3if0ln0klsf5hck457pxksqky9gcsybc73c2sf6hgf910wzz5yljlxc5b7g"; 34506 34640 }; 34507 34641 dependencies = [ 34508 - sources."async-2.6.0" 34642 + sources."async-2.6.1" 34509 34643 sources."debug-3.1.0" 34510 34644 sources."lodash-4.17.10" 34511 34645 sources."lodash.groupby-4.6.0" 34512 34646 sources."microee-0.0.6" 34513 34647 sources."minilog-3.1.0" 34514 34648 sources."ms-2.0.0" 34515 - sources."simple-git-1.92.0" 34649 + sources."simple-git-1.95.1" 34516 34650 sources."tabtab-git+https://github.com/mixu/node-tabtab.git" 34517 34651 ]; 34518 34652 buildInputs = globalBuildInputs; ··· 34890 35024 sources."ms-2.0.0" 34891 35025 sources."multipipe-0.1.2" 34892 35026 sources."nanomatch-1.2.9" 34893 - sources."natives-1.1.3" 35027 + sources."natives-1.1.4" 34894 35028 sources."object-assign-3.0.0" 34895 35029 sources."object-copy-0.1.0" 34896 35030 sources."object-visit-1.0.1" ··· 35011 35145 sources."vinyl-0.4.6" 35012 35146 ]; 35013 35147 }) 35014 - sources."which-1.3.0" 35148 + sources."which-1.3.1" 35015 35149 sources."wrappy-1.0.2" 35016 35150 sources."xtend-4.0.1" 35017 35151 ]; ··· 35129 35263 html-minifier = nodeEnv.buildNodePackage { 35130 35264 name = "html-minifier"; 35131 35265 packageName = "html-minifier"; 35132 - version = "3.5.15"; 35266 + version = "3.5.16"; 35133 35267 src = fetchurl { 35134 - url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.15.tgz"; 35135 - sha512 = "01ni8s31nr1rb70wqi980nyfwir4z2z5mjvs454rgylns4nfyqvci581b40s1b67hgd95anq46j4yf5r947y5wzvncr7dgsysnvi5ir"; 35268 + url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.16.tgz"; 35269 + sha512 = "2h1ps83xn0f135rff92d6qcwlyh3wja2x3f4rf9clg2hs6fd66s6grsvpvx01gp8yihapv4dxkd0ws10bgbj850s5lv9259niy49znc"; 35136 35270 }; 35137 35271 dependencies = [ 35138 35272 sources."camel-case-3.0.0" ··· 35144 35278 sources."param-case-2.1.1" 35145 35279 sources."relateurl-0.2.7" 35146 35280 sources."source-map-0.5.7" 35147 - (sources."uglify-js-3.3.25" // { 35281 + (sources."uglify-js-3.3.28" // { 35148 35282 dependencies = [ 35149 35283 sources."source-map-0.6.1" 35150 35284 ]; ··· 35203 35337 sources."arr-flatten-1.1.0" 35204 35338 sources."array-flatten-1.1.1" 35205 35339 sources."array-unique-0.2.1" 35206 - sources."async-2.6.0" 35340 + sources."async-2.6.1" 35207 35341 sources."async-each-1.0.1" 35208 35342 sources."async-limiter-1.0.0" 35209 35343 sources."asynckit-0.4.0" ··· 35219 35353 sources."kind-of-6.0.2" 35220 35354 ]; 35221 35355 }) 35222 - sources."buffer-alloc-1.1.0" 35223 - sources."buffer-alloc-unsafe-0.1.1" 35356 + sources."buffer-alloc-1.2.0" 35357 + sources."buffer-alloc-unsafe-1.1.0" 35224 35358 sources."buffer-crc32-0.2.13" 35225 - sources."buffer-fill-0.1.1" 35359 + sources."buffer-fill-1.0.0" 35226 35360 sources."bytes-3.0.0" 35227 35361 sources."chalk-2.4.1" 35228 35362 sources."chardet-0.4.2" ··· 35242 35376 sources."continuable-cache-0.3.1" 35243 35377 sources."cookie-0.3.1" 35244 35378 sources."cookie-signature-1.0.6" 35245 - sources."cookiejar-2.1.1" 35379 + sources."cookiejar-2.1.2" 35246 35380 sources."core-util-is-1.0.2" 35247 35381 sources."crc-3.5.0" 35248 35382 sources."crc32-stream-2.0.0" ··· 35281 35415 sources."filename-regex-2.0.1" 35282 35416 sources."fill-range-2.2.4" 35283 35417 sources."finalhandler-1.1.1" 35284 - sources."follow-redirects-1.4.1" 35418 + sources."follow-redirects-1.5.0" 35285 35419 sources."for-in-1.0.2" 35286 35420 sources."for-own-0.1.5" 35287 35421 sources."form-data-2.3.2" ··· 35298 35432 sources."graceful-fs-4.1.11" 35299 35433 sources."has-flag-3.0.0" 35300 35434 sources."http-errors-1.6.3" 35301 - sources."http-parser-js-0.4.12" 35435 + sources."http-parser-js-0.4.13" 35302 35436 sources."http-proxy-1.17.0" 35303 35437 (sources."http-proxy-middleware-0.17.4" // { 35304 35438 dependencies = [ ··· 35355 35489 sources."mimic-fn-1.2.0" 35356 35490 sources."minimatch-3.0.4" 35357 35491 sources."minimist-1.2.0" 35358 - sources."minipass-2.3.0" 35492 + sources."minipass-2.3.3" 35359 35493 sources."minizlib-1.1.0" 35360 35494 sources."mkdirp-0.5.1" 35361 35495 sources."ms-2.0.0" ··· 35423 35557 sources."strip-ansi-4.0.0" 35424 35558 sources."superagent-3.8.3" 35425 35559 sources."supports-color-5.4.0" 35426 - (sources."tar-4.4.2" // { 35560 + (sources."tar-4.4.4" // { 35427 35561 dependencies = [ 35428 35562 sources."minimist-0.0.8" 35429 35563 sources."safe-buffer-5.1.2" ··· 35439 35573 }) 35440 35574 sources."tmp-0.0.33" 35441 35575 sources."to-buffer-1.1.1" 35442 - sources."tslib-1.9.1" 35576 + sources."tslib-1.9.2" 35443 35577 sources."type-is-1.6.16" 35444 35578 sources."ultron-1.1.1" 35445 35579 sources."unpipe-1.0.0" 35446 - sources."untildify-3.0.2" 35580 + sources."untildify-3.0.3" 35447 35581 sources."util-deprecate-1.0.2" 35448 35582 sources."utils-merge-1.0.1" 35449 35583 sources."uuid-3.2.1" 35450 35584 sources."vary-1.1.2" 35451 35585 sources."websocket-driver-0.7.0" 35452 35586 sources."websocket-extensions-0.1.3" 35453 - sources."which-1.3.0" 35587 + sources."which-1.3.1" 35454 35588 sources."win-release-1.1.1" 35455 35589 sources."wrap-ansi-3.0.1" 35456 35590 sources."wrappy-1.0.2" ··· 35524 35658 sources."inherits-2.0.3" 35525 35659 sources."is-buffer-1.1.6" 35526 35660 sources."isexe-2.0.0" 35527 - (sources."js-yaml-3.11.0" // { 35661 + (sources."js-yaml-3.12.0" // { 35528 35662 dependencies = [ 35529 35663 sources."esprima-4.0.0" 35530 35664 ]; ··· 35560 35694 ]; 35561 35695 }) 35562 35696 sources."uglify-to-browserify-1.0.2" 35563 - sources."which-1.3.0" 35697 + sources."which-1.3.1" 35564 35698 sources."window-size-0.1.0" 35565 35699 sources."wordwrap-1.0.0" 35566 35700 sources."wrappy-1.0.2" ··· 35592 35726 sources."concat-map-0.0.1" 35593 35727 sources."core-util-is-1.0.2" 35594 35728 sources."cycle-1.0.3" 35595 - sources."dtrace-provider-0.8.6" 35729 + sources."dtrace-provider-0.8.7" 35596 35730 sources."eyes-0.1.8" 35597 35731 sources."glob-6.0.4" 35598 35732 sources."imap-0.8.19" ··· 35607 35741 sources."minimist-0.0.8" 35608 35742 ]; 35609 35743 }) 35610 - sources."moment-2.22.1" 35744 + sources."moment-2.22.2" 35611 35745 sources."mv-2.1.1" 35612 35746 sources."nan-2.10.0" 35613 35747 sources."ncp-2.0.0" ··· 35618 35752 sources."printf-0.2.5" 35619 35753 sources."readable-stream-1.1.14" 35620 35754 sources."rimraf-2.4.5" 35621 - sources."safe-json-stringify-1.1.0" 35755 + sources."safe-json-stringify-1.2.0" 35622 35756 sources."semver-5.3.0" 35623 35757 sources."stack-trace-0.0.10" 35624 35758 sources."string_decoder-0.10.31" ··· 35640 35774 javascript-typescript-langserver = nodeEnv.buildNodePackage { 35641 35775 name = "javascript-typescript-langserver"; 35642 35776 packageName = "javascript-typescript-langserver"; 35643 - version = "2.9.0"; 35777 + version = "2.9.2"; 35644 35778 src = fetchurl { 35645 - url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.0.tgz"; 35646 - sha512 = "2j3dppwmpx29w1xxj6pmi1ddyc0v9y6dlw42nr1in2c7qddalh3axqx7b6p21qy5j0gf43wdaxfknk7klr5zyr0flcx552g5asxx7dk"; 35779 + url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.2.tgz"; 35780 + sha512 = "01pqqc94lq3c9010wbb0zafs81b5z4mzr06864kf4vs3zih30xfral4rbk9d2q2m2kbawcym8zlj5xydgig5k40kzqy1hyhallcm5dm"; 35647 35781 }; 35648 35782 dependencies = [ 35649 35783 sources."ansi-color-0.2.1" ··· 35689 35823 sources."opentracing-0.14.3" 35690 35824 sources."path-is-absolute-1.0.1" 35691 35825 sources."pathval-1.1.0" 35692 - sources."rxjs-5.5.10" 35826 + sources."rxjs-5.5.11" 35693 35827 sources."semaphore-async-await-1.5.1" 35694 35828 sources."string-similarity-1.2.0" 35695 35829 sources."string-template-0.2.1" ··· 35708 35842 ]; 35709 35843 }) 35710 35844 sources."vscode-languageserver-protocol-3.5.1" 35711 - sources."vscode-languageserver-types-3.7.2" 35712 - sources."vscode-uri-1.0.3" 35845 + sources."vscode-languageserver-types-3.8.1" 35846 + sources."vscode-uri-1.0.5" 35713 35847 sources."wrappy-1.0.2" 35714 35848 sources."xorshift-0.2.1" 35715 35849 sources."xtend-4.0.1" ··· 35969 36103 sources."combined-stream-1.0.6" 35970 36104 sources."commander-2.11.0" 35971 36105 sources."component-emitter-1.2.1" 35972 - sources."cookiejar-2.1.1" 36106 + sources."cookiejar-2.1.2" 35973 36107 sources."core-util-is-1.0.2" 35974 36108 sources."debug-3.1.0" 35975 36109 sources."delayed-stream-1.0.0" ··· 35980 36114 sources."graphlib-2.1.5" 35981 36115 sources."inherits-2.0.3" 35982 36116 sources."isarray-1.0.0" 35983 - sources."js-yaml-3.11.0" 36117 + sources."js-yaml-3.12.0" 35984 36118 sources."lodash-4.17.10" 35985 36119 sources."methods-1.1.2" 35986 36120 sources."mime-1.6.0" ··· 35990 36124 sources."native-promise-only-0.8.1" 35991 36125 sources."path-loader-1.0.4" 35992 36126 sources."process-nextick-args-2.0.0" 35993 - sources."punycode-2.1.0" 36127 + sources."punycode-2.1.1" 35994 36128 sources."qs-6.5.2" 35995 36129 sources."readable-stream-2.3.6" 35996 36130 sources."safe-buffer-5.1.2" ··· 36013 36147 json-server = nodeEnv.buildNodePackage { 36014 36148 name = "json-server"; 36015 36149 packageName = "json-server"; 36016 - version = "0.12.2"; 36150 + version = "0.13.0"; 36017 36151 src = fetchurl { 36018 - url = "https://registry.npmjs.org/json-server/-/json-server-0.12.2.tgz"; 36019 - sha512 = "3dqw05mkw5k42zdpjhg3cjiq7bfh8x1zxllrwyz0jgwmd4p79079fhsiifazqa5is659lzdnmiyiabxy62jjjk55xa296rdhyajc2vm"; 36152 + url = "https://registry.npmjs.org/json-server/-/json-server-0.13.0.tgz"; 36153 + sha512 = "0lz3n3y62gvdiqazgqbpfb9pdxwjvrjaagzs46ihsl6h6k18d7qmcw6bxiv30jkm3b6alb6p0l48jrym12sksx23am9bmibx45jwiq2"; 36020 36154 }; 36021 36155 dependencies = [ 36022 36156 sources."accepts-1.3.5" ··· 36033 36167 sources."basic-auth-2.0.0" 36034 36168 sources."bcrypt-pbkdf-1.0.1" 36035 36169 sources."body-parser-1.18.3" 36036 - sources."boom-4.3.1" 36037 36170 sources."boxen-1.3.0" 36038 36171 sources."bytes-3.0.0" 36039 36172 sources."camelcase-4.1.0" ··· 36048 36181 sources."color-convert-1.9.1" 36049 36182 sources."color-name-1.1.3" 36050 36183 sources."combined-stream-1.0.6" 36051 - sources."compressible-2.0.13" 36052 - sources."compression-1.7.2" 36184 + sources."compressible-2.0.14" 36185 + (sources."compression-1.7.2" // { 36186 + dependencies = [ 36187 + sources."mime-db-1.34.0" 36188 + ]; 36189 + }) 36053 36190 sources."configstore-3.1.2" 36054 36191 sources."connect-pause-0.1.1" 36055 36192 sources."content-disposition-0.5.2" ··· 36060 36197 sources."cors-2.8.4" 36061 36198 sources."create-error-class-3.0.2" 36062 36199 sources."cross-spawn-5.1.0" 36063 - (sources."cryptiles-3.1.2" // { 36064 - dependencies = [ 36065 - sources."boom-5.2.0" 36066 - ]; 36067 - }) 36068 36200 sources."crypto-random-string-1.0.0" 36069 36201 sources."dashdash-1.14.1" 36070 36202 sources."debug-2.6.9" 36071 36203 sources."decamelize-1.2.0" 36072 - sources."deep-extend-0.5.1" 36204 + sources."deep-extend-0.6.0" 36073 36205 sources."delayed-stream-1.0.0" 36074 36206 sources."depd-1.1.2" 36075 36207 sources."destroy-1.0.4" ··· 36125 36257 sources."har-schema-2.0.0" 36126 36258 sources."har-validator-5.0.3" 36127 36259 sources."has-flag-3.0.0" 36128 - sources."hawk-6.0.2" 36129 - sources."hoek-4.2.1" 36130 36260 sources."http-errors-1.6.3" 36131 36261 sources."http-signature-1.2.0" 36132 36262 sources."iconv-lite-0.4.23" ··· 36178 36308 sources."minimist-1.2.0" 36179 36309 sources."morgan-1.9.0" 36180 36310 sources."ms-2.0.0" 36181 - sources."nanoid-1.0.2" 36311 + sources."nanoid-1.0.3" 36182 36312 sources."negotiator-0.6.1" 36183 36313 sources."npm-run-path-2.0.2" 36184 36314 sources."number-is-nan-1.0.1" ··· 36188 36318 sources."on-headers-1.0.1" 36189 36319 sources."os-locale-2.1.0" 36190 36320 sources."p-finally-1.0.0" 36191 - sources."p-limit-1.2.0" 36321 + sources."p-limit-1.3.0" 36192 36322 sources."p-locate-2.0.0" 36193 36323 sources."p-try-1.0.0" 36194 36324 sources."package-json-4.0.1" ··· 36208 36338 sources."qs-6.5.2" 36209 36339 sources."range-parser-1.2.0" 36210 36340 sources."raw-body-2.3.3" 36211 - sources."rc-1.2.7" 36341 + sources."rc-1.2.8" 36212 36342 sources."registry-auth-token-3.3.2" 36213 36343 sources."registry-url-3.1.0" 36214 - sources."request-2.86.0" 36344 + sources."request-2.87.0" 36215 36345 sources."require-directory-2.1.1" 36216 36346 sources."require-main-filename-1.0.1" 36217 36347 sources."safe-buffer-5.1.1" ··· 36227 36357 sources."shebang-command-1.2.0" 36228 36358 sources."shebang-regex-1.0.0" 36229 36359 sources."signal-exit-3.0.2" 36230 - sources."sntp-2.1.0" 36231 - sources."sshpk-1.14.1" 36360 + sources."sshpk-1.14.2" 36232 36361 sources."statuses-1.5.0" 36233 36362 sources."steno-0.4.4" 36234 36363 sources."string-width-2.1.1" ··· 36251 36380 sources."uuid-3.2.1" 36252 36381 sources."vary-1.1.2" 36253 36382 sources."verror-1.10.0" 36254 - sources."which-1.3.0" 36383 + sources."which-1.3.1" 36255 36384 sources."which-module-2.0.0" 36256 36385 sources."widest-line-2.0.0" 36257 36386 (sources."wrap-ansi-2.1.0" // { ··· 36284 36413 js-yaml = nodeEnv.buildNodePackage { 36285 36414 name = "js-yaml"; 36286 36415 packageName = "js-yaml"; 36287 - version = "3.11.0"; 36416 + version = "3.12.0"; 36288 36417 src = fetchurl { 36289 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz"; 36290 - sha512 = "0gka65n4d9gmcy0c8cy5h55r273dbxnw54gibp2nq5mmdmksjgb2nhcdfgfxs1wg3yayyrydn2v79fny7hdyq907dg87vmgjnsnr8mi"; 36418 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz"; 36419 + sha512 = "3f8k2gvi3gnj9gpr3dnm5n5vpy2w68pshqk4hajlsmkb37ky30cnqza82l8sq153zx1nk67gizcm1ngmvlajw53hkwg4g96gir7d2rw"; 36291 36420 }; 36292 36421 dependencies = [ 36293 36422 sources."argparse-1.0.10" ··· 36332 36461 sources."arraybuffer.slice-0.0.7" 36333 36462 sources."asn1-0.2.3" 36334 36463 sources."assert-plus-1.0.0" 36335 - sources."ast-types-0.11.3" 36336 - sources."async-2.6.0" 36464 + sources."ast-types-0.11.5" 36465 + sources."async-2.6.1" 36337 36466 sources."async-each-1.0.1" 36338 36467 sources."async-limiter-1.0.0" 36339 36468 sources."asynckit-0.4.0" ··· 36356 36485 sources."blob-0.0.4" 36357 36486 sources."bluebird-3.5.1" 36358 36487 sources."body-parser-1.18.3" 36359 - sources."boom-4.3.1" 36488 + sources."boom-2.10.1" 36360 36489 sources."brace-expansion-1.1.11" 36361 36490 (sources."braces-1.8.5" // { 36362 36491 dependencies = [ ··· 36372 36501 sources."chokidar-1.7.0" 36373 36502 sources."circular-json-0.5.4" 36374 36503 sources."co-4.6.0" 36375 - sources."colors-1.2.5" 36504 + sources."colors-1.3.0" 36376 36505 sources."combine-lists-1.0.1" 36377 36506 sources."combined-stream-1.0.6" 36378 36507 sources."commander-2.15.1" ··· 36387 36516 }) 36388 36517 sources."content-type-1.0.4" 36389 36518 sources."cookie-0.3.1" 36390 - sources."core-js-2.5.6" 36519 + sources."core-js-2.5.7" 36391 36520 sources."core-util-is-1.0.2" 36392 - (sources."cryptiles-3.1.2" // { 36393 - dependencies = [ 36394 - sources."boom-5.2.0" 36395 - ]; 36396 - }) 36521 + sources."cryptiles-2.0.5" 36397 36522 sources."custom-event-1.0.1" 36398 36523 sources."dashdash-1.14.1" 36399 36524 sources."data-uri-to-buffer-1.2.0" ··· 36450 36575 sources."filename-regex-2.0.1" 36451 36576 sources."fill-range-2.2.4" 36452 36577 sources."finalhandler-1.1.0" 36453 - sources."follow-redirects-1.4.1" 36578 + sources."follow-redirects-1.5.0" 36454 36579 sources."for-in-1.0.2" 36455 36580 sources."for-own-0.1.5" 36456 36581 sources."forever-agent-0.6.1" ··· 36479 36604 sources."has-ansi-2.0.0" 36480 36605 sources."has-binary2-1.0.3" 36481 36606 sources."has-cors-1.1.0" 36482 - sources."hawk-6.0.2" 36607 + sources."hawk-3.1.3" 36483 36608 sources."hipchat-notifier-1.1.0" 36484 - sources."hoek-4.2.1" 36609 + sources."hoek-2.16.3" 36485 36610 sources."http-errors-1.6.3" 36486 36611 (sources."http-proxy-1.17.0" // { 36487 36612 dependencies = [ ··· 36530 36655 sources."libmime-3.0.0" 36531 36656 sources."libqp-1.1.0" 36532 36657 sources."lodash-4.17.10" 36533 - (sources."log4js-2.6.1" // { 36658 + (sources."log4js-2.8.0" // { 36534 36659 dependencies = [ 36535 36660 sources."assert-plus-0.2.0" 36536 36661 sources."aws-sign2-0.6.0" 36537 - sources."boom-2.10.1" 36538 36662 sources."caseless-0.11.0" 36539 - sources."cryptiles-2.0.5" 36540 36663 sources."debug-3.1.0" 36541 36664 sources."follow-redirects-1.0.0" 36542 36665 sources."form-data-2.0.0" 36543 36666 sources."har-validator-2.0.6" 36544 - sources."hawk-3.1.3" 36545 - sources."hoek-2.16.3" 36546 36667 sources."http-signature-1.1.1" 36547 36668 sources."iconv-lite-0.4.15" 36548 36669 sources."isarray-0.0.1" ··· 36550 36671 sources."qs-6.2.3" 36551 36672 sources."readable-stream-2.0.6" 36552 36673 sources."request-2.75.0" 36553 - sources."sntp-1.0.9" 36554 36674 sources."socks-1.1.9" 36555 36675 sources."string_decoder-0.10.31" 36556 36676 sources."tunnel-agent-0.4.3" ··· 36639 36759 sources."remove-trailing-separator-1.1.0" 36640 36760 sources."repeat-element-1.1.2" 36641 36761 sources."repeat-string-1.6.1" 36642 - sources."request-2.86.0" 36762 + sources."request-2.87.0" 36643 36763 sources."requestretry-1.13.0" 36644 36764 sources."requires-port-1.0.0" 36645 36765 sources."rimraf-2.6.2" ··· 36651 36771 sources."slack-node-0.2.0" 36652 36772 sources."smart-buffer-1.1.15" 36653 36773 sources."smtp-connection-2.12.0" 36654 - sources."sntp-2.1.0" 36774 + sources."sntp-1.0.9" 36655 36775 (sources."socket.io-2.0.4" // { 36656 36776 dependencies = [ 36657 36777 sources."isarray-2.0.1" ··· 36667 36787 sources."socks-1.1.10" 36668 36788 sources."socks-proxy-agent-3.0.1" 36669 36789 sources."source-map-0.6.1" 36670 - sources."sshpk-1.14.1" 36790 + sources."sshpk-1.14.2" 36671 36791 sources."statuses-1.5.0" 36672 36792 sources."streamroller-0.7.0" 36673 36793 sources."string_decoder-1.1.1" ··· 36736 36856 sources."body-parser-1.13.3" 36737 36857 sources."bytes-2.1.0" 36738 36858 sources."commander-2.6.0" 36739 - sources."compressible-2.0.13" 36859 + sources."compressible-2.0.14" 36740 36860 sources."compression-1.5.2" 36741 36861 (sources."connect-2.30.2" // { 36742 36862 dependencies = [ ··· 36774 36894 dependencies = [ 36775 36895 sources."accepts-1.3.5" 36776 36896 sources."destroy-1.0.3" 36897 + sources."mime-db-1.34.0" 36777 36898 sources."ms-2.0.0" 36778 36899 sources."negotiator-0.6.1" 36779 36900 sources."statuses-1.2.1" ··· 36879 37000 production = true; 36880 37001 bypassCache = false; 36881 37002 }; 37003 + lcov-result-merger = nodeEnv.buildNodePackage { 37004 + name = "lcov-result-merger"; 37005 + packageName = "lcov-result-merger"; 37006 + version = "3.0.0"; 37007 + src = fetchurl { 37008 + url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-3.0.0.tgz"; 37009 + sha512 = "2l5nw2y7yblpyp45q06dwd1yhrd5np1q1nxm27lx7kjdjrdscry6qp5rsm04v9ccsa31ccmdl9mx4vmrp95zmbbij6p4bdbfvqzv1p9"; 37010 + }; 37011 + dependencies = [ 37012 + sources."append-buffer-1.0.2" 37013 + sources."balanced-match-1.0.0" 37014 + sources."brace-expansion-1.1.11" 37015 + sources."buffer-equal-1.0.0" 37016 + sources."clone-2.1.2" 37017 + sources."clone-buffer-1.0.0" 37018 + sources."clone-stats-1.0.0" 37019 + sources."cloneable-readable-1.1.2" 37020 + sources."concat-map-0.0.1" 37021 + sources."convert-source-map-1.5.1" 37022 + sources."core-util-is-1.0.2" 37023 + sources."define-properties-1.1.2" 37024 + sources."duplexify-3.6.0" 37025 + sources."end-of-stream-1.4.1" 37026 + sources."extend-3.0.1" 37027 + sources."flush-write-stream-1.0.3" 37028 + sources."foreach-2.0.5" 37029 + sources."fs-mkdirp-stream-1.0.0" 37030 + sources."fs.realpath-1.0.0" 37031 + sources."function-bind-1.1.1" 37032 + sources."glob-7.1.2" 37033 + sources."glob-parent-3.1.0" 37034 + sources."glob-stream-6.1.0" 37035 + sources."graceful-fs-4.1.11" 37036 + sources."has-symbols-1.0.0" 37037 + sources."inflight-1.0.6" 37038 + sources."inherits-2.0.3" 37039 + sources."is-absolute-1.0.0" 37040 + sources."is-buffer-1.1.6" 37041 + sources."is-extglob-2.1.1" 37042 + sources."is-glob-3.1.0" 37043 + sources."is-negated-glob-1.0.0" 37044 + sources."is-relative-1.0.0" 37045 + sources."is-unc-path-1.0.0" 37046 + sources."is-utf8-0.2.1" 37047 + sources."is-valid-glob-1.0.0" 37048 + sources."is-windows-1.0.2" 37049 + sources."isarray-1.0.0" 37050 + sources."json-stable-stringify-1.0.1" 37051 + sources."jsonify-0.0.0" 37052 + sources."lazystream-1.0.0" 37053 + sources."lead-1.0.0" 37054 + sources."minimatch-3.0.4" 37055 + sources."normalize-path-2.1.1" 37056 + sources."now-and-later-2.0.0" 37057 + sources."object-keys-1.0.11" 37058 + sources."object.assign-4.1.0" 37059 + sources."once-1.4.0" 37060 + sources."ordered-read-streams-1.0.1" 37061 + sources."path-dirname-1.0.2" 37062 + sources."path-is-absolute-1.0.1" 37063 + sources."process-nextick-args-2.0.0" 37064 + sources."pump-2.0.1" 37065 + sources."pumpify-1.5.1" 37066 + sources."readable-stream-2.3.6" 37067 + sources."remove-bom-buffer-3.0.0" 37068 + sources."remove-bom-stream-1.2.0" 37069 + sources."remove-trailing-separator-1.1.0" 37070 + sources."replace-ext-1.0.0" 37071 + sources."resolve-options-1.1.0" 37072 + sources."safe-buffer-5.1.2" 37073 + sources."stream-shift-1.0.0" 37074 + sources."string_decoder-1.1.1" 37075 + sources."through2-2.0.3" 37076 + sources."through2-filter-2.0.0" 37077 + sources."to-absolute-glob-2.0.2" 37078 + sources."to-through-2.0.0" 37079 + sources."unc-path-regex-0.1.2" 37080 + sources."unique-stream-2.2.1" 37081 + sources."util-deprecate-1.0.2" 37082 + sources."value-or-function-3.0.0" 37083 + sources."vinyl-2.1.0" 37084 + sources."vinyl-fs-3.0.3" 37085 + sources."vinyl-sourcemap-1.1.0" 37086 + sources."wrappy-1.0.2" 37087 + sources."xtend-4.0.1" 37088 + ]; 37089 + buildInputs = globalBuildInputs; 37090 + meta = { 37091 + description = "Merges multiple lcov results into one"; 37092 + homepage = https://github.com/mweibel/lcov-result-merger; 37093 + license = "MIT"; 37094 + }; 37095 + production = true; 37096 + bypassCache = false; 37097 + }; 37098 + leetcode-cli = nodeEnv.buildNodePackage { 37099 + name = "leetcode-cli"; 37100 + packageName = "leetcode-cli"; 37101 + version = "2.5.2"; 37102 + src = fetchurl { 37103 + url = "https://registry.npmjs.org/leetcode-cli/-/leetcode-cli-2.5.2.tgz"; 37104 + sha512 = "2gsdhzqz6r2bqvkwk18wg4c7yq25zivdz3da1184nn95y6fsq89lpj6dpyf4h2hdm4h5gzw8zbw3f9fbqldflcw8b4hfj5zpnl9lxra"; 37105 + }; 37106 + dependencies = [ 37107 + sources."abab-1.0.4" 37108 + sources."acorn-2.7.0" 37109 + sources."acorn-globals-1.0.9" 37110 + sources."ajv-5.5.2" 37111 + sources."ansi-regex-2.1.1" 37112 + sources."ansi-styles-3.2.0" 37113 + sources."asn1-0.2.3" 37114 + sources."assert-plus-1.0.0" 37115 + sources."async-1.5.2" 37116 + sources."asynckit-0.4.0" 37117 + sources."aws-sign2-0.7.0" 37118 + sources."aws4-1.7.0" 37119 + sources."balanced-match-1.0.0" 37120 + sources."bcrypt-pbkdf-1.0.1" 37121 + sources."boolbase-1.0.0" 37122 + sources."boom-4.3.1" 37123 + sources."brace-expansion-1.1.11" 37124 + sources."camelcase-2.1.1" 37125 + sources."caseless-0.12.0" 37126 + sources."chalk-2.4.1" 37127 + (sources."cheerio-0.20.0" // { 37128 + dependencies = [ 37129 + sources."domelementtype-1.1.3" 37130 + ]; 37131 + }) 37132 + sources."cli-cursor-2.1.0" 37133 + sources."cli-spinners-1.3.1" 37134 + sources."cliui-3.2.0" 37135 + sources."co-4.6.0" 37136 + sources."code-point-at-1.1.0" 37137 + sources."color-convert-1.9.1" 37138 + sources."color-name-1.1.3" 37139 + sources."colors-1.3.0" 37140 + sources."combined-stream-1.0.6" 37141 + sources."concat-map-0.0.1" 37142 + sources."core-util-is-1.0.2" 37143 + sources."cross-spawn-5.1.0" 37144 + (sources."cryptiles-3.1.2" // { 37145 + dependencies = [ 37146 + sources."boom-5.2.0" 37147 + ]; 37148 + }) 37149 + sources."css-select-1.2.0" 37150 + sources."css-what-2.1.0" 37151 + sources."cssom-0.3.2" 37152 + sources."cssstyle-0.2.37" 37153 + sources."cycle-1.0.3" 37154 + sources."dashdash-1.14.1" 37155 + sources."decamelize-1.2.0" 37156 + sources."deep-equal-0.2.2" 37157 + sources."deep-is-0.1.3" 37158 + sources."delayed-stream-1.0.0" 37159 + sources."dom-serializer-0.1.0" 37160 + sources."domelementtype-1.3.0" 37161 + sources."domhandler-2.3.0" 37162 + sources."domutils-1.5.1" 37163 + sources."ecc-jsbn-0.1.1" 37164 + sources."entities-1.1.1" 37165 + sources."escape-string-regexp-1.0.5" 37166 + sources."escodegen-1.9.1" 37167 + sources."esprima-3.1.3" 37168 + sources."estraverse-4.2.0" 37169 + sources."esutils-2.0.2" 37170 + sources."execa-0.7.0" 37171 + sources."extend-3.0.1" 37172 + sources."extsprintf-1.3.0" 37173 + sources."eyes-0.1.8" 37174 + sources."fast-deep-equal-1.1.0" 37175 + sources."fast-json-stable-stringify-2.0.0" 37176 + sources."fast-levenshtein-2.0.6" 37177 + sources."find-up-2.1.0" 37178 + sources."forever-agent-0.6.1" 37179 + sources."form-data-2.3.2" 37180 + sources."fs.realpath-1.0.0" 37181 + sources."get-caller-file-1.0.2" 37182 + sources."get-stream-3.0.0" 37183 + sources."getpass-0.1.7" 37184 + sources."glob-7.1.2" 37185 + sources."har-schema-2.0.0" 37186 + sources."har-validator-5.0.3" 37187 + sources."has-flag-3.0.0" 37188 + sources."hawk-6.0.2" 37189 + sources."he-1.1.1" 37190 + sources."hoek-4.2.1" 37191 + (sources."htmlparser2-3.8.3" // { 37192 + dependencies = [ 37193 + sources."entities-1.0.0" 37194 + ]; 37195 + }) 37196 + sources."http-signature-1.2.0" 37197 + sources."i-0.3.6" 37198 + sources."inflight-1.0.6" 37199 + sources."inherits-2.0.3" 37200 + sources."ini-1.3.5" 37201 + sources."invert-kv-1.0.0" 37202 + sources."is-fullwidth-code-point-1.0.0" 37203 + sources."is-stream-1.1.0" 37204 + sources."is-typedarray-1.0.0" 37205 + sources."isarray-0.0.1" 37206 + sources."isexe-2.0.0" 37207 + sources."isstream-0.1.2" 37208 + sources."jsbn-0.1.1" 37209 + sources."jsdom-7.2.2" 37210 + sources."json-schema-0.2.3" 37211 + sources."json-schema-traverse-0.3.1" 37212 + sources."json-stringify-safe-5.0.1" 37213 + sources."jsprim-1.4.1" 37214 + sources."lcid-1.0.0" 37215 + sources."levn-0.3.0" 37216 + sources."locate-path-2.0.0" 37217 + sources."lodash-4.17.10" 37218 + sources."log-symbols-2.2.0" 37219 + sources."lru-cache-4.1.3" 37220 + sources."mem-1.1.0" 37221 + sources."mime-db-1.33.0" 37222 + sources."mime-types-2.1.18" 37223 + sources."mimic-fn-1.2.0" 37224 + sources."minimatch-3.0.4" 37225 + sources."minimist-0.0.8" 37226 + sources."mkdirp-0.5.1" 37227 + sources."moment-2.22.2" 37228 + sources."mute-stream-0.0.7" 37229 + (sources."nconf-0.10.0" // { 37230 + dependencies = [ 37231 + sources."yargs-3.32.0" 37232 + ]; 37233 + }) 37234 + sources."ncp-1.0.1" 37235 + sources."npm-run-path-2.0.2" 37236 + sources."nth-check-1.0.1" 37237 + sources."number-is-nan-1.0.1" 37238 + sources."nwmatcher-1.4.4" 37239 + sources."oauth-sign-0.8.2" 37240 + sources."once-1.4.0" 37241 + sources."onetime-2.0.1" 37242 + sources."optionator-0.8.2" 37243 + (sources."ora-1.4.0" // { 37244 + dependencies = [ 37245 + sources."ansi-styles-3.2.1" 37246 + sources."supports-color-5.4.0" 37247 + ]; 37248 + }) 37249 + sources."os-locale-1.4.0" 37250 + sources."p-finally-1.0.0" 37251 + sources."p-limit-1.3.0" 37252 + sources."p-locate-2.0.0" 37253 + sources."p-try-1.0.0" 37254 + sources."parse5-1.5.1" 37255 + sources."path-exists-3.0.0" 37256 + sources."path-is-absolute-1.0.1" 37257 + sources."path-key-2.0.1" 37258 + sources."performance-now-2.1.0" 37259 + sources."pkginfo-0.4.1" 37260 + sources."prelude-ls-1.1.2" 37261 + (sources."prompt-1.0.0" // { 37262 + dependencies = [ 37263 + sources."async-0.9.2" 37264 + ]; 37265 + }) 37266 + sources."pseudomap-1.0.2" 37267 + sources."psl-1.1.27" 37268 + sources."punycode-1.4.1" 37269 + sources."qs-6.5.2" 37270 + sources."read-1.0.7" 37271 + sources."readable-stream-1.1.14" 37272 + (sources."request-2.83.0" // { 37273 + dependencies = [ 37274 + sources."tough-cookie-2.3.4" 37275 + ]; 37276 + }) 37277 + sources."require-directory-2.1.1" 37278 + sources."require-main-filename-1.0.1" 37279 + sources."restore-cursor-2.0.0" 37280 + sources."revalidator-0.1.8" 37281 + sources."rimraf-2.6.2" 37282 + sources."safe-buffer-5.1.2" 37283 + sources."safer-buffer-2.1.2" 37284 + sources."sax-1.2.4" 37285 + sources."secure-keys-1.0.0" 37286 + sources."set-blocking-2.0.0" 37287 + sources."shebang-command-1.2.0" 37288 + sources."shebang-regex-1.0.0" 37289 + sources."signal-exit-3.0.2" 37290 + sources."sntp-2.1.0" 37291 + sources."source-map-0.6.1" 37292 + sources."sprintf-js-1.1.1" 37293 + sources."sshpk-1.14.2" 37294 + sources."stack-trace-0.0.10" 37295 + sources."string-width-1.0.2" 37296 + sources."string_decoder-0.10.31" 37297 + sources."stringstream-0.0.6" 37298 + sources."strip-ansi-3.0.1" 37299 + sources."strip-eof-1.0.0" 37300 + (sources."supports-color-5.1.0" // { 37301 + dependencies = [ 37302 + sources."has-flag-2.0.0" 37303 + ]; 37304 + }) 37305 + sources."symbol-tree-3.2.2" 37306 + sources."tough-cookie-2.4.2" 37307 + sources."tr46-0.0.3" 37308 + sources."tunnel-agent-0.6.0" 37309 + sources."tweetnacl-0.14.5" 37310 + sources."type-check-0.3.2" 37311 + sources."underscore-1.8.3" 37312 + sources."utile-0.3.0" 37313 + sources."uuid-3.2.1" 37314 + sources."verror-1.10.0" 37315 + sources."webidl-conversions-2.0.1" 37316 + sources."whatwg-url-compat-0.6.5" 37317 + sources."which-1.3.1" 37318 + sources."which-module-2.0.0" 37319 + sources."window-size-0.1.4" 37320 + (sources."winston-2.1.1" // { 37321 + dependencies = [ 37322 + sources."async-1.0.0" 37323 + sources."colors-1.0.3" 37324 + sources."pkginfo-0.3.1" 37325 + ]; 37326 + }) 37327 + sources."wordwrap-1.0.0" 37328 + sources."wrap-ansi-2.1.0" 37329 + sources."wrappy-1.0.2" 37330 + sources."xml-name-validator-2.0.1" 37331 + sources."y18n-3.2.1" 37332 + sources."yallist-2.1.2" 37333 + (sources."yargs-10.0.3" // { 37334 + dependencies = [ 37335 + sources."ansi-regex-3.0.0" 37336 + sources."camelcase-4.1.0" 37337 + sources."is-fullwidth-code-point-2.0.0" 37338 + sources."os-locale-2.1.0" 37339 + sources."string-width-2.1.1" 37340 + sources."strip-ansi-4.0.0" 37341 + ]; 37342 + }) 37343 + sources."yargs-parser-8.1.0" 37344 + ]; 37345 + buildInputs = globalBuildInputs; 37346 + meta = { 37347 + description = "A cli tool to enjoy leetcode!"; 37348 + homepage = "https://github.com/skygragon/leetcode-cli#readme"; 37349 + license = "MIT"; 37350 + }; 37351 + production = true; 37352 + bypassCache = false; 37353 + }; 36882 37354 lerna = nodeEnv.buildNodePackage { 36883 37355 name = "lerna"; 36884 37356 packageName = "lerna"; ··· 36888 37360 sha512 = "22hg2kpml4wkbgp15nzbhcs81kdaynq0prspzmbfrr5hpbga1cz8vl2adc4dry1lcxs36s2w5pbsvrdic4bw623vx8nngxn0z7kl0wj"; 36889 37361 }; 36890 37362 dependencies = [ 36891 - sources."JSONStream-1.3.2" 37363 + sources."JSONStream-1.3.3" 36892 37364 sources."add-stream-1.0.0" 36893 37365 sources."align-text-0.1.4" 36894 37366 sources."amdefine-1.0.1" ··· 36896 37368 sources."ansi-regex-2.1.1" 36897 37369 sources."ansi-styles-3.2.1" 36898 37370 sources."aproba-1.2.0" 36899 - sources."are-we-there-yet-1.1.4" 37371 + sources."are-we-there-yet-1.1.5" 36900 37372 sources."array-find-index-1.0.2" 36901 37373 sources."array-ify-1.0.0" 36902 37374 sources."array-union-1.0.2" ··· 36905 37377 sources."async-1.5.2" 36906 37378 sources."balanced-match-1.0.0" 36907 37379 sources."brace-expansion-1.1.11" 36908 - sources."buffer-from-1.0.0" 37380 + sources."buffer-from-1.1.0" 36909 37381 sources."builtin-modules-1.1.1" 36910 37382 sources."byline-5.0.0" 36911 37383 sources."camelcase-1.2.1" ··· 36992 37464 sources."decamelize-1.2.0" 36993 37465 sources."decamelize-keys-1.1.0" 36994 37466 sources."dedent-0.7.0" 36995 - sources."deep-extend-0.5.1" 37467 + sources."deep-extend-0.6.0" 36996 37468 sources."defaults-1.0.3" 36997 37469 sources."delegates-1.0.0" 36998 37470 sources."detect-indent-5.0.0" ··· 37108 37580 sources."minimist-options-3.0.2" 37109 37581 sources."mkdirp-0.5.1" 37110 37582 sources."modify-values-1.0.1" 37111 - sources."moment-2.22.1" 37583 + sources."moment-2.22.2" 37112 37584 sources."mute-stream-0.0.7" 37113 37585 sources."normalize-package-data-2.4.0" 37114 37586 sources."npm-run-path-2.0.2" ··· 37126 37598 sources."os-locale-2.1.0" 37127 37599 sources."os-tmpdir-1.0.2" 37128 37600 sources."p-finally-1.0.0" 37129 - sources."p-limit-1.2.0" 37601 + sources."p-limit-1.3.0" 37130 37602 sources."p-locate-2.0.0" 37131 37603 sources."p-try-1.0.0" 37132 37604 (sources."package-json-4.0.1" // { ··· 37149 37621 sources."pseudomap-1.0.2" 37150 37622 sources."q-1.5.1" 37151 37623 sources."quick-lru-1.1.0" 37152 - sources."rc-1.2.7" 37624 + sources."rc-1.2.8" 37153 37625 sources."read-cmd-shim-1.0.1" 37154 37626 sources."read-pkg-3.0.0" 37155 37627 sources."read-pkg-up-1.0.1" ··· 37224 37696 sources."uuid-2.0.3" 37225 37697 sources."validate-npm-package-license-3.0.3" 37226 37698 sources."wcwidth-1.0.1" 37227 - sources."which-1.3.0" 37699 + sources."which-1.3.1" 37228 37700 sources."which-module-2.0.0" 37229 - sources."wide-align-1.1.2" 37701 + sources."wide-align-1.1.3" 37230 37702 sources."window-size-0.1.0" 37231 37703 sources."wordwrap-0.0.3" 37232 37704 sources."wrap-ansi-2.1.0" 37233 37705 sources."wrappy-1.0.2" 37234 37706 sources."write-file-atomic-2.3.0" 37235 37707 sources."write-json-file-2.3.0" 37236 - sources."write-pkg-3.1.0" 37708 + sources."write-pkg-3.2.0" 37237 37709 sources."xtend-4.0.1" 37238 37710 sources."y18n-3.2.1" 37239 37711 sources."yallist-2.1.2" ··· 37283 37755 sources."aws-sign2-0.7.0" 37284 37756 sources."aws4-1.7.0" 37285 37757 sources."bcrypt-pbkdf-1.0.1" 37286 - sources."boom-4.3.1" 37287 37758 sources."caseless-0.12.0" 37288 37759 sources."co-4.6.0" 37289 37760 sources."combined-stream-1.0.6" 37290 37761 sources."core-util-is-1.0.2" 37291 - (sources."cryptiles-3.1.2" // { 37292 - dependencies = [ 37293 - sources."boom-5.2.0" 37294 - ]; 37295 - }) 37296 37762 sources."dashdash-1.14.1" 37297 37763 sources."delayed-stream-1.0.0" 37298 37764 sources."ecc-jsbn-0.1.1" ··· 37307 37773 sources."graceful-fs-4.1.11" 37308 37774 sources."har-schema-2.0.0" 37309 37775 sources."har-validator-5.0.3" 37310 - sources."hawk-6.0.2" 37311 - sources."hoek-4.2.1" 37312 37776 sources."http-signature-1.2.0" 37313 37777 sources."image-size-0.5.5" 37314 37778 sources."is-typedarray-1.0.0" ··· 37329 37793 sources."prr-1.0.1" 37330 37794 sources."punycode-1.4.1" 37331 37795 sources."qs-6.5.2" 37332 - sources."request-2.86.0" 37796 + sources."request-2.87.0" 37333 37797 sources."safe-buffer-5.1.2" 37334 - sources."sntp-2.1.0" 37798 + sources."safer-buffer-2.1.2" 37335 37799 sources."source-map-0.6.1" 37336 - sources."sshpk-1.14.1" 37800 + sources."sshpk-1.14.2" 37337 37801 sources."tough-cookie-2.3.4" 37338 37802 sources."tunnel-agent-0.6.0" 37339 37803 sources."tweetnacl-0.14.5" ··· 37372 37836 production = true; 37373 37837 bypassCache = false; 37374 37838 }; 37375 - lcov-result-merger = nodeEnv.buildNodePackage { 37376 - name = "lcov-result-merger"; 37377 - packageName = "lcov-result-merger"; 37378 - version = "2.0.0"; 37839 + live-server = nodeEnv.buildNodePackage { 37840 + name = "live-server"; 37841 + packageName = "live-server"; 37842 + version = "1.2.0"; 37379 37843 src = fetchurl { 37380 - url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-2.0.0.tgz"; 37381 - sha512 = "1y38jkc5m8kb1ll4wcc12yikqdb2l19acc3rdjl0bhs4vjh834mz53hhgyc4jm4gya1gnmzrj3g5337xn05kkxs92vl35zdqcwxij08"; 37844 + url = "https://registry.npmjs.org/live-server/-/live-server-1.2.0.tgz"; 37845 + sha1 = "4498644bbf81a66f18dd8dffdef61c4c1c374ca3"; 37382 37846 }; 37383 37847 dependencies = [ 37848 + sources."accepts-1.3.5" 37849 + sources."anymatch-1.3.2" 37850 + sources."apache-crypt-1.2.1" 37851 + sources."apache-md5-1.1.2" 37384 37852 sources."arr-diff-2.0.0" 37385 37853 sources."arr-flatten-1.1.0" 37386 37854 sources."array-unique-0.2.1" 37855 + sources."async-each-1.0.1" 37387 37856 sources."balanced-match-1.0.0" 37857 + sources."basic-auth-2.0.0" 37858 + sources."batch-0.6.1" 37859 + sources."bcryptjs-2.4.3" 37860 + sources."binary-extensions-1.11.0" 37388 37861 sources."brace-expansion-1.1.11" 37389 37862 (sources."braces-1.8.5" // { 37390 37863 dependencies = [ 37391 37864 sources."kind-of-6.0.2" 37392 37865 ]; 37393 37866 }) 37394 - sources."clone-2.1.2" 37395 - sources."clone-buffer-1.0.0" 37396 - sources."clone-stats-1.0.0" 37397 - sources."cloneable-readable-1.1.2" 37867 + sources."chokidar-1.7.0" 37868 + sources."colors-1.3.0" 37398 37869 sources."concat-map-0.0.1" 37399 - sources."convert-source-map-1.5.1" 37870 + sources."connect-3.5.1" 37400 37871 sources."core-util-is-1.0.2" 37401 - sources."duplexify-3.6.0" 37402 - sources."end-of-stream-1.4.1" 37872 + sources."cors-2.8.4" 37873 + sources."debug-2.2.0" 37874 + sources."depd-1.1.2" 37875 + sources."destroy-1.0.4" 37876 + sources."duplexer-0.1.1" 37877 + sources."ee-first-1.1.1" 37878 + sources."encodeurl-1.0.2" 37879 + sources."escape-html-1.0.3" 37880 + sources."etag-1.8.1" 37881 + sources."event-stream-3.3.4" 37403 37882 sources."expand-brackets-0.1.5" 37404 37883 sources."expand-range-1.8.2" 37405 - sources."extend-3.0.1" 37406 - sources."extend-shallow-2.0.1" 37407 37884 sources."extglob-0.3.2" 37885 + sources."faye-websocket-0.11.1" 37408 37886 sources."filename-regex-2.0.1" 37409 37887 sources."fill-range-2.2.4" 37410 - sources."first-chunk-stream-1.0.0" 37888 + sources."finalhandler-0.5.1" 37411 37889 sources."for-in-1.0.2" 37412 37890 sources."for-own-0.1.5" 37413 - sources."glob-5.0.15" 37891 + sources."fresh-0.5.2" 37892 + sources."from-0.1.7" 37893 + sources."fsevents-1.2.4" 37414 37894 sources."glob-base-0.3.0" 37415 - sources."glob-parent-3.1.0" 37416 - (sources."glob-stream-5.3.5" // { 37417 - dependencies = [ 37418 - sources."readable-stream-1.0.34" 37419 - sources."through2-0.6.5" 37420 - ]; 37421 - }) 37895 + sources."glob-parent-2.0.0" 37422 37896 sources."graceful-fs-4.1.11" 37423 - sources."gulp-sourcemaps-1.6.0" 37424 - sources."inflight-1.0.6" 37897 + sources."http-auth-3.1.3" 37898 + sources."http-errors-1.6.3" 37899 + sources."http-parser-js-0.4.13" 37425 37900 sources."inherits-2.0.3" 37901 + sources."is-binary-path-1.0.1" 37426 37902 sources."is-buffer-1.1.6" 37427 37903 sources."is-dotfile-1.0.3" 37428 37904 sources."is-equal-shallow-0.1.3" 37429 37905 sources."is-extendable-0.1.1" 37430 - sources."is-extglob-2.1.1" 37431 - sources."is-glob-3.1.0" 37906 + sources."is-extglob-1.0.0" 37907 + sources."is-glob-2.0.1" 37432 37908 sources."is-number-2.1.0" 37433 37909 sources."is-posix-bracket-0.1.1" 37434 37910 sources."is-primitive-2.0.0" 37435 - sources."is-stream-1.1.0" 37436 - sources."is-utf8-0.2.1" 37437 - sources."is-valid-glob-0.3.0" 37911 + sources."is-wsl-1.1.0" 37438 37912 sources."isarray-1.0.0" 37439 37913 sources."isobject-2.1.0" 37440 - sources."json-stable-stringify-1.0.1" 37441 - sources."jsonify-0.0.0" 37442 37914 sources."kind-of-3.2.2" 37443 - sources."lazystream-1.0.0" 37444 - sources."lodash.isequal-4.5.0" 37915 + sources."map-stream-0.1.0" 37445 37916 sources."math-random-1.0.1" 37446 - sources."merge-stream-1.0.1" 37447 - (sources."micromatch-2.3.11" // { 37917 + sources."micromatch-2.3.11" 37918 + sources."mime-1.4.1" 37919 + sources."mime-db-1.33.0" 37920 + sources."mime-types-2.1.18" 37921 + sources."minimatch-3.0.4" 37922 + (sources."morgan-1.9.0" // { 37448 37923 dependencies = [ 37449 - sources."glob-parent-2.0.0" 37924 + sources."debug-2.6.9" 37925 + sources."ms-2.0.0" 37926 + sources."safe-buffer-5.1.1" 37450 37927 ]; 37451 37928 }) 37452 - sources."minimatch-3.0.4" 37453 - sources."minimist-0.0.8" 37454 - sources."mkdirp-0.5.1" 37929 + sources."ms-0.7.1" 37930 + sources."nan-2.10.0" 37931 + sources."negotiator-0.6.1" 37455 37932 sources."normalize-path-2.1.1" 37456 37933 sources."object-assign-4.1.1" 37457 37934 sources."object.omit-2.0.1" 37458 - sources."once-1.4.0" 37459 - sources."ordered-read-streams-0.3.0" 37935 + sources."on-finished-2.3.0" 37936 + sources."on-headers-1.0.1" 37937 + sources."opn-5.3.0" 37460 37938 sources."parse-glob-3.0.4" 37461 - sources."path-dirname-1.0.2" 37939 + sources."parseurl-1.3.2" 37462 37940 sources."path-is-absolute-1.0.1" 37941 + sources."pause-stream-0.0.11" 37463 37942 sources."preserve-0.2.0" 37464 37943 sources."process-nextick-args-2.0.0" 37944 + sources."proxy-middleware-0.15.0" 37465 37945 (sources."randomatic-3.0.0" // { 37466 37946 dependencies = [ 37467 37947 sources."is-number-4.0.0" 37468 37948 ]; 37469 37949 }) 37950 + sources."range-parser-1.2.0" 37470 37951 sources."readable-stream-2.3.6" 37952 + sources."readdirp-2.1.0" 37471 37953 sources."regex-cache-0.4.4" 37472 37954 sources."remove-trailing-separator-1.1.0" 37473 37955 sources."repeat-element-1.1.2" 37474 37956 sources."repeat-string-1.6.1" 37475 - sources."replace-ext-1.0.0" 37476 37957 sources."safe-buffer-5.1.2" 37477 - sources."stream-shift-1.0.0" 37478 - sources."string_decoder-1.1.1" 37479 - sources."strip-bom-2.0.0" 37480 - sources."strip-bom-stream-1.0.0" 37481 - sources."through2-2.0.3" 37482 - sources."through2-filter-2.0.0" 37483 - sources."to-absolute-glob-0.1.1" 37484 - sources."unique-stream-2.2.1" 37485 - sources."util-deprecate-1.0.2" 37486 - sources."vali-date-1.0.0" 37487 - sources."vinyl-2.1.0" 37488 - (sources."vinyl-fs-2.4.4" // { 37958 + (sources."send-0.16.2" // { 37489 37959 dependencies = [ 37490 - sources."clone-1.0.4" 37491 - sources."clone-stats-0.0.1" 37492 - sources."is-extglob-1.0.0" 37493 - sources."is-glob-2.0.1" 37494 - sources."isarray-0.0.1" 37495 - sources."replace-ext-0.0.1" 37496 - sources."string_decoder-0.10.31" 37497 - sources."vinyl-1.2.0" 37960 + sources."debug-2.6.9" 37961 + sources."ms-2.0.0" 37962 + sources."statuses-1.4.0" 37498 37963 ]; 37499 37964 }) 37500 - sources."wrappy-1.0.2" 37501 - sources."xtend-4.0.1" 37965 + (sources."serve-index-1.9.1" // { 37966 + dependencies = [ 37967 + sources."debug-2.6.9" 37968 + sources."ms-2.0.0" 37969 + ]; 37970 + }) 37971 + sources."set-immediate-shim-1.0.1" 37972 + sources."setprototypeof-1.1.0" 37973 + sources."split-0.3.3" 37974 + sources."statuses-1.3.1" 37975 + sources."stream-combiner-0.0.4" 37976 + sources."string_decoder-1.1.1" 37977 + sources."through-2.3.8" 37978 + sources."unix-crypt-td-js-1.0.0" 37979 + sources."unpipe-1.0.0" 37980 + sources."util-deprecate-1.0.2" 37981 + sources."utils-merge-1.0.0" 37982 + sources."uuid-3.2.1" 37983 + sources."vary-1.1.2" 37984 + sources."websocket-driver-0.7.0" 37985 + sources."websocket-extensions-0.1.3" 37502 37986 ]; 37503 37987 buildInputs = globalBuildInputs; 37504 37988 meta = { 37505 - description = "Merges multiple lcov results into one"; 37506 - homepage = https://github.com/mweibel/lcov-result-merger; 37989 + description = "simple development http server with live reload capability"; 37990 + homepage = "https://github.com/tapio/live-server#readme"; 37507 37991 license = "MIT"; 37508 37992 }; 37509 37993 production = true; ··· 37544 38028 sources."binary-extensions-1.11.0" 37545 38029 sources."blob-0.0.4" 37546 38030 sources."body-parser-1.18.3" 37547 - sources."boom-4.3.1" 37548 38031 sources."brace-expansion-1.1.11" 37549 38032 (sources."braces-1.8.5" // { 37550 38033 dependencies = [ ··· 37566 38049 sources."cookie-0.3.1" 37567 38050 sources."cookie-signature-1.0.6" 37568 38051 sources."core-util-is-1.0.2" 37569 - (sources."cryptiles-3.1.2" // { 37570 - dependencies = [ 37571 - sources."boom-5.2.0" 37572 - ]; 37573 - }) 37574 38052 sources."dashdash-1.14.1" 37575 38053 sources."debug-2.6.9" 37576 38054 sources."delayed-stream-1.0.0" ··· 37631 38109 sources."har-validator-5.0.3" 37632 38110 sources."has-binary2-1.0.3" 37633 38111 sources."has-cors-1.1.0" 37634 - sources."hawk-6.0.2" 37635 - sources."hoek-4.2.1" 37636 38112 sources."html-entities-1.2.1" 37637 38113 sources."http-errors-1.6.3" 37638 38114 sources."http-signature-1.2.0" ··· 37712 38188 sources."remove-trailing-separator-1.1.0" 37713 38189 sources."repeat-element-1.1.2" 37714 38190 sources."repeat-string-1.6.1" 37715 - sources."request-2.86.0" 38191 + sources."request-2.87.0" 37716 38192 sources."safe-buffer-5.1.2" 37717 38193 sources."safer-buffer-2.1.2" 37718 38194 sources."send-0.16.2" 37719 38195 sources."serve-static-1.13.2" 37720 38196 sources."set-immediate-shim-1.0.1" 37721 38197 sources."setprototypeof-1.1.0" 37722 - sources."sntp-2.1.0" 37723 - (sources."socket.io-2.1.0" // { 38198 + (sources."socket.io-2.1.1" // { 37724 38199 dependencies = [ 37725 38200 sources."debug-3.1.0" 37726 38201 sources."isarray-2.0.1" 37727 38202 ]; 37728 38203 }) 37729 38204 sources."socket.io-adapter-1.1.1" 37730 - sources."socket.io-client-2.1.0" 38205 + sources."socket.io-client-2.1.1" 37731 38206 sources."socket.io-parser-3.2.0" 37732 38207 sources."sprintf-js-1.0.3" 37733 - sources."sshpk-1.14.1" 38208 + sources."sshpk-1.14.2" 37734 38209 sources."statuses-1.5.0" 37735 38210 sources."string_decoder-1.1.1" 37736 38211 sources."to-array-0.1.4" ··· 37759 38234 production = true; 37760 38235 bypassCache = false; 37761 38236 }; 37762 - live-server = nodeEnv.buildNodePackage { 37763 - name = "live-server"; 37764 - packageName = "live-server"; 37765 - version = "1.2.0"; 37766 - src = fetchurl { 37767 - url = "https://registry.npmjs.org/live-server/-/live-server-1.2.0.tgz"; 37768 - sha1 = "4498644bbf81a66f18dd8dffdef61c4c1c374ca3"; 37769 - }; 37770 - dependencies = [ 37771 - sources."accepts-1.3.5" 37772 - sources."anymatch-1.3.2" 37773 - sources."apache-crypt-1.2.1" 37774 - sources."apache-md5-1.1.2" 37775 - sources."arr-diff-2.0.0" 37776 - sources."arr-flatten-1.1.0" 37777 - sources."array-unique-0.2.1" 37778 - sources."async-each-1.0.1" 37779 - sources."balanced-match-1.0.0" 37780 - sources."basic-auth-2.0.0" 37781 - sources."batch-0.6.1" 37782 - sources."bcryptjs-2.4.3" 37783 - sources."binary-extensions-1.11.0" 37784 - sources."brace-expansion-1.1.11" 37785 - (sources."braces-1.8.5" // { 37786 - dependencies = [ 37787 - sources."kind-of-6.0.2" 37788 - ]; 37789 - }) 37790 - sources."chokidar-1.7.0" 37791 - sources."colors-1.2.5" 37792 - sources."concat-map-0.0.1" 37793 - sources."connect-3.5.1" 37794 - sources."core-util-is-1.0.2" 37795 - sources."cors-2.8.4" 37796 - sources."debug-2.2.0" 37797 - sources."depd-1.1.2" 37798 - sources."destroy-1.0.4" 37799 - sources."duplexer-0.1.1" 37800 - sources."ee-first-1.1.1" 37801 - sources."encodeurl-1.0.2" 37802 - sources."escape-html-1.0.3" 37803 - sources."etag-1.8.1" 37804 - sources."event-stream-3.3.4" 37805 - sources."expand-brackets-0.1.5" 37806 - sources."expand-range-1.8.2" 37807 - sources."extglob-0.3.2" 37808 - sources."faye-websocket-0.11.1" 37809 - sources."filename-regex-2.0.1" 37810 - sources."fill-range-2.2.4" 37811 - sources."finalhandler-0.5.1" 37812 - sources."for-in-1.0.2" 37813 - sources."for-own-0.1.5" 37814 - sources."fresh-0.5.2" 37815 - sources."from-0.1.7" 37816 - sources."fsevents-1.2.4" 37817 - sources."glob-base-0.3.0" 37818 - sources."glob-parent-2.0.0" 37819 - sources."graceful-fs-4.1.11" 37820 - sources."http-auth-3.1.3" 37821 - sources."http-errors-1.6.3" 37822 - sources."http-parser-js-0.4.12" 37823 - sources."inherits-2.0.3" 37824 - sources."is-binary-path-1.0.1" 37825 - sources."is-buffer-1.1.6" 37826 - sources."is-dotfile-1.0.3" 37827 - sources."is-equal-shallow-0.1.3" 37828 - sources."is-extendable-0.1.1" 37829 - sources."is-extglob-1.0.0" 37830 - sources."is-glob-2.0.1" 37831 - sources."is-number-2.1.0" 37832 - sources."is-posix-bracket-0.1.1" 37833 - sources."is-primitive-2.0.0" 37834 - sources."is-wsl-1.1.0" 37835 - sources."isarray-1.0.0" 37836 - sources."isobject-2.1.0" 37837 - sources."kind-of-3.2.2" 37838 - sources."map-stream-0.1.0" 37839 - sources."math-random-1.0.1" 37840 - sources."micromatch-2.3.11" 37841 - sources."mime-1.4.1" 37842 - sources."mime-db-1.33.0" 37843 - sources."mime-types-2.1.18" 37844 - sources."minimatch-3.0.4" 37845 - (sources."morgan-1.9.0" // { 37846 - dependencies = [ 37847 - sources."debug-2.6.9" 37848 - sources."ms-2.0.0" 37849 - sources."safe-buffer-5.1.1" 37850 - ]; 37851 - }) 37852 - sources."ms-0.7.1" 37853 - sources."nan-2.10.0" 37854 - sources."negotiator-0.6.1" 37855 - sources."normalize-path-2.1.1" 37856 - sources."object-assign-4.1.1" 37857 - sources."object.omit-2.0.1" 37858 - sources."on-finished-2.3.0" 37859 - sources."on-headers-1.0.1" 37860 - sources."opn-5.3.0" 37861 - sources."parse-glob-3.0.4" 37862 - sources."parseurl-1.3.2" 37863 - sources."path-is-absolute-1.0.1" 37864 - sources."pause-stream-0.0.11" 37865 - sources."preserve-0.2.0" 37866 - sources."process-nextick-args-2.0.0" 37867 - sources."proxy-middleware-0.15.0" 37868 - (sources."randomatic-3.0.0" // { 37869 - dependencies = [ 37870 - sources."is-number-4.0.0" 37871 - ]; 37872 - }) 37873 - sources."range-parser-1.2.0" 37874 - sources."readable-stream-2.3.6" 37875 - sources."readdirp-2.1.0" 37876 - sources."regex-cache-0.4.4" 37877 - sources."remove-trailing-separator-1.1.0" 37878 - sources."repeat-element-1.1.2" 37879 - sources."repeat-string-1.6.1" 37880 - sources."safe-buffer-5.1.2" 37881 - (sources."send-0.16.2" // { 37882 - dependencies = [ 37883 - sources."debug-2.6.9" 37884 - sources."ms-2.0.0" 37885 - sources."statuses-1.4.0" 37886 - ]; 37887 - }) 37888 - (sources."serve-index-1.9.1" // { 37889 - dependencies = [ 37890 - sources."debug-2.6.9" 37891 - sources."ms-2.0.0" 37892 - ]; 37893 - }) 37894 - sources."set-immediate-shim-1.0.1" 37895 - sources."setprototypeof-1.1.0" 37896 - sources."split-0.3.3" 37897 - sources."statuses-1.3.1" 37898 - sources."stream-combiner-0.0.4" 37899 - sources."string_decoder-1.1.1" 37900 - sources."through-2.3.8" 37901 - sources."unix-crypt-td-js-1.0.0" 37902 - sources."unpipe-1.0.0" 37903 - sources."util-deprecate-1.0.2" 37904 - sources."utils-merge-1.0.0" 37905 - sources."uuid-3.2.1" 37906 - sources."vary-1.1.2" 37907 - sources."websocket-driver-0.7.0" 37908 - sources."websocket-extensions-0.1.3" 37909 - ]; 37910 - buildInputs = globalBuildInputs; 37911 - meta = { 37912 - description = "simple development http server with live reload capability"; 37913 - homepage = "https://github.com/tapio/live-server#readme"; 37914 - license = "MIT"; 37915 - }; 37916 - production = true; 37917 - bypassCache = false; 37918 - }; 37919 38237 meat = nodeEnv.buildNodePackage { 37920 38238 name = "meat"; 37921 38239 packageName = "meat"; ··· 37968 38286 }) 37969 38287 sources."@gulp-sourcemaps/map-sources-1.0.0" 37970 38288 sources."accord-0.28.0" 37971 - sources."acorn-5.5.3" 38289 + sources."acorn-5.6.2" 37972 38290 sources."ajv-4.11.8" 37973 38291 sources."align-text-0.1.4" 37974 38292 sources."almond-0.3.3" ··· 38078 38396 sources."kind-of-3.2.2" 38079 38397 ]; 38080 38398 }) 38081 - sources."browserslist-3.2.7" 38399 + sources."browserslist-3.2.8" 38082 38400 sources."buffer-equal-1.0.0" 38083 38401 sources."cache-base-1.0.1" 38084 38402 sources."camelcase-1.2.1" 38085 - sources."caniuse-lite-1.0.30000842" 38403 + sources."caniuse-lite-1.0.30000850" 38086 38404 sources."caseless-0.12.0" 38087 38405 sources."center-align-0.1.3" 38088 38406 sources."chalk-1.1.3" ··· 38106 38424 sources."concat-map-0.0.1" 38107 38425 sources."convert-source-map-1.5.1" 38108 38426 sources."copy-descriptor-0.1.1" 38109 - sources."core-js-2.5.6" 38427 + sources."core-js-2.5.7" 38110 38428 sources."core-util-is-1.0.2" 38111 38429 sources."cryptiles-2.0.5" 38112 38430 (sources."css-2.2.3" // { ··· 38133 38451 sources."duplexer2-0.0.2" 38134 38452 sources."duplexify-3.6.0" 38135 38453 sources."ecc-jsbn-0.1.1" 38136 - sources."electron-to-chromium-1.3.47" 38454 + sources."electron-to-chromium-1.3.48" 38137 38455 sources."end-of-stream-0.1.5" 38138 38456 sources."errno-0.1.7" 38139 - sources."es5-ext-0.10.42" 38457 + sources."es5-ext-0.10.45" 38140 38458 sources."es6-iterator-2.0.3" 38141 38459 sources."es6-symbol-3.1.1" 38142 38460 sources."es6-weak-map-2.0.2" ··· 38315 38633 sources."source-map-0.6.1" 38316 38634 sources."string_decoder-1.1.1" 38317 38635 sources."through2-2.0.3" 38318 - sources."uglify-js-3.3.25" 38636 + sources."uglify-js-3.4.0" 38319 38637 ]; 38320 38638 }) 38321 38639 (sources."gulp-util-3.0.8" // { ··· 38457 38775 sources."ms-2.0.0" 38458 38776 sources."multipipe-0.1.2" 38459 38777 sources."nanomatch-1.2.9" 38460 - sources."natives-1.1.3" 38778 + sources."natives-1.1.4" 38461 38779 sources."next-tick-1.0.0" 38462 38780 sources."normalize-path-2.1.1" 38463 38781 sources."now-and-later-2.0.0" ··· 38522 38840 sources."right-align-0.1.3" 38523 38841 sources."safe-buffer-5.1.2" 38524 38842 sources."safe-regex-1.1.0" 38843 + sources."safer-buffer-2.1.2" 38525 38844 sources."semver-5.5.0" 38526 38845 sources."sequencify-0.0.7" 38527 38846 sources."set-value-2.0.0" ··· 38559 38878 sources."extend-shallow-3.0.2" 38560 38879 ]; 38561 38880 }) 38562 - (sources."sshpk-1.14.1" // { 38881 + (sources."sshpk-1.14.2" // { 38563 38882 dependencies = [ 38564 38883 sources."assert-plus-1.0.0" 38565 38884 ]; ··· 38636 38955 sources."vinyl-sourcemaps-apply-0.2.1" 38637 38956 sources."whatwg-fetch-2.0.4" 38638 38957 sources."when-3.7.8" 38639 - sources."which-1.3.0" 38958 + sources."which-1.3.1" 38640 38959 sources."window-size-0.1.0" 38641 38960 sources."wordwrap-0.0.2" 38642 38961 sources."wrappy-1.0.2" ··· 38655 38974 mocha = nodeEnv.buildNodePackage { 38656 38975 name = "mocha"; 38657 38976 packageName = "mocha"; 38658 - version = "5.1.1"; 38977 + version = "5.2.0"; 38659 38978 src = fetchurl { 38660 - url = "https://registry.npmjs.org/mocha/-/mocha-5.1.1.tgz"; 38661 - sha512 = "23wcnn35p90xhsc5z94w45s30j756s97acm313h6lacnbliqlaka3drq2xbsi4br8gdkld3r4dc33vglq8kf5jb408c7b2agpyar8lh"; 38979 + url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz"; 38980 + sha512 = "1qqnhamd691pyvx27ql2l5228qx1migp0yys010zdi748pp516hf10sr26w7gx71323a9p0gv69i358xv2w918gpba9xp2w70l211fq"; 38662 38981 }; 38663 38982 dependencies = [ 38664 38983 sources."balanced-match-1.0.0" 38665 38984 sources."brace-expansion-1.1.11" 38666 38985 sources."browser-stdout-1.3.1" 38667 - sources."commander-2.11.0" 38986 + sources."commander-2.15.1" 38668 38987 sources."concat-map-0.0.1" 38669 38988 sources."debug-3.1.0" 38670 38989 sources."diff-3.5.0" 38671 38990 sources."escape-string-regexp-1.0.5" 38672 38991 sources."fs.realpath-1.0.0" 38673 38992 sources."glob-7.1.2" 38674 - sources."growl-1.10.3" 38675 - sources."has-flag-2.0.0" 38993 + sources."growl-1.10.5" 38994 + sources."has-flag-3.0.0" 38676 38995 sources."he-1.1.1" 38677 38996 sources."inflight-1.0.6" 38678 38997 sources."inherits-2.0.3" ··· 38682 39001 sources."ms-2.0.0" 38683 39002 sources."once-1.4.0" 38684 39003 sources."path-is-absolute-1.0.1" 38685 - sources."supports-color-4.4.0" 39004 + sources."supports-color-5.4.0" 38686 39005 sources."wrappy-1.0.2" 38687 39006 ]; 38688 39007 buildInputs = globalBuildInputs; ··· 38708 39027 sources."combined-stream-1.0.6" 38709 39028 sources."commander-2.15.1" 38710 39029 sources."component-emitter-1.2.1" 38711 - sources."cookiejar-2.1.1" 39030 + sources."cookiejar-2.1.2" 38712 39031 sources."core-util-is-1.0.2" 38713 39032 sources."debug-3.1.0" 38714 39033 sources."delayed-stream-1.0.0" ··· 38719 39038 sources."graphlib-2.1.5" 38720 39039 sources."inherits-2.0.3" 38721 39040 sources."isarray-1.0.0" 38722 - sources."js-yaml-3.11.0" 39041 + sources."js-yaml-3.12.0" 38723 39042 sources."json-refs-2.1.7" 38724 39043 sources."lodash-4.17.10" 38725 39044 sources."methods-1.1.2" ··· 38730 39049 sources."native-promise-only-0.8.1" 38731 39050 sources."path-loader-1.0.4" 38732 39051 sources."process-nextick-args-2.0.0" 38733 - sources."punycode-2.1.0" 39052 + sources."punycode-2.1.1" 38734 39053 sources."qs-6.5.2" 38735 39054 sources."readable-stream-2.3.6" 38736 39055 sources."safe-buffer-5.1.2" ··· 38783 39102 sources."ajv-5.5.2" 38784 39103 sources."ansi-regex-2.1.1" 38785 39104 sources."aproba-1.2.0" 38786 - sources."are-we-there-yet-1.1.4" 39105 + sources."are-we-there-yet-1.1.5" 38787 39106 sources."asn1-0.2.3" 38788 39107 sources."assert-plus-1.0.0" 38789 39108 sources."asynckit-0.4.0" ··· 38791 39110 sources."aws4-1.7.0" 38792 39111 sources."base64-js-1.2.3" 38793 39112 sources."bcrypt-pbkdf-1.0.1" 38794 - sources."boom-4.3.1" 38795 - sources."buffer-from-1.0.0" 39113 + sources."buffer-from-1.1.0" 38796 39114 sources."builtin-modules-1.1.1" 38797 39115 sources."builtins-1.0.3" 38798 39116 sources."caseless-0.12.0" ··· 38803 39121 sources."config-chain-1.1.11" 38804 39122 sources."console-control-strings-1.1.0" 38805 39123 sources."core-util-is-1.0.2" 38806 - (sources."cryptiles-3.1.2" // { 38807 - dependencies = [ 38808 - sources."boom-5.2.0" 38809 - ]; 38810 - }) 38811 39124 sources."dashdash-1.14.1" 38812 39125 sources."delayed-stream-1.0.0" 38813 39126 sources."delegates-1.0.0" ··· 38832 39145 sources."har-schema-2.0.0" 38833 39146 sources."har-validator-5.0.3" 38834 39147 sources."has-unicode-2.0.1" 38835 - sources."hawk-6.0.2" 38836 - sources."hoek-4.2.1" 38837 39148 sources."hosted-git-info-2.6.0" 38838 39149 sources."http-signature-1.2.0" 38839 39150 sources."inherits-2.0.3" ··· 38852 39163 sources."mime-db-1.33.0" 38853 39164 sources."mime-types-2.1.18" 38854 39165 sources."minimist-0.0.8" 38855 - sources."minipass-2.3.0" 39166 + sources."minipass-2.3.3" 38856 39167 sources."minizlib-1.1.0" 38857 39168 sources."mkdirp-0.5.1" 38858 39169 sources."ncp-0.4.2" ··· 38882 39193 sources."punycode-1.4.1" 38883 39194 sources."qs-6.5.2" 38884 39195 sources."readable-stream-2.3.6" 38885 - sources."request-2.86.0" 39196 + sources."request-2.87.0" 38886 39197 sources."retry-0.10.1" 38887 39198 sources."rimraf-2.2.8" 38888 39199 sources."safe-buffer-5.1.2" 39200 + sources."safer-buffer-2.1.2" 38889 39201 sources."semver-5.5.0" 38890 39202 sources."set-blocking-2.0.0" 38891 39203 sources."signal-exit-3.0.2" 38892 39204 sources."slasp-0.0.4" 38893 39205 sources."slide-1.1.6" 38894 - sources."sntp-2.1.0" 38895 39206 sources."spdx-correct-3.0.0" 38896 39207 sources."spdx-exceptions-2.1.0" 38897 39208 sources."spdx-expression-parse-3.0.0" 38898 39209 sources."spdx-license-ids-3.0.0" 38899 - sources."sshpk-1.14.1" 39210 + sources."sshpk-1.14.2" 38900 39211 sources."ssri-5.3.0" 38901 39212 sources."string-width-1.0.2" 38902 39213 sources."string_decoder-1.1.1" ··· 38914 39225 sources."validate-npm-package-name-3.0.0" 38915 39226 sources."verror-1.10.0" 38916 39227 sources."walk-2.3.13" 38917 - sources."wide-align-1.1.2" 39228 + sources."wide-align-1.1.3" 38918 39229 sources."wrappy-1.0.2" 38919 39230 sources."yallist-3.0.2" 38920 39231 ]; ··· 38940 39251 sources."ajv-5.5.2" 38941 39252 sources."ansi-regex-2.1.1" 38942 39253 sources."aproba-1.2.0" 38943 - sources."are-we-there-yet-1.1.4" 39254 + sources."are-we-there-yet-1.1.5" 38944 39255 sources."asn1-0.2.3" 38945 39256 sources."assert-plus-1.0.0" 38946 39257 sources."asynckit-0.4.0" ··· 38949 39260 sources."balanced-match-1.0.0" 38950 39261 sources."bcrypt-pbkdf-1.0.1" 38951 39262 sources."block-stream-0.0.9" 38952 - sources."boom-4.3.1" 38953 39263 sources."brace-expansion-1.1.11" 38954 39264 sources."caseless-0.12.0" 38955 39265 sources."co-4.6.0" ··· 38958 39268 sources."concat-map-0.0.1" 38959 39269 sources."console-control-strings-1.1.0" 38960 39270 sources."core-util-is-1.0.2" 38961 - (sources."cryptiles-3.1.2" // { 38962 - dependencies = [ 38963 - sources."boom-5.2.0" 38964 - ]; 38965 - }) 38966 39271 sources."dashdash-1.14.1" 38967 39272 sources."delayed-stream-1.0.0" 38968 39273 sources."delegates-1.0.0" ··· 38982 39287 sources."har-schema-2.0.0" 38983 39288 sources."har-validator-5.0.3" 38984 39289 sources."has-unicode-2.0.1" 38985 - sources."hawk-6.0.2" 38986 - sources."hoek-4.2.1" 38987 39290 sources."http-signature-1.2.0" 38988 39291 sources."inflight-1.0.6" 38989 39292 sources."inherits-2.0.3" ··· 39017 39320 sources."punycode-1.4.1" 39018 39321 sources."qs-6.5.2" 39019 39322 sources."readable-stream-2.3.6" 39020 - sources."request-2.86.0" 39323 + sources."request-2.87.0" 39021 39324 sources."rimraf-2.6.2" 39022 39325 sources."safe-buffer-5.1.2" 39326 + sources."safer-buffer-2.1.2" 39023 39327 sources."semver-5.3.0" 39024 39328 sources."set-blocking-2.0.0" 39025 39329 sources."signal-exit-3.0.2" 39026 - sources."sntp-2.1.0" 39027 - sources."sshpk-1.14.1" 39330 + sources."sshpk-1.14.2" 39028 39331 sources."string-width-1.0.2" 39029 39332 sources."string_decoder-1.1.1" 39030 39333 sources."strip-ansi-3.0.1" ··· 39035 39338 sources."util-deprecate-1.0.2" 39036 39339 sources."uuid-3.2.1" 39037 39340 sources."verror-1.10.0" 39038 - sources."which-1.3.0" 39039 - sources."wide-align-1.1.2" 39341 + sources."which-1.3.1" 39342 + sources."wide-align-1.1.3" 39040 39343 sources."wrappy-1.0.2" 39041 39344 ]; 39042 39345 buildInputs = globalBuildInputs; ··· 39080 39383 sources."ajv-4.11.8" 39081 39384 sources."ansi-regex-2.1.1" 39082 39385 sources."aproba-1.2.0" 39083 - sources."are-we-there-yet-1.1.4" 39386 + sources."are-we-there-yet-1.1.5" 39084 39387 sources."array-find-index-1.0.2" 39085 39388 sources."array-flatten-1.1.1" 39086 39389 sources."asn1-0.2.3" ··· 39097 39400 sources."yargs-1.3.3" 39098 39401 ]; 39099 39402 }) 39100 - sources."big-integer-1.6.28" 39403 + sources."big-integer-1.6.30" 39101 39404 sources."block-stream-0.0.9" 39102 39405 (sources."body-parser-1.18.2" // { 39103 39406 dependencies = [ ··· 39133 39436 sources."dashdash-1.14.1" 39134 39437 sources."debug-2.6.9" 39135 39438 sources."decamelize-1.2.0" 39136 - sources."deep-extend-0.5.1" 39439 + sources."deep-extend-0.6.0" 39137 39440 sources."default-browser-id-1.0.4" 39138 39441 sources."delayed-stream-1.0.0" 39139 39442 sources."delegates-1.0.0" ··· 39256 39559 sources."http-errors-1.6.2" 39257 39560 ]; 39258 39561 }) 39259 - sources."rc-1.2.7" 39562 + sources."rc-1.2.8" 39260 39563 sources."read-pkg-1.1.0" 39261 39564 sources."read-pkg-up-1.0.1" 39262 39565 sources."readable-stream-2.3.6" ··· 39265 39568 sources."request-2.81.0" 39266 39569 sources."rimraf-2.2.8" 39267 39570 sources."safe-buffer-5.1.1" 39571 + sources."safer-buffer-2.1.2" 39268 39572 sources."semver-4.3.6" 39269 39573 sources."send-0.16.2" 39270 39574 (sources."serve-favicon-2.5.0" // { ··· 39281 39585 sources."spdx-exceptions-2.1.0" 39282 39586 sources."spdx-expression-parse-3.0.0" 39283 39587 sources."spdx-license-ids-3.0.0" 39284 - (sources."sshpk-1.14.1" // { 39588 + (sources."sshpk-1.14.2" // { 39285 39589 dependencies = [ 39286 39590 sources."assert-plus-1.0.0" 39287 39591 ]; ··· 39294 39598 sources."strip-bom-2.0.0" 39295 39599 sources."strip-indent-1.0.1" 39296 39600 sources."strip-json-comments-2.0.1" 39297 - sources."strong-data-uri-1.0.5" 39601 + sources."strong-data-uri-1.0.6" 39298 39602 sources."tar-2.2.1" 39299 39603 sources."tar-pack-3.4.1" 39300 39604 sources."tough-cookie-2.3.4" ··· 39323 39627 sources."validate-npm-package-license-3.0.3" 39324 39628 sources."vary-1.1.2" 39325 39629 sources."verror-1.10.0" 39326 - sources."which-1.3.0" 39327 - sources."wide-align-1.1.2" 39630 + sources."which-1.3.1" 39631 + sources."wide-align-1.1.3" 39328 39632 sources."win-detect-browsers-1.0.2" 39329 39633 sources."window-size-0.1.4" 39330 39634 sources."wrap-ansi-2.1.0" ··· 39357 39661 sources."abbrev-1.1.1" 39358 39662 sources."ansi-regex-2.1.1" 39359 39663 sources."aproba-1.2.0" 39360 - sources."are-we-there-yet-1.1.4" 39664 + sources."are-we-there-yet-1.1.5" 39361 39665 sources."balanced-match-1.0.0" 39362 39666 sources."brace-expansion-1.1.11" 39363 39667 sources."chownr-1.0.1" ··· 39366 39670 sources."console-control-strings-1.1.0" 39367 39671 sources."core-util-is-1.0.2" 39368 39672 sources."debug-2.6.9" 39369 - sources."deep-extend-0.5.1" 39673 + sources."deep-extend-0.6.0" 39370 39674 sources."delegates-1.0.0" 39371 39675 sources."detect-libc-1.0.3" 39372 39676 sources."fs-minipass-1.2.5" ··· 39383 39687 sources."isarray-1.0.0" 39384 39688 sources."minimatch-3.0.4" 39385 39689 sources."minimist-0.0.8" 39386 - sources."minipass-2.3.0" 39690 + sources."minipass-2.3.3" 39387 39691 sources."minizlib-1.1.0" 39388 39692 sources."mkdirp-0.5.1" 39389 39693 sources."ms-2.0.0" ··· 39400 39704 sources."osenv-0.1.5" 39401 39705 sources."path-is-absolute-1.0.1" 39402 39706 sources."process-nextick-args-2.0.0" 39403 - (sources."rc-1.2.7" // { 39707 + (sources."rc-1.2.8" // { 39404 39708 dependencies = [ 39405 39709 sources."minimist-1.2.0" 39406 39710 ]; ··· 39417 39721 sources."string_decoder-1.1.1" 39418 39722 sources."strip-ansi-3.0.1" 39419 39723 sources."strip-json-comments-2.0.1" 39420 - sources."tar-4.4.2" 39724 + sources."tar-4.4.4" 39421 39725 sources."util-deprecate-1.0.2" 39422 - sources."wide-align-1.1.2" 39726 + sources."wide-align-1.1.3" 39423 39727 sources."wrappy-1.0.2" 39424 39728 sources."yallist-3.0.2" 39425 39729 ]; ··· 39435 39739 nodemon = nodeEnv.buildNodePackage { 39436 39740 name = "nodemon"; 39437 39741 packageName = "nodemon"; 39438 - version = "1.17.4"; 39742 + version = "1.17.5"; 39439 39743 src = fetchurl { 39440 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.4.tgz"; 39441 - sha512 = "3bmxd7fd494gy4ddax3mihjz1iy484iakyssbhy87cc2kwbky9xkb8l47vphc3n858q9p9afxl57w0849i24amsdjhwbqh8vxhjy1v5"; 39744 + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.5.tgz"; 39745 + sha512 = "2djkgpk29zh4p7wqb8h4g6w0y2fix94zqpgi40fshn9yaf6anp5p0vbqj8r3s6zxsxhgvnv7lzj56v6s6gk0q2byqd9yqrmjmcacv8l"; 39442 39746 }; 39443 39747 dependencies = [ 39444 39748 sources."abbrev-1.1.1" ··· 39531 39835 sources."crypto-random-string-1.0.0" 39532 39836 sources."debug-3.1.0" 39533 39837 sources."decode-uri-component-0.2.0" 39534 - sources."deep-extend-0.5.1" 39838 + sources."deep-extend-0.6.0" 39535 39839 sources."define-property-2.0.2" 39536 39840 sources."dot-prop-4.2.0" 39537 39841 sources."duplexer-0.1.1" ··· 39650 39954 sources."ps-tree-1.1.0" 39651 39955 sources."pseudomap-1.0.2" 39652 39956 sources."pstree.remy-1.1.0" 39653 - sources."rc-1.2.7" 39957 + sources."rc-1.2.8" 39654 39958 sources."readable-stream-2.3.6" 39655 39959 sources."readdirp-2.1.0" 39656 39960 sources."regex-not-1.0.2" ··· 39739 40043 ]; 39740 40044 }) 39741 40045 sources."util-deprecate-1.0.2" 39742 - sources."which-1.3.0" 40046 + sources."which-1.3.1" 39743 40047 sources."widest-line-2.0.0" 39744 40048 sources."write-file-atomic-2.3.0" 39745 40049 sources."xdg-basedir-3.0.0" ··· 39757 40061 node-red = nodeEnv.buildNodePackage { 39758 40062 name = "node-red"; 39759 40063 packageName = "node-red"; 39760 - version = "0.18.5"; 40064 + version = "0.18.7"; 39761 40065 src = fetchurl { 39762 - url = "https://registry.npmjs.org/node-red/-/node-red-0.18.5.tgz"; 39763 - sha512 = "39pg9g9hqnalz1dl4zhs3g53lz92syqxbdxpfa89psxxdiz9xg6sa4arf35gw0fi46r3bn5vgwrf9w4ks6s822mq42n1bq85jfq1jqs"; 40066 + url = "https://registry.npmjs.org/node-red/-/node-red-0.18.7.tgz"; 40067 + sha512 = "20gq2l5qpk797xqjmv5idimlpssq388gdhb1p49kr1jh4n9d5wafdw6w80l78sd3121rk47yn016knf8dxkgpc46i8cincabbkhgkvk"; 39764 40068 }; 39765 40069 dependencies = [ 39766 40070 sources."abbrev-1.1.1" ··· 39770 40074 sources."ansi-regex-2.1.1" 39771 40075 sources."append-field-0.1.0" 39772 40076 sources."aproba-1.2.0" 39773 - sources."are-we-there-yet-1.1.4" 40077 + sources."are-we-there-yet-1.1.5" 39774 40078 sources."argparse-1.0.10" 39775 40079 sources."array-flatten-1.1.1" 39776 40080 sources."array-indexofobject-0.0.1" ··· 39788 40092 sources."bcryptjs-2.4.3" 39789 40093 sources."bl-1.2.2" 39790 40094 sources."block-stream-0.0.9" 39791 - (sources."body-parser-1.18.2" // { 39792 - dependencies = [ 39793 - (sources."raw-body-2.3.2" // { 39794 - dependencies = [ 39795 - sources."depd-1.1.1" 39796 - sources."http-errors-1.6.2" 39797 - ]; 39798 - }) 39799 - sources."setprototypeof-1.0.3" 39800 - ]; 39801 - }) 40095 + sources."body-parser-1.18.3" 39802 40096 sources."boolbase-1.0.0" 39803 - sources."boom-4.3.1" 39804 40097 sources."brace-expansion-1.1.11" 39805 - sources."buffer-from-1.0.0" 40098 + sources."buffer-from-1.1.0" 39806 40099 sources."buildmail-2.0.0" 39807 40100 sources."busboy-0.2.14" 39808 40101 sources."bytes-3.0.0" ··· 39832 40125 sources."cors-2.8.4" 39833 40126 sources."crc-3.4.4" 39834 40127 sources."cron-1.3.0" 39835 - (sources."cryptiles-3.1.2" // { 39836 - dependencies = [ 39837 - sources."boom-5.2.0" 39838 - ]; 39839 - }) 39840 40128 sources."css-select-1.2.0" 39841 40129 sources."css-what-2.1.0" 39842 40130 sources."dashdash-1.14.1" 39843 40131 sources."debug-2.6.9" 39844 - sources."deep-extend-0.5.1" 40132 + sources."deep-extend-0.6.0" 39845 40133 sources."delayed-stream-1.0.0" 39846 40134 sources."delegates-1.0.0" 39847 40135 sources."depd-1.1.2" ··· 39864 40152 sources."etag-1.8.1" 39865 40153 (sources."express-4.16.3" // { 39866 40154 dependencies = [ 40155 + (sources."body-parser-1.18.2" // { 40156 + dependencies = [ 40157 + sources."setprototypeof-1.0.3" 40158 + ]; 40159 + }) 40160 + sources."iconv-lite-0.4.19" 40161 + sources."qs-6.5.1" 40162 + (sources."raw-body-2.3.2" // { 40163 + dependencies = [ 40164 + sources."depd-1.1.1" 40165 + sources."http-errors-1.6.2" 40166 + ]; 40167 + }) 39867 40168 sources."statuses-1.4.0" 39868 40169 ]; 39869 40170 }) ··· 39898 40199 sources."har-validator-5.0.3" 39899 40200 sources."has-unicode-2.0.1" 39900 40201 sources."hash-sum-1.0.2" 39901 - sources."hawk-6.0.2" 39902 40202 (sources."help-me-1.1.0" // { 39903 40203 dependencies = [ 39904 40204 sources."pump-2.0.1" 39905 40205 ]; 39906 40206 }) 39907 - sources."hoek-4.2.1" 39908 40207 (sources."htmlparser2-3.9.2" // { 39909 40208 dependencies = [ 39910 40209 sources."domelementtype-1.3.0" ··· 39914 40213 sources."http-signature-1.2.0" 39915 40214 sources."i18next-1.10.6" 39916 40215 sources."i18next-client-1.10.3" 39917 - sources."iconv-lite-0.4.19" 40216 + sources."iconv-lite-0.4.23" 39918 40217 sources."imap-0.8.19" 39919 40218 sources."inflight-1.0.6" 39920 40219 sources."inherits-2.0.3" ··· 39939 40238 sources."json-stable-stringify-1.0.1" 39940 40239 sources."json-stringify-safe-5.0.1" 39941 40240 sources."json5-0.2.0" 39942 - sources."jsonata-1.5.3" 40241 + sources."jsonata-1.5.4" 39943 40242 sources."jsonfile-4.0.0" 39944 40243 sources."jsonify-0.0.0" 39945 40244 sources."jsprim-1.4.1" ··· 39986 40285 sources."minimatch-3.0.4" 39987 40286 sources."minimist-1.2.0" 39988 40287 sources."mkdirp-0.5.1" 39989 - sources."moment-2.22.1" 40288 + sources."moment-2.22.2" 39990 40289 sources."moment-timezone-0.5.17" 39991 - (sources."mqtt-2.17.0" // { 40290 + (sources."mqtt-2.18.0" // { 39992 40291 dependencies = [ 39993 40292 sources."ws-3.3.3" 39994 40293 ]; ··· 40027 40326 ]; 40028 40327 }) 40029 40328 sources."node-red-node-rbe-0.2.3" 40030 - sources."node-red-node-twitter-0.1.13" 40329 + sources."node-red-node-twitter-0.1.15" 40031 40330 sources."nodemailer-1.11.0" 40032 40331 sources."nodemailer-direct-transport-1.1.0" 40033 40332 sources."nodemailer-smtp-transport-1.1.0" ··· 40066 40365 sources."pump-3.0.0" 40067 40366 sources."pumpify-1.5.1" 40068 40367 sources."punycode-1.4.1" 40069 - sources."qs-6.5.1" 40368 + sources."qs-6.5.2" 40070 40369 sources."random-bytes-1.0.0" 40071 40370 sources."range-parser-1.2.0" 40072 - (sources."raw-body-2.3.3" // { 40073 - dependencies = [ 40074 - sources."iconv-lite-0.4.23" 40075 - ]; 40076 - }) 40077 - sources."rc-1.2.7" 40371 + sources."raw-body-2.3.3" 40372 + sources."rc-1.2.8" 40078 40373 sources."readable-stream-2.3.6" 40079 40374 sources."reinterval-1.1.0" 40080 40375 sources."remove-trailing-separator-1.1.0" 40081 - sources."request-2.86.0" 40376 + sources."request-2.87.0" 40082 40377 sources."retry-0.6.1" 40083 40378 sources."rimraf-2.6.2" 40084 40379 sources."safe-buffer-5.1.1" ··· 40092 40387 sources."setprototypeof-1.1.0" 40093 40388 sources."signal-exit-3.0.2" 40094 40389 sources."smtp-connection-1.3.8" 40095 - sources."sntp-2.1.0" 40096 40390 sources."source-map-0.6.1" 40097 40391 sources."split2-2.2.0" 40098 40392 sources."sprintf-js-1.0.3" 40099 - sources."sshpk-1.14.1" 40393 + sources."sshpk-1.14.2" 40100 40394 sources."statuses-1.5.0" 40101 40395 sources."stream-shift-1.0.0" 40102 40396 sources."streamsearch-0.1.2" ··· 40115 40409 sources."twitter-ng-0.6.2" 40116 40410 sources."type-is-1.6.16" 40117 40411 sources."typedarray-0.0.6" 40118 - sources."uglify-js-3.3.24" 40412 + sources."uglify-js-3.3.25" 40119 40413 sources."uid-number-0.0.6" 40120 40414 sources."uid-safe-2.1.5" 40121 40415 sources."uid2-0.0.3" ··· 40133 40427 sources."verror-1.10.0" 40134 40428 sources."websocket-stream-5.1.2" 40135 40429 sources."when-3.7.8" 40136 - sources."wide-align-1.1.2" 40430 + sources."wide-align-1.1.3" 40137 40431 sources."wordwrap-0.0.3" 40138 40432 sources."wrappy-1.0.2" 40139 40433 (sources."ws-1.1.5" // { ··· 40252 40546 sources."qs-0.5.1" 40253 40547 sources."rai-0.1.12" 40254 40548 sources."range-parser-0.0.4" 40255 - sources."raw-socket-1.6.0" 40549 + sources."raw-socket-1.6.1" 40256 40550 sources."redis-0.7.3" 40257 40551 sources."semver-1.1.0" 40258 40552 sources."send-0.1.0" ··· 40287 40581 npm = nodeEnv.buildNodePackage { 40288 40582 name = "npm"; 40289 40583 packageName = "npm"; 40290 - version = "6.0.1"; 40584 + version = "6.1.0"; 40291 40585 src = fetchurl { 40292 - url = "https://registry.npmjs.org/npm/-/npm-6.0.1.tgz"; 40293 - sha512 = "03x8626d7ngp160j0lx7vmzpjglvlqbz4gf9kmdndaxna9h81zr8rjhad3jcdkr9j1nnlc1rsr7acsdny5ykl3dwilq0p486zr9cyrp"; 40586 + url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz"; 40587 + sha512 = "3bhkx1ynzp39m6w5mnwfimc25arlpxgs9vgk0w7ai8zw0q6kxyljj4xjvkyxg7wv1f8jbj3k31ifgvy0kff4p3sbp5li53ls851qzvv"; 40294 40588 }; 40295 40589 buildInputs = globalBuildInputs; 40296 40590 meta = { ··· 40315 40609 sources."ajv-5.5.2" 40316 40610 sources."ansi-regex-2.1.1" 40317 40611 sources."aproba-1.2.0" 40318 - sources."are-we-there-yet-1.1.4" 40612 + sources."are-we-there-yet-1.1.5" 40319 40613 sources."argparse-0.1.15" 40320 40614 sources."asn1-0.2.3" 40321 40615 sources."assert-plus-1.0.0" ··· 40329 40623 sources."inherits-2.0.3" 40330 40624 ]; 40331 40625 }) 40332 - sources."boom-4.3.1" 40333 40626 sources."brace-expansion-1.1.11" 40334 40627 sources."caseless-0.12.0" 40335 40628 sources."chownr-0.0.2" ··· 40346 40639 sources."console-control-strings-1.1.0" 40347 40640 sources."core-util-is-1.0.2" 40348 40641 sources."couch-login-0.1.20" 40349 - (sources."cryptiles-3.1.2" // { 40350 - dependencies = [ 40351 - sources."boom-5.2.0" 40352 - ]; 40353 - }) 40354 40642 sources."dashdash-1.14.1" 40355 40643 sources."delayed-stream-1.0.0" 40356 40644 sources."delegates-1.0.0" ··· 40382 40670 sources."har-schema-2.0.0" 40383 40671 sources."har-validator-5.0.3" 40384 40672 sources."has-unicode-2.0.1" 40385 - sources."hawk-6.0.2" 40386 - sources."hoek-4.2.1" 40387 40673 sources."http-signature-1.2.0" 40388 40674 sources."inflight-1.0.6" 40389 40675 sources."inherits-2.0.3" ··· 40403 40689 sources."minimatch-3.0.4" 40404 40690 sources."minimist-0.0.8" 40405 40691 sources."mkdirp-0.3.5" 40406 - sources."natives-1.1.3" 40692 + sources."natives-1.1.4" 40407 40693 sources."ncp-0.4.2" 40408 40694 sources."nopt-2.2.1" 40409 40695 (sources."npm-registry-client-0.2.27" // { ··· 40431 40717 sources."punycode-1.4.1" 40432 40718 sources."qs-6.5.2" 40433 40719 sources."readable-stream-2.3.6" 40434 - sources."request-2.86.0" 40720 + sources."request-2.87.0" 40435 40721 sources."retry-0.6.0" 40436 40722 sources."rimraf-2.6.2" 40437 40723 sources."safe-buffer-5.1.2" 40724 + sources."safer-buffer-2.1.2" 40438 40725 sources."semver-4.3.6" 40439 40726 sources."set-blocking-2.0.0" 40440 40727 sources."signal-exit-3.0.2" 40441 40728 sources."slide-1.1.6" 40442 - sources."sntp-2.1.0" 40443 - sources."sshpk-1.14.1" 40729 + sources."sshpk-1.14.2" 40444 40730 sources."string-width-1.0.2" 40445 40731 sources."string_decoder-1.1.1" 40446 40732 sources."strip-ansi-3.0.1" ··· 40466 40752 sources."uuid-3.2.1" 40467 40753 sources."verror-1.10.0" 40468 40754 sources."walk-2.3.13" 40469 - sources."wide-align-1.1.2" 40755 + sources."wide-align-1.1.3" 40470 40756 sources."wrappy-1.0.2" 40471 40757 ]; 40472 40758 buildInputs = globalBuildInputs; ··· 40508 40794 sources."cross-spawn-5.1.0" 40509 40795 sources."crypto-random-string-1.0.0" 40510 40796 sources."debug-2.6.9" 40511 - sources."deep-extend-0.5.1" 40797 + sources."deep-extend-0.6.0" 40512 40798 sources."dot-prop-4.2.0" 40513 40799 sources."duplexer3-0.1.4" 40514 40800 sources."escape-string-regexp-1.0.5" ··· 40537 40823 sources."is-stream-1.1.0" 40538 40824 sources."isexe-2.0.0" 40539 40825 sources."jju-1.3.0" 40540 - sources."js-yaml-3.11.0" 40826 + sources."js-yaml-3.12.0" 40541 40827 sources."json-parse-helpfulerror-1.0.3" 40542 40828 sources."json5-0.5.1" 40543 40829 sources."latest-version-3.1.0" ··· 40567 40853 sources."pinkie-promise-2.0.1" 40568 40854 sources."prepend-http-1.0.4" 40569 40855 sources."pseudomap-1.0.2" 40570 - sources."rc-1.2.7" 40856 + sources."rc-1.2.8" 40571 40857 sources."rc-config-loader-2.0.1" 40572 40858 sources."registry-auth-token-3.3.2" 40573 40859 sources."registry-url-3.1.0" ··· 40600 40886 ]; 40601 40887 }) 40602 40888 sources."url-parse-lax-1.0.0" 40603 - sources."which-1.3.0" 40889 + sources."which-1.3.1" 40604 40890 sources."widest-line-2.0.0" 40605 40891 sources."write-file-atomic-2.3.0" 40606 40892 sources."xdg-basedir-3.0.0" ··· 40644 40930 sources."code-point-at-1.1.0" 40645 40931 sources."color-convert-1.9.1" 40646 40932 sources."color-name-1.1.3" 40647 - sources."colors-1.2.5" 40933 + sources."colors-1.3.0" 40648 40934 sources."cross-spawn-5.1.0" 40649 - sources."cvss-1.0.2" 40935 + sources."cvss-1.0.3" 40650 40936 sources."debug-3.1.0" 40651 40937 sources."decamelize-1.2.0" 40652 40938 sources."error-ex-1.3.1" ··· 40698 40984 sources."os-locale-2.1.0" 40699 40985 sources."os-tmpdir-1.0.2" 40700 40986 sources."p-finally-1.0.0" 40701 - sources."p-limit-1.2.0" 40987 + sources."p-limit-1.3.0" 40702 40988 sources."p-locate-2.0.0" 40703 40989 sources."p-try-1.0.0" 40704 40990 sources."parse-json-2.2.0" ··· 40733 41019 sources."through-2.3.8" 40734 41020 sources."tmp-0.0.33" 40735 41021 sources."validate-npm-package-license-3.0.3" 40736 - sources."which-1.3.0" 41022 + sources."which-1.3.1" 40737 41023 sources."which-module-2.0.0" 40738 41024 sources."wrap-ansi-2.1.0" 40739 41025 sources."wreck-12.5.1" ··· 40761 41047 ocaml-language-server = nodeEnv.buildNodePackage { 40762 41048 name = "ocaml-language-server"; 40763 41049 packageName = "ocaml-language-server"; 40764 - version = "1.0.34"; 41050 + version = "1.0.35"; 40765 41051 src = fetchurl { 40766 - url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.34.tgz"; 40767 - sha512 = "216lq2hh4mmk0lzkn381p0l4lgr84xmv6jdjc42yry1yb695zy7bs36n40dmvc81afgsnc51b1rcbn51438ysk59w0drrxd8x43zykr"; 41052 + url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.35.tgz"; 41053 + sha512 = "3i0625j9mkprhjdmiw1ik23qi1wxl9kb826dbvbfkl4ksd9yxxs40k23rphxl3a10l303fa6in2lfidcf08qjqnv15m365bmkwbn57m"; 40768 41054 }; 40769 41055 dependencies = [ 40770 41056 sources."async-2.6.0" ··· 40786 41072 sources."vscode-languageclient-4.0.1" 40787 41073 sources."vscode-languageserver-4.0.0" 40788 41074 sources."vscode-languageserver-protocol-3.6.0" 40789 - sources."vscode-languageserver-types-3.7.2" 41075 + sources."vscode-languageserver-types-3.8.1" 40790 41076 sources."vscode-uri-1.0.3" 40791 41077 sources."wrappy-1.0.2" 40792 41078 ]; ··· 40833 41119 sources."content-type-1.0.4" 40834 41120 ]; 40835 41121 }) 40836 - sources."boom-4.3.1" 40837 41122 sources."brace-expansion-1.1.11" 40838 41123 sources."builtin-modules-1.1.1" 40839 41124 sources."bunyan-1.8.12" ··· 40847 41132 sources."cliui-2.1.0" 40848 41133 sources."co-4.6.0" 40849 41134 sources."code-point-at-1.1.0" 40850 - sources."colors-1.2.5" 41135 + sources."colors-1.3.0" 40851 41136 sources."combined-stream-1.0.6" 40852 - sources."compressible-2.0.13" 40853 - sources."compression-1.7.2" 41137 + sources."compressible-2.0.14" 41138 + (sources."compression-1.7.2" // { 41139 + dependencies = [ 41140 + sources."mime-db-1.34.0" 41141 + ]; 41142 + }) 40854 41143 sources."concat-map-0.0.1" 40855 41144 sources."connect-busboy-0.0.2" 40856 41145 sources."content-disposition-0.5.2" 40857 41146 sources."content-type-git+https://github.com/wikimedia/content-type#master" 40858 41147 sources."cookie-0.3.1" 40859 41148 sources."cookie-signature-1.0.6" 40860 - sources."core-js-2.5.6" 41149 + sources."core-js-2.5.7" 40861 41150 sources."core-util-is-1.0.2" 40862 - (sources."cryptiles-3.1.2" // { 40863 - dependencies = [ 40864 - sources."boom-5.2.0" 40865 - ]; 40866 - }) 40867 41151 sources."dashdash-1.14.1" 40868 41152 sources."debug-2.6.9" 40869 41153 sources."decamelize-1.2.0" ··· 40876 41160 sources."dnscache-1.0.1" 40877 41161 sources."dom-storage-2.1.0" 40878 41162 sources."domino-1.0.30" 40879 - sources."dtrace-provider-0.8.6" 41163 + sources."dtrace-provider-0.8.7" 40880 41164 sources."ecc-jsbn-0.1.1" 40881 41165 sources."ee-first-1.1.1" 40882 41166 sources."encodeurl-1.0.2" ··· 40938 41222 sources."har-validator-5.0.3" 40939 41223 sources."has-symbols-1.0.0" 40940 41224 sources."hat-0.0.3" 40941 - sources."hawk-6.0.2" 40942 - sources."hoek-4.2.1" 40943 41225 sources."hosted-git-info-2.6.0" 40944 41226 sources."hot-shots-4.8.0" 40945 41227 sources."http-errors-1.6.3" ··· 40958 41240 sources."is-utf8-0.2.1" 40959 41241 sources."isarray-0.0.1" 40960 41242 sources."isstream-0.1.2" 40961 - sources."js-yaml-3.11.0" 41243 + sources."js-yaml-3.12.0" 40962 41244 sources."jsbn-0.1.1" 40963 41245 sources."json-schema-0.2.3" 40964 41246 sources."json-schema-traverse-0.3.1" ··· 40988 41270 sources."minimatch-3.0.4" 40989 41271 sources."minimist-0.0.10" 40990 41272 sources."mkdirp-0.5.1" 40991 - sources."moment-2.22.1" 41273 + sources."moment-2.22.2" 40992 41274 sources."ms-2.0.0" 40993 41275 sources."msgpack5-3.6.0" 40994 41276 sources."mv-2.1.1" ··· 41028 41310 sources."read-pkg-up-1.0.1" 41029 41311 sources."readable-stream-1.1.14" 41030 41312 sources."repeat-string-1.6.1" 41031 - sources."request-2.86.0" 41313 + sources."request-2.87.0" 41032 41314 sources."require-directory-2.1.1" 41033 41315 sources."require-main-filename-1.0.1" 41034 41316 sources."right-align-0.1.3" 41035 41317 sources."rimraf-2.4.5" 41036 41318 sources."safe-buffer-5.1.1" 41037 - sources."safe-json-stringify-1.1.0" 41319 + sources."safe-json-stringify-1.2.0" 41038 41320 sources."safer-buffer-2.1.2" 41039 41321 sources."semver-5.5.0" 41040 41322 sources."send-0.16.2" ··· 41056 41338 sources."set-blocking-2.0.0" 41057 41339 sources."setprototypeof-1.1.0" 41058 41340 sources."simplediff-0.1.1" 41059 - sources."sntp-2.1.0" 41060 41341 sources."source-map-0.4.4" 41061 41342 sources."spdx-correct-3.0.0" 41062 41343 sources."spdx-exceptions-2.1.0" 41063 41344 sources."spdx-expression-parse-3.0.0" 41064 41345 sources."spdx-license-ids-3.0.0" 41065 41346 sources."sprintf-js-1.0.3" 41066 - sources."sshpk-1.14.1" 41347 + sources."sshpk-1.14.2" 41067 41348 sources."statuses-1.5.0" 41068 41349 sources."streamsearch-0.1.2" 41069 41350 sources."string-width-1.0.2" ··· 41130 41411 sources."balanced-match-1.0.0" 41131 41412 sources."base64-js-0.0.8" 41132 41413 sources."bencode-2.0.0" 41133 - sources."big-integer-1.6.28" 41414 + sources."big-integer-1.6.30" 41134 41415 sources."bitfield-0.1.0" 41135 41416 sources."bittorrent-dht-6.4.2" 41136 41417 sources."bittorrent-tracker-7.7.0" ··· 41141 41422 sources."bplist-creator-0.0.6" 41142 41423 sources."bplist-parser-0.1.1" 41143 41424 sources."brace-expansion-1.1.11" 41144 - sources."buffer-alloc-1.1.0" 41145 - sources."buffer-alloc-unsafe-0.1.1" 41425 + sources."buffer-alloc-1.2.0" 41426 + sources."buffer-alloc-unsafe-1.1.0" 41146 41427 sources."buffer-equal-0.0.1" 41147 41428 sources."buffer-equals-1.0.4" 41148 - sources."buffer-fill-0.1.1" 41149 - sources."buffer-from-1.0.0" 41429 + sources."buffer-fill-1.0.0" 41430 + sources."buffer-from-1.1.0" 41150 41431 sources."buffer-indexof-1.1.1" 41151 41432 sources."builtin-modules-1.1.1" 41152 41433 sources."camelcase-2.1.1" ··· 41168 41449 sources."decamelize-1.2.0" 41169 41450 sources."decompress-response-3.3.0" 41170 41451 sources."deep-equal-1.0.1" 41171 - sources."deep-extend-0.5.1" 41452 + sources."deep-extend-0.6.0" 41172 41453 sources."dns-equal-1.0.0" 41173 41454 sources."dns-packet-1.3.1" 41174 41455 sources."dns-txt-2.0.2" ··· 41286 41567 sources."random-iterate-1.0.1" 41287 41568 sources."randombytes-2.0.6" 41288 41569 sources."range-parser-1.2.0" 41289 - sources."rc-1.2.7" 41570 + sources."rc-1.2.8" 41290 41571 sources."re-emitter-1.1.3" 41291 41572 sources."read-pkg-1.1.0" 41292 41573 sources."read-pkg-up-1.0.1" ··· 41418 41699 sources."body-parser-1.13.3" 41419 41700 sources."boom-0.3.8" 41420 41701 sources."brace-expansion-1.1.11" 41421 - sources."buffer-alloc-1.1.0" 41422 - sources."buffer-alloc-unsafe-0.1.1" 41702 + sources."buffer-alloc-1.2.0" 41703 + sources."buffer-alloc-unsafe-1.1.0" 41423 41704 sources."buffer-equal-0.0.1" 41424 41705 sources."buffer-equals-1.0.4" 41425 - sources."buffer-fill-0.1.1" 41426 - sources."buffer-from-1.0.0" 41706 + sources."buffer-fill-1.0.0" 41707 + sources."buffer-from-1.1.0" 41427 41708 sources."bytes-2.1.0" 41428 41709 sources."callsite-1.0.0" 41429 41710 sources."combined-stream-0.0.7" ··· 41432 41713 sources."component-bind-1.0.0" 41433 41714 sources."component-emitter-1.2.1" 41434 41715 sources."component-inherit-0.0.3" 41435 - sources."compressible-2.0.13" 41716 + sources."compressible-2.0.14" 41436 41717 sources."compression-1.5.2" 41437 41718 sources."concat-map-0.0.1" 41438 41719 (sources."connect-2.30.2" // { ··· 41480 41761 dependencies = [ 41481 41762 sources."accepts-1.3.5" 41482 41763 sources."destroy-1.0.3" 41764 + sources."mime-db-1.34.0" 41483 41765 sources."ms-2.0.0" 41484 41766 sources."multiparty-3.3.2" 41485 41767 sources."negotiator-0.6.1" ··· 41699 41981 sources."utp-0.0.7" 41700 41982 sources."vary-1.0.1" 41701 41983 sources."vhost-3.0.2" 41702 - sources."which-1.3.0" 41984 + sources."which-1.3.1" 41703 41985 sources."wrappy-1.0.2" 41704 41986 sources."ws-1.1.5" 41705 41987 sources."wtf-8-1.0.0" ··· 41729 42011 sources."ansi-styles-2.2.1" 41730 42012 sources."asn1-0.2.3" 41731 42013 sources."assert-plus-0.2.0" 41732 - sources."async-2.6.0" 42014 + sources."async-2.6.1" 41733 42015 sources."aws-sign2-0.6.0" 41734 42016 sources."balanced-match-1.0.0" 41735 42017 sources."bcrypt-pbkdf-1.0.1" ··· 41810 42092 sources."request-2.67.0" 41811 42093 sources."request-progress-2.0.1" 41812 42094 sources."rimraf-2.6.2" 42095 + sources."safer-buffer-2.1.2" 41813 42096 sources."sntp-1.0.9" 41814 - (sources."sshpk-1.14.1" // { 42097 + (sources."sshpk-1.14.2" // { 41815 42098 dependencies = [ 41816 42099 sources."assert-plus-1.0.0" 41817 42100 ]; ··· 41844 42127 prettier = nodeEnv.buildNodePackage { 41845 42128 name = "prettier"; 41846 42129 packageName = "prettier"; 41847 - version = "1.12.1"; 42130 + version = "1.13.4"; 41848 42131 src = fetchurl { 41849 - url = "https://registry.npmjs.org/prettier/-/prettier-1.12.1.tgz"; 41850 - sha1 = "c1ad20e803e7749faf905a409d2367e06bbe7325"; 42132 + url = "https://registry.npmjs.org/prettier/-/prettier-1.13.4.tgz"; 42133 + sha512 = "325wxdf3kzhwx8wnfz13gnllivgbgsbwqfqmq3pv29gamzzwspajfjwz7iw83fxlzf3nyd038h4qv9y544v5b5fjvsh52n0crkh8svs"; 41851 42134 }; 41852 42135 buildInputs = globalBuildInputs; 41853 42136 meta = { ··· 41867 42150 sha512 = "1kgjvji88fvdi6vazqq6gx32zqgkg9qp639952cz2v2g5izl7yblgawy1xra5dypv5c1a43wk4ch4iskr1kxxpfmn7pnql92q1nvxgg"; 41868 42151 }; 41869 42152 dependencies = [ 41870 - sources."JSONStream-1.3.2" 42153 + sources."JSONStream-1.3.3" 41871 42154 sources."acorn-4.0.13" 41872 42155 sources."acorn-node-1.3.0" 41873 42156 (sources."anymatch-2.0.0" // { ··· 41894 42177 sources."array-reduce-0.0.0" 41895 42178 sources."array-unique-0.3.2" 41896 42179 sources."asn1.js-4.10.1" 41897 - sources."assert-1.4.1" 42180 + (sources."assert-1.4.1" // { 42181 + dependencies = [ 42182 + sources."inherits-2.0.1" 42183 + sources."util-0.10.3" 42184 + ]; 42185 + }) 41898 42186 sources."assign-symbols-1.0.0" 41899 42187 sources."astw-2.2.0" 41900 42188 sources."async-1.5.2" ··· 41929 42217 }) 41930 42218 (sources."browserify-13.3.0" // { 41931 42219 dependencies = [ 41932 - sources."acorn-5.5.3" 42220 + sources."acorn-5.6.2" 41933 42221 (sources."concat-stream-1.5.2" // { 41934 42222 dependencies = [ 41935 42223 sources."readable-stream-2.0.6" ··· 41954 42242 sources."browserify-zlib-0.1.4" 41955 42243 sources."buffer-4.9.1" 41956 42244 sources."buffer-crc32-0.2.13" 41957 - sources."buffer-from-1.0.0" 42245 + sources."buffer-from-1.1.0" 41958 42246 sources."buffer-xor-1.0.3" 41959 42247 sources."builtin-status-codes-3.0.0" 41960 42248 sources."cache-base-1.0.1" ··· 41974 42262 ]; 41975 42263 }) 41976 42264 sources."collection-visit-1.0.0" 41977 - sources."colors-1.2.5" 42265 + sources."colors-1.3.0" 41978 42266 sources."combine-source-map-0.8.0" 41979 42267 sources."component-emitter-1.2.1" 41980 42268 sources."concat-map-0.0.1" ··· 42030 42318 ]; 42031 42319 }) 42032 42320 sources."graceful-fs-4.1.11" 42033 - sources."has-1.0.1" 42321 + sources."has-1.0.3" 42034 42322 sources."has-value-1.0.0" 42035 42323 sources."has-values-1.0.0" 42036 42324 sources."hash-base-3.0.4" ··· 42183 42471 sources."static-extend-0.1.2" 42184 42472 sources."stream-browserify-2.0.1" 42185 42473 sources."stream-combiner2-1.1.1" 42186 - sources."stream-http-2.8.2" 42474 + sources."stream-http-2.8.3" 42187 42475 sources."stream-splicer-2.0.0" 42188 42476 sources."string-stream-0.0.7" 42189 42477 sources."string_decoder-0.10.31" ··· 42231 42519 sources."kind-of-6.0.2" 42232 42520 ]; 42233 42521 }) 42234 - (sources."util-0.10.3" // { 42235 - dependencies = [ 42236 - sources."inherits-2.0.1" 42237 - ]; 42238 - }) 42522 + sources."util-0.10.4" 42239 42523 sources."util-deprecate-1.0.2" 42240 42524 sources."vm-browserify-0.0.4" 42241 42525 (sources."watchpack-1.6.0" // { ··· 42263 42547 sources."kind-of-3.2.2" 42264 42548 ]; 42265 42549 }) 42266 - sources."which-1.3.0" 42550 + sources."which-1.3.1" 42267 42551 sources."wordwrap-1.0.0" 42268 42552 sources."wrappy-1.0.2" 42269 42553 sources."xtend-4.0.1" ··· 42299 42583 sources."align-text-0.1.4" 42300 42584 sources."ansi-regex-2.1.1" 42301 42585 sources."aproba-1.2.0" 42302 - sources."are-we-there-yet-1.1.4" 42586 + sources."are-we-there-yet-1.1.5" 42303 42587 sources."array-flatten-1.1.1" 42304 42588 sources."asap-2.0.6" 42305 42589 sources."asn1-0.2.3" ··· 42316 42600 sources."bl-1.2.2" 42317 42601 sources."body-parser-1.18.3" 42318 42602 sources."boom-2.10.1" 42319 - sources."buffer-alloc-1.1.0" 42320 - sources."buffer-alloc-unsafe-0.1.1" 42321 - sources."buffer-fill-0.1.1" 42603 + sources."buffer-alloc-1.2.0" 42604 + sources."buffer-alloc-unsafe-1.1.0" 42605 + sources."buffer-fill-1.0.0" 42322 42606 sources."bufferutil-2.0.1" 42323 42607 sources."bytes-3.0.0" 42324 42608 sources."camelcase-1.2.1" ··· 42339 42623 sources."cookie-0.3.1" 42340 42624 sources."cookie-parser-1.4.3" 42341 42625 sources."cookie-signature-1.0.6" 42342 - sources."core-js-2.5.6" 42626 + sources."core-js-2.5.7" 42343 42627 sources."core-util-is-1.0.2" 42344 42628 sources."cryptiles-2.0.5" 42345 42629 sources."dashdash-1.14.1" 42346 42630 sources."debug-2.6.9" 42347 42631 sources."decamelize-1.2.0" 42348 - sources."deep-extend-0.5.1" 42632 + sources."deep-extend-0.6.0" 42349 42633 sources."delayed-stream-1.0.0" 42350 42634 sources."delegates-1.0.0" 42351 42635 sources."depd-1.1.2" ··· 42394 42678 sources."graceful-fs-4.1.11" 42395 42679 sources."har-schema-1.0.5" 42396 42680 sources."har-validator-4.2.1" 42397 - sources."has-1.0.1" 42681 + sources."has-1.0.3" 42398 42682 sources."has-unicode-2.0.1" 42399 42683 sources."hawk-3.1.3" 42400 42684 sources."hoek-2.16.3" ··· 42500 42784 sources."qtdatastream-0.7.1" 42501 42785 sources."range-parser-1.2.0" 42502 42786 sources."raw-body-2.3.3" 42503 - sources."rc-1.2.7" 42787 + sources."rc-1.2.8" 42504 42788 sources."readable-stream-2.3.6" 42505 42789 sources."regenerator-runtime-0.11.1" 42506 42790 sources."repeat-string-1.6.1" ··· 42525 42809 sources."simple-get-1.4.3" 42526 42810 sources."sntp-1.0.9" 42527 42811 sources."source-map-0.5.7" 42528 - (sources."sshpk-1.14.1" // { 42812 + (sources."sshpk-1.14.2" // { 42529 42813 dependencies = [ 42530 42814 sources."assert-plus-1.0.0" 42531 42815 ]; ··· 42556 42840 sources."vary-1.1.2" 42557 42841 sources."verror-1.10.0" 42558 42842 sources."void-elements-2.0.1" 42559 - sources."wide-align-1.1.2" 42843 + sources."wide-align-1.1.3" 42560 42844 sources."window-size-0.1.0" 42561 42845 sources."with-5.1.1" 42562 42846 sources."wordwrap-0.0.2" ··· 42583 42867 sha1 = "da6ac7d4d7777a59a5e951cf46e72fd4b6b40a2c"; 42584 42868 }; 42585 42869 dependencies = [ 42586 - sources."acorn-5.5.3" 42870 + sources."acorn-5.6.2" 42587 42871 sources."amdefine-1.0.1" 42588 42872 sources."ast-types-0.9.6" 42589 42873 sources."balanced-match-1.0.0" ··· 42709 42993 sources."aws-sign2-0.7.0" 42710 42994 sources."aws4-1.7.0" 42711 42995 sources."bcrypt-pbkdf-1.0.1" 42712 - sources."boom-4.3.1" 42713 42996 sources."buffer-crc32-0.2.1" 42714 42997 sources."bytes-0.2.1" 42715 42998 sources."caseless-0.12.0" ··· 42726 43009 sources."cookie-signature-1.0.1" 42727 43010 sources."core-util-is-1.0.2" 42728 43011 sources."crc-0.2.0" 42729 - (sources."cryptiles-3.1.2" // { 42730 - dependencies = [ 42731 - sources."boom-5.2.0" 42732 - ]; 42733 - }) 42734 43012 sources."crypto-0.0.3" 42735 43013 sources."dashdash-1.14.1" 42736 43014 sources."debug-3.1.0" ··· 42765 43043 sources."getpass-0.1.7" 42766 43044 sources."har-schema-2.0.0" 42767 43045 sources."har-validator-5.0.3" 42768 - sources."hawk-6.0.2" 42769 - sources."hoek-4.2.1" 42770 43046 sources."http-auth-2.0.7" 42771 43047 sources."http-signature-1.2.0" 42772 43048 sources."inherits-2.0.3" ··· 42795 43071 (sources."openid-2.0.6" // { 42796 43072 dependencies = [ 42797 43073 sources."qs-6.5.2" 42798 - sources."request-2.86.0" 43074 + sources."request-2.87.0" 42799 43075 ]; 42800 43076 }) 42801 43077 sources."pause-0.0.1" ··· 42807 43083 sources."readable-stream-1.1.14" 42808 43084 sources."request-2.9.203" 42809 43085 sources."safe-buffer-5.1.2" 43086 + sources."safer-buffer-2.1.2" 42810 43087 sources."sax-1.2.4" 42811 43088 sources."send-0.1.4" 42812 - sources."sntp-2.1.0" 42813 - sources."sshpk-1.14.1" 43089 + sources."sshpk-1.14.2" 42814 43090 sources."stream-counter-0.2.0" 42815 43091 sources."string-1.6.1" 42816 43092 sources."string_decoder-0.10.31" ··· 42850 43126 serve = nodeEnv.buildNodePackage { 42851 43127 name = "serve"; 42852 43128 packageName = "serve"; 42853 - version = "6.5.7"; 43129 + version = "8.1.1"; 42854 43130 src = fetchurl { 42855 - url = "https://registry.npmjs.org/serve/-/serve-6.5.7.tgz"; 42856 - sha512 = "1kn5wi04mvlkl4p56wihpgkh9va0vxy2a6rsfpy62ra53iri5w0dq8aipp62m8a23hl1s4g2bcfxyxlxmlyzkv9mvqi0455afbpn2nw"; 43131 + url = "https://registry.npmjs.org/serve/-/serve-8.1.1.tgz"; 43132 + sha512 = "33362hcr3ya4yadf2vzck9w8ihh58g025y2ngrj7c461h2jbazi1ddrp4qi8d82y5781rkrihahas2y3pcskipx75n2mghs2mhs98dx"; 42857 43133 }; 42858 43134 dependencies = [ 42859 - sources."accepts-1.3.5" 42860 - sources."address-1.0.3" 42861 - sources."align-text-0.1.4" 42862 - sources."amdefine-1.0.1" 42863 - sources."ansi-align-2.0.0" 42864 - sources."ansi-regex-3.0.0" 43135 + sources."@zeit/schemas-1.2.0" 43136 + sources."ajv-6.5.0" 42865 43137 sources."ansi-styles-3.2.1" 42866 - sources."arch-2.1.0" 42867 - (sources."args-4.0.0" // { 42868 - dependencies = [ 42869 - sources."chalk-2.3.2" 42870 - ]; 42871 - }) 42872 - sources."async-1.5.2" 42873 - sources."basic-auth-2.0.0" 42874 - sources."bluebird-3.5.1" 42875 - (sources."boxen-1.3.0" // { 42876 - dependencies = [ 42877 - sources."camelcase-4.1.0" 42878 - ]; 42879 - }) 43138 + sources."arg-2.0.0" 43139 + sources."balanced-match-1.0.0" 43140 + sources."brace-expansion-1.1.11" 42880 43141 sources."bytes-3.0.0" 42881 - sources."camelcase-5.0.0" 42882 - sources."center-align-0.1.3" 42883 - sources."chalk-2.4.0" 42884 - sources."cli-boxes-1.0.0" 42885 - (sources."clipboardy-1.2.3" // { 42886 - dependencies = [ 42887 - sources."execa-0.8.0" 42888 - ]; 42889 - }) 42890 - sources."cliui-2.1.0" 43142 + sources."chalk-2.4.1" 42891 43143 sources."color-convert-1.9.1" 42892 43144 sources."color-name-1.1.3" 42893 - sources."compressible-2.0.13" 42894 - sources."compression-1.7.2" 42895 - sources."content-type-1.0.4" 42896 - sources."cross-spawn-5.1.0" 42897 - sources."dargs-5.1.0" 42898 - sources."debug-2.6.9" 42899 - sources."decamelize-1.2.0" 42900 - sources."deep-extend-0.5.1" 42901 - sources."depd-1.1.1" 42902 - sources."destroy-1.0.4" 42903 - sources."detect-port-1.2.2" 42904 - sources."ee-first-1.1.1" 42905 - sources."encodeurl-1.0.2" 42906 - sources."escape-html-1.0.3" 43145 + sources."concat-map-0.0.1" 43146 + sources."content-disposition-0.5.2" 43147 + sources."deep-extend-0.6.0" 42907 43148 sources."escape-string-regexp-1.0.5" 42908 - sources."etag-1.8.1" 42909 - sources."execa-0.7.0" 42910 - sources."filesize-3.6.1" 42911 - sources."fresh-0.5.2" 42912 - sources."fs-extra-5.0.0" 42913 - sources."get-stream-3.0.0" 42914 - sources."graceful-fs-4.1.11" 42915 - (sources."handlebars-4.0.11" // { 42916 - dependencies = [ 42917 - sources."camelcase-1.2.1" 42918 - sources."wordwrap-0.0.2" 42919 - ]; 42920 - }) 43149 + sources."fast-deep-equal-2.0.1" 43150 + sources."fast-json-stable-stringify-2.0.0" 43151 + sources."fast-url-parser-1.1.3" 43152 + sources."glob-slash-1.0.0" 43153 + sources."glob-slasher-1.0.1" 42921 43154 sources."has-flag-3.0.0" 42922 - sources."http-errors-1.6.2" 42923 - sources."iconv-lite-0.4.19" 42924 - sources."inherits-2.0.3" 42925 43155 sources."ini-1.3.5" 42926 - sources."ip-1.1.5" 42927 - sources."is-buffer-1.1.6" 42928 - sources."is-fullwidth-code-point-2.0.0" 42929 - sources."is-stream-1.1.0" 42930 - sources."is-wsl-1.1.0" 42931 - sources."isexe-2.0.0" 42932 - sources."jsonfile-4.0.0" 42933 - sources."kind-of-3.2.2" 42934 - sources."lazy-cache-1.0.4" 42935 - sources."leven-2.1.0" 42936 - sources."longest-1.0.1" 42937 - sources."lru-cache-4.1.3" 42938 - sources."micro-9.1.4" 42939 - sources."micro-compress-1.0.0" 42940 - sources."mime-1.4.1" 43156 + sources."json-schema-traverse-0.3.1" 43157 + sources."lodash-2.4.2" 43158 + sources."lodash._objecttypes-2.4.1" 43159 + sources."lodash.isobject-2.4.1" 42941 43160 sources."mime-db-1.33.0" 42942 43161 sources."mime-types-2.1.18" 42943 - sources."minimist-0.0.10" 42944 - sources."mri-1.1.0" 42945 - sources."ms-2.0.0" 42946 - sources."negotiator-0.6.1" 42947 - sources."node-version-1.1.3" 42948 - sources."npm-run-path-2.0.2" 42949 - sources."on-finished-2.3.0" 42950 - sources."on-headers-1.0.1" 42951 - sources."openssl-self-signed-certificate-1.1.6" 42952 - sources."opn-5.3.0" 42953 - sources."optimist-0.6.1" 42954 - sources."p-finally-1.0.0" 43162 + sources."minimatch-3.0.4" 43163 + sources."minimist-1.2.0" 42955 43164 sources."path-is-inside-1.0.2" 42956 - sources."path-key-2.0.1" 42957 - sources."path-type-3.0.0" 42958 - sources."pify-3.0.0" 42959 - sources."promise-timeout-1.3.0" 42960 - sources."pseudomap-1.0.2" 42961 - sources."range-parser-1.2.0" 42962 - sources."raw-body-2.3.2" 42963 - sources."rc-1.2.7" 43165 + sources."path-to-regexp-2.2.1" 43166 + sources."punycode-2.1.1" 43167 + sources."rc-1.2.8" 42964 43168 sources."registry-auth-token-3.3.2" 42965 43169 sources."registry-url-3.1.0" 42966 - sources."repeat-string-1.6.1" 42967 - sources."right-align-0.1.3" 42968 - sources."safe-buffer-5.1.1" 42969 - (sources."send-0.16.2" // { 43170 + sources."safe-buffer-5.1.2" 43171 + (sources."serve-handler-3.1.0" // { 42970 43172 dependencies = [ 42971 - sources."depd-1.1.2" 42972 - sources."statuses-1.4.0" 43173 + sources."punycode-1.4.1" 42973 43174 ]; 42974 43175 }) 42975 - sources."setprototypeof-1.0.3" 42976 - sources."shebang-command-1.2.0" 42977 - sources."shebang-regex-1.0.0" 42978 - sources."signal-exit-3.0.2" 42979 - sources."source-map-0.4.4" 42980 - sources."statuses-1.5.0" 42981 - sources."string-width-2.1.1" 42982 - sources."strip-ansi-4.0.0" 42983 - sources."strip-eof-1.0.0" 42984 43176 sources."strip-json-comments-2.0.1" 42985 43177 sources."supports-color-5.4.0" 42986 - sources."term-size-1.2.0" 42987 - (sources."uglify-js-2.8.29" // { 42988 - dependencies = [ 42989 - sources."source-map-0.5.7" 42990 - ]; 42991 - }) 42992 - sources."uglify-to-browserify-1.0.2" 42993 - sources."universalify-0.1.1" 42994 - sources."unpipe-1.0.0" 42995 - (sources."update-check-1.5.0" // { 42996 - dependencies = [ 42997 - sources."minimist-1.2.0" 42998 - ]; 42999 - }) 43000 - sources."vary-1.1.2" 43001 - sources."which-1.3.0" 43002 - sources."widest-line-2.0.0" 43003 - sources."window-size-0.1.0" 43004 - sources."wordwrap-0.0.3" 43005 - sources."yallist-2.1.2" 43006 - sources."yargs-3.10.0" 43178 + sources."toxic-1.0.0" 43179 + sources."update-check-1.5.2" 43180 + sources."uri-js-4.2.2" 43007 43181 ]; 43008 43182 buildInputs = globalBuildInputs; 43009 43183 meta = { ··· 43046 43220 sources."setprototypeof-1.0.3" 43047 43221 ]; 43048 43222 }) 43049 - sources."boom-4.3.1" 43050 43223 sources."bytes-3.0.0" 43051 43224 sources."callsite-1.0.0" 43052 43225 sources."caseless-0.12.0" ··· 43067 43240 sources."cookie-0.3.1" 43068 43241 sources."cookie-signature-1.0.6" 43069 43242 sources."core-util-is-1.0.2" 43070 - (sources."cryptiles-3.1.2" // { 43071 - dependencies = [ 43072 - sources."boom-5.2.0" 43073 - ]; 43074 - }) 43075 43243 sources."dashdash-1.14.1" 43076 43244 sources."debug-2.6.9" 43077 43245 sources."delayed-stream-1.0.0" ··· 43114 43282 sources."har-validator-5.0.3" 43115 43283 sources."has-binary-data-0.1.1" 43116 43284 sources."has-cors-1.0.3" 43117 - sources."hawk-6.0.2" 43118 - sources."hoek-4.2.1" 43119 43285 (sources."htmlparser2-3.7.3" // { 43120 43286 dependencies = [ 43121 43287 sources."entities-1.0.0" ··· 43176 43342 }) 43177 43343 sources."read-1.0.7" 43178 43344 sources."readable-stream-1.1.14" 43179 - sources."request-2.86.0" 43345 + sources."request-2.87.0" 43180 43346 sources."safe-buffer-5.1.1" 43347 + sources."safer-buffer-2.1.2" 43181 43348 sources."send-0.16.2" 43182 43349 sources."serve-static-1.13.2" 43183 43350 sources."setprototypeof-1.1.0" ··· 43187 43354 sources."debug-0.7.4" 43188 43355 ]; 43189 43356 }) 43190 - sources."sntp-2.1.0" 43191 43357 (sources."socket.io-1.0.6" // { 43192 43358 dependencies = [ 43193 43359 sources."commander-0.6.1" ··· 43203 43369 sources."socket.io-client-1.0.6" 43204 43370 sources."socket.io-parser-2.2.0" 43205 43371 sources."split-0.3.3" 43206 - sources."sshpk-1.14.1" 43372 + sources."sshpk-1.14.2" 43207 43373 sources."statuses-1.4.0" 43208 43374 sources."stream-combiner-0.0.4" 43209 43375 sources."string_decoder-0.10.31" ··· 43241 43407 sha1 = "36bf5209356facbf6cef18fa32274d116043ed24"; 43242 43408 }; 43243 43409 dependencies = [ 43244 - sources."JSONStream-1.3.2" 43410 + sources."JSONStream-1.3.3" 43245 43411 sources."accepts-1.3.5" 43246 43412 sources."ajv-5.5.2" 43247 43413 sources."amdefine-1.0.1" ··· 43265 43431 sources."raw-body-2.3.3" 43266 43432 ]; 43267 43433 }) 43268 - sources."boom-4.3.1" 43269 43434 sources."brace-expansion-1.1.11" 43270 43435 (sources."bunyan-1.8.12" // { 43271 43436 dependencies = [ ··· 43280 43445 sources."color-name-1.1.3" 43281 43446 sources."combined-stream-1.0.6" 43282 43447 sources."commander-2.15.1" 43283 - sources."compressible-2.0.13" 43448 + sources."compressible-2.0.14" 43284 43449 (sources."compression-1.7.2" // { 43285 43450 dependencies = [ 43286 43451 sources."bytes-3.0.0" 43452 + sources."mime-db-1.34.0" 43287 43453 ]; 43288 43454 }) 43289 43455 sources."concat-map-0.0.1" ··· 43294 43460 sources."cookies-0.7.1" 43295 43461 sources."core-util-is-1.0.2" 43296 43462 sources."crypt3-0.2.0" 43297 - (sources."cryptiles-3.1.2" // { 43298 - dependencies = [ 43299 - sources."boom-5.2.0" 43300 - ]; 43301 - }) 43302 43463 sources."dashdash-1.14.1" 43303 43464 sources."debug-2.6.9" 43304 43465 sources."delayed-stream-1.0.0" ··· 43312 43473 sources."domelementtype-1.3.0" 43313 43474 sources."domhandler-2.4.2" 43314 43475 sources."domutils-1.7.0" 43315 - sources."dtrace-provider-0.8.6" 43476 + sources."dtrace-provider-0.8.7" 43316 43477 sources."ecc-jsbn-0.1.1" 43317 43478 sources."ee-first-1.1.1" 43318 43479 sources."encodeurl-1.0.2" ··· 43344 43505 sources."har-schema-2.0.0" 43345 43506 sources."har-validator-5.0.3" 43346 43507 sources."has-flag-3.0.0" 43347 - sources."hawk-6.0.2" 43348 43508 sources."highlight.js-8.9.1" 43349 - sources."hoek-4.2.1" 43350 43509 sources."htmlparser2-3.9.2" 43351 43510 (sources."http-errors-1.6.3" // { 43352 43511 dependencies = [ ··· 43363 43522 sources."isarray-1.0.0" 43364 43523 sources."isstream-0.1.2" 43365 43524 sources."jju-1.3.0" 43366 - sources."js-yaml-3.11.0" 43525 + sources."js-yaml-3.12.0" 43367 43526 sources."jsbn-0.1.1" 43368 43527 sources."json-schema-0.2.3" 43369 43528 sources."json-schema-traverse-0.3.1" ··· 43390 43549 sources."minimatch-1.0.0" 43391 43550 sources."minimist-0.0.8" 43392 43551 sources."mkdirp-0.5.1" 43393 - sources."moment-2.22.1" 43552 + sources."moment-2.22.2" 43394 43553 sources."ms-2.0.0" 43395 43554 sources."mv-2.1.1" 43396 43555 sources."nan-2.10.0" ··· 43425 43584 sources."source-map-0.6.1" 43426 43585 ]; 43427 43586 }) 43428 - (sources."request-2.86.0" // { 43587 + (sources."request-2.87.0" // { 43429 43588 dependencies = [ 43430 43589 sources."qs-6.5.2" 43431 43590 ]; ··· 43438 43597 ]; 43439 43598 }) 43440 43599 sources."safe-buffer-5.1.1" 43441 - sources."safe-json-stringify-1.1.0" 43600 + sources."safe-json-stringify-1.2.0" 43442 43601 sources."safer-buffer-2.1.2" 43443 43602 sources."sanitize-html-1.18.2" 43444 43603 sources."semver-4.3.6" ··· 43447 43606 sources."setprototypeof-1.0.3" 43448 43607 sources."sigmund-1.0.1" 43449 43608 sources."sinopia-htpasswd-0.4.5" 43450 - sources."sntp-2.1.0" 43451 43609 sources."source-map-0.1.43" 43452 43610 sources."sprintf-js-1.0.3" 43453 43611 sources."srcset-1.0.0" 43454 - sources."sshpk-1.14.1" 43612 + sources."sshpk-1.14.2" 43455 43613 sources."statuses-1.3.1" 43456 43614 sources."string_decoder-1.1.1" 43457 43615 sources."supports-color-5.4.0" ··· 43594 43752 }) 43595 43753 sources."rimraf-2.4.5" 43596 43754 sources."safe-buffer-5.1.2" 43597 - sources."safe-json-stringify-1.1.0" 43755 + sources."safe-json-stringify-1.2.0" 43598 43756 sources."semver-4.3.6" 43599 43757 (sources."smartdc-auth-2.3.1" // { 43600 43758 dependencies = [ ··· 43663 43821 "socket.io" = nodeEnv.buildNodePackage { 43664 43822 name = "socket.io"; 43665 43823 packageName = "socket.io"; 43666 - version = "2.1.0"; 43824 + version = "2.1.1"; 43667 43825 src = fetchurl { 43668 - url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz"; 43669 - sha512 = "2wkm6yqxvn8wk51rbakza3zxg3rknzfgmwqrbzvnlacf1yylplsr61i67m01sg8x7589ymj6x3z266ngvqd6qyyakdx4dlnsl4bfbr9"; 43826 + url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz"; 43827 + sha512 = "343q0n5zxyjzzcmyq7dr3naqbrpl3x469y1ff8zxxr104np1l5l9w1d0vl7nncbaxhxymwplbzfy9sbipjrbp5d001nvv9ysymnmr5c"; 43670 43828 }; 43671 43829 dependencies = [ 43672 43830 sources."accepts-1.3.5" ··· 43700 43858 sources."parseuri-0.0.5" 43701 43859 sources."safe-buffer-5.1.2" 43702 43860 sources."socket.io-adapter-1.1.1" 43703 - sources."socket.io-client-2.1.0" 43861 + sources."socket.io-client-2.1.1" 43704 43862 sources."socket.io-parser-3.2.0" 43705 43863 sources."to-array-0.1.4" 43706 43864 sources."ultron-1.1.1" ··· 43870 44028 sources."domelementtype-1.3.0" 43871 44029 sources."domutils-1.5.1" 43872 44030 sources."entities-1.1.1" 43873 - sources."es-abstract-1.11.0" 44031 + sources."es-abstract-1.12.0" 43874 44032 sources."es-to-primitive-1.1.1" 43875 44033 sources."esprima-4.0.0" 43876 44034 sources."foreach-2.0.5" 43877 44035 sources."function-bind-1.1.1" 43878 - sources."has-1.0.1" 44036 + sources."has-1.0.3" 43879 44037 sources."is-callable-1.1.3" 43880 44038 sources."is-date-object-1.0.1" 43881 44039 sources."is-regex-1.0.4" 43882 44040 sources."is-symbol-1.0.1" 43883 44041 sources."js-yaml-3.10.0" 43884 - sources."mdn-data-1.1.3" 44042 + sources."mdn-data-1.1.4" 43885 44043 sources."minimist-0.0.8" 43886 44044 sources."mkdirp-0.5.1" 43887 44045 sources."nth-check-1.0.1" ··· 43954 44112 titanium = nodeEnv.buildNodePackage { 43955 44113 name = "titanium"; 43956 44114 packageName = "titanium"; 43957 - version = "5.1.0"; 44115 + version = "5.1.1"; 43958 44116 src = fetchurl { 43959 - url = "https://registry.npmjs.org/titanium/-/titanium-5.1.0.tgz"; 43960 - sha1 = "68597b6d324a65c7cf070c40a2a156b219ca06dd"; 44117 + url = "https://registry.npmjs.org/titanium/-/titanium-5.1.1.tgz"; 44118 + sha1 = "69b0032628178bafc3f0d09a1c9c16437413db5b"; 43961 44119 }; 43962 44120 dependencies = [ 43963 44121 sources."adm-zip-0.4.7" ··· 44072 44230 sources."right-align-0.1.3" 44073 44231 sources."rimraf-2.2.8" 44074 44232 sources."safe-buffer-5.1.2" 44233 + sources."safer-buffer-2.1.2" 44075 44234 sources."semver-5.3.0" 44076 44235 sources."sntp-1.0.9" 44077 44236 sources."source-map-0.1.32" 44078 44237 sources."source-map-support-0.3.2" 44079 44238 sources."sprintf-0.1.5" 44080 - (sources."sshpk-1.14.1" // { 44239 + (sources."sshpk-1.14.2" // { 44081 44240 dependencies = [ 44082 44241 sources."assert-plus-1.0.0" 44083 44242 ]; ··· 44118 44277 typescript = nodeEnv.buildNodePackage { 44119 44278 name = "typescript"; 44120 44279 packageName = "typescript"; 44121 - version = "2.8.3"; 44280 + version = "2.9.1"; 44122 44281 src = fetchurl { 44123 - url = "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz"; 44124 - sha512 = "2vwhgmdrdw42wwaqbmrnz7zy197hrxl6smkmhrb3n93vsjmqg24a4r10czdralib6qpj82bx2gw97r3gxlspj7y54jswigs2vj3bf1b"; 44282 + url = "https://registry.npmjs.org/typescript/-/typescript-2.9.1.tgz"; 44283 + sha512 = "1066hcxz9xdrz1mnyz6kl6ms4szdjxvlz6j37mdp6jlf6vnhmdxx8qyikbzgy7yzvx6i7hvxhg51kc6isw9wpar2r1ch3f6zzclral7"; 44125 44284 }; 44126 44285 buildInputs = globalBuildInputs; 44127 44286 meta = { ··· 44155 44314 sources."bluebird-3.5.1" 44156 44315 sources."boxen-1.3.0" 44157 44316 sources."brace-expansion-1.1.11" 44158 - sources."buffer-from-1.0.0" 44317 + sources."buffer-from-1.1.0" 44159 44318 sources."camelcase-4.1.0" 44160 44319 sources."capture-stack-trace-1.0.0" 44161 44320 sources."chalk-1.1.3" ··· 44181 44340 sources."cross-spawn-5.1.0" 44182 44341 sources."crypto-random-string-1.0.0" 44183 44342 sources."debug-2.6.9" 44184 - sources."deep-extend-0.5.1" 44343 + sources."deep-extend-0.6.0" 44185 44344 sources."defaults-1.0.3" 44186 44345 sources."delayed-stream-1.0.0" 44187 44346 sources."detect-indent-5.0.0" ··· 44201 44360 sources."global-dirs-0.1.1" 44202 44361 sources."got-6.7.1" 44203 44362 sources."graceful-fs-4.1.11" 44204 - sources."has-1.0.1" 44363 + sources."has-1.0.3" 44205 44364 sources."has-ansi-2.0.0" 44206 44365 sources."has-flag-3.0.0" 44207 44366 sources."has-unicode-2.0.1" ··· 44270 44429 sources."process-nextick-args-2.0.0" 44271 44430 sources."promise-finally-3.0.0" 44272 44431 sources."pseudomap-1.0.2" 44432 + sources."psl-1.1.27" 44273 44433 sources."punycode-1.4.1" 44274 - (sources."rc-1.2.7" // { 44434 + (sources."rc-1.2.8" // { 44275 44435 dependencies = [ 44276 44436 sources."minimist-1.2.0" 44277 44437 ]; ··· 44302 44462 sources."throat-3.2.0" 44303 44463 sources."timed-out-4.0.1" 44304 44464 sources."touch-1.0.0" 44305 - sources."tough-cookie-2.3.4" 44465 + sources."tough-cookie-2.4.2" 44306 44466 sources."typedarray-0.0.6" 44307 - sources."typescript-2.8.3" 44467 + sources."typescript-2.9.1" 44308 44468 (sources."typings-core-2.3.3" // { 44309 44469 dependencies = [ 44310 44470 sources."minimist-0.0.8" ··· 44324 44484 sources."url-parse-lax-1.0.0" 44325 44485 sources."util-deprecate-1.0.2" 44326 44486 sources."wcwidth-1.0.1" 44327 - sources."which-1.3.0" 44487 + sources."which-1.3.1" 44328 44488 sources."widest-line-2.0.0" 44329 44489 sources."wordwrap-1.0.0" 44330 44490 sources."wrappy-1.0.2" ··· 44346 44506 uglify-js = nodeEnv.buildNodePackage { 44347 44507 name = "uglify-js"; 44348 44508 packageName = "uglify-js"; 44349 - version = "3.3.25"; 44509 + version = "3.4.0"; 44350 44510 src = fetchurl { 44351 - url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.25.tgz"; 44352 - sha512 = "1qcjjk817lmd65xc8h3axwdnx4h7xkn3k9lf7dy65bm564jhrqvq5v11va9jiamdva9q0nk589i3vm2pn7dvjmjavx5s3d3pj1fi1l6"; 44511 + url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.0.tgz"; 44512 + sha512 = "0jsplc22wvbnzdbcs1adsqcdpkn65ywg5ab8lk4v4ajsh9zhiys0qwf2ylairyj8znh9ml8ppknp94vamzlca947paplpz4lffzkir5"; 44353 44513 }; 44354 44514 dependencies = [ 44355 44515 sources."commander-2.15.1" ··· 44367 44527 ungit = nodeEnv.buildNodePackage { 44368 44528 name = "ungit"; 44369 44529 packageName = "ungit"; 44370 - version = "1.4.22"; 44530 + version = "1.4.24"; 44371 44531 src = fetchurl { 44372 - url = "https://registry.npmjs.org/ungit/-/ungit-1.4.22.tgz"; 44373 - sha512 = "22lf4pk1mn1vn8rgakj6z2dllv4xr7nybymkgrpvkfkglrlh6s9ch5cbbqsdy7mgrhgkmqwrygyb5xypwil4rrfw4a2x1q15jpg229w"; 44532 + url = "https://registry.npmjs.org/ungit/-/ungit-1.4.24.tgz"; 44533 + sha512 = "1lx5m5bkm4m64qiy8ccnbixchng112m2b9qvzd963k8f0nb298hfjrry1c2la1bavv834zdvgv2xwa93fdyaq0wrv562p9d0n1p5lxy"; 44374 44534 }; 44375 44535 dependencies = [ 44376 44536 sources."abbrev-1.1.1" ··· 44379 44539 sources."ajv-5.5.2" 44380 44540 sources."ansi-regex-2.1.1" 44381 44541 sources."aproba-1.2.0" 44382 - sources."are-we-there-yet-1.1.4" 44542 + sources."are-we-there-yet-1.1.5" 44383 44543 sources."array-flatten-1.1.1" 44384 44544 sources."arraybuffer.slice-0.0.7" 44385 44545 sources."asn1-0.2.3" ··· 44399 44559 sources."bluebird-3.5.1" 44400 44560 sources."blueimp-md5-2.10.0" 44401 44561 sources."body-parser-1.18.3" 44402 - sources."boom-4.3.1" 44403 44562 sources."brace-expansion-1.1.11" 44404 - sources."buffer-from-1.0.0" 44563 + sources."buffer-from-1.1.0" 44405 44564 sources."builtin-modules-1.1.1" 44406 44565 sources."builtins-1.0.3" 44407 44566 sources."bytes-3.0.0" ··· 44440 44599 sources."cross-spawn-5.1.0" 44441 44600 sources."crossroads-0.12.2" 44442 44601 sources."crypt-0.0.2" 44443 - (sources."cryptiles-3.1.2" // { 44444 - dependencies = [ 44445 - sources."boom-5.2.0" 44446 - ]; 44447 - }) 44448 44602 sources."cycle-1.0.3" 44449 44603 sources."dashdash-1.14.1" 44450 44604 sources."debug-2.6.9" 44451 44605 sources."decamelize-1.2.0" 44452 - sources."deep-extend-0.5.1" 44606 + sources."deep-extend-0.6.0" 44453 44607 sources."delayed-stream-0.0.5" 44454 44608 sources."delegates-1.0.0" 44455 44609 sources."depd-1.1.2" ··· 44509 44663 sources."gauge-2.7.4" 44510 44664 sources."get-caller-file-1.0.2" 44511 44665 sources."get-stream-3.0.0" 44512 - sources."getmac-1.4.1" 44666 + sources."getmac-1.4.3" 44513 44667 sources."getpass-0.1.7" 44514 44668 sources."glob-7.1.2" 44515 44669 sources."graceful-fs-4.1.11" ··· 44519 44673 sources."has-cors-1.1.0" 44520 44674 sources."has-unicode-2.0.1" 44521 44675 sources."hasher-1.2.0" 44522 - sources."hawk-6.0.2" 44523 - sources."hoek-4.2.1" 44524 44676 sources."hogan.js-3.0.2" 44525 44677 sources."hosted-git-info-2.6.0" 44526 44678 sources."http-errors-1.6.3" ··· 44543 44695 sources."isexe-2.0.0" 44544 44696 sources."isstream-0.1.2" 44545 44697 sources."jquery-3.3.1" 44546 - sources."jquery-ui-1.12.1" 44698 + sources."jquery-ui-bundle-1.12.1" 44547 44699 sources."jsbn-0.1.1" 44548 44700 sources."json-schema-0.2.3" 44549 44701 sources."json-schema-traverse-0.3.1" ··· 44581 44733 sources."minimatch-3.0.4" 44582 44734 sources."minimist-0.0.8" 44583 44735 sources."mkdirp-0.5.1" 44584 - sources."moment-2.22.1" 44736 + sources."moment-2.22.2" 44585 44737 sources."ms-2.0.0" 44586 44738 sources."negotiator-0.6.1" 44587 44739 sources."node-cache-4.2.0" 44588 44740 sources."nopt-1.0.10" 44589 44741 sources."normalize-package-data-2.4.0" 44590 - sources."npm-6.0.1" 44742 + sources."npm-6.1.0" 44591 44743 sources."npm-package-arg-6.1.0" 44592 44744 (sources."npm-registry-client-8.5.1" // { 44593 44745 dependencies = [ ··· 44617 44769 sources."os-tmpdir-1.0.2" 44618 44770 sources."osenv-0.1.5" 44619 44771 sources."p-finally-1.0.0" 44620 - sources."p-limit-1.2.0" 44772 + sources."p-limit-1.3.0" 44621 44773 sources."p-locate-2.0.0" 44622 44774 sources."p-try-1.0.0" 44623 44775 sources."parseqs-0.0.5" ··· 44639 44791 sources."qs-6.5.2" 44640 44792 sources."random-bytes-1.0.0" 44641 44793 sources."range-parser-1.2.0" 44642 - (sources."raven-2.4.2" // { 44794 + (sources."raven-2.6.2" // { 44643 44795 dependencies = [ 44644 44796 sources."uuid-3.0.0" 44645 44797 ]; 44646 44798 }) 44647 44799 sources."raw-body-2.3.3" 44648 - (sources."rc-1.2.7" // { 44800 + (sources."rc-1.2.8" // { 44649 44801 dependencies = [ 44650 44802 sources."minimist-1.2.0" 44651 44803 ]; 44652 44804 }) 44653 44805 sources."readable-stream-1.0.27-1" 44654 44806 sources."reduce-component-1.0.1" 44655 - sources."request-2.86.0" 44807 + sources."request-2.87.0" 44656 44808 sources."require-directory-2.1.1" 44657 44809 sources."require-main-filename-1.0.1" 44658 44810 sources."retry-0.10.1" ··· 44671 44823 sources."simple-swizzle-0.2.2" 44672 44824 sources."slide-1.1.6" 44673 44825 sources."snapsvg-0.5.1" 44674 - sources."sntp-2.1.0" 44675 - (sources."socket.io-2.1.0" // { 44826 + (sources."socket.io-2.1.1" // { 44676 44827 dependencies = [ 44677 44828 sources."component-emitter-1.2.1" 44678 44829 sources."debug-3.1.0" ··· 44680 44831 ]; 44681 44832 }) 44682 44833 sources."socket.io-adapter-1.1.1" 44683 - sources."socket.io-client-2.1.0" 44834 + sources."socket.io-client-2.1.1" 44684 44835 sources."socket.io-parser-3.2.0" 44685 44836 sources."spdx-correct-3.0.0" 44686 44837 sources."spdx-exceptions-2.1.0" 44687 44838 sources."spdx-expression-parse-3.0.0" 44688 44839 sources."spdx-license-ids-3.0.0" 44689 - sources."sshpk-1.14.1" 44840 + sources."sshpk-1.14.2" 44690 44841 sources."ssri-5.3.0" 44691 - sources."stack-trace-0.0.9" 44842 + sources."stack-trace-0.0.10" 44692 44843 sources."statuses-1.5.0" 44693 44844 sources."string-width-1.0.2" 44694 44845 sources."string_decoder-0.10.31" ··· 44699 44850 dependencies = [ 44700 44851 sources."combined-stream-1.0.6" 44701 44852 sources."component-emitter-1.2.1" 44702 - sources."cookiejar-2.1.1" 44853 + sources."cookiejar-2.1.2" 44703 44854 sources."debug-3.1.0" 44704 44855 sources."delayed-stream-1.0.0" 44705 44856 sources."extend-3.0.1" ··· 44735 44886 sources."vary-1.1.2" 44736 44887 sources."verror-1.10.0" 44737 44888 sources."whatwg-fetch-2.0.4" 44738 - sources."which-1.3.0" 44889 + sources."which-1.3.1" 44739 44890 sources."which-module-2.0.0" 44740 - sources."wide-align-1.1.2" 44891 + sources."wide-align-1.1.3" 44741 44892 (sources."winston-2.4.2" // { 44742 44893 dependencies = [ 44743 44894 sources."async-1.0.0" ··· 44754 44905 sources."xmlhttprequest-ssl-1.5.5" 44755 44906 sources."y18n-3.2.1" 44756 44907 sources."yallist-2.1.2" 44757 - (sources."yargs-11.1.0" // { 44908 + (sources."yargs-12.0.0-candidate.0" // { 44758 44909 dependencies = [ 44759 44910 sources."ansi-regex-3.0.0" 44760 44911 sources."is-fullwidth-code-point-2.0.0" ··· 44762 44913 sources."strip-ansi-4.0.0" 44763 44914 ]; 44764 44915 }) 44765 - sources."yargs-parser-9.0.2" 44916 + sources."yargs-parser-10.0.0" 44766 44917 sources."yeast-0.1.2" 44767 44918 ]; 44768 44919 buildInputs = globalBuildInputs; ··· 44777 44928 vue-cli = nodeEnv.buildNodePackage { 44778 44929 name = "vue-cli"; 44779 44930 packageName = "vue-cli"; 44780 - version = "2.9.3"; 44931 + version = "2.9.6"; 44781 44932 src = fetchurl { 44782 - url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.3.tgz"; 44783 - sha512 = "1wljsr8srayqg7crbbczi00v31q3dxm3vz4fjcdqasdgsm1ajc9gham6sinsxlraniwg4dn5b1kmpw0nln63cy3v02vib07shyvq2ki"; 44933 + url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz"; 44934 + sha512 = "10ysmrjahrqcnpqwr8x6vapf0wdzaa0g9y143fgpk99p0ggm1536isaasl091y6rrhyfqpyb41k5gpg02zmx24dmz2nfjc9zink815k"; 44784 44935 }; 44785 44936 dependencies = [ 44786 44937 sources."absolute-0.0.1" ··· 44799 44950 sources."arrify-1.0.1" 44800 44951 sources."asn1-0.2.3" 44801 44952 sources."assert-plus-1.0.0" 44802 - sources."async-2.6.0" 44953 + sources."async-2.6.1" 44803 44954 sources."asynckit-0.4.0" 44804 44955 sources."aws-sign2-0.7.0" 44805 44956 sources."aws4-1.7.0" ··· 44808 44959 sources."bcrypt-pbkdf-1.0.1" 44809 44960 sources."bl-1.2.2" 44810 44961 sources."bluebird-3.5.1" 44811 - sources."boom-4.3.1" 44812 44962 sources."brace-expansion-1.1.11" 44813 44963 sources."buffer-3.6.0" 44814 - sources."buffer-alloc-1.1.0" 44815 - sources."buffer-alloc-unsafe-0.1.1" 44964 + sources."buffer-alloc-1.2.0" 44965 + sources."buffer-alloc-unsafe-1.1.0" 44816 44966 sources."buffer-crc32-0.2.13" 44817 - sources."buffer-fill-0.1.1" 44967 + sources."buffer-fill-1.0.0" 44818 44968 sources."builtins-1.0.3" 44819 44969 sources."camelcase-1.2.1" 44820 44970 sources."capture-stack-trace-1.0.0" ··· 44826 44976 }) 44827 44977 sources."center-align-0.1.3" 44828 44978 sources."chalk-2.4.1" 44829 - sources."chardet-0.4.2" 44979 + sources."chardet-0.5.0" 44830 44980 sources."cli-cursor-2.1.0" 44831 44981 sources."cli-spinners-1.3.1" 44832 44982 sources."cli-width-2.2.0" ··· 44846 44996 sources."consolidate-0.14.5" 44847 44997 sources."core-util-is-1.0.2" 44848 44998 sources."create-error-class-3.0.2" 44849 - (sources."cryptiles-3.1.2" // { 44850 - dependencies = [ 44851 - sources."boom-5.2.0" 44852 - ]; 44853 - }) 44854 44999 sources."dashdash-1.14.1" 44855 45000 sources."decamelize-1.2.0" 44856 45001 (sources."decompress-4.2.0" // { ··· 44883 45028 sources."esprima-4.0.0" 44884 45029 sources."extend-3.0.1" 44885 45030 sources."extend-shallow-2.0.1" 44886 - sources."external-editor-2.2.0" 45031 + sources."external-editor-3.0.0" 44887 45032 sources."extsprintf-1.3.0" 44888 45033 sources."fast-deep-equal-1.1.0" 44889 45034 sources."fast-json-stable-stringify-2.0.0" 44890 - sources."fd-slicer-1.0.1" 45035 + sources."fd-slicer-1.1.0" 44891 45036 sources."figures-2.0.0" 44892 45037 sources."file-type-5.2.0" 44893 45038 sources."filename-reserved-regex-2.0.0" ··· 44919 45064 sources."has-generators-1.0.1" 44920 45065 sources."has-symbol-support-x-1.4.2" 44921 45066 sources."has-to-string-tag-x-1.4.1" 44922 - sources."hawk-6.0.2" 44923 - sources."hoek-4.2.1" 44924 45067 sources."http-signature-1.2.0" 44925 45068 sources."iconv-lite-0.4.23" 44926 45069 sources."ieee754-1.1.11" 44927 45070 sources."inflight-1.0.6" 44928 45071 sources."inherits-2.0.3" 44929 45072 sources."ini-1.3.5" 44930 - sources."inquirer-3.3.0" 45073 + sources."inquirer-6.0.0" 44931 45074 sources."is-3.2.1" 44932 45075 sources."is-buffer-1.1.6" 44933 45076 sources."is-extendable-0.1.1" ··· 44943 45086 sources."isarray-1.0.0" 44944 45087 sources."isstream-0.1.2" 44945 45088 sources."isurl-1.0.0" 44946 - sources."js-yaml-3.11.0" 45089 + sources."js-yaml-3.12.0" 44947 45090 sources."jsbn-0.1.1" 44948 45091 sources."json-schema-0.2.3" 44949 45092 sources."json-schema-traverse-0.3.1" ··· 45003 45146 sources."readable-stream-2.3.6" 45004 45147 sources."recursive-readdir-2.2.2" 45005 45148 sources."repeat-string-1.6.1" 45006 - (sources."request-2.86.0" // { 45149 + (sources."request-2.87.0" // { 45007 45150 dependencies = [ 45008 45151 sources."co-4.6.0" 45009 45152 ]; ··· 45012 45155 sources."right-align-0.1.3" 45013 45156 sources."rimraf-2.6.2" 45014 45157 sources."run-async-2.3.0" 45015 - sources."rx-lite-4.0.8" 45016 - sources."rx-lite-aggregates-4.0.8" 45158 + sources."rxjs-6.2.0" 45017 45159 sources."safe-buffer-5.1.2" 45018 45160 sources."safer-buffer-2.1.2" 45019 45161 sources."seek-bzip-1.0.5" 45020 45162 sources."semver-5.5.0" 45021 45163 sources."signal-exit-3.0.2" 45022 - sources."sntp-2.1.0" 45023 45164 sources."source-map-0.4.4" 45024 45165 sources."sprintf-js-1.0.3" 45025 - sources."sshpk-1.14.1" 45166 + sources."sshpk-1.14.2" 45026 45167 sources."stat-mode-0.2.2" 45027 45168 sources."string-width-2.1.1" 45028 45169 sources."string_decoder-1.1.1" ··· 45041 45182 sources."toml-2.3.3" 45042 45183 sources."tough-cookie-2.3.4" 45043 45184 sources."trim-repeated-1.0.0" 45185 + sources."tslib-1.9.2" 45044 45186 sources."tunnel-agent-0.6.0" 45045 45187 sources."tweetnacl-0.14.5" 45046 45188 (sources."uglify-js-2.8.29" // { ··· 45069 45211 sources."xtend-4.0.1" 45070 45212 sources."yaml-js-0.0.8" 45071 45213 sources."yargs-3.10.0" 45072 - sources."yauzl-2.9.1" 45214 + sources."yauzl-2.9.2" 45073 45215 ]; 45074 45216 buildInputs = globalBuildInputs; 45075 45217 meta = { ··· 45095 45237 sources."ansi-styles-2.2.1" 45096 45238 sources."asn1-0.2.3" 45097 45239 sources."assert-plus-0.2.0" 45098 - sources."async-2.6.0" 45240 + sources."async-2.6.1" 45099 45241 sources."aws-sign2-0.6.0" 45100 45242 sources."balanced-match-1.0.0" 45101 45243 sources."bcrypt-pbkdf-1.0.1" ··· 45194 45336 sources."request-2.67.0" 45195 45337 sources."request-progress-2.0.1" 45196 45338 sources."rimraf-2.6.2" 45339 + sources."safer-buffer-2.1.2" 45197 45340 sources."semver-2.3.2" 45198 45341 sources."sntp-1.0.9" 45199 - (sources."sshpk-1.14.1" // { 45342 + (sources."sshpk-1.14.2" // { 45200 45343 dependencies = [ 45201 45344 sources."assert-plus-1.0.0" 45202 45345 ]; ··· 45211 45354 sources."tunnel-agent-0.4.3" 45212 45355 sources."tweetnacl-0.14.5" 45213 45356 sources."typedarray-0.0.6" 45214 - sources."underscore-1.9.0" 45357 + sources."underscore-1.9.1" 45215 45358 sources."util-deprecate-1.0.2" 45216 45359 sources."verror-1.10.0" 45217 45360 sources."which-1.2.14" ··· 45231 45374 webpack = nodeEnv.buildNodePackage { 45232 45375 name = "webpack"; 45233 45376 packageName = "webpack"; 45234 - version = "4.8.3"; 45377 + version = "4.11.1"; 45235 45378 src = fetchurl { 45236 - url = "https://registry.npmjs.org/webpack/-/webpack-4.8.3.tgz"; 45237 - sha512 = "2rkj1v8fvs1hqpgiikpfnbv29yf1fmyqxfsmgkk3rwhbxbg35ca932ysiamxdq0cgn56lw8sknmfh98cgiw9rfywx5cgj8j2a6c05zy"; 45379 + url = "https://registry.npmjs.org/webpack/-/webpack-4.11.1.tgz"; 45380 + sha512 = "2lhfa6yb1xg2qcka4a2gmk2vc0xm853vz1ymqrx32fjnf6ljpqf189v4v1l4pgsghsb5lav1d33gmz37hv7xcl8h7av9x76qb394wgh"; 45238 45381 }; 45239 45382 dependencies = [ 45240 - sources."@webassemblyjs/ast-1.4.3" 45241 - sources."@webassemblyjs/floating-point-hex-parser-1.4.3" 45242 - sources."@webassemblyjs/helper-buffer-1.4.3" 45243 - sources."@webassemblyjs/helper-code-frame-1.4.3" 45244 - sources."@webassemblyjs/helper-fsm-1.4.3" 45245 - sources."@webassemblyjs/helper-wasm-bytecode-1.4.3" 45246 - sources."@webassemblyjs/helper-wasm-section-1.4.3" 45247 - sources."@webassemblyjs/leb128-1.4.3" 45248 - sources."@webassemblyjs/validation-1.4.3" 45249 - sources."@webassemblyjs/wasm-edit-1.4.3" 45250 - sources."@webassemblyjs/wasm-gen-1.4.3" 45251 - sources."@webassemblyjs/wasm-opt-1.4.3" 45252 - sources."@webassemblyjs/wasm-parser-1.4.3" 45253 - sources."@webassemblyjs/wast-parser-1.4.3" 45254 - sources."@webassemblyjs/wast-printer-1.4.3" 45255 - sources."acorn-5.5.3" 45383 + sources."@webassemblyjs/ast-1.5.10" 45384 + sources."@webassemblyjs/floating-point-hex-parser-1.5.10" 45385 + sources."@webassemblyjs/helper-api-error-1.5.10" 45386 + sources."@webassemblyjs/helper-buffer-1.5.10" 45387 + sources."@webassemblyjs/helper-code-frame-1.5.10" 45388 + sources."@webassemblyjs/helper-fsm-1.5.10" 45389 + sources."@webassemblyjs/helper-module-context-1.5.10" 45390 + sources."@webassemblyjs/helper-wasm-bytecode-1.5.10" 45391 + sources."@webassemblyjs/helper-wasm-section-1.5.10" 45392 + sources."@webassemblyjs/ieee754-1.5.10" 45393 + sources."@webassemblyjs/leb128-1.5.10" 45394 + sources."@webassemblyjs/utf8-1.5.10" 45395 + sources."@webassemblyjs/wasm-edit-1.5.10" 45396 + sources."@webassemblyjs/wasm-gen-1.5.10" 45397 + sources."@webassemblyjs/wasm-opt-1.5.10" 45398 + sources."@webassemblyjs/wasm-parser-1.5.10" 45399 + sources."@webassemblyjs/wast-parser-1.5.10" 45400 + sources."@webassemblyjs/wast-printer-1.5.10" 45401 + sources."acorn-5.6.2" 45256 45402 sources."acorn-dynamic-import-3.0.0" 45257 45403 sources."ajv-6.5.0" 45258 45404 sources."ajv-keywords-3.2.0" ··· 45263 45409 sources."arr-union-3.1.0" 45264 45410 sources."array-unique-0.3.2" 45265 45411 sources."asn1.js-4.10.1" 45266 - sources."assert-1.4.1" 45412 + (sources."assert-1.4.1" // { 45413 + dependencies = [ 45414 + sources."util-0.10.3" 45415 + ]; 45416 + }) 45267 45417 sources."assign-symbols-1.0.0" 45268 45418 sources."async-each-1.0.1" 45269 45419 sources."atob-2.1.1" ··· 45300 45450 sources."browserify-sign-4.0.4" 45301 45451 sources."browserify-zlib-0.2.0" 45302 45452 sources."buffer-4.9.1" 45303 - sources."buffer-from-1.0.0" 45453 + sources."buffer-from-1.1.0" 45304 45454 sources."buffer-xor-1.0.3" 45305 45455 sources."builtin-status-codes-3.0.0" 45306 45456 sources."cacache-10.0.4" ··· 45385 45535 sources."has-value-1.0.0" 45386 45536 sources."has-values-1.0.0" 45387 45537 sources."hash-base-3.0.4" 45388 - sources."hash.js-1.1.3" 45538 + (sources."hash.js-1.1.3" // { 45539 + dependencies = [ 45540 + sources."inherits-2.0.3" 45541 + ]; 45542 + }) 45389 45543 sources."hmac-drbg-1.0.1" 45390 45544 sources."https-browserify-1.0.0" 45391 45545 sources."ieee754-1.1.11" ··· 45408 45562 sources."is-windows-1.0.2" 45409 45563 sources."isarray-1.0.0" 45410 45564 sources."isobject-3.0.1" 45565 + sources."json-parse-better-errors-1.0.2" 45411 45566 sources."json-schema-traverse-0.3.1" 45412 45567 sources."json5-0.5.1" 45413 45568 sources."kind-of-6.0.2" ··· 45418 45573 sources."long-3.2.0" 45419 45574 sources."lru-cache-4.1.3" 45420 45575 sources."make-dir-1.3.0" 45576 + sources."mamacro-0.0.3" 45421 45577 sources."map-cache-0.2.2" 45422 45578 sources."map-visit-1.0.0" 45423 45579 sources."md5.js-1.3.4" ··· 45466 45622 sources."object.pick-1.3.0" 45467 45623 sources."once-1.4.0" 45468 45624 sources."os-browserify-0.3.0" 45469 - sources."p-limit-1.2.0" 45625 + sources."p-limit-1.3.0" 45470 45626 sources."p-locate-2.0.0" 45471 45627 sources."p-try-1.0.0" 45472 45628 sources."pako-1.0.6" ··· 45489 45645 sources."public-encrypt-4.0.2" 45490 45646 sources."pump-2.0.1" 45491 45647 sources."pumpify-1.5.1" 45492 - sources."punycode-2.1.0" 45648 + sources."punycode-2.1.1" 45493 45649 sources."querystring-0.2.0" 45494 45650 sources."querystring-es3-0.2.1" 45495 45651 sources."randombytes-2.0.6" ··· 45567 45723 sources."static-extend-0.1.2" 45568 45724 sources."stream-browserify-2.0.1" 45569 45725 sources."stream-each-1.2.2" 45570 - sources."stream-http-2.8.2" 45726 + sources."stream-http-2.8.3" 45571 45727 sources."stream-shift-1.0.0" 45572 45728 sources."string_decoder-1.1.1" 45573 45729 sources."tapable-1.0.0" ··· 45602 45758 ]; 45603 45759 }) 45604 45760 sources."upath-1.1.0" 45605 - sources."uri-js-4.2.1" 45761 + sources."uri-js-4.2.2" 45606 45762 sources."urix-0.1.0" 45607 45763 (sources."url-0.11.0" // { 45608 45764 dependencies = [ ··· 45614 45770 sources."kind-of-6.0.2" 45615 45771 ]; 45616 45772 }) 45617 - sources."util-0.10.3" 45773 + (sources."util-0.10.4" // { 45774 + dependencies = [ 45775 + sources."inherits-2.0.3" 45776 + ]; 45777 + }) 45618 45778 sources."util-deprecate-1.0.2" 45619 45779 sources."vm-browserify-0.0.4" 45620 45780 sources."watchpack-1.6.0" 45621 - sources."webassemblyjs-1.4.3" 45622 45781 (sources."webpack-sources-1.1.0" // { 45623 45782 dependencies = [ 45624 45783 sources."source-map-0.6.1" ··· 45657 45816 }) 45658 45817 sources."ansi-regex-2.1.1" 45659 45818 sources."aproba-1.2.0" 45660 - sources."are-we-there-yet-1.1.4" 45819 + sources."are-we-there-yet-1.1.5" 45661 45820 sources."ascli-0.3.0" 45662 45821 sources."async-limiter-1.0.0" 45663 45822 sources."balanced-match-1.0.0" ··· 45665 45824 sources."binary-search-1.3.3" 45666 45825 sources."bindings-1.3.0" 45667 45826 sources."bitfield-2.0.0" 45668 - sources."bittorrent-dht-8.3.0" 45827 + sources."bittorrent-dht-8.4.0" 45669 45828 sources."bittorrent-peerid-1.2.0" 45670 45829 sources."bittorrent-protocol-2.4.1" 45671 45830 sources."bittorrent-tracker-9.9.1" ··· 45675 45834 sources."bn.js-4.11.8" 45676 45835 sources."brace-expansion-1.1.11" 45677 45836 sources."browserify-package-json-1.0.1" 45678 - sources."buffer-alloc-1.1.0" 45679 - sources."buffer-alloc-unsafe-0.1.1" 45837 + sources."buffer-alloc-1.2.0" 45838 + sources."buffer-alloc-unsafe-1.1.0" 45680 45839 sources."buffer-equals-1.0.4" 45681 - sources."buffer-fill-0.1.1" 45682 - sources."buffer-from-1.0.0" 45840 + sources."buffer-fill-1.0.0" 45841 + sources."buffer-from-1.1.0" 45683 45842 sources."buffer-indexof-1.1.1" 45684 45843 (sources."bufferutil-3.0.5" // { 45685 45844 dependencies = [ ··· 45709 45868 sources."create-torrent-3.31.0" 45710 45869 sources."debug-2.6.9" 45711 45870 sources."decompress-response-3.3.0" 45712 - sources."deep-extend-0.5.1" 45871 + sources."deep-extend-0.6.0" 45713 45872 sources."defined-1.0.0" 45714 45873 sources."delegates-1.0.0" 45715 45874 sources."detect-libc-1.0.3" ··· 45775 45934 sources."minimatch-3.0.4" 45776 45935 sources."minimist-1.2.0" 45777 45936 sources."mkdirp-0.5.1" 45778 - sources."moment-2.22.1" 45937 + sources."moment-2.22.2" 45779 45938 sources."mp4-box-encoding-1.1.4" 45780 45939 sources."mp4-stream-2.0.3" 45781 45940 sources."ms-2.0.0" ··· 45784 45943 sources."thunky-1.0.2" 45785 45944 ]; 45786 45945 }) 45787 - sources."multistream-2.1.0" 45946 + sources."multistream-2.1.1" 45788 45947 sources."nan-2.10.0" 45789 45948 sources."netmask-1.0.6" 45790 45949 sources."network-address-1.1.2" ··· 45801 45960 sources."optjs-3.2.2" 45802 45961 sources."os-homedir-1.0.2" 45803 45962 sources."package-json-versionify-1.0.4" 45804 - (sources."parse-torrent-6.0.0" // { 45963 + sources."parse-numeric-range-0.0.2" 45964 + (sources."parse-torrent-6.0.1" // { 45805 45965 dependencies = [ 45806 45966 sources."simple-get-3.0.2" 45807 45967 ]; ··· 45822 45982 sources."randombytes-2.0.6" 45823 45983 sources."range-parser-1.2.0" 45824 45984 sources."range-slice-stream-1.2.0" 45825 - sources."rc-1.2.7" 45985 + sources."rc-1.2.8" 45826 45986 sources."readable-stream-2.3.6" 45827 - sources."record-cache-1.0.2" 45987 + sources."record-cache-1.1.0" 45828 45988 (sources."render-media-3.1.0" // { 45829 45989 dependencies = [ 45830 45990 sources."pump-1.0.3" ··· 45842 46002 sources."signal-exit-3.0.2" 45843 46003 sources."simple-concat-1.0.0" 45844 46004 sources."simple-get-2.8.1" 45845 - sources."simple-peer-9.1.1" 46005 + sources."simple-peer-9.1.2" 45846 46006 sources."simple-sha1-2.1.1" 45847 46007 (sources."simple-websocket-7.0.2" // { 45848 46008 dependencies = [ ··· 45891 46051 sources."util-deprecate-1.0.2" 45892 46052 sources."videostream-2.4.2" 45893 46053 sources."vlc-command-1.1.1" 45894 - (sources."webtorrent-0.99.4" // { 46054 + (sources."webtorrent-0.100.0" // { 45895 46055 dependencies = [ 45896 46056 sources."debug-3.1.0" 45897 46057 sources."minimist-0.0.8" ··· 45900 46060 ]; 45901 46061 }) 45902 46062 sources."which-pm-runs-1.0.0" 45903 - sources."wide-align-1.1.2" 46063 + sources."wide-align-1.1.3" 45904 46064 sources."winreg-1.2.4" 45905 46065 sources."wrappy-1.0.2" 45906 - sources."ws-5.1.1" 46066 + sources."ws-5.2.0" 45907 46067 sources."xml2js-0.4.19" 45908 46068 sources."xmlbuilder-9.0.7" 45909 46069 sources."xmldom-0.1.27" ··· 45922 46082 web-ext = nodeEnv.buildNodePackage { 45923 46083 name = "web-ext"; 45924 46084 packageName = "web-ext"; 45925 - version = "2.6.0"; 46085 + version = "2.7.0"; 45926 46086 src = fetchurl { 45927 - url = "https://registry.npmjs.org/web-ext/-/web-ext-2.6.0.tgz"; 45928 - sha1 = "52c074123e6376a4fb673e565c33dd027714e9b0"; 46087 + url = "https://registry.npmjs.org/web-ext/-/web-ext-2.7.0.tgz"; 46088 + sha512 = "1ab12frdfy6f1lnsg9g7lymq825vw9l84sspghqfm3k5j8d2gc8gfdg87lq4x393scnq9qrjckw2gpyg2sqlklrqql6vs7ibwqzyy45"; 45929 46089 }; 45930 46090 dependencies = [ 45931 46091 sources."@cliqz-oss/firefox-client-0.3.1" 45932 46092 sources."@cliqz-oss/node-firefox-connect-1.2.1" 45933 - sources."@types/node-10.1.1" 46093 + sources."@types/node-10.3.1" 45934 46094 sources."JSONSelect-0.2.1" 45935 46095 sources."abbrev-1.1.1" 45936 - sources."acorn-5.5.3" 46096 + sources."acorn-5.6.2" 45937 46097 (sources."acorn-jsx-3.0.1" // { 45938 46098 dependencies = [ 45939 46099 sources."acorn-3.3.0" ··· 45942 46102 sources."adbkit-2.11.0" 45943 46103 sources."adbkit-logcat-1.1.0" 45944 46104 sources."adbkit-monkey-1.0.1" 45945 - (sources."addons-linter-0.41.0" // { 46105 + (sources."addons-linter-1.0.0" // { 45946 46106 dependencies = [ 45947 46107 sources."ajv-keywords-1.5.1" 45948 46108 sources."ansi-escapes-1.4.0" 45949 46109 sources."ansi-regex-3.0.0" 45950 46110 sources."ansi-styles-3.2.1" 45951 - sources."async-2.6.0" 46111 + sources."async-2.6.1" 45952 46112 sources."camelcase-2.1.1" 45953 46113 sources."cli-cursor-1.0.2" 45954 46114 sources."cliui-4.1.0" ··· 45956 46116 sources."decamelize-1.2.0" 45957 46117 sources."domelementtype-1.1.3" 45958 46118 sources."es6-promise-4.2.4" 46119 + sources."fast-deep-equal-1.1.0" 45959 46120 sources."figures-1.7.0" 45960 46121 sources."for-in-0.1.8" 45961 46122 sources."globals-11.5.0" 45962 - sources."inherits-2.0.1" 45963 46123 sources."inquirer-0.12.0" 45964 46124 sources."is-fullwidth-code-point-1.0.0" 45965 46125 sources."isarray-0.0.1" ··· 45968 46128 sources."pify-3.0.0" 45969 46129 sources."pluralize-1.2.1" 45970 46130 sources."progress-1.1.8" 45971 - sources."punycode-2.1.0" 46131 + sources."punycode-1.4.1" 45972 46132 sources."restore-cursor-1.0.1" 45973 46133 sources."run-async-0.1.0" 45974 46134 sources."rx-lite-3.1.2" 45975 46135 sources."slice-ansi-0.0.4" 45976 46136 sources."source-map-0.6.1" 45977 - sources."source-map-support-0.5.4" 46137 + sources."source-map-support-0.5.6" 45978 46138 sources."string-width-1.0.2" 45979 46139 sources."string_decoder-0.10.31" 45980 46140 sources."strip-ansi-4.0.0" ··· 45993 46153 }) 45994 46154 sources."adm-zip-0.4.11" 45995 46155 sources."agent-base-4.2.0" 45996 - sources."ajv-6.3.0" 46156 + sources."ajv-6.5.0" 45997 46157 sources."ajv-keywords-2.1.1" 45998 46158 sources."ajv-merge-patch-3.0.0" 45999 46159 sources."anchor-markdown-header-0.5.7" ··· 46038 46198 sources."asn1-0.2.3" 46039 46199 sources."assert-plus-1.0.0" 46040 46200 sources."assign-symbols-1.0.0" 46041 - sources."ast-types-0.11.3" 46201 + sources."ast-types-0.11.5" 46042 46202 sources."async-0.2.10" 46043 46203 sources."async-each-1.0.1" 46044 46204 sources."asynckit-0.4.0" ··· 46090 46250 sources."boxen-1.3.0" 46091 46251 sources."brace-expansion-1.1.11" 46092 46252 sources."braces-2.3.2" 46093 - sources."buffer-alloc-1.1.0" 46094 - sources."buffer-alloc-unsafe-0.1.1" 46253 + sources."buffer-alloc-1.2.0" 46254 + sources."buffer-alloc-unsafe-1.1.0" 46095 46255 sources."buffer-crc32-0.2.13" 46096 46256 sources."buffer-equal-constant-time-1.0.1" 46097 - sources."buffer-fill-0.1.1" 46098 - sources."buffer-from-1.0.0" 46257 + sources."buffer-fill-1.0.0" 46258 + sources."buffer-from-1.1.0" 46099 46259 sources."builtin-modules-1.1.1" 46100 46260 (sources."bunyan-1.8.12" // { 46101 46261 dependencies = [ ··· 46111 46271 sources."capture-stack-trace-1.0.0" 46112 46272 sources."caseless-0.12.0" 46113 46273 sources."ccount-1.0.3" 46114 - sources."chalk-2.3.2" 46274 + sources."chalk-2.4.0" 46115 46275 sources."character-entities-1.2.2" 46116 46276 sources."character-entities-html4-1.1.2" 46117 46277 sources."character-entities-legacy-1.1.2" ··· 46161 46321 sources."configstore-3.1.2" 46162 46322 sources."convert-source-map-1.5.1" 46163 46323 sources."copy-descriptor-0.1.1" 46164 - sources."core-js-2.5.6" 46324 + sources."core-js-2.5.7" 46165 46325 sources."core-util-is-1.0.2" 46166 46326 sources."crc-3.5.0" 46167 46327 sources."crc32-stream-2.0.0" ··· 46188 46348 }) 46189 46349 sources."decode-uri-component-0.2.0" 46190 46350 sources."deep-equal-1.0.1" 46191 - sources."deep-extend-0.5.1" 46351 + sources."deep-extend-0.6.0" 46192 46352 sources."deep-is-0.1.3" 46193 46353 sources."deepcopy-0.6.3" 46194 46354 sources."deepmerge-2.1.0" ··· 46199 46359 sources."delayed-stream-1.0.0" 46200 46360 sources."depd-1.1.2" 46201 46361 sources."detect-indent-4.0.0" 46202 - (sources."dispensary-0.16.0" // { 46362 + (sources."dispensary-0.18.0" // { 46203 46363 dependencies = [ 46204 46364 sources."ajv-5.5.2" 46205 46365 ]; ··· 46211 46371 sources."domhandler-2.4.2" 46212 46372 sources."domutils-1.5.1" 46213 46373 sources."dot-prop-4.2.0" 46214 - sources."dtrace-provider-0.8.6" 46374 + sources."dtrace-provider-0.8.7" 46215 46375 sources."duplexer3-0.1.4" 46216 46376 sources."ecc-jsbn-0.1.1" 46217 46377 sources."ecdsa-sig-formatter-1.0.10" 46218 - sources."email-validator-2.0.3" 46378 + sources."email-validator-2.0.4" 46219 46379 sources."emoji-regex-6.1.3" 46220 46380 sources."encoding-0.1.12" 46221 46381 sources."end-of-stream-1.4.1" 46222 46382 sources."entities-1.1.1" 46223 46383 sources."error-ex-1.3.1" 46224 - sources."es5-ext-0.10.42" 46384 + sources."es5-ext-0.10.45" 46225 46385 sources."es6-error-4.1.1" 46226 46386 sources."es6-iterator-2.0.3" 46227 46387 sources."es6-map-0.1.5" ··· 46237 46397 sources."escape-string-regexp-1.0.5" 46238 46398 sources."escodegen-1.9.1" 46239 46399 sources."escope-3.6.0" 46240 - (sources."eslint-4.19.0" // { 46400 + (sources."eslint-4.19.1" // { 46241 46401 dependencies = [ 46242 46402 sources."ajv-5.5.2" 46243 46403 sources."esprima-4.0.0" ··· 46292 46452 ]; 46293 46453 }) 46294 46454 sources."extsprintf-1.3.0" 46295 - sources."fast-deep-equal-1.1.0" 46455 + sources."fast-deep-equal-2.0.1" 46296 46456 sources."fast-json-parse-1.0.3" 46297 46457 sources."fast-json-patch-1.2.2" 46298 46458 sources."fast-json-stable-stringify-2.0.0" ··· 46311 46471 }) 46312 46472 sources."first-chunk-stream-2.0.0" 46313 46473 sources."flat-cache-1.3.0" 46314 - sources."flatstr-1.0.5" 46315 - sources."fluent-syntax-0.6.6" 46474 + sources."flatstr-1.0.8" 46475 + sources."fluent-syntax-0.7.0" 46316 46476 sources."for-in-1.0.2" 46317 46477 sources."for-own-1.0.0" 46318 46478 sources."forever-agent-0.6.1" ··· 46329 46489 }) 46330 46490 sources."function-bind-1.1.1" 46331 46491 sources."functional-red-black-tree-1.0.1" 46332 - (sources."fx-runner-1.0.8" // { 46492 + (sources."fx-runner-1.0.9" // { 46333 46493 dependencies = [ 46334 46494 sources."commander-2.9.0" 46335 46495 sources."isexe-1.1.2" 46336 - sources."lodash-3.10.1" 46337 46496 sources."which-1.2.4" 46338 46497 ]; 46339 46498 }) ··· 46370 46529 sources."growly-1.3.0" 46371 46530 sources."har-schema-2.0.0" 46372 46531 sources."har-validator-5.0.3" 46373 - sources."has-1.0.1" 46532 + sources."has-1.0.3" 46374 46533 sources."has-ansi-2.0.0" 46375 46534 sources."has-color-0.1.7" 46376 46535 sources."has-flag-3.0.0" ··· 46439 46598 sources."is-windows-1.0.2" 46440 46599 sources."is-wsl-1.1.0" 46441 46600 sources."isarray-1.0.0" 46442 - sources."isemail-1.2.0" 46443 46601 sources."isexe-2.0.0" 46444 46602 sources."isobject-3.0.1" 46445 46603 sources."isstream-0.1.2" 46446 46604 sources."jed-1.1.1" 46447 46605 sources."jetpack-id-1.0.0" 46448 - sources."joi-6.10.1" 46449 46606 sources."js-select-0.6.0" 46450 46607 sources."js-tokens-3.0.2" 46451 - sources."js-yaml-3.11.0" 46608 + sources."js-yaml-3.12.0" 46452 46609 sources."jsbn-0.1.1" 46453 46610 sources."jsesc-1.3.0" 46454 46611 sources."json-merge-patch-0.2.3" ··· 46462 46619 sources."jsonfile-4.0.0" 46463 46620 sources."jsonify-0.0.0" 46464 46621 sources."jsonpointer-4.0.1" 46465 - sources."jsonwebtoken-7.1.9" 46622 + sources."jsonwebtoken-8.2.1" 46466 46623 sources."jsprim-1.4.1" 46467 46624 sources."jszip-2.6.1" 46468 46625 sources."jwa-1.1.6" ··· 46481 46638 sources."lodash.clonedeep-4.5.0" 46482 46639 sources."lodash.flatten-4.4.0" 46483 46640 sources."lodash.get-4.4.2" 46641 + sources."lodash.includes-4.3.0" 46642 + sources."lodash.isboolean-3.0.3" 46643 + sources."lodash.isinteger-4.0.4" 46644 + sources."lodash.isnumber-3.0.3" 46645 + sources."lodash.isplainobject-4.0.6" 46646 + sources."lodash.isstring-4.0.1" 46484 46647 sources."lodash.once-4.1.1" 46485 46648 sources."lodash.set-4.3.2" 46486 46649 sources."lodash.sortby-4.7.0" ··· 46512 46675 sources."minimist-0.0.8" 46513 46676 ]; 46514 46677 }) 46515 - sources."moment-2.22.1" 46678 + sources."moment-2.22.2" 46516 46679 sources."ms-2.0.0" 46517 46680 sources."mute-stream-0.0.7" 46518 46681 sources."mv-2.1.1" ··· 46546 46709 sources."object.pick-1.3.0" 46547 46710 sources."once-1.4.0" 46548 46711 sources."onetime-2.0.1" 46549 - sources."open-0.0.5" 46550 46712 sources."opn-5.3.0" 46551 46713 sources."optionator-0.8.2" 46552 46714 sources."os-homedir-1.0.2" ··· 46555 46717 sources."os-shim-0.1.3" 46556 46718 sources."os-tmpdir-1.0.2" 46557 46719 sources."p-finally-1.0.0" 46558 - sources."p-limit-1.2.0" 46720 + sources."p-limit-1.3.0" 46559 46721 sources."p-locate-2.0.0" 46560 46722 sources."p-try-1.0.0" 46561 46723 sources."pac-proxy-agent-2.0.2" ··· 46579 46741 sources."pify-2.3.0" 46580 46742 sources."pinkie-2.0.4" 46581 46743 sources."pinkie-promise-2.0.1" 46582 - sources."pino-4.14.0" 46583 - sources."pino-std-serializers-1.2.0" 46744 + sources."pino-4.16.1" 46745 + sources."pino-std-serializers-2.1.0" 46584 46746 sources."pluralize-7.0.0" 46585 46747 (sources."po2json-0.4.5" // { 46586 46748 dependencies = [ ··· 46607 46769 sources."proxy-from-env-1.0.0" 46608 46770 sources."pseudomap-1.0.2" 46609 46771 sources."pump-3.0.0" 46610 - sources."punycode-1.4.1" 46772 + sources."punycode-2.1.1" 46611 46773 sources."qs-6.5.2" 46612 46774 sources."quick-format-unescaped-1.1.2" 46613 46775 sources."raw-body-2.3.3" 46614 - sources."rc-1.2.7" 46776 + sources."rc-1.2.8" 46615 46777 sources."read-pkg-1.1.0" 46616 46778 sources."read-pkg-up-1.0.1" 46617 46779 sources."readable-stream-2.3.6" ··· 46654 46816 sources."rx-lite-4.0.8" 46655 46817 sources."rx-lite-aggregates-4.0.8" 46656 46818 sources."safe-buffer-5.1.2" 46657 - sources."safe-json-stringify-1.1.0" 46819 + sources."safe-json-stringify-1.2.0" 46658 46820 sources."safe-regex-1.1.0" 46659 46821 sources."safer-buffer-2.1.2" 46660 46822 sources."sax-1.2.4" ··· 46676 46838 sources."shell-quote-1.6.1" 46677 46839 sources."shelljs-0.8.1" 46678 46840 sources."shellwords-0.1.1" 46679 - (sources."sign-addon-0.3.0" // { 46841 + (sources."sign-addon-0.3.1" // { 46680 46842 dependencies = [ 46681 - sources."assert-plus-0.2.0" 46682 - sources."aws-sign2-0.6.0" 46683 46843 sources."babel-polyfill-6.16.0" 46684 - sources."boom-2.10.1" 46685 - sources."caseless-0.11.0" 46686 - sources."chalk-1.1.3" 46687 - sources."cryptiles-2.0.5" 46688 46844 sources."es6-error-4.0.0" 46689 - sources."form-data-2.1.4" 46690 - sources."har-validator-2.0.6" 46691 - sources."hawk-3.1.3" 46692 - sources."hoek-2.16.3" 46693 - sources."http-signature-1.1.1" 46694 - sources."ms-0.7.3" 46845 + sources."ms-2.1.1" 46695 46846 sources."mz-2.5.0" 46696 - sources."qs-6.3.2" 46697 46847 sources."regenerator-runtime-0.9.6" 46698 - sources."request-2.79.0" 46699 - sources."sntp-1.0.9" 46848 + sources."request-2.87.0" 46700 46849 sources."source-map-support-0.4.6" 46701 - sources."tunnel-agent-0.4.3" 46702 46850 ]; 46703 46851 }) 46704 46852 sources."signal-exit-3.0.2" ··· 46719 46867 sources."snapdragon-node-2.1.1" 46720 46868 sources."snapdragon-util-3.0.1" 46721 46869 sources."sntp-2.1.0" 46722 - (sources."snyk-1.80.1" // { 46870 + (sources."snyk-1.82.1" // { 46723 46871 dependencies = [ 46724 46872 sources."ansi-escapes-3.1.0" 46725 46873 sources."ansi-regex-2.1.1" ··· 46746 46894 sources."string-width-1.0.2" 46747 46895 ]; 46748 46896 }) 46749 - sources."snyk-go-plugin-1.5.0" 46897 + sources."snyk-go-plugin-1.5.1" 46750 46898 sources."snyk-gradle-plugin-1.3.0" 46751 46899 sources."snyk-module-1.8.2" 46752 46900 sources."snyk-mvn-plugin-1.2.0" 46753 46901 sources."snyk-nuget-plugin-1.6.2" 46754 46902 sources."snyk-php-plugin-1.5.1" 46755 46903 sources."snyk-policy-1.12.0" 46756 - sources."snyk-python-plugin-1.6.0" 46904 + sources."snyk-python-plugin-1.6.1" 46757 46905 sources."snyk-resolve-1.0.1" 46758 46906 sources."snyk-resolve-deps-3.1.0" 46759 46907 (sources."snyk-sbt-plugin-1.3.0" // { ··· 46787 46935 }) 46788 46936 sources."split2-2.2.0" 46789 46937 sources."sprintf-js-1.0.3" 46790 - sources."sshpk-1.14.1" 46938 + sources."sshpk-1.14.2" 46791 46939 sources."static-extend-0.1.2" 46792 46940 sources."statuses-1.5.0" 46793 46941 sources."stream-parser-0.3.1" ··· 46831 46979 sources."to-regex-range-2.1.1" 46832 46980 sources."to-utf8-0.0.1" 46833 46981 sources."toml-2.3.3" 46834 - sources."topo-1.1.0" 46835 46982 sources."tosource-1.0.0" 46836 46983 sources."tough-cookie-2.3.4" 46837 46984 sources."tr46-1.0.1" ··· 46873 47020 ]; 46874 47021 }) 46875 47022 sources."unzip-response-2.0.1" 46876 - sources."upath-1.0.4" 47023 + sources."upath-1.0.5" 46877 47024 sources."update-notifier-2.3.0" 46878 47025 sources."update-section-0.3.3" 47026 + sources."uri-js-4.2.2" 46879 47027 sources."urix-0.1.0" 46880 47028 sources."url-parse-lax-1.0.0" 46881 47029 (sources."use-3.1.0" // { ··· 46884 47032 ]; 46885 47033 }) 46886 47034 sources."user-home-2.0.0" 46887 - sources."util-0.10.3" 47035 + sources."util-0.10.4" 46888 47036 sources."util-deprecate-1.0.2" 46889 47037 sources."uuid-3.2.1" 46890 47038 sources."validate-npm-package-license-3.0.3" ··· 46918 47066 }) 46919 47067 sources."wcwidth-1.0.1" 46920 47068 sources."webidl-conversions-4.0.2" 46921 - sources."whatwg-url-6.3.0" 47069 + (sources."whatwg-url-6.4.1" // { 47070 + dependencies = [ 47071 + sources."punycode-2.1.1" 47072 + ]; 47073 + }) 46922 47074 sources."when-3.7.7" 46923 - sources."which-1.3.0" 47075 + sources."which-1.3.1" 46924 47076 sources."which-module-2.0.0" 46925 47077 sources."widest-line-2.0.0" 46926 47078 sources."win-release-1.1.1" ··· 46993 47145 yarn = nodeEnv.buildNodePackage { 46994 47146 name = "yarn"; 46995 47147 packageName = "yarn"; 46996 - version = "1.6.0"; 47148 + version = "1.7.0"; 46997 47149 src = fetchurl { 46998 - url = "https://registry.npmjs.org/yarn/-/yarn-1.6.0.tgz"; 46999 - sha1 = "9cec6f7986dc237d39ec705ce74d95155fe55d4b"; 47150 + url = "https://registry.npmjs.org/yarn/-/yarn-1.7.0.tgz"; 47151 + sha1 = "0076b9fde6010e01950526a609bc53bc175ef925"; 47000 47152 }; 47001 47153 buildInputs = globalBuildInputs; 47002 47154 meta = { ··· 47017 47169 }; 47018 47170 dependencies = [ 47019 47171 sources."@mrmlnc/readdir-enhanced-2.2.1" 47020 - sources."@nodelib/fs.stat-1.0.2" 47172 + sources."@nodelib/fs.stat-1.1.0" 47021 47173 sources."@sindresorhus/is-0.7.0" 47022 47174 sources."aggregate-error-1.0.0" 47023 47175 sources."ajv-5.5.2" ··· 47026 47178 sources."ansi-escapes-3.1.0" 47027 47179 sources."ansi-regex-2.1.1" 47028 47180 sources."ansi-styles-2.2.1" 47029 - sources."are-we-there-yet-1.1.4" 47181 + sources."are-we-there-yet-1.1.5" 47030 47182 sources."arr-diff-4.0.0" 47031 47183 sources."arr-flatten-1.1.0" 47032 47184 sources."arr-union-3.1.0" ··· 47038 47190 sources."asn1-0.2.3" 47039 47191 sources."assert-plus-1.0.0" 47040 47192 sources."assign-symbols-1.0.0" 47041 - sources."async-2.6.0" 47193 + sources."async-2.6.1" 47042 47194 sources."asynckit-0.4.0" 47043 47195 sources."atob-2.1.1" 47044 47196 sources."aws-sign2-0.7.0" ··· 47061 47213 sources."semver-4.3.6" 47062 47214 ]; 47063 47215 }) 47064 - sources."boom-4.3.1" 47065 47216 sources."boxen-1.3.0" 47066 47217 sources."brace-expansion-1.1.11" 47067 47218 (sources."braces-2.3.2" // { ··· 47071 47222 sources."kind-of-3.2.2" 47072 47223 ]; 47073 47224 }) 47074 - sources."buffer-from-1.0.0" 47225 + sources."buffer-from-1.1.0" 47075 47226 sources."builtin-modules-1.1.1" 47076 47227 sources."cache-base-1.0.1" 47077 47228 (sources."cacheable-request-2.1.4" // { ··· 47116 47267 sources."create-error-class-3.0.2" 47117 47268 sources."cross-spawn-5.1.0" 47118 47269 sources."cross-spawn-async-2.2.5" 47119 - (sources."cryptiles-3.1.2" // { 47120 - dependencies = [ 47121 - sources."boom-5.2.0" 47122 - ]; 47123 - }) 47124 47270 sources."crypto-random-string-1.0.0" 47125 47271 sources."currently-unhandled-0.4.1" 47126 47272 sources."dashdash-1.14.1" ··· 47128 47274 sources."decamelize-1.2.0" 47129 47275 sources."decode-uri-component-0.2.0" 47130 47276 sources."decompress-response-3.3.0" 47131 - sources."deep-extend-0.5.1" 47277 + sources."deep-extend-0.6.0" 47132 47278 sources."default-uid-1.0.0" 47133 47279 sources."define-property-2.0.2" 47134 47280 sources."delayed-stream-1.0.0" ··· 47239 47385 sources."has-unicode-2.0.1" 47240 47386 sources."has-value-1.0.0" 47241 47387 sources."has-values-1.0.0" 47242 - sources."hawk-6.0.2" 47243 - sources."hoek-4.2.1" 47244 47388 sources."hosted-git-info-2.6.0" 47245 47389 sources."http-cache-semantics-3.8.1" 47246 47390 sources."http-signature-1.2.0" ··· 47415 47559 sources."p-cancelable-0.4.1" 47416 47560 sources."p-finally-1.0.0" 47417 47561 sources."p-is-promise-1.1.0" 47418 - sources."p-limit-1.2.0" 47562 + sources."p-limit-1.3.0" 47419 47563 sources."p-locate-2.0.0" 47420 47564 sources."p-some-2.0.1" 47421 47565 sources."p-timeout-2.0.1" ··· 47450 47594 sources."prepend-http-2.0.0" 47451 47595 sources."process-nextick-args-2.0.0" 47452 47596 sources."pseudomap-1.0.2" 47597 + sources."psl-1.1.27" 47453 47598 sources."punycode-1.4.1" 47454 47599 sources."qs-6.5.2" 47455 47600 sources."query-string-5.1.1" 47456 - sources."rc-1.2.7" 47601 + sources."rc-1.2.8" 47457 47602 sources."read-pkg-1.1.0" 47458 47603 (sources."read-pkg-up-2.0.0" // { 47459 47604 dependencies = [ ··· 47476 47621 sources."repeat-string-1.6.1" 47477 47622 sources."repeating-2.0.1" 47478 47623 sources."replace-ext-0.0.1" 47479 - sources."request-2.86.0" 47624 + (sources."request-2.87.0" // { 47625 + dependencies = [ 47626 + sources."tough-cookie-2.3.4" 47627 + ]; 47628 + }) 47480 47629 sources."resolve-url-0.2.1" 47481 47630 sources."responselike-1.0.2" 47482 47631 sources."restore-cursor-2.0.0" ··· 47486 47635 sources."rx-4.1.0" 47487 47636 sources."rx-lite-4.0.8" 47488 47637 sources."rx-lite-aggregates-4.0.8" 47489 - sources."rxjs-5.5.10" 47638 + sources."rxjs-5.5.11" 47490 47639 sources."safe-buffer-5.1.2" 47491 47640 sources."safe-regex-1.1.0" 47492 47641 sources."safer-buffer-2.1.2" ··· 47527 47676 sources."kind-of-3.2.2" 47528 47677 ]; 47529 47678 }) 47530 - sources."sntp-2.1.0" 47531 47679 sources."sort-keys-2.0.0" 47532 47680 sources."sort-on-2.0.0" 47533 47681 sources."source-map-0.5.7" ··· 47543 47691 sources."extend-shallow-3.0.2" 47544 47692 ]; 47545 47693 }) 47546 - sources."sshpk-1.14.1" 47694 + sources."sshpk-1.14.2" 47547 47695 sources."static-extend-0.1.2" 47548 47696 sources."strict-uri-encode-1.1.0" 47549 47697 sources."string-length-1.0.1" ··· 47584 47732 sources."to-object-path-0.3.0" 47585 47733 sources."to-regex-3.0.2" 47586 47734 sources."to-regex-range-2.1.1" 47587 - sources."tough-cookie-2.3.4" 47735 + sources."tough-cookie-2.4.2" 47588 47736 sources."trim-newlines-1.0.0" 47589 47737 sources."tunnel-0.0.4" 47590 47738 sources."tunnel-agent-0.6.0" ··· 47606 47754 }) 47607 47755 ]; 47608 47756 }) 47609 - sources."untildify-3.0.2" 47757 + sources."untildify-3.0.3" 47610 47758 sources."unzip-response-2.0.1" 47611 47759 (sources."update-notifier-2.5.0" // { 47612 47760 dependencies = [ ··· 47633 47781 sources."vinyl-1.2.0" 47634 47782 sources."vinyl-file-2.0.0" 47635 47783 sources."walk-2.3.13" 47636 - sources."which-1.3.0" 47784 + sources."which-1.3.1" 47637 47785 sources."widest-line-2.0.0" 47638 47786 sources."win-release-1.1.1" 47639 47787 (sources."wrap-ansi-2.1.0" // { ··· 47657 47805 sources."onetime-1.1.0" 47658 47806 ]; 47659 47807 }) 47660 - (sources."yeoman-environment-2.1.1" // { 47808 + (sources."yeoman-environment-2.2.0" // { 47661 47809 dependencies = [ 47662 47810 sources."ansi-regex-3.0.0" 47663 47811 sources."ansi-styles-3.2.1"
+315 -342
pkgs/development/node-packages/node-packages-v8.nix
··· 49 49 sha1 = "cbc4b9a68981bf0b501ccd06a9058acd65309bf7"; 50 50 }; 51 51 }; 52 - "@types/node-10.1.1" = { 52 + "@types/node-10.3.1" = { 53 53 name = "_at_types_slash_node"; 54 54 packageName = "@types/node"; 55 - version = "10.1.1"; 55 + version = "10.3.1"; 56 56 src = fetchurl { 57 - url = "https://registry.npmjs.org/@types/node/-/node-10.1.1.tgz"; 58 - sha512 = "35nbbgd4qp35g3nfbrsc9ndmigc9gl31xdjhx0fakfms35c6jqxpdx7m9c3pi0h3b062p31al5vas36facjhs1nmxf3bdpnrb5k3g4z"; 57 + url = "https://registry.npmjs.org/@types/node/-/node-10.3.1.tgz"; 58 + sha512 = "0xqz0wlddb3vi0mmlncn1ypd7sa2zv3fcq58jk7nr0xdsrwwzn9ncdq784lvg8d2k7lzq1p2kjyak5nghq0imbdj8hrmk6365lgvi92"; 59 59 }; 60 60 }; 61 61 "@types/superagent-3.5.6" = { ··· 256 256 sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a"; 257 257 }; 258 258 }; 259 - "append-tree-2.4.1" = { 259 + "append-tree-2.4.4" = { 260 260 name = "append-tree"; 261 261 packageName = "append-tree"; 262 - version = "2.4.1"; 262 + version = "2.4.4"; 263 263 src = fetchurl { 264 - url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.1.tgz"; 265 - sha512 = "2zb14nlfxs726ng8jhfpf6n9b9kw32smg2krcl0vj90dfrkcc20fm36j2zgdd49b2ln1z4jz2wvvy4qgss14zzfr3rps719h6vlyjg7"; 264 + url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz"; 265 + sha512 = "0gfvfdnxy8zznb198pbzshiqg8vnn2icjbc49dmy158qqb33w2ifh86migd8xighgbjl66lhqlb9cvqv2ghviri1k7kh9kw8hr19wxc"; 266 266 }; 267 267 }; 268 268 "aproba-1.2.0" = { ··· 274 274 sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3"; 275 275 }; 276 276 }; 277 - "are-we-there-yet-1.1.4" = { 277 + "are-we-there-yet-1.1.5" = { 278 278 name = "are-we-there-yet"; 279 279 packageName = "are-we-there-yet"; 280 - version = "1.1.4"; 280 + version = "1.1.5"; 281 281 src = fetchurl { 282 - url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz"; 283 - sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d"; 282 + url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz"; 283 + sha512 = "3mizm1yfxynlhaavbimv7n9qljrbhni22v4fch6zr89x6ps0gpjcxm5yfvv05n8vc3r17hmglyswgq9w0s598xv70nnyw358q11s5p6"; 284 284 }; 285 285 }; 286 286 "argparse-1.0.10" = { ··· 454 454 sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc"; 455 455 }; 456 456 }; 457 - "async-2.6.0" = { 457 + "async-2.6.1" = { 458 458 name = "async"; 459 459 packageName = "async"; 460 - version = "2.6.0"; 460 + version = "2.6.1"; 461 461 src = fetchurl { 462 - url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz"; 463 - sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4"; 462 + url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz"; 463 + sha512 = "2aqgkis9ac37q6jv6zspfpj3rikh2vr9fdch7wajrvqihq5sxyd1gh5zv65hy0y3r22l720qkidwh6img8dngqcjj0dwrl0dwpj5lbw"; 464 464 }; 465 465 }; 466 466 "async-each-1.0.1" = { ··· 661 661 sha1 = "090700c4ba28862a8520ef378395fdee5f61c229"; 662 662 }; 663 663 }; 664 - "boom-4.3.1" = { 665 - name = "boom"; 666 - packageName = "boom"; 667 - version = "4.3.1"; 668 - src = fetchurl { 669 - url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz"; 670 - sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31"; 671 - }; 672 - }; 673 - "boom-5.2.0" = { 674 - name = "boom"; 675 - packageName = "boom"; 676 - version = "5.2.0"; 677 - src = fetchurl { 678 - url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz"; 679 - sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437"; 680 - }; 681 - }; 682 664 "boxen-1.3.0" = { 683 665 name = "boxen"; 684 666 packageName = "boxen"; ··· 733 715 sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb"; 734 716 }; 735 717 }; 736 - "buffer-alloc-1.1.0" = { 718 + "buffer-alloc-1.2.0" = { 737 719 name = "buffer-alloc"; 738 720 packageName = "buffer-alloc"; 739 - version = "1.1.0"; 721 + version = "1.2.0"; 740 722 src = fetchurl { 741 - url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz"; 742 - sha1 = "05514d33bf1656d3540c684f65b1202e90eca303"; 723 + url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz"; 724 + sha512 = "2isng7g5ld0a4ih1d38bcdqpw8jpqajmcn6vfkrqpahmhim4cfw51c1sikz5s5hnmfychcbzcxvwydn8qi6zq6mhl15anzd1110fnq8"; 743 725 }; 744 726 }; 745 - "buffer-alloc-unsafe-0.1.1" = { 727 + "buffer-alloc-unsafe-1.1.0" = { 746 728 name = "buffer-alloc-unsafe"; 747 729 packageName = "buffer-alloc-unsafe"; 748 - version = "0.1.1"; 730 + version = "1.1.0"; 749 731 src = fetchurl { 750 - url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz"; 751 - sha1 = "ffe1f67551dd055737de253337bfe853dfab1a6a"; 752 - }; 753 - }; 754 - "buffer-alloc-unsafe-1.0.0" = { 755 - name = "buffer-alloc-unsafe"; 756 - packageName = "buffer-alloc-unsafe"; 757 - version = "1.0.0"; 758 - src = fetchurl { 759 - url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz"; 760 - sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe"; 732 + url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz"; 733 + sha512 = "01b27ck9qpkjb3s14q703k5vi00m7lpl0zkyi91z4kxjww4b6q09frq68lm6m9hvhb5m4w0arwybncm5hia3j9kr9vd4h84qa43chsc"; 761 734 }; 762 735 }; 763 736 "buffer-crc32-0.2.13" = { ··· 778 751 sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5"; 779 752 }; 780 753 }; 781 - "buffer-fill-0.1.1" = { 754 + "buffer-fill-1.0.0" = { 782 755 name = "buffer-fill"; 783 756 packageName = "buffer-fill"; 784 - version = "0.1.1"; 757 + version = "1.0.0"; 785 758 src = fetchurl { 786 - url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz"; 787 - sha512 = "3nny0zbpnaxp1544gp7lc53jvs1jgzpmp92cy939dik36bi8lvhrsh4g082lxdplwsma22cgg9q93dw5dnbn1ljqkh4fb2i6w3lq032"; 759 + url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz"; 760 + sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c"; 788 761 }; 789 762 }; 790 - "buffer-from-1.0.0" = { 763 + "buffer-from-1.1.0" = { 791 764 name = "buffer-from"; 792 765 packageName = "buffer-from"; 793 - version = "1.0.0"; 766 + version = "1.1.0"; 794 767 src = fetchurl { 795 - url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz"; 796 - sha512 = "3252laq8prm41lgzlhmc7rdj99gwcvpf7cn6j686g4qmspnl3haid5khv9pc9cfjja9wb64nwfvgdwi2kpdf125xfg48aqapwssjxpk"; 768 + url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz"; 769 + sha512 = "0ch7mwp2p7iz81hlj769cki9vapg34rp3368mbxffjync131zz3cig7vkjv4n1lfyfnaapj9axq5d6sg92a8ri6fnvggz481fb936bk"; 797 770 }; 798 771 }; 799 772 "buffer-indexof-1.1.1" = { ··· 956 929 src = fetchurl { 957 930 url = "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz"; 958 931 sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2"; 932 + }; 933 + }; 934 + "chardet-0.5.0" = { 935 + name = "chardet"; 936 + packageName = "chardet"; 937 + version = "0.5.0"; 938 + src = fetchurl { 939 + url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz"; 940 + sha512 = "3931r17a9qqilrj8ymqwiqrayvwaz6d7hvhscrh8s4a7cksmw0saq1bg2xk7r20mcnzbcpn4c05bii36axilkfrpj2j0gcy2shdm57m"; 959 941 }; 960 942 }; 961 943 "charenc-0.0.2" = { ··· 1228 1210 sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b"; 1229 1211 }; 1230 1212 }; 1231 - "colors-1.2.5" = { 1213 + "colors-1.3.0" = { 1232 1214 name = "colors"; 1233 1215 packageName = "colors"; 1234 - version = "1.2.5"; 1216 + version = "1.3.0"; 1235 1217 src = fetchurl { 1236 - url = "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz"; 1237 - sha512 = "2k2a7k096qcm5fghgcmybg96y3x5bpqb62j0zdlnxq7za4asb6vsy9i69nkg9wqfhkcbh6qzm8zzvq7q516p54awxpp2qrzm8nm3cvs"; 1218 + url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz"; 1219 + sha512 = "03rrn3n1k9lcwlg5xdx0cj727blwc1a0r6rnq1r8nynwni4bwqlbzlb9qp02x09pfnrfj0ihb28wsimqxiivm5k0f2wa77hmvfmffhh"; 1238 1220 }; 1239 1221 }; 1240 1222 "combine-errors-3.0.3" = { ··· 1262 1244 src = fetchurl { 1263 1245 url = "https://registry.npmjs.org/commander/-/commander-0.6.1.tgz"; 1264 1246 sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06"; 1265 - }; 1266 - }; 1267 - "commander-2.11.0" = { 1268 - name = "commander"; 1269 - packageName = "commander"; 1270 - version = "2.11.0"; 1271 - src = fetchurl { 1272 - url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz"; 1273 - sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg"; 1274 1247 }; 1275 1248 }; 1276 1249 "commander-2.15.1" = { ··· 1417 1390 sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe"; 1418 1391 }; 1419 1392 }; 1420 - "cookiejar-2.1.1" = { 1393 + "cookiejar-2.1.2" = { 1421 1394 name = "cookiejar"; 1422 1395 packageName = "cookiejar"; 1423 - version = "2.1.1"; 1396 + version = "2.1.2"; 1424 1397 src = fetchurl { 1425 - url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz"; 1426 - sha1 = "41ad57b1b555951ec171412a81942b1e8200d34a"; 1398 + url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz"; 1399 + sha512 = "302w4kd3x9k0jy5iva1k5inp3r25avz8ddpkdb20icvrizicvas253kfp6ynmrcwpxv1lafcnagggxfs5dmmd4gg07ifgzkqxsrl3rk"; 1427 1400 }; 1428 1401 }; 1429 1402 "copy-descriptor-0.1.1" = { ··· 1478 1451 src = fetchurl { 1479 1452 url = "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz"; 1480 1453 sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b"; 1481 - }; 1482 - }; 1483 - "cryptiles-3.1.2" = { 1484 - name = "cryptiles"; 1485 - packageName = "cryptiles"; 1486 - version = "3.1.2"; 1487 - src = fetchurl { 1488 - url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz"; 1489 - sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe"; 1490 1454 }; 1491 1455 }; 1492 1456 "crypto-random-string-1.0.0" = { ··· 1633 1597 sha1 = "69449ac8a368593a8f71902b282390c3655ab4b8"; 1634 1598 }; 1635 1599 }; 1636 - "dat-node-3.5.8" = { 1600 + "dat-node-3.5.9" = { 1637 1601 name = "dat-node"; 1638 1602 packageName = "dat-node"; 1639 - version = "3.5.8"; 1603 + version = "3.5.9"; 1640 1604 src = fetchurl { 1641 - url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.8.tgz"; 1642 - sha512 = "3j28p80dwmic3g00asmcpgiv3sh3s8023x1023g7bm534h1ai8i2zryivx95gc22is64k9mynmqr2g0ny25xp1f7h1cbc25klizg8dc"; 1605 + url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.9.tgz"; 1606 + sha512 = "104lk78v9z8z1p5dkkn5w6ciimn7gbh83yvfcpl6vcd6fahdghak9kp95wmmfjlbas1959a156552i8a891qjbfa32q1wcanyv4yri4"; 1643 1607 }; 1644 1608 }; 1645 1609 "dat-registry-4.0.0" = { ··· 1777 1741 sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d"; 1778 1742 }; 1779 1743 }; 1780 - "deep-extend-0.5.1" = { 1744 + "deep-extend-0.6.0" = { 1781 1745 name = "deep-extend"; 1782 1746 packageName = "deep-extend"; 1783 - version = "0.5.1"; 1747 + version = "0.6.0"; 1784 1748 src = fetchurl { 1785 - url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz"; 1786 - sha512 = "3bzqm7nqgh7m8xjhl0q8jc0ccm9riymsfmy0144x6n2qy9v1gin2ww8s9wjlayk0xyzq9cz9pyar02yiv30mhqsj7rmw35ywrsc3jrp"; 1749 + url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz"; 1750 + sha512 = "0wc0sqg1aqx864bxf8xa4j8ncrc8rcvmiaj1sp3x1np2i8hdjybzjfd0w9gbf1yasmwycwzzg1mz6smr3q42hhv4pjx2qcgwqhg3q9c"; 1787 1751 }; 1788 1752 }; 1789 1753 "define-property-0.2.5" = { ··· 1919 1883 src = fetchurl { 1920 1884 url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-4.4.2.tgz"; 1921 1885 sha1 = "5d3160a46019e50e874195765df7d601ee55a813"; 1886 + }; 1887 + }; 1888 + "discovery-swarm-5.1.1" = { 1889 + name = "discovery-swarm"; 1890 + packageName = "discovery-swarm"; 1891 + version = "5.1.1"; 1892 + src = fetchurl { 1893 + url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.1.tgz"; 1894 + sha512 = "1sa0sciklf04fnha64gb01s3wqddxkzf9n1q0zyjcr3cdhn49xyql60cbxby922bqq0wd7k57b6qjk50vn4hjsk08pggzcggbvkszxg"; 1922 1895 }; 1923 1896 }; 1924 1897 "dns-discovery-5.6.1" = { ··· 2101 2074 sha512 = "3cjrpi6n5i6gf8jaiwg31y2xkgx59szhhcj9myqwmdw16s9r6yvwznxd2lhqf96mpm6knyb3w2bcnksg5nzkrq6iada0k6nvdj2pjfl"; 2102 2075 }; 2103 2076 }; 2104 - "es5-ext-0.10.42" = { 2077 + "es5-ext-0.10.45" = { 2105 2078 name = "es5-ext"; 2106 2079 packageName = "es5-ext"; 2107 - version = "0.10.42"; 2080 + version = "0.10.45"; 2108 2081 src = fetchurl { 2109 - url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz"; 2110 - sha512 = "1412ssfrx1kvraz8kp4x9lc1jzcdh2952vbmlimrfalmbjv44rh504ihb4fg5mjwx8ix1f1wii0a0qngwrfk4gl271mcywgp7b4x700"; 2082 + url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz"; 2083 + sha512 = "04p6qjhmiaqlqqgi0690lz7zzcdg1n80pxiywkkk6qalpxd8b85kv4403ckchsv8jlx9rhz4chgh819ahzcgwanibnnqzkibklwqiqn"; 2111 2084 }; 2112 2085 }; 2113 2086 "es6-iterator-2.0.3" = { ··· 2297 2270 src = fetchurl { 2298 2271 url = "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz"; 2299 2272 sha512 = "3sf897ajmkcp0j6rgd0jy6k95s9ck3j305yrr00kmckl8qdhswhbdd5g4m2fai03x8phs1vw2ahf9v7ym5ji4zfxydxyamiy61glabd"; 2273 + }; 2274 + }; 2275 + "external-editor-3.0.0" = { 2276 + name = "external-editor"; 2277 + packageName = "external-editor"; 2278 + version = "3.0.0"; 2279 + src = fetchurl { 2280 + url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.0.tgz"; 2281 + sha512 = "28h4s6rjdakrr2danff6n7mwwf1n2syyba9q93ac1wpic535lk0xvwh4bpnzhmw3gkjblvbvfsd4zp57hwy7d70hk41lxs4867iz6cs"; 2300 2282 }; 2301 2283 }; 2302 2284 "extglob-0.3.2" = { ··· 2362 2344 sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1"; 2363 2345 }; 2364 2346 }; 2365 - "fd-slicer-1.0.1" = { 2347 + "fd-slicer-1.1.0" = { 2366 2348 name = "fd-slicer"; 2367 2349 packageName = "fd-slicer"; 2368 - version = "1.0.1"; 2350 + version = "1.1.0"; 2369 2351 src = fetchurl { 2370 - url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz"; 2371 - sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65"; 2352 + url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz"; 2353 + sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e"; 2372 2354 }; 2373 2355 }; 2374 2356 "figures-1.7.0" = { ··· 2488 2470 sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed"; 2489 2471 }; 2490 2472 }; 2491 - "for-each-0.3.2" = { 2473 + "for-each-0.3.3" = { 2492 2474 name = "for-each"; 2493 2475 packageName = "for-each"; 2494 - version = "0.3.2"; 2476 + version = "0.3.3"; 2495 2477 src = fetchurl { 2496 - url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz"; 2497 - sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4"; 2478 + url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz"; 2479 + sha512 = "2dikmdxwassw4w48vv82swjv4v1zx2sivsgcnxi3zi0imzw165ba8vaxgawz0wz4fgf138hvvc3xc5znr2wmz07r74dp8z6kqp1z9lf"; 2498 2480 }; 2499 2481 }; 2500 2482 "for-in-1.0.2" = { ··· 2839 2821 sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e"; 2840 2822 }; 2841 2823 }; 2842 - "growl-1.10.3" = { 2824 + "growl-1.10.5" = { 2843 2825 name = "growl"; 2844 2826 packageName = "growl"; 2845 - version = "1.10.3"; 2827 + version = "1.10.5"; 2846 2828 src = fetchurl { 2847 - url = "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz"; 2848 - sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4"; 2829 + url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz"; 2830 + sha512 = "146i7if4fjml1p6xw1ybb7vm22k6i8yc7r8wcw8yia7qy385w1s6j18ip91g5mv47zvv5fw5m8kpzlaayjs183fkpg174hbw4xgh6m8"; 2849 2831 }; 2850 2832 }; 2851 2833 "growl-1.9.2" = { ··· 2902 2884 sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91"; 2903 2885 }; 2904 2886 }; 2905 - "has-flag-2.0.0" = { 2906 - name = "has-flag"; 2907 - packageName = "has-flag"; 2908 - version = "2.0.0"; 2909 - src = fetchurl { 2910 - url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz"; 2911 - sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51"; 2912 - }; 2913 - }; 2914 2887 "has-flag-3.0.0" = { 2915 2888 name = "has-flag"; 2916 2889 packageName = "has-flag"; ··· 2992 2965 sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f"; 2993 2966 }; 2994 2967 }; 2995 - "hawk-6.0.2" = { 2996 - name = "hawk"; 2997 - packageName = "hawk"; 2998 - version = "6.0.2"; 2999 - src = fetchurl { 3000 - url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz"; 3001 - sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als"; 3002 - }; 3003 - }; 3004 2968 "he-1.1.1" = { 3005 2969 name = "he"; 3006 2970 packageName = "he"; ··· 3008 2972 src = fetchurl { 3009 2973 url = "https://registry.npmjs.org/he/-/he-1.1.1.tgz"; 3010 2974 sha1 = "93410fd21b009735151f8868c2f271f3427e23fd"; 3011 - }; 3012 - }; 3013 - "hoek-4.2.1" = { 3014 - name = "hoek"; 3015 - packageName = "hoek"; 3016 - version = "4.2.1"; 3017 - src = fetchurl { 3018 - url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz"; 3019 - sha512 = "1y8kprb3qldxqj31zai5n8dvhydsl9nn5w4rskhnbzzhldn6pm6n5lcyam3sfkb61a62d5m58k8im7z6ngwbd9cw9zp4zm4y7ckrf20"; 3020 2975 }; 3021 2976 }; 3022 2977 "http-errors-1.6.3" = { ··· 3046 3001 sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1"; 3047 3002 }; 3048 3003 }; 3049 - "hypercore-6.14.0" = { 3004 + "hypercore-6.15.0" = { 3050 3005 name = "hypercore"; 3051 3006 packageName = "hypercore"; 3052 - version = "6.14.0"; 3007 + version = "6.15.0"; 3053 3008 src = fetchurl { 3054 - url = "https://registry.npmjs.org/hypercore/-/hypercore-6.14.0.tgz"; 3055 - sha512 = "3liw77yhvn3nlrczf9s30vvn4bxrn3glh65a2psy1va9pvcnjwx6wfh52v5l9qbd7zyp4q4nb7qrq0n3am7jwmz3dkb5fzvdnlwikkh"; 3009 + url = "https://registry.npmjs.org/hypercore/-/hypercore-6.15.0.tgz"; 3010 + sha512 = "2qd2nd34xmr8fvagbifn72ffcr6hw9byas8rccy1wx252kj2qza8yy9g0ck9nf7np794267ry4jih7j1ryrjrbs8r8q2hbvgcyv5w0z"; 3056 3011 }; 3057 3012 }; 3058 3013 "hypercore-protocol-6.6.4" = { ··· 3064 3019 sha512 = "0rxj8d4lp45q7v3wwwv23m7qi84vw3wvyafqiy9x5f9lqkynq8v8yajpq9bcnc935927qjnxajn8n0cyhg0fqjnpywlfyxgxczkndgm"; 3065 3020 }; 3066 3021 }; 3067 - "hyperdrive-9.12.3" = { 3022 + "hyperdrive-9.13.0" = { 3068 3023 name = "hyperdrive"; 3069 3024 packageName = "hyperdrive"; 3070 - version = "9.12.3"; 3025 + version = "9.13.0"; 3071 3026 src = fetchurl { 3072 - url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.3.tgz"; 3073 - sha512 = "3w0ia766bacphqzgyjhiwbppgdja61vlz2xp6x710dk4pn6570gag3w5xa8rfivh2lvig8v2ics3bkdlm9cmq9kpzjgwzm19a089fb3"; 3027 + url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.13.0.tgz"; 3028 + sha512 = "1ncs5n26spkycvrfi5j0dy62bw3d9l0cmpaagc54nb6rfh33zyh228b3n99yajvzhyym0d6g0hphpwjyz8s7pngv13ql8f41x05zq40"; 3074 3029 }; 3075 3030 }; 3076 3031 "hyperdrive-http-4.2.2" = { ··· 3208 3163 sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47"; 3209 3164 }; 3210 3165 }; 3166 + "inquirer-6.0.0" = { 3167 + name = "inquirer"; 3168 + packageName = "inquirer"; 3169 + version = "6.0.0"; 3170 + src = fetchurl { 3171 + url = "https://registry.npmjs.org/inquirer/-/inquirer-6.0.0.tgz"; 3172 + sha512 = "0k09hsg3dfdz7vp482v56hvhqa9g4qbm8jpmig9p0phdzsaspajxk9d4z575dd8rc70pmipg7pxxpgdqwa3x1z4rwmhhw1d3icr115l"; 3173 + }; 3174 + }; 3211 3175 "ip-1.1.5" = { 3212 3176 name = "ip"; 3213 3177 packageName = "ip"; ··· 3260 3224 src = fetchurl { 3261 3225 url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz"; 3262 3226 sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm"; 3227 + }; 3228 + }; 3229 + "is-callable-1.1.3" = { 3230 + name = "is-callable"; 3231 + packageName = "is-callable"; 3232 + version = "1.1.3"; 3233 + src = fetchurl { 3234 + url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz"; 3235 + sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2"; 3263 3236 }; 3264 3237 }; 3265 3238 "is-ci-1.1.0" = { ··· 3505 3478 sha512 = "34m1wg28c9l1v9bqz2klwl4ybhyqkhk80d95664jmcbq1jjpg471nv96mqgqy4838xpa8wm7mbpynmq4294pq6iw163s0ar1b3a4f1r"; 3506 3479 }; 3507 3480 }; 3481 + "is-options-1.0.1" = { 3482 + name = "is-options"; 3483 + packageName = "is-options"; 3484 + version = "1.0.1"; 3485 + src = fetchurl { 3486 + url = "https://registry.npmjs.org/is-options/-/is-options-1.0.1.tgz"; 3487 + sha512 = "339gkkcm39mcw2c8wwl37y02rq3ga7309fgrvp2garlavgh93aydxpfx8wg9j9xs6k9h3ha11c4z9bkcqihd7w5d8fb03ik1nqgqy6r"; 3488 + }; 3489 + }; 3508 3490 "is-path-inside-1.0.1" = { 3509 3491 name = "is-path-inside"; 3510 3492 packageName = "is-path-inside"; ··· 3703 3685 sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c"; 3704 3686 }; 3705 3687 }; 3706 - "js-yaml-3.11.0" = { 3688 + "js-yaml-3.12.0" = { 3707 3689 name = "js-yaml"; 3708 3690 packageName = "js-yaml"; 3709 - version = "3.11.0"; 3691 + version = "3.12.0"; 3710 3692 src = fetchurl { 3711 - url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz"; 3712 - sha512 = "0gka65n4d9gmcy0c8cy5h55r273dbxnw54gibp2nq5mmdmksjgb2nhcdfgfxs1wg3yayyrydn2v79fny7hdyq907dg87vmgjnsnr8mi"; 3693 + url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz"; 3694 + sha512 = "3f8k2gvi3gnj9gpr3dnm5n5vpy2w68pshqk4hajlsmkb37ky30cnqza82l8sq153zx1nk67gizcm1ngmvlajw53hkwg4g96gir7d2rw"; 3713 3695 }; 3714 3696 }; 3715 3697 "jsbn-0.1.1" = { ··· 4558 4540 sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284"; 4559 4541 }; 4560 4542 }; 4561 - "minipass-2.3.0" = { 4543 + "minipass-2.3.3" = { 4562 4544 name = "minipass"; 4563 4545 packageName = "minipass"; 4564 - version = "2.3.0"; 4546 + version = "2.3.3"; 4565 4547 src = fetchurl { 4566 - url = "https://registry.npmjs.org/minipass/-/minipass-2.3.0.tgz"; 4567 - sha512 = "1p0pbj1iwnzb7kkqbh5h0vd6byh1l6na1yx69qmbb0wbmwm0qc5g4hn4z6lr8wkzb4kybvd1hjm4hxd93nrdr8ydbqqd9wd1w9bcq4d"; 4548 + url = "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz"; 4549 + sha512 = "1ii40xdjvsqw9k2pyavlv1h4wh5pc3fz4kn91gxpy404kilgp6p9q7q6zba7wa9i7xh9iijnz2pmr8h0wc4yh14lwkqhps4zgvjfc7y"; 4568 4550 }; 4569 4551 }; 4570 4552 "minizlib-1.1.0" = { ··· 4576 4558 sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1"; 4577 4559 }; 4578 4560 }; 4579 - "mirror-folder-2.2.0" = { 4561 + "mirror-folder-3.0.0" = { 4580 4562 name = "mirror-folder"; 4581 4563 packageName = "mirror-folder"; 4582 - version = "2.2.0"; 4564 + version = "3.0.0"; 4583 4565 src = fetchurl { 4584 - url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.2.0.tgz"; 4585 - sha512 = "3js8pwgmj4lzzi6nzl0wp021rhsnz31jpkkzdf35xzwm1l65m6ygjf4hz77vvy3dk2h5jb2d32nvzy26n3d5hswg3nb8s0rylvv510r"; 4566 + url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz"; 4567 + sha512 = "3vdfga0d1l6kpkk3bvkzw6jx6x6n4dn1z1q6rxgnsj0wqhs68v0fgdik67f3r9vll25kdmvwhn67v6p5xqiwkxncc55m90jfw6v07ky"; 4586 4568 }; 4587 4569 }; 4588 4570 "mixin-deep-1.3.1" = { ··· 4702 4684 sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b"; 4703 4685 }; 4704 4686 }; 4705 - "multistream-2.1.0" = { 4687 + "multistream-2.1.1" = { 4706 4688 name = "multistream"; 4707 4689 packageName = "multistream"; 4708 - version = "2.1.0"; 4690 + version = "2.1.1"; 4709 4691 src = fetchurl { 4710 - url = "https://registry.npmjs.org/multistream/-/multistream-2.1.0.tgz"; 4711 - sha1 = "625c267d5c44424ad6294788b5bb4da3dcb32f1d"; 4692 + url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz"; 4693 + sha512 = "0ssriqcskcwvja0aw04frfy7fymv2nwl0dqh3fp03d2cd78yf45r6jlvv1pn87w1b2yzp7iy8mznj7cybxr9dscfkspmsk5m3pjzay5"; 4712 4694 }; 4713 4695 }; 4714 4696 "mute-stream-0.0.5" = { ··· 4855 4837 sha512 = "0vkilw1ghsjca0lrj9gsdgsi8wj4bvpfr25q1qzx1kp5hhvjdhapmvpmrd2hikwq9dxydw6sdvv0730wwvmsg36xqf0hgp9777l3ns8"; 4856 4838 }; 4857 4839 }; 4858 - "nodemon-1.17.4" = { 4840 + "nodemon-1.17.5" = { 4859 4841 name = "nodemon"; 4860 4842 packageName = "nodemon"; 4861 - version = "1.17.4"; 4843 + version = "1.17.5"; 4862 4844 src = fetchurl { 4863 - url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.4.tgz"; 4864 - sha512 = "3bmxd7fd494gy4ddax3mihjz1iy484iakyssbhy87cc2kwbky9xkb8l47vphc3n858q9p9afxl57w0849i24amsdjhwbqh8vxhjy1v5"; 4845 + url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.5.tgz"; 4846 + sha512 = "2djkgpk29zh4p7wqb8h4g6w0y2fix94zqpgi40fshn9yaf6anp5p0vbqj8r3s6zxsxhgvnv7lzj56v6s6gk0q2byqd9yqrmjmcacv8l"; 4865 4847 }; 4866 4848 }; 4867 4849 "nopt-1.0.10" = { ··· 5476 5458 sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"; 5477 5459 }; 5478 5460 }; 5479 - "punycode-2.1.0" = { 5461 + "punycode-2.1.1" = { 5480 5462 name = "punycode"; 5481 5463 packageName = "punycode"; 5482 - version = "2.1.0"; 5464 + version = "2.1.1"; 5483 5465 src = fetchurl { 5484 - url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz"; 5485 - sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d"; 5466 + url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz"; 5467 + sha512 = "381vqgh5xkqzrr6cxbzfykgnnk83m7qgpx3wjwj1hddn3sg2aibjxyr30rajpgv4js0cqknrbzwbfk5ryhiiyigzfjrk3zysy6i26sx"; 5486 5468 }; 5487 5469 }; 5488 5470 "qs-2.3.3" = { ··· 5548 5530 sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2"; 5549 5531 }; 5550 5532 }; 5533 + "random-access-memory-3.0.0" = { 5534 + name = "random-access-memory"; 5535 + packageName = "random-access-memory"; 5536 + version = "3.0.0"; 5537 + src = fetchurl { 5538 + url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz"; 5539 + sha512 = "160skc30mby806rmlwilb56h0r5bcc3sf2dr980k4a93c3bhnlnjcfiqbx1k5sjljqiygs6sn014gpgilzhhx9c1vdcyfhkz45pkxrv"; 5540 + }; 5541 + }; 5551 5542 "random-access-storage-1.2.0" = { 5552 5543 name = "random-access-storage"; 5553 5544 packageName = "random-access-storage"; ··· 5593 5584 sha1 = "a2c2f98c8531cee99c63d8d238b7de97bb659fca"; 5594 5585 }; 5595 5586 }; 5596 - "rc-1.2.7" = { 5587 + "rc-1.2.8" = { 5597 5588 name = "rc"; 5598 5589 packageName = "rc"; 5599 - version = "1.2.7"; 5590 + version = "1.2.8"; 5600 5591 src = fetchurl { 5601 - url = "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz"; 5602 - sha512 = "30b4pqzhk8f4ppzyk5diwxac7xpf4hd3rysyin012l59da9v5iaai4wd6yzlz3rjspfvvy191q6qcsw47mwlw9y07n35kzq23rw7lid"; 5592 + url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz"; 5593 + sha512 = "0xhy1n9n3y6cp28f8f0f2mi0xzc7ay1g5nhbp64fyvcwv9q30zq2zvyc5q2d0al8aa0hx101yq2y6d2ln4r5jxnqifh1pd3la1ccxnb"; 5603 5594 }; 5604 5595 }; 5605 5596 "read-1.0.7" = { ··· 5755 5746 sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637"; 5756 5747 }; 5757 5748 }; 5758 - "request-2.86.0" = { 5749 + "request-2.87.0" = { 5759 5750 name = "request"; 5760 5751 packageName = "request"; 5761 - version = "2.86.0"; 5752 + version = "2.87.0"; 5762 5753 src = fetchurl { 5763 - url = "https://registry.npmjs.org/request/-/request-2.86.0.tgz"; 5764 - sha512 = "37xa5i4dk3fkcl9gxrzxkjjy6vcqn6bcc61bwq6kjpqrg5i01yc6xn0iq3zy68vqqav93k1kgr2xdabp22p0bfynfcbzxp8ms3n41h5"; 5754 + url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz"; 5755 + sha512 = "0vnsbflzj7gxa33r47bzsiaf7jc00b9iqkqdz8l7n9x5dgdgbq1qpcqqslds1arazipz8pjr4m5rf4ikg4d59d49gn9dky0ds921jkx"; 5765 5756 }; 5766 5757 }; 5767 5758 "resolve-1.1.7" = { ··· 5890 5881 sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be"; 5891 5882 }; 5892 5883 }; 5884 + "rxjs-6.2.0" = { 5885 + name = "rxjs"; 5886 + packageName = "rxjs"; 5887 + version = "6.2.0"; 5888 + src = fetchurl { 5889 + url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.0.tgz"; 5890 + sha512 = "01sy4p9dqb8xiv59c5dn2lwza4jm6dv1hsy9v4ifj60kwh1l8iqar17lvgxmhjpqjaqgqkrx6kx0kv7l121704v16if4y5sxgkdy758"; 5891 + }; 5892 + }; 5893 5893 "safe-buffer-5.1.2" = { 5894 5894 name = "safe-buffer"; 5895 5895 packageName = "safe-buffer"; ··· 6097 6097 sha512 = "2l45afqnby96gdihg3hi51006502yc33wly8cgmgrww00aiq37jdvp22l9qhbxljra5j6s8lwigjh5hpzj521ccgwlhk59zw9vhylx4"; 6098 6098 }; 6099 6099 }; 6100 - "siphash24-1.1.0" = { 6100 + "siphash24-1.1.1" = { 6101 6101 name = "siphash24"; 6102 6102 packageName = "siphash24"; 6103 - version = "1.1.0"; 6103 + version = "1.1.1"; 6104 6104 src = fetchurl { 6105 - url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz"; 6106 - sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w"; 6105 + url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz"; 6106 + sha512 = "1ach37ibirvd6yxa42ffkn1dwfcar70pjbnj9alrf713n1bdzb4y44nbrm5bi3swpvqrr7f8sbbcyj586wn049hxmyawf8kia6b18kl"; 6107 6107 }; 6108 6108 }; 6109 6109 "slash-1.0.0" = { ··· 6178 6178 sha512 = "1jsaqma4ycl2iq0761i1w7758z1kq7gbsij4xfb7p5cnw0qa62pszv6pr3j856n3pbxww7wwxs5wvcg2cb6vy020kw3bchashqs9clr"; 6179 6179 }; 6180 6180 }; 6181 - "sntp-2.1.0" = { 6182 - name = "sntp"; 6183 - packageName = "sntp"; 6184 - version = "2.1.0"; 6185 - src = fetchurl { 6186 - url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz"; 6187 - sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l"; 6188 - }; 6189 - }; 6190 6181 "sodium-javascript-0.5.5" = { 6191 6182 name = "sodium-javascript"; 6192 6183 packageName = "sodium-javascript"; ··· 6214 6205 sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj"; 6215 6206 }; 6216 6207 }; 6217 - "sorted-array-functions-1.1.0" = { 6208 + "sorted-array-functions-1.2.0" = { 6218 6209 name = "sorted-array-functions"; 6219 6210 packageName = "sorted-array-functions"; 6220 - version = "1.1.0"; 6211 + version = "1.2.0"; 6221 6212 src = fetchurl { 6222 - url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.1.0.tgz"; 6223 - sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf"; 6213 + url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz"; 6214 + sha512 = "1759vgxawg63w16nnrklz5azzj9kklrlz5sdd643y8jp8qz7hiwdn5ydlnwx2ns4j761x4rqllh6fvlzjqgi3dixy7dl9hr28z66smi"; 6224 6215 }; 6225 6216 }; 6226 6217 "sorted-immutable-list-1.1.0" = { ··· 6331 6322 sha1 = "04e6926f662895354f3dd015203633b857297e2c"; 6332 6323 }; 6333 6324 }; 6334 - "sshpk-1.14.1" = { 6325 + "sshpk-1.14.2" = { 6335 6326 name = "sshpk"; 6336 6327 packageName = "sshpk"; 6337 - version = "1.14.1"; 6328 + version = "1.14.2"; 6338 6329 src = fetchurl { 6339 - url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz"; 6340 - sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb"; 6330 + url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz"; 6331 + sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98"; 6341 6332 }; 6342 6333 }; 6343 6334 "stack-trace-0.0.10" = { ··· 6601 6592 sha1 = "535d045ce6b6363fa40117084629995e9df324c7"; 6602 6593 }; 6603 6594 }; 6604 - "supports-color-4.4.0" = { 6605 - name = "supports-color"; 6606 - packageName = "supports-color"; 6607 - version = "4.4.0"; 6608 - src = fetchurl { 6609 - url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz"; 6610 - sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c"; 6611 - }; 6612 - }; 6613 6595 "supports-color-5.4.0" = { 6614 6596 name = "supports-color"; 6615 6597 packageName = "supports-color"; ··· 6682 6664 sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1"; 6683 6665 }; 6684 6666 }; 6685 - "tar-4.4.2" = { 6667 + "tar-4.4.4" = { 6686 6668 name = "tar"; 6687 6669 packageName = "tar"; 6688 - version = "4.4.2"; 6670 + version = "4.4.4"; 6689 6671 src = fetchurl { 6690 - url = "https://registry.npmjs.org/tar/-/tar-4.4.2.tgz"; 6691 - sha512 = "25ypdsz6l4xmg1f89pjy8s773j3lzx855iiakbdknz115vxyg4p4z1j0i84iyjpzwgfjfs2l2njpd0y2hlr5sh4n01nh6124zs09y85"; 6672 + url = "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz"; 6673 + sha512 = "3iy3r78nycp0ly9nldcygkklrc7jas93k4bis6ypiw5fqlsygqyylgwl1378qf61r1yh2lsd11vrjr8hwfzw4j25d95yd0zhv265bws"; 6692 6674 }; 6693 6675 }; 6694 6676 "tar-stream-1.6.1" = { ··· 6923 6905 src = fetchurl { 6924 6906 url = "https://registry.npmjs.org/truncate-utf8-bytes/-/truncate-utf8-bytes-1.0.2.tgz"; 6925 6907 sha1 = "405923909592d56f78a5818434b0b78489ca5f2b"; 6908 + }; 6909 + }; 6910 + "tslib-1.9.2" = { 6911 + name = "tslib"; 6912 + packageName = "tslib"; 6913 + version = "1.9.2"; 6914 + src = fetchurl { 6915 + url = "https://registry.npmjs.org/tslib/-/tslib-1.9.2.tgz"; 6916 + sha512 = "0ms6i864mv97lfwlmnzpbf6f539kqcsnj8qbyj12h46r0zszxpk8gsfchs5s7spfwpnapfmbaakx8xiqg0v4rxqmz22nnkpi5ggjlq1"; 6926 6917 }; 6927 6918 }; 6928 6919 "ttl-1.3.1" = { ··· 7096 7087 sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"; 7097 7088 }; 7098 7089 }; 7099 - "untildify-3.0.2" = { 7090 + "untildify-3.0.3" = { 7100 7091 name = "untildify"; 7101 7092 packageName = "untildify"; 7102 - version = "3.0.2"; 7093 + version = "3.0.3"; 7103 7094 src = fetchurl { 7104 - url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz"; 7105 - sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1"; 7095 + url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz"; 7096 + sha512 = "0l4awya87dx6bnxaywh0dn50ka8hybj603k75d98vlwj9grqfcmaib9hhjy52nsgm62f39v0nnv4yn268jpjy7n9y7wpbwzqwkkyac9"; 7106 7097 }; 7107 7098 }; 7108 7099 "unyield-0.0.1" = { ··· 7267 7258 sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e"; 7268 7259 }; 7269 7260 }; 7270 - "validator-10.2.0" = { 7261 + "validator-10.3.0" = { 7271 7262 name = "validator"; 7272 7263 packageName = "validator"; 7273 - version = "10.2.0"; 7264 + version = "10.3.0"; 7274 7265 src = fetchurl { 7275 - url = "https://registry.npmjs.org/validator/-/validator-10.2.0.tgz"; 7276 - sha512 = "2v8ipjc5jdlwdhj1bcggxm98q2cigj2016rjqyzj0wq4kvjqghi3k66d6j17bpvqix0dqy01s4sh4qg0wv56jshix9zcdddfn9fwgw3"; 7266 + url = "https://registry.npmjs.org/validator/-/validator-10.3.0.tgz"; 7267 + sha512 = "1vr7ds3qf30h7cfk87q2h9jdfh4v3hk0yl1rcs668z2xm0xf8kj1i0l1qs46ws12birk1xlmqpmb3xd4pzrbn78fair94hxjxqdszkf"; 7277 7268 }; 7278 7269 }; 7279 7270 "variable-diff-1.1.0" = { ··· 7330 7321 sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4"; 7331 7322 }; 7332 7323 }; 7333 - "which-1.3.0" = { 7324 + "which-1.3.1" = { 7334 7325 name = "which"; 7335 7326 packageName = "which"; 7336 - version = "1.3.0"; 7327 + version = "1.3.1"; 7337 7328 src = fetchurl { 7338 - url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz"; 7339 - sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5"; 7329 + url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz"; 7330 + sha512 = "0hr4hxkk8yb9fz993bs69pf8z2z2qb6sdpxfxb84sd16lja9fsx444pk1ang1ivmjjv5srnsm6fihdj593w7rwxdh834cdmd9hms4hz"; 7340 7331 }; 7341 7332 }; 7342 - "wide-align-1.1.2" = { 7333 + "wide-align-1.1.3" = { 7343 7334 name = "wide-align"; 7344 7335 packageName = "wide-align"; 7345 - version = "1.1.2"; 7336 + version = "1.1.3"; 7346 7337 src = fetchurl { 7347 - url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz"; 7348 - sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a"; 7338 + url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz"; 7339 + sha512 = "2224a32flpf40nhq6rj4idzkcdz0vx65bfxp90hd06db18l6fiqgxz1xnaygm3pbfb1a6v73hl8ryq4996b09zwwins0bqprx0hwsa0"; 7349 7340 }; 7350 7341 }; 7351 7342 "widest-line-2.0.0" = { ··· 7447 7438 sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4"; 7448 7439 }; 7449 7440 }; 7450 - "xhr-2.4.1" = { 7441 + "xhr-2.5.0" = { 7451 7442 name = "xhr"; 7452 7443 packageName = "xhr"; 7453 - version = "2.4.1"; 7444 + version = "2.5.0"; 7454 7445 src = fetchurl { 7455 - url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz"; 7456 - sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4"; 7446 + url = "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz"; 7447 + sha512 = "36z7hw07wb42na5hy12xmsrg9yzd3hd5ln8y3wyq88qh4xvxr2lp07bbp5la5254mf8qaimgg1plwzvvvsmvj0mcma17p1dbvzlwyg2"; 7457 7448 }; 7458 7449 }; 7459 7450 "xsalsa20-1.0.2" = { ··· 7465 7456 sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43"; 7466 7457 }; 7467 7458 }; 7468 - "xstream-11.2.0" = { 7459 + "xstream-11.4.0" = { 7469 7460 name = "xstream"; 7470 7461 packageName = "xstream"; 7471 - version = "11.2.0"; 7462 + version = "11.4.0"; 7472 7463 src = fetchurl { 7473 - url = "https://registry.npmjs.org/xstream/-/xstream-11.2.0.tgz"; 7474 - sha512 = "2jnrf16561zx9hsvlb8d48ca9qwdh9wxcbkwhkjvp5r88b8pcfjlx2g58k9w5kjs0kw660rw6hj2zhvdsznyf0ic9mj682xz6hf7kfh"; 7464 + url = "https://registry.npmjs.org/xstream/-/xstream-11.4.0.tgz"; 7465 + sha512 = "0a7xg54dwzg9ldfjgiq87zfd3mzcilal41spn2rsji91sbx15x10rbinsa0m60xsnrw725csmi6y47xzkkkiakgz46nz0b580iafd69"; 7475 7466 }; 7476 7467 }; 7477 7468 "xtend-4.0.1" = { ··· 7519 7510 sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1"; 7520 7511 }; 7521 7512 }; 7522 - "yauzl-2.9.1" = { 7513 + "yauzl-2.9.2" = { 7523 7514 name = "yauzl"; 7524 7515 packageName = "yauzl"; 7525 - version = "2.9.1"; 7516 + version = "2.9.2"; 7526 7517 src = fetchurl { 7527 - url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz"; 7528 - sha1 = "a81981ea70a57946133883f029c5821a89359a7f"; 7518 + url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz"; 7519 + sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77"; 7529 7520 }; 7530 7521 }; 7531 7522 "z-schema-3.22.0" = { ··· 7592 7583 sources."chalk-1.1.3" 7593 7584 ]; 7594 7585 }) 7595 - sources."@types/node-10.1.1" 7586 + sources."@types/node-10.3.1" 7596 7587 sources."@types/superagent-3.5.6" 7597 7588 sources."ansi-escapes-3.1.0" 7598 7589 sources."ansi-regex-2.1.1" ··· 7612 7603 sources."combine-errors-3.0.3" 7613 7604 sources."combined-stream-1.0.6" 7614 7605 sources."component-emitter-1.2.1" 7615 - sources."cookiejar-2.1.1" 7606 + sources."cookiejar-2.1.2" 7616 7607 sources."core-util-is-1.0.2" 7617 7608 sources."cross-spawn-5.1.0" 7618 7609 sources."cssauron-1.4.0" ··· 7621 7612 sources."d-1.0.0" 7622 7613 sources."debug-3.1.0" 7623 7614 sources."delayed-stream-1.0.0" 7624 - sources."es5-ext-0.10.42" 7615 + sources."es5-ext-0.10.45" 7625 7616 sources."es6-iterator-2.0.3" 7626 7617 sources."es6-map-0.1.5" 7627 7618 sources."es6-set-0.1.5" ··· 7697 7688 sources."tmp-0.0.33" 7698 7689 sources."util-deprecate-1.0.2" 7699 7690 sources."variable-diff-1.1.0" 7700 - sources."which-1.3.0" 7701 - sources."xstream-11.2.0" 7691 + sources."which-1.3.1" 7692 + sources."xstream-11.4.0" 7702 7693 sources."yallist-2.1.2" 7703 7694 ]; 7704 7695 buildInputs = globalBuildInputs; ··· 7726 7717 sources."ansi-styles-3.2.1" 7727 7718 sources."anymatch-1.3.2" 7728 7719 sources."ap-0.1.0" 7729 - sources."append-tree-2.4.1" 7720 + sources."append-tree-2.4.4" 7730 7721 sources."arr-diff-2.0.0" 7731 7722 sources."arr-flatten-1.1.0" 7732 7723 sources."array-lru-1.1.1" ··· 7750 7741 sources."blake2b-2.1.2" 7751 7742 sources."blake2b-wasm-1.1.7" 7752 7743 sources."body-0.1.0" 7753 - sources."boom-4.3.1" 7754 7744 sources."brace-expansion-1.1.11" 7755 7745 (sources."braces-1.8.5" // { 7756 7746 dependencies = [ 7757 7747 sources."kind-of-6.0.2" 7758 7748 ]; 7759 7749 }) 7760 - sources."buffer-alloc-1.1.0" 7761 - sources."buffer-alloc-unsafe-1.0.0" 7750 + sources."buffer-alloc-1.2.0" 7751 + sources."buffer-alloc-unsafe-1.1.0" 7762 7752 sources."buffer-equals-1.0.4" 7763 - sources."buffer-fill-0.1.1" 7764 - sources."buffer-from-1.0.0" 7753 + sources."buffer-fill-1.0.0" 7754 + sources."buffer-from-1.1.0" 7765 7755 sources."buffer-indexof-1.1.1" 7766 7756 sources."bulk-write-stream-1.1.4" 7767 7757 sources."bytes-3.0.0" ··· 7775 7765 sources."codecs-1.2.1" 7776 7766 sources."color-convert-1.9.1" 7777 7767 sources."color-name-1.1.3" 7778 - sources."colors-1.2.5" 7768 + sources."colors-1.3.0" 7779 7769 sources."combined-stream-1.0.6" 7780 7770 sources."concat-map-0.0.1" 7781 7771 sources."concat-stream-1.6.2" ··· 7783 7773 sources."content-types-0.1.0" 7784 7774 sources."core-util-is-1.0.2" 7785 7775 sources."corsify-2.1.0" 7786 - (sources."cryptiles-3.1.2" // { 7787 - dependencies = [ 7788 - sources."boom-5.2.0" 7789 - ]; 7790 - }) 7791 7776 sources."cycle-1.0.3" 7792 7777 sources."dashdash-1.14.1" 7793 7778 sources."dat-dns-1.3.2" ··· 7819 7804 sources."process-nextick-args-1.0.7" 7820 7805 ]; 7821 7806 }) 7822 - (sources."dat-node-3.5.8" // { 7807 + (sources."dat-node-3.5.9" // { 7823 7808 dependencies = [ 7824 - sources."buffer-alloc-unsafe-0.1.1" 7809 + (sources."discovery-swarm-5.1.1" // { 7810 + dependencies = [ 7811 + sources."debug-2.6.9" 7812 + ]; 7813 + }) 7825 7814 sources."minimist-0.0.8" 7826 7815 sources."process-nextick-args-1.0.7" 7827 7816 sources."pump-1.0.3" 7817 + sources."random-access-memory-3.0.0" 7828 7818 sources."unordered-set-2.0.0" 7829 7819 sources."varint-5.0.0" 7830 7820 ]; ··· 7873 7863 sources."filename-regex-2.0.1" 7874 7864 sources."fill-range-2.2.4" 7875 7865 sources."flat-tree-1.6.0" 7876 - sources."for-each-0.3.2" 7866 + sources."for-each-0.3.3" 7877 7867 sources."for-in-1.0.2" 7878 7868 sources."for-own-0.1.5" 7879 7869 sources."forever-agent-0.6.1" ··· 7888 7878 sources."har-schema-2.0.0" 7889 7879 sources."har-validator-5.0.3" 7890 7880 sources."has-flag-3.0.0" 7891 - sources."hawk-6.0.2" 7892 - sources."hoek-4.2.1" 7893 7881 sources."http-methods-0.1.0" 7894 7882 sources."http-signature-1.2.0" 7895 - (sources."hypercore-6.14.0" // { 7883 + (sources."hypercore-6.15.0" // { 7896 7884 dependencies = [ 7897 7885 sources."varint-5.0.0" 7898 7886 ]; 7899 7887 }) 7900 7888 sources."hypercore-protocol-6.6.4" 7901 - (sources."hyperdrive-9.12.3" // { 7889 + (sources."hyperdrive-9.13.0" // { 7902 7890 dependencies = [ 7903 7891 sources."varint-4.0.1" 7904 7892 ]; ··· 7911 7899 sources."ini-1.3.5" 7912 7900 sources."ip-1.1.5" 7913 7901 sources."is-buffer-1.1.6" 7902 + sources."is-callable-1.1.3" 7914 7903 sources."is-dotfile-1.0.3" 7915 7904 sources."is-equal-shallow-0.1.3" 7916 7905 sources."is-extendable-0.1.1" ··· 7919 7908 sources."is-function-1.0.1" 7920 7909 sources."is-glob-2.0.1" 7921 7910 sources."is-number-2.1.0" 7911 + sources."is-options-1.0.1" 7922 7912 sources."is-posix-bracket-0.1.1" 7923 7913 sources."is-primitive-2.0.0" 7924 7914 sources."is-string-1.0.4" ··· 7956 7946 sources."min-document-2.19.0" 7957 7947 sources."minimatch-3.0.4" 7958 7948 sources."minimist-1.2.0" 7959 - sources."mirror-folder-2.2.0" 7949 + sources."mirror-folder-3.0.0" 7960 7950 sources."mkdirp-0.5.1" 7961 7951 sources."ms-2.0.0" 7962 7952 sources."multi-random-access-2.1.1" 7963 7953 sources."multicast-dns-7.0.0" 7964 7954 sources."multicb-1.2.2" 7965 - sources."multistream-2.1.0" 7955 + sources."multistream-2.1.1" 7966 7956 sources."mute-stream-0.0.7" 7967 7957 sources."mutexify-1.2.0" 7968 7958 sources."nan-2.10.0" ··· 8020 8010 sources."remove-trailing-separator-1.1.0" 8021 8011 sources."repeat-element-1.1.2" 8022 8012 sources."repeat-string-1.6.1" 8023 - sources."request-2.86.0" 8013 + sources."request-2.87.0" 8024 8014 sources."revalidator-0.1.8" 8025 8015 sources."rimraf-2.6.2" 8026 8016 sources."rusha-0.8.13" 8027 8017 sources."safe-buffer-5.1.2" 8018 + sources."safer-buffer-2.1.2" 8028 8019 sources."signed-varint-2.0.1" 8029 8020 sources."simple-sha1-2.1.1" 8030 - sources."siphash24-1.1.0" 8021 + sources."siphash24-1.1.1" 8031 8022 sources."slice-ansi-1.0.0" 8032 - sources."sntp-2.1.0" 8033 8023 sources."sodium-javascript-0.5.5" 8034 8024 sources."sodium-native-2.1.6" 8035 8025 sources."sodium-universal-2.0.0" 8036 - sources."sorted-array-functions-1.1.0" 8026 + sources."sorted-array-functions-1.2.0" 8037 8027 sources."sorted-indexof-1.0.0" 8038 8028 sources."sparse-bitfield-3.0.3" 8039 8029 sources."speedometer-1.0.0" 8040 - sources."sshpk-1.14.1" 8030 + sources."sshpk-1.14.2" 8041 8031 sources."stack-trace-0.0.10" 8042 8032 sources."status-logger-3.1.1" 8043 8033 sources."stream-collector-1.0.1" ··· 8073 8063 sources."unixify-1.0.0" 8074 8064 sources."unordered-array-remove-1.0.2" 8075 8065 sources."unordered-set-1.1.0" 8076 - sources."untildify-3.0.2" 8066 + sources."untildify-3.0.3" 8077 8067 sources."util-deprecate-1.0.2" 8078 8068 sources."utile-0.3.0" 8079 8069 sources."utp-native-1.7.1" ··· 8088 8078 }) 8089 8079 sources."wrap-ansi-3.0.1" 8090 8080 sources."wrappy-1.0.2" 8091 - sources."xhr-2.4.1" 8081 + sources."xhr-2.5.0" 8092 8082 sources."xsalsa20-1.0.2" 8093 8083 sources."xtend-4.0.1" 8094 8084 ]; ··· 8138 8128 mocha = nodeEnv.buildNodePackage { 8139 8129 name = "mocha"; 8140 8130 packageName = "mocha"; 8141 - version = "5.1.1"; 8131 + version = "5.2.0"; 8142 8132 src = fetchurl { 8143 - url = "https://registry.npmjs.org/mocha/-/mocha-5.1.1.tgz"; 8144 - sha512 = "23wcnn35p90xhsc5z94w45s30j756s97acm313h6lacnbliqlaka3drq2xbsi4br8gdkld3r4dc33vglq8kf5jb408c7b2agpyar8lh"; 8133 + url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz"; 8134 + sha512 = "1qqnhamd691pyvx27ql2l5228qx1migp0yys010zdi748pp516hf10sr26w7gx71323a9p0gv69i358xv2w918gpba9xp2w70l211fq"; 8145 8135 }; 8146 8136 dependencies = [ 8147 8137 sources."balanced-match-1.0.0" 8148 8138 sources."brace-expansion-1.1.11" 8149 8139 sources."browser-stdout-1.3.1" 8150 - sources."commander-2.11.0" 8140 + sources."commander-2.15.1" 8151 8141 sources."concat-map-0.0.1" 8152 8142 sources."debug-3.1.0" 8153 8143 sources."diff-3.5.0" 8154 8144 sources."escape-string-regexp-1.0.5" 8155 8145 sources."fs.realpath-1.0.0" 8156 8146 sources."glob-7.1.2" 8157 - sources."growl-1.10.3" 8158 - sources."has-flag-2.0.0" 8147 + sources."growl-1.10.5" 8148 + sources."has-flag-3.0.0" 8159 8149 sources."he-1.1.1" 8160 8150 sources."inflight-1.0.6" 8161 8151 sources."inherits-2.0.3" ··· 8165 8155 sources."ms-2.0.0" 8166 8156 sources."once-1.4.0" 8167 8157 sources."path-is-absolute-1.0.1" 8168 - sources."supports-color-4.4.0" 8158 + sources."supports-color-5.4.0" 8169 8159 sources."wrappy-1.0.2" 8170 8160 ]; 8171 8161 buildInputs = globalBuildInputs; ··· 8211 8201 sources."ajv-5.5.2" 8212 8202 sources."ansi-regex-2.1.1" 8213 8203 sources."aproba-1.2.0" 8214 - sources."are-we-there-yet-1.1.4" 8204 + sources."are-we-there-yet-1.1.5" 8215 8205 sources."asn1-0.2.3" 8216 8206 sources."assert-plus-1.0.0" 8217 8207 sources."asynckit-0.4.0" ··· 8220 8210 sources."balanced-match-1.0.0" 8221 8211 sources."bcrypt-pbkdf-1.0.1" 8222 8212 sources."block-stream-0.0.9" 8223 - sources."boom-4.3.1" 8224 8213 sources."brace-expansion-1.1.11" 8225 8214 sources."caseless-0.12.0" 8226 8215 sources."co-4.6.0" ··· 8229 8218 sources."concat-map-0.0.1" 8230 8219 sources."console-control-strings-1.1.0" 8231 8220 sources."core-util-is-1.0.2" 8232 - (sources."cryptiles-3.1.2" // { 8233 - dependencies = [ 8234 - sources."boom-5.2.0" 8235 - ]; 8236 - }) 8237 8221 sources."dashdash-1.14.1" 8238 8222 sources."delayed-stream-1.0.0" 8239 8223 sources."delegates-1.0.0" ··· 8253 8237 sources."har-schema-2.0.0" 8254 8238 sources."har-validator-5.0.3" 8255 8239 sources."has-unicode-2.0.1" 8256 - sources."hawk-6.0.2" 8257 - sources."hoek-4.2.1" 8258 8240 sources."http-signature-1.2.0" 8259 8241 sources."inflight-1.0.6" 8260 8242 sources."inherits-2.0.3" ··· 8288 8270 sources."punycode-1.4.1" 8289 8271 sources."qs-6.5.2" 8290 8272 sources."readable-stream-2.3.6" 8291 - sources."request-2.86.0" 8273 + sources."request-2.87.0" 8292 8274 sources."rimraf-2.6.2" 8293 8275 sources."safe-buffer-5.1.2" 8276 + sources."safer-buffer-2.1.2" 8294 8277 sources."semver-5.3.0" 8295 8278 sources."set-blocking-2.0.0" 8296 8279 sources."signal-exit-3.0.2" 8297 - sources."sntp-2.1.0" 8298 - sources."sshpk-1.14.1" 8280 + sources."sshpk-1.14.2" 8299 8281 sources."string-width-1.0.2" 8300 8282 sources."string_decoder-1.1.1" 8301 8283 sources."strip-ansi-3.0.1" ··· 8306 8288 sources."util-deprecate-1.0.2" 8307 8289 sources."uuid-3.2.1" 8308 8290 sources."verror-1.10.0" 8309 - sources."which-1.3.0" 8310 - sources."wide-align-1.1.2" 8291 + sources."which-1.3.1" 8292 + sources."wide-align-1.1.3" 8311 8293 sources."wrappy-1.0.2" 8312 8294 ]; 8313 8295 buildInputs = globalBuildInputs; ··· 8348 8330 sources."abbrev-1.1.1" 8349 8331 sources."ansi-regex-2.1.1" 8350 8332 sources."aproba-1.2.0" 8351 - sources."are-we-there-yet-1.1.4" 8333 + sources."are-we-there-yet-1.1.5" 8352 8334 sources."balanced-match-1.0.0" 8353 8335 sources."brace-expansion-1.1.11" 8354 8336 sources."chownr-1.0.1" ··· 8357 8339 sources."console-control-strings-1.1.0" 8358 8340 sources."core-util-is-1.0.2" 8359 8341 sources."debug-2.6.9" 8360 - sources."deep-extend-0.5.1" 8342 + sources."deep-extend-0.6.0" 8361 8343 sources."delegates-1.0.0" 8362 8344 sources."detect-libc-1.0.3" 8363 8345 sources."fs-minipass-1.2.5" ··· 8374 8356 sources."isarray-1.0.0" 8375 8357 sources."minimatch-3.0.4" 8376 8358 sources."minimist-0.0.8" 8377 - sources."minipass-2.3.0" 8359 + sources."minipass-2.3.3" 8378 8360 sources."minizlib-1.1.0" 8379 8361 sources."mkdirp-0.5.1" 8380 8362 sources."ms-2.0.0" ··· 8391 8373 sources."osenv-0.1.5" 8392 8374 sources."path-is-absolute-1.0.1" 8393 8375 sources."process-nextick-args-2.0.0" 8394 - (sources."rc-1.2.7" // { 8376 + (sources."rc-1.2.8" // { 8395 8377 dependencies = [ 8396 8378 sources."minimist-1.2.0" 8397 8379 ]; ··· 8408 8390 sources."string_decoder-1.1.1" 8409 8391 sources."strip-ansi-3.0.1" 8410 8392 sources."strip-json-comments-2.0.1" 8411 - sources."tar-4.4.2" 8393 + sources."tar-4.4.4" 8412 8394 sources."util-deprecate-1.0.2" 8413 - sources."wide-align-1.1.2" 8395 + sources."wide-align-1.1.3" 8414 8396 sources."wrappy-1.0.2" 8415 8397 sources."yallist-3.0.2" 8416 8398 ]; ··· 8426 8408 pnpm = nodeEnv.buildNodePackage { 8427 8409 name = "pnpm"; 8428 8410 packageName = "pnpm"; 8429 - version = "1.43.1"; 8411 + version = "2.2.2"; 8430 8412 src = fetchurl { 8431 - url = "https://registry.npmjs.org/pnpm/-/pnpm-1.43.1.tgz"; 8432 - sha1 = "0766354192aa2d843bcf1ddb277627e5cbc9c1e9"; 8413 + url = "https://registry.npmjs.org/pnpm/-/pnpm-2.2.2.tgz"; 8414 + sha1 = "23d5ed8d7c5133ad46b4ac7b0ee63cbe7bdec688"; 8433 8415 }; 8434 8416 buildInputs = globalBuildInputs; 8435 8417 meta = { ··· 8500 8482 vue-cli = nodeEnv.buildNodePackage { 8501 8483 name = "vue-cli"; 8502 8484 packageName = "vue-cli"; 8503 - version = "2.9.3"; 8485 + version = "2.9.6"; 8504 8486 src = fetchurl { 8505 - url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.3.tgz"; 8506 - sha512 = "1wljsr8srayqg7crbbczi00v31q3dxm3vz4fjcdqasdgsm1ajc9gham6sinsxlraniwg4dn5b1kmpw0nln63cy3v02vib07shyvq2ki"; 8487 + url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz"; 8488 + sha512 = "10ysmrjahrqcnpqwr8x6vapf0wdzaa0g9y143fgpk99p0ggm1536isaasl091y6rrhyfqpyb41k5gpg02zmx24dmz2nfjc9zink815k"; 8507 8489 }; 8508 8490 dependencies = [ 8509 8491 sources."absolute-0.0.1" ··· 8522 8504 sources."arrify-1.0.1" 8523 8505 sources."asn1-0.2.3" 8524 8506 sources."assert-plus-1.0.0" 8525 - sources."async-2.6.0" 8507 + sources."async-2.6.1" 8526 8508 sources."asynckit-0.4.0" 8527 8509 sources."aws-sign2-0.7.0" 8528 8510 sources."aws4-1.7.0" ··· 8531 8513 sources."bcrypt-pbkdf-1.0.1" 8532 8514 sources."bl-1.2.2" 8533 8515 sources."bluebird-3.5.1" 8534 - sources."boom-4.3.1" 8535 8516 sources."brace-expansion-1.1.11" 8536 8517 sources."buffer-3.6.0" 8537 - sources."buffer-alloc-1.1.0" 8538 - sources."buffer-alloc-unsafe-0.1.1" 8518 + sources."buffer-alloc-1.2.0" 8519 + sources."buffer-alloc-unsafe-1.1.0" 8539 8520 sources."buffer-crc32-0.2.13" 8540 - sources."buffer-fill-0.1.1" 8521 + sources."buffer-fill-1.0.0" 8541 8522 sources."builtins-1.0.3" 8542 8523 sources."camelcase-1.2.1" 8543 8524 sources."capture-stack-trace-1.0.0" ··· 8549 8530 }) 8550 8531 sources."center-align-0.1.3" 8551 8532 sources."chalk-2.4.1" 8552 - sources."chardet-0.4.2" 8533 + sources."chardet-0.5.0" 8553 8534 sources."cli-cursor-2.1.0" 8554 8535 sources."cli-spinners-1.3.1" 8555 8536 sources."cli-width-2.2.0" ··· 8569 8550 sources."consolidate-0.14.5" 8570 8551 sources."core-util-is-1.0.2" 8571 8552 sources."create-error-class-3.0.2" 8572 - (sources."cryptiles-3.1.2" // { 8573 - dependencies = [ 8574 - sources."boom-5.2.0" 8575 - ]; 8576 - }) 8577 8553 sources."dashdash-1.14.1" 8578 8554 sources."decamelize-1.2.0" 8579 8555 (sources."decompress-4.2.0" // { ··· 8606 8582 sources."esprima-4.0.0" 8607 8583 sources."extend-3.0.1" 8608 8584 sources."extend-shallow-2.0.1" 8609 - sources."external-editor-2.2.0" 8585 + sources."external-editor-3.0.0" 8610 8586 sources."extsprintf-1.3.0" 8611 8587 sources."fast-deep-equal-1.1.0" 8612 8588 sources."fast-json-stable-stringify-2.0.0" 8613 - sources."fd-slicer-1.0.1" 8589 + sources."fd-slicer-1.1.0" 8614 8590 sources."figures-2.0.0" 8615 8591 sources."file-type-5.2.0" 8616 8592 sources."filename-reserved-regex-2.0.0" ··· 8642 8618 sources."has-generators-1.0.1" 8643 8619 sources."has-symbol-support-x-1.4.2" 8644 8620 sources."has-to-string-tag-x-1.4.1" 8645 - sources."hawk-6.0.2" 8646 - sources."hoek-4.2.1" 8647 8621 sources."http-signature-1.2.0" 8648 8622 sources."iconv-lite-0.4.23" 8649 8623 sources."ieee754-1.1.11" 8650 8624 sources."inflight-1.0.6" 8651 8625 sources."inherits-2.0.3" 8652 8626 sources."ini-1.3.5" 8653 - sources."inquirer-3.3.0" 8627 + sources."inquirer-6.0.0" 8654 8628 sources."is-3.2.1" 8655 8629 sources."is-buffer-1.1.6" 8656 8630 sources."is-extendable-0.1.1" ··· 8666 8640 sources."isarray-1.0.0" 8667 8641 sources."isstream-0.1.2" 8668 8642 sources."isurl-1.0.0" 8669 - sources."js-yaml-3.11.0" 8643 + sources."js-yaml-3.12.0" 8670 8644 sources."jsbn-0.1.1" 8671 8645 sources."json-schema-0.2.3" 8672 8646 sources."json-schema-traverse-0.3.1" ··· 8726 8700 sources."readable-stream-2.3.6" 8727 8701 sources."recursive-readdir-2.2.2" 8728 8702 sources."repeat-string-1.6.1" 8729 - (sources."request-2.86.0" // { 8703 + (sources."request-2.87.0" // { 8730 8704 dependencies = [ 8731 8705 sources."co-4.6.0" 8732 8706 ]; ··· 8735 8709 sources."right-align-0.1.3" 8736 8710 sources."rimraf-2.6.2" 8737 8711 sources."run-async-2.3.0" 8738 - sources."rx-lite-4.0.8" 8739 - sources."rx-lite-aggregates-4.0.8" 8712 + sources."rxjs-6.2.0" 8740 8713 sources."safe-buffer-5.1.2" 8741 8714 sources."safer-buffer-2.1.2" 8742 8715 sources."seek-bzip-1.0.5" 8743 8716 sources."semver-5.5.0" 8744 8717 sources."signal-exit-3.0.2" 8745 - sources."sntp-2.1.0" 8746 8718 sources."source-map-0.4.4" 8747 8719 sources."sprintf-js-1.0.3" 8748 - sources."sshpk-1.14.1" 8720 + sources."sshpk-1.14.2" 8749 8721 sources."stat-mode-0.2.2" 8750 8722 sources."string-width-2.1.1" 8751 8723 sources."string_decoder-1.1.1" ··· 8764 8736 sources."toml-2.3.3" 8765 8737 sources."tough-cookie-2.3.4" 8766 8738 sources."trim-repeated-1.0.0" 8739 + sources."tslib-1.9.2" 8767 8740 sources."tunnel-agent-0.6.0" 8768 8741 sources."tweetnacl-0.14.5" 8769 8742 (sources."uglify-js-2.8.29" // { ··· 8792 8765 sources."xtend-4.0.1" 8793 8766 sources."yaml-js-0.0.8" 8794 8767 sources."yargs-3.10.0" 8795 - sources."yauzl-2.9.1" 8768 + sources."yauzl-2.9.2" 8796 8769 ]; 8797 8770 buildInputs = globalBuildInputs; 8798 8771 meta = { ··· 8872 8845 sources."is-extendable-0.1.1" 8873 8846 ]; 8874 8847 }) 8875 - sources."buffer-from-1.0.0" 8848 + sources."buffer-from-1.1.0" 8876 8849 sources."busboy-0.2.14" 8877 8850 sources."bytes-1.0.0" 8878 8851 sources."cache-base-1.0.1" ··· 8913 8886 sources."configstore-3.1.2" 8914 8887 sources."connect-3.6.6" 8915 8888 sources."content-type-1.0.4" 8916 - sources."cookiejar-2.1.1" 8889 + sources."cookiejar-2.1.2" 8917 8890 sources."copy-descriptor-0.1.1" 8918 8891 sources."core-util-is-1.0.2" 8919 8892 sources."create-error-class-3.0.2" ··· 8924 8897 sources."debug-2.6.9" 8925 8898 sources."decamelize-1.2.0" 8926 8899 sources."decode-uri-component-0.2.0" 8927 - sources."deep-extend-0.5.1" 8900 + sources."deep-extend-0.6.0" 8928 8901 sources."define-property-2.0.2" 8929 8902 sources."delayed-stream-1.0.0" 8930 8903 sources."depd-1.1.2" ··· 9028 9001 sources."mkdirp-0.3.0" 9029 9002 ]; 9030 9003 }) 9031 - sources."js-yaml-3.11.0" 9004 + sources."js-yaml-3.12.0" 9032 9005 (sources."json-refs-2.1.7" // { 9033 9006 dependencies = [ 9034 9007 sources."debug-3.1.0" ··· 9122 9095 sources."nan-2.10.0" 9123 9096 sources."nanomatch-1.2.9" 9124 9097 sources."native-promise-only-0.8.1" 9125 - (sources."nodemon-1.17.4" // { 9098 + (sources."nodemon-1.17.5" // { 9126 9099 dependencies = [ 9127 9100 sources."ansi-regex-3.0.0" 9128 9101 sources."ansi-styles-3.2.1" ··· 9186 9159 sources."ps-tree-1.1.0" 9187 9160 sources."pseudomap-1.0.2" 9188 9161 sources."pstree.remy-1.1.0" 9189 - sources."punycode-2.1.0" 9162 + sources."punycode-2.1.1" 9190 9163 sources."qs-4.0.0" 9191 9164 sources."range-parser-1.2.0" 9192 9165 (sources."raw-body-2.0.2" // { ··· 9194 9167 sources."bytes-2.1.0" 9195 9168 ]; 9196 9169 }) 9197 - sources."rc-1.2.7" 9170 + sources."rc-1.2.8" 9198 9171 sources."readable-stream-2.3.6" 9199 9172 sources."readdirp-2.1.0" 9200 9173 sources."readline2-1.0.1" ··· 9358 9331 sources."util-deprecate-1.0.2" 9359 9332 sources."utils-merge-1.0.1" 9360 9333 sources."valid-url-1.0.9" 9361 - sources."validator-10.2.0" 9362 - sources."which-1.3.0" 9334 + sources."validator-10.3.0" 9335 + sources."which-1.3.1" 9363 9336 sources."widest-line-2.0.0" 9364 9337 sources."window-size-0.1.0" 9365 9338 sources."wordwrap-0.0.3" ··· 9383 9356 npm = nodeEnv.buildNodePackage { 9384 9357 name = "npm"; 9385 9358 packageName = "npm"; 9386 - version = "6.0.1"; 9359 + version = "6.1.0"; 9387 9360 src = fetchurl { 9388 - url = "https://registry.npmjs.org/npm/-/npm-6.0.1.tgz"; 9389 - sha512 = "03x8626d7ngp160j0lx7vmzpjglvlqbz4gf9kmdndaxna9h81zr8rjhad3jcdkr9j1nnlc1rsr7acsdny5ykl3dwilq0p486zr9cyrp"; 9361 + url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz"; 9362 + sha512 = "3bhkx1ynzp39m6w5mnwfimc25arlpxgs9vgk0w7ai8zw0q6kxyljj4xjvkyxg7wv1f8jbj3k31ifgvy0kff4p3sbp5li53ls851qzvv"; 9390 9363 }; 9391 9364 buildInputs = globalBuildInputs; 9392 9365 meta = { ··· 9400 9373 three = nodeEnv.buildNodePackage { 9401 9374 name = "three"; 9402 9375 packageName = "three"; 9403 - version = "0.92.0"; 9376 + version = "0.93.0"; 9404 9377 src = fetchurl { 9405 - url = "https://registry.npmjs.org/three/-/three-0.92.0.tgz"; 9406 - sha1 = "8d3d1f5af890e62da7f4cb45d20c09fa51057dcd"; 9378 + url = "https://registry.npmjs.org/three/-/three-0.93.0.tgz"; 9379 + sha1 = "3fd6c367ef4554abbb6e16ad69936283e895c123"; 9407 9380 }; 9408 9381 buildInputs = globalBuildInputs; 9409 9382 meta = {
+2
pkgs/development/r-modules/default.nix
··· 397 397 RPushbullet = [ pkgs.which ]; 398 398 qtpaint = [ pkgs.cmake ]; 399 399 qtbase = [ pkgs.cmake pkgs.perl ]; 400 + RcppEigen = [ pkgs.libiconv ]; 400 401 RCurl = [ pkgs.curl.dev ]; 401 402 R2SWF = [ pkgs.pkgconfig ]; 402 403 rggobi = [ pkgs.pkgconfig ]; ··· 438 439 nlme = [ pkgs.libiconv ]; 439 440 Matrix = [ pkgs.libiconv ]; 440 441 mgcv = [ pkgs.libiconv ]; 442 + igraph = [ pkgs.libiconv ]; 441 443 }; 442 444 443 445 packagesRequireingX = [
+2 -2
pkgs/development/tools/godot/default.nix
··· 10 10 }; 11 11 in stdenv.mkDerivation rec { 12 12 name = "godot-${version}"; 13 - version = "3.0.2"; 13 + version = "3.0.3"; 14 14 15 15 src = fetchFromGitHub { 16 16 owner = "godotengine"; 17 17 repo = "godot"; 18 18 rev = "${version}-stable"; 19 - sha256 = "1ca1zznb7qqn4vf2nfwb8nww5x0k8fc4lwjvgydr6nr2mn70xka4"; 19 + sha256 = "060jb5jip1si32a0sm1mmkvy3nldl1cjb82kjh5wihzllph93sxd"; 20 20 }; 21 21 22 22 nativeBuildInputs = [ pkgconfig ];
+3 -3
pkgs/development/tools/misc/doclifter/default.nix
··· 1 1 {stdenv, fetchurl, python}: 2 2 3 3 stdenv.mkDerivation { 4 - name = "doclifter-2.17"; 4 + name = "doclifter-2.18"; 5 5 src = fetchurl { 6 - url = http://www.catb.org/~esr/doclifter/doclifter-2.17.tar.gz; 7 - sha256 = "1m8yfjbl8wzcml9q4k7m1crwid0a14r07fqf33bmmgx1zpjk8kmv"; 6 + url = http://www.catb.org/~esr/doclifter/doclifter-2.18.tar.gz; 7 + sha256 = "0g39lbml7dclm2nb20j4ffzhq28226qiwxq1w37p7mpqijm7x3hw"; 8 8 }; 9 9 buildInputs = [ python ]; 10 10
+2 -2
pkgs/development/tools/pipenv/default.nix
··· 2 2 with python3Packages; buildPythonApplication rec { 3 3 name = "${pname}-${version}"; 4 4 pname = "pipenv"; 5 - version = "11.9.0"; 5 + version = "2018.5.18"; 6 6 7 7 src = fetchPypi { 8 8 inherit pname version; 9 - sha256 = "7b3c52fb57e17ca61b6141b75c8f5ba61a95c713ca470754240f7f1dbd0a4968"; 9 + sha256 = "1knyknmykjj7gixdpfyns77sv4mizl68addk09ajmw9z5aqaif84"; 10 10 }; 11 11 12 12 LC_ALL = "en_US.UTF-8";
+10
pkgs/development/tools/profiling/sysprof/default.nix
··· 1 1 { stdenv 2 2 , desktop-file-utils 3 3 , fetchurl 4 + , fetchpatch 4 5 , gettext 5 6 , glib 6 7 , gtk3 ··· 27 28 url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz"; 28 29 sha256 = "05534dvwrzrmryb4y2m1sb2q0r8i6nr88pzjg7xs5nr9zq8a87p3"; 29 30 }; 31 + 32 + patches = [ 33 + # fix includedir in pkgconfig 34 + # https://gitlab.gnome.org/GNOME/sysprof/merge_requests/2 35 + (fetchpatch { 36 + url = https://gitlab.gnome.org/GNOME/sysprof/commit/d19a496bb55b8646e866df8bb07bc6ad3c55eaf2.patch; 37 + sha256 = "15w6di9c4n1gsymkpk413f5f9gd3iq23wdkzs01y9xrxwqpm7hm4"; 38 + }) 39 + ]; 30 40 31 41 nativeBuildInputs = [ desktop-file-utils gettext itstool libxml2 meson ninja pkgconfig shared-mime-info wrapGAppsHook ]; 32 42 buildInputs = [ glib gtk3 pango polkit systemd.dev systemd.lib ];
+2 -2
pkgs/os-specific/linux/eventstat/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "eventstat-${version}"; 5 - version = "0.04.03"; 5 + version = "0.04.04"; 6 6 src = fetchzip { 7 7 url = "http://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz"; 8 - sha256 = "0yv7rpdg07rihw8iilvigib963nxf16mn26hzlb6qd1wv54k6dbr"; 8 + sha256 = "034xpdr3ip4w9k713wjc45x66k3nz6wg9wkzmchrjifxk4dldbd8"; 9 9 }; 10 10 buildInputs = [ ncurses ]; 11 11 installFlags = [ "DESTDIR=$(out)" ];
+3 -8
pkgs/servers/mattermost/default.nix
··· 1 1 { stdenv, fetchurl, fetchFromGitHub, buildGoPackage, buildEnv }: 2 2 3 3 let 4 - version = "4.10.0"; 4 + version = "5.0.0"; 5 5 6 6 mattermost-server = buildGoPackage rec { 7 7 name = "mattermost-server-${version}"; ··· 10 10 owner = "mattermost"; 11 11 repo = "mattermost-server"; 12 12 rev = "v${version}"; 13 - sha256 = "02isw8qapp35pgriy4w1ar1ppvgc5a10j550hjbc1mylnhzkg1jf"; 13 + sha256 = "12wiw8k5is78ppazrf26y2xq73kwbafa9w75wjnb1839v2k9sark"; 14 14 }; 15 15 16 16 goPackagePath = "github.com/mattermost/mattermost-server"; ··· 20 20 -X ${goPackagePath}/model.BuildNumber=nixpkgs-${version} 21 21 ''; 22 22 23 - postInstall = '' 24 - ln -s $bin/bin/mattermost-server $bin/bin/platform 25 - ln -s $bin/bin/mattermost-server $bin/bin/mattermost-platform 26 - ''; 27 - 28 23 }; 29 24 30 25 mattermost-webapp = stdenv.mkDerivation { ··· 32 27 33 28 src = fetchurl { 34 29 url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz"; 35 - sha256 = "0pfj2dxl4qrv4w6yj0385nw0fa4flcg95kkahs0arwhan5bgifl5"; 30 + sha256 = "1pal65di6w9idf3rwxh77la1v816h8kama1ilkbs40cpp2vazw3b"; 36 31 }; 37 32 38 33 installPhase = ''
+2 -2
pkgs/servers/sql/monetdb/default.nix
··· 3 3 }: 4 4 5 5 let 6 - version = "11.29.3"; 6 + version = "11.29.7"; 7 7 in stdenv.mkDerivation rec { 8 8 9 9 name = "monetdb-${version}"; 10 10 11 11 src = fetchurl { 12 12 url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2"; 13 - sha256 = "18l4jkkryki5az5n7gnalfdxz6ibnkg3q2z4cwh1010b313wqi8s"; 13 + sha256 = "19f9zfg94k8hr9qc7jp1iwl8av08mibzgmid0gbqplyhf6x1j0r7"; 14 14 }; 15 15 16 16 nativeBuildInputs = [ pkgconfig ];
+3 -3
pkgs/tools/admin/google-cloud-sdk/default.nix
··· 19 19 sources = name: system: { 20 20 x86_64-darwin = { 21 21 url = "${baseUrl}/${name}-darwin-x86_64.tar.gz"; 22 - sha256 = "0c4jj580f7z6phiw4zhd32dlf4inkrxy3cig6ng66fi4zi6vnpc9"; 22 + sha256 = "0fdcd5d63e231443b9e032de4e2c2be9e4f1c766a25054ad93410f5213e45645"; 23 23 }; 24 24 25 25 x86_64-linux = { 26 26 url = "${baseUrl}/${name}-linux-x86_64.tar.gz"; 27 - sha256 = "0rblb0akwdzr5i8al0dcz482xmx1xdnjnzgqywjvwd8fzdyzq7bp"; 27 + sha256 = "d39293914b2e969bfe18dd19eb77ba96d283995f8cf1e5d7ba6ac712a3c9479a"; 28 28 }; 29 29 }.${system}; 30 30 31 31 in stdenv.mkDerivation rec { 32 32 name = "google-cloud-sdk-${version}"; 33 - version = "190.0.1"; 33 + version = "206.0.0"; 34 34 35 35 src = fetchurl (sources name stdenv.system); 36 36
+2 -2
pkgs/tools/audio/abcmidi/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "abcMIDI-${version}"; 5 - version = "2018.05.02"; 5 + version = "2018.06.13"; 6 6 7 7 src = fetchzip { 8 8 url = "http://ifdo.ca/~seymour/runabc/${name}.zip"; 9 - sha256 = "0pva0kwkwdrq4mfgiz389dhaqv66csqjaddirzxmhvvi6qji5d24"; 9 + sha256 = "0mmr0wfdwx9vfz17gp0arspv835l5gka78hm5hkri4h3cvxpflfy"; 10 10 }; 11 11 12 12 # There is also a file called "makefile" which seems to be preferred by the standard build phase
+2 -2
pkgs/tools/misc/cutecom/default.nix
··· 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "cutecom-${version}"; 5 - version = "0.40.0"; 5 + version = "0.45.0"; 6 6 src = fetchFromGitHub { 7 7 owner = "neundorf"; 8 8 repo = "CuteCom"; 9 9 rev = "v${version}"; 10 - sha256 = "1bn6vndqlvn73riq6p0nanmcl35ja9gsil5hvfpf509r7i8gx4ds"; 10 + sha256 = "07h1r7bcz86fvcvxq6g5zyh7fsginx27jbp81a7hjhhhn6v0dsmh"; 11 11 }; 12 12 13 13 preConfigure = ''
+2 -2
pkgs/tools/misc/gams/default.nix
··· 17 17 mkdir -p "$out/bin" "$out/share/gams" 18 18 cp -a * "$out/share/gams" 19 19 20 - cp ${licenseFile} $out/share/gamslice.txt 20 + cp ${licenseFile} $out/share/gams/gamslice.txt 21 21 '' + stdenv.lib.optionalString (optgamsFile != null) '' 22 - cp ${optgamsFile} $out/share/optgams.def 22 + cp ${optgamsFile} $out/share/gams/optgams.def 23 23 ln -s $out/share/gams/optgams.def $out/bin/optgams.def 24 24 ''; 25 25
+5 -5
pkgs/tools/security/gopass/default.nix
··· 1 1 { stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }: 2 2 3 3 buildGoPackage rec { 4 - version = "1.7.1"; 4 + version = "1.8.1"; 5 5 name = "gopass-${version}"; 6 6 7 - goPackagePath = "github.com/justwatchcom/gopass"; 7 + goPackagePath = "github.com/gopasspw/gopass"; 8 8 9 9 nativeBuildInputs = [ makeWrapper ]; 10 10 11 11 src = fetchFromGitHub { 12 - owner = "justwatchcom"; 12 + owner = "gopasspw"; 13 13 repo = "gopass"; 14 14 rev = "v${version}"; 15 - sha256 = "01cif6a2xa3c8nki0pas9mywdxs8d9niv8z13mii5hcfqvm0s7aw"; 15 + sha256 = "1b3caydxz3zf1ky6qvkx0dgidlalvpmga6cjh3gqc269n00lwh6w"; 16 16 }; 17 17 18 18 wrapperPath = with stdenv.lib; makeBinPath ([ ··· 38 38 39 39 meta = with stdenv.lib; { 40 40 description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go."; 41 - homepage = https://www.justwatch.com/gopass/; 41 + homepage = https://www.gopass.pw/; 42 42 license = licenses.mit; 43 43 maintainers = with maintainers; [ andir ]; 44 44 platforms = platforms.unix;
+3 -1
pkgs/top-level/all-packages.nix
··· 17423 17423 17424 17424 osmctools = callPackage ../applications/misc/osmctools { }; 17425 17425 17426 + owamp = callPackage ../applications/networking/owamp { }; 17427 + 17426 17428 vivaldi = callPackage ../applications/networking/browsers/vivaldi {}; 17427 17429 17428 17430 vivaldi-ffmpeg-codecs = callPackage ../applications/networking/browsers/vivaldi/ffmpeg-codecs.nix {}; ··· 18230 18232 gconf = gnome2.GConf; 18231 18233 }; 18232 18234 18233 - teamspeak_client = libsForQt59.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; 18235 + teamspeak_client = libsForQt5.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { }; 18234 18236 teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { }; 18235 18237 18236 18238 uaskjuggler = callPackage ../applications/misc/taskjuggler { };