diff --git a/nixos/modules/module-list.nix b/nixos/modules/module-list.nix
index cd594b934b8..193ef0d1c96 100644
--- a/nixos/modules/module-list.nix
+++ b/nixos/modules/module-list.nix
@@ -541,6 +541,7 @@
./services/networking/openntpd.nix
./services/networking/openvpn.nix
./services/networking/ostinato.nix
+ ./services/networking/owamp.nix
./services/networking/pdnsd.nix
./services/networking/polipo.nix
./services/networking/powerdns.nix
diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix
index e3691843e17..7b094fc1420 100644
--- a/nixos/modules/rename.nix
+++ b/nixos/modules/rename.nix
@@ -200,6 +200,12 @@ with lib;
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "forceAutohint" ] [ "fonts" "fontconfig" "forceAutohint" ])
(mkRenamedOptionModule [ "fonts" "fontconfig" "ultimate" "renderMonoTTFAsBitmap" ] [ "fonts" "fontconfig" "renderMonoTTFAsBitmap" ])
+ # postgresqlBackup
+ (mkRemovedOptionModule [ "services" "postgresqlBackup" "period" ] ''
+ A systemd timer is now used instead of cron.
+ The starting time can be configured via services.postgresqlBackup.startAt.
+ '')
+
# Profile splitting
(mkRenamedOptionModule [ "virtualization" "growPartition" ] [ "boot" "growPartition" ])
diff --git a/nixos/modules/services/backup/postgresql-backup.nix b/nixos/modules/services/backup/postgresql-backup.nix
index 4a5ebebc682..2ec78ce6f2c 100644
--- a/nixos/modules/services/backup/postgresql-backup.nix
+++ b/nixos/modules/services/backup/postgresql-backup.nix
@@ -3,18 +3,41 @@
with lib;
let
- inherit (pkgs) gzip;
- location = config.services.postgresqlBackup.location;
+ cfg = config.services.postgresqlBackup;
- postgresqlBackupCron = db:
- ''
- ${config.services.postgresqlBackup.period} root ${config.services.postgresql.package}/bin/pg_dump ${db} | ${gzip}/bin/gzip -c > ${location}/${db}.gz
- '';
+ postgresqlBackupService = db :
+ {
+ enable = true;
-in
+ description = "Backup of database ${db}";
-{
+ requires = [ "postgresql.service" ];
+
+ preStart = ''
+ mkdir -m 0700 -p ${cfg.location}
+ chown postgres ${cfg.location}
+ '';
+
+ script = ''
+ if [ -e ${cfg.location}/${db}.sql.gz ]; then
+ ${pkgs.coreutils}/bin/mv ${cfg.location}/${db}.sql.gz ${cfg.location}/${db}.prev.sql.gz
+ fi
+
+ ${config.services.postgresql.package}/bin/pg_dump ${cfg.pgdumpOptions} ${db} | \
+ ${pkgs.gzip}/bin/gzip -c > ${cfg.location}/${db}.sql.gz
+ '';
+
+ serviceConfig = {
+ Type = "oneshot";
+ PermissionsStartOnly = "true";
+ User = "postgres";
+ };
+
+ startAt = cfg.startAt;
+ };
+
+in {
options = {
@@ -27,10 +50,10 @@ in
'';
};
- period = mkOption {
- default = "15 01 * * *";
+ startAt = mkOption {
+ default = "*-*-* 01:15:00";
description = ''
- This option defines (in the format used by cron) when the
+ This option defines (see systemd.time for format) when the
databases should be dumped.
The default is to update at 01:15 (at night) every day.
'';
@@ -49,18 +72,23 @@ in
Location to put the gzipped PostgreSQL database dumps.
'';
};
+
+ pgdumpOptions = mkOption {
+ type = types.string;
+ default = "-Cbo";
+ description = ''
+ Command line options for pg_dump.
+ '';
+ };
};
};
config = mkIf config.services.postgresqlBackup.enable {
- services.cron.systemCronJobs = map postgresqlBackupCron config.services.postgresqlBackup.databases;
- system.activationScripts.postgresqlBackup = stringAfter [ "stdio" "users" ]
- ''
- mkdir -m 0700 -p ${config.services.postgresqlBackup.location}
- chown root ${config.services.postgresqlBackup.location}
- '';
+ systemd.services = listToAttrs (map (db : {
+ name = "postgresqlBackup-${db}";
+ value = postgresqlBackupService db; } ) cfg.databases);
};
}
diff --git a/nixos/modules/services/misc/docker-registry.nix b/nixos/modules/services/misc/docker-registry.nix
index 45931cb42b5..f628da4ac4c 100644
--- a/nixos/modules/services/misc/docker-registry.nix
+++ b/nixos/modules/services/misc/docker-registry.nix
@@ -42,7 +42,7 @@ let
};
};
- configFile = pkgs.writeText "docker-registry-config.yml" (builtins.toJSON (registryConfig // cfg.extraConfig));
+ configFile = pkgs.writeText "docker-registry-config.yml" (builtins.toJSON (recursiveUpdate registryConfig cfg.extraConfig));
in {
options.services.dockerRegistry = {
@@ -91,7 +91,7 @@ in {
Docker extra registry configuration via environment variables.
'';
default = {};
- type = types.attrsOf types.str;
+ type = types.attrs;
};
enableGarbageCollect = mkEnableOption "garbage collect";
@@ -120,6 +120,7 @@ in {
serviceConfig = {
User = "docker-registry";
WorkingDirectory = cfg.storagePath;
+ AmbientCapabilities = mkIf (cfg.port < 1024) "cap_net_bind_service";
};
};
diff --git a/nixos/modules/services/networking/owamp.nix b/nixos/modules/services/networking/owamp.nix
new file mode 100644
index 00000000000..a0d3e70d8e5
--- /dev/null
+++ b/nixos/modules/services/networking/owamp.nix
@@ -0,0 +1,47 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+
+let
+ cfg = config.services.owamp;
+in
+{
+
+ ###### interface
+
+ options = {
+ services.owamp.enable = mkEnableOption ''Enable OWAMP server'';
+ };
+
+
+ ###### implementation
+
+ config = mkIf cfg.enable {
+ users.extraUsers = singleton {
+ name = "owamp";
+ group = "owamp";
+ description = "Owamp daemon";
+ };
+
+ users.extraGroups = singleton {
+ name = "owamp";
+ };
+
+ systemd.services.owamp = {
+ description = "Owamp server";
+ wantedBy = [ "multi-user.target" ];
+
+ serviceConfig = {
+ ExecStart="${pkgs.owamp}/bin/owampd -R /run/owamp -d /run/owamp -v -Z ";
+ PrivateTmp = true;
+ Restart = "always";
+ Type="simple";
+ User = "owamp";
+ Group = "owamp";
+ RuntimeDirectory = "owamp";
+ StateDirectory = "owamp";
+ AmbientCapabilities = "cap_net_bind_service";
+ };
+ };
+ };
+}
diff --git a/nixos/modules/services/web-apps/mattermost.nix b/nixos/modules/services/web-apps/mattermost.nix
index 277cbe35b78..96792c47cd2 100644
--- a/nixos/modules/services/web-apps/mattermost.nix
+++ b/nixos/modules/services/web-apps/mattermost.nix
@@ -25,7 +25,7 @@ in
{
options = {
services.mattermost = {
- enable = mkEnableOption "Mattermost chat platform";
+ enable = mkEnableOption "Mattermost chat server";
statePath = mkOption {
type = types.str;
@@ -167,7 +167,7 @@ in
'';
systemd.services.mattermost = {
- description = "Mattermost chat platform service";
+ description = "Mattermost chat service";
wantedBy = [ "multi-user.target" ];
after = [ "network.target" "postgresql.service" ];
@@ -201,7 +201,7 @@ in
PermissionsStartOnly = true;
User = cfg.user;
Group = cfg.group;
- ExecStart = "${pkgs.mattermost}/bin/mattermost-platform";
+ ExecStart = "${pkgs.mattermost}/bin/mattermost";
WorkingDirectory = "${cfg.statePath}";
Restart = "always";
RestartSec = "10";
diff --git a/nixos/release.nix b/nixos/release.nix
index 0fa8b22cc89..881c9bafb4c 100644
--- a/nixos/release.nix
+++ b/nixos/release.nix
@@ -398,6 +398,7 @@ in rec {
tests.switchTest = callTest tests/switch-test.nix {};
tests.taskserver = callTest tests/taskserver.nix {};
tests.tomcat = callTest tests/tomcat.nix {};
+ tests.tor = callTest tests/tor.nix {};
tests.transmission = callTest tests/transmission.nix {};
tests.udisks2 = callTest tests/udisks2.nix {};
tests.vault = callTest tests/vault.nix {};
diff --git a/nixos/tests/postgresql.nix b/nixos/tests/postgresql.nix
index 0ce37b55bb7..2381939552e 100644
--- a/nixos/tests/postgresql.nix
+++ b/nixos/tests/postgresql.nix
@@ -26,6 +26,9 @@ let
{
services.postgresql.package=postgresql-package;
services.postgresql.enable = true;
+
+ services.postgresqlBackup.enable = true;
+ services.postgresqlBackup.databases = [ "postgres" ];
};
testScript = ''
@@ -46,6 +49,10 @@ let
$machine->succeed(check_count("SELECT * FROM sth;", 5));
$machine->fail(check_count("SELECT * FROM sth;", 4));
$machine->succeed(check_count("SELECT xpath(\'/test/text()\', doc) FROM xmltest;", 1));
+
+ # Check backup service
+ $machine->succeed("systemctl start postgresqlBackup-postgres.service");
+ $machine->succeed("zcat /var/backup/postgresql/postgres.sql.gz | grep 'ok'");
$machine->shutdown;
'';
diff --git a/nixos/tests/tor.nix b/nixos/tests/tor.nix
new file mode 100644
index 00000000000..24d46a03897
--- /dev/null
+++ b/nixos/tests/tor.nix
@@ -0,0 +1,28 @@
+import ./make-test.nix ({ lib, ... }: with lib;
+
+rec {
+ name = "tor";
+ meta.maintainers = with maintainers; [ joachifm ];
+
+ common =
+ { config, ... }:
+ { boot.kernelParams = [ "audit=0" "apparmor=0" "quiet" ];
+ networking.firewall.enable = false;
+ networking.useDHCP = false;
+ };
+
+ nodes.client =
+ { config, pkgs, ... }:
+ { imports = [ common ];
+ environment.systemPackages = with pkgs; [ netcat ];
+ services.tor.enable = true;
+ services.tor.client.enable = true;
+ services.tor.controlPort = 9051;
+ };
+
+ testScript = ''
+ $client->waitForUnit("tor.service");
+ $client->waitForOpenPort(9051);
+ $client->succeed("echo GETINFO version | nc 127.0.0.1 9051") =~ /514 Authentication required./ or die;
+ '';
+})
diff --git a/pkgs/applications/altcoins/parity/default.nix b/pkgs/applications/altcoins/parity/default.nix
index 3ba2495d45a..707889b23ee 100644
--- a/pkgs/applications/altcoins/parity/default.nix
+++ b/pkgs/applications/altcoins/parity/default.nix
@@ -1,7 +1,7 @@
let
- version = "1.10.6";
- sha256 = "1x2sm262z8fdkx8zin6r8nwbb7znziw9nm224pr6ap3p0jmv7fcq";
- cargoSha256 = "1wf1lh32f9dlhv810gdcssv92g1yximx09lw63m0mxcjbn9813bs";
+ version = "1.10.7";
+ sha256 = "0syhvr4n9zyxhx20xln7sf70ljzj6ab36xjz4710ivnwwz2pjajf";
+ cargoSha256 = "0zwk8xv71s7xkwvssh27772qfb23yhq5jlcny617qik6bwpcdh6b";
patches = [ ./patches/vendored-sources-1.10.patch ];
in
import ./parity.nix { inherit version sha256 cargoSha256 patches; }
diff --git a/pkgs/applications/editors/eclipse/plugins.nix b/pkgs/applications/editors/eclipse/plugins.nix
index f381064c92c..801583299ab 100644
--- a/pkgs/applications/editors/eclipse/plugins.nix
+++ b/pkgs/applications/editors/eclipse/plugins.nix
@@ -532,11 +532,12 @@ rec {
spotbugs = buildEclipseUpdateSite rec {
name = "spotbugs-${version}";
- version = "3.1.3";
+ version = "3.1.5";
src = fetchzip {
+ stripRoot = false;
url = "https://github.com/spotbugs/spotbugs/releases/download/${version}/eclipsePlugin.zip";
- sha256 = "01zrmk497bxzqgwgbpsvi5iz5qk9b4q949h4918abm54zvkgndlg";
+ sha256 = "0fxdirz6ik9rqykm2lcr720apsaqgngr4c7q793rjb9b3bn30c85";
};
meta = with stdenv.lib; {
diff --git a/pkgs/applications/editors/emacs/macport.nix b/pkgs/applications/editors/emacs/macport.nix
index 4cdbdfb78f1..8f74aca4488 100644
--- a/pkgs/applications/editors/emacs/macport.nix
+++ b/pkgs/applications/editors/emacs/macport.nix
@@ -75,7 +75,7 @@ stdenv.mkDerivation rec {
doCheck = true;
meta = with stdenv.lib; {
- description = "GNU Emacs 25, the extensible, customizable text editor";
+ description = "The extensible, customizable text editor";
homepage = http://www.gnu.org/software/emacs/;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ jwiegley matthewbauer ];
@@ -97,7 +97,7 @@ stdenv.mkDerivation rec {
extensions are distributed with GNU Emacs; others are available
separately.
- This is "Mac port" addition to GNU Emacs 25. This provides a native
+ This is the "Mac port" addition to GNU Emacs 26. This provides a native
GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later
already contain the official GUI support via the NS (Cocoa) port for
Mac OS X 10.4 and later. So if it is good enough for you, then you
diff --git a/pkgs/applications/misc/limesuite/default.nix b/pkgs/applications/misc/limesuite/default.nix
index 4599fab0c6d..070073ea3e2 100644
--- a/pkgs/applications/misc/limesuite/default.nix
+++ b/pkgs/applications/misc/limesuite/default.nix
@@ -4,7 +4,7 @@
} :
let
- version = "18.04.1";
+ version = "18.06.0";
in stdenv.mkDerivation {
name = "limesuite-${version}";
@@ -13,7 +13,7 @@ in stdenv.mkDerivation {
owner = "myriadrf";
repo = "LimeSuite";
rev = "v${version}";
- sha256 = "1aaqnwif1j045hvj011k5dyqxgxx72h33r4al74h5f8al81zvzj9";
+ sha256 = "0j6mxlvij2k6ib1d9jwzvilmqgm1h0q7wy9sf8a6bvidwlphvy25";
};
nativeBuildInputs = [ cmake ];
diff --git a/pkgs/applications/misc/tasknc/default.nix b/pkgs/applications/misc/tasknc/default.nix
index 3f395696161..e44690a5bd7 100644
--- a/pkgs/applications/misc/tasknc/default.nix
+++ b/pkgs/applications/misc/tasknc/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchFromGitHub, makeWrapper, perl, ncurses, taskwarrior }:
+{ stdenv, fetchFromGitHub, makeWrapper, perl, ncurses5, taskwarrior }:
stdenv.mkDerivation rec {
version = "2017-05-15";
@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
perl # For generating the man pages with pod2man
];
- buildInputs = [ ncurses ];
+ buildInputs = [ ncurses5 ];
hardeningDisable = [ "format" ];
diff --git a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
index 1cf7243476c..9ac3d870312 100644
--- a/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
+++ b/pkgs/applications/networking/instant-messengers/skypeforlinux/default.nix
@@ -1,12 +1,12 @@
{ stdenv, fetchurl, dpkg, makeWrapper
, alsaLib, atk, cairo, cups, curl, dbus, expat, fontconfig, freetype, gdk_pixbuf, glib, glibc, gnome3
-, gtk2, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, xorg }:
+, gtk3, libnotify, libpulseaudio, libsecret, libv4l, nspr, nss, pango, systemd, xorg }:
let
# Please keep the version x.y.0.z and do not update to x.y.76.z because the
# source of the latter disappears much faster.
- version = "8.18.0.6";
+ version = "8.24.0.2";
rpath = stdenv.lib.makeLibraryPath [
alsaLib
@@ -24,8 +24,7 @@ let
gnome3.gconf
gdk_pixbuf
- gtk2
-
+ gtk3
gnome3.gnome-keyring
@@ -57,7 +56,7 @@ let
if stdenv.system == "x86_64-linux" then
fetchurl {
url = "https://repo.skype.com/deb/pool/main/s/skypeforlinux/skypeforlinux_${version}_amd64.deb";
- sha256 = "193icz1s385d25qzm5vx58h66m4hfwwmkavn0p3w6631gj617hig";
+ sha256 = "079bv0wilwwd9gqykcyfs4bj8za140788dxi058k4275h1jlvrww";
}
else
throw "Skype for linux is not supported on ${stdenv.system}";
diff --git a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
index 23d2e640b4f..7a50536cc0f 100644
--- a/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
+++ b/pkgs/applications/networking/instant-messengers/teamspeak/client.nix
@@ -31,7 +31,7 @@ in
stdenv.mkDerivation rec {
name = "teamspeak-client-${version}";
- version = "3.1.8";
+ version = "3.1.10";
src = fetchurl {
urls = [
@@ -39,8 +39,8 @@ stdenv.mkDerivation rec {
"http://teamspeak.gameserver.gamed.de/ts3/releases/${version}/TeamSpeak3-Client-linux_${arch}-${version}.run"
];
sha256 = if stdenv.is64bit
- then "0yav71sfklqg2k3ayd0bllsixd486l0587s5ygjlc9gnchw3zg6z"
- else "1agf6jf5hkyxazxqcnvcjfb263p5532ahi7h4rkifnnvqay36v5i";
+ then "17gylj5pxba14c1c98b5rdyyb87c58z8l8yrd1iw5k293wf7iwv3"
+ else "1bkn3ykrc73wr02qaqwpr4garlqm3424y3dm2fjx6lqcfzm3ms2k";
};
# grab the plugin sdk for the desktop icon
diff --git a/pkgs/applications/networking/owamp/default.nix b/pkgs/applications/networking/owamp/default.nix
new file mode 100644
index 00000000000..293c6716483
--- /dev/null
+++ b/pkgs/applications/networking/owamp/default.nix
@@ -0,0 +1,28 @@
+{stdenv, fetchurl, fetchFromGitHub
+, autoconf, automake, mandoc }:
+
+stdenv.mkDerivation rec {
+ name = "owamp-${version}";
+ version = "3.5.6";
+ buildInputs = [ autoconf automake mandoc ];
+ src = fetchFromGitHub {
+ owner = "perfsonar";
+ repo = "owamp";
+ rev = version;
+ sha256="019rcshmrqk8pfp510j5jvazdcnz0igfkwv44mfxb5wirzj9p6s7";
+ fetchSubmodules = true;
+ };
+
+ preConfigure = ''
+ I2util/bootstrap.sh
+ ./bootstrap
+ '';
+
+ meta = with stdenv.lib; {
+ homepage = http://software.internet2.edu/owamp/;
+ description = ''A tool for performing one-way active measurements'';
+ platforms = platforms.linux;
+ maintainers = [maintainers.teto];
+ license = licenses.asl20;
+ };
+}
diff --git a/pkgs/applications/video/shotcut/default.nix b/pkgs/applications/video/shotcut/default.nix
index 6572164c797..0df5d42ee0e 100644
--- a/pkgs/applications/video/shotcut/default.nix
+++ b/pkgs/applications/video/shotcut/default.nix
@@ -1,20 +1,20 @@
{ stdenv, fetchFromGitHub, SDL2, frei0r, gettext, mlt, jack1, pkgconfig, qtbase
, qtmultimedia, qtwebkit, qtx11extras, qtwebsockets, qtquickcontrols
, qtgraphicaleffects, libmlt
-, qmake, makeWrapper }:
+, qmake, makeWrapper, fetchpatch, qttools }:
assert stdenv.lib.versionAtLeast libmlt.version "6.8.0";
assert stdenv.lib.versionAtLeast mlt.version "6.8.0";
stdenv.mkDerivation rec {
name = "shotcut-${version}";
- version = "18.05.08";
+ version = "18.06.02";
src = fetchFromGitHub {
owner = "mltframework";
repo = "shotcut";
rev = "v${version}";
- sha256 = "1qm1ycsx93qpw2vga25m3cr82vzqla1qqardjiln3iqfa0m93qsk";
+ sha256 = "1pqpgsb8ix1akq326chf46vvl5h02dwmdskskf2n6impygsy4x7v";
};
enableParallelBuilding = true;
@@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
];
NIX_CFLAGS_COMPILE = "-I${libmlt}/include/mlt++ -I${libmlt}/include/mlt";
+ qmakeFlags = [ "QMAKE_LRELEASE=${stdenv.lib.getDev qttools}/bin/lrelease" ];
prePatch = ''
sed 's_shotcutPath, "qmelt"_"${mlt}/bin/melt"_' -i src/jobs/meltjob.cpp
@@ -34,6 +35,12 @@ stdenv.mkDerivation rec {
sed "s_/usr/bin/nice_''${NICE}_" -i src/jobs/meltjob.cpp src/jobs/ffmpegjob.cpp
'';
+ patches = [ (fetchpatch {
+ url = https://github.com/mltframework/shotcut/commit/f304b7403cc7beb57b1610afd9c5c8173749e80b.patch;
+ name = "qt511.patch";
+ sha256 = "1ynvyjchcb33a33x4w1ddnah2gyzmnm125ailgg6xy60lqsnsmp9";
+ } ) ];
+
postInstall = ''
mkdir -p $out/share/shotcut
cp -r src/qml $out/share/shotcut/
diff --git a/pkgs/desktops/lxqt/base/lxqt-build-tools/default.nix b/pkgs/desktops/lxqt/base/lxqt-build-tools/default.nix
index 8d369f46433..c52533a344b 100644
--- a/pkgs/desktops/lxqt/base/lxqt-build-tools/default.nix
+++ b/pkgs/desktops/lxqt/base/lxqt-build-tools/default.nix
@@ -1,17 +1,19 @@
-{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, qt5 }:
+{ stdenv, fetchFromGitHub, cmake, pkgconfig, pcre, qt5, glib }:
stdenv.mkDerivation rec {
name = "lxqt-build-tools-${version}";
- version = "0.4.0";
+ version = "0.5.0";
src = fetchFromGitHub {
owner = "lxde";
repo = "lxqt-build-tools";
rev = version;
- sha256 = "0i3pzgyd80n73dnqs8f6axinaji7biflgqsi33baxn4r1hy58ym1";
+ sha256 = "0dcwzrijmn4sgivmy2zwz3xa4y69pwhranyw0m90g0pp55di2psz";
};
- nativeBuildInputs = [ cmake pkgconfig pcre qt5.qtbase ];
+ nativeBuildInputs = [ cmake pkgconfig ];
+
+ buildInputs = [ qt5.qtbase glib pcre ];
preConfigure = ''cmakeFlags+=" -DLXQT_ETC_XDG_DIR=$out/etc/xdg"'';
diff --git a/pkgs/desktops/lxqt/core/pavucontrol-qt/default.nix b/pkgs/desktops/lxqt/core/pavucontrol-qt/default.nix
index 862a4ff9cf9..5a284d9b89a 100644
--- a/pkgs/desktops/lxqt/core/pavucontrol-qt/default.nix
+++ b/pkgs/desktops/lxqt/core/pavucontrol-qt/default.nix
@@ -3,13 +3,13 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pavucontrol-qt";
- version = "0.3.0";
+ version = "0.4.0";
src = fetchFromGitHub {
owner = "lxde";
repo = pname;
rev = version;
- sha256 = "1pfqdzsbygvq77npsizydps25d9g6vgw177yqvmz3cg3a68dad27";
+ sha256 = "1bxqpasfvaagbq8azl7536z2zk2725xg7jkvad5xh95zq1gb4hgk";
};
nativeBuildInputs = [
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
homepage = https://github.com/lxde/pavucontrol-qt;
license = licenses.gpl2;
- platforms = with platforms; unix;
+ platforms = with platforms; linux;
maintainers = with maintainers; [ romildo ];
};
}
diff --git a/pkgs/desktops/mate/caja-extensions/default.nix b/pkgs/desktops/mate/caja-extensions/default.nix
index 3383847f16c..cd47f7b62b4 100644
--- a/pkgs/desktops/mate/caja-extensions/default.nix
+++ b/pkgs/desktops/mate/caja-extensions/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "caja-extensions-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1abi7s31mx7v8x0f747bmb3s8hrv8fv007pflv2n545yvn0m1dpj";
+ sha256 = "01k7c3gw6rfd7vlch61zig22bvz40wlnalc5p3rz4d9i98fr643n";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/engrampa/default.nix b/pkgs/desktops/mate/engrampa/default.nix
index 74d32ce1f21..57e4ed100a0 100644
--- a/pkgs/desktops/mate/engrampa/default.nix
+++ b/pkgs/desktops/mate/engrampa/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "engrampa-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1pk053i14a0r5s9qkipwnp4qjg76b763203z64ymnpkslrrarnnm";
+ sha256 = "09p9jaljaihc723zp17la6lw7h7q16ysk7q0fr0al0k11ss16w6f";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/eom/default.nix b/pkgs/desktops/mate/eom/default.nix
index 23e16741291..4062d7c512f 100644
--- a/pkgs/desktops/mate/eom/default.nix
+++ b/pkgs/desktops/mate/eom/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "eom-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0320ph6cyh0m4cfyvky10j9prk2hry6rpm4jzgcn7ig03dnj4y0s";
+ sha256 = "0z9l96j0q637hw2mkcc2w737acl7g2c5brgrlk4h73hjamfmsdrm";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/libmatekbd/default.nix b/pkgs/desktops/mate/libmatekbd/default.nix
index fb7a8308ee5..15b81a62886 100644
--- a/pkgs/desktops/mate/libmatekbd/default.nix
+++ b/pkgs/desktops/mate/libmatekbd/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libmatekbd-${version}";
- version = "1.20.1";
+ version = "1.20.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1d80xnbb8w51cv9cziybdxca037lksqkc5bd8wqlyb2p79z77426";
+ sha256 = "1l1zbphs4snswf4bkrwkk6gsmb44bdhymcfgaaspzbrcmw3y7hr1";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/desktops/mate/libmatemixer/default.nix b/pkgs/desktops/mate/libmatemixer/default.nix
index 10a690546f7..8bf0d9bec18 100644
--- a/pkgs/desktops/mate/libmatemixer/default.nix
+++ b/pkgs/desktops/mate/libmatemixer/default.nix
@@ -6,11 +6,11 @@
stdenv.mkDerivation rec {
name = "libmatemixer-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0jpfaqbspn2mjv6ysgzdmzhb07gx61yiiiwmrw94qymld2igrzb5";
+ sha256 = "00p67mi0flsbgn15qpwq60rzf917s5islbmhirbvz6npcvv0d493";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/desktops/mate/libmateweather/default.nix b/pkgs/desktops/mate/libmateweather/default.nix
index 7efad3a5e3a..9a7ba4f006f 100644
--- a/pkgs/desktops/mate/libmateweather/default.nix
+++ b/pkgs/desktops/mate/libmateweather/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "libmateweather-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1c8mvydb0h7z3zn0qahwlp15z5wl6nrv24q4z7ldhm340jnxsvh7";
+ sha256 = "0bp1nn3b5gf5nqrdwl43fxbb82j74s3x8jkmp40ilv2qpc2mxwr1";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/desktops/mate/mate-calc/default.nix b/pkgs/desktops/mate/mate-calc/default.nix
index 7e501fcf379..52f21225cbb 100644
--- a/pkgs/desktops/mate/mate-calc/default.nix
+++ b/pkgs/desktops/mate/mate-calc/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-calc-${version}";
- version = "1.20.1";
+ version = "1.20.2";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "00k063ia4dclvcpg1q733lbi56533s6mj8bgb1nrgna6y7zw4q87";
+ sha256 = "1ghz03j9lfgrjrh8givsw83dpbkw4wlhq4ar3r5g1bf1z636jlx0";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-control-center/default.nix b/pkgs/desktops/mate/mate-control-center/default.nix
index 6bde7d7a017..bc7538b6306 100644
--- a/pkgs/desktops/mate/mate-control-center/default.nix
+++ b/pkgs/desktops/mate/mate-control-center/default.nix
@@ -5,11 +5,11 @@
stdenv.mkDerivation rec {
name = "mate-control-center-${version}";
- version = "1.20.2";
+ version = "1.20.3";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1x40gxrz1hrzbdfl8vbag231g08h45vaky5z827k44qwl6pjd6nl";
+ sha256 = "0wpi8b3zz10xd5i7ir7nd737a9vl4q17rc5nh8vfrqpyrcilqzkd";
};
nativeBuildInputs = [
diff --git a/pkgs/desktops/mate/mate-menus/default.nix b/pkgs/desktops/mate/mate-menus/default.nix
index 51263f0d74e..9815952c540 100644
--- a/pkgs/desktops/mate/mate-menus/default.nix
+++ b/pkgs/desktops/mate/mate-menus/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "mate-menus-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "1w1k6kdabmabhpqvkizk1si6ri4rmspsbj0252ki834ml0dxpnhg";
+ sha256 = "1p8pkw6aby2hq2liqrnsf3lvyn2jqamfbs83fv6q7clw5w179sy6";
};
nativeBuildInputs = [ pkgconfig intltool ];
diff --git a/pkgs/desktops/mate/mate-notification-daemon/default.nix b/pkgs/desktops/mate/mate-notification-daemon/default.nix
index 59df2b7d59b..748a45eda79 100644
--- a/pkgs/desktops/mate/mate-notification-daemon/default.nix
+++ b/pkgs/desktops/mate/mate-notification-daemon/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "mate-notification-daemon-${version}";
- version = "1.20.0";
+ version = "1.20.1";
src = fetchurl {
url = "http://pub.mate-desktop.org/releases/${mate.getRelease version}/${name}.tar.xz";
- sha256 = "0dq457npzid20yfwigdh8gfqgf5wv8p6jhbxfnzybam9xidlqc5f";
+ sha256 = "0hwswgc3i6d7zvmj0as95xjjw431spxkf1d37mxwaf6j80gx0p78";
};
nativeBuildInputs = [
diff --git a/pkgs/development/libraries/fribidi/default.nix b/pkgs/development/libraries/fribidi/default.nix
index 2bc36d1b2b9..7a903f00ae6 100644
--- a/pkgs/development/libraries/fribidi/default.nix
+++ b/pkgs/development/libraries/fribidi/default.nix
@@ -4,6 +4,7 @@
, meson
, ninja
, pkgconfig
+, fixDarwinDylibNames
}:
stdenv.mkDerivation rec {
@@ -18,6 +19,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ meson ninja pkgconfig ];
+ buildInputs = stdenv.lib.optional stdenv.isDarwin fixDarwinDylibNames;
outputs = [ "out" "devdoc" ];
diff --git a/pkgs/development/libraries/lasso/default.nix b/pkgs/development/libraries/lasso/default.nix
index acd0d35a5f0..873ccc5665d 100644
--- a/pkgs/development/libraries/lasso/default.nix
+++ b/pkgs/development/libraries/lasso/default.nix
@@ -3,11 +3,11 @@
stdenv.mkDerivation rec {
name = "lasso-${version}";
- version = "2.5.1";
+ version = "2.6.0";
src = fetchurl {
url = "https://dev.entrouvert.org/lasso/lasso-${version}.tar.gz";
- sha256 = "0n10zjjw84303c9vfy9bqhyzdl01459akbwy86cbgphd826mq45y";
+ sha256 = "1kqagm63a4mv5sw5qc3y0qlky7r9qg5lccq0c3cnfr0n4mxgysql";
};
diff --git a/pkgs/development/node-packages/node-packages-v6.json b/pkgs/development/node-packages/node-packages-v6.json
index 33dbc22123a..c1c181a3d39 100644
--- a/pkgs/development/node-packages/node-packages-v6.json
+++ b/pkgs/development/node-packages/node-packages-v6.json
@@ -54,12 +54,13 @@
, "js-yaml"
, "karma"
, { "kibana-authentication-proxy": "git://github.com/fangli/kibana-authentication-proxy.git" }
+, "lcov-result-merger"
+, "leetcode-cli"
, "lerna"
, "less"
, "less-plugin-clean-css"
-, "lcov-result-merger"
-, "livedown"
, "live-server"
+, "livedown"
, "meat"
, "meguca"
, "mocha"
diff --git a/pkgs/development/node-packages/node-packages-v6.nix b/pkgs/development/node-packages/node-packages-v6.nix
index c49638910a4..d2f1a5b965f 100644
--- a/pkgs/development/node-packages/node-packages-v6.nix
+++ b/pkgs/development/node-packages/node-packages-v6.nix
@@ -76,13 +76,13 @@ let
sha512 = "3g9wzm6hszqh30x6hmwc9l4vw51c6a224cp2y9qzlj98vzbwbc4s7lfafi67v8401qagjsdxrndnnannzz6i71krmn8svxwk3lfkwbc";
};
};
- "@nodelib/fs.stat-1.0.2" = {
+ "@nodelib/fs.stat-1.1.0" = {
name = "_at_nodelib_slash_fs.stat";
packageName = "@nodelib/fs.stat";
- version = "1.0.2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.0.2.tgz";
- sha512 = "37szl49qa9zv4jp9axp95i84m3iiqlip6lnkjc30rd7m8yzvcnlxkl7n1hqkwaq2nx8w560ldb01xhdz8cys7gmbqkdlwa3jbpmyamw";
+ url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.0.tgz";
+ sha512 = "3l59qf6ykjzpr0n8wfqdzng342fg9pbrq7620if8m82cgsh8ki50yg790wl389dfs9wc97x82p2nrnfl8xxij660izj4zcghdvka11c";
};
};
"@sindresorhus/is-0.7.0" = {
@@ -130,31 +130,31 @@ let
sha512 = "2fv2qaz90rp6ib2s45ix0p3a4bd6yl6k94k1kkhw7w4s2aa5mqc6chppkf6pfvsz1l6phh7y0xswyfyzjgny7qzascch8c7ws20a0r4";
};
};
- "@types/node-10.1.1" = {
+ "@types/node-10.3.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "10.1.1";
+ version = "10.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-10.1.1.tgz";
- sha512 = "35nbbgd4qp35g3nfbrsc9ndmigc9gl31xdjhx0fakfms35c6jqxpdx7m9c3pi0h3b062p31al5vas36facjhs1nmxf3bdpnrb5k3g4z";
+ url = "https://registry.npmjs.org/@types/node/-/node-10.3.1.tgz";
+ sha512 = "0xqz0wlddb3vi0mmlncn1ypd7sa2zv3fcq58jk7nr0xdsrwwzn9ncdq784lvg8d2k7lzq1p2kjyak5nghq0imbdj8hrmk6365lgvi92";
};
};
- "@types/node-8.10.16" = {
+ "@types/node-8.10.18" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "8.10.16";
+ version = "8.10.18";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-8.10.16.tgz";
- sha512 = "2plzhji5iq482aa7kscxvsxrwscvrlrg9mxkx02nbslq31q178qki4ghi27z2lagmmzcvgm9r7ligx20bky617zx828yjap4ribnlia";
+ url = "https://registry.npmjs.org/@types/node/-/node-8.10.18.tgz";
+ sha512 = "22aca7kyrl75xvc3mpqj0ws9b5aql4ikllk56r062f49ii57l096mkxpks2iq03np6chgb0c5xifnivkjpa1f9s0qwma9mh7x5sk1ss";
};
};
- "@types/node-9.6.17" = {
+ "@types/node-9.6.20" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "9.6.17";
+ version = "9.6.20";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-9.6.17.tgz";
- sha512 = "3czvpaxsivpv403rqgf4865q4nv81x0y1030r3xj697ik1hp65xdrqqpxvaafbwbf29gszsi2zxag68pblgi22mc1cmbg6yjm14xyib";
+ url = "https://registry.npmjs.org/@types/node/-/node-9.6.20.tgz";
+ sha512 = "03zcm94d4k4hmyilhw27w8ixxm2bkkr2my3d344viq4dzadjmzc9vyabyfs085j6a3qdv1ns0bbw5m72511bwq885064cpnn58ig0wq";
};
};
"@types/request-2.47.0" = {
@@ -184,139 +184,175 @@ let
sha512 = "1psrs8sjpmhz8sz2zjkkd7743vzdi7q7vcj8p219q1pkfawr619rl1m5pczp69hbm1769kn8zwlbayjylhl7an5hkvkdd2bi04lpx75";
};
};
- "@webassemblyjs/ast-1.4.3" = {
+ "@webassemblyjs/ast-1.5.10" = {
name = "_at_webassemblyjs_slash_ast";
packageName = "@webassemblyjs/ast";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.4.3.tgz";
- sha512 = "3spjwi3cp2y297lils8dyh4277ijwg40ak6033w18yb8rffrhwm81h1ikcq407pl83kymmwb348298bpnkb1rfrggc70k6w2difkaab";
+ url = "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.5.10.tgz";
+ sha512 = "29rz7dwz37xly94s2qgvrs86i2nsgpiqp1zmlp6bm7bzrkhggjbkh59yc1b23sdpcbx3kzlv04si91jg8x7skryfz50jy2zljw9n4z0";
};
};
- "@webassemblyjs/floating-point-hex-parser-1.4.3" = {
+ "@webassemblyjs/floating-point-hex-parser-1.5.10" = {
name = "_at_webassemblyjs_slash_floating-point-hex-parser";
packageName = "@webassemblyjs/floating-point-hex-parser";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.4.3.tgz";
- sha512 = "13vsay3gcir9hbx3kznsymnw558as2mrvy8gfymy5wq4k76qwzrkfclxgk5wim8p4f56acyjj61pbin9vzr1wvr6j7r7h9hbd4f8d6z";
+ url = "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.5.10.tgz";
+ sha512 = "09bsb6jvhfcnyyrqp0h6m063k4knang2iwf3n6rv05i87wdcdgjvq1dqrsz50hnijj54sb0hym4rp1bikpg1k8rnqxpjkl19vzqgkly";
};
};
- "@webassemblyjs/helper-buffer-1.4.3" = {
+ "@webassemblyjs/helper-api-error-1.5.10" = {
+ name = "_at_webassemblyjs_slash_helper-api-error";
+ packageName = "@webassemblyjs/helper-api-error";
+ version = "1.5.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.5.10.tgz";
+ sha512 = "1fdzg33vfzsbbfmscl1bmhkwjfn2jsfihypdfgbvw3449aw9ksqvlf77dsghnvx30862zdqa9rawpz65md1kz6swhh8pqqya83s7r9r";
+ };
+ };
+ "@webassemblyjs/helper-buffer-1.5.10" = {
name = "_at_webassemblyjs_slash_helper-buffer";
packageName = "@webassemblyjs/helper-buffer";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.4.3.tgz";
- sha512 = "29i4iwxw7bdqp5jpdvq7x2yvsiihzvhxngq7dcx8h29n3qxbpx5gb7bnpkfrf1wdipnyn3786r5ghfnjgdlc4psa865yibyg1j8mkvv";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.5.10.tgz";
+ sha512 = "3670gasr1syqrkikxaq2qb84zhzn5ll9cmdzm7ynhwn05xd2537jzy93qm5hp82w5iakm4l11dcnz3vclsxbmgcjw1pifz4h0yj125j";
};
};
- "@webassemblyjs/helper-code-frame-1.4.3" = {
+ "@webassemblyjs/helper-code-frame-1.5.10" = {
name = "_at_webassemblyjs_slash_helper-code-frame";
packageName = "@webassemblyjs/helper-code-frame";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.4.3.tgz";
- sha512 = "3rlq4pj6pnf5j1xhdpd2i6b8ajsgdv5hkmlzahr45yv4p6f6rlsi04ns0kcq3qprlmsim99qkisa660xk4bd0mi58d0crbcsc90fn7l";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.5.10.tgz";
+ sha512 = "1jns41f077g54hga6qf9sycn4savzrz8ww6vpzffkyhf5m0kzrb1lm76ja7736xsb3aws1xr01l55lhp7hfslfazabc8c38cys5wqyn";
};
};
- "@webassemblyjs/helper-fsm-1.4.3" = {
+ "@webassemblyjs/helper-fsm-1.5.10" = {
name = "_at_webassemblyjs_slash_helper-fsm";
packageName = "@webassemblyjs/helper-fsm";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.4.3.tgz";
- sha512 = "04nq8mpmb966xss2qhg9rzp046awfhx20kp8p6qp27fnhv65krbay68sfs5j7gp3r4ry7xd153znkdp1vlkxppy8n44vvrylppmi0r4";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.5.10.tgz";
+ sha512 = "0zz5va8i8ba6izqash183izgahn7sq56kvv5x8bw6fny5dznnhwc8b8139r5c6x8ikpny4dp84sq8zlfl38lswqrpjrlf47x65achks";
};
};
- "@webassemblyjs/helper-wasm-bytecode-1.4.3" = {
+ "@webassemblyjs/helper-module-context-1.5.10" = {
+ name = "_at_webassemblyjs_slash_helper-module-context";
+ packageName = "@webassemblyjs/helper-module-context";
+ version = "1.5.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.5.10.tgz";
+ sha512 = "3z3cmlj3vblcrhh3n0774jfgs3c16pkambkfrgl15ckkqa6rpw4mvxa55gpx7rar4bb7nriig0hlqhww3k5y3lk4phj2j75c16qmvbi";
+ };
+ };
+ "@webassemblyjs/helper-wasm-bytecode-1.5.10" = {
name = "_at_webassemblyjs_slash_helper-wasm-bytecode";
packageName = "@webassemblyjs/helper-wasm-bytecode";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.4.3.tgz";
- sha512 = "1wm9mkc0qy5srk9q78842pl0vkn9nvwlh6bci2615vbyw625dnrry390i60w4h53fkbdfp9jj550ggvdw9algcg48xsvl4ffvwd5di3";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.5.10.tgz";
+ sha512 = "1l0wq3agvx1b0msmb2ibpyxip633x8mymgsr0ydgri082mdvigwi559zjfqrpanffalbj28zk016lqjgsgklp6s3ipld4g4j0qihynj";
};
};
- "@webassemblyjs/helper-wasm-section-1.4.3" = {
+ "@webassemblyjs/helper-wasm-section-1.5.10" = {
name = "_at_webassemblyjs_slash_helper-wasm-section";
packageName = "@webassemblyjs/helper-wasm-section";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.4.3.tgz";
- sha512 = "34nmg0qsq0wn6m9r9zjh3jpb0qwr4g7a234x0ws78q4n9dvv1q5ynp2c3ygqnmc1gixy99g6w87l92xf5zjbrr87zsbvnp1xxw9wk57";
+ url = "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.5.10.tgz";
+ sha512 = "39jg659fxagbr6n82qncd7bkpf0fp17aqhg7wm5ga22kxd9q6b1g40si8m9dg2jjxnc1qn3kzj06xcs0nrkfznkzqc2dy3hpxpglwdd";
};
};
- "@webassemblyjs/leb128-1.4.3" = {
+ "@webassemblyjs/ieee754-1.5.10" = {
+ name = "_at_webassemblyjs_slash_ieee754";
+ packageName = "@webassemblyjs/ieee754";
+ version = "1.5.10";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.5.10.tgz";
+ sha512 = "2rn339x1rz3hy3x988ikha64ry6f4lhxbj8khy3bafpmcprs6wxpg9wqjc6bbp778j7cz811za487knm0mjcc1ya677lxwhmgk4wsar";
+ };
+ };
+ "@webassemblyjs/leb128-1.5.10" = {
name = "_at_webassemblyjs_slash_leb128";
packageName = "@webassemblyjs/leb128";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.4.3.tgz";
- sha512 = "0lzzzxr5rk3qqg3ik3hm7yw0lgcvx334g75aphf2l3rsf8pxwycak36v5xsqkavvb4acmh5lddgx2c5sg5al7bwb11y9klgnhj0pvg2";
+ url = "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.5.10.tgz";
+ sha512 = "28s1rxcix7qw6hz2cb3lnfhpyhz61byynyrmd72ddfm5ka8lpizqb2g916ijxz25kjfxcqnls9n88z7spyv1br2lkkircci5r7xdq3g";
};
};
- "@webassemblyjs/validation-1.4.3" = {
- name = "_at_webassemblyjs_slash_validation";
- packageName = "@webassemblyjs/validation";
- version = "1.4.3";
+ "@webassemblyjs/utf8-1.5.10" = {
+ name = "_at_webassemblyjs_slash_utf8";
+ packageName = "@webassemblyjs/utf8";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/validation/-/validation-1.4.3.tgz";
- sha512 = "02y4zsfg7y963d4i63g51xackih6zvs8szy2qlki5xmkfq2ywl97dwbds4wycw6pjwhwivzd4ilmlq37larmxmqsamdjxz1lwqd3sj7";
+ url = "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.5.10.tgz";
+ sha512 = "16yad2ja1si9dx2rk2ix4ph5fq2hp3diyyqrcgz7s06i2rhh4h339q6a3r0xqmfn9m38nwsi11rb9xrz28093s3p8qkml2xjvi380ri";
};
};
- "@webassemblyjs/wasm-edit-1.4.3" = {
+ "@webassemblyjs/wasm-edit-1.5.10" = {
name = "_at_webassemblyjs_slash_wasm-edit";
packageName = "@webassemblyjs/wasm-edit";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.4.3.tgz";
- sha512 = "2knsyvscajz7vi6pm96i1azjxc3d574hwbninxgr5w6lyw3pslnxv41piv565kjdn5g6qqyh0jk6jjbvi2sm9dqzixgbm7vgr9b0fxb";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.5.10.tgz";
+ sha512 = "3xbz8wabffmhmwjvhqdfj2z716q5mhsyq05bfpdfpx49jmjrwgfqc4gqjdfpkh36wlpxm1w7rx8ji3ppwxbpan8wy09xyilj31ikcws";
};
};
- "@webassemblyjs/wasm-gen-1.4.3" = {
+ "@webassemblyjs/wasm-gen-1.5.10" = {
name = "_at_webassemblyjs_slash_wasm-gen";
packageName = "@webassemblyjs/wasm-gen";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.4.3.tgz";
- sha512 = "1lxp49ldr0dwh3ksan4vadvdrsx9sx92wz63h8qpg096x7k3hp777kk33cbzsg6258rgp7saabz2aqmd6ggvm4y5klrf78x7zhzs7br";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.5.10.tgz";
+ sha512 = "2wh97zw4q7alpxmswln7z2vykyhnk9i12pfhpl0ccb7lylz3fmdbg708fq9wys8qyf9q3bfxg8v53rsp8b18xk8afk12sgk1rk2hxii";
};
};
- "@webassemblyjs/wasm-opt-1.4.3" = {
+ "@webassemblyjs/wasm-opt-1.5.10" = {
name = "_at_webassemblyjs_slash_wasm-opt";
packageName = "@webassemblyjs/wasm-opt";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.4.3.tgz";
- sha512 = "0mpd5ig3h708hb5ixdnjlwikbr71va6awfp1gfmff33g7a1g35avv6b4s0ibhl9qdbq32pi8s02ngazg1mcdx82p21sif11qyg7wspc";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.5.10.tgz";
+ sha512 = "1yscbqqp4nxz9vyyysqxh8kgzpncf1lfybxjz1kh9ihv0pm17xi4a1pi5njn82aar4si1y20ymxpfl2a7m6c5b118iihldmyra6n3fl";
};
};
- "@webassemblyjs/wasm-parser-1.4.3" = {
+ "@webassemblyjs/wasm-parser-1.5.10" = {
name = "_at_webassemblyjs_slash_wasm-parser";
packageName = "@webassemblyjs/wasm-parser";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.4.3.tgz";
- sha512 = "130bg13n9f63ihivbad61yw96k908g12ykw7mr8dhxswsck6rp1rbk9rr2dmgarxqd3v0jw605r4pqqpmq5iwhzj5p1bp00bjv66w19";
+ url = "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.5.10.tgz";
+ sha512 = "1slv08znc50va1mn5z425g8x9i2hlgyqbgrhf12wz4zz044wm2yl1yk17j2gp36qb15wirv3j3jlgygq4whjglxln64nz56spna4r2m";
};
};
- "@webassemblyjs/wast-parser-1.4.3" = {
+ "@webassemblyjs/wast-parser-1.5.10" = {
name = "_at_webassemblyjs_slash_wast-parser";
packageName = "@webassemblyjs/wast-parser";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.4.3.tgz";
- sha512 = "3an2lfdbzn0y8c87qzdfwny0q5di5sr36pkxisp6jq3qdb9bbcbd91nqyqyadz8gxv3zrky8qsl4a8fs0ycjn2429n2ml4m791sq422";
+ url = "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.5.10.tgz";
+ sha512 = "1zd2pvwqbrydpp00dxnzjwxrv9nbi91j13bpr1an5jlsj3jy2h0x96frgjmv61bqf4l5vaxwdzbf58qhnhwx189ldh433iaim7mgr24";
};
};
- "@webassemblyjs/wast-printer-1.4.3" = {
+ "@webassemblyjs/wast-printer-1.5.10" = {
name = "_at_webassemblyjs_slash_wast-printer";
packageName = "@webassemblyjs/wast-printer";
- version = "1.4.3";
+ version = "1.5.10";
src = fetchurl {
- url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.4.3.tgz";
- sha512 = "2v460znblyp8svk9nm0k52kvhmgsk2cr6yw0cjgh9r22db3id8dd0inn2xgkbxvcrpi0hn4zbcz75nb58zshv4jp6k35wnzm7hy818j";
+ url = "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.5.10.tgz";
+ sha512 = "3qwkz89g5fgn3hwbm7fb4v0zdgq2vr8nb98cg4w0r5za21xry06m8yzwka5j6h9qxz2qqxy019mfxxga03c0g8v8lw5fkf4d4kdk34z";
+ };
+ };
+ "@zeit/schemas-1.2.0" = {
+ name = "_at_zeit_slash_schemas";
+ packageName = "@zeit/schemas";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/@zeit/schemas/-/schemas-1.2.0.tgz";
+ sha512 = "1jdi566pj9g0pyq79li3lzzbschnib5ilxka7rkji83v7smba5p0r37pmm0z1dma0bjgijfki8b3bd3mp2qzh23al03h5ikdr189iw9";
};
};
"CSSselect-0.4.1" = {
@@ -364,13 +400,13 @@ let
sha1 = "91657dfe6ff857483066132b4618b62e8f4887bd";
};
};
- "JSONStream-1.3.2" = {
+ "JSONStream-1.3.3" = {
name = "JSONStream";
packageName = "JSONStream";
- version = "1.3.2";
+ version = "1.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.2.tgz";
- sha1 = "c102371b6ec3a7cf3b847ca00c20bb0fce4c6dea";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.3.tgz";
+ sha512 = "0r6wmwsqyg9ig629f43sjxca6wvsjcbgcmq1db77nnwn0vg3ipz71y0lwg6an49jbkrfpxsf2g56jhwjs8ims1hkmz7k5bzjrcplanx";
};
};
"JSV-4.0.2" = {
@@ -382,6 +418,15 @@ let
sha1 = "d077f6825571f82132f9dffaed587b4029feff57";
};
};
+ "abab-1.0.4" = {
+ name = "abab";
+ packageName = "abab";
+ version = "1.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/abab/-/abab-1.0.4.tgz";
+ sha1 = "5faad9c2c07f60dd76770f71cf025b62a63cfd4e";
+ };
+ };
"abbrev-1.0.9" = {
name = "abbrev";
packageName = "abbrev";
@@ -499,13 +544,13 @@ let
sha1 = "105495ae5361d697bd195c825192e1ad7f253787";
};
};
- "acorn-5.5.3" = {
+ "acorn-5.6.2" = {
name = "acorn";
packageName = "acorn";
- version = "5.5.3";
+ version = "5.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-5.5.3.tgz";
- sha512 = "0wmwifv9mm9gqcir9zbz5y1gl1rgwwprqh1f3csjydj8kf3byca7img3rh5b54kbnw3ik34bc6ynbnzsd01zmxrsfdvjv95hn84rpld";
+ url = "https://registry.npmjs.org/acorn/-/acorn-5.6.2.tgz";
+ sha512 = "2xy044ibkfyb71si1az16c4bbfbikr65l8z8jsg89xg2rhdbyk1fmiy9zrxr3p0qky41jvnqsa8rp5nww3pldpgycr628sx9vafhk6d";
};
};
"acorn-dynamic-import-3.0.0" = {
@@ -562,15 +607,6 @@ let
sha1 = "089b89b37145ff1d9ec74af6530be5526cae1f1a";
};
};
- "adal-node-0.1.21" = {
- name = "adal-node";
- packageName = "adal-node";
- version = "0.1.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/adal-node/-/adal-node-0.1.21.tgz";
- sha1 = "11c58e427b7e83d9ef2d77c9c3a2a60fbb0b6cc8";
- };
- };
"adal-node-0.1.28" = {
name = "adal-node";
packageName = "adal-node";
@@ -616,13 +652,13 @@ let
sha1 = "6a7990437ca736d5e1288db92bd3266d5f5cb2aa";
};
};
- "addons-linter-0.41.0" = {
+ "addons-linter-1.0.0" = {
name = "addons-linter";
packageName = "addons-linter";
- version = "0.41.0";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/addons-linter/-/addons-linter-0.41.0.tgz";
- sha512 = "1cdq1s3zaz5547yn12h23434f3g6jjchrjdwv7x0qbg38zilaix5x04ajy87pw94rs1mk6kkawa517whzjn0jd7kpx6nac75qw7rcwf";
+ url = "https://registry.npmjs.org/addons-linter/-/addons-linter-1.0.0.tgz";
+ sha512 = "2g3j1vw3qp8b66kqkgg256aqsbdr1m65g9y2hcaxp1rl38zqdc0ph7x6ckxl1sm0dnrkl39q7pz3y4m6n05g4yf2dhcbg7lqwjv9h79";
};
};
"addr-to-ip-port-1.4.3" = {
@@ -634,15 +670,6 @@ let
sha512 = "0cjsq4lq001pd9nr0j7lc41vxyrf0x9qpaq8d8989n1grjzzbv8vjdq9l607ab8pgfh1qkx0vhgva4wsnfndkb2c955f04jq8dx78gq";
};
};
- "address-1.0.3" = {
- name = "address";
- packageName = "address";
- version = "1.0.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/address/-/address-1.0.3.tgz";
- sha512 = "27dii2i2aw9z3pw09110914532z5dfywxp8gbrfr14737cwy8m0jysam3abmfsbp8g51sd02ys57j5snwly3zfd0vrbli4109rni7ng";
- };
- };
"addressparser-0.3.2" = {
name = "addressparser";
packageName = "addressparser";
@@ -778,15 +805,6 @@ let
sha1 = "73b5eeca3fab653e3d3f9422b341ad42205dc965";
};
};
- "ajv-6.3.0" = {
- name = "ajv";
- packageName = "ajv";
- version = "6.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-6.3.0.tgz";
- sha1 = "1650a41114ef00574cac10b8032d8f4c14812da7";
- };
- };
"ajv-6.5.0" = {
name = "ajv";
packageName = "ajv";
@@ -1039,6 +1057,15 @@ let
sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
};
};
+ "ansi-styles-3.2.0" = {
+ name = "ansi-styles";
+ packageName = "ansi-styles";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.0.tgz";
+ sha512 = "2x19fs1qvg7ifsdvii4g8kqpa5hir1lm0k0y0fz6dhm5c8gh4z9il4wqczl078p2ikmrav23dmj86cxy8y1j22k4mv59d8qq6c8wx1n";
+ };
+ };
"ansi-styles-3.2.1" = {
name = "ansi-styles";
packageName = "ansi-styles";
@@ -1147,13 +1174,13 @@ let
sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
};
};
- "append-tree-2.4.1" = {
+ "append-tree-2.4.4" = {
name = "append-tree";
packageName = "append-tree";
- version = "2.4.1";
+ version = "2.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.1.tgz";
- sha512 = "2zb14nlfxs726ng8jhfpf6n9b9kw32smg2krcl0vj90dfrkcc20fm36j2zgdd49b2ln1z4jz2wvvy4qgss14zzfr3rps719h6vlyjg7";
+ url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz";
+ sha512 = "0gfvfdnxy8zznb198pbzshiqg8vnn2icjbc49dmy158qqb33w2ifh86migd8xighgbjl66lhqlb9cvqv2ghviri1k7kh9kw8hr19wxc";
};
};
"appendable-cli-menu-2.0.0" = {
@@ -1219,13 +1246,22 @@ let
sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
};
};
- "are-we-there-yet-1.1.4" = {
+ "are-we-there-yet-1.1.5" = {
name = "are-we-there-yet";
packageName = "are-we-there-yet";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
- sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
+ sha512 = "3mizm1yfxynlhaavbimv7n9qljrbhni22v4fch6zr89x6ps0gpjcxm5yfvv05n8vc3r17hmglyswgq9w0s598xv70nnyw358q11s5p6";
+ };
+ };
+ "arg-2.0.0" = {
+ name = "arg";
+ packageName = "arg";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/arg/-/arg-2.0.0.tgz";
+ sha512 = "3iwdcvp3762nzympp65j1rpz06a18vjrdnzdr14ap4baqnyzfa52wzwwjdjl3x93akzs70vmkvl7yahjy6p0j3n5cnmgkx7699m64sz";
};
};
"argparse-0.1.15" = {
@@ -1264,15 +1300,6 @@ let
sha1 = "2b12247b933001971addcbfe4e67d20fd395bbf4";
};
};
- "args-4.0.0" = {
- name = "args";
- packageName = "args";
- version = "4.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/args/-/args-4.0.0.tgz";
- sha512 = "2xd628jhziygi9jr16ckq557189nw5lracgzcpv8ddvymc3mjxvqzffgp68wmgknw6ps7nliwwyismriv6z4snvn0xmm7kwbrafbgp1";
- };
- };
"arr-diff-1.1.0" = {
name = "arr-diff";
packageName = "arr-diff";
@@ -1660,13 +1687,13 @@ let
sha1 = "59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367";
};
};
- "ast-types-0.11.3" = {
+ "ast-types-0.11.5" = {
name = "ast-types";
packageName = "ast-types";
- version = "0.11.3";
+ version = "0.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.3.tgz";
- sha512 = "2lga5vgh6bz1vii6kfdy2k1g99arw9cikxx8705p9v92rqn7ksdvbzjvhgfdf4s21nbfafrxjh3hrr5jz2yq43dr4hw7hqdvgjnh3jw";
+ url = "https://registry.npmjs.org/ast-types/-/ast-types-0.11.5.tgz";
+ sha512 = "0rp4wq8vmdvsklw32gsxgpv0b41cc92gpkd2nyw6x88ah30c5vhxdqwic9jm16d490mgp8bmrnjjpcm382z4jjhv0fg3zmvjzxyi650";
};
};
"ast-types-0.9.6" = {
@@ -1804,6 +1831,15 @@ let
sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4";
};
};
+ "async-2.6.1" = {
+ name = "async";
+ packageName = "async";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
+ sha512 = "2aqgkis9ac37q6jv6zspfpj3rikh2vr9fdch7wajrvqihq5sxyd1gh5zv65hy0y3r22l720qkidwh6img8dngqcjj0dwrl0dwpj5lbw";
+ };
+ };
"async-each-1.0.1" = {
name = "async-each";
packageName = "async-each";
@@ -1867,13 +1903,13 @@ let
sha1 = "00f35b2d27ac91b1f0d3ef2084c98cf1d1f0adc3";
};
};
- "aws-sdk-2.241.1" = {
+ "aws-sdk-2.252.1" = {
name = "aws-sdk";
packageName = "aws-sdk";
- version = "2.241.1";
+ version = "2.252.1";
src = fetchurl {
- url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.241.1.tgz";
- sha1 = "ae4e1ba772cc17284df00c03b58dcf914d5c72f9";
+ url = "https://registry.npmjs.org/aws-sdk/-/aws-sdk-2.252.1.tgz";
+ sha1 = "4ce45b16dc408883e20a564bd86270c67f25bb60";
};
};
"aws-sign-0.2.0" = {
@@ -1939,31 +1975,31 @@ let
sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f";
};
};
- "azure-arm-batch-0.3.0" = {
+ "azure-arm-batch-3.1.0" = {
name = "azure-arm-batch";
packageName = "azure-arm-batch";
- version = "0.3.0";
+ version = "3.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-0.3.0.tgz";
- sha1 = "78b000b10a16b97dcf273729b4dba919efbfdaf7";
+ url = "https://registry.npmjs.org/azure-arm-batch/-/azure-arm-batch-3.1.0.tgz";
+ sha512 = "282vyr654axav0gvwn1xalga7dlx9fh3ddk7qbkppvi2mwcv6zsin39aim0bzgif5rp4d18qhmaydhm4x5raayyvhkmzvzqgwx72103";
};
};
- "azure-arm-cdn-1.0.3" = {
+ "azure-arm-cdn-4.0.1" = {
name = "azure-arm-cdn";
packageName = "azure-arm-cdn";
- version = "1.0.3";
+ version = "4.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-1.0.3.tgz";
- sha1 = "39db281679dcdd33cb6ce032383b192430476412";
+ url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-4.0.1.tgz";
+ sha512 = "11r3v8l2q4w8jl8a83j13kjx4fi1casnyw9nwsxfsgn8aams01gyqx66447bzpamry61f17wlalmadbmf1kv9v713hl5ifpdxqgjmcr";
};
};
- "azure-arm-commerce-0.2.0" = {
+ "azure-arm-commerce-2.0.0" = {
name = "azure-arm-commerce";
packageName = "azure-arm-commerce";
- version = "0.2.0";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-0.2.0.tgz";
- sha1 = "152105f938603c94ec476c4cbd46b4ba058262bd";
+ url = "https://registry.npmjs.org/azure-arm-commerce/-/azure-arm-commerce-2.0.0.tgz";
+ sha512 = "0jkmkc889jyfb5513z5xffpwnk5hcr89apxnhh9i20adw0kanri6ifncrf33d36xkw5mjrnwy7hizv10hmgjcfsbvrpcrg7ind83hmi";
};
};
"azure-arm-compute-3.0.0-preview" = {
@@ -1993,22 +2029,22 @@ let
sha1 = "c8b7c113016c92703a84dc28d29ba518e8c64763";
};
};
- "azure-arm-devtestlabs-0.1.0" = {
+ "azure-arm-devtestlabs-2.1.1" = {
name = "azure-arm-devtestlabs";
packageName = "azure-arm-devtestlabs";
- version = "0.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-0.1.0.tgz";
- sha1 = "76604b8d2ad7b881f6ff53a37e37365481ca8c40";
+ url = "https://registry.npmjs.org/azure-arm-devtestlabs/-/azure-arm-devtestlabs-2.1.1.tgz";
+ sha512 = "1dw30m5r07pla1gba31w8d37ijqsca267qwrxlip5q24fsw429r5w4zd4qmvpd31v9wi6zrxcb0nz5m23rgbgff4n0vza1b6dhl55sb";
};
};
- "azure-arm-dns-2.0.0-preview" = {
+ "azure-arm-dns-2.1.0" = {
name = "azure-arm-dns";
packageName = "azure-arm-dns";
- version = "2.0.0-preview";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.0.0-preview.tgz";
- sha1 = "3dd0645c7f1767fe150e00a8ac33b4b55bce9b8c";
+ url = "https://registry.npmjs.org/azure-arm-dns/-/azure-arm-dns-2.1.0.tgz";
+ sha512 = "3lxdjr1mn9sfvqsjwdy1plyb7qkg6379j9xkg47gabr5g9rpqhmfljpii9ln2azz0rizr4bbxy348b28m9g6xx0cb7jhdkarww2sbgz";
};
};
"azure-arm-hdinsight-0.2.2" = {
@@ -2047,22 +2083,22 @@ let
sha1 = "f63a6dad0355633d9347fb403f417fb195fe3b91";
};
};
- "azure-arm-network-5.1.0" = {
+ "azure-arm-network-5.3.0" = {
name = "azure-arm-network";
packageName = "azure-arm-network";
- version = "5.1.0";
+ version = "5.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.1.0.tgz";
- sha1 = "b2be4bfc27173b1cb7fc54425cbee27824f65b52";
+ url = "https://registry.npmjs.org/azure-arm-network/-/azure-arm-network-5.3.0.tgz";
+ sha512 = "25c3hgi59w01ysjhk9hdzvx2viv7v3cknkbz9iwfhnnj6gz4rrzxhair0s8r5nfmcfxgz5y7qy6lvld1qgjq9j7z9cz0z582p2avs4f";
};
};
- "azure-arm-powerbiembedded-0.1.0" = {
+ "azure-arm-powerbiembedded-0.1.1" = {
name = "azure-arm-powerbiembedded";
packageName = "azure-arm-powerbiembedded";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.0.tgz";
- sha1 = "f0050ed833e2b3b12daba83d6f9e3d96852ee970";
+ url = "https://registry.npmjs.org/azure-arm-powerbiembedded/-/azure-arm-powerbiembedded-0.1.1.tgz";
+ sha1 = "7103c94e06b3ddf628293f60e02fd0ba8f9c3ca9";
};
};
"azure-arm-rediscache-0.2.3" = {
@@ -2083,22 +2119,22 @@ let
sha1 = "aa9a49fb9081a210f2f4cc6596ca4653b68306e6";
};
};
- "azure-arm-servermanagement-0.1.2" = {
+ "azure-arm-servermanagement-1.1.0" = {
name = "azure-arm-servermanagement";
packageName = "azure-arm-servermanagement";
- version = "0.1.2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-0.1.2.tgz";
- sha1 = "937f87a8aeceb641a8210a9ba837323f0206eb47";
+ url = "https://registry.npmjs.org/azure-arm-servermanagement/-/azure-arm-servermanagement-1.1.0.tgz";
+ sha512 = "1wfj1vg7q2f8s20x8lssxsjqkj52in2rbrz2lhh1cx360l9xhr3z6pkyxha44km23xhfqamqm2xdvpz08kx3y0v8cx6b9sl7qydflqs";
};
};
- "azure-arm-storage-0.15.0-preview" = {
+ "azure-arm-storage-5.0.0" = {
name = "azure-arm-storage";
packageName = "azure-arm-storage";
- version = "0.15.0-preview";
+ version = "5.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-0.15.0-preview.tgz";
- sha1 = "e25c13a1e716656caa019a7bc9fabe05c5062b7e";
+ url = "https://registry.npmjs.org/azure-arm-storage/-/azure-arm-storage-5.0.0.tgz";
+ sha512 = "24p38zb5jpf1bgm831ciqh70yp1qdvaw2vqxx3krj9lqn1d4vn0yw60whwzfj73ysliz3ysmwg6xskjypza3i497w8x13zk0r2278xj";
};
};
"azure-arm-trafficmanager-1.1.0-preview" = {
@@ -2110,13 +2146,13 @@ let
sha1 = "b46cfcf7f1690e4739864dcdb5c8de322e82ec50";
};
};
- "azure-arm-website-0.11.4" = {
+ "azure-arm-website-0.11.5" = {
name = "azure-arm-website";
packageName = "azure-arm-website";
- version = "0.11.4";
+ version = "0.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.4.tgz";
- sha1 = "6972dd9844a0d12376d74014b541c49247caa37d";
+ url = "https://registry.npmjs.org/azure-arm-website/-/azure-arm-website-0.11.5.tgz";
+ sha1 = "51942423e1238ec19e551926353a8e9f73bc534a";
};
};
"azure-asm-compute-0.18.0" = {
@@ -2200,31 +2236,31 @@ let
sha1 = "91e2e63d73869090613cd42ee38a3823e55f4447";
};
};
- "azure-asm-website-0.10.4" = {
+ "azure-asm-website-0.10.6" = {
name = "azure-asm-website";
packageName = "azure-asm-website";
- version = "0.10.4";
+ version = "0.10.6";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.4.tgz";
- sha1 = "bfd0c01a8ae6afd90eaa13360976242e28459650";
+ url = "https://registry.npmjs.org/azure-asm-website/-/azure-asm-website-0.10.6.tgz";
+ sha1 = "822f920f22b8572a014714a403e6aa009ed59295";
};
};
- "azure-batch-0.5.2" = {
+ "azure-batch-3.2.1" = {
name = "azure-batch";
packageName = "azure-batch";
- version = "0.5.2";
+ version = "3.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-batch/-/azure-batch-0.5.2.tgz";
- sha1 = "21b23f9db7f42734e97f35bd703818a1cf2492eb";
+ url = "https://registry.npmjs.org/azure-batch/-/azure-batch-3.2.1.tgz";
+ sha512 = "3lfnm1rnai975asy9hxk4rvp5rkmhp0ky4p40ips8a7gg5sjkygwy31mb7aqf794zqw27zrp6cn5ncirmc3xhaglzkrginillni64gx";
};
};
- "azure-common-0.9.18" = {
+ "azure-common-0.9.20" = {
name = "azure-common";
packageName = "azure-common";
- version = "0.9.18";
+ version = "0.9.20";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.18.tgz";
- sha1 = "38b960f4ddadd44d34f52e8b85d5d1e0226440fd";
+ url = "https://registry.npmjs.org/azure-common/-/azure-common-0.9.20.tgz";
+ sha512 = "1yph9maam38j6pjydv947ndixp1kc22cjq7q1l03mgn0ywqpp0rm0sflnszplmsyjl88z8sj40ljgz32j02vnpajcd9mnkmnlw4a36j";
};
};
"azure-gallery-2.0.0-pre.18" = {
@@ -2236,31 +2272,31 @@ let
sha1 = "3cd4c5e4e0091551d6a5ee757af2354c8a36b3e6";
};
};
- "azure-graph-2.1.0-preview" = {
+ "azure-graph-2.2.0" = {
name = "azure-graph";
packageName = "azure-graph";
- version = "2.1.0-preview";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.1.0-preview.tgz";
- sha1 = "2005abb76d9193cbfb90f25ee92823cde87d4f5f";
+ url = "https://registry.npmjs.org/azure-graph/-/azure-graph-2.2.0.tgz";
+ sha512 = "0gj2pmkj5qshdxgk3hzrrp9r03x42h69zcnak979ij1gc6q3bx4bn0b5ksdqjxppj4wjcfqwhc76a6rn6n1fyp5kc59gpjhrsa0pgb9";
};
};
- "azure-keyvault-0.11.0" = {
+ "azure-keyvault-1.0.0" = {
name = "azure-keyvault";
packageName = "azure-keyvault";
- version = "0.11.0";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-0.11.0.tgz";
- sha1 = "379e6c2ed4155de86caff63243923c7330d34802";
+ url = "https://registry.npmjs.org/azure-keyvault/-/azure-keyvault-1.0.0.tgz";
+ sha1 = "d630f98032aadbb5e72fb04d2da49b368e441c9e";
};
};
- "azure-monitoring-0.10.2" = {
+ "azure-monitoring-0.10.5" = {
name = "azure-monitoring";
packageName = "azure-monitoring";
- version = "0.10.2";
+ version = "0.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.2.tgz";
- sha1 = "2b7d493306747b43e4e2dcad44d65328e6c3cf57";
+ url = "https://registry.npmjs.org/azure-monitoring/-/azure-monitoring-0.10.5.tgz";
+ sha1 = "b7d21e2cc76f94a5f72cf3ccb03ac9355d858d81";
};
};
"azure-servicefabric-0.1.5" = {
@@ -2272,13 +2308,13 @@ let
sha1 = "bdc4b378292490ce77e788ee189f291ce5ae25a6";
};
};
- "azure-storage-2.1.0" = {
+ "azure-storage-2.8.3" = {
name = "azure-storage";
packageName = "azure-storage";
- version = "2.1.0";
+ version = "2.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.1.0.tgz";
- sha1 = "7fc81246cd64b54cabced70b5138d7cc4571ea01";
+ url = "https://registry.npmjs.org/azure-storage/-/azure-storage-2.8.3.tgz";
+ sha512 = "0ddx9n5y0pzsgc8287f73fss5gnhdzvsmxhbszfh2qdld2d05h1knm76i3dwkbq2j5q6yx0r06x2sn58380y69mpv4jnbidim8xvil1";
};
};
"babel-code-frame-6.26.0" = {
@@ -3145,13 +3181,13 @@ let
sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
- "big-integer-1.6.28" = {
+ "big-integer-1.6.30" = {
name = "big-integer";
packageName = "big-integer";
- version = "1.6.28";
+ version = "1.6.30";
src = fetchurl {
- url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.28.tgz";
- sha512 = "3b56jaa0yvrl9p90c0phnhyh02sv9hxssl8y0nghv91ra8akrcdpxm55c1gf5w1is9991wm2g0wqcr4hm5ri9lmzwd8gc9d72pzg51q";
+ url = "https://registry.npmjs.org/big-integer/-/big-integer-1.6.30.tgz";
+ sha512 = "0mpq1fin33p53fjgylmnrc0g51raqmprdpkm51vkl2na7mar5a778mlnwv6wrj98fjcx30wijf0zms9l88ibprn36z39jpw9zpcaq1c";
};
};
"big.js-3.2.0" = {
@@ -3298,13 +3334,13 @@ let
sha512 = "10md5792s6q3xwdrmwh1a8ax9w128g607b5qsbxzw8x0gl9184g754hprchl6mq8lmf4f8qylk2h8vavsnbn9yy9gzjnyh2kwrzmxky";
};
};
- "bittorrent-dht-8.3.0" = {
+ "bittorrent-dht-8.4.0" = {
name = "bittorrent-dht";
packageName = "bittorrent-dht";
- version = "8.3.0";
+ version = "8.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-8.3.0.tgz";
- sha512 = "2p2fxhvwin4xnjdmbhrlwivx4a8pjzfn6mc5qxnxzl1q40xxp56wd6xrcxfq9viqjkvpc7g0j3dvgmvcywhgw41nvjyxi8pgm5v43kp";
+ url = "https://registry.npmjs.org/bittorrent-dht/-/bittorrent-dht-8.4.0.tgz";
+ sha512 = "18j3r8acrygcy5pdk684mlij31n25z9lqdadxsj8q8y04wpnqxql5j1v18rsfmadlafihzz2q7nwicnkis0bzl6xnpzfy01qvwby5qm";
};
};
"bittorrent-peerid-1.2.0" = {
@@ -3919,13 +3955,13 @@ let
sha512 = "24488d4s6d901hj9d9jdddapmcvmibbdpjq6nv3bpyjx72546fcqa0vripy0ydsrw1jk6bakfzvynh5i9cz0g59hrmn4ph75d3kdpk7";
};
};
- "browserslist-3.2.7" = {
+ "browserslist-3.2.8" = {
name = "browserslist";
packageName = "browserslist";
- version = "3.2.7";
+ version = "3.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.7.tgz";
- sha512 = "0qzgn4n32d6hjm129k06ry17ppzywr77kwpxh2rj1i26j9x43rwx6lpjqf6nlrkf9b9mwcqidgq5gv4xl94120k69p7z9baap24p1d1";
+ url = "https://registry.npmjs.org/browserslist/-/browserslist-3.2.8.tgz";
+ sha512 = "00i65frm5jkbv8pzc13i02fzd39q0ahh653zzjzhq35pz6p0idajfjqg1b7mnnlvxymihcpmd1cfhwaj51hnqjmh4alrg8sjrq6hxaq";
};
};
"bson-0.1.8" = {
@@ -3964,31 +4000,22 @@ let
sha512 = "1ipkzdnq03rnxyl50wmzigdbd96lh0mgzffcab80yxl38x7k316kzs3h0w0bxdjj7vqh6dw3wgb7y3rsqab0ar4ky9rbh0r1f1i2hk2";
};
};
- "buffer-alloc-1.1.0" = {
+ "buffer-alloc-1.2.0" = {
name = "buffer-alloc";
packageName = "buffer-alloc";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz";
+ sha512 = "2isng7g5ld0a4ih1d38bcdqpw8jpqajmcn6vfkrqpahmhim4cfw51c1sikz5s5hnmfychcbzcxvwydn8qi6zq6mhl15anzd1110fnq8";
+ };
+ };
+ "buffer-alloc-unsafe-1.1.0" = {
+ name = "buffer-alloc-unsafe";
+ packageName = "buffer-alloc-unsafe";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz";
- sha1 = "05514d33bf1656d3540c684f65b1202e90eca303";
- };
- };
- "buffer-alloc-unsafe-0.1.1" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz";
- sha1 = "ffe1f67551dd055737de253337bfe853dfab1a6a";
- };
- };
- "buffer-alloc-unsafe-1.0.0" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz";
- sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
+ url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz";
+ sha512 = "01b27ck9qpkjb3s14q703k5vi00m7lpl0zkyi91z4kxjww4b6q09frq68lm6m9hvhb5m4w0arwybncm5hia3j9kr9vd4h84qa43chsc";
};
};
"buffer-crc32-0.1.1" = {
@@ -4054,13 +4081,13 @@ let
sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
};
};
- "buffer-fill-0.1.1" = {
+ "buffer-fill-1.0.0" = {
name = "buffer-fill";
packageName = "buffer-fill";
- version = "0.1.1";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz";
- sha512 = "3nny0zbpnaxp1544gp7lc53jvs1jgzpmp92cy939dik36bi8lvhrsh4g082lxdplwsma22cgg9q93dw5dnbn1ljqkh4fb2i6w3lq032";
+ url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz";
+ sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c";
};
};
"buffer-from-0.1.2" = {
@@ -4072,13 +4099,13 @@ let
sha512 = "2z3dp7smyppzg5yc63hvyfxgrw5d14splmxbknz4v8g6bnncca1acr4xd6l3z13lpp4vj4120pyvk87040ajbx7v24cj9mcgdx8h9a6";
};
};
- "buffer-from-1.0.0" = {
+ "buffer-from-1.1.0" = {
name = "buffer-from";
packageName = "buffer-from";
- version = "1.0.0";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz";
- sha512 = "3252laq8prm41lgzlhmc7rdj99gwcvpf7cn6j686g4qmspnl3haid5khv9pc9cfjja9wb64nwfvgdwi2kpdf125xfg48aqapwssjxpk";
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz";
+ sha512 = "0ch7mwp2p7iz81hlj769cki9vapg34rp3368mbxffjync131zz3cig7vkjv4n1lfyfnaapj9axq5d6sg92a8ri6fnvggz481fb936bk";
};
};
"buffer-indexof-1.1.1" = {
@@ -4522,15 +4549,6 @@ let
sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
};
};
- "camelcase-5.0.0" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "5.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-5.0.0.tgz";
- sha512 = "2q57983k3n95gzbhqhc0cv6krvq7nd37h837xg6favqywdda14ha7k2xbdaryni3xzzm55pvi0adrl1fbgxypaxz1kvrifnm5kb1akx";
- };
- };
"camelcase-keys-2.1.0" = {
name = "camelcase-keys";
packageName = "camelcase-keys";
@@ -4549,13 +4567,13 @@ let
sha1 = "a2aa5fb1af688758259c32c141426d78923b9b77";
};
};
- "caniuse-lite-1.0.30000842" = {
+ "caniuse-lite-1.0.30000850" = {
name = "caniuse-lite";
packageName = "caniuse-lite";
- version = "1.0.30000842";
+ version = "1.0.30000850";
src = fetchurl {
- url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000842.tgz";
- sha512 = "16dhvprw63c1dcvcn58bgf667cqldqkmmzda661xrwi0yadfmlpab913a980h6kwfk1yl0r13z4qap9g9rxqd23nhlihhghf902kswf";
+ url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000850.tgz";
+ sha512 = "109fg3d4qqzsnn1jmrjih7nhddicpkxsyhq60dhx3s6g2rgcfjas5n56h4xfncqq0j3vrbn3w0x35dhlq2cxh4khsfpq8kz8kqvhwl8";
};
};
"capture-stack-trace-1.0.0" = {
@@ -4711,15 +4729,6 @@ let
sha512 = "1fnn3znivja3xq1lacvsdwkl2s8ki9w95sylnf2pkmaia1mjz3llbdb5r2dxsflqfky3h8f1bh0piv0l5waw2bkdniqnyv0yx5wch9d";
};
};
- "chalk-2.3.2" = {
- name = "chalk";
- packageName = "chalk";
- version = "2.3.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-2.3.2.tgz";
- sha512 = "06jlrzx0nb92910rcfhx55n28jgvhc0qda49scnfyifnmc31dyfqsl5qqiwhsxkrhrc6c07x69q037f1pwg06kkfd1qdzaxz7dj7kk4";
- };
- };
"chalk-2.4.0" = {
name = "chalk";
packageName = "chalk";
@@ -4801,6 +4810,15 @@ let
sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
};
};
+ "chardet-0.5.0" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz";
+ sha512 = "3931r17a9qqilrj8ymqwiqrayvwaz6d7hvhscrh8s4a7cksmw0saq1bg2xk7r20mcnzbcpn4c05bii36axilkfrpj2j0gcy2shdm57m";
+ };
+ };
"charenc-0.0.2" = {
name = "charenc";
packageName = "charenc";
@@ -4828,6 +4846,15 @@ let
sha1 = "fa5ae42cc60121133d296d0b46d983215f7268ea";
};
};
+ "cheerio-0.20.0" = {
+ name = "cheerio";
+ packageName = "cheerio";
+ version = "0.20.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cheerio/-/cheerio-0.20.0.tgz";
+ sha1 = "5c710f2bab95653272842ba01c6ea61b3545ec35";
+ };
+ };
"cheerio-0.22.0" = {
name = "cheerio";
packageName = "cheerio";
@@ -5593,13 +5620,13 @@ let
sha1 = "168a4701756b6a7f51a12ce0c97bfa28c084ed63";
};
};
- "colors-1.2.5" = {
+ "colors-1.3.0" = {
name = "colors";
packageName = "colors";
- version = "1.2.5";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz";
- sha512 = "2k2a7k096qcm5fghgcmybg96y3x5bpqb62j0zdlnxq7za4asb6vsy9i69nkg9wqfhkcbh6qzm8zzvq7q516p54awxpp2qrzm8nm3cvs";
+ url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz";
+ sha512 = "03rrn3n1k9lcwlg5xdx0cj727blwc1a0r6rnq1r8nynwni4bwqlbzlb9qp02x09pfnrfj0ihb28wsimqxiivm5k0f2wa77hmvfmffhh";
};
};
"colour-0.7.1" = {
@@ -5890,13 +5917,13 @@ let
sha1 = "524a9f10903f3a813389b0225d27c48bb751890f";
};
};
- "compressible-2.0.13" = {
+ "compressible-2.0.14" = {
name = "compressible";
packageName = "compressible";
- version = "2.0.13";
+ version = "2.0.14";
src = fetchurl {
- url = "https://registry.npmjs.org/compressible/-/compressible-2.0.13.tgz";
- sha1 = "0d1020ab924b2fdb4d6279875c7d6daba6baa7a9";
+ url = "https://registry.npmjs.org/compressible/-/compressible-2.0.14.tgz";
+ sha1 = "326c5f507fbb055f54116782b969a81b67a29da7";
};
};
"compression-1.5.2" = {
@@ -5944,15 +5971,6 @@ let
sha1 = "708978624d856af41a5a741defdd261da752c266";
};
};
- "concat-stream-1.6.0" = {
- name = "concat-stream";
- packageName = "concat-stream";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.0.tgz";
- sha1 = "0aac662fd52be78964d5532f694784e70110acf7";
- };
- };
"concat-stream-1.6.2" = {
name = "concat-stream";
packageName = "concat-stream";
@@ -6575,13 +6593,13 @@ let
sha1 = "3d12752f6adf68a892f332433492bd5812bb668f";
};
};
- "cookiejar-2.1.1" = {
+ "cookiejar-2.1.2" = {
name = "cookiejar";
packageName = "cookiejar";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz";
- sha1 = "41ad57b1b555951ec171412a81942b1e8200d34a";
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz";
+ sha512 = "302w4kd3x9k0jy5iva1k5inp3r25avz8ddpkdb20icvrizicvas253kfp6ynmrcwpxv1lafcnagggxfs5dmmd4gg07ifgzkqxsrl3rk";
};
};
"cookies-0.7.1" = {
@@ -6620,13 +6638,13 @@ let
sha1 = "270e06b67b2ae94bcfee6592ed39eb42303d186f";
};
};
- "cordova-common-2.2.1" = {
+ "cordova-common-2.2.3" = {
name = "cordova-common";
packageName = "cordova-common";
- version = "2.2.1";
+ version = "2.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.1.tgz";
- sha1 = "7009bc591729caa7285a588cfd6a7b54cd834f0c";
+ url = "https://registry.npmjs.org/cordova-common/-/cordova-common-2.2.3.tgz";
+ sha512 = "109gw0072hyc4z9lavjgbl998xq5mk2ajzz2nmiab3yz2bgmpkqllanny4np7cc5q0awf8knjymna948s34mqg9h7yjfk9g93lvmwm0";
};
};
"cordova-create-1.1.2" = {
@@ -6692,13 +6710,13 @@ let
sha1 = "652294c14651db28fa93bd2d5ff2983a4f08c636";
};
};
- "core-js-2.5.6" = {
+ "core-js-2.5.7" = {
name = "core-js";
packageName = "core-js";
- version = "2.5.6";
+ version = "2.5.7";
src = fetchurl {
- url = "https://registry.npmjs.org/core-js/-/core-js-2.5.6.tgz";
- sha512 = "14myrl8hdl6z51ziv7l8326pyxfr51pil9s2glynqcj9vfpr37b9jkz9pshpb1jk7qg2wwg59hfxxqjr6x8wwhsvfqvhs5l11yia1cm";
+ url = "https://registry.npmjs.org/core-js/-/core-js-2.5.7.tgz";
+ sha512 = "1rw87wykvh29zd2dfrylxhr1kk5lz0k9wb4ykmy6nka6slwbhsirccfy8c2br3b8d085rkly33rf55kh6z5rm9mpgxg7z301h4ckk26";
};
};
"core-util-is-1.0.2" = {
@@ -7115,6 +7133,24 @@ let
sha512 = "0rxlhy2ha4xjnw27ha5q8crvpqwydnhb4xnnsj2ba8i1r09n864ygl76lcjgnpnqp1qj5930qz8gnq76pwy6sr6hrb2gcfrzla67ljs";
};
};
+ "cssom-0.3.2" = {
+ name = "cssom";
+ packageName = "cssom";
+ version = "0.3.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssom/-/cssom-0.3.2.tgz";
+ sha1 = "b8036170c79f07a90ff2f16e22284027a243848b";
+ };
+ };
+ "cssstyle-0.2.37" = {
+ name = "cssstyle";
+ packageName = "cssstyle";
+ version = "0.2.37";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cssstyle/-/cssstyle-0.2.37.tgz";
+ sha1 = "541097234cb2513c83ceed3acddc27ff27987d54";
+ };
+ };
"csurf-1.8.3" = {
name = "csurf";
packageName = "csurf";
@@ -7205,13 +7241,13 @@ let
sha1 = "5d02a46850adf1b4a317946a3928fccb5bfd0425";
};
};
- "cvss-1.0.2" = {
+ "cvss-1.0.3" = {
name = "cvss";
packageName = "cvss";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cvss/-/cvss-1.0.2.tgz";
- sha1 = "df67e92bf12a796f49e928799c8db3ba74b9fcd6";
+ url = "https://registry.npmjs.org/cvss/-/cvss-1.0.3.tgz";
+ sha512 = "2s5cl4bn952afccm1fqvg12k0rr7q3v8yfw78gvfclqpkdwcgxsd0r319jrmgxsz19cd2f94xg97qq8m2z14s86gszf0zam862csmyl";
};
};
"cycle-1.0.3" = {
@@ -7367,13 +7403,13 @@ let
sha1 = "69449ac8a368593a8f71902b282390c3655ab4b8";
};
};
- "dat-node-3.5.8" = {
+ "dat-node-3.5.9" = {
name = "dat-node";
packageName = "dat-node";
- version = "3.5.8";
+ version = "3.5.9";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.8.tgz";
- sha512 = "3j28p80dwmic3g00asmcpgiv3sh3s8023x1023g7bm534h1ai8i2zryivx95gc22is64k9mynmqr2g0ny25xp1f7h1cbc25klizg8dc";
+ url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.9.tgz";
+ sha512 = "104lk78v9z8z1p5dkkn5w6ciimn7gbh83yvfcpl6vcd6fahdghak9kp95wmmfjlbas1959a156552i8a891qjbfa32q1wcanyv4yri4";
};
};
"dat-registry-4.0.0" = {
@@ -7610,13 +7646,13 @@ let
sha1 = "d171a87933252807eb3cb61dc1c1445d078df2d9";
};
};
- "decimal.js-10.0.0" = {
+ "decimal.js-10.0.1" = {
name = "decimal.js";
packageName = "decimal.js";
- version = "10.0.0";
+ version = "10.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.0.tgz";
- sha512 = "1zfwp3adsdq838zcpkpm59x7kdqny1lcdk04r7fw28zy3va4jpjkrkpyyz7ifnzazpks9ky9mjb2xdrkx07nzrh909nzasps0aplcm1";
+ url = "https://registry.npmjs.org/decimal.js/-/decimal.js-10.0.1.tgz";
+ sha512 = "0pvhjhp6gb1n7717047gvr4pnrpjw1a8kysff39v9qp665kwkf9b0zbj4y2i6gx1qh755dan7zz82wq2kdkmnhrvwv3w2mqj03mcjdy";
};
};
"decode-uri-component-0.2.0" = {
@@ -7754,13 +7790,13 @@ let
sha1 = "48b699c27e334bf89f10892be432f6e4c7d34a7f";
};
};
- "deep-extend-0.5.1" = {
+ "deep-extend-0.6.0" = {
name = "deep-extend";
packageName = "deep-extend";
- version = "0.5.1";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz";
- sha512 = "3bzqm7nqgh7m8xjhl0q8jc0ccm9riymsfmy0144x6n2qy9v1gin2ww8s9wjlayk0xyzq9cz9pyar02yiv30mhqsj7rmw35ywrsc3jrp";
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz";
+ sha512 = "0wc0sqg1aqx864bxf8xa4j8ncrc8rcvmiaj1sp3x1np2i8hdjybzjfd0w9gbf1yasmwycwzzg1mz6smr3q42hhv4pjx2qcgwqhg3q9c";
};
};
"deep-is-0.1.3" = {
@@ -8060,15 +8096,6 @@ let
sha1 = "f41f1c10be4b00e87b5f13da680759f2c5bfd3e2";
};
};
- "detect-port-1.2.2" = {
- name = "detect-port";
- packageName = "detect-port";
- version = "1.2.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/detect-port/-/detect-port-1.2.2.tgz";
- sha512 = "2q44vf4c9rqz21wc7a1pj1xz6pa2s7sp2fz9zxksmz679xh8sbfzyzhgkkbyznsgbnif013n0a6387dppcs370gdkc0dhh2jgsgv8fk";
- };
- };
"detective-4.7.1" = {
name = "detective";
packageName = "detective";
@@ -8213,13 +8240,22 @@ let
sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
};
};
- "dispensary-0.16.0" = {
+ "discovery-swarm-5.1.1" = {
+ name = "discovery-swarm";
+ packageName = "discovery-swarm";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.1.tgz";
+ sha512 = "1sa0sciklf04fnha64gb01s3wqddxkzf9n1q0zyjcr3cdhn49xyql60cbxby922bqq0wd7k57b6qjk50vn4hjsk08pggzcggbvkszxg";
+ };
+ };
+ "dispensary-0.18.0" = {
name = "dispensary";
packageName = "dispensary";
- version = "0.16.0";
+ version = "0.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/dispensary/-/dispensary-0.16.0.tgz";
- sha1 = "7173f2828380135e3c8eb9f61719fa038c0cd133";
+ url = "https://registry.npmjs.org/dispensary/-/dispensary-0.18.0.tgz";
+ sha512 = "0vn5s1km4ilb4kqba3rqh0wjrfwjvskp0k58qjywkvla2zmn5df46flvzs200kxmg6fbr8rn6c22mjp0y3sj8zql1g8k3qw52772ica";
};
};
"diveSync-0.3.0" = {
@@ -8600,13 +8636,13 @@ let
sha1 = "0b078d5517937d873101452d9146737557b75e51";
};
};
- "dtrace-provider-0.8.6" = {
+ "dtrace-provider-0.8.7" = {
name = "dtrace-provider";
packageName = "dtrace-provider";
- version = "0.8.6";
+ version = "0.8.7";
src = fetchurl {
- url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.6.tgz";
- sha1 = "428a223afe03425d2cd6d6347fdf40c66903563d";
+ url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.7.tgz";
+ sha1 = "dc939b4d3e0620cfe0c1cd803d0d2d7ed04ffd04";
};
};
"duplexer-0.1.1" = {
@@ -8771,13 +8807,13 @@ let
sha1 = "cc872c168880ae3c7189762fd5ffc00896c9518a";
};
};
- "electron-to-chromium-1.3.47" = {
+ "electron-to-chromium-1.3.48" = {
name = "electron-to-chromium";
packageName = "electron-to-chromium";
- version = "1.3.47";
+ version = "1.3.48";
src = fetchurl {
- url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.47.tgz";
- sha1 = "764e887ca9104d01a0ac8eabee7dfc0e2ce14104";
+ url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.48.tgz";
+ sha1 = "d3b0d8593814044e092ece2108fc3ac9aea4b900";
};
};
"elegant-spinner-1.0.1" = {
@@ -8816,13 +8852,13 @@ let
sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df";
};
};
- "email-validator-2.0.3" = {
+ "email-validator-2.0.4" = {
name = "email-validator";
packageName = "email-validator";
- version = "2.0.3";
+ version = "2.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/email-validator/-/email-validator-2.0.3.tgz";
- sha1 = "33e50d66f526b97cd72c17205aefaec79c8a2a1e";
+ url = "https://registry.npmjs.org/email-validator/-/email-validator-2.0.4.tgz";
+ sha512 = "2fphwmaifh5r33d0qxsw8zjgkhqjcr146jzy8lyqib0dsaqk5sz09k58flnwbx62s4hkwakfqrb8945zabjskr61z42vr91p6iv1041";
};
};
"emitter-http://github.com/component/emitter/archive/1.0.1.tar.gz" = {
@@ -9159,13 +9195,13 @@ let
sha1 = "eaba64ca5d542a311ac945f582defc336165d9f4";
};
};
- "es-abstract-1.11.0" = {
+ "es-abstract-1.12.0" = {
name = "es-abstract";
packageName = "es-abstract";
- version = "1.11.0";
+ version = "1.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.11.0.tgz";
- sha512 = "2aaq6ivy5raj1a99db6gvw7qn2vs27h0pqvgpf2fqfm9avwqsirr8gs86yx7n36qysjw1vabz6mlc8dfpi6fmz9yqvk8kapz49jnx36";
+ url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.12.0.tgz";
+ sha512 = "2jdql8kh7rhb0wrblg2c4a809hrmgyc2c31qrww9q4r3mwa1l17nss7my5k0xrb7q78gywnv8vbkl9z7pq183l37r45x6f593zp3h8b";
};
};
"es-to-primitive-1.1.1" = {
@@ -9177,13 +9213,13 @@ let
sha1 = "45355248a88979034b6792e19bb81f2b7975dd0d";
};
};
- "es5-ext-0.10.42" = {
+ "es5-ext-0.10.45" = {
name = "es5-ext";
packageName = "es5-ext";
- version = "0.10.42";
+ version = "0.10.45";
src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz";
- sha512 = "1412ssfrx1kvraz8kp4x9lc1jzcdh2952vbmlimrfalmbjv44rh504ihb4fg5mjwx8ix1f1wii0a0qngwrfk4gl271mcywgp7b4x700";
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz";
+ sha512 = "04p6qjhmiaqlqqgi0690lz7zzcdg1n80pxiywkkk6qalpxd8b85kv4403ckchsv8jlx9rhz4chgh819ahzcgwanibnnqzkibklwqiqn";
};
};
"es5-ext-0.8.2" = {
@@ -9393,15 +9429,6 @@ let
sha1 = "c8fc6201c7f40dd08941b87c085767386a679acc";
};
};
- "eslint-4.19.0" = {
- name = "eslint";
- packageName = "eslint";
- version = "4.19.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-4.19.0.tgz";
- sha512 = "29dc1z24n3c60hfac5afy7rk3mqdch8hnn07fnb9314dbyk5ih2l1284vl3nsgsm5ja5w144nsgmipbycva47gwpl1qfsma5gjcpkdg";
- };
- };
"eslint-4.19.1" = {
name = "eslint";
packageName = "eslint";
@@ -9681,13 +9708,13 @@ let
sha1 = "9ebdb7635ad099c70dcc4c2a1f5004288e8bd924";
};
};
- "events-2.0.0" = {
+ "events-2.1.0" = {
name = "events";
packageName = "events";
- version = "2.0.0";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/events/-/events-2.0.0.tgz";
- sha512 = "1r878as79mx3xg56nvjxxbryqa8lqn8xmiqi1xqfx2vjygnfaf15h5l658a9ikfr1bhc6ygxny8jr8ddjxpzlh6y443rxv08di3kwxg";
+ url = "https://registry.npmjs.org/events/-/events-2.1.0.tgz";
+ sha512 = "059cw923gab3r2d2nk9nafd3h9skxvimn2k4qhnhss6j5vwwgvqaac3668299zdc634q9r8by6vidhjnkf052ir1vyw6xx7nyhs56fx";
};
};
"events.node-0.4.9" = {
@@ -10059,6 +10086,15 @@ let
sha512 = "3sf897ajmkcp0j6rgd0jy6k95s9ck3j305yrr00kmckl8qdhswhbdd5g4m2fai03x8phs1vw2ahf9v7ym5ji4zfxydxyamiy61glabd";
};
};
+ "external-editor-3.0.0" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.0.tgz";
+ sha512 = "28h4s6rjdakrr2danff6n7mwwf1n2syyba9q93ac1wpic535lk0xvwh4bpnzhmw3gkjblvbvfsd4zp57hwy7d70hk41lxs4867iz6cs";
+ };
+ };
"extglob-0.3.2" = {
name = "extglob";
packageName = "extglob";
@@ -10095,13 +10131,13 @@ let
sha1 = "92ccf6d81ef70a9fa4c1747114ccef6d8688a6c4";
};
};
- "extract-zip-1.6.6" = {
+ "extract-zip-1.6.7" = {
name = "extract-zip";
packageName = "extract-zip";
- version = "1.6.6";
+ version = "1.6.7";
src = fetchurl {
- url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.6.tgz";
- sha1 = "1290ede8d20d0872b429fd3f351ca128ec5ef85c";
+ url = "https://registry.npmjs.org/extract-zip/-/extract-zip-1.6.7.tgz";
+ sha1 = "a840b4b8af6403264c8db57f4f1a74333ef81fe9";
};
};
"extsprintf-1.0.0" = {
@@ -10266,6 +10302,15 @@ let
sha512 = "2bhxs6r2hxpjfxj7ycbs3blbwbmq9nmwar4swzvhbiwcbmn721l8wk0ndyw9n3i1508rlhhm70a8fn9bpy8mx8f0ncqhqhh5pz175j0";
};
};
+ "fast-url-parser-1.1.3" = {
+ name = "fast-url-parser";
+ packageName = "fast-url-parser";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz";
+ sha1 = "f4af3ea9f34d8a271cf58ad2b3759f431f0b318d";
+ };
+ };
"faye-websocket-0.10.0" = {
name = "faye-websocket";
packageName = "faye-websocket";
@@ -10311,6 +10356,15 @@ let
sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
};
};
+ "fd-slicer-1.1.0" = {
+ name = "fd-slicer";
+ packageName = "fd-slicer";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz";
+ sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e";
+ };
+ };
"feedparser-2.2.9" = {
name = "feedparser";
packageName = "feedparser";
@@ -10437,15 +10491,6 @@ let
sha1 = "bd162262c0b6e94bfbcdcf19a3bbb3764f785695";
};
};
- "filesize-3.6.1" = {
- name = "filesize";
- packageName = "filesize";
- version = "3.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/filesize/-/filesize-3.6.1.tgz";
- sha512 = "1rfby2136b86m318244b42lrcx9hc28vz71cv9i84cd5z7dd3cwvj1gx8mykbjh937yyi1h4q5kk3vhjcldc8pkd2f7iapszgbd3a7c";
- };
- };
"filestream-4.1.3" = {
name = "filestream";
packageName = "filestream";
@@ -10725,13 +10770,13 @@ let
sha1 = "248cf79a3da7d7dc379e2a11c92a2719cbb540f6";
};
};
- "flatstr-1.0.5" = {
+ "flatstr-1.0.8" = {
name = "flatstr";
packageName = "flatstr";
- version = "1.0.5";
+ version = "1.0.8";
src = fetchurl {
- url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.5.tgz";
- sha1 = "5b451b08cbd48e2eac54a2bbe0bf46165aa14be3";
+ url = "https://registry.npmjs.org/flatstr/-/flatstr-1.0.8.tgz";
+ sha512 = "2myjl431vaakbfrr72hywwmrlin44zm9s7y32c4zw9ckk9giykx33qlzkxfr13jlslr15fsnj9smyl4fnlrqbamapp5qwzgzxpfaxk1";
};
};
"flatten-0.0.1" = {
@@ -10761,13 +10806,13 @@ let
sha1 = "c952de2240f812ebda0aa8006d7776ee2acf7d74";
};
};
- "fluent-syntax-0.6.6" = {
+ "fluent-syntax-0.7.0" = {
name = "fluent-syntax";
packageName = "fluent-syntax";
- version = "0.6.6";
+ version = "0.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.6.6.tgz";
- sha512 = "18dv619kjzc3fdahfc242r7lb27a3pjxx5xd8shascb9xb8c1zncsrbnj0an8qjsg1pwf0az7h7gv5v0g50b3pixznr7wk7d8yqfazj";
+ url = "https://registry.npmjs.org/fluent-syntax/-/fluent-syntax-0.7.0.tgz";
+ sha512 = "031cxan5lg9gnxfk0ig3np5v4zvb61jraigawngdc2waq6yf1dsck5zixvfmhbm5sx5dn073f72716cl3i61qx0vpn3mlmq21zalj2g";
};
};
"flush-write-stream-1.0.3" = {
@@ -10806,13 +10851,22 @@ let
sha512 = "2z7ai3f3g9j48z90kds4070nb8v2q02n7131c2zjplb0zfjxjrd1m2fm8ykg7psj8fiwc4iidn2g9rr2w09qijbssddr0p8acyiw5mv";
};
};
- "for-each-0.3.2" = {
+ "follow-redirects-1.5.0" = {
+ name = "follow-redirects";
+ packageName = "follow-redirects";
+ version = "1.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.0.tgz";
+ sha512 = "0h5jsslx4wxfjvwhfjhims4m3nnkjdzmm1g1ch7wvd0pq8y2bpndfa8zrbga7sy1xa90zm85cjay3laz7fnzvq858xa9xmzppiyvnkx";
+ };
+ };
+ "for-each-0.3.3" = {
name = "for-each";
packageName = "for-each";
- version = "0.3.2";
+ version = "0.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz";
- sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4";
+ url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz";
+ sha512 = "2dikmdxwassw4w48vv82swjv4v1zx2sivsgcnxi3zi0imzw165ba8vaxgawz0wz4fgf138hvvc3xc5znr2wmz07r74dp8z6kqp1z9lf";
};
};
"for-in-0.1.8" = {
@@ -11319,13 +11373,13 @@ let
sha1 = "1b0ab3bd553b2a0d6399d29c0e3ea0b252078327";
};
};
- "fx-runner-1.0.8" = {
+ "fx-runner-1.0.9" = {
name = "fx-runner";
packageName = "fx-runner";
- version = "1.0.8";
+ version = "1.0.9";
src = fetchurl {
- url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.8.tgz";
- sha1 = "5ced3b04a8d51d634de20d1480f0dc5dd8325dec";
+ url = "https://registry.npmjs.org/fx-runner/-/fx-runner-1.0.9.tgz";
+ sha1 = "7b23f3773dc76aacc42f11d9aff2769675cb63f0";
};
};
"galaxy-0.1.12" = {
@@ -11526,13 +11580,13 @@ let
sha1 = "dc15ca1c672387ca76bd37ac0a395ba2042a2c28";
};
};
- "getmac-1.4.1" = {
+ "getmac-1.4.3" = {
name = "getmac";
packageName = "getmac";
- version = "1.4.1";
+ version = "1.4.3";
src = fetchurl {
- url = "https://registry.npmjs.org/getmac/-/getmac-1.4.1.tgz";
- sha512 = "0r7zqgvfiv3r6zy8fms9gdcf3a1r46kpf8pm5x7vwrc27vgv69ra244s89k73hb9rna6r3s9v20yzbwjmz2c13gh3s0bbd07zq7w2lr";
+ url = "https://registry.npmjs.org/getmac/-/getmac-1.4.3.tgz";
+ sha512 = "30r4q3b0d0j7i6lcwwbihxgp08bjp2x9yiff9nwww0krdnr9h9mjscfl0my891245nswcg8i3xmdxi4cmxqr54j9c1dgmzyhmy5mrkc";
};
};
"getpass-0.1.7" = {
@@ -11733,6 +11787,24 @@ let
sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
};
};
+ "glob-slash-1.0.0" = {
+ name = "glob-slash";
+ packageName = "glob-slash";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-slash/-/glob-slash-1.0.0.tgz";
+ sha1 = "fe52efa433233f74a2fe64c7abb9bc848202ab95";
+ };
+ };
+ "glob-slasher-1.0.1" = {
+ name = "glob-slasher";
+ packageName = "glob-slasher";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/glob-slasher/-/glob-slasher-1.0.1.tgz";
+ sha1 = "747a0e5bb222642ee10d3e05443e109493cb0f8e";
+ };
+ };
"glob-stream-3.1.18" = {
name = "glob-stream";
packageName = "glob-stream";
@@ -11742,15 +11814,6 @@ let
sha1 = "9170a5f12b790306fdfe598f313f8f7954fd143b";
};
};
- "glob-stream-5.3.5" = {
- name = "glob-stream";
- packageName = "glob-stream";
- version = "5.3.5";
- src = fetchurl {
- url = "https://registry.npmjs.org/glob-stream/-/glob-stream-5.3.5.tgz";
- sha1 = "a55665a9a8ccdc41915a87c701e32d4e016fad22";
- };
- };
"glob-stream-6.1.0" = {
name = "glob-stream";
packageName = "glob-stream";
@@ -12049,13 +12112,13 @@ let
sha1 = "c167d2a5319c5a0e0964ef6a25b7c2df8996c85c";
};
};
- "growl-1.10.3" = {
+ "growl-1.10.5" = {
name = "growl";
packageName = "growl";
- version = "1.10.3";
+ version = "1.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz";
- sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4";
+ url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz";
+ sha512 = "146i7if4fjml1p6xw1ybb7vm22k6i8yc7r8wcw8yia7qy385w1s6j18ip91g5mv47zvv5fw5m8kpzlaayjs183fkpg174hbw4xgh6m8";
};
};
"growly-1.3.0" = {
@@ -12121,15 +12184,6 @@ let
sha512 = "01v6g5dvnsxvzcwrw2m6kx3ghrpxmbwz4gwljm7qv9rhxhssssvy54llpib7b5i3iyjkb7mvy4a3lgcld7pxx9580wms9v380rlyrqa";
};
};
- "gulp-sourcemaps-1.6.0" = {
- name = "gulp-sourcemaps";
- packageName = "gulp-sourcemaps";
- version = "1.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/gulp-sourcemaps/-/gulp-sourcemaps-1.6.0.tgz";
- sha1 = "b86ff349d801ceb56e1d9e7dc7bbcb4b7dee600c";
- };
- };
"gulp-sourcemaps-2.6.4" = {
name = "gulp-sourcemaps";
packageName = "gulp-sourcemaps";
@@ -12238,13 +12292,13 @@ let
sha1 = "ba402c266194f15956ef15e0fcf242993f6a7dfd";
};
};
- "has-1.0.1" = {
+ "has-1.0.3" = {
name = "has";
packageName = "has";
- version = "1.0.1";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/has/-/has-1.0.1.tgz";
- sha1 = "8461733f538b0837c9361e39a9ab9e9704dc2f28";
+ url = "https://registry.npmjs.org/has/-/has-1.0.3.tgz";
+ sha512 = "37vh53c11hws66navka0w9xxm6rcr034bxpyvaldiqz1msafqf0jpi1aqxbaygs53arz9y510qg6dl6vrm285hrxniygs2l8lxnyrvz";
};
};
"has-ansi-0.1.0" = {
@@ -12832,13 +12886,13 @@ let
sha1 = "29691b6fc58f4f7e81a3605dca82682b068e4430";
};
};
- "http-parser-js-0.4.12" = {
+ "http-parser-js-0.4.13" = {
name = "http-parser-js";
packageName = "http-parser-js";
- version = "0.4.12";
+ version = "0.4.13";
src = fetchurl {
- url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.12.tgz";
- sha1 = "b9cfbf4a2cf26f0fc34b10ca1489a27771e3474f";
+ url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.13.tgz";
+ sha1 = "3bd6d6fde6e3172c9334c3b33b6c193d80fe1137";
};
};
"http-proxy-1.0.2" = {
@@ -13021,13 +13075,13 @@ let
sha512 = "3bml62y8rmpga8wbcxfqm6izvc9xxlblx0vc08r778qa42jgw6fjif4i7f9bj2y98bz4xyimg5vfgch92j6i2l7zcwiq5za8l34cziw";
};
};
- "hypercore-6.14.0" = {
+ "hypercore-6.15.0" = {
name = "hypercore";
packageName = "hypercore";
- version = "6.14.0";
+ version = "6.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.14.0.tgz";
- sha512 = "3liw77yhvn3nlrczf9s30vvn4bxrn3glh65a2psy1va9pvcnjwx6wfh52v5l9qbd7zyp4q4nb7qrq0n3am7jwmz3dkb5fzvdnlwikkh";
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.15.0.tgz";
+ sha512 = "2qd2nd34xmr8fvagbifn72ffcr6hw9byas8rccy1wx252kj2qza8yy9g0ck9nf7np794267ry4jih7j1ryrjrbs8r8q2hbvgcyv5w0z";
};
};
"hypercore-protocol-6.6.4" = {
@@ -13039,13 +13093,13 @@ let
sha512 = "0rxj8d4lp45q7v3wwwv23m7qi84vw3wvyafqiy9x5f9lqkynq8v8yajpq9bcnc935927qjnxajn8n0cyhg0fqjnpywlfyxgxczkndgm";
};
};
- "hyperdrive-9.12.3" = {
+ "hyperdrive-9.13.0" = {
name = "hyperdrive";
packageName = "hyperdrive";
- version = "9.12.3";
+ version = "9.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.3.tgz";
- sha512 = "3w0ia766bacphqzgyjhiwbppgdja61vlz2xp6x710dk4pn6570gag3w5xa8rfivh2lvig8v2ics3bkdlm9cmq9kpzjgwzm19a089fb3";
+ url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.13.0.tgz";
+ sha512 = "1ncs5n26spkycvrfi5j0dy62bw3d9l0cmpaagc54nb6rfh33zyh228b3n99yajvzhyym0d6g0hphpwjyz8s7pngv13ql8f41x05zq40";
};
};
"hyperdrive-http-4.2.2" = {
@@ -13480,6 +13534,15 @@ let
sha512 = "18q95zmyca97iylvzibh193n81dp71yawcb56ib17inhq7g0nixmbx62j56bdv3d7lxsgwj8zw9zcmmhzjivx3wlb3b6a60jsf6dl0k";
};
};
+ "inquirer-6.0.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-6.0.0.tgz";
+ sha512 = "0k09hsg3dfdz7vp482v56hvhqa9g4qbm8jpmig9p0phdzsaspajxk9d4z575dd8rc70pmipg7pxxpgdqwa3x1z4rwmhhw1d3icr115l";
+ };
+ };
"insert-module-globals-7.1.0" = {
name = "insert-module-globals";
packageName = "insert-module-globals";
@@ -14110,6 +14173,15 @@ let
sha512 = "34m1wg28c9l1v9bqz2klwl4ybhyqkhk80d95664jmcbq1jjpg471nv96mqgqy4838xpa8wm7mbpynmq4294pq6iw163s0ar1b3a4f1r";
};
};
+ "is-options-1.0.1" = {
+ name = "is-options";
+ packageName = "is-options";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-options/-/is-options-1.0.1.tgz";
+ sha512 = "339gkkcm39mcw2c8wwl37y02rq3ga7309fgrvp2garlavgh93aydxpfx8wg9j9xs6k9h3ha11c4z9bkcqihd7w5d8fb03ik1nqgqy6r";
+ };
+ };
"is-path-cwd-1.0.0" = {
name = "is-path-cwd";
packageName = "is-path-cwd";
@@ -14389,15 +14461,6 @@ let
sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
};
};
- "is-valid-glob-0.3.0" = {
- name = "is-valid-glob";
- packageName = "is-valid-glob";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-0.3.0.tgz";
- sha1 = "d4b55c69f51886f9b65c70d6c2622d37e29f48fe";
- };
- };
"is-valid-glob-1.0.0" = {
name = "is-valid-glob";
packageName = "is-valid-glob";
@@ -14479,15 +14542,6 @@ let
sha1 = "4a3e974ec0cba9004d3fc6cde7209ea69368a621";
};
};
- "isemail-1.2.0" = {
- name = "isemail";
- packageName = "isemail";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isemail/-/isemail-1.2.0.tgz";
- sha1 = "be03df8cc3e29de4d2c5df6501263f1fa4595e9a";
- };
- };
"isexe-1.1.2" = {
name = "isexe";
packageName = "isexe";
@@ -14641,15 +14695,6 @@ let
sha1 = "06d4912255093419477d425633606e0e90782967";
};
};
- "joi-6.10.1" = {
- name = "joi";
- packageName = "joi";
- version = "6.10.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/joi/-/joi-6.10.1.tgz";
- sha1 = "4d50c318079122000fe5f16af1ff8e1917b77e06";
- };
- };
"jquery-3.3.1" = {
name = "jquery";
packageName = "jquery";
@@ -14659,13 +14704,13 @@ let
sha512 = "0d5v4s4626l13llvp6hq5wlghysf7lmfxpp0x0ymvcrvikz2xmyrag81wxndb9fy48mx61gcdlbmdwln78s43givdwpmrk9dir5vfai";
};
};
- "jquery-ui-1.12.1" = {
- name = "jquery-ui";
- packageName = "jquery-ui";
+ "jquery-ui-bundle-1.12.1" = {
+ name = "jquery-ui-bundle";
+ packageName = "jquery-ui-bundle";
version = "1.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jquery-ui/-/jquery-ui-1.12.1.tgz";
- sha1 = "bcb4045c8dd0539c134bc1488cdd3e768a7a9e51";
+ url = "https://registry.npmjs.org/jquery-ui-bundle/-/jquery-ui-bundle-1.12.1.tgz";
+ sha1 = "d6be2e4c377494e2378b1cae2920a91d1182d8c4";
};
};
"js-select-0.6.0" = {
@@ -14731,6 +14776,15 @@ let
sha512 = "0gka65n4d9gmcy0c8cy5h55r273dbxnw54gibp2nq5mmdmksjgb2nhcdfgfxs1wg3yayyrydn2v79fny7hdyq907dg87vmgjnsnr8mi";
};
};
+ "js-yaml-3.12.0" = {
+ name = "js-yaml";
+ packageName = "js-yaml";
+ version = "3.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
+ sha512 = "3f8k2gvi3gnj9gpr3dnm5n5vpy2w68pshqk4hajlsmkb37ky30cnqza82l8sq153zx1nk67gizcm1ngmvlajw53hkwg4g96gir7d2rw";
+ };
+ };
"js2xmlparser-1.0.0" = {
name = "js2xmlparser";
packageName = "js2xmlparser";
@@ -14758,6 +14812,15 @@ let
sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
};
};
+ "jsdom-7.2.2" = {
+ name = "jsdom";
+ packageName = "jsdom";
+ version = "7.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jsdom/-/jsdom-7.2.2.tgz";
+ sha1 = "40b402770c2bda23469096bee91ab675e3b1fc6e";
+ };
+ };
"jsesc-0.5.0" = {
name = "jsesc";
packageName = "jsesc";
@@ -14956,13 +15019,13 @@ let
sha1 = "1eade7acc012034ad84e2396767ead9fa5495821";
};
};
- "jsonata-1.5.3" = {
+ "jsonata-1.5.4" = {
name = "jsonata";
packageName = "jsonata";
- version = "1.5.3";
+ version = "1.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonata/-/jsonata-1.5.3.tgz";
- sha512 = "0lgmcfyrax8g07h2lhdlzw3i5dp28mdhg3azf2h7c1ig3nf3xv0dkrpdfsr155zhmbx2cyjr3w90hvkxc0vv2s4nj0zxdw15j6ywibn";
+ url = "https://registry.npmjs.org/jsonata/-/jsonata-1.5.4.tgz";
+ sha512 = "27541bw7vmi7jjvk8s2qka188hdsqqrh961xcfyk5zwlwxdcmkvh53bpqz5kvclyljdm3kk82dgap4f4ggz713l1yj7yllq8pcpvyhp";
};
};
"jsonfile-1.0.1" = {
@@ -15064,13 +15127,13 @@ let
sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9";
};
};
- "jsonwebtoken-7.1.9" = {
+ "jsonwebtoken-8.2.1" = {
name = "jsonwebtoken";
packageName = "jsonwebtoken";
- version = "7.1.9";
+ version = "8.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-7.1.9.tgz";
- sha1 = "847804e5258bec5a9499a8dc4a5e7a3bae08d58a";
+ url = "https://registry.npmjs.org/jsonwebtoken/-/jsonwebtoken-8.2.1.tgz";
+ sha512 = "0dwgmjxfm3hp813x0ixpflz3bm5j5r6mn714b4y9gqcyaw28yw2ylz6kn2a6wg9m5crnxfnpdds5cbvxrm68gyg7lq8da8zpl3d9jlp";
};
};
"jspm-config-0.3.4" = {
@@ -15668,15 +15731,6 @@ let
sha1 = "9144b6eebca5f1d0680169f1a6770dcea60b75c3";
};
};
- "leven-2.1.0" = {
- name = "leven";
- packageName = "leven";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz";
- sha1 = "c2e7a9f772094dee9d34202ae8acce4687875580";
- };
- };
"levn-0.3.0" = {
name = "levn";
packageName = "levn";
@@ -16073,6 +16127,15 @@ let
sha1 = "5203ad7ba425fae842460e696db9cf3e6aac057c";
};
};
+ "lodash._objecttypes-2.4.1" = {
+ name = "lodash._objecttypes";
+ packageName = "lodash._objecttypes";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash._objecttypes/-/lodash._objecttypes-2.4.1.tgz";
+ sha1 = "7c0b7f69d98a1f76529f890b0cdb1b4dfec11c11";
+ };
+ };
"lodash._reescape-3.0.0" = {
name = "lodash._reescape";
packageName = "lodash._reescape";
@@ -16280,6 +16343,15 @@ let
sha1 = "d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862";
};
};
+ "lodash.includes-4.3.0" = {
+ name = "lodash.includes";
+ packageName = "lodash.includes";
+ version = "4.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.includes/-/lodash.includes-4.3.0.tgz";
+ sha1 = "60bb98a87cb923c68ca1e51325483314849f553f";
+ };
+ };
"lodash.isarguments-3.1.0" = {
name = "lodash.isarguments";
packageName = "lodash.isarguments";
@@ -16298,6 +16370,15 @@ let
sha1 = "79e4eb88c36a8122af86f844aa9bcd851b5fbb55";
};
};
+ "lodash.isboolean-3.0.3" = {
+ name = "lodash.isboolean";
+ packageName = "lodash.isboolean";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz";
+ sha1 = "6c2e171db2a257cd96802fd43b01b20d5f5870f6";
+ };
+ };
"lodash.isequal-4.5.0" = {
name = "lodash.isequal";
packageName = "lodash.isequal";
@@ -16307,6 +16388,33 @@ let
sha1 = "415c4478f2bcc30120c22ce10ed3226f7d3e18e0";
};
};
+ "lodash.isinteger-4.0.4" = {
+ name = "lodash.isinteger";
+ packageName = "lodash.isinteger";
+ version = "4.0.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz";
+ sha1 = "619c0af3d03f8b04c31f5882840b77b11cd68343";
+ };
+ };
+ "lodash.isnumber-3.0.3" = {
+ name = "lodash.isnumber";
+ packageName = "lodash.isnumber";
+ version = "3.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isnumber/-/lodash.isnumber-3.0.3.tgz";
+ sha1 = "3ce76810c5928d03352301ac287317f11c0b1ffc";
+ };
+ };
+ "lodash.isobject-2.4.1" = {
+ name = "lodash.isobject";
+ packageName = "lodash.isobject";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.isobject/-/lodash.isobject-2.4.1.tgz";
+ sha1 = "5a2e47fe69953f1ee631a7eba1fe64d2d06558f5";
+ };
+ };
"lodash.isplainobject-4.0.6" = {
name = "lodash.isplainobject";
packageName = "lodash.isplainobject";
@@ -16568,13 +16676,13 @@ let
sha1 = "88328fd7d1ce7938b29283746f0b1bc126b24708";
};
};
- "log4js-2.6.1" = {
+ "log4js-2.8.0" = {
name = "log4js";
packageName = "log4js";
- version = "2.6.1";
+ version = "2.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/log4js/-/log4js-2.6.1.tgz";
- sha512 = "254l8in0izc772xvl9krch7nll86c1a3b1i9j1yb3sl1rialgynw6q2slza1vmmh49b375a3qfj4ir9pkzgsas48rbrzi10px71dsh4";
+ url = "https://registry.npmjs.org/log4js/-/log4js-2.8.0.tgz";
+ sha512 = "0c5w5kb3vbh6ff5l7srizxhnkjlnx4ip7zwrll04xm5i8k0mq0kcsgvz88dzlzkb002x7wzizaw5ynq3y0xg633inv4fjr5h49ilfry";
};
};
"loggly-1.1.1" = {
@@ -16955,6 +17063,15 @@ let
sha512 = "2dhd467iqwi8rmdzm8m0921z2mmixbdbpp9hvk02f5z6k1k2324k5l971x6j46mlq8nbixf21znq376dj431jnfajxllm123mgaw657";
};
};
+ "mamacro-0.0.3" = {
+ name = "mamacro";
+ packageName = "mamacro";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz";
+ sha512 = "1670fzjdl58zpljl3vblrzfz0805w0d99kdhf9rz4cgr1f2g01ibb5s5b1n7w7dqfv8lyig9zcqw2f0gsjlzxxwj4zc939fwn3k1hd8";
+ };
+ };
"map-cache-0.2.2" = {
name = "map-cache";
packageName = "map-cache";
@@ -17108,13 +17225,13 @@ let
sha1 = "e9bdbde94a20a5ac18b04340fc5764d5b09d901d";
};
};
- "mdn-data-1.1.3" = {
+ "mdn-data-1.1.4" = {
name = "mdn-data";
packageName = "mdn-data";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.3.tgz";
- sha512 = "0ly3w028pxhm83a538dms6xm5rw84xy7pq16354kfpbd72ng0rykvbnfcs1c3ijdcr7xfxzva4pp10wqf6nxysj375vinqbki1zmgl7";
+ url = "https://registry.npmjs.org/mdn-data/-/mdn-data-1.1.4.tgz";
+ sha512 = "144x251sdslml324vr6hp0lzc54g6d90n3cc1drs8lyqixw798p42ar2a0s2id939pajpa185givxb2mdg35psfvjikqakjg6kin9hm";
};
};
"mdns-js-0.5.0" = {
@@ -17315,15 +17432,6 @@ let
sha1 = "b00aaa556dd8b44568150ec9d1b953f3f90cbb61";
};
};
- "merge-stream-1.0.1" = {
- name = "merge-stream";
- packageName = "merge-stream";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz";
- sha1 = "4041202d508a342ba00174008df0c251b8c135e1";
- };
- };
"merge2-1.2.2" = {
name = "merge2";
packageName = "merge2";
@@ -17405,24 +17513,6 @@ let
sha1 = "5529a4d67654134edcc5266656835b0f851afcee";
};
};
- "micro-9.1.4" = {
- name = "micro";
- packageName = "micro";
- version = "9.1.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/micro/-/micro-9.1.4.tgz";
- sha512 = "0zajgsz4m4z0cbibs2vz4brzp6ihq647id9zq67lrcy6nkc9fzjc8fx4g1bsf6nnbjha22fi5sz7lmfq46qixcz807v1p5pjd13kr6r";
- };
- };
- "micro-compress-1.0.0" = {
- name = "micro-compress";
- packageName = "micro-compress";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/micro-compress/-/micro-compress-1.0.0.tgz";
- sha1 = "53f5a80b4ad0320ca165a559b6e3df145d4f704f";
- };
- };
"microee-0.0.6" = {
name = "microee";
packageName = "microee";
@@ -17540,6 +17630,15 @@ let
sha512 = "36xnw59ik9fqym00cmwb5nyzg0l03k70cp413f7639j93wgmzk1mh0xjc7i6zz3r6k9xnwh0g5cm5a1f3y8c6plgy4qld7fm887ywh4";
};
};
+ "mime-db-1.34.0" = {
+ name = "mime-db";
+ packageName = "mime-db";
+ version = "1.34.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.34.0.tgz";
+ sha1 = "452d0ecff5c30346a6dc1e64b1eaee0d3719ff9a";
+ };
+ };
"mime-types-2.0.14" = {
name = "mime-types";
packageName = "mime-types";
@@ -17720,13 +17819,13 @@ let
sha512 = "1slngp5z9rczjirv9lpdwiv1ap4xmp28jxl4r0i5hpds1khlm89qp70ziz8k5h2vwjph6srjqi3gb2yrwwsnnwli6p8yxvlyx7nn80p";
};
};
- "minipass-2.3.0" = {
+ "minipass-2.3.3" = {
name = "minipass";
packageName = "minipass";
- version = "2.3.0";
+ version = "2.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.3.0.tgz";
- sha512 = "1p0pbj1iwnzb7kkqbh5h0vd6byh1l6na1yx69qmbb0wbmwm0qc5g4hn4z6lr8wkzb4kybvd1hjm4hxd93nrdr8ydbqqd9wd1w9bcq4d";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz";
+ sha512 = "1ii40xdjvsqw9k2pyavlv1h4wh5pc3fz4kn91gxpy404kilgp6p9q7q6zba7wa9i7xh9iijnz2pmr8h0wc4yh14lwkqhps4zgvjfc7y";
};
};
"minizlib-1.1.0" = {
@@ -17738,13 +17837,13 @@ let
sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1";
};
};
- "mirror-folder-2.2.0" = {
+ "mirror-folder-3.0.0" = {
name = "mirror-folder";
packageName = "mirror-folder";
- version = "2.2.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.2.0.tgz";
- sha512 = "3js8pwgmj4lzzi6nzl0wp021rhsnz31jpkkzdf35xzwm1l65m6ygjf4hz77vvy3dk2h5jb2d32nvzy26n3d5hswg3nb8s0rylvv510r";
+ url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz";
+ sha512 = "3vdfga0d1l6kpkk3bvkzw6jx6x6n4dn1z1q6rxgnsj0wqhs68v0fgdik67f3r9vll25kdmvwhn67v6p5xqiwkxncc55m90jfw6v07ky";
};
};
"mississippi-2.0.0" = {
@@ -17909,6 +18008,15 @@ let
sha1 = "f38f2c97c9889b0ee18fc6cc392e1e443ad2da8e";
};
};
+ "moment-2.18.1" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.18.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz";
+ sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f";
+ };
+ };
"moment-2.20.1" = {
name = "moment";
packageName = "moment";
@@ -17918,22 +18026,13 @@ let
sha512 = "2zc9qgzsrnp9g4jm4qsb1g1h7w5zmnkz8690br52l83yr9kwhch0mh7r2vdhc706jkrqczia9wbrgkscz0x6k8cwmb3r5jifbpp47v2";
};
};
- "moment-2.22.1" = {
+ "moment-2.22.2" = {
name = "moment";
packageName = "moment";
- version = "2.22.1";
+ version = "2.22.2";
src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.22.1.tgz";
- sha512 = "1hzs2jf69lrw76a4diywsl4451qpm3iavk8f324hgb6x3njb64bd77375kwv4ydllzc5cy1v1mabgciln7yhfd9avn7nvcy6i2n84mj";
- };
- };
- "moment-2.6.0" = {
- name = "moment";
- packageName = "moment";
- version = "2.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.6.0.tgz";
- sha1 = "0765b72b841dd213fa91914c0f6765122719f061";
+ url = "https://registry.npmjs.org/moment/-/moment-2.22.2.tgz";
+ sha1 = "3c257f9839fc0e93ff53149632239eb90783ff66";
};
};
"moment-2.7.0" = {
@@ -18044,13 +18143,13 @@ let
sha1 = "fbbdc28cb0207e49b8a4eb1a4c0cea6c2de794c8";
};
};
- "mqtt-2.17.0" = {
+ "mqtt-2.18.0" = {
name = "mqtt";
packageName = "mqtt";
- version = "2.17.0";
+ version = "2.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mqtt/-/mqtt-2.17.0.tgz";
- sha512 = "1mqfnz7s0gnga7gdh29qj4lfybm3fzsc6w3x610sr50h9dhbi3m5isfri63d87rdlyp5dspy11gpdah2h1ikaq3zi7wfhf6dzj8m1vr";
+ url = "https://registry.npmjs.org/mqtt/-/mqtt-2.18.0.tgz";
+ sha512 = "2f3n5f227fdi44ms963ga3w15b5hgljy6xhr5s9i2x4jcg0vjfb9ib7sqv7n0c00kk1f67n9r5xdqgjc4syab54ip6d5slk71dmg23p";
};
};
"mqtt-packet-5.6.0" = {
@@ -18062,15 +18161,6 @@ let
sha512 = "1gvb90a13pd8xx7mkx6nxfs8cc2ysf58vwccvm1jh5myhwjyvsamj5f9fi398vgk9haxmg25l00lwbs4cdnvs638r5iswga5gd9wh20";
};
};
- "mri-1.1.0" = {
- name = "mri";
- packageName = "mri";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/mri/-/mri-1.1.0.tgz";
- sha1 = "5c0a3f29c8ccffbbb1ec941dcec09d71fa32f36a";
- };
- };
"mri-1.1.1" = {
name = "mri";
packageName = "mri";
@@ -18305,13 +18395,13 @@ let
sha1 = "2a8f2ddf70eed564dff2d57f1e1a137d9f05078b";
};
};
- "multistream-2.1.0" = {
+ "multistream-2.1.1" = {
name = "multistream";
packageName = "multistream";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/multistream/-/multistream-2.1.0.tgz";
- sha1 = "625c267d5c44424ad6294788b5bb4da3dcb32f1d";
+ url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz";
+ sha512 = "0ssriqcskcwvja0aw04frfy7fymv2nwl0dqh3fp03d2cd78yf45r6jlvv1pn87w1b2yzp7iy8mznj7cybxr9dscfkspmsk5m3pjzay5";
};
};
"muri-0.3.1" = {
@@ -18503,13 +18593,13 @@ let
sha1 = "bce5d5d435a5362c7dad7f9e90cd21959589be86";
};
};
- "nanoid-1.0.2" = {
+ "nanoid-1.0.3" = {
name = "nanoid";
packageName = "nanoid";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/nanoid/-/nanoid-1.0.2.tgz";
- sha512 = "2bzl500sgpk3i3ird4iviglsj0gj9a0qhmj4hnky3xmxbl4ahamjhi96rslr8k65j77glmw771m3jm7r5sr5akw6ip5glmxvqkg095h";
+ url = "https://registry.npmjs.org/nanoid/-/nanoid-1.0.3.tgz";
+ sha512 = "04vmzrfmvwj2jz8k4qw7hm3sbin33m5a12ayz1anmx8frrl1ppc4ij1p6zlmb65216kqyclljx72wwyrpjxx3ih6g9s0ssrgj6xd4wp";
};
};
"nanolru-1.0.0" = {
@@ -18597,13 +18687,13 @@ let
sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
};
};
- "natives-1.1.3" = {
+ "natives-1.1.4" = {
name = "natives";
packageName = "natives";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/natives/-/natives-1.1.3.tgz";
- sha512 = "3pbpfnk3183j5mwxprr19bzahf7lxarcka2bad0mhcywnjlj63i55phbxyk0pn4l4v7nj3wv4gjrzdk7xfxxfrjl5rvqf0qbrhr5485";
+ url = "https://registry.npmjs.org/natives/-/natives-1.1.4.tgz";
+ sha512 = "0967ggrqp33pwjsmsa03yx5mbz26h54ldxylqb6aq9svgxyckqa6kg6lw0ia93mz2shkm0qdmhfzw9klc3lqr2p5lhsq52s1xx74vs3";
};
};
"natural-compare-1.4.0" = {
@@ -19048,13 +19138,13 @@ let
sha512 = "06is8ig0mlp85dl5hjp86gp7hwahssfls65gbwcql3awygilv9zlgxngm4yrl54vmkyjk2dk5gbf78r6bm4jgm3qf07xdbwvcgjvqz7";
};
};
- "node-red-node-twitter-0.1.13" = {
+ "node-red-node-twitter-0.1.15" = {
name = "node-red-node-twitter";
packageName = "node-red-node-twitter";
- version = "0.1.13";
+ version = "0.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.13.tgz";
- sha512 = "0wfkdalwxzyyivqxiwiba5j8pyis83lhipiwck2xrbks3w0x1ldf12fgnzx61kq64sdmzpczqwb7588ggh5drj64ymj88vwdbca0bd9";
+ url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.15.tgz";
+ sha512 = "07v6lmlyb0hdg9l86gvlipvs3ahi64fgswkadz1frczpi293hydlbdsy7rb917nf7z0kpcsrnch9d92xwirf4p6yzfhkmdsanrb9ha0";
};
};
"node-ssdp-2.9.1" = {
@@ -19093,15 +19183,6 @@ let
sha1 = "39aef510e5889a3dca9c895b506c73aae1bac048";
};
};
- "node-uuid-1.4.7" = {
- name = "node-uuid";
- packageName = "node-uuid";
- version = "1.4.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
- sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f";
- };
- };
"node-uuid-1.4.8" = {
name = "node-uuid";
packageName = "node-uuid";
@@ -19111,15 +19192,6 @@ let
sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
};
};
- "node-version-1.1.3" = {
- name = "node-version";
- packageName = "node-version";
- version = "1.1.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/node-version/-/node-version-1.1.3.tgz";
- sha512 = "0zdxwcfi3gca8d1jdg3m1gh6b3xxsc7sxpdrnvabc5j5fdgmhcdqaxv3q28rl95ibb7qjcvw7c7k5wzhrvhayb9vn6lr7snabkh8k5c";
- };
- };
"node-wsfederation-0.1.1" = {
name = "node-wsfederation";
packageName = "node-wsfederation";
@@ -19381,13 +19453,13 @@ let
sha1 = "5b1d577e4c8869d6c8603bc89e9cd1637303e46e";
};
};
- "npm-6.0.1" = {
+ "npm-6.1.0" = {
name = "npm";
packageName = "npm";
- version = "6.0.1";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.0.1.tgz";
- sha512 = "03x8626d7ngp160j0lx7vmzpjglvlqbz4gf9kmdndaxna9h81zr8rjhad3jcdkr9j1nnlc1rsr7acsdny5ykl3dwilq0p486zr9cyrp";
+ url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz";
+ sha512 = "3bhkx1ynzp39m6w5mnwfimc25arlpxgs9vgk0w7ai8zw0q6kxyljj4xjvkyxg7wv1f8jbj3k31ifgvy0kff4p3sbp5li53ls851qzvv";
};
};
"npm-bundled-1.0.3" = {
@@ -19570,6 +19642,15 @@ let
sha1 = "3831db968451b9cf6aff9bf95925f1ef8e37b33f";
};
};
+ "nwmatcher-1.4.4" = {
+ name = "nwmatcher";
+ packageName = "nwmatcher";
+ version = "1.4.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nwmatcher/-/nwmatcher-1.4.4.tgz";
+ sha512 = "24xrin7f593d6m3l1461j05p8lx8vw8fcii55q1zf04cgslah3qwcnqs7473kg56dlw5ncmbb2y0sklh1xmdkja14lh71jxvvh9hayy";
+ };
+ };
"oauth-0.9.14" = {
name = "oauth";
packageName = "oauth";
@@ -19922,22 +20003,13 @@ let
sha1 = "707375e59ab9f73025899727679b20328171c9aa";
};
};
- "openssl-self-signed-certificate-1.1.6" = {
- name = "openssl-self-signed-certificate";
- packageName = "openssl-self-signed-certificate";
- version = "1.1.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/openssl-self-signed-certificate/-/openssl-self-signed-certificate-1.1.6.tgz";
- sha1 = "9d3a4776b1a57e9847350392114ad2f915a83dd4";
- };
- };
- "openssl-wrapper-0.2.1" = {
+ "openssl-wrapper-0.3.4" = {
name = "openssl-wrapper";
packageName = "openssl-wrapper";
- version = "0.2.1";
+ version = "0.3.4";
src = fetchurl {
- url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.2.1.tgz";
- sha1 = "ff2d6552c83bb14437edc0371784704c75289473";
+ url = "https://registry.npmjs.org/openssl-wrapper/-/openssl-wrapper-0.3.4.tgz";
+ sha1 = "c01ec98e4dcd2b5dfe0b693f31827200e3b81b07";
};
};
"opentracing-0.13.0" = {
@@ -20075,15 +20147,6 @@ let
sha1 = "fd565a9af8eb4473ba69b6ed8a34352cb552f126";
};
};
- "ordered-read-streams-0.3.0" = {
- name = "ordered-read-streams";
- packageName = "ordered-read-streams";
- version = "0.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.3.0.tgz";
- sha1 = "7137e69b3298bb342247a1bbee3881c80e2fd78b";
- };
- };
"ordered-read-streams-1.0.1" = {
name = "ordered-read-streams";
packageName = "ordered-read-streams";
@@ -20246,13 +20309,13 @@ let
sha1 = "9c9456989e9f6588017b0434d56097675c3da05e";
};
};
- "p-limit-1.2.0" = {
+ "p-limit-1.3.0" = {
name = "p-limit";
packageName = "p-limit";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/p-limit/-/p-limit-1.2.0.tgz";
- sha512 = "2g0r6r6bbcdp6lrxbj2zbcihr1byd55kycm1ijz80l2zvmcvhqsbd7rhmfqylp004d61fibvmwzk4ig89dbyk4azpwgll7dllhsvwv3";
+ url = "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz";
+ sha512 = "3sh18calqxbww99pxc84hldflmj0i915g8npihlmazw8wjqabihi9475v0ll3fhx44sxn35j014j1k5d2xr73q3mpwkmx09n2q1gxxy";
};
};
"p-locate-2.0.0" = {
@@ -20489,6 +20552,15 @@ let
sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
};
};
+ "parse-numeric-range-0.0.2" = {
+ name = "parse-numeric-range";
+ packageName = "parse-numeric-range";
+ version = "0.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse-numeric-range/-/parse-numeric-range-0.0.2.tgz";
+ sha1 = "b4f09d413c7adbcd987f6e9233c7b4b210c938e4";
+ };
+ };
"parse-passwd-1.0.0" = {
name = "parse-passwd";
packageName = "parse-passwd";
@@ -20516,13 +20588,13 @@ let
sha512 = "31lm2ifw06p00gc0qvxinqvy8afhq0lrg3fpf5rrhb6dqx3avd3ykps8sjv2nj91wf06k62yvn9cvf1f243yzl9xpzy9255556x8bnb";
};
};
- "parse-torrent-6.0.0" = {
+ "parse-torrent-6.0.1" = {
name = "parse-torrent";
packageName = "parse-torrent";
- version = "6.0.0";
+ version = "6.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.0.0.tgz";
- sha512 = "1yr12djspi83lybgycwsaz5wbikbsazwhk2w4xf3niri1lx0p3965br1xbsjw1m0xrzc71q6mw5xz44w0hd3ic5wmb2v62abl7kld16";
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-6.0.1.tgz";
+ sha512 = "0mgzmnc5qrvp4lzd8cnpnlbz8pjc9s6vcx5q7mbpgv5pamn2cs1lmd3yircfkrdz1f24ss7xsfz0zan5xhxi5gwj9y4b5k8y3fb7f5n";
};
};
"parse-torrent-file-2.1.4" = {
@@ -20534,6 +20606,15 @@ let
sha1 = "32d4b6afde631420e5f415919a222b774b575707";
};
};
+ "parse5-1.5.1" = {
+ name = "parse5";
+ packageName = "parse5";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/parse5/-/parse5-1.5.1.tgz";
+ sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
+ };
+ };
"parse5-3.0.3" = {
name = "parse5";
packageName = "parse5";
@@ -20894,6 +20975,15 @@ let
sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d";
};
};
+ "path-to-regexp-2.2.1" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "2.2.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz";
+ sha512 = "0cndhcd7swpnjv1gwkjb1lqcjcd09is4c4ryjycs39jil9ngklsk7n0l6b09qapj68ni9r924albq2lyghrlg5mmq3brrfslh7mpvw2";
+ };
+ };
"path-type-1.1.0" = {
name = "path-type";
packageName = "path-type";
@@ -21102,22 +21192,22 @@ let
sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
};
};
- "pino-4.14.0" = {
+ "pino-4.16.1" = {
name = "pino";
packageName = "pino";
- version = "4.14.0";
+ version = "4.16.1";
src = fetchurl {
- url = "https://registry.npmjs.org/pino/-/pino-4.14.0.tgz";
- sha512 = "1x3dsg8pg321khfaf3dd91ykkwhdn60wk169l3b2kp8wkbw242ld99qiv7cmbn76ccba75wdydv8mb2v4fg58lrfnn7jf5pvk2x7qwy";
+ url = "https://registry.npmjs.org/pino/-/pino-4.16.1.tgz";
+ sha512 = "35gg7lc0k4ry5wq0a786amc4n7lkbwjf57y7qywv4xy5wn4zfwf756gxgp6bybgqzria04ay7hn2gn3qfiap1xzck7amjjcjh5whgs9";
};
};
- "pino-std-serializers-1.2.0" = {
+ "pino-std-serializers-2.1.0" = {
name = "pino-std-serializers";
packageName = "pino-std-serializers";
- version = "1.2.0";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-1.2.0.tgz";
- sha512 = "0h8xndhy3qwgkycbmypfp7a2dvk875prgnfg46zj9vz14i24xqqdw1xp748hkv2xl2phwhyaa82yr1ym6jn6r61527kz5f7f8qird78";
+ url = "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.1.0.tgz";
+ sha512 = "2jpbixd78yd4pglp7x635pxj872kw9j08dcjqw0g8rmdpnwcacm9ah83ydqzxqxkhx3m10ia753rn7xw8f39qi6ycxrc6pz02nsz99n";
};
};
"pkg-dir-2.0.0" = {
@@ -21624,15 +21714,6 @@ let
sha1 = "bbcfd248725259f2bb115a27bfa8d65dc420f931";
};
};
- "promise-timeout-1.3.0" = {
- name = "promise-timeout";
- packageName = "promise-timeout";
- version = "1.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/promise-timeout/-/promise-timeout-1.3.0.tgz";
- sha512 = "2m6ixvg01qqcrywfm8jv1phv3irv63qbk901nq6wg3vhvs4wg5c8qz45fs8rzw8yr1h0p6f7dyb0ndll2irpcpkz1z2x6id9m60s877";
- };
- };
"promised-temp-0.1.0" = {
name = "promised-temp";
packageName = "promised-temp";
@@ -21849,6 +21930,15 @@ let
sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
};
};
+ "psl-1.1.27" = {
+ name = "psl";
+ packageName = "psl";
+ version = "1.1.27";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/psl/-/psl-1.1.27.tgz";
+ sha512 = "0q5srdkdq8sz6gm0w48vvvj0azp2w2f41vxw4ypz9vkbyj9fsmxaf5aq3hlckx36mk84lvfhga9b7iik86xpj04nmylly20kdglkjr7";
+ };
+ };
"pstree.remy-1.1.0" = {
name = "pstree.remy";
packageName = "pstree.remy";
@@ -22101,22 +22191,13 @@ let
sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
};
};
- "punycode-2.1.0" = {
+ "punycode-2.1.1" = {
name = "punycode";
packageName = "punycode";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz";
- sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d";
- };
- };
- "q-0.9.7" = {
- name = "q";
- packageName = "q";
- version = "0.9.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-0.9.7.tgz";
- sha1 = "4de2e6cb3b29088c9e4cbc03bf9d42fb96ce2f75";
+ url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
+ sha512 = "381vqgh5xkqzrr6cxbzfykgnnk83m7qgpx3wjwj1hddn3sg2aibjxyr30rajpgv4js0cqknrbzwbfk5ryhiiyigzfjrk3zysy6i26sx";
};
};
"q-1.0.1" = {
@@ -22398,6 +22479,15 @@ let
sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2";
};
};
+ "random-access-memory-3.0.0" = {
+ name = "random-access-memory";
+ packageName = "random-access-memory";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz";
+ sha512 = "160skc30mby806rmlwilb56h0r5bcc3sf2dr980k4a93c3bhnlnjcfiqbx1k5sjljqiygs6sn014gpgilzhhx9c1vdcyfhkz45pkxrv";
+ };
+ };
"random-access-storage-1.2.0" = {
name = "random-access-storage";
packageName = "random-access-storage";
@@ -22488,13 +22578,13 @@ let
sha1 = "01ba954276052b783900e63d6118d8fcf3875d7f";
};
};
- "raven-2.4.2" = {
+ "raven-2.6.2" = {
name = "raven";
packageName = "raven";
- version = "2.4.2";
+ version = "2.6.2";
src = fetchurl {
- url = "https://registry.npmjs.org/raven/-/raven-2.4.2.tgz";
- sha1 = "0129e2adc30788646fd530b67d08a8ce25d4f6dc";
+ url = "https://registry.npmjs.org/raven/-/raven-2.6.2.tgz";
+ sha1 = "c92f30890e2dfcd15258d184e43e39326e58032e";
};
};
"raw-body-0.0.3" = {
@@ -22551,13 +22641,13 @@ let
sha512 = "27ygzjzpajjmz2bl1f7y1bla7wdw65w912r4i29x9p1r0pa5jivip658vwlkqq77n1nc619w1p52818mvihxhks4dlbc1pmbc925szm";
};
};
- "raw-socket-1.6.0" = {
+ "raw-socket-1.6.1" = {
name = "raw-socket";
packageName = "raw-socket";
- version = "1.6.0";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.6.0.tgz";
- sha512 = "2268lfw8q4mz0v988by3y0hbad848sx7kmmqm3rk7nbj7xc3sy045adcdbnh3c8vrhk57ljk61wshphgr69y8pw3987f1if369ny7pr";
+ url = "https://registry.npmjs.org/raw-socket/-/raw-socket-1.6.1.tgz";
+ sha512 = "0fhy1r7pyl4v2zmjz1fmvqbdmjscib47pbc5di3cn965j7zj3y5h2bs8x0r131i4s7xj47c36na1cgpppp71kvdc1qs78y4bf7fpa45";
};
};
"rc-0.4.0" = {
@@ -22569,13 +22659,13 @@ let
sha1 = "ce24a2029ad94c3a40d09604a87227027d7210d3";
};
};
- "rc-1.2.7" = {
+ "rc-1.2.8" = {
name = "rc";
packageName = "rc";
- version = "1.2.7";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz";
- sha512 = "30b4pqzhk8f4ppzyk5diwxac7xpf4hd3rysyin012l59da9v5iaai4wd6yzlz3rjspfvvy191q6qcsw47mwlw9y07n35kzq23rw7lid";
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz";
+ sha512 = "0xhy1n9n3y6cp28f8f0f2mi0xzc7ay1g5nhbp64fyvcwv9q30zq2zvyc5q2d0al8aa0hx101yq2y6d2ln4r5jxnqifh1pd3la1ccxnb";
};
};
"rc-config-loader-2.0.1" = {
@@ -22803,13 +22893,13 @@ let
sha1 = "85204b54dba82d5742e28c96756ef43af50e3384";
};
};
- "record-cache-1.0.2" = {
+ "record-cache-1.1.0" = {
name = "record-cache";
packageName = "record-cache";
- version = "1.0.2";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/record-cache/-/record-cache-1.0.2.tgz";
- sha512 = "2iykkjgwmmcma3306cjzsq34dg6rxfvwr4r11fyq56dfsybp9qwnvhc4fbi3l854zfj71fbw887bgab78ykr6b3m9gdw2lpf5sa53c0";
+ url = "https://registry.npmjs.org/record-cache/-/record-cache-1.1.0.tgz";
+ sha512 = "3shd2b83m3bh5bcli5zl99k652hv5b06ldcnjv48gwarfxh02smyy2vr1z3z2zi9p9zgp41bhsgql042a66azy9d78v2mq9n6sdpjmv";
};
};
"recursive-readdir-2.2.2" = {
@@ -23253,6 +23343,15 @@ let
sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
};
};
+ "request-2.83.0" = {
+ name = "request";
+ packageName = "request";
+ version = "2.83.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/request/-/request-2.83.0.tgz";
+ sha512 = "0by1djkn836sqd9pk2c777wcjvp34qbk1plx7s4lmykljrblpjc64dvn6ni2vyxsbyk33wnl6avym8vgw0ggr4226xakck8mw7y07cm";
+ };
+ };
"request-2.85.0" = {
name = "request";
packageName = "request";
@@ -23262,13 +23361,13 @@ let
sha512 = "2d3hg10zs5ycnr8prmiwdhacf88fl0x0bi6szs0z2r07zcbk419laixwpjp8sqapbc2ifyyih7p3r60wgr58bmcncz3pqnx523c8zph";
};
};
- "request-2.86.0" = {
+ "request-2.87.0" = {
name = "request";
packageName = "request";
- version = "2.86.0";
+ version = "2.87.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.86.0.tgz";
- sha512 = "37xa5i4dk3fkcl9gxrzxkjjy6vcqn6bcc61bwq6kjpqrg5i01yc6xn0iq3zy68vqqav93k1kgr2xdabp22p0bfynfcbzxp8ms3n41h5";
+ url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz";
+ sha512 = "0vnsbflzj7gxa33r47bzsiaf7jc00b9iqkqdz8l7n9x5dgdgbq1qpcqqslds1arazipz8pjr4m5rf4ikg4d59d49gn9dky0ds921jkx";
};
};
"request-2.9.203" = {
@@ -23757,13 +23856,22 @@ let
sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
};
};
- "rxjs-5.5.10" = {
+ "rxjs-5.5.11" = {
name = "rxjs";
packageName = "rxjs";
- version = "5.5.10";
+ version = "5.5.11";
src = fetchurl {
- url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.10.tgz";
- sha512 = "3lc28jznaclc3qcipvf29dnfa11m4xdzyr4gkas29pgp0s4c44f8cyzsxyfwkqzqa8k06q7j7hl5wwyy671d8gdkwl9j76lh2cf4629";
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-5.5.11.tgz";
+ sha512 = "029r8qw66ax8g757mxnmvzr302rv7b2lw33sqv7b81qnbkms9qz0biijvpm2bv3fd3zpydal11iygnf061w2rmray10sz0n9knwxf6x";
+ };
+ };
+ "rxjs-6.2.0" = {
+ name = "rxjs";
+ packageName = "rxjs";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.0.tgz";
+ sha512 = "01sy4p9dqb8xiv59c5dn2lwza4jm6dv1hsy9v4ifj60kwh1l8iqar17lvgxmhjpqjaqgqkrx6kx0kv7l121704v16if4y5sxgkdy758";
};
};
"safe-buffer-5.0.1" = {
@@ -23802,13 +23910,13 @@ let
sha1 = "3e76723e38dfdda13c9b1d29a1e07ffee4b30b57";
};
};
- "safe-json-stringify-1.1.0" = {
+ "safe-json-stringify-1.2.0" = {
name = "safe-json-stringify";
packageName = "safe-json-stringify";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.1.0.tgz";
- sha512 = "30fqwpa7qn9rsk4va9ih61jqhm0x59s3wa2n5kff1ygdwpi9hxmpig24y1vhdv1di2pfd6gy0iwkryix6lc5gff7pcb3xa7l58nsc0k";
+ url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.2.0.tgz";
+ sha512 = "2z2n4cbf392dw9gbghn8paj8jsqkijbkpb6gf8z2nm4kdkzqwjjb7szpadczbcxbd5i035g2dha2yy6vgmv9wm47g8d7ffrd63iwzw0";
};
};
"safe-regex-1.1.0" = {
@@ -24189,6 +24297,15 @@ let
sha1 = "935d240cdfe0f5805307fdfe967d88942a2cbcf0";
};
};
+ "serve-handler-3.1.0" = {
+ name = "serve-handler";
+ packageName = "serve-handler";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-handler/-/serve-handler-3.1.0.tgz";
+ sha512 = "2aha60igym9agandgfm7r4wy0g4ql85bs904k1556hdw098s3akj72c8mwb3ws5ldsy3ac5iw79f0ryjk3cac0fg2n3n9jhjy11mnh9";
+ };
+ };
"serve-index-1.7.3" = {
name = "serve-index";
packageName = "serve-index";
@@ -24423,6 +24540,15 @@ let
sha512 = "0c12wlk7s62rnm6d8cc4frddll01p5f117v2ss075y9zxxfpl5qr322bw7qdksgl7ljfc04rv2wyn6qyjv1m5953ywmgk39srif43v0";
};
};
+ "shelljs-0.8.2" = {
+ name = "shelljs";
+ packageName = "shelljs";
+ version = "0.8.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.8.2.tgz";
+ sha512 = "1nj08kpx8435xrk1w1jk0g6mlcfd3jim2px55dmpg97rnjd2md5fzhrqw0wpk54ipfaclrhkly2z51dg6xbq8fwi9yngnc0n0vdw5d5";
+ };
+ };
"shellwords-0.1.1" = {
name = "shellwords";
packageName = "shellwords";
@@ -24450,13 +24576,13 @@ let
sha1 = "3ff21f198cad2175f9f3b781853fd94d0d19b590";
};
};
- "sign-addon-0.3.0" = {
+ "sign-addon-0.3.1" = {
name = "sign-addon";
packageName = "sign-addon";
- version = "0.3.0";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.0.tgz";
- sha512 = "2czjlarf0pa0svlhbdb9i6hrk429za0gsialmxbmgwgbhyjx7mxkgf5mww4rkmsbncdi2va8p64rxjxf7gv8b0jd2a87cvm7rw5pky5";
+ url = "https://registry.npmjs.org/sign-addon/-/sign-addon-0.3.1.tgz";
+ sha512 = "3a5wipkwz1q19jlw99bsrjinimlb6a21c4sihrk1aqx0pdkclskjmayby3j1xwx1l0ngba0asar542d2pgi33i99gypl8dwpwdsirkx";
};
};
"signal-exit-3.0.2" = {
@@ -24522,13 +24648,13 @@ let
sha512 = "021na7dsxyawdzbif9l56dzgvzdd5s4kwm09rb8hg3abvr94i05arvn0z6q5vmpi24bmnnp2i677rf7964fza0frx3zx406a82x6kbm";
};
};
- "simple-git-1.92.0" = {
+ "simple-git-1.95.1" = {
name = "simple-git";
packageName = "simple-git";
- version = "1.92.0";
+ version = "1.95.1";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-git/-/simple-git-1.92.0.tgz";
- sha1 = "6061468eb7d19f0141078fc742e62457e910f547";
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-1.95.1.tgz";
+ sha512 = "3ssfxzdgj6ycrklss1hxrmwcfsncx9bccnsxrkdknw68p2g9is3j3dc2kk748jn0kky9q7ajdjqvv6k18n6qbj9llaiy5kh9k1i7mbj";
};
};
"simple-lru-cache-0.0.2" = {
@@ -24549,13 +24675,13 @@ let
sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3";
};
};
- "simple-peer-9.1.1" = {
+ "simple-peer-9.1.2" = {
name = "simple-peer";
packageName = "simple-peer";
- version = "9.1.1";
+ version = "9.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.1.tgz";
- sha512 = "27d9j7ah5ync1cndpinw966zb81lc9z6pc38y8dkc1l5rxdkv3fmf5ilhf0jq94m3qvb2ipldjmvbs1sza5ccvazwlr4pjgfr07ym23";
+ url = "https://registry.npmjs.org/simple-peer/-/simple-peer-9.1.2.tgz";
+ sha512 = "3csdx7k87pxpga7kmqdwl6fxyrj0q2kfv4174qcp5nkiyr19458p45jmvr3rss656ldas23p8jd1hyp22bf51x3934cprb8isg9ci9i";
};
};
"simple-plist-0.2.1" = {
@@ -24648,13 +24774,13 @@ let
sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9";
};
};
- "siphash24-1.1.0" = {
+ "siphash24-1.1.1" = {
name = "siphash24";
packageName = "siphash24";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz";
- sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w";
+ url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz";
+ sha512 = "1ach37ibirvd6yxa42ffkn1dwfcar70pjbnj9alrf713n1bdzb4y44nbrm5bi3swpvqrr7f8sbbcyj586wn049hxmyawf8kia6b18kl";
};
};
"skin-tone-1.0.0" = {
@@ -24855,13 +24981,13 @@ let
sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
};
};
- "snyk-1.80.1" = {
+ "snyk-1.82.1" = {
name = "snyk";
packageName = "snyk";
- version = "1.80.1";
+ version = "1.82.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk/-/snyk-1.80.1.tgz";
- sha1 = "f92d1fea82833a39a607598f847e2699f033be5c";
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.82.1.tgz";
+ sha1 = "df0abf9d398507b512e2749790da67e56c3a853e";
};
};
"snyk-config-2.1.0" = {
@@ -24873,13 +24999,13 @@ let
sha512 = "0r81kdx8az7nfiv0r36ggarzdw5rzai06qivv1r48xdfax2gdz9axxjhnwyzhf3mpz6245fz2ilc8l349h85s01yh05rxjsjvbg6m8g";
};
};
- "snyk-go-plugin-1.5.0" = {
+ "snyk-go-plugin-1.5.1" = {
name = "snyk-go-plugin";
packageName = "snyk-go-plugin";
- version = "1.5.0";
+ version = "1.5.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.0.tgz";
- sha512 = "20i967dg1n1pir2j0ivpd72i5j3y9xa3826jvl8jspmg9wfnpfq6x0isp3irw42zrcvflshi0nhk3sckcj3lqgjaw82g14wda28g80z";
+ url = "https://registry.npmjs.org/snyk-go-plugin/-/snyk-go-plugin-1.5.1.tgz";
+ sha512 = "1zmpzigws5iqn3zfv0800m0hnlxf43vbwgi3220mafnij8g8narf0dlaywdbacvhbv1l0mmaj78l3pwkdg5slpiwl5zarrr7lwwkqzh";
};
};
"snyk-gradle-plugin-1.3.0" = {
@@ -24936,13 +25062,13 @@ let
sha512 = "3pmnx9hjrlz0gpxy6b2gia65h1rpdalc1g68s759p0ik0xq5rgi8hm3cqnvicg24cgqm8qwdsf5v7bcfxcj3m6yi7rc2wgkf0vahj08";
};
};
- "snyk-python-plugin-1.6.0" = {
+ "snyk-python-plugin-1.6.1" = {
name = "snyk-python-plugin";
packageName = "snyk-python-plugin";
- version = "1.6.0";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.6.0.tgz";
- sha512 = "06n8zx8az0afp7b2gnav664hzmjxg5dp96a5vmy5a58dhr278x6fl7pgsd332ykxanphrm59dsm0hyka2s8wibam2v8wjbgm4xxrlzz";
+ url = "https://registry.npmjs.org/snyk-python-plugin/-/snyk-python-plugin-1.6.1.tgz";
+ sha512 = "3z8rghcn45p0mmj39ivns6arnnqshmxrqbcrmdccawnffkw9jrnrsk6w64jqk524c1iw770hj5fd8zrcfbncccl67qgd9vp026gjfpb";
};
};
"snyk-resolve-1.0.1" = {
@@ -25026,13 +25152,13 @@ let
sha1 = "c1a4590ceff87ecf13c72652f046f716b29e6014";
};
};
- "socket.io-2.1.0" = {
+ "socket.io-2.1.1" = {
name = "socket.io";
packageName = "socket.io";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz";
- sha512 = "2wkm6yqxvn8wk51rbakza3zxg3rknzfgmwqrbzvnlacf1yylplsr61i67m01sg8x7589ymj6x3z266ngvqd6qyyakdx4dlnsl4bfbr9";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz";
+ sha512 = "343q0n5zxyjzzcmyq7dr3naqbrpl3x469y1ff8zxxr104np1l5l9w1d0vl7nncbaxhxymwplbzfy9sbipjrbp5d001nvv9ysymnmr5c";
};
};
"socket.io-adapter-0.2.0" = {
@@ -25098,13 +25224,13 @@ let
sha1 = "0918a552406dc5e540b380dcd97afc4a64332f8e";
};
};
- "socket.io-client-2.1.0" = {
+ "socket.io-client-2.1.1" = {
name = "socket.io-client";
packageName = "socket.io-client";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.0.tgz";
- sha512 = "1xkd66603gshd7s080j107ms405z18mljc7gbmnkllph1zfg82sz5mgvsyhi1zs3bbv5lgvv29gxfn624gpv46v5mwy610wpnj8zwjf";
+ url = "https://registry.npmjs.org/socket.io-client/-/socket.io-client-2.1.1.tgz";
+ sha512 = "0cz212gqzp9irm3pk6inzssq4skpihd5i0xszrwv1j27igvqdwvnrimk8ah6px53j77yjhhw5q96fl74pj7c852iqgic5rf235ca6cg";
};
};
"socket.io-parser-2.1.2" = {
@@ -25251,13 +25377,13 @@ let
sha1 = "0df42a679d7ae4aed9c30ba2f55807d979910fcc";
};
};
- "sorted-array-functions-1.1.0" = {
+ "sorted-array-functions-1.2.0" = {
name = "sorted-array-functions";
packageName = "sorted-array-functions";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.1.0.tgz";
- sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf";
+ url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz";
+ sha512 = "1759vgxawg63w16nnrklz5azzj9kklrlz5sdd643y8jp8qz7hiwdn5ydlnwx2ns4j761x4rqllh6fvlzjqgi3dixy7dl9hr28z66smi";
};
};
"sorted-indexof-1.0.0" = {
@@ -25395,13 +25521,13 @@ let
sha512 = "3xy2ylp2qm8jwglcsf2fjwvn5w56im64w7yjghyv9ilw2fc5qj65w8h38lpls27m3b5prv8x9cnfmrhkfk7rlb52hmf810ycs0i7abq";
};
};
- "source-map-support-0.5.4" = {
+ "source-map-support-0.5.6" = {
name = "source-map-support";
packageName = "source-map-support";
- version = "0.5.4";
+ version = "0.5.6";
src = fetchurl {
- url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.4.tgz";
- sha512 = "1vfdnbvldylljhm89hfxwsr3pd108my5z1l9gx8ld1j2v2bfpranqc7kc8i9mj24lbq6c4xxs181anrsa5ypbfd3r08v3c1dqyd4i1w";
+ url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.6.tgz";
+ sha512 = "3x2mxqlzmqrwgf52cfc1pspxkzfwzasapfbrgcl50akjzpn8xva5nwm6xp8z1l3f2acnr5rsp7hhm6nfn8vvxk6gy7slw737q9rg0ip";
};
};
"source-map-url-0.4.0" = {
@@ -25593,6 +25719,15 @@ let
sha1 = "04e6926f662895354f3dd015203633b857297e2c";
};
};
+ "sprintf-js-1.1.1" = {
+ name = "sprintf-js";
+ packageName = "sprintf-js";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.1.1.tgz";
+ sha1 = "36be78320afe5801f6cea3ee78b6e5aab940ea0c";
+ };
+ };
"srcset-1.0.0" = {
name = "srcset";
packageName = "srcset";
@@ -25629,13 +25764,13 @@ let
sha1 = "512675a28f08f1e581779e1989ab1e13effb49e4";
};
};
- "sshpk-1.14.1" = {
+ "sshpk-1.14.2" = {
name = "sshpk";
packageName = "sshpk";
- version = "1.14.1";
+ version = "1.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz";
- sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb";
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz";
+ sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
};
};
"sshpk-1.7.1" = {
@@ -25683,15 +25818,6 @@ let
sha1 = "547c70b347e8d32b4e108ea1a2a159e5fdde19c0";
};
};
- "stack-trace-0.0.9" = {
- name = "stack-trace";
- packageName = "stack-trace";
- version = "0.0.9";
- src = fetchurl {
- url = "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz";
- sha1 = "a8f6eaeca90674c333e7c43953f275b451510695";
- };
- };
"stat-mode-0.2.2" = {
name = "stat-mode";
packageName = "stat-mode";
@@ -25845,13 +25971,13 @@ let
sha512 = "2h4ymczmf5aqldga4sj8acqlzc3almazi2vwiv7kx63k28sz1wwkqgzzv1hn47jf49k1x94w25fmmi001h5mj3n6g9in1s6b1n5vkcr";
};
};
- "stream-http-2.8.2" = {
+ "stream-http-2.8.3" = {
name = "stream-http";
packageName = "stream-http";
- version = "2.8.2";
+ version = "2.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.2.tgz";
- sha512 = "2acp8k8lfjmh87zlzmx7ah9wwxsbjdff6mmms6c24kkrjqvgh0iv6mzbaakmspnx8kc9ysw3ba378xkjc95nfiyfg7m05va32n5yna2";
+ url = "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz";
+ sha512 = "19y2xbs1xzzpjwfdczl21d0d76ahd7013cr3mhfa6a8nbwwv9jpncng8idf0g8hnmnq2mcl3xh912rjlasl06wsz44qw3j7hdya8d7r";
};
};
"stream-parser-0.3.1" = {
@@ -26241,15 +26367,6 @@ let
sha1 = "1cb45aaf57530f4caf86c7f75179d2c9a51dd572";
};
};
- "strip-bom-stream-1.0.0" = {
- name = "strip-bom-stream";
- packageName = "strip-bom-stream";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-1.0.0.tgz";
- sha1 = "e7144398577d51a6bed0fa1994fa05f43fd988ee";
- };
- };
"strip-bom-stream-2.0.0" = {
name = "strip-bom-stream";
packageName = "strip-bom-stream";
@@ -26349,13 +26466,13 @@ let
sha512 = "31a8vlzg4gwak3cx7n0lask77xyqpf5mz4ckphc10ykmb9r2lais7v4w8a8xij9lv2115xjnl7avkwp2l7cw3kbc3lpjsghl72757lk";
};
};
- "strong-data-uri-1.0.5" = {
+ "strong-data-uri-1.0.6" = {
name = "strong-data-uri";
packageName = "strong-data-uri";
- version = "1.0.5";
+ version = "1.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.5.tgz";
- sha512 = "2mwdm0k873sdi2bramixwg6fafqyi2313scq32fsnq2qa5hqbpdln34rc9a67wd15mi05v3c6bfiw6r4h7dy4aac1q3ac8b2ig6j96n";
+ url = "https://registry.npmjs.org/strong-data-uri/-/strong-data-uri-1.0.6.tgz";
+ sha512 = "37yd0qnzaq13fz3972b3fckz0hcpq2xxhjbz769vl8fb35sd3ycr5qs181d5in9cq08qlf59c9xl5sylyvplm5i4bv19fplxdjw276f";
};
};
"strong-log-transformer-1.0.6" = {
@@ -26466,13 +26583,13 @@ let
sha512 = "158ng0v99ac7csif7v6153bp63nxmlz2a613z8y09sk8jsj2rpalscgg0lfzdlpfdd5612jqsnkvrz0137inka2qjcmcjrmy2xhrkaf";
};
};
- "supports-color-4.4.0" = {
+ "supports-color-5.1.0" = {
name = "supports-color";
packageName = "supports-color";
- version = "4.4.0";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz";
- sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c";
+ url = "https://registry.npmjs.org/supports-color/-/supports-color-5.1.0.tgz";
+ sha512 = "04q31rfgx0r6jgs2r1k6kmzab1vw3qrikiv8wsl86rxll77vdalrag7r4ypww3qp6v8k3avsjc0jxd3ga45fb5f51akm30a9b100ba7";
};
};
"supports-color-5.4.0" = {
@@ -26493,6 +26610,15 @@ let
sha1 = "8340fc4702c3122df5d22288f88283f513d3fdd4";
};
};
+ "symbol-tree-3.2.2" = {
+ name = "symbol-tree";
+ packageName = "symbol-tree";
+ version = "3.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.2.tgz";
+ sha1 = "ae27db38f660a7ae2e1c3b7d1bc290819b8519e6";
+ };
+ };
"sync-request-3.0.0" = {
name = "sync-request";
packageName = "sync-request";
@@ -26620,13 +26746,13 @@ let
sha512 = "1ryql8hyrrhd0gdd71ishbj3cnr8ay0i0wpvy9mj3hjiy35cc1wa0h07wz8jwils98j00gr03ix3cf2j1xm43xjn9bsavwn1yr4a0x5";
};
};
- "tar-4.4.2" = {
+ "tar-4.4.4" = {
name = "tar";
packageName = "tar";
- version = "4.4.2";
+ version = "4.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.2.tgz";
- sha512 = "25ypdsz6l4xmg1f89pjy8s773j3lzx855iiakbdknz115vxyg4p4z1j0i84iyjpzwgfjfs2l2njpd0y2hlr5sh4n01nh6124zs09y85";
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz";
+ sha512 = "3iy3r78nycp0ly9nldcygkklrc7jas93k4bis6ypiw5fqlsygqyylgwl1378qf61r1yh2lsd11vrjr8hwfzw4j25d95yd0zhv265bws";
};
};
"tar-fs-1.16.2" = {
@@ -27061,15 +27187,6 @@ let
sha512 = "0drg2bck1cj8677rgs1l98v7vqaxawcqh6ja87qilwnd719l5y0lzv5ssn3pcwa37fdbg4188y6x15a90vkllyvfpd9v7fai2b8j44d";
};
};
- "to-absolute-glob-0.1.1" = {
- name = "to-absolute-glob";
- packageName = "to-absolute-glob";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-0.1.1.tgz";
- sha1 = "1cdfa472a9ef50c239ee66999b662ca0eb39937f";
- };
- };
"to-absolute-glob-2.0.2" = {
name = "to-absolute-glob";
packageName = "to-absolute-glob";
@@ -27196,15 +27313,6 @@ let
sha512 = "16a6xk2s4y4llqya2gjgwzlvb0512sw8ahxfd4b225j2sd9i52zca1w65d69wd7frzhcz2ak3gf3r3y9ws727b5gnp1n7wh2j3gkciv";
};
};
- "topo-1.1.0" = {
- name = "topo";
- packageName = "topo";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/topo/-/topo-1.1.0.tgz";
- sha1 = "e9d751615d1bb87dc865db182fa1ca0a5ef536d5";
- };
- };
"torrent-discovery-5.4.0" = {
name = "torrent-discovery";
packageName = "torrent-discovery";
@@ -27295,6 +27403,15 @@ let
sha512 = "0ncm6j3cjq1f26mzjf04k9bkw1b08w53s4qa3a11c1bdj4pgnqv1422c1xs5jyy6y1psppjx52fhagq5zkjkgrcpdkxcdiry96r77jd";
};
};
+ "tough-cookie-2.4.2" = {
+ name = "tough-cookie";
+ packageName = "tough-cookie";
+ version = "2.4.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.2.tgz";
+ sha512 = "3misq0zgh4jfhiq1yy0zasmg3zrjk1g3a4hjh7ixj9wcfyjqfw1x2h2265s9013ah2az6mx60wp8np5677pkqkwip55yj95gzwnda5x";
+ };
+ };
"township-client-1.3.2" = {
name = "township-client";
packageName = "township-client";
@@ -27304,6 +27421,24 @@ let
sha512 = "3da1j7ba37apy5kqlv436dz265b8ni63ca069gy4wrj9krq236j7sp0r259ia6jk1a8d7qqg37kkk8kwmnaqwcy90wnwnjxxp8bnf78";
};
};
+ "toxic-1.0.0" = {
+ name = "toxic";
+ packageName = "toxic";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/toxic/-/toxic-1.0.0.tgz";
+ sha1 = "f1154d8b6ac21875ac943a9f7408df2dfe164ea2";
+ };
+ };
+ "tr46-0.0.3" = {
+ name = "tr46";
+ packageName = "tr46";
+ version = "0.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz";
+ sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a";
+ };
+ };
"tr46-1.0.1" = {
name = "tr46";
packageName = "tr46";
@@ -27439,13 +27574,13 @@ let
sha1 = "dd1a6d15630515663d8475f6f24edf2f800ebb1b";
};
};
- "tslib-1.9.1" = {
+ "tslib-1.9.2" = {
name = "tslib";
packageName = "tslib";
- version = "1.9.1";
+ version = "1.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/tslib/-/tslib-1.9.1.tgz";
- sha512 = "115mr4g9y5y6k797nyyxwca0rhx5ax7bqdf3i3kw14dh5n64h27f3v3pnc0asccwllfdyq7azc2lhnq3ibplf3afg5n5607dx5wzxva";
+ url = "https://registry.npmjs.org/tslib/-/tslib-1.9.2.tgz";
+ sha512 = "0ms6i864mv97lfwlmnzpbf6f539kqcsnj8qbyj12h46r0zszxpk8gsfchs5s7spfwpnapfmbaakx8xiqg0v4rxqmz22nnkpi5ggjlq1";
};
};
"tsscmp-1.0.5" = {
@@ -27646,6 +27781,15 @@ let
sha512 = "2vwhgmdrdw42wwaqbmrnz7zy197hrxl6smkmhrb3n93vsjmqg24a4r10czdralib6qpj82bx2gw97r3gxlspj7y54jswigs2vj3bf1b";
};
};
+ "typescript-2.9.1" = {
+ name = "typescript";
+ packageName = "typescript";
+ version = "2.9.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.9.1.tgz";
+ sha512 = "1066hcxz9xdrz1mnyz6kl6ms4szdjxvlz6j37mdp6jlf6vnhmdxx8qyikbzgy7yzvx6i7hvxhg51kc6isw9wpar2r1ch3f6zzclral7";
+ };
+ };
"typewise-1.0.3" = {
name = "typewise";
packageName = "typewise";
@@ -27754,15 +27898,6 @@ let
sha1 = "29c5733148057bb4e1f75df35b7a9cb72e6a59dd";
};
};
- "uglify-js-3.3.24" = {
- name = "uglify-js";
- packageName = "uglify-js";
- version = "3.3.24";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.24.tgz";
- sha512 = "05g7wl6mnfcv2f8qhfh82m743qd8p5hvd99ky9gifcx5zblrbiqcp0qp1jlcayijzr8l9rkf4rfc309kcf2k76097ban8ma716gwbl5";
- };
- };
"uglify-js-3.3.25" = {
name = "uglify-js";
packageName = "uglify-js";
@@ -27772,6 +27907,24 @@ let
sha512 = "1qcjjk817lmd65xc8h3axwdnx4h7xkn3k9lf7dy65bm564jhrqvq5v11va9jiamdva9q0nk589i3vm2pn7dvjmjavx5s3d3pj1fi1l6";
};
};
+ "uglify-js-3.3.28" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.3.28";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.28.tgz";
+ sha512 = "25lqpkcyapxq7ql7s778zwxm8mn0h2ir7m3nimvfnbs7myrv1aj5c3xgvvv1nbzvxrhs340gxfmqhpmgd7sqlhfd4icqwisl3ymri7b";
+ };
+ };
+ "uglify-js-3.4.0" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.0.tgz";
+ sha512 = "0jsplc22wvbnzdbcs1adsqcdpkn65ywg5ab8lk4v4ajsh9zhiys0qwf2ylairyj8znh9ml8ppknp94vamzlca947paplpz4lffzkir5";
+ };
+ };
"uglify-to-browserify-1.0.2" = {
name = "uglify-to-browserify";
packageName = "uglify-to-browserify";
@@ -27979,13 +28132,13 @@ let
sha1 = "4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022";
};
};
- "underscore-1.9.0" = {
+ "underscore-1.9.1" = {
name = "underscore";
packageName = "underscore";
- version = "1.9.0";
+ version = "1.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/underscore/-/underscore-1.9.0.tgz";
- sha512 = "3w8byp6gw4jzam7sl3g72zy9k8qb67jc9h4fhlhd6xj3zn07rnnm812g9jc6ygfxqi4yv54l800ijnl9b8kizf8wc5582xi4h6pb1g0";
+ url = "https://registry.npmjs.org/underscore/-/underscore-1.9.1.tgz";
+ sha512 = "1v1j738fqadps32lirl0nxzfhif6db9kslri77cwxq3c12adksibr6ips2zxqywh672d32sxrhfcvx2gwpc4a08hcydfxx4f2v1xzp7";
};
};
"underscore-contrib-0.3.0" = {
@@ -28231,13 +28384,13 @@ let
sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0";
};
};
- "untildify-3.0.2" = {
+ "untildify-3.0.3" = {
name = "untildify";
packageName = "untildify";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz";
- sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
+ url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz";
+ sha512 = "0l4awya87dx6bnxaywh0dn50ka8hybj603k75d98vlwj9grqfcmaib9hhjy52nsgm62f39v0nnv4yn268jpjy7n9y7wpbwzqwkkyac9";
};
};
"unyield-0.0.1" = {
@@ -28267,13 +28420,13 @@ let
sha1 = "d2f0f737d16b0615e72a6935ed04214572d56f97";
};
};
- "upath-1.0.4" = {
+ "upath-1.0.5" = {
name = "upath";
packageName = "upath";
- version = "1.0.4";
+ version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/upath/-/upath-1.0.4.tgz";
- sha512 = "0xw24ba88hfvwwgniyn17n26av45g1pxqf095231065l4n9dp5w3hyc7azjd8sqyix7pnfx1pmr44fzmwwazkz0ly83cp214g4qk13p";
+ url = "https://registry.npmjs.org/upath/-/upath-1.0.5.tgz";
+ sha512 = "31m1lljcfngdnpyz67gpkwvb66gx6750si3jzmf1vg6kq420fq5lcd34cfgp6wz3manjpqbp9i98ax2yjl2xs7mq824chw38vvsgcm9";
};
};
"upath-1.1.0" = {
@@ -28285,13 +28438,13 @@ let
sha512 = "2pyjsmaajf6k6ql5qj270l0p3xkjvn25wky2qd1vndvl54ljbv8p8sbr44zsfh33mmrnj93ys4499c3h956wbgn4g82z8b1h3z4ffkg";
};
};
- "update-check-1.5.0" = {
+ "update-check-1.5.2" = {
name = "update-check";
packageName = "update-check";
- version = "1.5.0";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/update-check/-/update-check-1.5.0.tgz";
- sha512 = "3prydk2hhjbg29waf3dvx4097qs7vx5xfp4ibl8ic8nwr01vkd2nwz5lzj1ga02hfyz6cpzcwv3h1q18fxdz6w6z542hwnkjrky2b3d";
+ url = "https://registry.npmjs.org/update-check/-/update-check-1.5.2.tgz";
+ sha512 = "1lq6181kzdp7xwzay0j8yjy771q89wi18b9cc1wx4l97k1z7gpyv03l3sx7ag2hrdsk6537fcgwqn3pqnvln57wl9czx3wbpdhfcfnm";
};
};
"update-notifier-0.5.0" = {
@@ -28366,13 +28519,13 @@ let
sha1 = "f90b858507f81dea4dcfbb3c4c3dbfa2b557faaa";
};
};
- "uri-js-4.2.1" = {
+ "uri-js-4.2.2" = {
name = "uri-js";
packageName = "uri-js";
- version = "4.2.1";
+ version = "4.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.1.tgz";
- sha512 = "3s1r9yqdqw9bwiyvkq7gd4ylivchfabhk59s1w1wxq6q8gpysw82340fx3hmsmkwzm2cgf2fz48s065q08ca8711k91gc73f41q54lf";
+ url = "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz";
+ sha512 = "2fz60s71ghl56ddfiiaws81xpiidlbjk69jyjmahz190d2advy9zdbcwh5if4rgg5hxdbfxhkwiipjrnjy8w834bxsmzambd2p4b3r9";
};
};
"urix-0.1.0" = {
@@ -28528,6 +28681,15 @@ let
sha1 = "7afb1afe50805246489e3db7fe0ed379336ac0f9";
};
};
+ "util-0.10.4" = {
+ name = "util";
+ packageName = "util";
+ version = "0.10.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/util/-/util-0.10.4.tgz";
+ sha512 = "3sbbgsya51i86ih8bn3nfwi3f9556xlnwh32z4k54dwcpi0jibhfa5dpbfmpzyla63yh2zlxs9chl6wkhc8bqjmjxjyxc9p6j2vvyfh";
+ };
+ };
"util-0.4.9" = {
name = "util";
packageName = "util";
@@ -28699,15 +28861,6 @@ let
sha1 = "aab1a1fa30d45f88dd321148875ac02c0b55e5b4";
};
};
- "vali-date-1.0.0" = {
- name = "vali-date";
- packageName = "vali-date";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/vali-date/-/vali-date-1.0.0.tgz";
- sha1 = "1b904a59609fb328ef078138420934f6b86709a6";
- };
- };
"valid-identifier-0.0.1" = {
name = "valid-identifier";
packageName = "valid-identifier";
@@ -28735,15 +28888,6 @@ let
sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
};
};
- "validator-3.22.2" = {
- name = "validator";
- packageName = "validator";
- version = "3.22.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-3.22.2.tgz";
- sha1 = "6f297ae67f7f82acc76d0afdb49f18d9a09c18c0";
- };
- };
"validator-5.2.0" = {
name = "validator";
packageName = "validator";
@@ -28753,6 +28897,15 @@ let
sha1 = "e66fb3ec352348c1f7232512328738d8d66a9689";
};
};
+ "validator-9.4.1" = {
+ name = "validator";
+ packageName = "validator";
+ version = "9.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validator/-/validator-9.4.1.tgz";
+ sha512 = "2f2x8zxh7czpkf33h5x8fvj48rfszyhkar554x5c2hw7qlsbdqjqvv6nczzsfkw6z5rj6gqabxhcg8haip0xgz7sn4jr6fi7f7llpk1";
+ };
+ };
"value-or-function-3.0.0" = {
name = "value-or-function";
packageName = "value-or-function";
@@ -28960,15 +29113,6 @@ let
sha1 = "9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6";
};
};
- "vinyl-fs-2.4.4" = {
- name = "vinyl-fs";
- packageName = "vinyl-fs";
- version = "2.4.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-2.4.4.tgz";
- sha1 = "be6ff3270cb55dfd7d3063640de81f25d7532239";
- };
- };
"vinyl-fs-3.0.3" = {
name = "vinyl-fs";
packageName = "vinyl-fs";
@@ -29131,13 +29275,13 @@ let
sha1 = "e48d79962f0b8e02de955e3f524908e2b19c0374";
};
};
- "vscode-languageserver-types-3.7.2" = {
+ "vscode-languageserver-types-3.8.1" = {
name = "vscode-languageserver-types";
packageName = "vscode-languageserver-types";
- version = "3.7.2";
+ version = "3.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.7.2.tgz";
- sha512 = "3n581a9795k5a0qvbz28rfqjp0dmyjm1rq0djpjvbqrairl7p30d24qpaj3wgfbdc3wx3gjym3b5sdcb6742jr8if12s3cg1x2gdl1g";
+ url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.8.1.tgz";
+ sha512 = "2kmqzghy2829p65vyf6q1q0ia27sdr2vmvny3krqzxqi4m2vbww8aa3yza4zwvpq81dqcncmrgs1phryq20f6dj004n19w12jph3hiv";
};
};
"vscode-uri-1.0.3" = {
@@ -29149,6 +29293,15 @@ let
sha1 = "631bdbf716dccab0e65291a8dc25c23232085a52";
};
};
+ "vscode-uri-1.0.5" = {
+ name = "vscode-uri";
+ packageName = "vscode-uri";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-1.0.5.tgz";
+ sha1 = "3b899a8ef71c37f3054d79bdbdda31c7bf36f20d";
+ };
+ };
"walk-2.3.13" = {
name = "walk";
packageName = "walk";
@@ -29212,13 +29365,13 @@ let
sha1 = "79691584d98607f5070bd3b70a40e6bb22e401eb";
};
};
- "webassemblyjs-1.4.3" = {
- name = "webassemblyjs";
- packageName = "webassemblyjs";
- version = "1.4.3";
+ "webidl-conversions-2.0.1" = {
+ name = "webidl-conversions";
+ packageName = "webidl-conversions";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webassemblyjs/-/webassemblyjs-1.4.3.tgz";
- sha512 = "2786k2y7kvcmjs50g35vaxik7kjr475fdhynq35yi7vayfjd7zkpn6gydh8vqhmx3g8xmr7j2ddwqgk540ij0wr7ks5r8pspga9alz2";
+ url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-2.0.1.tgz";
+ sha1 = "3bf8258f7d318c7443c36f2e169402a1a6703506";
};
};
"webidl-conversions-4.0.2" = {
@@ -29266,13 +29419,13 @@ let
sha512 = "1bq9cabpvsx4b0aajmbhsgkdzh816rrixhbnsmvcr0ypcndhn5zz9fggfc8i4l2s00b6jhif65phkc9l6zvika8ngb21rip9qx4pj4m";
};
};
- "webtorrent-0.99.4" = {
+ "webtorrent-0.100.0" = {
name = "webtorrent";
packageName = "webtorrent";
- version = "0.99.4";
+ version = "0.100.0";
src = fetchurl {
- url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.99.4.tgz";
- sha512 = "1d0rpdlr8flkbipr3qhr59qknfc3mlmz8ka9w6mnkbxhdflwky2l1f3z244xzgis509c8r1qyyjskv99ccrmc10rz93l52f4bb7m0kj";
+ url = "https://registry.npmjs.org/webtorrent/-/webtorrent-0.100.0.tgz";
+ sha512 = "05cwyzkhrwrrnb5mwnv8xb2db8p0i0fb6ys01rm22iymgcmx56r6cj4b0yiy3j13k1sin6h36sbvvpmamgl6d2mwriy35mm41yn2wvg";
};
};
"whatwg-fetch-2.0.4" = {
@@ -29284,13 +29437,22 @@ let
sha512 = "2g4p2ymmww4wm7cf86xwpb0dndwlxk1gg3brsrj892a4z593h25hyhqv0rmv4hzz4zxv3smmaflsnhilakfpr6y8f2gf3sfd8ckbi3m";
};
};
- "whatwg-url-6.3.0" = {
+ "whatwg-url-6.4.1" = {
name = "whatwg-url";
packageName = "whatwg-url";
- version = "6.3.0";
+ version = "6.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.3.0.tgz";
- sha512 = "01m395qx0wag7d63id97v2d86ifpw677f42lys2k6bipw4n9kmwngghsb7la19impgkrg3n4ihyk3j7963rhfgd7b066a4qk09s3kxc";
+ url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.4.1.tgz";
+ sha512 = "27rkflmrkzbamg28yflyisk49jl2dnvmk4651sn7hhig2rsahxj4c5ld3ljx9mjps0f6zqv0yvwl7d37w817vkmx7qnxiqp3frs030p";
+ };
+ };
+ "whatwg-url-compat-0.6.5" = {
+ name = "whatwg-url-compat";
+ packageName = "whatwg-url-compat";
+ version = "0.6.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/whatwg-url-compat/-/whatwg-url-compat-0.6.5.tgz";
+ sha1 = "00898111af689bb097541cd5a45ca6c8798445bf";
};
};
"when-3.4.6" = {
@@ -29338,13 +29500,13 @@ let
sha1 = "1557f96080604e5b11b3599eb9f45b50a9efd722";
};
};
- "which-1.3.0" = {
+ "which-1.3.1" = {
name = "which";
packageName = "which";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
+ url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
+ sha512 = "0hr4hxkk8yb9fz993bs69pf8z2z2qb6sdpxfxb84sd16lja9fsx444pk1ang1ivmjjv5srnsm6fihdj593w7rwxdh834cdmd9hms4hz";
};
};
"which-module-1.0.0" = {
@@ -29374,13 +29536,13 @@ let
sha1 = "670b3afbc552e0b55df6b7780ca74615f23ad1cb";
};
};
- "wide-align-1.1.2" = {
+ "wide-align-1.1.3" = {
name = "wide-align";
packageName = "wide-align";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
+ sha512 = "2224a32flpf40nhq6rj4idzkcdz0vx65bfxp90hd06db18l6fiqgxz1xnaygm3pbfb1a6v73hl8ryq4996b09zwwins0bqprx0hwsa0";
};
};
"widest-line-2.0.0" = {
@@ -29680,13 +29842,13 @@ let
sha1 = "2b64c8a33004d54b8698c76d585a77ceb61da32f";
};
};
- "write-pkg-3.1.0" = {
+ "write-pkg-3.2.0" = {
name = "write-pkg";
packageName = "write-pkg";
- version = "3.1.0";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.1.0.tgz";
- sha1 = "030a9994cc9993d25b4e75a9f1a1923607291ce9";
+ url = "https://registry.npmjs.org/write-pkg/-/write-pkg-3.2.0.tgz";
+ sha512 = "1msk3p98r3hzidf6hvbxnljq4l0kx707g3fjd7xpnfrdmm03plhmk8amgpbqlgya3syknzlr0pcvpckixnla8sw2x743a0qkmys4zdm";
};
};
"ws-0.4.31" = {
@@ -29743,13 +29905,13 @@ let
sha512 = "1ldy8hddsvy7lb045cx4jrnx09962j98zp7y16f64gkw8z99ww61w91mjhrm85bqpsf3b158yhfh6yf01g1a2zrgm6v9bkx87r7ys34";
};
};
- "ws-5.1.1" = {
+ "ws-5.2.0" = {
name = "ws";
packageName = "ws";
- version = "5.1.1";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-5.1.1.tgz";
- sha512 = "01whkym8fx8qjmx8s548zzw3ba05x8canb59v5yzidbwxdm7w1kfcfqhzzrxni1r9idqgla5ll5d3kp6fmk1sdn0k7d9lwvj2zarsvc";
+ url = "https://registry.npmjs.org/ws/-/ws-5.2.0.tgz";
+ sha512 = "3pmkb3asbbxiwwa4s5zajisi21girs2bba8pzl2ywwls6pjv3rzmmzckycl6705850jn68akzhm42844wxq9r2w1hfl8g5ywlqispvk";
};
};
"wtf-8-1.0.0" = {
@@ -29806,13 +29968,13 @@ let
sha1 = "f82d2fedee63af76687b70115ce6274dc71310e9";
};
};
- "xhr-2.4.1" = {
+ "xhr-2.5.0" = {
name = "xhr";
packageName = "xhr";
- version = "2.4.1";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz";
- sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4";
+ url = "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz";
+ sha512 = "36z7hw07wb42na5hy12xmsrg9yzd3hd5ln8y3wyq88qh4xvxr2lp07bbp5la5254mf8qaimgg1plwzvvvsmvj0mcma17p1dbvzlwyg2";
};
};
"xml-1.0.0" = {
@@ -29824,6 +29986,15 @@ let
sha1 = "de3ee912477be2f250b60f612f34a8c4da616efe";
};
};
+ "xml-name-validator-2.0.1" = {
+ name = "xml-name-validator";
+ packageName = "xml-name-validator";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-2.0.1.tgz";
+ sha1 = "4d8b8f1eccd3419aa362061becef515e1e559635";
+ };
+ };
"xml2js-0.1.14" = {
name = "xml2js";
packageName = "xml2js";
@@ -30023,15 +30194,6 @@ let
sha1 = "fcd82267e9351c13f0fb9c73307f25331d29c63a";
};
};
- "xpath.js-1.0.7" = {
- name = "xpath.js";
- packageName = "xpath.js";
- version = "1.0.7";
- src = fetchurl {
- url = "https://registry.npmjs.org/xpath.js/-/xpath.js-1.0.7.tgz";
- sha1 = "7e94627f541276cbc6a6b02b5d35e9418565b3e4";
- };
- };
"xpath.js-1.1.0" = {
name = "xpath.js";
packageName = "xpath.js";
@@ -30149,6 +30311,15 @@ let
sha1 = "054de8b61f22eefdb7207059eaef9d6b83fb931a";
};
};
+ "yargs-10.0.3" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "10.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-10.0.3.tgz";
+ sha512 = "1vn6jsqrhybxddyhmvkh0d43n2lk1z8081glfq80zpjfs4xgwpk0mmgdiry9zgsihmv9a2qidmp5hhyqqq8mzzkr037wla0qd1nk80f";
+ };
+ };
"yargs-10.1.2" = {
name = "yargs";
packageName = "yargs";
@@ -30167,13 +30338,13 @@ let
sha512 = "03n9lfnyx1dfj5sm811f3d96djsr6fixd5qi6cl6wj8xf0y01sgn7w3ynv5gn2vl30dwq5mz2hw5f522v8xbwc8m9h6nf8hqsa7wfj6";
};
};
- "yargs-11.1.0" = {
+ "yargs-12.0.0-candidate.0" = {
name = "yargs";
packageName = "yargs";
- version = "11.1.0";
+ version = "12.0.0-candidate.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-11.1.0.tgz";
- sha512 = "3j5awbfcbh8ik0kz01mycydpi1bz9fg70xc66lk1r1qvrs5x41i2w8nvgj0aip7z9vypcsxks76z75sz4lr6z3ida9c04inkvsbl19p";
+ url = "https://registry.npmjs.org/yargs/-/yargs-12.0.0-candidate.0.tgz";
+ sha512 = "37vyz2vs984q5yf8pgzrk4bpfd1xr5c24scmy2mpdqkr06vwdr2d9zkicq2pih940ji5jb8yr8frfqnha9s8x0sa1xnz78k6v8qxcyi";
};
};
"yargs-3.10.0" = {
@@ -30230,6 +30401,15 @@ let
sha1 = "52acc23feecac34042078ee78c0c007f5085db4c";
};
};
+ "yargs-parser-10.0.0" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "10.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-10.0.0.tgz";
+ sha512 = "3ibmsxsbhaixclrqx83c1f4hglv4ydcry35kzs40phbri2nbb1lj7c44f89yvzvl7f6j4iqw7idrcpa7p2pzpvj60g5ckd3df6xwcgq";
+ };
+ };
"yargs-parser-4.2.1" = {
name = "yargs-parser";
packageName = "yargs-parser";
@@ -30293,6 +30473,15 @@ let
sha1 = "a81981ea70a57946133883f029c5821a89359a7f";
};
};
+ "yauzl-2.9.2" = {
+ name = "yauzl";
+ packageName = "yauzl";
+ version = "2.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz";
+ sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77";
+ };
+ };
"yeast-0.1.2" = {
name = "yeast";
packageName = "yeast";
@@ -30320,13 +30509,13 @@ let
sha1 = "94ab784896a64f53a9fac452d5e9133e2750a236";
};
};
- "yeoman-environment-2.1.1" = {
+ "yeoman-environment-2.2.0" = {
name = "yeoman-environment";
packageName = "yeoman-environment";
- version = "2.1.1";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.1.1.tgz";
- sha512 = "0sy09nlr3nq9mmxlglxwf3crzy5krv9hn9pbd6xfpnglg23mz3kmd9s237fnlmisb8rabkn4kycwpdqf1nn47gcc90krb69984z04i0";
+ url = "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.2.0.tgz";
+ sha512 = "1j1l2698kspscp1safdg4df58da6gd90dgys9b2n2lyb5kgzgi0cd6s4hnbbsr2axxm48fs4pak9a7spqlhr09iw8l5aihhdwhs23w1";
};
};
"yosay-2.0.2" = {
@@ -30417,7 +30606,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
sources."array-unique-0.3.2"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."babel-code-frame-6.26.0"
(sources."babel-core-6.26.3" // {
dependencies = [
@@ -30441,11 +30630,11 @@ in
sources."brace-expansion-1.1.11"
sources."chalk-1.1.3"
sources."chmodr-1.0.2"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."convert-source-map-1.5.1"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."debug-2.6.9"
sources."detect-indent-4.0.0"
sources."ejs-2.5.7"
@@ -30515,7 +30704,7 @@ in
sources."underscore-1.6.0"
sources."universalify-0.1.1"
sources."walk-sync-0.3.2"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."xml2js-0.2.8"
sources."xml2tss-0.0.5"
sources."xmldom-0.1.27"
@@ -30548,7 +30737,6 @@ in
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
sources."binary-0.3.0"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."buffers-0.1.1"
sources."caseless-0.12.0"
@@ -30559,11 +30747,6 @@ in
sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."cuint-0.2.2"
sources."dashdash-1.14.1"
sources."decompress-zip-0.3.0"
@@ -30582,8 +30765,6 @@ in
sources."graceful-fs-4.1.11"
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -30618,11 +30799,11 @@ in
sources."q-1.5.1"
sources."qs-6.5.2"
sources."readable-stream-1.1.14"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.2"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."safer-buffer-2.1.2"
+ sources."sshpk-1.14.2"
sources."string_decoder-0.10.31"
sources."tmp-0.0.28"
(sources."touch-0.0.3" // {
@@ -30650,60 +30831,49 @@ in
azure-cli = nodeEnv.buildNodePackage {
name = "azure-cli";
packageName = "azure-cli";
- version = "0.10.18";
+ version = "0.10.19";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.18.tgz";
- sha512 = "05k876g0s9ac53vrqqcn5h2l6s9ccawihr29gxvj8fib49qg2mhf1v52277r2wgcjxibj7vq2b3zp2jkp0vwd6d1pkv8alwf84ri6wc";
+ url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.19.tgz";
+ sha512 = "34bg8wqi85ixnqxjvcz6qh1mny2v5p93dhspifymj6hhyxdxxzm83bmrzbhk8n5d9sl46167y5q8ddx7wv2jb5v00ypirwb5y3n5q7l";
};
dependencies = [
sources."@types/caseless-0.12.1"
sources."@types/form-data-2.2.1"
- sources."@types/node-8.10.16"
+ sources."@types/node-8.10.18"
sources."@types/request-2.47.0"
sources."@types/tough-cookie-2.3.3"
sources."@types/uuid-3.4.3"
sources."JSV-4.0.2"
- sources."adal-node-0.1.21"
+ sources."adal-node-0.1.28"
sources."ajv-5.5.2"
sources."amdefine-1.0.1"
sources."ansi-regex-2.1.1"
- sources."ansi-styles-1.0.0"
+ sources."ansi-styles-2.2.1"
sources."applicationinsights-0.16.0"
sources."asap-2.0.6"
sources."asn1-0.2.3"
- sources."assert-plus-1.0.0"
+ sources."assert-plus-0.2.0"
sources."async-1.4.2"
sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
+ sources."aws-sign2-0.6.0"
sources."aws4-1.7.0"
sources."azure-arm-authorization-2.0.0"
- (sources."azure-arm-batch-0.3.0" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- ];
- })
- (sources."azure-arm-cdn-1.0.3" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- ];
- })
- (sources."azure-arm-commerce-0.2.0" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- ];
- })
+ sources."azure-arm-batch-3.1.0"
+ sources."azure-arm-cdn-4.0.1"
+ sources."azure-arm-commerce-2.0.0"
sources."azure-arm-compute-3.0.0-preview"
(sources."azure-arm-datalake-analytics-1.0.2-preview" // {
dependencies = [
- sources."async-0.2.7"
+ sources."async-2.6.1"
+ sources."commander-2.15.1"
sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
+ (sources."ms-rest-azure-1.15.7" // {
+ dependencies = [
+ sources."async-0.2.7"
+ ];
+ })
+ sources."readable-stream-2.0.6"
+ sources."request-2.74.0"
];
})
(sources."azure-arm-datalake-store-1.0.2-preview" // {
@@ -30711,26 +30881,22 @@ in
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
- (sources."azure-arm-devtestlabs-0.1.0" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- ];
- })
- sources."azure-arm-dns-2.0.0-preview"
+ sources."azure-arm-devtestlabs-2.1.1"
+ sources."azure-arm-dns-2.1.0"
sources."azure-arm-hdinsight-0.2.2"
sources."azure-arm-hdinsight-jobs-0.1.0"
sources."azure-arm-insights-0.11.3"
sources."azure-arm-iothub-1.0.1-preview"
- sources."azure-arm-network-5.1.0"
- (sources."azure-arm-powerbiembedded-0.1.0" // {
+ sources."azure-arm-network-5.3.0"
+ (sources."azure-arm-powerbiembedded-0.1.1" // {
dependencies = [
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
(sources."azure-arm-rediscache-0.2.3" // {
@@ -30738,6 +30904,7 @@ in
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
(sources."azure-arm-resource-1.6.1-preview" // {
@@ -30745,28 +30912,18 @@ in
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
- (sources."azure-arm-servermanagement-0.1.2" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- ];
- })
- (sources."azure-arm-storage-0.15.0-preview" // {
- dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
- ];
- })
+ sources."azure-arm-servermanagement-1.1.0"
+ sources."azure-arm-storage-5.0.0"
sources."azure-arm-trafficmanager-1.1.0-preview"
- (sources."azure-arm-website-0.11.4" // {
+ (sources."azure-arm-website-0.11.5" // {
dependencies = [
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
sources."azure-asm-compute-0.18.0"
@@ -30778,36 +30935,37 @@ in
sources."azure-asm-storage-0.12.0"
sources."azure-asm-subscription-0.10.1"
sources."azure-asm-trafficmanager-0.10.3"
- (sources."azure-asm-website-0.10.4" // {
+ (sources."azure-asm-website-0.10.6" // {
dependencies = [
- sources."moment-2.14.1"
+ sources."moment-2.18.1"
+ sources."underscore-1.9.1"
];
})
- (sources."azure-batch-0.5.2" // {
+ (sources."azure-batch-3.2.1" // {
dependencies = [
- sources."async-0.2.7"
- sources."ms-rest-1.15.7"
- sources."ms-rest-azure-1.15.7"
+ sources."underscore-1.9.1"
];
})
- (sources."azure-common-0.9.18" // {
+ (sources."azure-common-0.9.20" // {
dependencies = [
- sources."validator-3.22.2"
+ sources."validator-9.4.1"
sources."xml2js-0.2.7"
];
})
sources."azure-gallery-2.0.0-pre.18"
- sources."azure-graph-2.1.0-preview"
- (sources."azure-keyvault-0.11.0" // {
+ sources."azure-graph-2.2.0"
+ (sources."azure-keyvault-1.0.0" // {
dependencies = [
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
- (sources."azure-monitoring-0.10.2" // {
+ (sources."azure-monitoring-0.10.5" // {
dependencies = [
- sources."moment-2.6.0"
+ sources."moment-2.14.1"
+ sources."underscore-1.9.1"
];
})
(sources."azure-servicefabric-0.1.5" // {
@@ -30815,26 +30973,29 @@ in
sources."async-0.2.7"
sources."ms-rest-1.15.7"
sources."ms-rest-azure-1.15.7"
+ sources."request-2.74.0"
];
})
- (sources."azure-storage-2.1.0" // {
+ (sources."azure-storage-2.8.3" // {
dependencies = [
+ sources."extend-1.2.1"
sources."readable-stream-2.0.6"
- sources."validator-3.22.2"
- sources."xml2js-0.2.7"
+ sources."underscore-1.8.3"
+ sources."validator-9.4.1"
+ sources."xml2js-0.2.8"
];
})
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
sources."bl-1.1.2"
- sources."boom-4.3.1"
+ sources."boom-2.10.1"
sources."brace-expansion-1.1.11"
sources."browserify-mime-1.2.9"
sources."buffer-equal-constant-time-1.0.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."caller-id-0.1.0"
- sources."caseless-0.12.0"
- sources."chalk-0.4.0"
+ sources."caseless-0.11.0"
+ sources."chalk-1.1.3"
sources."clone-1.0.4"
sources."co-4.6.0"
sources."colors-1.1.2"
@@ -30843,17 +31004,12 @@ in
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
+ sources."cryptiles-2.0.5"
sources."ctype-0.5.2"
sources."cycle-1.0.3"
sources."dashdash-1.14.1"
sources."date-utils-1.2.21"
sources."dateformat-1.0.2-1.2.3"
- sources."debug-0.7.4"
sources."deep-equal-1.0.1"
sources."defaults-1.0.3"
sources."delayed-stream-1.0.0"
@@ -30864,7 +31020,7 @@ in
sources."envconf-0.0.4"
sources."escape-string-regexp-1.0.5"
sources."event-stream-3.1.5"
- sources."extend-1.2.1"
+ sources."extend-3.0.1"
sources."extsprintf-1.3.0"
sources."eyes-0.1.8"
sources."fast-deep-equal-1.1.0"
@@ -30872,7 +31028,7 @@ in
sources."fast-json-stable-stringify-2.0.0"
sources."fibers-1.0.15"
sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
+ sources."form-data-1.0.1"
sources."from-0.1.7"
sources."fs.realpath-1.0.0"
sources."galaxy-0.1.12"
@@ -30882,15 +31038,15 @@ in
sources."github-0.1.6"
sources."glob-7.1.2"
sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
+ sources."har-validator-2.0.6"
sources."has-ansi-2.0.0"
sources."has-color-0.1.7"
sources."hash-base-3.0.4"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
+ sources."hawk-3.1.3"
+ sources."hoek-2.16.3"
sources."http-basic-2.5.1"
sources."http-response-object-1.1.0"
- sources."http-signature-1.2.0"
+ sources."http-signature-1.1.1"
sources."i-0.3.6"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -30910,13 +31066,20 @@ in
sources."json-stringify-safe-5.0.1"
(sources."jsonlint-1.6.2" // {
dependencies = [
+ sources."ansi-styles-1.0.0"
+ sources."chalk-0.4.0"
+ sources."strip-ansi-0.1.1"
sources."underscore-1.6.0"
];
})
sources."jsonminify-0.4.1"
sources."jsonparse-1.2.0"
sources."jsonpointer-4.0.1"
- sources."jsprim-1.4.1"
+ (sources."jsprim-1.4.1" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."jsrsasign-4.8.2"
sources."jwa-1.1.6"
sources."jws-3.1.5"
@@ -30936,36 +31099,28 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
(sources."ms-rest-2.3.3" // {
dependencies = [
- sources."extend-3.0.1"
- sources."request-2.86.0"
sources."through-2.3.8"
sources."tunnel-0.0.5"
];
})
(sources."ms-rest-azure-2.5.5" // {
dependencies = [
- sources."@types/node-9.6.17"
- (sources."adal-node-0.1.28" // {
- dependencies = [
- sources."@types/node-8.10.16"
- ];
- })
+ sources."@types/node-9.6.20"
sources."async-2.6.0"
- sources."xpath.js-1.1.0"
];
})
sources."mute-stream-0.0.7"
sources."ncp-0.4.2"
sources."node-forge-0.6.23"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."nomnom-1.8.1"
sources."oauth-sign-0.8.2"
sources."omelette-0.3.2"
sources."once-1.4.0"
- sources."openssl-wrapper-0.2.1"
+ sources."openssl-wrapper-0.3.4"
sources."os-homedir-1.0.2"
sources."path-is-absolute-1.0.1"
sources."pause-stream-0.0.11"
@@ -30988,43 +31143,31 @@ in
];
})
sources."punycode-1.4.1"
- sources."q-0.9.7"
- sources."qs-6.5.2"
+ sources."qs-6.2.3"
sources."read-1.0.7"
(sources."readable-stream-1.0.34" // {
dependencies = [
sources."isarray-0.0.1"
];
})
- (sources."request-2.74.0" // {
+ (sources."request-2.87.0" // {
dependencies = [
- sources."ansi-styles-2.2.1"
- sources."assert-plus-0.2.0"
- sources."async-2.6.0"
- sources."aws-sign2-0.6.0"
- sources."boom-2.10.1"
- sources."caseless-0.11.0"
- sources."chalk-1.1.3"
- sources."commander-2.15.1"
- sources."cryptiles-2.0.5"
- sources."extend-3.0.1"
- sources."form-data-1.0.1"
- sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."hoek-2.16.3"
- sources."http-signature-1.1.1"
- sources."qs-6.2.3"
- sources."readable-stream-2.0.6"
- sources."sntp-1.0.9"
- sources."strip-ansi-3.0.1"
- sources."tunnel-agent-0.4.3"
+ sources."assert-plus-1.0.0"
+ sources."aws-sign2-0.7.0"
+ sources."caseless-0.12.0"
+ sources."form-data-2.3.2"
+ sources."har-validator-5.0.3"
+ sources."http-signature-1.2.0"
+ sources."qs-6.5.2"
+ sources."tunnel-agent-0.6.0"
];
})
sources."revalidator-0.1.8"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."sax-0.5.2"
- sources."sntp-2.1.0"
+ sources."sntp-1.0.9"
sources."source-map-0.1.43"
sources."split-0.2.10"
(sources."ssh-key-to-pem-0.11.0" // {
@@ -31032,18 +31175,21 @@ in
sources."asn1-0.1.11"
];
})
- sources."sshpk-1.14.1"
+ (sources."sshpk-1.14.2" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
sources."stack-trace-0.0.10"
sources."stream-combiner-0.0.4"
sources."streamline-0.10.17"
sources."streamline-streams-0.1.5"
sources."string_decoder-0.10.31"
sources."stringstream-0.0.6"
- sources."strip-ansi-0.1.1"
+ sources."strip-ansi-3.0.1"
sources."supports-color-2.0.0"
(sources."sync-request-3.0.0" // {
dependencies = [
- sources."caseless-0.11.0"
sources."process-nextick-args-2.0.0"
sources."readable-stream-2.3.6"
sources."string_decoder-1.1.1"
@@ -31053,7 +31199,7 @@ in
sources."through-2.3.4"
sources."tough-cookie-2.3.4"
sources."tunnel-0.0.2"
- sources."tunnel-agent-0.6.0"
+ sources."tunnel-agent-0.4.3"
sources."tweetnacl-0.14.5"
sources."typedarray-0.0.6"
sources."underscore-1.4.4"
@@ -31076,7 +31222,7 @@ in
sources."xml2js-0.1.14"
sources."xmlbuilder-0.4.3"
sources."xmldom-0.1.27"
- sources."xpath.js-1.0.7"
+ sources."xpath.js-1.1.0"
sources."xtend-4.0.1"
];
buildInputs = globalBuildInputs;
@@ -31166,12 +31312,12 @@ in
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
sources."meow-3.7.0"
- sources."mime-db-1.33.0"
+ sources."mime-db-1.34.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
- sources."natives-1.1.3"
+ sources."natives-1.1.4"
sources."normalize-package-data-2.4.0"
sources."number-is-nan-1.0.1"
sources."object-assign-4.1.1"
@@ -31233,14 +31379,19 @@ in
sha512 = "3ycb2arffvn5xg0dgk03zyvpg6pizz17wix457vg1cx166h59lz0vhyr2sw3224ny8brs3lg8f1acyr2ijv196fnsjfpm1akk9i5hbw";
};
dependencies = [
- sources."JSONStream-1.3.2"
+ sources."JSONStream-1.3.3"
sources."acorn-4.0.13"
sources."acorn-node-1.3.0"
sources."array-filter-0.0.1"
sources."array-map-0.0.0"
sources."array-reduce-0.0.0"
sources."asn1.js-4.10.1"
- sources."assert-1.4.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
sources."astw-2.2.0"
sources."balanced-match-1.0.0"
sources."base64-js-1.3.0"
@@ -31260,7 +31411,7 @@ in
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
sources."buffer-5.1.0"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."cached-path-relative-1.0.1"
@@ -31285,12 +31436,12 @@ in
sources."domain-browser-1.2.0"
sources."duplexer2-0.1.4"
sources."elliptic-6.4.0"
- sources."events-2.0.0"
+ sources."events-2.1.0"
sources."evp_bytestokey-1.0.3"
sources."fs.realpath-1.0.0"
sources."function-bind-1.1.1"
sources."glob-7.1.2"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."hash-base-3.0.4"
sources."hash.js-1.1.3"
sources."hmac-drbg-1.0.1"
@@ -31318,7 +31469,7 @@ in
sources."mkdirp-0.5.1"
(sources."module-deps-6.1.0" // {
dependencies = [
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
sources."minimist-1.2.0"
];
})
@@ -31355,7 +31506,7 @@ in
sources."source-map-0.5.7"
sources."stream-browserify-2.0.1"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.2"
+ sources."stream-http-2.8.3"
sources."stream-splicer-2.0.0"
sources."string_decoder-1.1.1"
(sources."subarg-1.0.0" // {
@@ -31376,11 +31527,7 @@ in
sources."punycode-1.3.2"
];
})
- (sources."util-0.10.3" // {
- dependencies = [
- sources."inherits-2.0.1"
- ];
- })
+ sources."util-0.10.4"
sources."util-deprecate-1.0.2"
sources."vm-browserify-1.0.1"
sources."wrappy-1.0.2"
@@ -31427,12 +31574,12 @@ in
sources."bncode-0.5.3"
sources."boom-0.3.8"
sources."brace-expansion-1.1.11"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-equal-0.0.1"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."bufferview-1.0.1"
sources."builtin-modules-1.1.1"
sources."bytebuffer-3.5.5"
@@ -31786,11 +31933,11 @@ in
sources."code-point-at-1.1.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."commander-2.15.1"
sources."debug-3.1.0"
sources."escape-string-regexp-1.0.5"
- sources."follow-redirects-1.4.1"
+ sources."follow-redirects-1.5.0"
sources."has-flag-3.0.0"
sources."humanize-plus-1.8.2"
sources."is-buffer-1.1.6"
@@ -31860,10 +32007,10 @@ in
sha1 = "2e8446d9493caafd870b1090785e7f03e2ae6a43";
};
dependencies = [
- sources."JSONStream-1.3.2"
+ sources."JSONStream-1.3.3"
sources."abbrev-1.1.1"
sources."accepts-1.3.5"
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
sources."acorn-node-1.3.0"
sources."aliasify-2.1.0"
sources."ansi-0.3.1"
@@ -31876,7 +32023,12 @@ in
sources."array-reduce-0.0.0"
sources."asn1-0.2.3"
sources."asn1.js-4.10.1"
- sources."assert-1.4.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
sources."assert-plus-0.2.0"
sources."astw-2.2.0"
sources."async-1.5.2"
@@ -31884,9 +32036,9 @@ in
sources."aws-sign2-0.6.0"
sources."aws4-1.7.0"
sources."balanced-match-1.0.0"
- sources."base64-js-0.0.8"
+ sources."base64-js-1.3.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."big-integer-1.6.28"
+ sources."big-integer-1.6.30"
sources."block-stream-0.0.9"
sources."bn.js-4.11.8"
(sources."body-parser-1.18.2" // {
@@ -31918,7 +32070,7 @@ in
sources."browserify-transform-tools-1.7.0"
sources."browserify-zlib-0.1.4"
sources."buffer-5.1.0"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-xor-1.0.3"
sources."builtin-modules-1.1.1"
sources."builtin-status-codes-3.0.0"
@@ -31934,7 +32086,7 @@ in
sources."combine-source-map-0.8.0"
sources."combined-stream-1.0.6"
sources."commander-2.15.1"
- sources."compressible-2.0.13"
+ sources."compressible-2.0.14"
sources."compression-1.7.2"
sources."concat-map-0.0.1"
(sources."concat-stream-1.5.2" // {
@@ -31952,7 +32104,7 @@ in
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
sources."cordova-app-hello-world-3.12.0"
- sources."cordova-common-2.2.1"
+ sources."cordova-common-2.2.3"
sources."cordova-create-1.1.2"
(sources."cordova-fetch-1.3.0" // {
dependencies = [
@@ -31962,27 +32114,26 @@ in
})
(sources."cordova-js-4.2.2" // {
dependencies = [
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
sources."isarray-2.0.4"
];
})
(sources."cordova-lib-8.0.0" // {
dependencies = [
sources."acorn-4.0.13"
- sources."base64-js-1.3.0"
+ sources."base64-js-1.1.2"
+ sources."elementtree-0.1.6"
sources."glob-7.1.1"
sources."isarray-1.0.0"
+ sources."mime-db-1.34.0"
sources."minimist-1.2.0"
sources."nopt-4.0.1"
- (sources."plist-2.0.1" // {
- dependencies = [
- sources."base64-js-1.1.2"
- ];
- })
+ sources."plist-2.0.1"
sources."process-nextick-args-2.0.0"
sources."q-1.0.1"
sources."qs-6.3.2"
sources."safe-buffer-5.1.1"
+ sources."sax-0.3.5"
sources."shelljs-0.3.0"
sources."underscore-1.8.3"
sources."uuid-3.2.1"
@@ -32004,7 +32155,7 @@ in
sources."dashdash-1.14.1"
sources."date-now-0.1.4"
sources."debug-2.6.9"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."defined-1.0.0"
sources."delayed-stream-1.0.0"
(sources."dep-graph-1.1.0" // {
@@ -32031,7 +32182,7 @@ in
sources."ecc-jsbn-0.1.1"
sources."editor-1.0.0"
sources."ee-first-1.1.1"
- sources."elementtree-0.1.6"
+ sources."elementtree-0.1.7"
sources."elliptic-6.4.0"
sources."encodeurl-1.0.2"
sources."end-of-stream-1.4.1"
@@ -32058,11 +32209,11 @@ in
sources."generate-function-2.0.0"
sources."generate-object-property-1.2.0"
sources."getpass-0.1.7"
- sources."glob-5.0.15"
+ sources."glob-7.1.2"
sources."got-3.3.1"
sources."graceful-fs-4.1.11"
sources."har-validator-2.0.6"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."hash-base-3.0.4"
sources."hash.js-1.1.3"
@@ -32191,7 +32342,7 @@ in
sources."pegjs-0.10.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- sources."plist-1.2.0"
+ sources."plist-3.0.1"
sources."prepend-http-1.0.4"
sources."process-0.11.10"
sources."process-nextick-args-1.0.7"
@@ -32213,7 +32364,7 @@ in
sources."http-errors-1.6.2"
];
})
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."read-1.0.7"
sources."read-all-stream-3.1.0"
sources."read-only-stream-2.0.0"
@@ -32235,7 +32386,8 @@ in
sources."run-async-0.1.0"
sources."rx-lite-3.1.2"
sources."safe-buffer-5.1.2"
- sources."sax-0.3.5"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.1.4"
sources."semver-5.5.0"
sources."semver-diff-2.1.0"
sources."send-0.16.2"
@@ -32244,7 +32396,7 @@ in
sources."sha.js-2.4.11"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
- sources."shelljs-0.5.3"
+ sources."shelljs-0.8.2"
sources."simple-plist-0.2.1"
sources."slash-1.0.0"
sources."slide-1.1.6"
@@ -32254,7 +32406,7 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -32263,7 +32415,7 @@ in
sources."stream-browserify-2.0.1"
sources."stream-buffers-2.2.0"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.2"
+ sources."stream-http-2.8.3"
sources."stream-shift-1.0.0"
sources."stream-splicer-2.0.0"
sources."string-length-1.0.1"
@@ -32271,6 +32423,7 @@ in
sources."string_decoder-1.0.3"
sources."stringstream-0.0.6"
sources."strip-ansi-3.0.1"
+ sources."strip-bom-3.0.0"
sources."strip-json-comments-2.0.1"
sources."subarg-1.0.0"
sources."supports-color-2.0.0"
@@ -32288,7 +32441,7 @@ in
sources."type-is-1.6.16"
sources."typedarray-0.0.6"
sources."umd-3.0.3"
- sources."underscore-1.9.0"
+ sources."underscore-1.9.1"
sources."unorm-1.4.1"
sources."unpipe-1.0.0"
(sources."update-notifier-0.5.0" // {
@@ -32303,11 +32456,7 @@ in
sources."punycode-1.3.2"
];
})
- (sources."util-0.10.3" // {
- dependencies = [
- sources."inherits-2.0.1"
- ];
- })
+ sources."util-0.10.4"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-2.0.3"
@@ -32326,7 +32475,7 @@ in
];
})
sources."xdg-basedir-2.0.0"
- sources."xmlbuilder-4.0.0"
+ sources."xmlbuilder-9.0.7"
sources."xmldom-0.1.27"
sources."xtend-4.0.1"
];
@@ -32415,7 +32564,7 @@ in
sources."uid-number-0.0.6"
sources."util-deprecate-1.0.2"
sources."validate-npm-package-name-3.0.0"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."win-release-1.1.1"
sources."wrappy-1.0.2"
sources."xtend-4.0.1"
@@ -32444,7 +32593,7 @@ in
sources."chalk-2.4.1"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."cross-spawn-5.1.0"
sources."escape-string-regexp-1.0.5"
sources."fs-extra-4.0.3"
@@ -32464,7 +32613,7 @@ in
sources."source-map-support-0.4.18"
sources."supports-color-5.4.0"
sources."universalify-0.1.1"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
@@ -32513,7 +32662,7 @@ in
sources."ansi-styles-3.2.1"
sources."anymatch-1.3.2"
sources."ap-0.1.0"
- sources."append-tree-2.4.1"
+ sources."append-tree-2.4.4"
sources."arr-diff-2.0.0"
sources."arr-flatten-1.1.0"
sources."array-lru-1.1.1"
@@ -32537,18 +32686,17 @@ in
sources."blake2b-2.1.2"
sources."blake2b-wasm-1.1.7"
sources."body-0.1.0"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
(sources."braces-1.8.5" // {
dependencies = [
sources."kind-of-6.0.2"
];
})
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-indexof-1.1.1"
sources."bulk-write-stream-1.1.4"
sources."bytes-3.0.0"
@@ -32562,7 +32710,7 @@ in
sources."codecs-1.2.1"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."combined-stream-1.0.6"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
@@ -32570,11 +32718,6 @@ in
sources."content-types-0.1.0"
sources."core-util-is-1.0.2"
sources."corsify-2.1.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."cycle-1.0.3"
sources."dashdash-1.14.1"
sources."dat-dns-1.3.2"
@@ -32606,12 +32749,17 @@ in
sources."process-nextick-args-1.0.7"
];
})
- (sources."dat-node-3.5.8" // {
+ (sources."dat-node-3.5.9" // {
dependencies = [
- sources."buffer-alloc-unsafe-0.1.1"
+ (sources."discovery-swarm-5.1.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."minimist-0.0.8"
sources."process-nextick-args-1.0.7"
sources."pump-1.0.3"
+ sources."random-access-memory-3.0.0"
sources."unordered-set-2.0.0"
sources."varint-5.0.0"
];
@@ -32660,7 +32808,7 @@ in
sources."filename-regex-2.0.1"
sources."fill-range-2.2.4"
sources."flat-tree-1.6.0"
- sources."for-each-0.3.2"
+ sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."for-own-0.1.5"
sources."forever-agent-0.6.1"
@@ -32675,17 +32823,15 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-flag-3.0.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-methods-0.1.0"
sources."http-signature-1.2.0"
- (sources."hypercore-6.14.0" // {
+ (sources."hypercore-6.15.0" // {
dependencies = [
sources."varint-5.0.0"
];
})
sources."hypercore-protocol-6.6.4"
- (sources."hyperdrive-9.12.3" // {
+ (sources."hyperdrive-9.13.0" // {
dependencies = [
sources."varint-4.0.1"
];
@@ -32698,6 +32844,7 @@ in
sources."ini-1.3.5"
sources."ip-1.1.5"
sources."is-buffer-1.1.6"
+ sources."is-callable-1.1.3"
sources."is-dotfile-1.0.3"
sources."is-equal-shallow-0.1.3"
sources."is-extendable-0.1.1"
@@ -32706,6 +32853,7 @@ in
sources."is-function-1.0.1"
sources."is-glob-2.0.1"
sources."is-number-2.1.0"
+ sources."is-options-1.0.1"
sources."is-posix-bracket-0.1.1"
sources."is-primitive-2.0.0"
sources."is-string-1.0.4"
@@ -32743,13 +32891,13 @@ in
sources."min-document-2.19.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- sources."mirror-folder-2.2.0"
+ sources."mirror-folder-3.0.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
sources."multi-random-access-2.1.1"
sources."multicast-dns-7.0.0"
sources."multicb-1.2.2"
- sources."multistream-2.1.0"
+ sources."multistream-2.1.1"
sources."mute-stream-0.0.7"
sources."mutexify-1.2.0"
sources."nan-2.10.0"
@@ -32807,24 +32955,24 @@ in
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.2"
sources."repeat-string-1.6.1"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."revalidator-0.1.8"
sources."rimraf-2.6.2"
sources."rusha-0.8.13"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."signed-varint-2.0.1"
sources."simple-sha1-2.1.1"
- sources."siphash24-1.1.0"
+ sources."siphash24-1.1.1"
sources."slice-ansi-1.0.0"
- sources."sntp-2.1.0"
sources."sodium-javascript-0.5.5"
sources."sodium-native-2.1.6"
sources."sodium-universal-2.0.0"
- sources."sorted-array-functions-1.1.0"
+ sources."sorted-array-functions-1.2.0"
sources."sorted-indexof-1.0.0"
sources."sparse-bitfield-3.0.3"
sources."speedometer-1.0.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."stack-trace-0.0.10"
sources."status-logger-3.1.1"
sources."stream-collector-1.0.1"
@@ -32860,7 +33008,7 @@ in
sources."unixify-1.0.0"
sources."unordered-array-remove-1.0.2"
sources."unordered-set-1.1.0"
- sources."untildify-3.0.2"
+ sources."untildify-3.0.3"
sources."util-deprecate-1.0.2"
sources."utile-0.3.0"
sources."utp-native-1.7.1"
@@ -32875,7 +33023,7 @@ in
})
sources."wrap-ansi-3.0.1"
sources."wrappy-1.0.2"
- sources."xhr-2.4.1"
+ sources."xhr-2.5.0"
sources."xsalsa20-1.0.2"
sources."xtend-4.0.1"
];
@@ -32964,7 +33112,7 @@ in
sources."fresh-0.2.4"
sources."from-0.1.7"
sources."hiredis-0.4.1"
- sources."http-parser-js-0.4.12"
+ sources."http-parser-js-0.4.13"
sources."inherits-2.0.3"
sources."ini-1.3.5"
sources."ipaddr.js-1.0.5"
@@ -33064,9 +33212,9 @@ in
sources."basic-auth-1.1.0"
sources."bindings-1.2.1"
sources."bl-0.8.2"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
- sources."buffer-fill-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-fill-1.0.0"
sources."bytewise-1.1.0"
sources."bytewise-core-1.2.3"
sources."cookie-signature-1.1.0"
@@ -33215,30 +33363,24 @@ in
sha512 = "1bvfy3zh4ir1griyp1af3c2vc11wrkxyi4h8bfsdlgwwgq9azp1l8l1v03b88x69fqr3llr6kgacjr1cykd64p10dr5438zjlw1vcr4";
};
dependencies = [
- sources."JSONStream-1.3.2"
+ sources."JSONStream-1.3.3"
sources."ajv-5.5.2"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."asynckit-0.4.0"
- sources."aws-sdk-2.241.1"
+ sources."aws-sdk-2.252.1"
sources."aws-sign2-0.7.0"
sources."aws4-1.7.0"
sources."base64-js-1.3.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."boom-4.3.1"
sources."buffer-4.9.1"
sources."caseless-0.12.0"
sources."co-4.6.0"
sources."combined-stream-1.0.6"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
- sources."decimal.js-10.0.0"
+ sources."decimal.js-10.0.1"
sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.1"
sources."events-1.1.1"
@@ -33251,8 +33393,6 @@ in
sources."getpass-0.1.7"
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."ieee754-1.1.8"
sources."ini-1.3.5"
@@ -33277,15 +33417,15 @@ in
sources."punycode-1.3.2"
sources."qs-6.5.2"
sources."querystring-0.2.0"
- (sources."request-2.86.0" // {
+ (sources."request-2.87.0" // {
dependencies = [
sources."punycode-1.4.1"
];
})
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."sax-1.2.1"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."through-2.3.8"
sources."tough-cookie-2.3.4"
sources."tunnel-agent-0.6.0"
@@ -33490,10 +33630,11 @@ in
sources."request-2.79.0"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."set-immediate-shim-1.0.1"
sources."sntp-1.0.9"
sources."split-1.0.1"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -33511,7 +33652,7 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.2.1"
sources."verror-1.10.0"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."xmlbuilder-8.2.2"
sources."xtend-4.0.1"
@@ -33576,7 +33717,7 @@ in
sources."concat-map-0.0.1"
sources."conf-1.4.0"
sources."convert-source-map-1.5.1"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."cross-spawn-5.1.0"
sources."currently-unhandled-0.4.1"
sources."debug-2.6.9"
@@ -33679,7 +33820,7 @@ in
sources."os-tmpdir-1.0.2"
sources."p-cancelable-0.3.0"
sources."p-finally-1.0.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-timeout-1.2.1"
sources."p-try-1.0.0"
@@ -33736,7 +33877,7 @@ in
sources."url-to-options-1.0.1"
sources."validate-npm-package-license-3.0.3"
sources."whatwg-fetch-2.0.4"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wrap-ansi-3.0.1"
sources."write-file-atomic-2.3.0"
sources."yallist-2.1.2"
@@ -33759,7 +33900,7 @@ in
sha512 = "0hw70vjlg6z0y9kf6vjr7g0w9hbm426fwvyzr88l62c5hd9mxrbw5v34b6zb31vbbyda3mkvcwgfnxgqaxvpn0wlrxr0va43pbzygbd";
};
dependencies = [
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
(sources."acorn-jsx-3.0.1" // {
dependencies = [
sources."acorn-3.3.0"
@@ -33782,7 +33923,7 @@ in
})
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."caller-path-0.1.0"
sources."callsites-0.2.0"
(sources."chalk-2.4.1" // {
@@ -33845,7 +33986,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."js-tokens-3.0.2"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."json-schema-traverse-0.3.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.3.0"
@@ -33906,7 +34047,7 @@ in
sources."type-check-0.3.2"
sources."typedarray-0.0.6"
sources."util-deprecate-1.0.2"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
sources."write-0.2.1"
@@ -33930,7 +34071,7 @@ in
sha512 = "0xcqrxpj24cns2rq91k2k2khr96129p7ncyjx4bda77dy0nkwn53lv6dhjbr0nq1bm6f13p0as4jkqcf3j4lygd7z1l2mbi829xyglw";
};
dependencies = [
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
(sources."acorn-jsx-3.0.1" // {
dependencies = [
sources."acorn-3.3.0"
@@ -33953,7 +34094,7 @@ in
})
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."caller-path-0.1.0"
sources."callsites-0.2.0"
(sources."chalk-1.1.3" // {
@@ -34028,7 +34169,7 @@ in
sources."isarray-1.0.0"
sources."isexe-2.0.0"
sources."js-tokens-3.0.2"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."json-schema-traverse-0.3.1"
sources."json-stable-stringify-without-jsonify-1.0.1"
sources."levn-0.3.0"
@@ -34092,7 +34233,7 @@ in
sources."type-check-0.3.2"
sources."typedarray-0.0.6"
sources."util-deprecate-1.0.2"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
sources."write-0.2.1"
@@ -34143,7 +34284,7 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.7.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."boom-4.3.1"
+ sources."buffer-from-1.1.0"
sources."builtin-modules-1.1.1"
sources."camelcase-2.1.1"
sources."camelcase-keys-2.1.0"
@@ -34155,13 +34296,8 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
- sources."concat-stream-1.6.0"
+ sources."concat-stream-1.6.2"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."currently-unhandled-0.4.1"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
@@ -34173,7 +34309,7 @@ in
sources."escape-string-regexp-1.0.5"
sources."exit-hook-1.1.1"
sources."extend-3.0.1"
- sources."extract-zip-1.6.6"
+ sources."extract-zip-1.6.7"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
@@ -34190,8 +34326,6 @@ in
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
sources."hasha-2.2.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."hosted-git-info-2.6.0"
sources."http-signature-1.2.0"
sources."indent-string-2.1.0"
@@ -34223,7 +34357,7 @@ in
sources."mime-types-2.1.18"
sources."mimic-fn-1.2.0"
sources."minimist-1.2.0"
- sources."mkdirp-0.5.0"
+ sources."mkdirp-0.5.1"
sources."mkpath-1.0.0"
sources."ms-2.0.0"
sources."node-phantom-simple-2.2.4"
@@ -34266,18 +34400,18 @@ in
sources."readable-stream-2.3.6"
sources."redent-1.0.0"
sources."repeating-2.0.1"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."request-progress-2.0.1"
sources."restore-cursor-1.0.1"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."semver-5.5.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
sources."spdx-correct-3.0.0"
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-bom-2.0.0"
@@ -34294,7 +34428,7 @@ in
sources."uuid-3.2.1"
sources."validate-npm-package-license-3.0.3"
sources."verror-1.10.0"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."yauzl-2.4.1"
sources."zen-observable-0.5.2"
];
@@ -34446,7 +34580,7 @@ in
sources."preserve-0.2.0"
(sources."prettyjson-1.2.1" // {
dependencies = [
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."minimist-1.2.0"
];
})
@@ -34505,14 +34639,14 @@ in
sha512 = "0j00v2mkrqla05ynq3cziyh4vslsshbkxdyqbzzg2vkg3if0ln0klsf5hck457pxksqky9gcsybc73c2sf6hgf910wzz5yljlxc5b7g";
};
dependencies = [
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."debug-3.1.0"
sources."lodash-4.17.10"
sources."lodash.groupby-4.6.0"
sources."microee-0.0.6"
sources."minilog-3.1.0"
sources."ms-2.0.0"
- sources."simple-git-1.92.0"
+ sources."simple-git-1.95.1"
sources."tabtab-git+https://github.com/mixu/node-tabtab.git"
];
buildInputs = globalBuildInputs;
@@ -34890,7 +35024,7 @@ in
sources."ms-2.0.0"
sources."multipipe-0.1.2"
sources."nanomatch-1.2.9"
- sources."natives-1.1.3"
+ sources."natives-1.1.4"
sources."object-assign-3.0.0"
sources."object-copy-0.1.0"
sources."object-visit-1.0.1"
@@ -35011,7 +35145,7 @@ in
sources."vinyl-0.4.6"
];
})
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."xtend-4.0.1"
];
@@ -35129,10 +35263,10 @@ in
html-minifier = nodeEnv.buildNodePackage {
name = "html-minifier";
packageName = "html-minifier";
- version = "3.5.15";
+ version = "3.5.16";
src = fetchurl {
- url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.15.tgz";
- sha512 = "01ni8s31nr1rb70wqi980nyfwir4z2z5mjvs454rgylns4nfyqvci581b40s1b67hgd95anq46j4yf5r947y5wzvncr7dgsysnvi5ir";
+ url = "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.16.tgz";
+ sha512 = "2h1ps83xn0f135rff92d6qcwlyh3wja2x3f4rf9clg2hs6fd66s6grsvpvx01gp8yihapv4dxkd0ws10bgbj850s5lv9259niy49znc";
};
dependencies = [
sources."camel-case-3.0.0"
@@ -35144,7 +35278,7 @@ in
sources."param-case-2.1.1"
sources."relateurl-0.2.7"
sources."source-map-0.5.7"
- (sources."uglify-js-3.3.25" // {
+ (sources."uglify-js-3.3.28" // {
dependencies = [
sources."source-map-0.6.1"
];
@@ -35203,7 +35337,7 @@ in
sources."arr-flatten-1.1.0"
sources."array-flatten-1.1.1"
sources."array-unique-0.2.1"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."async-each-1.0.1"
sources."async-limiter-1.0.0"
sources."asynckit-0.4.0"
@@ -35219,10 +35353,10 @@ in
sources."kind-of-6.0.2"
];
})
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-crc32-0.2.13"
- sources."buffer-fill-0.1.1"
+ sources."buffer-fill-1.0.0"
sources."bytes-3.0.0"
sources."chalk-2.4.1"
sources."chardet-0.4.2"
@@ -35242,7 +35376,7 @@ in
sources."continuable-cache-0.3.1"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."cookiejar-2.1.1"
+ sources."cookiejar-2.1.2"
sources."core-util-is-1.0.2"
sources."crc-3.5.0"
sources."crc32-stream-2.0.0"
@@ -35281,7 +35415,7 @@ in
sources."filename-regex-2.0.1"
sources."fill-range-2.2.4"
sources."finalhandler-1.1.1"
- sources."follow-redirects-1.4.1"
+ sources."follow-redirects-1.5.0"
sources."for-in-1.0.2"
sources."for-own-0.1.5"
sources."form-data-2.3.2"
@@ -35298,7 +35432,7 @@ in
sources."graceful-fs-4.1.11"
sources."has-flag-3.0.0"
sources."http-errors-1.6.3"
- sources."http-parser-js-0.4.12"
+ sources."http-parser-js-0.4.13"
sources."http-proxy-1.17.0"
(sources."http-proxy-middleware-0.17.4" // {
dependencies = [
@@ -35355,7 +35489,7 @@ in
sources."mimic-fn-1.2.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- sources."minipass-2.3.0"
+ sources."minipass-2.3.3"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
@@ -35423,7 +35557,7 @@ in
sources."strip-ansi-4.0.0"
sources."superagent-3.8.3"
sources."supports-color-5.4.0"
- (sources."tar-4.4.2" // {
+ (sources."tar-4.4.4" // {
dependencies = [
sources."minimist-0.0.8"
sources."safe-buffer-5.1.2"
@@ -35439,18 +35573,18 @@ in
})
sources."tmp-0.0.33"
sources."to-buffer-1.1.1"
- sources."tslib-1.9.1"
+ sources."tslib-1.9.2"
sources."type-is-1.6.16"
sources."ultron-1.1.1"
sources."unpipe-1.0.0"
- sources."untildify-3.0.2"
+ sources."untildify-3.0.3"
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."uuid-3.2.1"
sources."vary-1.1.2"
sources."websocket-driver-0.7.0"
sources."websocket-extensions-0.1.3"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."win-release-1.1.1"
sources."wrap-ansi-3.0.1"
sources."wrappy-1.0.2"
@@ -35524,7 +35658,7 @@ in
sources."inherits-2.0.3"
sources."is-buffer-1.1.6"
sources."isexe-2.0.0"
- (sources."js-yaml-3.11.0" // {
+ (sources."js-yaml-3.12.0" // {
dependencies = [
sources."esprima-4.0.0"
];
@@ -35560,7 +35694,7 @@ in
];
})
sources."uglify-to-browserify-1.0.2"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."window-size-0.1.0"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
@@ -35592,7 +35726,7 @@ in
sources."concat-map-0.0.1"
sources."core-util-is-1.0.2"
sources."cycle-1.0.3"
- sources."dtrace-provider-0.8.6"
+ sources."dtrace-provider-0.8.7"
sources."eyes-0.1.8"
sources."glob-6.0.4"
sources."imap-0.8.19"
@@ -35607,7 +35741,7 @@ in
sources."minimist-0.0.8"
];
})
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."mv-2.1.1"
sources."nan-2.10.0"
sources."ncp-2.0.0"
@@ -35618,7 +35752,7 @@ in
sources."printf-0.2.5"
sources."readable-stream-1.1.14"
sources."rimraf-2.4.5"
- sources."safe-json-stringify-1.1.0"
+ sources."safe-json-stringify-1.2.0"
sources."semver-5.3.0"
sources."stack-trace-0.0.10"
sources."string_decoder-0.10.31"
@@ -35640,10 +35774,10 @@ in
javascript-typescript-langserver = nodeEnv.buildNodePackage {
name = "javascript-typescript-langserver";
packageName = "javascript-typescript-langserver";
- version = "2.9.0";
+ version = "2.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.0.tgz";
- sha512 = "2j3dppwmpx29w1xxj6pmi1ddyc0v9y6dlw42nr1in2c7qddalh3axqx7b6p21qy5j0gf43wdaxfknk7klr5zyr0flcx552g5asxx7dk";
+ url = "https://registry.npmjs.org/javascript-typescript-langserver/-/javascript-typescript-langserver-2.9.2.tgz";
+ sha512 = "01pqqc94lq3c9010wbb0zafs81b5z4mzr06864kf4vs3zih30xfral4rbk9d2q2m2kbawcym8zlj5xydgig5k40kzqy1hyhallcm5dm";
};
dependencies = [
sources."ansi-color-0.2.1"
@@ -35689,7 +35823,7 @@ in
sources."opentracing-0.14.3"
sources."path-is-absolute-1.0.1"
sources."pathval-1.1.0"
- sources."rxjs-5.5.10"
+ sources."rxjs-5.5.11"
sources."semaphore-async-await-1.5.1"
sources."string-similarity-1.2.0"
sources."string-template-0.2.1"
@@ -35708,8 +35842,8 @@ in
];
})
sources."vscode-languageserver-protocol-3.5.1"
- sources."vscode-languageserver-types-3.7.2"
- sources."vscode-uri-1.0.3"
+ sources."vscode-languageserver-types-3.8.1"
+ sources."vscode-uri-1.0.5"
sources."wrappy-1.0.2"
sources."xorshift-0.2.1"
sources."xtend-4.0.1"
@@ -35969,7 +36103,7 @@ in
sources."combined-stream-1.0.6"
sources."commander-2.11.0"
sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.1"
+ sources."cookiejar-2.1.2"
sources."core-util-is-1.0.2"
sources."debug-3.1.0"
sources."delayed-stream-1.0.0"
@@ -35980,7 +36114,7 @@ in
sources."graphlib-2.1.5"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."lodash-4.17.10"
sources."methods-1.1.2"
sources."mime-1.6.0"
@@ -35990,7 +36124,7 @@ in
sources."native-promise-only-0.8.1"
sources."path-loader-1.0.4"
sources."process-nextick-args-2.0.0"
- sources."punycode-2.1.0"
+ sources."punycode-2.1.1"
sources."qs-6.5.2"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
@@ -36013,10 +36147,10 @@ in
json-server = nodeEnv.buildNodePackage {
name = "json-server";
packageName = "json-server";
- version = "0.12.2";
+ version = "0.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/json-server/-/json-server-0.12.2.tgz";
- sha512 = "3dqw05mkw5k42zdpjhg3cjiq7bfh8x1zxllrwyz0jgwmd4p79079fhsiifazqa5is659lzdnmiyiabxy62jjjk55xa296rdhyajc2vm";
+ url = "https://registry.npmjs.org/json-server/-/json-server-0.13.0.tgz";
+ sha512 = "0lz3n3y62gvdiqazgqbpfb9pdxwjvrjaagzs46ihsl6h6k18d7qmcw6bxiv30jkm3b6alb6p0l48jrym12sksx23am9bmibx45jwiq2";
};
dependencies = [
sources."accepts-1.3.5"
@@ -36033,7 +36167,6 @@ in
sources."basic-auth-2.0.0"
sources."bcrypt-pbkdf-1.0.1"
sources."body-parser-1.18.3"
- sources."boom-4.3.1"
sources."boxen-1.3.0"
sources."bytes-3.0.0"
sources."camelcase-4.1.0"
@@ -36048,8 +36181,12 @@ in
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
- sources."compressible-2.0.13"
- sources."compression-1.7.2"
+ sources."compressible-2.0.14"
+ (sources."compression-1.7.2" // {
+ dependencies = [
+ sources."mime-db-1.34.0"
+ ];
+ })
sources."configstore-3.1.2"
sources."connect-pause-0.1.1"
sources."content-disposition-0.5.2"
@@ -36060,16 +36197,11 @@ in
sources."cors-2.8.4"
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."crypto-random-string-1.0.0"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."delayed-stream-1.0.0"
sources."depd-1.1.2"
sources."destroy-1.0.4"
@@ -36125,8 +36257,6 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-flag-3.0.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-errors-1.6.3"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.23"
@@ -36178,7 +36308,7 @@ in
sources."minimist-1.2.0"
sources."morgan-1.9.0"
sources."ms-2.0.0"
- sources."nanoid-1.0.2"
+ sources."nanoid-1.0.3"
sources."negotiator-0.6.1"
sources."npm-run-path-2.0.2"
sources."number-is-nan-1.0.1"
@@ -36188,7 +36318,7 @@ in
sources."on-headers-1.0.1"
sources."os-locale-2.1.0"
sources."p-finally-1.0.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
sources."package-json-4.0.1"
@@ -36208,10 +36338,10 @@ in
sources."qs-6.5.2"
sources."range-parser-1.2.0"
sources."raw-body-2.3.3"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
sources."safe-buffer-5.1.1"
@@ -36227,8 +36357,7 @@ in
sources."shebang-command-1.2.0"
sources."shebang-regex-1.0.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."statuses-1.5.0"
sources."steno-0.4.4"
sources."string-width-2.1.1"
@@ -36251,7 +36380,7 @@ in
sources."uuid-3.2.1"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."which-module-2.0.0"
sources."widest-line-2.0.0"
(sources."wrap-ansi-2.1.0" // {
@@ -36284,10 +36413,10 @@ in
js-yaml = nodeEnv.buildNodePackage {
name = "js-yaml";
packageName = "js-yaml";
- version = "3.11.0";
+ version = "3.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz";
- sha512 = "0gka65n4d9gmcy0c8cy5h55r273dbxnw54gibp2nq5mmdmksjgb2nhcdfgfxs1wg3yayyrydn2v79fny7hdyq907dg87vmgjnsnr8mi";
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
+ sha512 = "3f8k2gvi3gnj9gpr3dnm5n5vpy2w68pshqk4hajlsmkb37ky30cnqza82l8sq153zx1nk67gizcm1ngmvlajw53hkwg4g96gir7d2rw";
};
dependencies = [
sources."argparse-1.0.10"
@@ -36332,8 +36461,8 @@ in
sources."arraybuffer.slice-0.0.7"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
- sources."ast-types-0.11.3"
- sources."async-2.6.0"
+ sources."ast-types-0.11.5"
+ sources."async-2.6.1"
sources."async-each-1.0.1"
sources."async-limiter-1.0.0"
sources."asynckit-0.4.0"
@@ -36356,7 +36485,7 @@ in
sources."blob-0.0.4"
sources."bluebird-3.5.1"
sources."body-parser-1.18.3"
- sources."boom-4.3.1"
+ sources."boom-2.10.1"
sources."brace-expansion-1.1.11"
(sources."braces-1.8.5" // {
dependencies = [
@@ -36372,7 +36501,7 @@ in
sources."chokidar-1.7.0"
sources."circular-json-0.5.4"
sources."co-4.6.0"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."combine-lists-1.0.1"
sources."combined-stream-1.0.6"
sources."commander-2.15.1"
@@ -36387,13 +36516,9 @@ in
})
sources."content-type-1.0.4"
sources."cookie-0.3.1"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
+ sources."cryptiles-2.0.5"
sources."custom-event-1.0.1"
sources."dashdash-1.14.1"
sources."data-uri-to-buffer-1.2.0"
@@ -36450,7 +36575,7 @@ in
sources."filename-regex-2.0.1"
sources."fill-range-2.2.4"
sources."finalhandler-1.1.0"
- sources."follow-redirects-1.4.1"
+ sources."follow-redirects-1.5.0"
sources."for-in-1.0.2"
sources."for-own-0.1.5"
sources."forever-agent-0.6.1"
@@ -36479,9 +36604,9 @@ in
sources."has-ansi-2.0.0"
sources."has-binary2-1.0.3"
sources."has-cors-1.1.0"
- sources."hawk-6.0.2"
+ sources."hawk-3.1.3"
sources."hipchat-notifier-1.1.0"
- sources."hoek-4.2.1"
+ sources."hoek-2.16.3"
sources."http-errors-1.6.3"
(sources."http-proxy-1.17.0" // {
dependencies = [
@@ -36530,19 +36655,15 @@ in
sources."libmime-3.0.0"
sources."libqp-1.1.0"
sources."lodash-4.17.10"
- (sources."log4js-2.6.1" // {
+ (sources."log4js-2.8.0" // {
dependencies = [
sources."assert-plus-0.2.0"
sources."aws-sign2-0.6.0"
- sources."boom-2.10.1"
sources."caseless-0.11.0"
- sources."cryptiles-2.0.5"
sources."debug-3.1.0"
sources."follow-redirects-1.0.0"
sources."form-data-2.0.0"
sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."hoek-2.16.3"
sources."http-signature-1.1.1"
sources."iconv-lite-0.4.15"
sources."isarray-0.0.1"
@@ -36550,7 +36671,6 @@ in
sources."qs-6.2.3"
sources."readable-stream-2.0.6"
sources."request-2.75.0"
- sources."sntp-1.0.9"
sources."socks-1.1.9"
sources."string_decoder-0.10.31"
sources."tunnel-agent-0.4.3"
@@ -36639,7 +36759,7 @@ in
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.2"
sources."repeat-string-1.6.1"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."requestretry-1.13.0"
sources."requires-port-1.0.0"
sources."rimraf-2.6.2"
@@ -36651,7 +36771,7 @@ in
sources."slack-node-0.2.0"
sources."smart-buffer-1.1.15"
sources."smtp-connection-2.12.0"
- sources."sntp-2.1.0"
+ sources."sntp-1.0.9"
(sources."socket.io-2.0.4" // {
dependencies = [
sources."isarray-2.0.1"
@@ -36667,7 +36787,7 @@ in
sources."socks-1.1.10"
sources."socks-proxy-agent-3.0.1"
sources."source-map-0.6.1"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."statuses-1.5.0"
sources."streamroller-0.7.0"
sources."string_decoder-1.1.1"
@@ -36736,7 +36856,7 @@ in
sources."body-parser-1.13.3"
sources."bytes-2.1.0"
sources."commander-2.6.0"
- sources."compressible-2.0.13"
+ sources."compressible-2.0.14"
sources."compression-1.5.2"
(sources."connect-2.30.2" // {
dependencies = [
@@ -36774,6 +36894,7 @@ in
dependencies = [
sources."accepts-1.3.5"
sources."destroy-1.0.3"
+ sources."mime-db-1.34.0"
sources."ms-2.0.0"
sources."negotiator-0.6.1"
sources."statuses-1.2.1"
@@ -36879,6 +37000,357 @@ in
production = true;
bypassCache = false;
};
+ lcov-result-merger = nodeEnv.buildNodePackage {
+ name = "lcov-result-merger";
+ packageName = "lcov-result-merger";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-3.0.0.tgz";
+ sha512 = "2l5nw2y7yblpyp45q06dwd1yhrd5np1q1nxm27lx7kjdjrdscry6qp5rsm04v9ccsa31ccmdl9mx4vmrp95zmbbij6p4bdbfvqzv1p9";
+ };
+ dependencies = [
+ sources."append-buffer-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
+ sources."buffer-equal-1.0.0"
+ sources."clone-2.1.2"
+ sources."clone-buffer-1.0.0"
+ sources."clone-stats-1.0.0"
+ sources."cloneable-readable-1.1.2"
+ sources."concat-map-0.0.1"
+ sources."convert-source-map-1.5.1"
+ sources."core-util-is-1.0.2"
+ sources."define-properties-1.1.2"
+ sources."duplexify-3.6.0"
+ sources."end-of-stream-1.4.1"
+ sources."extend-3.0.1"
+ sources."flush-write-stream-1.0.3"
+ sources."foreach-2.0.5"
+ sources."fs-mkdirp-stream-1.0.0"
+ sources."fs.realpath-1.0.0"
+ sources."function-bind-1.1.1"
+ sources."glob-7.1.2"
+ sources."glob-parent-3.1.0"
+ sources."glob-stream-6.1.0"
+ sources."graceful-fs-4.1.11"
+ sources."has-symbols-1.0.0"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."is-absolute-1.0.0"
+ sources."is-buffer-1.1.6"
+ sources."is-extglob-2.1.1"
+ sources."is-glob-3.1.0"
+ sources."is-negated-glob-1.0.0"
+ sources."is-relative-1.0.0"
+ sources."is-unc-path-1.0.0"
+ sources."is-utf8-0.2.1"
+ sources."is-valid-glob-1.0.0"
+ sources."is-windows-1.0.2"
+ sources."isarray-1.0.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
+ sources."lazystream-1.0.0"
+ sources."lead-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."normalize-path-2.1.1"
+ sources."now-and-later-2.0.0"
+ sources."object-keys-1.0.11"
+ sources."object.assign-4.1.0"
+ sources."once-1.4.0"
+ sources."ordered-read-streams-1.0.1"
+ sources."path-dirname-1.0.2"
+ sources."path-is-absolute-1.0.1"
+ sources."process-nextick-args-2.0.0"
+ sources."pump-2.0.1"
+ sources."pumpify-1.5.1"
+ sources."readable-stream-2.3.6"
+ sources."remove-bom-buffer-3.0.0"
+ sources."remove-bom-stream-1.2.0"
+ sources."remove-trailing-separator-1.1.0"
+ sources."replace-ext-1.0.0"
+ sources."resolve-options-1.1.0"
+ sources."safe-buffer-5.1.2"
+ sources."stream-shift-1.0.0"
+ sources."string_decoder-1.1.1"
+ sources."through2-2.0.3"
+ sources."through2-filter-2.0.0"
+ sources."to-absolute-glob-2.0.2"
+ sources."to-through-2.0.0"
+ sources."unc-path-regex-0.1.2"
+ sources."unique-stream-2.2.1"
+ sources."util-deprecate-1.0.2"
+ sources."value-or-function-3.0.0"
+ sources."vinyl-2.1.0"
+ sources."vinyl-fs-3.0.3"
+ sources."vinyl-sourcemap-1.1.0"
+ sources."wrappy-1.0.2"
+ sources."xtend-4.0.1"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Merges multiple lcov results into one";
+ homepage = https://github.com/mweibel/lcov-result-merger;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
+ leetcode-cli = nodeEnv.buildNodePackage {
+ name = "leetcode-cli";
+ packageName = "leetcode-cli";
+ version = "2.5.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/leetcode-cli/-/leetcode-cli-2.5.2.tgz";
+ sha512 = "2gsdhzqz6r2bqvkwk18wg4c7yq25zivdz3da1184nn95y6fsq89lpj6dpyf4h2hdm4h5gzw8zbw3f9fbqldflcw8b4hfj5zpnl9lxra";
+ };
+ dependencies = [
+ sources."abab-1.0.4"
+ sources."acorn-2.7.0"
+ sources."acorn-globals-1.0.9"
+ sources."ajv-5.5.2"
+ sources."ansi-regex-2.1.1"
+ sources."ansi-styles-3.2.0"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-1.5.2"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.7.0"
+ sources."balanced-match-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."boolbase-1.0.0"
+ sources."boom-4.3.1"
+ sources."brace-expansion-1.1.11"
+ sources."camelcase-2.1.1"
+ sources."caseless-0.12.0"
+ sources."chalk-2.4.1"
+ (sources."cheerio-0.20.0" // {
+ dependencies = [
+ sources."domelementtype-1.1.3"
+ ];
+ })
+ sources."cli-cursor-2.1.0"
+ sources."cli-spinners-1.3.1"
+ sources."cliui-3.2.0"
+ sources."co-4.6.0"
+ sources."code-point-at-1.1.0"
+ sources."color-convert-1.9.1"
+ sources."color-name-1.1.3"
+ sources."colors-1.3.0"
+ sources."combined-stream-1.0.6"
+ sources."concat-map-0.0.1"
+ sources."core-util-is-1.0.2"
+ sources."cross-spawn-5.1.0"
+ (sources."cryptiles-3.1.2" // {
+ dependencies = [
+ sources."boom-5.2.0"
+ ];
+ })
+ sources."css-select-1.2.0"
+ sources."css-what-2.1.0"
+ sources."cssom-0.3.2"
+ sources."cssstyle-0.2.37"
+ sources."cycle-1.0.3"
+ sources."dashdash-1.14.1"
+ sources."decamelize-1.2.0"
+ sources."deep-equal-0.2.2"
+ sources."deep-is-0.1.3"
+ sources."delayed-stream-1.0.0"
+ sources."dom-serializer-0.1.0"
+ sources."domelementtype-1.3.0"
+ sources."domhandler-2.3.0"
+ sources."domutils-1.5.1"
+ sources."ecc-jsbn-0.1.1"
+ sources."entities-1.1.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."escodegen-1.9.1"
+ sources."esprima-3.1.3"
+ sources."estraverse-4.2.0"
+ sources."esutils-2.0.2"
+ sources."execa-0.7.0"
+ sources."extend-3.0.1"
+ sources."extsprintf-1.3.0"
+ sources."eyes-0.1.8"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-levenshtein-2.0.6"
+ sources."find-up-2.1.0"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."fs.realpath-1.0.0"
+ sources."get-caller-file-1.0.2"
+ sources."get-stream-3.0.0"
+ sources."getpass-0.1.7"
+ sources."glob-7.1.2"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-flag-3.0.0"
+ sources."hawk-6.0.2"
+ sources."he-1.1.1"
+ sources."hoek-4.2.1"
+ (sources."htmlparser2-3.8.3" // {
+ dependencies = [
+ sources."entities-1.0.0"
+ ];
+ })
+ sources."http-signature-1.2.0"
+ sources."i-0.3.6"
+ sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
+ sources."ini-1.3.5"
+ sources."invert-kv-1.0.0"
+ sources."is-fullwidth-code-point-1.0.0"
+ sources."is-stream-1.1.0"
+ sources."is-typedarray-1.0.0"
+ sources."isarray-0.0.1"
+ sources."isexe-2.0.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."jsdom-7.2.2"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."lcid-1.0.0"
+ sources."levn-0.3.0"
+ sources."locate-path-2.0.0"
+ sources."lodash-4.17.10"
+ sources."log-symbols-2.2.0"
+ sources."lru-cache-4.1.3"
+ sources."mem-1.1.0"
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ sources."mimic-fn-1.2.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-0.0.8"
+ sources."mkdirp-0.5.1"
+ sources."moment-2.22.2"
+ sources."mute-stream-0.0.7"
+ (sources."nconf-0.10.0" // {
+ dependencies = [
+ sources."yargs-3.32.0"
+ ];
+ })
+ sources."ncp-1.0.1"
+ sources."npm-run-path-2.0.2"
+ sources."nth-check-1.0.1"
+ sources."number-is-nan-1.0.1"
+ sources."nwmatcher-1.4.4"
+ sources."oauth-sign-0.8.2"
+ sources."once-1.4.0"
+ sources."onetime-2.0.1"
+ sources."optionator-0.8.2"
+ (sources."ora-1.4.0" // {
+ dependencies = [
+ sources."ansi-styles-3.2.1"
+ sources."supports-color-5.4.0"
+ ];
+ })
+ sources."os-locale-1.4.0"
+ sources."p-finally-1.0.0"
+ sources."p-limit-1.3.0"
+ sources."p-locate-2.0.0"
+ sources."p-try-1.0.0"
+ sources."parse5-1.5.1"
+ sources."path-exists-3.0.0"
+ sources."path-is-absolute-1.0.1"
+ sources."path-key-2.0.1"
+ sources."performance-now-2.1.0"
+ sources."pkginfo-0.4.1"
+ sources."prelude-ls-1.1.2"
+ (sources."prompt-1.0.0" // {
+ dependencies = [
+ sources."async-0.9.2"
+ ];
+ })
+ sources."pseudomap-1.0.2"
+ sources."psl-1.1.27"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ sources."read-1.0.7"
+ sources."readable-stream-1.1.14"
+ (sources."request-2.83.0" // {
+ dependencies = [
+ sources."tough-cookie-2.3.4"
+ ];
+ })
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."restore-cursor-2.0.0"
+ sources."revalidator-0.1.8"
+ sources."rimraf-2.6.2"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."sax-1.2.4"
+ sources."secure-keys-1.0.0"
+ sources."set-blocking-2.0.0"
+ sources."shebang-command-1.2.0"
+ sources."shebang-regex-1.0.0"
+ sources."signal-exit-3.0.2"
+ sources."sntp-2.1.0"
+ sources."source-map-0.6.1"
+ sources."sprintf-js-1.1.1"
+ sources."sshpk-1.14.2"
+ sources."stack-trace-0.0.10"
+ sources."string-width-1.0.2"
+ sources."string_decoder-0.10.31"
+ sources."stringstream-0.0.6"
+ sources."strip-ansi-3.0.1"
+ sources."strip-eof-1.0.0"
+ (sources."supports-color-5.1.0" // {
+ dependencies = [
+ sources."has-flag-2.0.0"
+ ];
+ })
+ sources."symbol-tree-3.2.2"
+ sources."tough-cookie-2.4.2"
+ sources."tr46-0.0.3"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-check-0.3.2"
+ sources."underscore-1.8.3"
+ sources."utile-0.3.0"
+ sources."uuid-3.2.1"
+ sources."verror-1.10.0"
+ sources."webidl-conversions-2.0.1"
+ sources."whatwg-url-compat-0.6.5"
+ sources."which-1.3.1"
+ sources."which-module-2.0.0"
+ sources."window-size-0.1.4"
+ (sources."winston-2.1.1" // {
+ dependencies = [
+ sources."async-1.0.0"
+ sources."colors-1.0.3"
+ sources."pkginfo-0.3.1"
+ ];
+ })
+ sources."wordwrap-1.0.0"
+ sources."wrap-ansi-2.1.0"
+ sources."wrappy-1.0.2"
+ sources."xml-name-validator-2.0.1"
+ sources."y18n-3.2.1"
+ sources."yallist-2.1.2"
+ (sources."yargs-10.0.3" // {
+ dependencies = [
+ sources."ansi-regex-3.0.0"
+ sources."camelcase-4.1.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ sources."os-locale-2.1.0"
+ sources."string-width-2.1.1"
+ sources."strip-ansi-4.0.0"
+ ];
+ })
+ sources."yargs-parser-8.1.0"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "A cli tool to enjoy leetcode!";
+ homepage = "https://github.com/skygragon/leetcode-cli#readme";
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
lerna = nodeEnv.buildNodePackage {
name = "lerna";
packageName = "lerna";
@@ -36888,7 +37360,7 @@ in
sha512 = "22hg2kpml4wkbgp15nzbhcs81kdaynq0prspzmbfrr5hpbga1cz8vl2adc4dry1lcxs36s2w5pbsvrdic4bw623vx8nngxn0z7kl0wj";
};
dependencies = [
- sources."JSONStream-1.3.2"
+ sources."JSONStream-1.3.3"
sources."add-stream-1.0.0"
sources."align-text-0.1.4"
sources."amdefine-1.0.1"
@@ -36896,7 +37368,7 @@ in
sources."ansi-regex-2.1.1"
sources."ansi-styles-3.2.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."array-find-index-1.0.2"
sources."array-ify-1.0.0"
sources."array-union-1.0.2"
@@ -36905,7 +37377,7 @@ in
sources."async-1.5.2"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."builtin-modules-1.1.1"
sources."byline-5.0.0"
sources."camelcase-1.2.1"
@@ -36992,7 +37464,7 @@ in
sources."decamelize-1.2.0"
sources."decamelize-keys-1.1.0"
sources."dedent-0.7.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."defaults-1.0.3"
sources."delegates-1.0.0"
sources."detect-indent-5.0.0"
@@ -37108,7 +37580,7 @@ in
sources."minimist-options-3.0.2"
sources."mkdirp-0.5.1"
sources."modify-values-1.0.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."mute-stream-0.0.7"
sources."normalize-package-data-2.4.0"
sources."npm-run-path-2.0.2"
@@ -37126,7 +37598,7 @@ in
sources."os-locale-2.1.0"
sources."os-tmpdir-1.0.2"
sources."p-finally-1.0.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
(sources."package-json-4.0.1" // {
@@ -37149,7 +37621,7 @@ in
sources."pseudomap-1.0.2"
sources."q-1.5.1"
sources."quick-lru-1.1.0"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."read-cmd-shim-1.0.1"
sources."read-pkg-3.0.0"
sources."read-pkg-up-1.0.1"
@@ -37224,16 +37696,16 @@ in
sources."uuid-2.0.3"
sources."validate-npm-package-license-3.0.3"
sources."wcwidth-1.0.1"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."which-module-2.0.0"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."window-size-0.1.0"
sources."wordwrap-0.0.3"
sources."wrap-ansi-2.1.0"
sources."wrappy-1.0.2"
sources."write-file-atomic-2.3.0"
sources."write-json-file-2.3.0"
- sources."write-pkg-3.1.0"
+ sources."write-pkg-3.2.0"
sources."xtend-4.0.1"
sources."y18n-3.2.1"
sources."yallist-2.1.2"
@@ -37283,16 +37755,10 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.7.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."boom-4.3.1"
sources."caseless-0.12.0"
sources."co-4.6.0"
sources."combined-stream-1.0.6"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
sources."ecc-jsbn-0.1.1"
@@ -37307,8 +37773,6 @@ in
sources."graceful-fs-4.1.11"
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."image-size-0.5.5"
sources."is-typedarray-1.0.0"
@@ -37329,11 +37793,11 @@ in
sources."prr-1.0.1"
sources."punycode-1.4.1"
sources."qs-6.5.2"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."safe-buffer-5.1.2"
- sources."sntp-2.1.0"
+ sources."safer-buffer-2.1.2"
sources."source-map-0.6.1"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."tough-cookie-2.3.4"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
@@ -37372,393 +37836,6 @@ in
production = true;
bypassCache = false;
};
- lcov-result-merger = nodeEnv.buildNodePackage {
- name = "lcov-result-merger";
- packageName = "lcov-result-merger";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lcov-result-merger/-/lcov-result-merger-2.0.0.tgz";
- sha512 = "1y38jkc5m8kb1ll4wcc12yikqdb2l19acc3rdjl0bhs4vjh834mz53hhgyc4jm4gya1gnmzrj3g5337xn05kkxs92vl35zdqcwxij08";
- };
- dependencies = [
- sources."arr-diff-2.0.0"
- sources."arr-flatten-1.1.0"
- sources."array-unique-0.2.1"
- sources."balanced-match-1.0.0"
- sources."brace-expansion-1.1.11"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."clone-2.1.2"
- sources."clone-buffer-1.0.0"
- sources."clone-stats-1.0.0"
- sources."cloneable-readable-1.1.2"
- sources."concat-map-0.0.1"
- sources."convert-source-map-1.5.1"
- sources."core-util-is-1.0.2"
- sources."duplexify-3.6.0"
- sources."end-of-stream-1.4.1"
- sources."expand-brackets-0.1.5"
- sources."expand-range-1.8.2"
- sources."extend-3.0.1"
- sources."extend-shallow-2.0.1"
- sources."extglob-0.3.2"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.4"
- sources."first-chunk-stream-1.0.0"
- sources."for-in-1.0.2"
- sources."for-own-0.1.5"
- sources."glob-5.0.15"
- sources."glob-base-0.3.0"
- sources."glob-parent-3.1.0"
- (sources."glob-stream-5.3.5" // {
- dependencies = [
- sources."readable-stream-1.0.34"
- sources."through2-0.6.5"
- ];
- })
- sources."graceful-fs-4.1.11"
- sources."gulp-sourcemaps-1.6.0"
- sources."inflight-1.0.6"
- sources."inherits-2.0.3"
- sources."is-buffer-1.1.6"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-extendable-0.1.1"
- sources."is-extglob-2.1.1"
- sources."is-glob-3.1.0"
- sources."is-number-2.1.0"
- sources."is-posix-bracket-0.1.1"
- sources."is-primitive-2.0.0"
- sources."is-stream-1.1.0"
- sources."is-utf8-0.2.1"
- sources."is-valid-glob-0.3.0"
- sources."isarray-1.0.0"
- sources."isobject-2.1.0"
- sources."json-stable-stringify-1.0.1"
- sources."jsonify-0.0.0"
- sources."kind-of-3.2.2"
- sources."lazystream-1.0.0"
- sources."lodash.isequal-4.5.0"
- sources."math-random-1.0.1"
- sources."merge-stream-1.0.1"
- (sources."micromatch-2.3.11" // {
- dependencies = [
- sources."glob-parent-2.0.0"
- ];
- })
- sources."minimatch-3.0.4"
- sources."minimist-0.0.8"
- sources."mkdirp-0.5.1"
- sources."normalize-path-2.1.1"
- sources."object-assign-4.1.1"
- sources."object.omit-2.0.1"
- sources."once-1.4.0"
- sources."ordered-read-streams-0.3.0"
- sources."parse-glob-3.0.4"
- sources."path-dirname-1.0.2"
- sources."path-is-absolute-1.0.1"
- sources."preserve-0.2.0"
- sources."process-nextick-args-2.0.0"
- (sources."randomatic-3.0.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- ];
- })
- sources."readable-stream-2.3.6"
- sources."regex-cache-0.4.4"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."replace-ext-1.0.0"
- sources."safe-buffer-5.1.2"
- sources."stream-shift-1.0.0"
- sources."string_decoder-1.1.1"
- sources."strip-bom-2.0.0"
- sources."strip-bom-stream-1.0.0"
- sources."through2-2.0.3"
- sources."through2-filter-2.0.0"
- sources."to-absolute-glob-0.1.1"
- sources."unique-stream-2.2.1"
- sources."util-deprecate-1.0.2"
- sources."vali-date-1.0.0"
- sources."vinyl-2.1.0"
- (sources."vinyl-fs-2.4.4" // {
- dependencies = [
- sources."clone-1.0.4"
- sources."clone-stats-0.0.1"
- sources."is-extglob-1.0.0"
- sources."is-glob-2.0.1"
- sources."isarray-0.0.1"
- sources."replace-ext-0.0.1"
- sources."string_decoder-0.10.31"
- sources."vinyl-1.2.0"
- ];
- })
- sources."wrappy-1.0.2"
- sources."xtend-4.0.1"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Merges multiple lcov results into one";
- homepage = https://github.com/mweibel/lcov-result-merger;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
- livedown = nodeEnv.buildNodePackage {
- name = "livedown";
- packageName = "livedown";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/livedown/-/livedown-2.1.1.tgz";
- sha512 = "3pnrrz3blfy50s64c4wdj9gjl8zv3p72wd0vmrk86qjdd676g9sj4cwywp356r633csg568pczll7pfb6sxpm0x9fvbk4zhwvdpb70b";
- };
- dependencies = [
- sources."accepts-1.3.5"
- sources."after-0.8.2"
- sources."ajv-5.5.2"
- sources."anymatch-1.3.2"
- sources."argparse-1.0.10"
- sources."arr-diff-2.0.0"
- sources."arr-flatten-1.1.0"
- sources."array-flatten-1.1.1"
- sources."array-unique-0.2.1"
- sources."arraybuffer.slice-0.0.7"
- sources."asn1-0.2.3"
- sources."assert-plus-1.0.0"
- sources."async-each-1.0.1"
- sources."async-limiter-1.0.0"
- sources."asynckit-0.4.0"
- sources."aws-sign2-0.7.0"
- sources."aws4-1.7.0"
- sources."backo2-1.0.2"
- sources."balanced-match-1.0.0"
- sources."base64-arraybuffer-0.1.5"
- sources."base64id-1.0.0"
- sources."bcrypt-pbkdf-1.0.1"
- sources."better-assert-1.0.2"
- sources."binary-extensions-1.11.0"
- sources."blob-0.0.4"
- sources."body-parser-1.18.3"
- sources."boom-4.3.1"
- sources."brace-expansion-1.1.11"
- (sources."braces-1.8.5" // {
- dependencies = [
- sources."kind-of-6.0.2"
- ];
- })
- sources."bytes-3.0.0"
- sources."callsite-1.0.0"
- sources."caseless-0.12.0"
- sources."chokidar-1.7.0"
- sources."co-4.6.0"
- sources."combined-stream-1.0.6"
- sources."component-bind-1.0.0"
- sources."component-emitter-1.2.1"
- sources."component-inherit-0.0.3"
- sources."concat-map-0.0.1"
- sources."content-disposition-0.5.2"
- sources."content-type-1.0.4"
- sources."cookie-0.3.1"
- sources."cookie-signature-1.0.6"
- sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
- sources."dashdash-1.14.1"
- sources."debug-2.6.9"
- sources."delayed-stream-1.0.0"
- sources."depd-1.1.2"
- sources."destroy-1.0.4"
- sources."ecc-jsbn-0.1.1"
- sources."ee-first-1.1.1"
- sources."emoji-regex-6.1.1"
- sources."encodeurl-1.0.2"
- sources."engine.io-3.2.0"
- sources."engine.io-client-3.2.1"
- sources."engine.io-parser-2.1.2"
- sources."entities-1.1.1"
- sources."escape-html-1.0.3"
- sources."etag-1.8.1"
- sources."expand-brackets-0.1.5"
- sources."expand-range-1.8.2"
- (sources."express-4.16.3" // {
- dependencies = [
- (sources."body-parser-1.18.2" // {
- dependencies = [
- sources."setprototypeof-1.0.3"
- ];
- })
- sources."iconv-lite-0.4.19"
- sources."qs-6.5.1"
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- ];
- })
- sources."safe-buffer-5.1.1"
- sources."statuses-1.4.0"
- ];
- })
- sources."extend-3.0.1"
- sources."extglob-0.3.2"
- sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
- sources."fast-json-stable-stringify-2.0.0"
- sources."filename-regex-2.0.1"
- sources."fill-range-2.2.4"
- sources."finalhandler-1.1.1"
- sources."for-in-1.0.2"
- sources."for-own-0.1.5"
- sources."forever-agent-0.6.1"
- sources."form-data-2.3.2"
- sources."forwarded-0.1.2"
- sources."fresh-0.5.2"
- sources."fsevents-1.2.4"
- sources."getpass-0.1.7"
- sources."github-slugger-1.2.0"
- sources."glob-base-0.3.0"
- sources."glob-parent-2.0.0"
- sources."graceful-fs-4.1.11"
- sources."har-schema-2.0.0"
- sources."har-validator-5.0.3"
- sources."has-binary2-1.0.3"
- sources."has-cors-1.1.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
- sources."html-entities-1.2.1"
- sources."http-errors-1.6.3"
- sources."http-signature-1.2.0"
- sources."iconv-lite-0.4.23"
- sources."indexof-0.0.1"
- sources."inherits-2.0.3"
- sources."innertext-1.0.3"
- sources."ipaddr.js-1.6.0"
- sources."is-binary-path-1.0.1"
- sources."is-buffer-1.1.6"
- sources."is-dotfile-1.0.3"
- sources."is-equal-shallow-0.1.3"
- sources."is-extendable-0.1.1"
- sources."is-extglob-1.0.0"
- sources."is-glob-2.0.1"
- sources."is-number-2.1.0"
- sources."is-posix-bracket-0.1.1"
- sources."is-primitive-2.0.0"
- sources."is-typedarray-1.0.0"
- sources."is-wsl-1.1.0"
- sources."isarray-1.0.0"
- sources."isobject-2.1.0"
- sources."isstream-0.1.2"
- sources."jsbn-0.1.1"
- sources."json-schema-0.2.3"
- sources."json-schema-traverse-0.3.1"
- sources."json-stringify-safe-5.0.1"
- sources."jsprim-1.4.1"
- sources."kind-of-3.2.2"
- sources."linkify-it-2.0.3"
- sources."markdown-it-8.4.1"
- sources."markdown-it-emoji-1.4.0"
- sources."markdown-it-github-headings-1.1.1"
- sources."markdown-it-task-checkbox-1.0.6"
- sources."math-random-1.0.1"
- sources."mdurl-1.0.1"
- sources."media-typer-0.3.0"
- sources."merge-descriptors-1.0.1"
- sources."methods-1.1.2"
- sources."micromatch-2.3.11"
- sources."mime-1.4.1"
- sources."mime-db-1.33.0"
- sources."mime-types-2.1.18"
- sources."minimatch-3.0.4"
- sources."minimist-1.2.0"
- sources."ms-2.0.0"
- sources."nan-2.10.0"
- sources."negotiator-0.6.1"
- sources."normalize-path-2.1.1"
- sources."oauth-sign-0.8.2"
- sources."object-component-0.0.3"
- sources."object.omit-2.0.1"
- sources."on-finished-2.3.0"
- sources."opn-5.3.0"
- sources."parse-glob-3.0.4"
- sources."parseqs-0.0.5"
- sources."parseuri-0.0.5"
- sources."parseurl-1.3.2"
- sources."path-is-absolute-1.0.1"
- sources."path-to-regexp-0.1.7"
- sources."performance-now-2.1.0"
- sources."preserve-0.2.0"
- sources."process-nextick-args-2.0.0"
- sources."proxy-addr-2.0.3"
- sources."punycode-1.4.1"
- sources."qs-6.5.2"
- (sources."randomatic-3.0.0" // {
- dependencies = [
- sources."is-number-4.0.0"
- ];
- })
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.3"
- sources."readable-stream-2.3.6"
- sources."readdirp-2.1.0"
- sources."regex-cache-0.4.4"
- sources."remove-trailing-separator-1.1.0"
- sources."repeat-element-1.1.2"
- sources."repeat-string-1.6.1"
- sources."request-2.86.0"
- sources."safe-buffer-5.1.2"
- sources."safer-buffer-2.1.2"
- sources."send-0.16.2"
- sources."serve-static-1.13.2"
- sources."set-immediate-shim-1.0.1"
- sources."setprototypeof-1.1.0"
- sources."sntp-2.1.0"
- (sources."socket.io-2.1.0" // {
- dependencies = [
- sources."debug-3.1.0"
- sources."isarray-2.0.1"
- ];
- })
- sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.1.0"
- sources."socket.io-parser-3.2.0"
- sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.1"
- sources."statuses-1.5.0"
- sources."string_decoder-1.1.1"
- sources."to-array-0.1.4"
- sources."tough-cookie-2.3.4"
- sources."tunnel-agent-0.6.0"
- sources."tweetnacl-0.14.5"
- sources."type-is-1.6.16"
- sources."uc.micro-1.0.5"
- sources."ultron-1.1.1"
- sources."unpipe-1.0.0"
- sources."util-deprecate-1.0.2"
- sources."utils-merge-1.0.1"
- sources."uuid-3.2.1"
- sources."vary-1.1.2"
- sources."verror-1.10.0"
- sources."ws-3.3.3"
- sources."xmlhttprequest-ssl-1.5.5"
- sources."yeast-0.1.2"
- ];
- buildInputs = globalBuildInputs;
- meta = {
- description = "Live Markdown previews for your favourite editor.";
- homepage = https://github.com/shime/livedown;
- license = "MIT";
- };
- production = true;
- bypassCache = false;
- };
live-server = nodeEnv.buildNodePackage {
name = "live-server";
packageName = "live-server";
@@ -37788,7 +37865,7 @@ in
];
})
sources."chokidar-1.7.0"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."concat-map-0.0.1"
sources."connect-3.5.1"
sources."core-util-is-1.0.2"
@@ -37819,7 +37896,7 @@ in
sources."graceful-fs-4.1.11"
sources."http-auth-3.1.3"
sources."http-errors-1.6.3"
- sources."http-parser-js-0.4.12"
+ sources."http-parser-js-0.4.13"
sources."inherits-2.0.3"
sources."is-binary-path-1.0.1"
sources."is-buffer-1.1.6"
@@ -37916,6 +37993,247 @@ in
production = true;
bypassCache = false;
};
+ livedown = nodeEnv.buildNodePackage {
+ name = "livedown";
+ packageName = "livedown";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/livedown/-/livedown-2.1.1.tgz";
+ sha512 = "3pnrrz3blfy50s64c4wdj9gjl8zv3p72wd0vmrk86qjdd676g9sj4cwywp356r633csg568pczll7pfb6sxpm0x9fvbk4zhwvdpb70b";
+ };
+ dependencies = [
+ sources."accepts-1.3.5"
+ sources."after-0.8.2"
+ sources."ajv-5.5.2"
+ sources."anymatch-1.3.2"
+ sources."argparse-1.0.10"
+ sources."arr-diff-2.0.0"
+ sources."arr-flatten-1.1.0"
+ sources."array-flatten-1.1.1"
+ sources."array-unique-0.2.1"
+ sources."arraybuffer.slice-0.0.7"
+ sources."asn1-0.2.3"
+ sources."assert-plus-1.0.0"
+ sources."async-each-1.0.1"
+ sources."async-limiter-1.0.0"
+ sources."asynckit-0.4.0"
+ sources."aws-sign2-0.7.0"
+ sources."aws4-1.7.0"
+ sources."backo2-1.0.2"
+ sources."balanced-match-1.0.0"
+ sources."base64-arraybuffer-0.1.5"
+ sources."base64id-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
+ sources."better-assert-1.0.2"
+ sources."binary-extensions-1.11.0"
+ sources."blob-0.0.4"
+ sources."body-parser-1.18.3"
+ sources."brace-expansion-1.1.11"
+ (sources."braces-1.8.5" // {
+ dependencies = [
+ sources."kind-of-6.0.2"
+ ];
+ })
+ sources."bytes-3.0.0"
+ sources."callsite-1.0.0"
+ sources."caseless-0.12.0"
+ sources."chokidar-1.7.0"
+ sources."co-4.6.0"
+ sources."combined-stream-1.0.6"
+ sources."component-bind-1.0.0"
+ sources."component-emitter-1.2.1"
+ sources."component-inherit-0.0.3"
+ sources."concat-map-0.0.1"
+ sources."content-disposition-0.5.2"
+ sources."content-type-1.0.4"
+ sources."cookie-0.3.1"
+ sources."cookie-signature-1.0.6"
+ sources."core-util-is-1.0.2"
+ sources."dashdash-1.14.1"
+ sources."debug-2.6.9"
+ sources."delayed-stream-1.0.0"
+ sources."depd-1.1.2"
+ sources."destroy-1.0.4"
+ sources."ecc-jsbn-0.1.1"
+ sources."ee-first-1.1.1"
+ sources."emoji-regex-6.1.1"
+ sources."encodeurl-1.0.2"
+ sources."engine.io-3.2.0"
+ sources."engine.io-client-3.2.1"
+ sources."engine.io-parser-2.1.2"
+ sources."entities-1.1.1"
+ sources."escape-html-1.0.3"
+ sources."etag-1.8.1"
+ sources."expand-brackets-0.1.5"
+ sources."expand-range-1.8.2"
+ (sources."express-4.16.3" // {
+ dependencies = [
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
+ sources."safe-buffer-5.1.1"
+ sources."statuses-1.4.0"
+ ];
+ })
+ sources."extend-3.0.1"
+ sources."extglob-0.3.2"
+ sources."extsprintf-1.3.0"
+ sources."fast-deep-equal-1.1.0"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."filename-regex-2.0.1"
+ sources."fill-range-2.2.4"
+ sources."finalhandler-1.1.1"
+ sources."for-in-1.0.2"
+ sources."for-own-0.1.5"
+ sources."forever-agent-0.6.1"
+ sources."form-data-2.3.2"
+ sources."forwarded-0.1.2"
+ sources."fresh-0.5.2"
+ sources."fsevents-1.2.4"
+ sources."getpass-0.1.7"
+ sources."github-slugger-1.2.0"
+ sources."glob-base-0.3.0"
+ sources."glob-parent-2.0.0"
+ sources."graceful-fs-4.1.11"
+ sources."har-schema-2.0.0"
+ sources."har-validator-5.0.3"
+ sources."has-binary2-1.0.3"
+ sources."has-cors-1.1.0"
+ sources."html-entities-1.2.1"
+ sources."http-errors-1.6.3"
+ sources."http-signature-1.2.0"
+ sources."iconv-lite-0.4.23"
+ sources."indexof-0.0.1"
+ sources."inherits-2.0.3"
+ sources."innertext-1.0.3"
+ sources."ipaddr.js-1.6.0"
+ sources."is-binary-path-1.0.1"
+ sources."is-buffer-1.1.6"
+ sources."is-dotfile-1.0.3"
+ sources."is-equal-shallow-0.1.3"
+ sources."is-extendable-0.1.1"
+ sources."is-extglob-1.0.0"
+ sources."is-glob-2.0.1"
+ sources."is-number-2.1.0"
+ sources."is-posix-bracket-0.1.1"
+ sources."is-primitive-2.0.0"
+ sources."is-typedarray-1.0.0"
+ sources."is-wsl-1.1.0"
+ sources."isarray-1.0.0"
+ sources."isobject-2.1.0"
+ sources."isstream-0.1.2"
+ sources."jsbn-0.1.1"
+ sources."json-schema-0.2.3"
+ sources."json-schema-traverse-0.3.1"
+ sources."json-stringify-safe-5.0.1"
+ sources."jsprim-1.4.1"
+ sources."kind-of-3.2.2"
+ sources."linkify-it-2.0.3"
+ sources."markdown-it-8.4.1"
+ sources."markdown-it-emoji-1.4.0"
+ sources."markdown-it-github-headings-1.1.1"
+ sources."markdown-it-task-checkbox-1.0.6"
+ sources."math-random-1.0.1"
+ sources."mdurl-1.0.1"
+ sources."media-typer-0.3.0"
+ sources."merge-descriptors-1.0.1"
+ sources."methods-1.1.2"
+ sources."micromatch-2.3.11"
+ sources."mime-1.4.1"
+ sources."mime-db-1.33.0"
+ sources."mime-types-2.1.18"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
+ sources."ms-2.0.0"
+ sources."nan-2.10.0"
+ sources."negotiator-0.6.1"
+ sources."normalize-path-2.1.1"
+ sources."oauth-sign-0.8.2"
+ sources."object-component-0.0.3"
+ sources."object.omit-2.0.1"
+ sources."on-finished-2.3.0"
+ sources."opn-5.3.0"
+ sources."parse-glob-3.0.4"
+ sources."parseqs-0.0.5"
+ sources."parseuri-0.0.5"
+ sources."parseurl-1.3.2"
+ sources."path-is-absolute-1.0.1"
+ sources."path-to-regexp-0.1.7"
+ sources."performance-now-2.1.0"
+ sources."preserve-0.2.0"
+ sources."process-nextick-args-2.0.0"
+ sources."proxy-addr-2.0.3"
+ sources."punycode-1.4.1"
+ sources."qs-6.5.2"
+ (sources."randomatic-3.0.0" // {
+ dependencies = [
+ sources."is-number-4.0.0"
+ ];
+ })
+ sources."range-parser-1.2.0"
+ sources."raw-body-2.3.3"
+ sources."readable-stream-2.3.6"
+ sources."readdirp-2.1.0"
+ sources."regex-cache-0.4.4"
+ sources."remove-trailing-separator-1.1.0"
+ sources."repeat-element-1.1.2"
+ sources."repeat-string-1.6.1"
+ sources."request-2.87.0"
+ sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
+ sources."send-0.16.2"
+ sources."serve-static-1.13.2"
+ sources."set-immediate-shim-1.0.1"
+ sources."setprototypeof-1.1.0"
+ (sources."socket.io-2.1.1" // {
+ dependencies = [
+ sources."debug-3.1.0"
+ sources."isarray-2.0.1"
+ ];
+ })
+ sources."socket.io-adapter-1.1.1"
+ sources."socket.io-client-2.1.1"
+ sources."socket.io-parser-3.2.0"
+ sources."sprintf-js-1.0.3"
+ sources."sshpk-1.14.2"
+ sources."statuses-1.5.0"
+ sources."string_decoder-1.1.1"
+ sources."to-array-0.1.4"
+ sources."tough-cookie-2.3.4"
+ sources."tunnel-agent-0.6.0"
+ sources."tweetnacl-0.14.5"
+ sources."type-is-1.6.16"
+ sources."uc.micro-1.0.5"
+ sources."ultron-1.1.1"
+ sources."unpipe-1.0.0"
+ sources."util-deprecate-1.0.2"
+ sources."utils-merge-1.0.1"
+ sources."uuid-3.2.1"
+ sources."vary-1.1.2"
+ sources."verror-1.10.0"
+ sources."ws-3.3.3"
+ sources."xmlhttprequest-ssl-1.5.5"
+ sources."yeast-0.1.2"
+ ];
+ buildInputs = globalBuildInputs;
+ meta = {
+ description = "Live Markdown previews for your favourite editor.";
+ homepage = https://github.com/shime/livedown;
+ license = "MIT";
+ };
+ production = true;
+ bypassCache = false;
+ };
meat = nodeEnv.buildNodePackage {
name = "meat";
packageName = "meat";
@@ -37968,7 +38286,7 @@ in
})
sources."@gulp-sourcemaps/map-sources-1.0.0"
sources."accord-0.28.0"
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
sources."ajv-4.11.8"
sources."align-text-0.1.4"
sources."almond-0.3.3"
@@ -38078,11 +38396,11 @@ in
sources."kind-of-3.2.2"
];
})
- sources."browserslist-3.2.7"
+ sources."browserslist-3.2.8"
sources."buffer-equal-1.0.0"
sources."cache-base-1.0.1"
sources."camelcase-1.2.1"
- sources."caniuse-lite-1.0.30000842"
+ sources."caniuse-lite-1.0.30000850"
sources."caseless-0.12.0"
sources."center-align-0.1.3"
sources."chalk-1.1.3"
@@ -38106,7 +38424,7 @@ in
sources."concat-map-0.0.1"
sources."convert-source-map-1.5.1"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."core-util-is-1.0.2"
sources."cryptiles-2.0.5"
(sources."css-2.2.3" // {
@@ -38133,10 +38451,10 @@ in
sources."duplexer2-0.0.2"
sources."duplexify-3.6.0"
sources."ecc-jsbn-0.1.1"
- sources."electron-to-chromium-1.3.47"
+ sources."electron-to-chromium-1.3.48"
sources."end-of-stream-0.1.5"
sources."errno-0.1.7"
- sources."es5-ext-0.10.42"
+ sources."es5-ext-0.10.45"
sources."es6-iterator-2.0.3"
sources."es6-symbol-3.1.1"
sources."es6-weak-map-2.0.2"
@@ -38315,7 +38633,7 @@ in
sources."source-map-0.6.1"
sources."string_decoder-1.1.1"
sources."through2-2.0.3"
- sources."uglify-js-3.3.25"
+ sources."uglify-js-3.4.0"
];
})
(sources."gulp-util-3.0.8" // {
@@ -38457,7 +38775,7 @@ in
sources."ms-2.0.0"
sources."multipipe-0.1.2"
sources."nanomatch-1.2.9"
- sources."natives-1.1.3"
+ sources."natives-1.1.4"
sources."next-tick-1.0.0"
sources."normalize-path-2.1.1"
sources."now-and-later-2.0.0"
@@ -38522,6 +38840,7 @@ in
sources."right-align-0.1.3"
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
+ sources."safer-buffer-2.1.2"
sources."semver-5.5.0"
sources."sequencify-0.0.7"
sources."set-value-2.0.0"
@@ -38559,7 +38878,7 @@ in
sources."extend-shallow-3.0.2"
];
})
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -38636,7 +38955,7 @@ in
sources."vinyl-sourcemaps-apply-0.2.1"
sources."whatwg-fetch-2.0.4"
sources."when-3.7.8"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."window-size-0.1.0"
sources."wordwrap-0.0.2"
sources."wrappy-1.0.2"
@@ -38655,24 +38974,24 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "5.1.1";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-5.1.1.tgz";
- sha512 = "23wcnn35p90xhsc5z94w45s30j756s97acm313h6lacnbliqlaka3drq2xbsi4br8gdkld3r4dc33vglq8kf5jb408c7b2agpyar8lh";
+ url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz";
+ sha512 = "1qqnhamd691pyvx27ql2l5228qx1migp0yys010zdi748pp516hf10sr26w7gx71323a9p0gv69i358xv2w918gpba9xp2w70l211fq";
};
dependencies = [
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
sources."browser-stdout-1.3.1"
- sources."commander-2.11.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."debug-3.1.0"
sources."diff-3.5.0"
sources."escape-string-regexp-1.0.5"
sources."fs.realpath-1.0.0"
sources."glob-7.1.2"
- sources."growl-1.10.3"
- sources."has-flag-2.0.0"
+ sources."growl-1.10.5"
+ sources."has-flag-3.0.0"
sources."he-1.1.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -38682,7 +39001,7 @@ in
sources."ms-2.0.0"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
- sources."supports-color-4.4.0"
+ sources."supports-color-5.4.0"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -38708,7 +39027,7 @@ in
sources."combined-stream-1.0.6"
sources."commander-2.15.1"
sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.1"
+ sources."cookiejar-2.1.2"
sources."core-util-is-1.0.2"
sources."debug-3.1.0"
sources."delayed-stream-1.0.0"
@@ -38719,7 +39038,7 @@ in
sources."graphlib-2.1.5"
sources."inherits-2.0.3"
sources."isarray-1.0.0"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."json-refs-2.1.7"
sources."lodash-4.17.10"
sources."methods-1.1.2"
@@ -38730,7 +39049,7 @@ in
sources."native-promise-only-0.8.1"
sources."path-loader-1.0.4"
sources."process-nextick-args-2.0.0"
- sources."punycode-2.1.0"
+ sources."punycode-2.1.1"
sources."qs-6.5.2"
sources."readable-stream-2.3.6"
sources."safe-buffer-5.1.2"
@@ -38783,7 +39102,7 @@ in
sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
sources."asynckit-0.4.0"
@@ -38791,8 +39110,7 @@ in
sources."aws4-1.7.0"
sources."base64-js-1.2.3"
sources."bcrypt-pbkdf-1.0.1"
- sources."boom-4.3.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."builtin-modules-1.1.1"
sources."builtins-1.0.3"
sources."caseless-0.12.0"
@@ -38803,11 +39121,6 @@ in
sources."config-chain-1.1.11"
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -38832,8 +39145,6 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-unicode-2.0.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."hosted-git-info-2.6.0"
sources."http-signature-1.2.0"
sources."inherits-2.0.3"
@@ -38852,7 +39163,7 @@ in
sources."mime-db-1.33.0"
sources."mime-types-2.1.18"
sources."minimist-0.0.8"
- sources."minipass-2.3.0"
+ sources."minipass-2.3.3"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
sources."ncp-0.4.2"
@@ -38882,21 +39193,21 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.2"
sources."readable-stream-2.3.6"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."retry-0.10.1"
sources."rimraf-2.2.8"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."semver-5.5.0"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.2"
sources."slasp-0.0.4"
sources."slide-1.1.6"
- sources."sntp-2.1.0"
sources."spdx-correct-3.0.0"
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."ssri-5.3.0"
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
@@ -38914,7 +39225,7 @@ in
sources."validate-npm-package-name-3.0.0"
sources."verror-1.10.0"
sources."walk-2.3.13"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
sources."yallist-3.0.2"
];
@@ -38940,7 +39251,7 @@ in
sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
sources."asynckit-0.4.0"
@@ -38949,7 +39260,6 @@ in
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
sources."block-stream-0.0.9"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."caseless-0.12.0"
sources."co-4.6.0"
@@ -38958,11 +39268,6 @@ in
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -38982,8 +39287,6 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-unicode-2.0.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -39017,14 +39320,14 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.2"
sources."readable-stream-2.3.6"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."semver-5.3.0"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
@@ -39035,8 +39338,8 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.2.1"
sources."verror-1.10.0"
- sources."which-1.3.0"
- sources."wide-align-1.1.2"
+ sources."which-1.3.1"
+ sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -39080,7 +39383,7 @@ in
sources."ajv-4.11.8"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."array-find-index-1.0.2"
sources."array-flatten-1.1.1"
sources."asn1-0.2.3"
@@ -39097,7 +39400,7 @@ in
sources."yargs-1.3.3"
];
})
- sources."big-integer-1.6.28"
+ sources."big-integer-1.6.30"
sources."block-stream-0.0.9"
(sources."body-parser-1.18.2" // {
dependencies = [
@@ -39133,7 +39436,7 @@ in
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."default-browser-id-1.0.4"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -39256,7 +39559,7 @@ in
sources."http-errors-1.6.2"
];
})
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."readable-stream-2.3.6"
@@ -39265,6 +39568,7 @@ in
sources."request-2.81.0"
sources."rimraf-2.2.8"
sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
sources."semver-4.3.6"
sources."send-0.16.2"
(sources."serve-favicon-2.5.0" // {
@@ -39281,7 +39585,7 @@ in
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -39294,7 +39598,7 @@ in
sources."strip-bom-2.0.0"
sources."strip-indent-1.0.1"
sources."strip-json-comments-2.0.1"
- sources."strong-data-uri-1.0.5"
+ sources."strong-data-uri-1.0.6"
sources."tar-2.2.1"
sources."tar-pack-3.4.1"
sources."tough-cookie-2.3.4"
@@ -39323,8 +39627,8 @@ in
sources."validate-npm-package-license-3.0.3"
sources."vary-1.1.2"
sources."verror-1.10.0"
- sources."which-1.3.0"
- sources."wide-align-1.1.2"
+ sources."which-1.3.1"
+ sources."wide-align-1.1.3"
sources."win-detect-browsers-1.0.2"
sources."window-size-0.1.4"
sources."wrap-ansi-2.1.0"
@@ -39357,7 +39661,7 @@ in
sources."abbrev-1.1.1"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
sources."chownr-1.0.1"
@@ -39366,7 +39670,7 @@ in
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
sources."debug-2.6.9"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
sources."fs-minipass-1.2.5"
@@ -39383,7 +39687,7 @@ in
sources."isarray-1.0.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.3.0"
+ sources."minipass-2.3.3"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
@@ -39400,7 +39704,7 @@ in
sources."osenv-0.1.5"
sources."path-is-absolute-1.0.1"
sources."process-nextick-args-2.0.0"
- (sources."rc-1.2.7" // {
+ (sources."rc-1.2.8" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -39417,9 +39721,9 @@ in
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."tar-4.4.2"
+ sources."tar-4.4.4"
sources."util-deprecate-1.0.2"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
sources."yallist-3.0.2"
];
@@ -39435,10 +39739,10 @@ in
nodemon = nodeEnv.buildNodePackage {
name = "nodemon";
packageName = "nodemon";
- version = "1.17.4";
+ version = "1.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.4.tgz";
- sha512 = "3bmxd7fd494gy4ddax3mihjz1iy484iakyssbhy87cc2kwbky9xkb8l47vphc3n858q9p9afxl57w0849i24amsdjhwbqh8vxhjy1v5";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.5.tgz";
+ sha512 = "2djkgpk29zh4p7wqb8h4g6w0y2fix94zqpgi40fshn9yaf6anp5p0vbqj8r3s6zxsxhgvnv7lzj56v6s6gk0q2byqd9yqrmjmcacv8l";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -39531,7 +39835,7 @@ in
sources."crypto-random-string-1.0.0"
sources."debug-3.1.0"
sources."decode-uri-component-0.2.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."define-property-2.0.2"
sources."dot-prop-4.2.0"
sources."duplexer-0.1.1"
@@ -39650,7 +39954,7 @@ in
sources."ps-tree-1.1.0"
sources."pseudomap-1.0.2"
sources."pstree.remy-1.1.0"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."readable-stream-2.3.6"
sources."readdirp-2.1.0"
sources."regex-not-1.0.2"
@@ -39739,7 +40043,7 @@ in
];
})
sources."util-deprecate-1.0.2"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."widest-line-2.0.0"
sources."write-file-atomic-2.3.0"
sources."xdg-basedir-3.0.0"
@@ -39757,10 +40061,10 @@ in
node-red = nodeEnv.buildNodePackage {
name = "node-red";
packageName = "node-red";
- version = "0.18.5";
+ version = "0.18.7";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red/-/node-red-0.18.5.tgz";
- sha512 = "39pg9g9hqnalz1dl4zhs3g53lz92syqxbdxpfa89psxxdiz9xg6sa4arf35gw0fi46r3bn5vgwrf9w4ks6s822mq42n1bq85jfq1jqs";
+ url = "https://registry.npmjs.org/node-red/-/node-red-0.18.7.tgz";
+ sha512 = "20gq2l5qpk797xqjmv5idimlpssq388gdhb1p49kr1jh4n9d5wafdw6w80l78sd3121rk47yn016knf8dxkgpc46i8cincabbkhgkvk";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -39770,7 +40074,7 @@ in
sources."ansi-regex-2.1.1"
sources."append-field-0.1.0"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."argparse-1.0.10"
sources."array-flatten-1.1.1"
sources."array-indexofobject-0.0.1"
@@ -39788,21 +40092,10 @@ in
sources."bcryptjs-2.4.3"
sources."bl-1.2.2"
sources."block-stream-0.0.9"
- (sources."body-parser-1.18.2" // {
- dependencies = [
- (sources."raw-body-2.3.2" // {
- dependencies = [
- sources."depd-1.1.1"
- sources."http-errors-1.6.2"
- ];
- })
- sources."setprototypeof-1.0.3"
- ];
- })
+ sources."body-parser-1.18.3"
sources."boolbase-1.0.0"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buildmail-2.0.0"
sources."busboy-0.2.14"
sources."bytes-3.0.0"
@@ -39832,16 +40125,11 @@ in
sources."cors-2.8.4"
sources."crc-3.4.4"
sources."cron-1.3.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."css-select-1.2.0"
sources."css-what-2.1.0"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -39864,6 +40152,19 @@ in
sources."etag-1.8.1"
(sources."express-4.16.3" // {
dependencies = [
+ (sources."body-parser-1.18.2" // {
+ dependencies = [
+ sources."setprototypeof-1.0.3"
+ ];
+ })
+ sources."iconv-lite-0.4.19"
+ sources."qs-6.5.1"
+ (sources."raw-body-2.3.2" // {
+ dependencies = [
+ sources."depd-1.1.1"
+ sources."http-errors-1.6.2"
+ ];
+ })
sources."statuses-1.4.0"
];
})
@@ -39898,13 +40199,11 @@ in
sources."har-validator-5.0.3"
sources."has-unicode-2.0.1"
sources."hash-sum-1.0.2"
- sources."hawk-6.0.2"
(sources."help-me-1.1.0" // {
dependencies = [
sources."pump-2.0.1"
];
})
- sources."hoek-4.2.1"
(sources."htmlparser2-3.9.2" // {
dependencies = [
sources."domelementtype-1.3.0"
@@ -39914,7 +40213,7 @@ in
sources."http-signature-1.2.0"
sources."i18next-1.10.6"
sources."i18next-client-1.10.3"
- sources."iconv-lite-0.4.19"
+ sources."iconv-lite-0.4.23"
sources."imap-0.8.19"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -39939,7 +40238,7 @@ in
sources."json-stable-stringify-1.0.1"
sources."json-stringify-safe-5.0.1"
sources."json5-0.2.0"
- sources."jsonata-1.5.3"
+ sources."jsonata-1.5.4"
sources."jsonfile-4.0.0"
sources."jsonify-0.0.0"
sources."jsprim-1.4.1"
@@ -39986,9 +40285,9 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."moment-timezone-0.5.17"
- (sources."mqtt-2.17.0" // {
+ (sources."mqtt-2.18.0" // {
dependencies = [
sources."ws-3.3.3"
];
@@ -40027,7 +40326,7 @@ in
];
})
sources."node-red-node-rbe-0.2.3"
- sources."node-red-node-twitter-0.1.13"
+ sources."node-red-node-twitter-0.1.15"
sources."nodemailer-1.11.0"
sources."nodemailer-direct-transport-1.1.0"
sources."nodemailer-smtp-transport-1.1.0"
@@ -40066,19 +40365,15 @@ in
sources."pump-3.0.0"
sources."pumpify-1.5.1"
sources."punycode-1.4.1"
- sources."qs-6.5.1"
+ sources."qs-6.5.2"
sources."random-bytes-1.0.0"
sources."range-parser-1.2.0"
- (sources."raw-body-2.3.3" // {
- dependencies = [
- sources."iconv-lite-0.4.23"
- ];
- })
- sources."rc-1.2.7"
+ sources."raw-body-2.3.3"
+ sources."rc-1.2.8"
sources."readable-stream-2.3.6"
sources."reinterval-1.1.0"
sources."remove-trailing-separator-1.1.0"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."retry-0.6.1"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.1"
@@ -40092,11 +40387,10 @@ in
sources."setprototypeof-1.1.0"
sources."signal-exit-3.0.2"
sources."smtp-connection-1.3.8"
- sources."sntp-2.1.0"
sources."source-map-0.6.1"
sources."split2-2.2.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."statuses-1.5.0"
sources."stream-shift-1.0.0"
sources."streamsearch-0.1.2"
@@ -40115,7 +40409,7 @@ in
sources."twitter-ng-0.6.2"
sources."type-is-1.6.16"
sources."typedarray-0.0.6"
- sources."uglify-js-3.3.24"
+ sources."uglify-js-3.3.25"
sources."uid-number-0.0.6"
sources."uid-safe-2.1.5"
sources."uid2-0.0.3"
@@ -40133,7 +40427,7 @@ in
sources."verror-1.10.0"
sources."websocket-stream-5.1.2"
sources."when-3.7.8"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."wordwrap-0.0.3"
sources."wrappy-1.0.2"
(sources."ws-1.1.5" // {
@@ -40252,7 +40546,7 @@ in
sources."qs-0.5.1"
sources."rai-0.1.12"
sources."range-parser-0.0.4"
- sources."raw-socket-1.6.0"
+ sources."raw-socket-1.6.1"
sources."redis-0.7.3"
sources."semver-1.1.0"
sources."send-0.1.0"
@@ -40287,10 +40581,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "6.0.1";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.0.1.tgz";
- sha512 = "03x8626d7ngp160j0lx7vmzpjglvlqbz4gf9kmdndaxna9h81zr8rjhad3jcdkr9j1nnlc1rsr7acsdny5ykl3dwilq0p486zr9cyrp";
+ url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz";
+ sha512 = "3bhkx1ynzp39m6w5mnwfimc25arlpxgs9vgk0w7ai8zw0q6kxyljj4xjvkyxg7wv1f8jbj3k31ifgvy0kff4p3sbp5li53ls851qzvv";
};
buildInputs = globalBuildInputs;
meta = {
@@ -40315,7 +40609,7 @@ in
sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."argparse-0.1.15"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
@@ -40329,7 +40623,6 @@ in
sources."inherits-2.0.3"
];
})
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."caseless-0.12.0"
sources."chownr-0.0.2"
@@ -40346,11 +40639,6 @@ in
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
sources."couch-login-0.1.20"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -40382,8 +40670,6 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-unicode-2.0.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -40403,7 +40689,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.3.5"
- sources."natives-1.1.3"
+ sources."natives-1.1.4"
sources."ncp-0.4.2"
sources."nopt-2.2.1"
(sources."npm-registry-client-0.2.27" // {
@@ -40431,16 +40717,16 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.2"
sources."readable-stream-2.3.6"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."retry-0.6.0"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."semver-4.3.6"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.2"
sources."slide-1.1.6"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
@@ -40466,7 +40752,7 @@ in
sources."uuid-3.2.1"
sources."verror-1.10.0"
sources."walk-2.3.13"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -40508,7 +40794,7 @@ in
sources."cross-spawn-5.1.0"
sources."crypto-random-string-1.0.0"
sources."debug-2.6.9"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."dot-prop-4.2.0"
sources."duplexer3-0.1.4"
sources."escape-string-regexp-1.0.5"
@@ -40537,7 +40823,7 @@ in
sources."is-stream-1.1.0"
sources."isexe-2.0.0"
sources."jju-1.3.0"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."json-parse-helpfulerror-1.0.3"
sources."json5-0.5.1"
sources."latest-version-3.1.0"
@@ -40567,7 +40853,7 @@ in
sources."pinkie-promise-2.0.1"
sources."prepend-http-1.0.4"
sources."pseudomap-1.0.2"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."rc-config-loader-2.0.1"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
@@ -40600,7 +40886,7 @@ in
];
})
sources."url-parse-lax-1.0.0"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."widest-line-2.0.0"
sources."write-file-atomic-2.3.0"
sources."xdg-basedir-3.0.0"
@@ -40644,9 +40930,9 @@ in
sources."code-point-at-1.1.0"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."cross-spawn-5.1.0"
- sources."cvss-1.0.2"
+ sources."cvss-1.0.3"
sources."debug-3.1.0"
sources."decamelize-1.2.0"
sources."error-ex-1.3.1"
@@ -40698,7 +40984,7 @@ in
sources."os-locale-2.1.0"
sources."os-tmpdir-1.0.2"
sources."p-finally-1.0.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
sources."parse-json-2.2.0"
@@ -40733,7 +41019,7 @@ in
sources."through-2.3.8"
sources."tmp-0.0.33"
sources."validate-npm-package-license-3.0.3"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."which-module-2.0.0"
sources."wrap-ansi-2.1.0"
sources."wreck-12.5.1"
@@ -40761,10 +41047,10 @@ in
ocaml-language-server = nodeEnv.buildNodePackage {
name = "ocaml-language-server";
packageName = "ocaml-language-server";
- version = "1.0.34";
+ version = "1.0.35";
src = fetchurl {
- url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.34.tgz";
- sha512 = "216lq2hh4mmk0lzkn381p0l4lgr84xmv6jdjc42yry1yb695zy7bs36n40dmvc81afgsnc51b1rcbn51438ysk59w0drrxd8x43zykr";
+ url = "https://registry.npmjs.org/ocaml-language-server/-/ocaml-language-server-1.0.35.tgz";
+ sha512 = "3i0625j9mkprhjdmiw1ik23qi1wxl9kb826dbvbfkl4ksd9yxxs40k23rphxl3a10l303fa6in2lfidcf08qjqnv15m365bmkwbn57m";
};
dependencies = [
sources."async-2.6.0"
@@ -40786,7 +41072,7 @@ in
sources."vscode-languageclient-4.0.1"
sources."vscode-languageserver-4.0.0"
sources."vscode-languageserver-protocol-3.6.0"
- sources."vscode-languageserver-types-3.7.2"
+ sources."vscode-languageserver-types-3.8.1"
sources."vscode-uri-1.0.3"
sources."wrappy-1.0.2"
];
@@ -40833,7 +41119,6 @@ in
sources."content-type-1.0.4"
];
})
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."builtin-modules-1.1.1"
sources."bunyan-1.8.12"
@@ -40847,23 +41132,22 @@ in
sources."cliui-2.1.0"
sources."co-4.6.0"
sources."code-point-at-1.1.0"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."combined-stream-1.0.6"
- sources."compressible-2.0.13"
- sources."compression-1.7.2"
+ sources."compressible-2.0.14"
+ (sources."compression-1.7.2" // {
+ dependencies = [
+ sources."mime-db-1.34.0"
+ ];
+ })
sources."concat-map-0.0.1"
sources."connect-busboy-0.0.2"
sources."content-disposition-0.5.2"
sources."content-type-git+https://github.com/wikimedia/content-type#master"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
@@ -40876,7 +41160,7 @@ in
sources."dnscache-1.0.1"
sources."dom-storage-2.1.0"
sources."domino-1.0.30"
- sources."dtrace-provider-0.8.6"
+ sources."dtrace-provider-0.8.7"
sources."ecc-jsbn-0.1.1"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
@@ -40938,8 +41222,6 @@ in
sources."har-validator-5.0.3"
sources."has-symbols-1.0.0"
sources."hat-0.0.3"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."hosted-git-info-2.6.0"
sources."hot-shots-4.8.0"
sources."http-errors-1.6.3"
@@ -40958,7 +41240,7 @@ in
sources."is-utf8-0.2.1"
sources."isarray-0.0.1"
sources."isstream-0.1.2"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."jsbn-0.1.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.3.1"
@@ -40988,7 +41270,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.10"
sources."mkdirp-0.5.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."ms-2.0.0"
sources."msgpack5-3.6.0"
sources."mv-2.1.1"
@@ -41028,13 +41310,13 @@ in
sources."read-pkg-up-1.0.1"
sources."readable-stream-1.1.14"
sources."repeat-string-1.6.1"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
sources."right-align-0.1.3"
sources."rimraf-2.4.5"
sources."safe-buffer-5.1.1"
- sources."safe-json-stringify-1.1.0"
+ sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."semver-5.5.0"
sources."send-0.16.2"
@@ -41056,14 +41338,13 @@ in
sources."set-blocking-2.0.0"
sources."setprototypeof-1.1.0"
sources."simplediff-0.1.1"
- sources."sntp-2.1.0"
sources."source-map-0.4.4"
sources."spdx-correct-3.0.0"
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."statuses-1.5.0"
sources."streamsearch-0.1.2"
sources."string-width-1.0.2"
@@ -41130,7 +41411,7 @@ in
sources."balanced-match-1.0.0"
sources."base64-js-0.0.8"
sources."bencode-2.0.0"
- sources."big-integer-1.6.28"
+ sources."big-integer-1.6.30"
sources."bitfield-0.1.0"
sources."bittorrent-dht-6.4.2"
sources."bittorrent-tracker-7.7.0"
@@ -41141,12 +41422,12 @@ in
sources."bplist-creator-0.0.6"
sources."bplist-parser-0.1.1"
sources."brace-expansion-1.1.11"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-equal-0.0.1"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-indexof-1.1.1"
sources."builtin-modules-1.1.1"
sources."camelcase-2.1.1"
@@ -41168,7 +41449,7 @@ in
sources."decamelize-1.2.0"
sources."decompress-response-3.3.0"
sources."deep-equal-1.0.1"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."dns-equal-1.0.0"
sources."dns-packet-1.3.1"
sources."dns-txt-2.0.2"
@@ -41286,7 +41567,7 @@ in
sources."random-iterate-1.0.1"
sources."randombytes-2.0.6"
sources."range-parser-1.2.0"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."re-emitter-1.1.3"
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
@@ -41418,12 +41699,12 @@ in
sources."body-parser-1.13.3"
sources."boom-0.3.8"
sources."brace-expansion-1.1.11"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-equal-0.0.1"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."bytes-2.1.0"
sources."callsite-1.0.0"
sources."combined-stream-0.0.7"
@@ -41432,7 +41713,7 @@ in
sources."component-bind-1.0.0"
sources."component-emitter-1.2.1"
sources."component-inherit-0.0.3"
- sources."compressible-2.0.13"
+ sources."compressible-2.0.14"
sources."compression-1.5.2"
sources."concat-map-0.0.1"
(sources."connect-2.30.2" // {
@@ -41480,6 +41761,7 @@ in
dependencies = [
sources."accepts-1.3.5"
sources."destroy-1.0.3"
+ sources."mime-db-1.34.0"
sources."ms-2.0.0"
sources."multiparty-3.3.2"
sources."negotiator-0.6.1"
@@ -41699,7 +41981,7 @@ in
sources."utp-0.0.7"
sources."vary-1.0.1"
sources."vhost-3.0.2"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wrappy-1.0.2"
sources."ws-1.1.5"
sources."wtf-8-1.0.0"
@@ -41729,7 +42011,7 @@ in
sources."ansi-styles-2.2.1"
sources."asn1-0.2.3"
sources."assert-plus-0.2.0"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."aws-sign2-0.6.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
@@ -41810,8 +42092,9 @@ in
sources."request-2.67.0"
sources."request-progress-2.0.1"
sources."rimraf-2.6.2"
+ sources."safer-buffer-2.1.2"
sources."sntp-1.0.9"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -41844,10 +42127,10 @@ in
prettier = nodeEnv.buildNodePackage {
name = "prettier";
packageName = "prettier";
- version = "1.12.1";
+ version = "1.13.4";
src = fetchurl {
- url = "https://registry.npmjs.org/prettier/-/prettier-1.12.1.tgz";
- sha1 = "c1ad20e803e7749faf905a409d2367e06bbe7325";
+ url = "https://registry.npmjs.org/prettier/-/prettier-1.13.4.tgz";
+ sha512 = "325wxdf3kzhwx8wnfz13gnllivgbgsbwqfqmq3pv29gamzzwspajfjwz7iw83fxlzf3nyd038h4qv9y544v5b5fjvsh52n0crkh8svs";
};
buildInputs = globalBuildInputs;
meta = {
@@ -41867,7 +42150,7 @@ in
sha512 = "1kgjvji88fvdi6vazqq6gx32zqgkg9qp639952cz2v2g5izl7yblgawy1xra5dypv5c1a43wk4ch4iskr1kxxpfmn7pnql92q1nvxgg";
};
dependencies = [
- sources."JSONStream-1.3.2"
+ sources."JSONStream-1.3.3"
sources."acorn-4.0.13"
sources."acorn-node-1.3.0"
(sources."anymatch-2.0.0" // {
@@ -41894,7 +42177,12 @@ in
sources."array-reduce-0.0.0"
sources."array-unique-0.3.2"
sources."asn1.js-4.10.1"
- sources."assert-1.4.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."inherits-2.0.1"
+ sources."util-0.10.3"
+ ];
+ })
sources."assign-symbols-1.0.0"
sources."astw-2.2.0"
sources."async-1.5.2"
@@ -41929,7 +42217,7 @@ in
})
(sources."browserify-13.3.0" // {
dependencies = [
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
(sources."concat-stream-1.5.2" // {
dependencies = [
sources."readable-stream-2.0.6"
@@ -41954,7 +42242,7 @@ in
sources."browserify-zlib-0.1.4"
sources."buffer-4.9.1"
sources."buffer-crc32-0.2.13"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."cache-base-1.0.1"
@@ -41974,7 +42262,7 @@ in
];
})
sources."collection-visit-1.0.0"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."combine-source-map-0.8.0"
sources."component-emitter-1.2.1"
sources."concat-map-0.0.1"
@@ -42030,7 +42318,7 @@ in
];
})
sources."graceful-fs-4.1.11"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."has-value-1.0.0"
sources."has-values-1.0.0"
sources."hash-base-3.0.4"
@@ -42183,7 +42471,7 @@ in
sources."static-extend-0.1.2"
sources."stream-browserify-2.0.1"
sources."stream-combiner2-1.1.1"
- sources."stream-http-2.8.2"
+ sources."stream-http-2.8.3"
sources."stream-splicer-2.0.0"
sources."string-stream-0.0.7"
sources."string_decoder-0.10.31"
@@ -42231,11 +42519,7 @@ in
sources."kind-of-6.0.2"
];
})
- (sources."util-0.10.3" // {
- dependencies = [
- sources."inherits-2.0.1"
- ];
- })
+ sources."util-0.10.4"
sources."util-deprecate-1.0.2"
sources."vm-browserify-0.0.4"
(sources."watchpack-1.6.0" // {
@@ -42263,7 +42547,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
sources."xtend-4.0.1"
@@ -42299,7 +42583,7 @@ in
sources."align-text-0.1.4"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."array-flatten-1.1.1"
sources."asap-2.0.6"
sources."asn1-0.2.3"
@@ -42316,9 +42600,9 @@ in
sources."bl-1.2.2"
sources."body-parser-1.18.3"
sources."boom-2.10.1"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
- sources."buffer-fill-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
+ sources."buffer-fill-1.0.0"
sources."bufferutil-2.0.1"
sources."bytes-3.0.0"
sources."camelcase-1.2.1"
@@ -42339,13 +42623,13 @@ in
sources."cookie-0.3.1"
sources."cookie-parser-1.4.3"
sources."cookie-signature-1.0.6"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."core-util-is-1.0.2"
sources."cryptiles-2.0.5"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -42394,7 +42678,7 @@ in
sources."graceful-fs-4.1.11"
sources."har-schema-1.0.5"
sources."har-validator-4.2.1"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."has-unicode-2.0.1"
sources."hawk-3.1.3"
sources."hoek-2.16.3"
@@ -42500,7 +42784,7 @@ in
sources."qtdatastream-0.7.1"
sources."range-parser-1.2.0"
sources."raw-body-2.3.3"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."readable-stream-2.3.6"
sources."regenerator-runtime-0.11.1"
sources."repeat-string-1.6.1"
@@ -42525,7 +42809,7 @@ in
sources."simple-get-1.4.3"
sources."sntp-1.0.9"
sources."source-map-0.5.7"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -42556,7 +42840,7 @@ in
sources."vary-1.1.2"
sources."verror-1.10.0"
sources."void-elements-2.0.1"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."window-size-0.1.0"
sources."with-5.1.1"
sources."wordwrap-0.0.2"
@@ -42583,7 +42867,7 @@ in
sha1 = "da6ac7d4d7777a59a5e951cf46e72fd4b6b40a2c";
};
dependencies = [
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
sources."amdefine-1.0.1"
sources."ast-types-0.9.6"
sources."balanced-match-1.0.0"
@@ -42709,7 +42993,6 @@ in
sources."aws-sign2-0.7.0"
sources."aws4-1.7.0"
sources."bcrypt-pbkdf-1.0.1"
- sources."boom-4.3.1"
sources."buffer-crc32-0.2.1"
sources."bytes-0.2.1"
sources."caseless-0.12.0"
@@ -42726,11 +43009,6 @@ in
sources."cookie-signature-1.0.1"
sources."core-util-is-1.0.2"
sources."crc-0.2.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."crypto-0.0.3"
sources."dashdash-1.14.1"
sources."debug-3.1.0"
@@ -42765,8 +43043,6 @@ in
sources."getpass-0.1.7"
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-auth-2.0.7"
sources."http-signature-1.2.0"
sources."inherits-2.0.3"
@@ -42795,7 +43071,7 @@ in
(sources."openid-2.0.6" // {
dependencies = [
sources."qs-6.5.2"
- sources."request-2.86.0"
+ sources."request-2.87.0"
];
})
sources."pause-0.0.1"
@@ -42807,10 +43083,10 @@ in
sources."readable-stream-1.1.14"
sources."request-2.9.203"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
sources."send-0.1.4"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."stream-counter-0.2.0"
sources."string-1.6.1"
sources."string_decoder-0.10.31"
@@ -42850,160 +43126,58 @@ in
serve = nodeEnv.buildNodePackage {
name = "serve";
packageName = "serve";
- version = "6.5.7";
+ version = "8.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/serve/-/serve-6.5.7.tgz";
- sha512 = "1kn5wi04mvlkl4p56wihpgkh9va0vxy2a6rsfpy62ra53iri5w0dq8aipp62m8a23hl1s4g2bcfxyxlxmlyzkv9mvqi0455afbpn2nw";
+ url = "https://registry.npmjs.org/serve/-/serve-8.1.1.tgz";
+ sha512 = "33362hcr3ya4yadf2vzck9w8ihh58g025y2ngrj7c461h2jbazi1ddrp4qi8d82y5781rkrihahas2y3pcskipx75n2mghs2mhs98dx";
};
dependencies = [
- sources."accepts-1.3.5"
- sources."address-1.0.3"
- sources."align-text-0.1.4"
- sources."amdefine-1.0.1"
- sources."ansi-align-2.0.0"
- sources."ansi-regex-3.0.0"
+ sources."@zeit/schemas-1.2.0"
+ sources."ajv-6.5.0"
sources."ansi-styles-3.2.1"
- sources."arch-2.1.0"
- (sources."args-4.0.0" // {
- dependencies = [
- sources."chalk-2.3.2"
- ];
- })
- sources."async-1.5.2"
- sources."basic-auth-2.0.0"
- sources."bluebird-3.5.1"
- (sources."boxen-1.3.0" // {
- dependencies = [
- sources."camelcase-4.1.0"
- ];
- })
+ sources."arg-2.0.0"
+ sources."balanced-match-1.0.0"
+ sources."brace-expansion-1.1.11"
sources."bytes-3.0.0"
- sources."camelcase-5.0.0"
- sources."center-align-0.1.3"
- sources."chalk-2.4.0"
- sources."cli-boxes-1.0.0"
- (sources."clipboardy-1.2.3" // {
- dependencies = [
- sources."execa-0.8.0"
- ];
- })
- sources."cliui-2.1.0"
+ sources."chalk-2.4.1"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."compressible-2.0.13"
- sources."compression-1.7.2"
- sources."content-type-1.0.4"
- sources."cross-spawn-5.1.0"
- sources."dargs-5.1.0"
- sources."debug-2.6.9"
- sources."decamelize-1.2.0"
- sources."deep-extend-0.5.1"
- sources."depd-1.1.1"
- sources."destroy-1.0.4"
- sources."detect-port-1.2.2"
- sources."ee-first-1.1.1"
- sources."encodeurl-1.0.2"
- sources."escape-html-1.0.3"
+ sources."concat-map-0.0.1"
+ sources."content-disposition-0.5.2"
+ sources."deep-extend-0.6.0"
sources."escape-string-regexp-1.0.5"
- sources."etag-1.8.1"
- sources."execa-0.7.0"
- sources."filesize-3.6.1"
- sources."fresh-0.5.2"
- sources."fs-extra-5.0.0"
- sources."get-stream-3.0.0"
- sources."graceful-fs-4.1.11"
- (sources."handlebars-4.0.11" // {
- dependencies = [
- sources."camelcase-1.2.1"
- sources."wordwrap-0.0.2"
- ];
- })
+ sources."fast-deep-equal-2.0.1"
+ sources."fast-json-stable-stringify-2.0.0"
+ sources."fast-url-parser-1.1.3"
+ sources."glob-slash-1.0.0"
+ sources."glob-slasher-1.0.1"
sources."has-flag-3.0.0"
- sources."http-errors-1.6.2"
- sources."iconv-lite-0.4.19"
- sources."inherits-2.0.3"
sources."ini-1.3.5"
- sources."ip-1.1.5"
- sources."is-buffer-1.1.6"
- sources."is-fullwidth-code-point-2.0.0"
- sources."is-stream-1.1.0"
- sources."is-wsl-1.1.0"
- sources."isexe-2.0.0"
- sources."jsonfile-4.0.0"
- sources."kind-of-3.2.2"
- sources."lazy-cache-1.0.4"
- sources."leven-2.1.0"
- sources."longest-1.0.1"
- sources."lru-cache-4.1.3"
- sources."micro-9.1.4"
- sources."micro-compress-1.0.0"
- sources."mime-1.4.1"
+ sources."json-schema-traverse-0.3.1"
+ sources."lodash-2.4.2"
+ sources."lodash._objecttypes-2.4.1"
+ sources."lodash.isobject-2.4.1"
sources."mime-db-1.33.0"
sources."mime-types-2.1.18"
- sources."minimist-0.0.10"
- sources."mri-1.1.0"
- sources."ms-2.0.0"
- sources."negotiator-0.6.1"
- sources."node-version-1.1.3"
- sources."npm-run-path-2.0.2"
- sources."on-finished-2.3.0"
- sources."on-headers-1.0.1"
- sources."openssl-self-signed-certificate-1.1.6"
- sources."opn-5.3.0"
- sources."optimist-0.6.1"
- sources."p-finally-1.0.0"
+ sources."minimatch-3.0.4"
+ sources."minimist-1.2.0"
sources."path-is-inside-1.0.2"
- sources."path-key-2.0.1"
- sources."path-type-3.0.0"
- sources."pify-3.0.0"
- sources."promise-timeout-1.3.0"
- sources."pseudomap-1.0.2"
- sources."range-parser-1.2.0"
- sources."raw-body-2.3.2"
- sources."rc-1.2.7"
+ sources."path-to-regexp-2.2.1"
+ sources."punycode-2.1.1"
+ sources."rc-1.2.8"
sources."registry-auth-token-3.3.2"
sources."registry-url-3.1.0"
- sources."repeat-string-1.6.1"
- sources."right-align-0.1.3"
- sources."safe-buffer-5.1.1"
- (sources."send-0.16.2" // {
+ sources."safe-buffer-5.1.2"
+ (sources."serve-handler-3.1.0" // {
dependencies = [
- sources."depd-1.1.2"
- sources."statuses-1.4.0"
+ sources."punycode-1.4.1"
];
})
- sources."setprototypeof-1.0.3"
- sources."shebang-command-1.2.0"
- sources."shebang-regex-1.0.0"
- sources."signal-exit-3.0.2"
- sources."source-map-0.4.4"
- sources."statuses-1.5.0"
- sources."string-width-2.1.1"
- sources."strip-ansi-4.0.0"
- sources."strip-eof-1.0.0"
sources."strip-json-comments-2.0.1"
sources."supports-color-5.4.0"
- sources."term-size-1.2.0"
- (sources."uglify-js-2.8.29" // {
- dependencies = [
- sources."source-map-0.5.7"
- ];
- })
- sources."uglify-to-browserify-1.0.2"
- sources."universalify-0.1.1"
- sources."unpipe-1.0.0"
- (sources."update-check-1.5.0" // {
- dependencies = [
- sources."minimist-1.2.0"
- ];
- })
- sources."vary-1.1.2"
- sources."which-1.3.0"
- sources."widest-line-2.0.0"
- sources."window-size-0.1.0"
- sources."wordwrap-0.0.3"
- sources."yallist-2.1.2"
- sources."yargs-3.10.0"
+ sources."toxic-1.0.0"
+ sources."update-check-1.5.2"
+ sources."uri-js-4.2.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -43046,7 +43220,6 @@ in
sources."setprototypeof-1.0.3"
];
})
- sources."boom-4.3.1"
sources."bytes-3.0.0"
sources."callsite-1.0.0"
sources."caseless-0.12.0"
@@ -43067,11 +43240,6 @@ in
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."delayed-stream-1.0.0"
@@ -43114,8 +43282,6 @@ in
sources."har-validator-5.0.3"
sources."has-binary-data-0.1.1"
sources."has-cors-1.0.3"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
(sources."htmlparser2-3.7.3" // {
dependencies = [
sources."entities-1.0.0"
@@ -43176,8 +43342,9 @@ in
})
sources."read-1.0.7"
sources."readable-stream-1.1.14"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."safe-buffer-5.1.1"
+ sources."safer-buffer-2.1.2"
sources."send-0.16.2"
sources."serve-static-1.13.2"
sources."setprototypeof-1.1.0"
@@ -43187,7 +43354,6 @@ in
sources."debug-0.7.4"
];
})
- sources."sntp-2.1.0"
(sources."socket.io-1.0.6" // {
dependencies = [
sources."commander-0.6.1"
@@ -43203,7 +43369,7 @@ in
sources."socket.io-client-1.0.6"
sources."socket.io-parser-2.2.0"
sources."split-0.3.3"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."statuses-1.4.0"
sources."stream-combiner-0.0.4"
sources."string_decoder-0.10.31"
@@ -43241,7 +43407,7 @@ in
sha1 = "36bf5209356facbf6cef18fa32274d116043ed24";
};
dependencies = [
- sources."JSONStream-1.3.2"
+ sources."JSONStream-1.3.3"
sources."accepts-1.3.5"
sources."ajv-5.5.2"
sources."amdefine-1.0.1"
@@ -43265,7 +43431,6 @@ in
sources."raw-body-2.3.3"
];
})
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
(sources."bunyan-1.8.12" // {
dependencies = [
@@ -43280,10 +43445,11 @@ in
sources."color-name-1.1.3"
sources."combined-stream-1.0.6"
sources."commander-2.15.1"
- sources."compressible-2.0.13"
+ sources."compressible-2.0.14"
(sources."compression-1.7.2" // {
dependencies = [
sources."bytes-3.0.0"
+ sources."mime-db-1.34.0"
];
})
sources."concat-map-0.0.1"
@@ -43294,11 +43460,6 @@ in
sources."cookies-0.7.1"
sources."core-util-is-1.0.2"
sources."crypt3-0.2.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."delayed-stream-1.0.0"
@@ -43312,7 +43473,7 @@ in
sources."domelementtype-1.3.0"
sources."domhandler-2.4.2"
sources."domutils-1.7.0"
- sources."dtrace-provider-0.8.6"
+ sources."dtrace-provider-0.8.7"
sources."ecc-jsbn-0.1.1"
sources."ee-first-1.1.1"
sources."encodeurl-1.0.2"
@@ -43344,9 +43505,7 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-flag-3.0.0"
- sources."hawk-6.0.2"
sources."highlight.js-8.9.1"
- sources."hoek-4.2.1"
sources."htmlparser2-3.9.2"
(sources."http-errors-1.6.3" // {
dependencies = [
@@ -43363,7 +43522,7 @@ in
sources."isarray-1.0.0"
sources."isstream-0.1.2"
sources."jju-1.3.0"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."jsbn-0.1.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.3.1"
@@ -43390,7 +43549,7 @@ in
sources."minimatch-1.0.0"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."ms-2.0.0"
sources."mv-2.1.1"
sources."nan-2.10.0"
@@ -43425,7 +43584,7 @@ in
sources."source-map-0.6.1"
];
})
- (sources."request-2.86.0" // {
+ (sources."request-2.87.0" // {
dependencies = [
sources."qs-6.5.2"
];
@@ -43438,7 +43597,7 @@ in
];
})
sources."safe-buffer-5.1.1"
- sources."safe-json-stringify-1.1.0"
+ sources."safe-json-stringify-1.2.0"
sources."safer-buffer-2.1.2"
sources."sanitize-html-1.18.2"
sources."semver-4.3.6"
@@ -43447,11 +43606,10 @@ in
sources."setprototypeof-1.0.3"
sources."sigmund-1.0.1"
sources."sinopia-htpasswd-0.4.5"
- sources."sntp-2.1.0"
sources."source-map-0.1.43"
sources."sprintf-js-1.0.3"
sources."srcset-1.0.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."statuses-1.3.1"
sources."string_decoder-1.1.1"
sources."supports-color-5.4.0"
@@ -43594,7 +43752,7 @@ in
})
sources."rimraf-2.4.5"
sources."safe-buffer-5.1.2"
- sources."safe-json-stringify-1.1.0"
+ sources."safe-json-stringify-1.2.0"
sources."semver-4.3.6"
(sources."smartdc-auth-2.3.1" // {
dependencies = [
@@ -43663,10 +43821,10 @@ in
"socket.io" = nodeEnv.buildNodePackage {
name = "socket.io";
packageName = "socket.io";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.0.tgz";
- sha512 = "2wkm6yqxvn8wk51rbakza3zxg3rknzfgmwqrbzvnlacf1yylplsr61i67m01sg8x7589ymj6x3z266ngvqd6qyyakdx4dlnsl4bfbr9";
+ url = "https://registry.npmjs.org/socket.io/-/socket.io-2.1.1.tgz";
+ sha512 = "343q0n5zxyjzzcmyq7dr3naqbrpl3x469y1ff8zxxr104np1l5l9w1d0vl7nncbaxhxymwplbzfy9sbipjrbp5d001nvv9ysymnmr5c";
};
dependencies = [
sources."accepts-1.3.5"
@@ -43700,7 +43858,7 @@ in
sources."parseuri-0.0.5"
sources."safe-buffer-5.1.2"
sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.1.0"
+ sources."socket.io-client-2.1.1"
sources."socket.io-parser-3.2.0"
sources."to-array-0.1.4"
sources."ultron-1.1.1"
@@ -43870,18 +44028,18 @@ in
sources."domelementtype-1.3.0"
sources."domutils-1.5.1"
sources."entities-1.1.1"
- sources."es-abstract-1.11.0"
+ sources."es-abstract-1.12.0"
sources."es-to-primitive-1.1.1"
sources."esprima-4.0.0"
sources."foreach-2.0.5"
sources."function-bind-1.1.1"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."is-callable-1.1.3"
sources."is-date-object-1.0.1"
sources."is-regex-1.0.4"
sources."is-symbol-1.0.1"
sources."js-yaml-3.10.0"
- sources."mdn-data-1.1.3"
+ sources."mdn-data-1.1.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
sources."nth-check-1.0.1"
@@ -43954,10 +44112,10 @@ in
titanium = nodeEnv.buildNodePackage {
name = "titanium";
packageName = "titanium";
- version = "5.1.0";
+ version = "5.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/titanium/-/titanium-5.1.0.tgz";
- sha1 = "68597b6d324a65c7cf070c40a2a156b219ca06dd";
+ url = "https://registry.npmjs.org/titanium/-/titanium-5.1.1.tgz";
+ sha1 = "69b0032628178bafc3f0d09a1c9c16437413db5b";
};
dependencies = [
sources."adm-zip-0.4.7"
@@ -44072,12 +44230,13 @@ in
sources."right-align-0.1.3"
sources."rimraf-2.2.8"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."semver-5.3.0"
sources."sntp-1.0.9"
sources."source-map-0.1.32"
sources."source-map-support-0.3.2"
sources."sprintf-0.1.5"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -44118,10 +44277,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "2.8.3";
+ version = "2.9.1";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.8.3.tgz";
- sha512 = "2vwhgmdrdw42wwaqbmrnz7zy197hrxl6smkmhrb3n93vsjmqg24a4r10czdralib6qpj82bx2gw97r3gxlspj7y54jswigs2vj3bf1b";
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.9.1.tgz";
+ sha512 = "1066hcxz9xdrz1mnyz6kl6ms4szdjxvlz6j37mdp6jlf6vnhmdxx8qyikbzgy7yzvx6i7hvxhg51kc6isw9wpar2r1ch3f6zzclral7";
};
buildInputs = globalBuildInputs;
meta = {
@@ -44155,7 +44314,7 @@ in
sources."bluebird-3.5.1"
sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."camelcase-4.1.0"
sources."capture-stack-trace-1.0.0"
sources."chalk-1.1.3"
@@ -44181,7 +44340,7 @@ in
sources."cross-spawn-5.1.0"
sources."crypto-random-string-1.0.0"
sources."debug-2.6.9"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."defaults-1.0.3"
sources."delayed-stream-1.0.0"
sources."detect-indent-5.0.0"
@@ -44201,7 +44360,7 @@ in
sources."global-dirs-0.1.1"
sources."got-6.7.1"
sources."graceful-fs-4.1.11"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-flag-3.0.0"
sources."has-unicode-2.0.1"
@@ -44270,8 +44429,9 @@ in
sources."process-nextick-args-2.0.0"
sources."promise-finally-3.0.0"
sources."pseudomap-1.0.2"
+ sources."psl-1.1.27"
sources."punycode-1.4.1"
- (sources."rc-1.2.7" // {
+ (sources."rc-1.2.8" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -44302,9 +44462,9 @@ in
sources."throat-3.2.0"
sources."timed-out-4.0.1"
sources."touch-1.0.0"
- sources."tough-cookie-2.3.4"
+ sources."tough-cookie-2.4.2"
sources."typedarray-0.0.6"
- sources."typescript-2.8.3"
+ sources."typescript-2.9.1"
(sources."typings-core-2.3.3" // {
dependencies = [
sources."minimist-0.0.8"
@@ -44324,7 +44484,7 @@ in
sources."url-parse-lax-1.0.0"
sources."util-deprecate-1.0.2"
sources."wcwidth-1.0.1"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."widest-line-2.0.0"
sources."wordwrap-1.0.0"
sources."wrappy-1.0.2"
@@ -44346,10 +44506,10 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "3.3.25";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.3.25.tgz";
- sha512 = "1qcjjk817lmd65xc8h3axwdnx4h7xkn3k9lf7dy65bm564jhrqvq5v11va9jiamdva9q0nk589i3vm2pn7dvjmjavx5s3d3pj1fi1l6";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.0.tgz";
+ sha512 = "0jsplc22wvbnzdbcs1adsqcdpkn65ywg5ab8lk4v4ajsh9zhiys0qwf2ylairyj8znh9ml8ppknp94vamzlca947paplpz4lffzkir5";
};
dependencies = [
sources."commander-2.15.1"
@@ -44367,10 +44527,10 @@ in
ungit = nodeEnv.buildNodePackage {
name = "ungit";
packageName = "ungit";
- version = "1.4.22";
+ version = "1.4.24";
src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.4.22.tgz";
- sha512 = "22lf4pk1mn1vn8rgakj6z2dllv4xr7nybymkgrpvkfkglrlh6s9ch5cbbqsdy7mgrhgkmqwrygyb5xypwil4rrfw4a2x1q15jpg229w";
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.4.24.tgz";
+ sha512 = "1lx5m5bkm4m64qiy8ccnbixchng112m2b9qvzd963k8f0nb298hfjrry1c2la1bavv834zdvgv2xwa93fdyaq0wrv562p9d0n1p5lxy";
};
dependencies = [
sources."abbrev-1.1.1"
@@ -44379,7 +44539,7 @@ in
sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."array-flatten-1.1.1"
sources."arraybuffer.slice-0.0.7"
sources."asn1-0.2.3"
@@ -44399,9 +44559,8 @@ in
sources."bluebird-3.5.1"
sources."blueimp-md5-2.10.0"
sources."body-parser-1.18.3"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."builtin-modules-1.1.1"
sources."builtins-1.0.3"
sources."bytes-3.0.0"
@@ -44440,16 +44599,11 @@ in
sources."cross-spawn-5.1.0"
sources."crossroads-0.12.2"
sources."crypt-0.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."cycle-1.0.3"
sources."dashdash-1.14.1"
sources."debug-2.6.9"
sources."decamelize-1.2.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."delayed-stream-0.0.5"
sources."delegates-1.0.0"
sources."depd-1.1.2"
@@ -44509,7 +44663,7 @@ in
sources."gauge-2.7.4"
sources."get-caller-file-1.0.2"
sources."get-stream-3.0.0"
- sources."getmac-1.4.1"
+ sources."getmac-1.4.3"
sources."getpass-0.1.7"
sources."glob-7.1.2"
sources."graceful-fs-4.1.11"
@@ -44519,8 +44673,6 @@ in
sources."has-cors-1.1.0"
sources."has-unicode-2.0.1"
sources."hasher-1.2.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."hogan.js-3.0.2"
sources."hosted-git-info-2.6.0"
sources."http-errors-1.6.3"
@@ -44543,7 +44695,7 @@ in
sources."isexe-2.0.0"
sources."isstream-0.1.2"
sources."jquery-3.3.1"
- sources."jquery-ui-1.12.1"
+ sources."jquery-ui-bundle-1.12.1"
sources."jsbn-0.1.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.3.1"
@@ -44581,13 +44733,13 @@ in
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
sources."mkdirp-0.5.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."ms-2.0.0"
sources."negotiator-0.6.1"
sources."node-cache-4.2.0"
sources."nopt-1.0.10"
sources."normalize-package-data-2.4.0"
- sources."npm-6.0.1"
+ sources."npm-6.1.0"
sources."npm-package-arg-6.1.0"
(sources."npm-registry-client-8.5.1" // {
dependencies = [
@@ -44617,7 +44769,7 @@ in
sources."os-tmpdir-1.0.2"
sources."osenv-0.1.5"
sources."p-finally-1.0.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
sources."parseqs-0.0.5"
@@ -44639,20 +44791,20 @@ in
sources."qs-6.5.2"
sources."random-bytes-1.0.0"
sources."range-parser-1.2.0"
- (sources."raven-2.4.2" // {
+ (sources."raven-2.6.2" // {
dependencies = [
sources."uuid-3.0.0"
];
})
sources."raw-body-2.3.3"
- (sources."rc-1.2.7" // {
+ (sources."rc-1.2.8" // {
dependencies = [
sources."minimist-1.2.0"
];
})
sources."readable-stream-1.0.27-1"
sources."reduce-component-1.0.1"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."require-directory-2.1.1"
sources."require-main-filename-1.0.1"
sources."retry-0.10.1"
@@ -44671,8 +44823,7 @@ in
sources."simple-swizzle-0.2.2"
sources."slide-1.1.6"
sources."snapsvg-0.5.1"
- sources."sntp-2.1.0"
- (sources."socket.io-2.1.0" // {
+ (sources."socket.io-2.1.1" // {
dependencies = [
sources."component-emitter-1.2.1"
sources."debug-3.1.0"
@@ -44680,15 +44831,15 @@ in
];
})
sources."socket.io-adapter-1.1.1"
- sources."socket.io-client-2.1.0"
+ sources."socket.io-client-2.1.1"
sources."socket.io-parser-3.2.0"
sources."spdx-correct-3.0.0"
sources."spdx-exceptions-2.1.0"
sources."spdx-expression-parse-3.0.0"
sources."spdx-license-ids-3.0.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."ssri-5.3.0"
- sources."stack-trace-0.0.9"
+ sources."stack-trace-0.0.10"
sources."statuses-1.5.0"
sources."string-width-1.0.2"
sources."string_decoder-0.10.31"
@@ -44699,7 +44850,7 @@ in
dependencies = [
sources."combined-stream-1.0.6"
sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.1"
+ sources."cookiejar-2.1.2"
sources."debug-3.1.0"
sources."delayed-stream-1.0.0"
sources."extend-3.0.1"
@@ -44735,9 +44886,9 @@ in
sources."vary-1.1.2"
sources."verror-1.10.0"
sources."whatwg-fetch-2.0.4"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."which-module-2.0.0"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
(sources."winston-2.4.2" // {
dependencies = [
sources."async-1.0.0"
@@ -44754,7 +44905,7 @@ in
sources."xmlhttprequest-ssl-1.5.5"
sources."y18n-3.2.1"
sources."yallist-2.1.2"
- (sources."yargs-11.1.0" // {
+ (sources."yargs-12.0.0-candidate.0" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."is-fullwidth-code-point-2.0.0"
@@ -44762,7 +44913,7 @@ in
sources."strip-ansi-4.0.0"
];
})
- sources."yargs-parser-9.0.2"
+ sources."yargs-parser-10.0.0"
sources."yeast-0.1.2"
];
buildInputs = globalBuildInputs;
@@ -44777,10 +44928,10 @@ in
vue-cli = nodeEnv.buildNodePackage {
name = "vue-cli";
packageName = "vue-cli";
- version = "2.9.3";
+ version = "2.9.6";
src = fetchurl {
- url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.3.tgz";
- sha512 = "1wljsr8srayqg7crbbczi00v31q3dxm3vz4fjcdqasdgsm1ajc9gham6sinsxlraniwg4dn5b1kmpw0nln63cy3v02vib07shyvq2ki";
+ url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz";
+ sha512 = "10ysmrjahrqcnpqwr8x6vapf0wdzaa0g9y143fgpk99p0ggm1536isaasl091y6rrhyfqpyb41k5gpg02zmx24dmz2nfjc9zink815k";
};
dependencies = [
sources."absolute-0.0.1"
@@ -44799,7 +44950,7 @@ in
sources."arrify-1.0.1"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.7.0"
@@ -44808,13 +44959,12 @@ in
sources."bcrypt-pbkdf-1.0.1"
sources."bl-1.2.2"
sources."bluebird-3.5.1"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."buffer-3.6.0"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-crc32-0.2.13"
- sources."buffer-fill-0.1.1"
+ sources."buffer-fill-1.0.0"
sources."builtins-1.0.3"
sources."camelcase-1.2.1"
sources."capture-stack-trace-1.0.0"
@@ -44826,7 +44976,7 @@ in
})
sources."center-align-0.1.3"
sources."chalk-2.4.1"
- sources."chardet-0.4.2"
+ sources."chardet-0.5.0"
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.3.1"
sources."cli-width-2.2.0"
@@ -44846,11 +44996,6 @@ in
sources."consolidate-0.14.5"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."decamelize-1.2.0"
(sources."decompress-4.2.0" // {
@@ -44883,11 +45028,11 @@ in
sources."esprima-4.0.0"
sources."extend-3.0.1"
sources."extend-shallow-2.0.1"
- sources."external-editor-2.2.0"
+ sources."external-editor-3.0.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
- sources."fd-slicer-1.0.1"
+ sources."fd-slicer-1.1.0"
sources."figures-2.0.0"
sources."file-type-5.2.0"
sources."filename-reserved-regex-2.0.0"
@@ -44919,15 +45064,13 @@ in
sources."has-generators-1.0.1"
sources."has-symbol-support-x-1.4.2"
sources."has-to-string-tag-x-1.4.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.23"
sources."ieee754-1.1.11"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.5"
- sources."inquirer-3.3.0"
+ sources."inquirer-6.0.0"
sources."is-3.2.1"
sources."is-buffer-1.1.6"
sources."is-extendable-0.1.1"
@@ -44943,7 +45086,7 @@ in
sources."isarray-1.0.0"
sources."isstream-0.1.2"
sources."isurl-1.0.0"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."jsbn-0.1.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.3.1"
@@ -45003,7 +45146,7 @@ in
sources."readable-stream-2.3.6"
sources."recursive-readdir-2.2.2"
sources."repeat-string-1.6.1"
- (sources."request-2.86.0" // {
+ (sources."request-2.87.0" // {
dependencies = [
sources."co-4.6.0"
];
@@ -45012,17 +45155,15 @@ in
sources."right-align-0.1.3"
sources."rimraf-2.6.2"
sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
+ sources."rxjs-6.2.0"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."seek-bzip-1.0.5"
sources."semver-5.5.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
sources."source-map-0.4.4"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."stat-mode-0.2.2"
sources."string-width-2.1.1"
sources."string_decoder-1.1.1"
@@ -45041,6 +45182,7 @@ in
sources."toml-2.3.3"
sources."tough-cookie-2.3.4"
sources."trim-repeated-1.0.0"
+ sources."tslib-1.9.2"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
(sources."uglify-js-2.8.29" // {
@@ -45069,7 +45211,7 @@ in
sources."xtend-4.0.1"
sources."yaml-js-0.0.8"
sources."yargs-3.10.0"
- sources."yauzl-2.9.1"
+ sources."yauzl-2.9.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -45095,7 +45237,7 @@ in
sources."ansi-styles-2.2.1"
sources."asn1-0.2.3"
sources."assert-plus-0.2.0"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."aws-sign2-0.6.0"
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
@@ -45194,9 +45336,10 @@ in
sources."request-2.67.0"
sources."request-progress-2.0.1"
sources."rimraf-2.6.2"
+ sources."safer-buffer-2.1.2"
sources."semver-2.3.2"
sources."sntp-1.0.9"
- (sources."sshpk-1.14.1" // {
+ (sources."sshpk-1.14.2" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -45211,7 +45354,7 @@ in
sources."tunnel-agent-0.4.3"
sources."tweetnacl-0.14.5"
sources."typedarray-0.0.6"
- sources."underscore-1.9.0"
+ sources."underscore-1.9.1"
sources."util-deprecate-1.0.2"
sources."verror-1.10.0"
sources."which-1.2.14"
@@ -45231,28 +45374,31 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "4.8.3";
+ version = "4.11.1";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-4.8.3.tgz";
- sha512 = "2rkj1v8fvs1hqpgiikpfnbv29yf1fmyqxfsmgkk3rwhbxbg35ca932ysiamxdq0cgn56lw8sknmfh98cgiw9rfywx5cgj8j2a6c05zy";
+ url = "https://registry.npmjs.org/webpack/-/webpack-4.11.1.tgz";
+ sha512 = "2lhfa6yb1xg2qcka4a2gmk2vc0xm853vz1ymqrx32fjnf6ljpqf189v4v1l4pgsghsb5lav1d33gmz37hv7xcl8h7av9x76qb394wgh";
};
dependencies = [
- sources."@webassemblyjs/ast-1.4.3"
- sources."@webassemblyjs/floating-point-hex-parser-1.4.3"
- sources."@webassemblyjs/helper-buffer-1.4.3"
- sources."@webassemblyjs/helper-code-frame-1.4.3"
- sources."@webassemblyjs/helper-fsm-1.4.3"
- sources."@webassemblyjs/helper-wasm-bytecode-1.4.3"
- sources."@webassemblyjs/helper-wasm-section-1.4.3"
- sources."@webassemblyjs/leb128-1.4.3"
- sources."@webassemblyjs/validation-1.4.3"
- sources."@webassemblyjs/wasm-edit-1.4.3"
- sources."@webassemblyjs/wasm-gen-1.4.3"
- sources."@webassemblyjs/wasm-opt-1.4.3"
- sources."@webassemblyjs/wasm-parser-1.4.3"
- sources."@webassemblyjs/wast-parser-1.4.3"
- sources."@webassemblyjs/wast-printer-1.4.3"
- sources."acorn-5.5.3"
+ sources."@webassemblyjs/ast-1.5.10"
+ sources."@webassemblyjs/floating-point-hex-parser-1.5.10"
+ sources."@webassemblyjs/helper-api-error-1.5.10"
+ sources."@webassemblyjs/helper-buffer-1.5.10"
+ sources."@webassemblyjs/helper-code-frame-1.5.10"
+ sources."@webassemblyjs/helper-fsm-1.5.10"
+ sources."@webassemblyjs/helper-module-context-1.5.10"
+ sources."@webassemblyjs/helper-wasm-bytecode-1.5.10"
+ sources."@webassemblyjs/helper-wasm-section-1.5.10"
+ sources."@webassemblyjs/ieee754-1.5.10"
+ sources."@webassemblyjs/leb128-1.5.10"
+ sources."@webassemblyjs/utf8-1.5.10"
+ sources."@webassemblyjs/wasm-edit-1.5.10"
+ sources."@webassemblyjs/wasm-gen-1.5.10"
+ sources."@webassemblyjs/wasm-opt-1.5.10"
+ sources."@webassemblyjs/wasm-parser-1.5.10"
+ sources."@webassemblyjs/wast-parser-1.5.10"
+ sources."@webassemblyjs/wast-printer-1.5.10"
+ sources."acorn-5.6.2"
sources."acorn-dynamic-import-3.0.0"
sources."ajv-6.5.0"
sources."ajv-keywords-3.2.0"
@@ -45263,7 +45409,11 @@ in
sources."arr-union-3.1.0"
sources."array-unique-0.3.2"
sources."asn1.js-4.10.1"
- sources."assert-1.4.1"
+ (sources."assert-1.4.1" // {
+ dependencies = [
+ sources."util-0.10.3"
+ ];
+ })
sources."assign-symbols-1.0.0"
sources."async-each-1.0.1"
sources."atob-2.1.1"
@@ -45300,7 +45450,7 @@ in
sources."browserify-sign-4.0.4"
sources."browserify-zlib-0.2.0"
sources."buffer-4.9.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-xor-1.0.3"
sources."builtin-status-codes-3.0.0"
sources."cacache-10.0.4"
@@ -45385,7 +45535,11 @@ in
sources."has-value-1.0.0"
sources."has-values-1.0.0"
sources."hash-base-3.0.4"
- sources."hash.js-1.1.3"
+ (sources."hash.js-1.1.3" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
sources."hmac-drbg-1.0.1"
sources."https-browserify-1.0.0"
sources."ieee754-1.1.11"
@@ -45408,6 +45562,7 @@ in
sources."is-windows-1.0.2"
sources."isarray-1.0.0"
sources."isobject-3.0.1"
+ sources."json-parse-better-errors-1.0.2"
sources."json-schema-traverse-0.3.1"
sources."json5-0.5.1"
sources."kind-of-6.0.2"
@@ -45418,6 +45573,7 @@ in
sources."long-3.2.0"
sources."lru-cache-4.1.3"
sources."make-dir-1.3.0"
+ sources."mamacro-0.0.3"
sources."map-cache-0.2.2"
sources."map-visit-1.0.0"
sources."md5.js-1.3.4"
@@ -45466,7 +45622,7 @@ in
sources."object.pick-1.3.0"
sources."once-1.4.0"
sources."os-browserify-0.3.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
sources."pako-1.0.6"
@@ -45489,7 +45645,7 @@ in
sources."public-encrypt-4.0.2"
sources."pump-2.0.1"
sources."pumpify-1.5.1"
- sources."punycode-2.1.0"
+ sources."punycode-2.1.1"
sources."querystring-0.2.0"
sources."querystring-es3-0.2.1"
sources."randombytes-2.0.6"
@@ -45567,7 +45723,7 @@ in
sources."static-extend-0.1.2"
sources."stream-browserify-2.0.1"
sources."stream-each-1.2.2"
- sources."stream-http-2.8.2"
+ sources."stream-http-2.8.3"
sources."stream-shift-1.0.0"
sources."string_decoder-1.1.1"
sources."tapable-1.0.0"
@@ -45602,7 +45758,7 @@ in
];
})
sources."upath-1.1.0"
- sources."uri-js-4.2.1"
+ sources."uri-js-4.2.2"
sources."urix-0.1.0"
(sources."url-0.11.0" // {
dependencies = [
@@ -45614,11 +45770,14 @@ in
sources."kind-of-6.0.2"
];
})
- sources."util-0.10.3"
+ (sources."util-0.10.4" // {
+ dependencies = [
+ sources."inherits-2.0.3"
+ ];
+ })
sources."util-deprecate-1.0.2"
sources."vm-browserify-0.0.4"
sources."watchpack-1.6.0"
- sources."webassemblyjs-1.4.3"
(sources."webpack-sources-1.1.0" // {
dependencies = [
sources."source-map-0.6.1"
@@ -45657,7 +45816,7 @@ in
})
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."ascli-0.3.0"
sources."async-limiter-1.0.0"
sources."balanced-match-1.0.0"
@@ -45665,7 +45824,7 @@ in
sources."binary-search-1.3.3"
sources."bindings-1.3.0"
sources."bitfield-2.0.0"
- sources."bittorrent-dht-8.3.0"
+ sources."bittorrent-dht-8.4.0"
sources."bittorrent-peerid-1.2.0"
sources."bittorrent-protocol-2.4.1"
sources."bittorrent-tracker-9.9.1"
@@ -45675,11 +45834,11 @@ in
sources."bn.js-4.11.8"
sources."brace-expansion-1.1.11"
sources."browserify-package-json-1.0.1"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-indexof-1.1.1"
(sources."bufferutil-3.0.5" // {
dependencies = [
@@ -45709,7 +45868,7 @@ in
sources."create-torrent-3.31.0"
sources."debug-2.6.9"
sources."decompress-response-3.3.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."defined-1.0.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
@@ -45775,7 +45934,7 @@ in
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
sources."mkdirp-0.5.1"
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."mp4-box-encoding-1.1.4"
sources."mp4-stream-2.0.3"
sources."ms-2.0.0"
@@ -45784,7 +45943,7 @@ in
sources."thunky-1.0.2"
];
})
- sources."multistream-2.1.0"
+ sources."multistream-2.1.1"
sources."nan-2.10.0"
sources."netmask-1.0.6"
sources."network-address-1.1.2"
@@ -45801,7 +45960,8 @@ in
sources."optjs-3.2.2"
sources."os-homedir-1.0.2"
sources."package-json-versionify-1.0.4"
- (sources."parse-torrent-6.0.0" // {
+ sources."parse-numeric-range-0.0.2"
+ (sources."parse-torrent-6.0.1" // {
dependencies = [
sources."simple-get-3.0.2"
];
@@ -45822,9 +45982,9 @@ in
sources."randombytes-2.0.6"
sources."range-parser-1.2.0"
sources."range-slice-stream-1.2.0"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."readable-stream-2.3.6"
- sources."record-cache-1.0.2"
+ sources."record-cache-1.1.0"
(sources."render-media-3.1.0" // {
dependencies = [
sources."pump-1.0.3"
@@ -45842,7 +46002,7 @@ in
sources."signal-exit-3.0.2"
sources."simple-concat-1.0.0"
sources."simple-get-2.8.1"
- sources."simple-peer-9.1.1"
+ sources."simple-peer-9.1.2"
sources."simple-sha1-2.1.1"
(sources."simple-websocket-7.0.2" // {
dependencies = [
@@ -45891,7 +46051,7 @@ in
sources."util-deprecate-1.0.2"
sources."videostream-2.4.2"
sources."vlc-command-1.1.1"
- (sources."webtorrent-0.99.4" // {
+ (sources."webtorrent-0.100.0" // {
dependencies = [
sources."debug-3.1.0"
sources."minimist-0.0.8"
@@ -45900,10 +46060,10 @@ in
];
})
sources."which-pm-runs-1.0.0"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."winreg-1.2.4"
sources."wrappy-1.0.2"
- sources."ws-5.1.1"
+ sources."ws-5.2.0"
sources."xml2js-0.4.19"
sources."xmlbuilder-9.0.7"
sources."xmldom-0.1.27"
@@ -45922,18 +46082,18 @@ in
web-ext = nodeEnv.buildNodePackage {
name = "web-ext";
packageName = "web-ext";
- version = "2.6.0";
+ version = "2.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/web-ext/-/web-ext-2.6.0.tgz";
- sha1 = "52c074123e6376a4fb673e565c33dd027714e9b0";
+ url = "https://registry.npmjs.org/web-ext/-/web-ext-2.7.0.tgz";
+ sha512 = "1ab12frdfy6f1lnsg9g7lymq825vw9l84sspghqfm3k5j8d2gc8gfdg87lq4x393scnq9qrjckw2gpyg2sqlklrqql6vs7ibwqzyy45";
};
dependencies = [
sources."@cliqz-oss/firefox-client-0.3.1"
sources."@cliqz-oss/node-firefox-connect-1.2.1"
- sources."@types/node-10.1.1"
+ sources."@types/node-10.3.1"
sources."JSONSelect-0.2.1"
sources."abbrev-1.1.1"
- sources."acorn-5.5.3"
+ sources."acorn-5.6.2"
(sources."acorn-jsx-3.0.1" // {
dependencies = [
sources."acorn-3.3.0"
@@ -45942,13 +46102,13 @@ in
sources."adbkit-2.11.0"
sources."adbkit-logcat-1.1.0"
sources."adbkit-monkey-1.0.1"
- (sources."addons-linter-0.41.0" // {
+ (sources."addons-linter-1.0.0" // {
dependencies = [
sources."ajv-keywords-1.5.1"
sources."ansi-escapes-1.4.0"
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."camelcase-2.1.1"
sources."cli-cursor-1.0.2"
sources."cliui-4.1.0"
@@ -45956,10 +46116,10 @@ in
sources."decamelize-1.2.0"
sources."domelementtype-1.1.3"
sources."es6-promise-4.2.4"
+ sources."fast-deep-equal-1.1.0"
sources."figures-1.7.0"
sources."for-in-0.1.8"
sources."globals-11.5.0"
- sources."inherits-2.0.1"
sources."inquirer-0.12.0"
sources."is-fullwidth-code-point-1.0.0"
sources."isarray-0.0.1"
@@ -45968,13 +46128,13 @@ in
sources."pify-3.0.0"
sources."pluralize-1.2.1"
sources."progress-1.1.8"
- sources."punycode-2.1.0"
+ sources."punycode-1.4.1"
sources."restore-cursor-1.0.1"
sources."run-async-0.1.0"
sources."rx-lite-3.1.2"
sources."slice-ansi-0.0.4"
sources."source-map-0.6.1"
- sources."source-map-support-0.5.4"
+ sources."source-map-support-0.5.6"
sources."string-width-1.0.2"
sources."string_decoder-0.10.31"
sources."strip-ansi-4.0.0"
@@ -45993,7 +46153,7 @@ in
})
sources."adm-zip-0.4.11"
sources."agent-base-4.2.0"
- sources."ajv-6.3.0"
+ sources."ajv-6.5.0"
sources."ajv-keywords-2.1.1"
sources."ajv-merge-patch-3.0.0"
sources."anchor-markdown-header-0.5.7"
@@ -46038,7 +46198,7 @@ in
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
- sources."ast-types-0.11.3"
+ sources."ast-types-0.11.5"
sources."async-0.2.10"
sources."async-each-1.0.1"
sources."asynckit-0.4.0"
@@ -46090,12 +46250,12 @@ in
sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
sources."braces-2.3.2"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-crc32-0.2.13"
sources."buffer-equal-constant-time-1.0.1"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."builtin-modules-1.1.1"
(sources."bunyan-1.8.12" // {
dependencies = [
@@ -46111,7 +46271,7 @@ in
sources."capture-stack-trace-1.0.0"
sources."caseless-0.12.0"
sources."ccount-1.0.3"
- sources."chalk-2.3.2"
+ sources."chalk-2.4.0"
sources."character-entities-1.2.2"
sources."character-entities-html4-1.1.2"
sources."character-entities-legacy-1.1.2"
@@ -46161,7 +46321,7 @@ in
sources."configstore-3.1.2"
sources."convert-source-map-1.5.1"
sources."copy-descriptor-0.1.1"
- sources."core-js-2.5.6"
+ sources."core-js-2.5.7"
sources."core-util-is-1.0.2"
sources."crc-3.5.0"
sources."crc32-stream-2.0.0"
@@ -46188,7 +46348,7 @@ in
})
sources."decode-uri-component-0.2.0"
sources."deep-equal-1.0.1"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."deep-is-0.1.3"
sources."deepcopy-0.6.3"
sources."deepmerge-2.1.0"
@@ -46199,7 +46359,7 @@ in
sources."delayed-stream-1.0.0"
sources."depd-1.1.2"
sources."detect-indent-4.0.0"
- (sources."dispensary-0.16.0" // {
+ (sources."dispensary-0.18.0" // {
dependencies = [
sources."ajv-5.5.2"
];
@@ -46211,17 +46371,17 @@ in
sources."domhandler-2.4.2"
sources."domutils-1.5.1"
sources."dot-prop-4.2.0"
- sources."dtrace-provider-0.8.6"
+ sources."dtrace-provider-0.8.7"
sources."duplexer3-0.1.4"
sources."ecc-jsbn-0.1.1"
sources."ecdsa-sig-formatter-1.0.10"
- sources."email-validator-2.0.3"
+ sources."email-validator-2.0.4"
sources."emoji-regex-6.1.3"
sources."encoding-0.1.12"
sources."end-of-stream-1.4.1"
sources."entities-1.1.1"
sources."error-ex-1.3.1"
- sources."es5-ext-0.10.42"
+ sources."es5-ext-0.10.45"
sources."es6-error-4.1.1"
sources."es6-iterator-2.0.3"
sources."es6-map-0.1.5"
@@ -46237,7 +46397,7 @@ in
sources."escape-string-regexp-1.0.5"
sources."escodegen-1.9.1"
sources."escope-3.6.0"
- (sources."eslint-4.19.0" // {
+ (sources."eslint-4.19.1" // {
dependencies = [
sources."ajv-5.5.2"
sources."esprima-4.0.0"
@@ -46292,7 +46452,7 @@ in
];
})
sources."extsprintf-1.3.0"
- sources."fast-deep-equal-1.1.0"
+ sources."fast-deep-equal-2.0.1"
sources."fast-json-parse-1.0.3"
sources."fast-json-patch-1.2.2"
sources."fast-json-stable-stringify-2.0.0"
@@ -46311,8 +46471,8 @@ in
})
sources."first-chunk-stream-2.0.0"
sources."flat-cache-1.3.0"
- sources."flatstr-1.0.5"
- sources."fluent-syntax-0.6.6"
+ sources."flatstr-1.0.8"
+ sources."fluent-syntax-0.7.0"
sources."for-in-1.0.2"
sources."for-own-1.0.0"
sources."forever-agent-0.6.1"
@@ -46329,11 +46489,10 @@ in
})
sources."function-bind-1.1.1"
sources."functional-red-black-tree-1.0.1"
- (sources."fx-runner-1.0.8" // {
+ (sources."fx-runner-1.0.9" // {
dependencies = [
sources."commander-2.9.0"
sources."isexe-1.1.2"
- sources."lodash-3.10.1"
sources."which-1.2.4"
];
})
@@ -46370,7 +46529,7 @@ in
sources."growly-1.3.0"
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
- sources."has-1.0.1"
+ sources."has-1.0.3"
sources."has-ansi-2.0.0"
sources."has-color-0.1.7"
sources."has-flag-3.0.0"
@@ -46439,16 +46598,14 @@ in
sources."is-windows-1.0.2"
sources."is-wsl-1.1.0"
sources."isarray-1.0.0"
- sources."isemail-1.2.0"
sources."isexe-2.0.0"
sources."isobject-3.0.1"
sources."isstream-0.1.2"
sources."jed-1.1.1"
sources."jetpack-id-1.0.0"
- sources."joi-6.10.1"
sources."js-select-0.6.0"
sources."js-tokens-3.0.2"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."jsbn-0.1.1"
sources."jsesc-1.3.0"
sources."json-merge-patch-0.2.3"
@@ -46462,7 +46619,7 @@ in
sources."jsonfile-4.0.0"
sources."jsonify-0.0.0"
sources."jsonpointer-4.0.1"
- sources."jsonwebtoken-7.1.9"
+ sources."jsonwebtoken-8.2.1"
sources."jsprim-1.4.1"
sources."jszip-2.6.1"
sources."jwa-1.1.6"
@@ -46481,6 +46638,12 @@ in
sources."lodash.clonedeep-4.5.0"
sources."lodash.flatten-4.4.0"
sources."lodash.get-4.4.2"
+ sources."lodash.includes-4.3.0"
+ sources."lodash.isboolean-3.0.3"
+ sources."lodash.isinteger-4.0.4"
+ sources."lodash.isnumber-3.0.3"
+ sources."lodash.isplainobject-4.0.6"
+ sources."lodash.isstring-4.0.1"
sources."lodash.once-4.1.1"
sources."lodash.set-4.3.2"
sources."lodash.sortby-4.7.0"
@@ -46512,7 +46675,7 @@ in
sources."minimist-0.0.8"
];
})
- sources."moment-2.22.1"
+ sources."moment-2.22.2"
sources."ms-2.0.0"
sources."mute-stream-0.0.7"
sources."mv-2.1.1"
@@ -46546,7 +46709,6 @@ in
sources."object.pick-1.3.0"
sources."once-1.4.0"
sources."onetime-2.0.1"
- sources."open-0.0.5"
sources."opn-5.3.0"
sources."optionator-0.8.2"
sources."os-homedir-1.0.2"
@@ -46555,7 +46717,7 @@ in
sources."os-shim-0.1.3"
sources."os-tmpdir-1.0.2"
sources."p-finally-1.0.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-try-1.0.0"
sources."pac-proxy-agent-2.0.2"
@@ -46579,8 +46741,8 @@ in
sources."pify-2.3.0"
sources."pinkie-2.0.4"
sources."pinkie-promise-2.0.1"
- sources."pino-4.14.0"
- sources."pino-std-serializers-1.2.0"
+ sources."pino-4.16.1"
+ sources."pino-std-serializers-2.1.0"
sources."pluralize-7.0.0"
(sources."po2json-0.4.5" // {
dependencies = [
@@ -46607,11 +46769,11 @@ in
sources."proxy-from-env-1.0.0"
sources."pseudomap-1.0.2"
sources."pump-3.0.0"
- sources."punycode-1.4.1"
+ sources."punycode-2.1.1"
sources."qs-6.5.2"
sources."quick-format-unescaped-1.1.2"
sources."raw-body-2.3.3"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."read-pkg-1.1.0"
sources."read-pkg-up-1.0.1"
sources."readable-stream-2.3.6"
@@ -46654,7 +46816,7 @@ in
sources."rx-lite-4.0.8"
sources."rx-lite-aggregates-4.0.8"
sources."safe-buffer-5.1.2"
- sources."safe-json-stringify-1.1.0"
+ sources."safe-json-stringify-1.2.0"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
sources."sax-1.2.4"
@@ -46676,29 +46838,15 @@ in
sources."shell-quote-1.6.1"
sources."shelljs-0.8.1"
sources."shellwords-0.1.1"
- (sources."sign-addon-0.3.0" // {
+ (sources."sign-addon-0.3.1" // {
dependencies = [
- sources."assert-plus-0.2.0"
- sources."aws-sign2-0.6.0"
sources."babel-polyfill-6.16.0"
- sources."boom-2.10.1"
- sources."caseless-0.11.0"
- sources."chalk-1.1.3"
- sources."cryptiles-2.0.5"
sources."es6-error-4.0.0"
- sources."form-data-2.1.4"
- sources."har-validator-2.0.6"
- sources."hawk-3.1.3"
- sources."hoek-2.16.3"
- sources."http-signature-1.1.1"
- sources."ms-0.7.3"
+ sources."ms-2.1.1"
sources."mz-2.5.0"
- sources."qs-6.3.2"
sources."regenerator-runtime-0.9.6"
- sources."request-2.79.0"
- sources."sntp-1.0.9"
+ sources."request-2.87.0"
sources."source-map-support-0.4.6"
- sources."tunnel-agent-0.4.3"
];
})
sources."signal-exit-3.0.2"
@@ -46719,7 +46867,7 @@ in
sources."snapdragon-node-2.1.1"
sources."snapdragon-util-3.0.1"
sources."sntp-2.1.0"
- (sources."snyk-1.80.1" // {
+ (sources."snyk-1.82.1" // {
dependencies = [
sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
@@ -46746,14 +46894,14 @@ in
sources."string-width-1.0.2"
];
})
- sources."snyk-go-plugin-1.5.0"
+ sources."snyk-go-plugin-1.5.1"
sources."snyk-gradle-plugin-1.3.0"
sources."snyk-module-1.8.2"
sources."snyk-mvn-plugin-1.2.0"
sources."snyk-nuget-plugin-1.6.2"
sources."snyk-php-plugin-1.5.1"
sources."snyk-policy-1.12.0"
- sources."snyk-python-plugin-1.6.0"
+ sources."snyk-python-plugin-1.6.1"
sources."snyk-resolve-1.0.1"
sources."snyk-resolve-deps-3.1.0"
(sources."snyk-sbt-plugin-1.3.0" // {
@@ -46787,7 +46935,7 @@ in
})
sources."split2-2.2.0"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."static-extend-0.1.2"
sources."statuses-1.5.0"
sources."stream-parser-0.3.1"
@@ -46831,7 +46979,6 @@ in
sources."to-regex-range-2.1.1"
sources."to-utf8-0.0.1"
sources."toml-2.3.3"
- sources."topo-1.1.0"
sources."tosource-1.0.0"
sources."tough-cookie-2.3.4"
sources."tr46-1.0.1"
@@ -46873,9 +47020,10 @@ in
];
})
sources."unzip-response-2.0.1"
- sources."upath-1.0.4"
+ sources."upath-1.0.5"
sources."update-notifier-2.3.0"
sources."update-section-0.3.3"
+ sources."uri-js-4.2.2"
sources."urix-0.1.0"
sources."url-parse-lax-1.0.0"
(sources."use-3.1.0" // {
@@ -46884,7 +47032,7 @@ in
];
})
sources."user-home-2.0.0"
- sources."util-0.10.3"
+ sources."util-0.10.4"
sources."util-deprecate-1.0.2"
sources."uuid-3.2.1"
sources."validate-npm-package-license-3.0.3"
@@ -46918,9 +47066,13 @@ in
})
sources."wcwidth-1.0.1"
sources."webidl-conversions-4.0.2"
- sources."whatwg-url-6.3.0"
+ (sources."whatwg-url-6.4.1" // {
+ dependencies = [
+ sources."punycode-2.1.1"
+ ];
+ })
sources."when-3.7.7"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."which-module-2.0.0"
sources."widest-line-2.0.0"
sources."win-release-1.1.1"
@@ -46993,10 +47145,10 @@ in
yarn = nodeEnv.buildNodePackage {
name = "yarn";
packageName = "yarn";
- version = "1.6.0";
+ version = "1.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/yarn/-/yarn-1.6.0.tgz";
- sha1 = "9cec6f7986dc237d39ec705ce74d95155fe55d4b";
+ url = "https://registry.npmjs.org/yarn/-/yarn-1.7.0.tgz";
+ sha1 = "0076b9fde6010e01950526a609bc53bc175ef925";
};
buildInputs = globalBuildInputs;
meta = {
@@ -47017,7 +47169,7 @@ in
};
dependencies = [
sources."@mrmlnc/readdir-enhanced-2.2.1"
- sources."@nodelib/fs.stat-1.0.2"
+ sources."@nodelib/fs.stat-1.1.0"
sources."@sindresorhus/is-0.7.0"
sources."aggregate-error-1.0.0"
sources."ajv-5.5.2"
@@ -47026,7 +47178,7 @@ in
sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
sources."ansi-styles-2.2.1"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."arr-diff-4.0.0"
sources."arr-flatten-1.1.0"
sources."arr-union-3.1.0"
@@ -47038,7 +47190,7 @@ in
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
sources."assign-symbols-1.0.0"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."asynckit-0.4.0"
sources."atob-2.1.1"
sources."aws-sign2-0.7.0"
@@ -47061,7 +47213,6 @@ in
sources."semver-4.3.6"
];
})
- sources."boom-4.3.1"
sources."boxen-1.3.0"
sources."brace-expansion-1.1.11"
(sources."braces-2.3.2" // {
@@ -47071,7 +47222,7 @@ in
sources."kind-of-3.2.2"
];
})
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."builtin-modules-1.1.1"
sources."cache-base-1.0.1"
(sources."cacheable-request-2.1.4" // {
@@ -47116,11 +47267,6 @@ in
sources."create-error-class-3.0.2"
sources."cross-spawn-5.1.0"
sources."cross-spawn-async-2.2.5"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."crypto-random-string-1.0.0"
sources."currently-unhandled-0.4.1"
sources."dashdash-1.14.1"
@@ -47128,7 +47274,7 @@ in
sources."decamelize-1.2.0"
sources."decode-uri-component-0.2.0"
sources."decompress-response-3.3.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."default-uid-1.0.0"
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
@@ -47239,8 +47385,6 @@ in
sources."has-unicode-2.0.1"
sources."has-value-1.0.0"
sources."has-values-1.0.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."hosted-git-info-2.6.0"
sources."http-cache-semantics-3.8.1"
sources."http-signature-1.2.0"
@@ -47415,7 +47559,7 @@ in
sources."p-cancelable-0.4.1"
sources."p-finally-1.0.0"
sources."p-is-promise-1.1.0"
- sources."p-limit-1.2.0"
+ sources."p-limit-1.3.0"
sources."p-locate-2.0.0"
sources."p-some-2.0.1"
sources."p-timeout-2.0.1"
@@ -47450,10 +47594,11 @@ in
sources."prepend-http-2.0.0"
sources."process-nextick-args-2.0.0"
sources."pseudomap-1.0.2"
+ sources."psl-1.1.27"
sources."punycode-1.4.1"
sources."qs-6.5.2"
sources."query-string-5.1.1"
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."read-pkg-1.1.0"
(sources."read-pkg-up-2.0.0" // {
dependencies = [
@@ -47476,7 +47621,11 @@ in
sources."repeat-string-1.6.1"
sources."repeating-2.0.1"
sources."replace-ext-0.0.1"
- sources."request-2.86.0"
+ (sources."request-2.87.0" // {
+ dependencies = [
+ sources."tough-cookie-2.3.4"
+ ];
+ })
sources."resolve-url-0.2.1"
sources."responselike-1.0.2"
sources."restore-cursor-2.0.0"
@@ -47486,7 +47635,7 @@ in
sources."rx-4.1.0"
sources."rx-lite-4.0.8"
sources."rx-lite-aggregates-4.0.8"
- sources."rxjs-5.5.10"
+ sources."rxjs-5.5.11"
sources."safe-buffer-5.1.2"
sources."safe-regex-1.1.0"
sources."safer-buffer-2.1.2"
@@ -47527,7 +47676,6 @@ in
sources."kind-of-3.2.2"
];
})
- sources."sntp-2.1.0"
sources."sort-keys-2.0.0"
sources."sort-on-2.0.0"
sources."source-map-0.5.7"
@@ -47543,7 +47691,7 @@ in
sources."extend-shallow-3.0.2"
];
})
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."static-extend-0.1.2"
sources."strict-uri-encode-1.1.0"
sources."string-length-1.0.1"
@@ -47584,7 +47732,7 @@ in
sources."to-object-path-0.3.0"
sources."to-regex-3.0.2"
sources."to-regex-range-2.1.1"
- sources."tough-cookie-2.3.4"
+ sources."tough-cookie-2.4.2"
sources."trim-newlines-1.0.0"
sources."tunnel-0.0.4"
sources."tunnel-agent-0.6.0"
@@ -47606,7 +47754,7 @@ in
})
];
})
- sources."untildify-3.0.2"
+ sources."untildify-3.0.3"
sources."unzip-response-2.0.1"
(sources."update-notifier-2.5.0" // {
dependencies = [
@@ -47633,7 +47781,7 @@ in
sources."vinyl-1.2.0"
sources."vinyl-file-2.0.0"
sources."walk-2.3.13"
- sources."which-1.3.0"
+ sources."which-1.3.1"
sources."widest-line-2.0.0"
sources."win-release-1.1.1"
(sources."wrap-ansi-2.1.0" // {
@@ -47657,7 +47805,7 @@ in
sources."onetime-1.1.0"
];
})
- (sources."yeoman-environment-2.1.1" // {
+ (sources."yeoman-environment-2.2.0" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
diff --git a/pkgs/development/node-packages/node-packages-v8.nix b/pkgs/development/node-packages/node-packages-v8.nix
index 40eabbd6e66..a3b8689a2ac 100644
--- a/pkgs/development/node-packages/node-packages-v8.nix
+++ b/pkgs/development/node-packages/node-packages-v8.nix
@@ -49,13 +49,13 @@ let
sha1 = "cbc4b9a68981bf0b501ccd06a9058acd65309bf7";
};
};
- "@types/node-10.1.1" = {
+ "@types/node-10.3.1" = {
name = "_at_types_slash_node";
packageName = "@types/node";
- version = "10.1.1";
+ version = "10.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/@types/node/-/node-10.1.1.tgz";
- sha512 = "35nbbgd4qp35g3nfbrsc9ndmigc9gl31xdjhx0fakfms35c6jqxpdx7m9c3pi0h3b062p31al5vas36facjhs1nmxf3bdpnrb5k3g4z";
+ url = "https://registry.npmjs.org/@types/node/-/node-10.3.1.tgz";
+ sha512 = "0xqz0wlddb3vi0mmlncn1ypd7sa2zv3fcq58jk7nr0xdsrwwzn9ncdq784lvg8d2k7lzq1p2kjyak5nghq0imbdj8hrmk6365lgvi92";
};
};
"@types/superagent-3.5.6" = {
@@ -256,13 +256,13 @@ let
sha1 = "6ddc58fa083c7bc545d3c5995b2830cc2366d44a";
};
};
- "append-tree-2.4.1" = {
+ "append-tree-2.4.4" = {
name = "append-tree";
packageName = "append-tree";
- version = "2.4.1";
+ version = "2.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.1.tgz";
- sha512 = "2zb14nlfxs726ng8jhfpf6n9b9kw32smg2krcl0vj90dfrkcc20fm36j2zgdd49b2ln1z4jz2wvvy4qgss14zzfr3rps719h6vlyjg7";
+ url = "https://registry.npmjs.org/append-tree/-/append-tree-2.4.4.tgz";
+ sha512 = "0gfvfdnxy8zznb198pbzshiqg8vnn2icjbc49dmy158qqb33w2ifh86migd8xighgbjl66lhqlb9cvqv2ghviri1k7kh9kw8hr19wxc";
};
};
"aproba-1.2.0" = {
@@ -274,13 +274,13 @@ let
sha512 = "13mgnbmdhdq0qncijvpip1l39q1a8labcvj3hc3n1yl2zch106mdkn7p7bd5knvmfkkn1js9nd47nzyjk1himbm8ry8i8gd6mk7mlk3";
};
};
- "are-we-there-yet-1.1.4" = {
+ "are-we-there-yet-1.1.5" = {
name = "are-we-there-yet";
packageName = "are-we-there-yet";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.4.tgz";
- sha1 = "bb5dca382bb94f05e15194373d16fd3ba1ca110d";
+ url = "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz";
+ sha512 = "3mizm1yfxynlhaavbimv7n9qljrbhni22v4fch6zr89x6ps0gpjcxm5yfvv05n8vc3r17hmglyswgq9w0s598xv70nnyw358q11s5p6";
};
};
"argparse-1.0.10" = {
@@ -454,13 +454,13 @@ let
sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
};
};
- "async-2.6.0" = {
+ "async-2.6.1" = {
name = "async";
packageName = "async";
- version = "2.6.0";
+ version = "2.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.6.0.tgz";
- sha512 = "0zp4b5788400npi1ixjry5x3a4m21c8pnknk8v731rgnwnjbp5ijmfcf5ppmn1ap4a04md1s9dr8n9ygdvrmiai590v0k6dby1wc1y4";
+ url = "https://registry.npmjs.org/async/-/async-2.6.1.tgz";
+ sha512 = "2aqgkis9ac37q6jv6zspfpj3rikh2vr9fdch7wajrvqihq5sxyd1gh5zv65hy0y3r22l720qkidwh6img8dngqcjj0dwrl0dwpj5lbw";
};
};
"async-each-1.0.1" = {
@@ -661,24 +661,6 @@ let
sha1 = "090700c4ba28862a8520ef378395fdee5f61c229";
};
};
- "boom-4.3.1" = {
- name = "boom";
- packageName = "boom";
- version = "4.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-4.3.1.tgz";
- sha1 = "4f8a3005cb4a7e3889f749030fd25b96e01d2e31";
- };
- };
- "boom-5.2.0" = {
- name = "boom";
- packageName = "boom";
- version = "5.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/boom/-/boom-5.2.0.tgz";
- sha512 = "19h20yqpvca08dns1rs4f057f10w63v0snxfml4h5khsk266x3x1im0w72bza4k2xn0kfz6jlv001dhcvxsjr09bmbqnysils9m7437";
- };
- };
"boxen-1.3.0" = {
name = "boxen";
packageName = "boxen";
@@ -733,31 +715,22 @@ let
sha1 = "a72c936f77b96bf52f5f7e7b467180628551defb";
};
};
- "buffer-alloc-1.1.0" = {
+ "buffer-alloc-1.2.0" = {
name = "buffer-alloc";
packageName = "buffer-alloc";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz";
+ sha512 = "2isng7g5ld0a4ih1d38bcdqpw8jpqajmcn6vfkrqpahmhim4cfw51c1sikz5s5hnmfychcbzcxvwydn8qi6zq6mhl15anzd1110fnq8";
+ };
+ };
+ "buffer-alloc-unsafe-1.1.0" = {
+ name = "buffer-alloc-unsafe";
+ packageName = "buffer-alloc-unsafe";
version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.1.0.tgz";
- sha1 = "05514d33bf1656d3540c684f65b1202e90eca303";
- };
- };
- "buffer-alloc-unsafe-0.1.1" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-0.1.1.tgz";
- sha1 = "ffe1f67551dd055737de253337bfe853dfab1a6a";
- };
- };
- "buffer-alloc-unsafe-1.0.0" = {
- name = "buffer-alloc-unsafe";
- packageName = "buffer-alloc-unsafe";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.0.0.tgz";
- sha1 = "474aa88f34e7bc75fa311d2e6457409c5846c3fe";
+ url = "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz";
+ sha512 = "01b27ck9qpkjb3s14q703k5vi00m7lpl0zkyi91z4kxjww4b6q09frq68lm6m9hvhb5m4w0arwybncm5hia3j9kr9vd4h84qa43chsc";
};
};
"buffer-crc32-0.2.13" = {
@@ -778,22 +751,22 @@ let
sha1 = "0353b54fd07fd9564170671ae6f66b9cf10d27f5";
};
};
- "buffer-fill-0.1.1" = {
+ "buffer-fill-1.0.0" = {
name = "buffer-fill";
packageName = "buffer-fill";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-0.1.1.tgz";
- sha512 = "3nny0zbpnaxp1544gp7lc53jvs1jgzpmp92cy939dik36bi8lvhrsh4g082lxdplwsma22cgg9q93dw5dnbn1ljqkh4fb2i6w3lq032";
- };
- };
- "buffer-from-1.0.0" = {
- name = "buffer-from";
- packageName = "buffer-from";
version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.0.0.tgz";
- sha512 = "3252laq8prm41lgzlhmc7rdj99gwcvpf7cn6j686g4qmspnl3haid5khv9pc9cfjja9wb64nwfvgdwi2kpdf125xfg48aqapwssjxpk";
+ url = "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz";
+ sha1 = "f8f78b76789888ef39f205cd637f68e702122b2c";
+ };
+ };
+ "buffer-from-1.1.0" = {
+ name = "buffer-from";
+ packageName = "buffer-from";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.0.tgz";
+ sha512 = "0ch7mwp2p7iz81hlj769cki9vapg34rp3368mbxffjync131zz3cig7vkjv4n1lfyfnaapj9axq5d6sg92a8ri6fnvggz481fb936bk";
};
};
"buffer-indexof-1.1.1" = {
@@ -958,6 +931,15 @@ let
sha1 = "b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2";
};
};
+ "chardet-0.5.0" = {
+ name = "chardet";
+ packageName = "chardet";
+ version = "0.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/chardet/-/chardet-0.5.0.tgz";
+ sha512 = "3931r17a9qqilrj8ymqwiqrayvwaz6d7hvhscrh8s4a7cksmw0saq1bg2xk7r20mcnzbcpn4c05bii36axilkfrpj2j0gcy2shdm57m";
+ };
+ };
"charenc-0.0.2" = {
name = "charenc";
packageName = "charenc";
@@ -1228,13 +1210,13 @@ let
sha1 = "0433f44d809680fdeb60ed260f1b0c262e82a40b";
};
};
- "colors-1.2.5" = {
+ "colors-1.3.0" = {
name = "colors";
packageName = "colors";
- version = "1.2.5";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/colors/-/colors-1.2.5.tgz";
- sha512 = "2k2a7k096qcm5fghgcmybg96y3x5bpqb62j0zdlnxq7za4asb6vsy9i69nkg9wqfhkcbh6qzm8zzvq7q516p54awxpp2qrzm8nm3cvs";
+ url = "https://registry.npmjs.org/colors/-/colors-1.3.0.tgz";
+ sha512 = "03rrn3n1k9lcwlg5xdx0cj727blwc1a0r6rnq1r8nynwni4bwqlbzlb9qp02x09pfnrfj0ihb28wsimqxiivm5k0f2wa77hmvfmffhh";
};
};
"combine-errors-3.0.3" = {
@@ -1264,15 +1246,6 @@ let
sha1 = "fa68a14f6a945d54dbbe50d8cdb3320e9e3b1a06";
};
};
- "commander-2.11.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.11.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.11.0.tgz";
- sha512 = "2yi2hwf0bghfnv1fdgd4wvh7s0acjrgqbgww97ncm6i6s6ffs1zahnj48f6gqpqj6fsf0jigvnr0civ25k2160c38281r80wvg7jkkg";
- };
- };
"commander-2.15.1" = {
name = "commander";
packageName = "commander";
@@ -1417,13 +1390,13 @@ let
sha1 = "0abf356ad00d1c5a219d88d44518046dd026acfe";
};
};
- "cookiejar-2.1.1" = {
+ "cookiejar-2.1.2" = {
name = "cookiejar";
packageName = "cookiejar";
- version = "2.1.1";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.1.tgz";
- sha1 = "41ad57b1b555951ec171412a81942b1e8200d34a";
+ url = "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.2.tgz";
+ sha512 = "302w4kd3x9k0jy5iva1k5inp3r25avz8ddpkdb20icvrizicvas253kfp6ynmrcwpxv1lafcnagggxfs5dmmd4gg07ifgzkqxsrl3rk";
};
};
"copy-descriptor-0.1.1" = {
@@ -1480,15 +1453,6 @@ let
sha1 = "88d7ff7ec0dfb86f713dc87bbb42d044d3e6c41b";
};
};
- "cryptiles-3.1.2" = {
- name = "cryptiles";
- packageName = "cryptiles";
- version = "3.1.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/cryptiles/-/cryptiles-3.1.2.tgz";
- sha1 = "a89fbb220f5ce25ec56e8c4aa8a4fd7b5b0d29fe";
- };
- };
"crypto-random-string-1.0.0" = {
name = "crypto-random-string";
packageName = "crypto-random-string";
@@ -1633,13 +1597,13 @@ let
sha1 = "69449ac8a368593a8f71902b282390c3655ab4b8";
};
};
- "dat-node-3.5.8" = {
+ "dat-node-3.5.9" = {
name = "dat-node";
packageName = "dat-node";
- version = "3.5.8";
+ version = "3.5.9";
src = fetchurl {
- url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.8.tgz";
- sha512 = "3j28p80dwmic3g00asmcpgiv3sh3s8023x1023g7bm534h1ai8i2zryivx95gc22is64k9mynmqr2g0ny25xp1f7h1cbc25klizg8dc";
+ url = "https://registry.npmjs.org/dat-node/-/dat-node-3.5.9.tgz";
+ sha512 = "104lk78v9z8z1p5dkkn5w6ciimn7gbh83yvfcpl6vcd6fahdghak9kp95wmmfjlbas1959a156552i8a891qjbfa32q1wcanyv4yri4";
};
};
"dat-registry-4.0.0" = {
@@ -1777,13 +1741,13 @@ let
sha1 = "84b745896f34c684e98f2ce0e42abaf43bba017d";
};
};
- "deep-extend-0.5.1" = {
+ "deep-extend-0.6.0" = {
name = "deep-extend";
packageName = "deep-extend";
- version = "0.5.1";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.5.1.tgz";
- sha512 = "3bzqm7nqgh7m8xjhl0q8jc0ccm9riymsfmy0144x6n2qy9v1gin2ww8s9wjlayk0xyzq9cz9pyar02yiv30mhqsj7rmw35ywrsc3jrp";
+ url = "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz";
+ sha512 = "0wc0sqg1aqx864bxf8xa4j8ncrc8rcvmiaj1sp3x1np2i8hdjybzjfd0w9gbf1yasmwycwzzg1mz6smr3q42hhv4pjx2qcgwqhg3q9c";
};
};
"define-property-0.2.5" = {
@@ -1921,6 +1885,15 @@ let
sha1 = "5d3160a46019e50e874195765df7d601ee55a813";
};
};
+ "discovery-swarm-5.1.1" = {
+ name = "discovery-swarm";
+ packageName = "discovery-swarm";
+ version = "5.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/discovery-swarm/-/discovery-swarm-5.1.1.tgz";
+ sha512 = "1sa0sciklf04fnha64gb01s3wqddxkzf9n1q0zyjcr3cdhn49xyql60cbxby922bqq0wd7k57b6qjk50vn4hjsk08pggzcggbvkszxg";
+ };
+ };
"dns-discovery-5.6.1" = {
name = "dns-discovery";
packageName = "dns-discovery";
@@ -2101,13 +2074,13 @@ let
sha512 = "3cjrpi6n5i6gf8jaiwg31y2xkgx59szhhcj9myqwmdw16s9r6yvwznxd2lhqf96mpm6knyb3w2bcnksg5nzkrq6iada0k6nvdj2pjfl";
};
};
- "es5-ext-0.10.42" = {
+ "es5-ext-0.10.45" = {
name = "es5-ext";
packageName = "es5-ext";
- version = "0.10.42";
+ version = "0.10.45";
src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.42.tgz";
- sha512 = "1412ssfrx1kvraz8kp4x9lc1jzcdh2952vbmlimrfalmbjv44rh504ihb4fg5mjwx8ix1f1wii0a0qngwrfk4gl271mcywgp7b4x700";
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.45.tgz";
+ sha512 = "04p6qjhmiaqlqqgi0690lz7zzcdg1n80pxiywkkk6qalpxd8b85kv4403ckchsv8jlx9rhz4chgh819ahzcgwanibnnqzkibklwqiqn";
};
};
"es6-iterator-2.0.3" = {
@@ -2299,6 +2272,15 @@ let
sha512 = "3sf897ajmkcp0j6rgd0jy6k95s9ck3j305yrr00kmckl8qdhswhbdd5g4m2fai03x8phs1vw2ahf9v7ym5ji4zfxydxyamiy61glabd";
};
};
+ "external-editor-3.0.0" = {
+ name = "external-editor";
+ packageName = "external-editor";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/external-editor/-/external-editor-3.0.0.tgz";
+ sha512 = "28h4s6rjdakrr2danff6n7mwwf1n2syyba9q93ac1wpic535lk0xvwh4bpnzhmw3gkjblvbvfsd4zp57hwy7d70hk41lxs4867iz6cs";
+ };
+ };
"extglob-0.3.2" = {
name = "extglob";
packageName = "extglob";
@@ -2362,13 +2344,13 @@ let
sha1 = "d303ccbfee02a9a56a3493fb08bcb59691aa53b1";
};
};
- "fd-slicer-1.0.1" = {
+ "fd-slicer-1.1.0" = {
name = "fd-slicer";
packageName = "fd-slicer";
- version = "1.0.1";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.0.1.tgz";
- sha1 = "8b5bcbd9ec327c5041bf9ab023fd6750f1177e65";
+ url = "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz";
+ sha1 = "25c7c89cb1f9077f8891bbe61d8f390eae256f1e";
};
};
"figures-1.7.0" = {
@@ -2488,13 +2470,13 @@ let
sha1 = "fca30cddb9006fb656eb5ebc79aeb274e7fde9ed";
};
};
- "for-each-0.3.2" = {
+ "for-each-0.3.3" = {
name = "for-each";
packageName = "for-each";
- version = "0.3.2";
+ version = "0.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/for-each/-/for-each-0.3.2.tgz";
- sha1 = "2c40450b9348e97f281322593ba96704b9abd4d4";
+ url = "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz";
+ sha512 = "2dikmdxwassw4w48vv82swjv4v1zx2sivsgcnxi3zi0imzw165ba8vaxgawz0wz4fgf138hvvc3xc5znr2wmz07r74dp8z6kqp1z9lf";
};
};
"for-in-1.0.2" = {
@@ -2839,13 +2821,13 @@ let
sha1 = "3042d9adec2a1ded6a7707a9ed2380f8a17a430e";
};
};
- "growl-1.10.3" = {
+ "growl-1.10.5" = {
name = "growl";
packageName = "growl";
- version = "1.10.3";
+ version = "1.10.5";
src = fetchurl {
- url = "https://registry.npmjs.org/growl/-/growl-1.10.3.tgz";
- sha512 = "3aibvz85l13j140w4jjdk8939q6r7dnf8ay2licxgkaaldk7wbm093c1p5g7k5cg80rl0xslmczyraawfgdr82hhxn7rfsm1rn6rac4";
+ url = "https://registry.npmjs.org/growl/-/growl-1.10.5.tgz";
+ sha512 = "146i7if4fjml1p6xw1ybb7vm22k6i8yc7r8wcw8yia7qy385w1s6j18ip91g5mv47zvv5fw5m8kpzlaayjs183fkpg174hbw4xgh6m8";
};
};
"growl-1.9.2" = {
@@ -2902,15 +2884,6 @@ let
sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
};
};
- "has-flag-2.0.0" = {
- name = "has-flag";
- packageName = "has-flag";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/has-flag/-/has-flag-2.0.0.tgz";
- sha1 = "e8207af1cc7b30d446cc70b734b5e8be18f88d51";
- };
- };
"has-flag-3.0.0" = {
name = "has-flag";
packageName = "has-flag";
@@ -2992,15 +2965,6 @@ let
sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
};
};
- "hawk-6.0.2" = {
- name = "hawk";
- packageName = "hawk";
- version = "6.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/hawk/-/hawk-6.0.2.tgz";
- sha512 = "1nl2hjr2mnhj5jlaz8mh54z7acwz5j5idkch04qgjk78756gw5d0fjk4a2immil5ij9ijdssb9ndpryvnh2xpcbgcjv8lxybn330als";
- };
- };
"he-1.1.1" = {
name = "he";
packageName = "he";
@@ -3010,15 +2974,6 @@ let
sha1 = "93410fd21b009735151f8868c2f271f3427e23fd";
};
};
- "hoek-4.2.1" = {
- name = "hoek";
- packageName = "hoek";
- version = "4.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/hoek/-/hoek-4.2.1.tgz";
- sha512 = "1y8kprb3qldxqj31zai5n8dvhydsl9nn5w4rskhnbzzhldn6pm6n5lcyam3sfkb61a62d5m58k8im7z6ngwbd9cw9zp4zm4y7ckrf20";
- };
- };
"http-errors-1.6.3" = {
name = "http-errors";
packageName = "http-errors";
@@ -3046,13 +3001,13 @@ let
sha1 = "9aecd925114772f3d95b65a60abb8f7c18fbace1";
};
};
- "hypercore-6.14.0" = {
+ "hypercore-6.15.0" = {
name = "hypercore";
packageName = "hypercore";
- version = "6.14.0";
+ version = "6.15.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hypercore/-/hypercore-6.14.0.tgz";
- sha512 = "3liw77yhvn3nlrczf9s30vvn4bxrn3glh65a2psy1va9pvcnjwx6wfh52v5l9qbd7zyp4q4nb7qrq0n3am7jwmz3dkb5fzvdnlwikkh";
+ url = "https://registry.npmjs.org/hypercore/-/hypercore-6.15.0.tgz";
+ sha512 = "2qd2nd34xmr8fvagbifn72ffcr6hw9byas8rccy1wx252kj2qza8yy9g0ck9nf7np794267ry4jih7j1ryrjrbs8r8q2hbvgcyv5w0z";
};
};
"hypercore-protocol-6.6.4" = {
@@ -3064,13 +3019,13 @@ let
sha512 = "0rxj8d4lp45q7v3wwwv23m7qi84vw3wvyafqiy9x5f9lqkynq8v8yajpq9bcnc935927qjnxajn8n0cyhg0fqjnpywlfyxgxczkndgm";
};
};
- "hyperdrive-9.12.3" = {
+ "hyperdrive-9.13.0" = {
name = "hyperdrive";
packageName = "hyperdrive";
- version = "9.12.3";
+ version = "9.13.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.12.3.tgz";
- sha512 = "3w0ia766bacphqzgyjhiwbppgdja61vlz2xp6x710dk4pn6570gag3w5xa8rfivh2lvig8v2ics3bkdlm9cmq9kpzjgwzm19a089fb3";
+ url = "https://registry.npmjs.org/hyperdrive/-/hyperdrive-9.13.0.tgz";
+ sha512 = "1ncs5n26spkycvrfi5j0dy62bw3d9l0cmpaagc54nb6rfh33zyh228b3n99yajvzhyym0d6g0hphpwjyz8s7pngv13ql8f41x05zq40";
};
};
"hyperdrive-http-4.2.2" = {
@@ -3208,6 +3163,15 @@ let
sha512 = "1wsmzzva3rfjb4bfks7ba2nvha9ziwgq2kag6xxibc5cc6mz19xbgj4fm3a7ghvfbfx4am0x13ibc8j2s5m3sv12nph44rq56gnvv47";
};
};
+ "inquirer-6.0.0" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "6.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-6.0.0.tgz";
+ sha512 = "0k09hsg3dfdz7vp482v56hvhqa9g4qbm8jpmig9p0phdzsaspajxk9d4z575dd8rc70pmipg7pxxpgdqwa3x1z4rwmhhw1d3icr115l";
+ };
+ };
"ip-1.1.5" = {
name = "ip";
packageName = "ip";
@@ -3262,6 +3226,15 @@ let
sha512 = "3kr8dm9qyklmm2xyiz75s8db90bfilfals4x0g276kncihrrrz0ar4y6dqpvc7pwy7h43jay1bayi1r62x97nzvcswkk4ap18pl1irm";
};
};
+ "is-callable-1.1.3" = {
+ name = "is-callable";
+ packageName = "is-callable";
+ version = "1.1.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-callable/-/is-callable-1.1.3.tgz";
+ sha1 = "86eb75392805ddc33af71c92a0eedf74ee7604b2";
+ };
+ };
"is-ci-1.1.0" = {
name = "is-ci";
packageName = "is-ci";
@@ -3505,6 +3478,15 @@ let
sha512 = "34m1wg28c9l1v9bqz2klwl4ybhyqkhk80d95664jmcbq1jjpg471nv96mqgqy4838xpa8wm7mbpynmq4294pq6iw163s0ar1b3a4f1r";
};
};
+ "is-options-1.0.1" = {
+ name = "is-options";
+ packageName = "is-options";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-options/-/is-options-1.0.1.tgz";
+ sha512 = "339gkkcm39mcw2c8wwl37y02rq3ga7309fgrvp2garlavgh93aydxpfx8wg9j9xs6k9h3ha11c4z9bkcqihd7w5d8fb03ik1nqgqy6r";
+ };
+ };
"is-path-inside-1.0.1" = {
name = "is-path-inside";
packageName = "is-path-inside";
@@ -3703,13 +3685,13 @@ let
sha1 = "8f10d7977d8d79f2f6ff862a81b0513ccb25686c";
};
};
- "js-yaml-3.11.0" = {
+ "js-yaml-3.12.0" = {
name = "js-yaml";
packageName = "js-yaml";
- version = "3.11.0";
+ version = "3.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.11.0.tgz";
- sha512 = "0gka65n4d9gmcy0c8cy5h55r273dbxnw54gibp2nq5mmdmksjgb2nhcdfgfxs1wg3yayyrydn2v79fny7hdyq907dg87vmgjnsnr8mi";
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.12.0.tgz";
+ sha512 = "3f8k2gvi3gnj9gpr3dnm5n5vpy2w68pshqk4hajlsmkb37ky30cnqza82l8sq153zx1nk67gizcm1ngmvlajw53hkwg4g96gir7d2rw";
};
};
"jsbn-0.1.1" = {
@@ -4558,13 +4540,13 @@ let
sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
};
};
- "minipass-2.3.0" = {
+ "minipass-2.3.3" = {
name = "minipass";
packageName = "minipass";
- version = "2.3.0";
+ version = "2.3.3";
src = fetchurl {
- url = "https://registry.npmjs.org/minipass/-/minipass-2.3.0.tgz";
- sha512 = "1p0pbj1iwnzb7kkqbh5h0vd6byh1l6na1yx69qmbb0wbmwm0qc5g4hn4z6lr8wkzb4kybvd1hjm4hxd93nrdr8ydbqqd9wd1w9bcq4d";
+ url = "https://registry.npmjs.org/minipass/-/minipass-2.3.3.tgz";
+ sha512 = "1ii40xdjvsqw9k2pyavlv1h4wh5pc3fz4kn91gxpy404kilgp6p9q7q6zba7wa9i7xh9iijnz2pmr8h0wc4yh14lwkqhps4zgvjfc7y";
};
};
"minizlib-1.1.0" = {
@@ -4576,13 +4558,13 @@ let
sha512 = "2agpbdf9h90nhafdam3jwrw8gcz3jw1i40cx6bhwaw8qaf2s863gi2b77l73dc3hmf5dx491hv5km1rqzabgsbpkjxrvdcwy6pr8gp1";
};
};
- "mirror-folder-2.2.0" = {
+ "mirror-folder-3.0.0" = {
name = "mirror-folder";
packageName = "mirror-folder";
- version = "2.2.0";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-2.2.0.tgz";
- sha512 = "3js8pwgmj4lzzi6nzl0wp021rhsnz31jpkkzdf35xzwm1l65m6ygjf4hz77vvy3dk2h5jb2d32nvzy26n3d5hswg3nb8s0rylvv510r";
+ url = "https://registry.npmjs.org/mirror-folder/-/mirror-folder-3.0.0.tgz";
+ sha512 = "3vdfga0d1l6kpkk3bvkzw6jx6x6n4dn1z1q6rxgnsj0wqhs68v0fgdik67f3r9vll25kdmvwhn67v6p5xqiwkxncc55m90jfw6v07ky";
};
};
"mixin-deep-1.3.1" = {
@@ -4702,13 +4684,13 @@ let
sha1 = "9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b";
};
};
- "multistream-2.1.0" = {
+ "multistream-2.1.1" = {
name = "multistream";
packageName = "multistream";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/multistream/-/multistream-2.1.0.tgz";
- sha1 = "625c267d5c44424ad6294788b5bb4da3dcb32f1d";
+ url = "https://registry.npmjs.org/multistream/-/multistream-2.1.1.tgz";
+ sha512 = "0ssriqcskcwvja0aw04frfy7fymv2nwl0dqh3fp03d2cd78yf45r6jlvv1pn87w1b2yzp7iy8mznj7cybxr9dscfkspmsk5m3pjzay5";
};
};
"mute-stream-0.0.5" = {
@@ -4855,13 +4837,13 @@ let
sha512 = "0vkilw1ghsjca0lrj9gsdgsi8wj4bvpfr25q1qzx1kp5hhvjdhapmvpmrd2hikwq9dxydw6sdvv0730wwvmsg36xqf0hgp9777l3ns8";
};
};
- "nodemon-1.17.4" = {
+ "nodemon-1.17.5" = {
name = "nodemon";
packageName = "nodemon";
- version = "1.17.4";
+ version = "1.17.5";
src = fetchurl {
- url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.4.tgz";
- sha512 = "3bmxd7fd494gy4ddax3mihjz1iy484iakyssbhy87cc2kwbky9xkb8l47vphc3n858q9p9afxl57w0849i24amsdjhwbqh8vxhjy1v5";
+ url = "https://registry.npmjs.org/nodemon/-/nodemon-1.17.5.tgz";
+ sha512 = "2djkgpk29zh4p7wqb8h4g6w0y2fix94zqpgi40fshn9yaf6anp5p0vbqj8r3s6zxsxhgvnv7lzj56v6s6gk0q2byqd9yqrmjmcacv8l";
};
};
"nopt-1.0.10" = {
@@ -5476,13 +5458,13 @@ let
sha1 = "c0d5a63b2718800ad8e1eb0fa5269c84dd41845e";
};
};
- "punycode-2.1.0" = {
+ "punycode-2.1.1" = {
name = "punycode";
packageName = "punycode";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/punycode/-/punycode-2.1.0.tgz";
- sha1 = "5f863edc89b96db09074bad7947bf09056ca4e7d";
+ url = "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz";
+ sha512 = "381vqgh5xkqzrr6cxbzfykgnnk83m7qgpx3wjwj1hddn3sg2aibjxyr30rajpgv4js0cqknrbzwbfk5ryhiiyigzfjrk3zysy6i26sx";
};
};
"qs-2.3.3" = {
@@ -5548,6 +5530,15 @@ let
sha1 = "72f3d865b4b55a259879473e2fb2de3569c69ee2";
};
};
+ "random-access-memory-3.0.0" = {
+ name = "random-access-memory";
+ packageName = "random-access-memory";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/random-access-memory/-/random-access-memory-3.0.0.tgz";
+ sha512 = "160skc30mby806rmlwilb56h0r5bcc3sf2dr980k4a93c3bhnlnjcfiqbx1k5sjljqiygs6sn014gpgilzhhx9c1vdcyfhkz45pkxrv";
+ };
+ };
"random-access-storage-1.2.0" = {
name = "random-access-storage";
packageName = "random-access-storage";
@@ -5593,13 +5584,13 @@ let
sha1 = "a2c2f98c8531cee99c63d8d238b7de97bb659fca";
};
};
- "rc-1.2.7" = {
+ "rc-1.2.8" = {
name = "rc";
packageName = "rc";
- version = "1.2.7";
+ version = "1.2.8";
src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.2.7.tgz";
- sha512 = "30b4pqzhk8f4ppzyk5diwxac7xpf4hd3rysyin012l59da9v5iaai4wd6yzlz3rjspfvvy191q6qcsw47mwlw9y07n35kzq23rw7lid";
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz";
+ sha512 = "0xhy1n9n3y6cp28f8f0f2mi0xzc7ay1g5nhbp64fyvcwv9q30zq2zvyc5q2d0al8aa0hx101yq2y6d2ln4r5jxnqifh1pd3la1ccxnb";
};
};
"read-1.0.7" = {
@@ -5755,13 +5746,13 @@ let
sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
};
};
- "request-2.86.0" = {
+ "request-2.87.0" = {
name = "request";
packageName = "request";
- version = "2.86.0";
+ version = "2.87.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.86.0.tgz";
- sha512 = "37xa5i4dk3fkcl9gxrzxkjjy6vcqn6bcc61bwq6kjpqrg5i01yc6xn0iq3zy68vqqav93k1kgr2xdabp22p0bfynfcbzxp8ms3n41h5";
+ url = "https://registry.npmjs.org/request/-/request-2.87.0.tgz";
+ sha512 = "0vnsbflzj7gxa33r47bzsiaf7jc00b9iqkqdz8l7n9x5dgdgbq1qpcqqslds1arazipz8pjr4m5rf4ikg4d59d49gn9dky0ds921jkx";
};
};
"resolve-1.1.7" = {
@@ -5890,6 +5881,15 @@ let
sha1 = "753b87a89a11c95467c4ac1626c4efc4e05c67be";
};
};
+ "rxjs-6.2.0" = {
+ name = "rxjs";
+ packageName = "rxjs";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rxjs/-/rxjs-6.2.0.tgz";
+ sha512 = "01sy4p9dqb8xiv59c5dn2lwza4jm6dv1hsy9v4ifj60kwh1l8iqar17lvgxmhjpqjaqgqkrx6kx0kv7l121704v16if4y5sxgkdy758";
+ };
+ };
"safe-buffer-5.1.2" = {
name = "safe-buffer";
packageName = "safe-buffer";
@@ -6097,13 +6097,13 @@ let
sha512 = "2l45afqnby96gdihg3hi51006502yc33wly8cgmgrww00aiq37jdvp22l9qhbxljra5j6s8lwigjh5hpzj521ccgwlhk59zw9vhylx4";
};
};
- "siphash24-1.1.0" = {
+ "siphash24-1.1.1" = {
name = "siphash24";
packageName = "siphash24";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.0.tgz";
- sha512 = "17nq5vsq9227bsp0msljjp4lfra2d2f0338xk2z2m1523s3d990appvqrar9j9l3akw6bbjmbw92b9g386fggqiqz76xslvj88q8c4w";
+ url = "https://registry.npmjs.org/siphash24/-/siphash24-1.1.1.tgz";
+ sha512 = "1ach37ibirvd6yxa42ffkn1dwfcar70pjbnj9alrf713n1bdzb4y44nbrm5bi3swpvqrr7f8sbbcyj586wn049hxmyawf8kia6b18kl";
};
};
"slash-1.0.0" = {
@@ -6178,15 +6178,6 @@ let
sha512 = "1jsaqma4ycl2iq0761i1w7758z1kq7gbsij4xfb7p5cnw0qa62pszv6pr3j856n3pbxww7wwxs5wvcg2cb6vy020kw3bchashqs9clr";
};
};
- "sntp-2.1.0" = {
- name = "sntp";
- packageName = "sntp";
- version = "2.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/sntp/-/sntp-2.1.0.tgz";
- sha512 = "0k2smmr24w5hb1cpql6vcgh58vzp4pmh9anf0bgz3arlsgq1mapnlq9fjqr6xs10aq1cmxaw987fwknqi62frax0fvs9bj3q3kmpg8l";
- };
- };
"sodium-javascript-0.5.5" = {
name = "sodium-javascript";
packageName = "sodium-javascript";
@@ -6214,13 +6205,13 @@ let
sha512 = "2rd6r7v2i3z76rzvllqx9ywk5f64q23944njcf14vv7x3l0illqn41bgdiifik4kswgys99mxsrqinq8akf3n7b15r9871km74mbivj";
};
};
- "sorted-array-functions-1.1.0" = {
+ "sorted-array-functions-1.2.0" = {
name = "sorted-array-functions";
packageName = "sorted-array-functions";
- version = "1.1.0";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.1.0.tgz";
- sha512 = "209rl01n6lwbsxl40lmh1v38sad3d94s0mjb4mz6r3wwwhzcahibr8m2fhlqgsjgzf3dja9wyhz7qjkw39gxlwpapyid2whs4nrzbnf";
+ url = "https://registry.npmjs.org/sorted-array-functions/-/sorted-array-functions-1.2.0.tgz";
+ sha512 = "1759vgxawg63w16nnrklz5azzj9kklrlz5sdd643y8jp8qz7hiwdn5ydlnwx2ns4j761x4rqllh6fvlzjqgi3dixy7dl9hr28z66smi";
};
};
"sorted-immutable-list-1.1.0" = {
@@ -6331,13 +6322,13 @@ let
sha1 = "04e6926f662895354f3dd015203633b857297e2c";
};
};
- "sshpk-1.14.1" = {
+ "sshpk-1.14.2" = {
name = "sshpk";
packageName = "sshpk";
- version = "1.14.1";
+ version = "1.14.2";
src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.1.tgz";
- sha1 = "130f5975eddad963f1d56f92b9ac6c51fa9f83eb";
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.14.2.tgz";
+ sha1 = "c6fc61648a3d9c4e764fd3fcdf4ea105e492ba98";
};
};
"stack-trace-0.0.10" = {
@@ -6601,15 +6592,6 @@ let
sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
};
};
- "supports-color-4.4.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "4.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-4.4.0.tgz";
- sha512 = "1flwwfdd7gg94xrc0b2ard3qjx4cpy600q49gx43y8pzvs7j56q78bjhv8mk18vgbggr4fd11jda8ck5cdrkc5jcjs04nlp7kwbg85c";
- };
- };
"supports-color-5.4.0" = {
name = "supports-color";
packageName = "supports-color";
@@ -6682,13 +6664,13 @@ let
sha1 = "8e4d2a256c0e2185c6b18ad694aec968b83cb1d1";
};
};
- "tar-4.4.2" = {
+ "tar-4.4.4" = {
name = "tar";
packageName = "tar";
- version = "4.4.2";
+ version = "4.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/tar/-/tar-4.4.2.tgz";
- sha512 = "25ypdsz6l4xmg1f89pjy8s773j3lzx855iiakbdknz115vxyg4p4z1j0i84iyjpzwgfjfs2l2njpd0y2hlr5sh4n01nh6124zs09y85";
+ url = "https://registry.npmjs.org/tar/-/tar-4.4.4.tgz";
+ sha512 = "3iy3r78nycp0ly9nldcygkklrc7jas93k4bis6ypiw5fqlsygqyylgwl1378qf61r1yh2lsd11vrjr8hwfzw4j25d95yd0zhv265bws";
};
};
"tar-stream-1.6.1" = {
@@ -6925,6 +6907,15 @@ let
sha1 = "405923909592d56f78a5818434b0b78489ca5f2b";
};
};
+ "tslib-1.9.2" = {
+ name = "tslib";
+ packageName = "tslib";
+ version = "1.9.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tslib/-/tslib-1.9.2.tgz";
+ sha512 = "0ms6i864mv97lfwlmnzpbf6f539kqcsnj8qbyj12h46r0zszxpk8gsfchs5s7spfwpnapfmbaakx8xiqg0v4rxqmz22nnkpi5ggjlq1";
+ };
+ };
"ttl-1.3.1" = {
name = "ttl";
packageName = "ttl";
@@ -7096,13 +7087,13 @@ let
sha1 = "8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559";
};
};
- "untildify-3.0.2" = {
+ "untildify-3.0.3" = {
name = "untildify";
packageName = "untildify";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/untildify/-/untildify-3.0.2.tgz";
- sha1 = "7f1f302055b3fea0f3e81dc78eb36766cb65e3f1";
+ url = "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz";
+ sha512 = "0l4awya87dx6bnxaywh0dn50ka8hybj603k75d98vlwj9grqfcmaib9hhjy52nsgm62f39v0nnv4yn268jpjy7n9y7wpbwzqwkkyac9";
};
};
"unyield-0.0.1" = {
@@ -7267,13 +7258,13 @@ let
sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
};
};
- "validator-10.2.0" = {
+ "validator-10.3.0" = {
name = "validator";
packageName = "validator";
- version = "10.2.0";
+ version = "10.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/validator/-/validator-10.2.0.tgz";
- sha512 = "2v8ipjc5jdlwdhj1bcggxm98q2cigj2016rjqyzj0wq4kvjqghi3k66d6j17bpvqix0dqy01s4sh4qg0wv56jshix9zcdddfn9fwgw3";
+ url = "https://registry.npmjs.org/validator/-/validator-10.3.0.tgz";
+ sha512 = "1vr7ds3qf30h7cfk87q2h9jdfh4v3hk0yl1rcs668z2xm0xf8kj1i0l1qs46ws12birk1xlmqpmb3xd4pzrbn78fair94hxjxqdszkf";
};
};
"variable-diff-1.1.0" = {
@@ -7330,22 +7321,22 @@ let
sha1 = "d1b14f39d2e2cb4ab8c4098f756fe4b164e473d4";
};
};
- "which-1.3.0" = {
+ "which-1.3.1" = {
name = "which";
packageName = "which";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.3.0.tgz";
- sha512 = "358cfi3qak701qp5pwkq47n87ca4m8k4lvjl0pdybvmp92nwwd7azzhahy9gy3kg8lqrqdry9l6pl2csflzr0nvwnc3p6asjyi6khn5";
+ url = "https://registry.npmjs.org/which/-/which-1.3.1.tgz";
+ sha512 = "0hr4hxkk8yb9fz993bs69pf8z2z2qb6sdpxfxb84sd16lja9fsx444pk1ang1ivmjjv5srnsm6fihdj593w7rwxdh834cdmd9hms4hz";
};
};
- "wide-align-1.1.2" = {
+ "wide-align-1.1.3" = {
name = "wide-align";
packageName = "wide-align";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.2.tgz";
- sha512 = "39m5b8qc31vxhh0bz14vh9a1kf9znarvlpkf0v6vv1f2dxi61gihav2djq2mn7ns1z3yq6l8pyydj52fyzbm2q04rssrcrv4jbwnc4a";
+ url = "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz";
+ sha512 = "2224a32flpf40nhq6rj4idzkcdz0vx65bfxp90hd06db18l6fiqgxz1xnaygm3pbfb1a6v73hl8ryq4996b09zwwins0bqprx0hwsa0";
};
};
"widest-line-2.0.0" = {
@@ -7447,13 +7438,13 @@ let
sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
};
};
- "xhr-2.4.1" = {
+ "xhr-2.5.0" = {
name = "xhr";
packageName = "xhr";
- version = "2.4.1";
+ version = "2.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xhr/-/xhr-2.4.1.tgz";
- sha512 = "38f6fgl0n5syagym161b29l5vhyan3azv5zs3vmyd4s80svy9xl7ppczk3rdawjn70s1ws5qvbh5zf1wyrj2ifawnr7ix3by3k180m4";
+ url = "https://registry.npmjs.org/xhr/-/xhr-2.5.0.tgz";
+ sha512 = "36z7hw07wb42na5hy12xmsrg9yzd3hd5ln8y3wyq88qh4xvxr2lp07bbp5la5254mf8qaimgg1plwzvvvsmvj0mcma17p1dbvzlwyg2";
};
};
"xsalsa20-1.0.2" = {
@@ -7465,13 +7456,13 @@ let
sha512 = "35rg34yxk4ag0qclk7bqxirgr3dgypcvkisqqj2g3y0ma16pkfy81iv79pcwff5p4spygwjh2m9v37llq7367fypqrx89s9kscwal43";
};
};
- "xstream-11.2.0" = {
+ "xstream-11.4.0" = {
name = "xstream";
packageName = "xstream";
- version = "11.2.0";
+ version = "11.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/xstream/-/xstream-11.2.0.tgz";
- sha512 = "2jnrf16561zx9hsvlb8d48ca9qwdh9wxcbkwhkjvp5r88b8pcfjlx2g58k9w5kjs0kw660rw6hj2zhvdsznyf0ic9mj682xz6hf7kfh";
+ url = "https://registry.npmjs.org/xstream/-/xstream-11.4.0.tgz";
+ sha512 = "0a7xg54dwzg9ldfjgiq87zfd3mzcilal41spn2rsji91sbx15x10rbinsa0m60xsnrw725csmi6y47xzkkkiakgz46nz0b580iafd69";
};
};
"xtend-4.0.1" = {
@@ -7519,13 +7510,13 @@ let
sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
};
};
- "yauzl-2.9.1" = {
+ "yauzl-2.9.2" = {
name = "yauzl";
packageName = "yauzl";
- version = "2.9.1";
+ version = "2.9.2";
src = fetchurl {
- url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.1.tgz";
- sha1 = "a81981ea70a57946133883f029c5821a89359a7f";
+ url = "https://registry.npmjs.org/yauzl/-/yauzl-2.9.2.tgz";
+ sha1 = "4fb1bc7ae1fc2f57037b54af6acc8fe1031c5b77";
};
};
"z-schema-3.22.0" = {
@@ -7592,7 +7583,7 @@ in
sources."chalk-1.1.3"
];
})
- sources."@types/node-10.1.1"
+ sources."@types/node-10.3.1"
sources."@types/superagent-3.5.6"
sources."ansi-escapes-3.1.0"
sources."ansi-regex-2.1.1"
@@ -7612,7 +7603,7 @@ in
sources."combine-errors-3.0.3"
sources."combined-stream-1.0.6"
sources."component-emitter-1.2.1"
- sources."cookiejar-2.1.1"
+ sources."cookiejar-2.1.2"
sources."core-util-is-1.0.2"
sources."cross-spawn-5.1.0"
sources."cssauron-1.4.0"
@@ -7621,7 +7612,7 @@ in
sources."d-1.0.0"
sources."debug-3.1.0"
sources."delayed-stream-1.0.0"
- sources."es5-ext-0.10.42"
+ sources."es5-ext-0.10.45"
sources."es6-iterator-2.0.3"
sources."es6-map-0.1.5"
sources."es6-set-0.1.5"
@@ -7697,8 +7688,8 @@ in
sources."tmp-0.0.33"
sources."util-deprecate-1.0.2"
sources."variable-diff-1.1.0"
- sources."which-1.3.0"
- sources."xstream-11.2.0"
+ sources."which-1.3.1"
+ sources."xstream-11.4.0"
sources."yallist-2.1.2"
];
buildInputs = globalBuildInputs;
@@ -7726,7 +7717,7 @@ in
sources."ansi-styles-3.2.1"
sources."anymatch-1.3.2"
sources."ap-0.1.0"
- sources."append-tree-2.4.1"
+ sources."append-tree-2.4.4"
sources."arr-diff-2.0.0"
sources."arr-flatten-1.1.0"
sources."array-lru-1.1.1"
@@ -7750,18 +7741,17 @@ in
sources."blake2b-2.1.2"
sources."blake2b-wasm-1.1.7"
sources."body-0.1.0"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
(sources."braces-1.8.5" // {
dependencies = [
sources."kind-of-6.0.2"
];
})
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-1.0.0"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-equals-1.0.4"
- sources."buffer-fill-0.1.1"
- sources."buffer-from-1.0.0"
+ sources."buffer-fill-1.0.0"
+ sources."buffer-from-1.1.0"
sources."buffer-indexof-1.1.1"
sources."bulk-write-stream-1.1.4"
sources."bytes-3.0.0"
@@ -7775,7 +7765,7 @@ in
sources."codecs-1.2.1"
sources."color-convert-1.9.1"
sources."color-name-1.1.3"
- sources."colors-1.2.5"
+ sources."colors-1.3.0"
sources."combined-stream-1.0.6"
sources."concat-map-0.0.1"
sources."concat-stream-1.6.2"
@@ -7783,11 +7773,6 @@ in
sources."content-types-0.1.0"
sources."core-util-is-1.0.2"
sources."corsify-2.1.0"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."cycle-1.0.3"
sources."dashdash-1.14.1"
sources."dat-dns-1.3.2"
@@ -7819,12 +7804,17 @@ in
sources."process-nextick-args-1.0.7"
];
})
- (sources."dat-node-3.5.8" // {
+ (sources."dat-node-3.5.9" // {
dependencies = [
- sources."buffer-alloc-unsafe-0.1.1"
+ (sources."discovery-swarm-5.1.1" // {
+ dependencies = [
+ sources."debug-2.6.9"
+ ];
+ })
sources."minimist-0.0.8"
sources."process-nextick-args-1.0.7"
sources."pump-1.0.3"
+ sources."random-access-memory-3.0.0"
sources."unordered-set-2.0.0"
sources."varint-5.0.0"
];
@@ -7873,7 +7863,7 @@ in
sources."filename-regex-2.0.1"
sources."fill-range-2.2.4"
sources."flat-tree-1.6.0"
- sources."for-each-0.3.2"
+ sources."for-each-0.3.3"
sources."for-in-1.0.2"
sources."for-own-0.1.5"
sources."forever-agent-0.6.1"
@@ -7888,17 +7878,15 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-flag-3.0.0"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-methods-0.1.0"
sources."http-signature-1.2.0"
- (sources."hypercore-6.14.0" // {
+ (sources."hypercore-6.15.0" // {
dependencies = [
sources."varint-5.0.0"
];
})
sources."hypercore-protocol-6.6.4"
- (sources."hyperdrive-9.12.3" // {
+ (sources."hyperdrive-9.13.0" // {
dependencies = [
sources."varint-4.0.1"
];
@@ -7911,6 +7899,7 @@ in
sources."ini-1.3.5"
sources."ip-1.1.5"
sources."is-buffer-1.1.6"
+ sources."is-callable-1.1.3"
sources."is-dotfile-1.0.3"
sources."is-equal-shallow-0.1.3"
sources."is-extendable-0.1.1"
@@ -7919,6 +7908,7 @@ in
sources."is-function-1.0.1"
sources."is-glob-2.0.1"
sources."is-number-2.1.0"
+ sources."is-options-1.0.1"
sources."is-posix-bracket-0.1.1"
sources."is-primitive-2.0.0"
sources."is-string-1.0.4"
@@ -7956,13 +7946,13 @@ in
sources."min-document-2.19.0"
sources."minimatch-3.0.4"
sources."minimist-1.2.0"
- sources."mirror-folder-2.2.0"
+ sources."mirror-folder-3.0.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
sources."multi-random-access-2.1.1"
sources."multicast-dns-7.0.0"
sources."multicb-1.2.2"
- sources."multistream-2.1.0"
+ sources."multistream-2.1.1"
sources."mute-stream-0.0.7"
sources."mutexify-1.2.0"
sources."nan-2.10.0"
@@ -8020,24 +8010,24 @@ in
sources."remove-trailing-separator-1.1.0"
sources."repeat-element-1.1.2"
sources."repeat-string-1.6.1"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."revalidator-0.1.8"
sources."rimraf-2.6.2"
sources."rusha-0.8.13"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."signed-varint-2.0.1"
sources."simple-sha1-2.1.1"
- sources."siphash24-1.1.0"
+ sources."siphash24-1.1.1"
sources."slice-ansi-1.0.0"
- sources."sntp-2.1.0"
sources."sodium-javascript-0.5.5"
sources."sodium-native-2.1.6"
sources."sodium-universal-2.0.0"
- sources."sorted-array-functions-1.1.0"
+ sources."sorted-array-functions-1.2.0"
sources."sorted-indexof-1.0.0"
sources."sparse-bitfield-3.0.3"
sources."speedometer-1.0.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."stack-trace-0.0.10"
sources."status-logger-3.1.1"
sources."stream-collector-1.0.1"
@@ -8073,7 +8063,7 @@ in
sources."unixify-1.0.0"
sources."unordered-array-remove-1.0.2"
sources."unordered-set-1.1.0"
- sources."untildify-3.0.2"
+ sources."untildify-3.0.3"
sources."util-deprecate-1.0.2"
sources."utile-0.3.0"
sources."utp-native-1.7.1"
@@ -8088,7 +8078,7 @@ in
})
sources."wrap-ansi-3.0.1"
sources."wrappy-1.0.2"
- sources."xhr-2.4.1"
+ sources."xhr-2.5.0"
sources."xsalsa20-1.0.2"
sources."xtend-4.0.1"
];
@@ -8138,24 +8128,24 @@ in
mocha = nodeEnv.buildNodePackage {
name = "mocha";
packageName = "mocha";
- version = "5.1.1";
+ version = "5.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mocha/-/mocha-5.1.1.tgz";
- sha512 = "23wcnn35p90xhsc5z94w45s30j756s97acm313h6lacnbliqlaka3drq2xbsi4br8gdkld3r4dc33vglq8kf5jb408c7b2agpyar8lh";
+ url = "https://registry.npmjs.org/mocha/-/mocha-5.2.0.tgz";
+ sha512 = "1qqnhamd691pyvx27ql2l5228qx1migp0yys010zdi748pp516hf10sr26w7gx71323a9p0gv69i358xv2w918gpba9xp2w70l211fq";
};
dependencies = [
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
sources."browser-stdout-1.3.1"
- sources."commander-2.11.0"
+ sources."commander-2.15.1"
sources."concat-map-0.0.1"
sources."debug-3.1.0"
sources."diff-3.5.0"
sources."escape-string-regexp-1.0.5"
sources."fs.realpath-1.0.0"
sources."glob-7.1.2"
- sources."growl-1.10.3"
- sources."has-flag-2.0.0"
+ sources."growl-1.10.5"
+ sources."has-flag-3.0.0"
sources."he-1.1.1"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -8165,7 +8155,7 @@ in
sources."ms-2.0.0"
sources."once-1.4.0"
sources."path-is-absolute-1.0.1"
- sources."supports-color-4.4.0"
+ sources."supports-color-5.4.0"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -8211,7 +8201,7 @@ in
sources."ajv-5.5.2"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
sources."asynckit-0.4.0"
@@ -8220,7 +8210,6 @@ in
sources."balanced-match-1.0.0"
sources."bcrypt-pbkdf-1.0.1"
sources."block-stream-0.0.9"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."caseless-0.12.0"
sources."co-4.6.0"
@@ -8229,11 +8218,6 @@ in
sources."concat-map-0.0.1"
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."delayed-stream-1.0.0"
sources."delegates-1.0.0"
@@ -8253,8 +8237,6 @@ in
sources."har-schema-2.0.0"
sources."har-validator-5.0.3"
sources."has-unicode-2.0.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -8288,14 +8270,14 @@ in
sources."punycode-1.4.1"
sources."qs-6.5.2"
sources."readable-stream-2.3.6"
- sources."request-2.86.0"
+ sources."request-2.87.0"
sources."rimraf-2.6.2"
sources."safe-buffer-5.1.2"
+ sources."safer-buffer-2.1.2"
sources."semver-5.3.0"
sources."set-blocking-2.0.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."string-width-1.0.2"
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
@@ -8306,8 +8288,8 @@ in
sources."util-deprecate-1.0.2"
sources."uuid-3.2.1"
sources."verror-1.10.0"
- sources."which-1.3.0"
- sources."wide-align-1.1.2"
+ sources."which-1.3.1"
+ sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -8348,7 +8330,7 @@ in
sources."abbrev-1.1.1"
sources."ansi-regex-2.1.1"
sources."aproba-1.2.0"
- sources."are-we-there-yet-1.1.4"
+ sources."are-we-there-yet-1.1.5"
sources."balanced-match-1.0.0"
sources."brace-expansion-1.1.11"
sources."chownr-1.0.1"
@@ -8357,7 +8339,7 @@ in
sources."console-control-strings-1.1.0"
sources."core-util-is-1.0.2"
sources."debug-2.6.9"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."delegates-1.0.0"
sources."detect-libc-1.0.3"
sources."fs-minipass-1.2.5"
@@ -8374,7 +8356,7 @@ in
sources."isarray-1.0.0"
sources."minimatch-3.0.4"
sources."minimist-0.0.8"
- sources."minipass-2.3.0"
+ sources."minipass-2.3.3"
sources."minizlib-1.1.0"
sources."mkdirp-0.5.1"
sources."ms-2.0.0"
@@ -8391,7 +8373,7 @@ in
sources."osenv-0.1.5"
sources."path-is-absolute-1.0.1"
sources."process-nextick-args-2.0.0"
- (sources."rc-1.2.7" // {
+ (sources."rc-1.2.8" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -8408,9 +8390,9 @@ in
sources."string_decoder-1.1.1"
sources."strip-ansi-3.0.1"
sources."strip-json-comments-2.0.1"
- sources."tar-4.4.2"
+ sources."tar-4.4.4"
sources."util-deprecate-1.0.2"
- sources."wide-align-1.1.2"
+ sources."wide-align-1.1.3"
sources."wrappy-1.0.2"
sources."yallist-3.0.2"
];
@@ -8426,10 +8408,10 @@ in
pnpm = nodeEnv.buildNodePackage {
name = "pnpm";
packageName = "pnpm";
- version = "1.43.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/pnpm/-/pnpm-1.43.1.tgz";
- sha1 = "0766354192aa2d843bcf1ddb277627e5cbc9c1e9";
+ url = "https://registry.npmjs.org/pnpm/-/pnpm-2.2.2.tgz";
+ sha1 = "23d5ed8d7c5133ad46b4ac7b0ee63cbe7bdec688";
};
buildInputs = globalBuildInputs;
meta = {
@@ -8500,10 +8482,10 @@ in
vue-cli = nodeEnv.buildNodePackage {
name = "vue-cli";
packageName = "vue-cli";
- version = "2.9.3";
+ version = "2.9.6";
src = fetchurl {
- url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.3.tgz";
- sha512 = "1wljsr8srayqg7crbbczi00v31q3dxm3vz4fjcdqasdgsm1ajc9gham6sinsxlraniwg4dn5b1kmpw0nln63cy3v02vib07shyvq2ki";
+ url = "https://registry.npmjs.org/vue-cli/-/vue-cli-2.9.6.tgz";
+ sha512 = "10ysmrjahrqcnpqwr8x6vapf0wdzaa0g9y143fgpk99p0ggm1536isaasl091y6rrhyfqpyb41k5gpg02zmx24dmz2nfjc9zink815k";
};
dependencies = [
sources."absolute-0.0.1"
@@ -8522,7 +8504,7 @@ in
sources."arrify-1.0.1"
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
- sources."async-2.6.0"
+ sources."async-2.6.1"
sources."asynckit-0.4.0"
sources."aws-sign2-0.7.0"
sources."aws4-1.7.0"
@@ -8531,13 +8513,12 @@ in
sources."bcrypt-pbkdf-1.0.1"
sources."bl-1.2.2"
sources."bluebird-3.5.1"
- sources."boom-4.3.1"
sources."brace-expansion-1.1.11"
sources."buffer-3.6.0"
- sources."buffer-alloc-1.1.0"
- sources."buffer-alloc-unsafe-0.1.1"
+ sources."buffer-alloc-1.2.0"
+ sources."buffer-alloc-unsafe-1.1.0"
sources."buffer-crc32-0.2.13"
- sources."buffer-fill-0.1.1"
+ sources."buffer-fill-1.0.0"
sources."builtins-1.0.3"
sources."camelcase-1.2.1"
sources."capture-stack-trace-1.0.0"
@@ -8549,7 +8530,7 @@ in
})
sources."center-align-0.1.3"
sources."chalk-2.4.1"
- sources."chardet-0.4.2"
+ sources."chardet-0.5.0"
sources."cli-cursor-2.1.0"
sources."cli-spinners-1.3.1"
sources."cli-width-2.2.0"
@@ -8569,11 +8550,6 @@ in
sources."consolidate-0.14.5"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
- (sources."cryptiles-3.1.2" // {
- dependencies = [
- sources."boom-5.2.0"
- ];
- })
sources."dashdash-1.14.1"
sources."decamelize-1.2.0"
(sources."decompress-4.2.0" // {
@@ -8606,11 +8582,11 @@ in
sources."esprima-4.0.0"
sources."extend-3.0.1"
sources."extend-shallow-2.0.1"
- sources."external-editor-2.2.0"
+ sources."external-editor-3.0.0"
sources."extsprintf-1.3.0"
sources."fast-deep-equal-1.1.0"
sources."fast-json-stable-stringify-2.0.0"
- sources."fd-slicer-1.0.1"
+ sources."fd-slicer-1.1.0"
sources."figures-2.0.0"
sources."file-type-5.2.0"
sources."filename-reserved-regex-2.0.0"
@@ -8642,15 +8618,13 @@ in
sources."has-generators-1.0.1"
sources."has-symbol-support-x-1.4.2"
sources."has-to-string-tag-x-1.4.1"
- sources."hawk-6.0.2"
- sources."hoek-4.2.1"
sources."http-signature-1.2.0"
sources."iconv-lite-0.4.23"
sources."ieee754-1.1.11"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.5"
- sources."inquirer-3.3.0"
+ sources."inquirer-6.0.0"
sources."is-3.2.1"
sources."is-buffer-1.1.6"
sources."is-extendable-0.1.1"
@@ -8666,7 +8640,7 @@ in
sources."isarray-1.0.0"
sources."isstream-0.1.2"
sources."isurl-1.0.0"
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
sources."jsbn-0.1.1"
sources."json-schema-0.2.3"
sources."json-schema-traverse-0.3.1"
@@ -8726,7 +8700,7 @@ in
sources."readable-stream-2.3.6"
sources."recursive-readdir-2.2.2"
sources."repeat-string-1.6.1"
- (sources."request-2.86.0" // {
+ (sources."request-2.87.0" // {
dependencies = [
sources."co-4.6.0"
];
@@ -8735,17 +8709,15 @@ in
sources."right-align-0.1.3"
sources."rimraf-2.6.2"
sources."run-async-2.3.0"
- sources."rx-lite-4.0.8"
- sources."rx-lite-aggregates-4.0.8"
+ sources."rxjs-6.2.0"
sources."safe-buffer-5.1.2"
sources."safer-buffer-2.1.2"
sources."seek-bzip-1.0.5"
sources."semver-5.5.0"
sources."signal-exit-3.0.2"
- sources."sntp-2.1.0"
sources."source-map-0.4.4"
sources."sprintf-js-1.0.3"
- sources."sshpk-1.14.1"
+ sources."sshpk-1.14.2"
sources."stat-mode-0.2.2"
sources."string-width-2.1.1"
sources."string_decoder-1.1.1"
@@ -8764,6 +8736,7 @@ in
sources."toml-2.3.3"
sources."tough-cookie-2.3.4"
sources."trim-repeated-1.0.0"
+ sources."tslib-1.9.2"
sources."tunnel-agent-0.6.0"
sources."tweetnacl-0.14.5"
(sources."uglify-js-2.8.29" // {
@@ -8792,7 +8765,7 @@ in
sources."xtend-4.0.1"
sources."yaml-js-0.0.8"
sources."yargs-3.10.0"
- sources."yauzl-2.9.1"
+ sources."yauzl-2.9.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -8872,7 +8845,7 @@ in
sources."is-extendable-0.1.1"
];
})
- sources."buffer-from-1.0.0"
+ sources."buffer-from-1.1.0"
sources."busboy-0.2.14"
sources."bytes-1.0.0"
sources."cache-base-1.0.1"
@@ -8913,7 +8886,7 @@ in
sources."configstore-3.1.2"
sources."connect-3.6.6"
sources."content-type-1.0.4"
- sources."cookiejar-2.1.1"
+ sources."cookiejar-2.1.2"
sources."copy-descriptor-0.1.1"
sources."core-util-is-1.0.2"
sources."create-error-class-3.0.2"
@@ -8924,7 +8897,7 @@ in
sources."debug-2.6.9"
sources."decamelize-1.2.0"
sources."decode-uri-component-0.2.0"
- sources."deep-extend-0.5.1"
+ sources."deep-extend-0.6.0"
sources."define-property-2.0.2"
sources."delayed-stream-1.0.0"
sources."depd-1.1.2"
@@ -9028,7 +9001,7 @@ in
sources."mkdirp-0.3.0"
];
})
- sources."js-yaml-3.11.0"
+ sources."js-yaml-3.12.0"
(sources."json-refs-2.1.7" // {
dependencies = [
sources."debug-3.1.0"
@@ -9122,7 +9095,7 @@ in
sources."nan-2.10.0"
sources."nanomatch-1.2.9"
sources."native-promise-only-0.8.1"
- (sources."nodemon-1.17.4" // {
+ (sources."nodemon-1.17.5" // {
dependencies = [
sources."ansi-regex-3.0.0"
sources."ansi-styles-3.2.1"
@@ -9186,7 +9159,7 @@ in
sources."ps-tree-1.1.0"
sources."pseudomap-1.0.2"
sources."pstree.remy-1.1.0"
- sources."punycode-2.1.0"
+ sources."punycode-2.1.1"
sources."qs-4.0.0"
sources."range-parser-1.2.0"
(sources."raw-body-2.0.2" // {
@@ -9194,7 +9167,7 @@ in
sources."bytes-2.1.0"
];
})
- sources."rc-1.2.7"
+ sources."rc-1.2.8"
sources."readable-stream-2.3.6"
sources."readdirp-2.1.0"
sources."readline2-1.0.1"
@@ -9358,8 +9331,8 @@ in
sources."util-deprecate-1.0.2"
sources."utils-merge-1.0.1"
sources."valid-url-1.0.9"
- sources."validator-10.2.0"
- sources."which-1.3.0"
+ sources."validator-10.3.0"
+ sources."which-1.3.1"
sources."widest-line-2.0.0"
sources."window-size-0.1.0"
sources."wordwrap-0.0.3"
@@ -9383,10 +9356,10 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "6.0.1";
+ version = "6.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-6.0.1.tgz";
- sha512 = "03x8626d7ngp160j0lx7vmzpjglvlqbz4gf9kmdndaxna9h81zr8rjhad3jcdkr9j1nnlc1rsr7acsdny5ykl3dwilq0p486zr9cyrp";
+ url = "https://registry.npmjs.org/npm/-/npm-6.1.0.tgz";
+ sha512 = "3bhkx1ynzp39m6w5mnwfimc25arlpxgs9vgk0w7ai8zw0q6kxyljj4xjvkyxg7wv1f8jbj3k31ifgvy0kff4p3sbp5li53ls851qzvv";
};
buildInputs = globalBuildInputs;
meta = {
@@ -9400,10 +9373,10 @@ in
three = nodeEnv.buildNodePackage {
name = "three";
packageName = "three";
- version = "0.92.0";
+ version = "0.93.0";
src = fetchurl {
- url = "https://registry.npmjs.org/three/-/three-0.92.0.tgz";
- sha1 = "8d3d1f5af890e62da7f4cb45d20c09fa51057dcd";
+ url = "https://registry.npmjs.org/three/-/three-0.93.0.tgz";
+ sha1 = "3fd6c367ef4554abbb6e16ad69936283e895c123";
};
buildInputs = globalBuildInputs;
meta = {
diff --git a/pkgs/development/r-modules/default.nix b/pkgs/development/r-modules/default.nix
index 35822fa78bd..996e3932d2a 100644
--- a/pkgs/development/r-modules/default.nix
+++ b/pkgs/development/r-modules/default.nix
@@ -397,6 +397,7 @@ let
RPushbullet = [ pkgs.which ];
qtpaint = [ pkgs.cmake ];
qtbase = [ pkgs.cmake pkgs.perl ];
+ RcppEigen = [ pkgs.libiconv ];
RCurl = [ pkgs.curl.dev ];
R2SWF = [ pkgs.pkgconfig ];
rggobi = [ pkgs.pkgconfig ];
@@ -438,6 +439,7 @@ let
nlme = [ pkgs.libiconv ];
Matrix = [ pkgs.libiconv ];
mgcv = [ pkgs.libiconv ];
+ igraph = [ pkgs.libiconv ];
};
packagesRequireingX = [
diff --git a/pkgs/development/tools/godot/default.nix b/pkgs/development/tools/godot/default.nix
index 88ea499d28c..ec5809b85aa 100644
--- a/pkgs/development/tools/godot/default.nix
+++ b/pkgs/development/tools/godot/default.nix
@@ -10,13 +10,13 @@ let
};
in stdenv.mkDerivation rec {
name = "godot-${version}";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchFromGitHub {
owner = "godotengine";
repo = "godot";
rev = "${version}-stable";
- sha256 = "1ca1zznb7qqn4vf2nfwb8nww5x0k8fc4lwjvgydr6nr2mn70xka4";
+ sha256 = "060jb5jip1si32a0sm1mmkvy3nldl1cjb82kjh5wihzllph93sxd";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/development/tools/misc/doclifter/default.nix b/pkgs/development/tools/misc/doclifter/default.nix
index 928f1260290..9b35d2960a4 100644
--- a/pkgs/development/tools/misc/doclifter/default.nix
+++ b/pkgs/development/tools/misc/doclifter/default.nix
@@ -1,10 +1,10 @@
{stdenv, fetchurl, python}:
stdenv.mkDerivation {
- name = "doclifter-2.17";
+ name = "doclifter-2.18";
src = fetchurl {
- url = http://www.catb.org/~esr/doclifter/doclifter-2.17.tar.gz;
- sha256 = "1m8yfjbl8wzcml9q4k7m1crwid0a14r07fqf33bmmgx1zpjk8kmv";
+ url = http://www.catb.org/~esr/doclifter/doclifter-2.18.tar.gz;
+ sha256 = "0g39lbml7dclm2nb20j4ffzhq28226qiwxq1w37p7mpqijm7x3hw";
};
buildInputs = [ python ];
diff --git a/pkgs/development/tools/pipenv/default.nix b/pkgs/development/tools/pipenv/default.nix
index 153c0f76a40..e58cc44884c 100644
--- a/pkgs/development/tools/pipenv/default.nix
+++ b/pkgs/development/tools/pipenv/default.nix
@@ -2,11 +2,11 @@
with python3Packages; buildPythonApplication rec {
name = "${pname}-${version}";
pname = "pipenv";
- version = "11.9.0";
+ version = "2018.5.18";
src = fetchPypi {
inherit pname version;
- sha256 = "7b3c52fb57e17ca61b6141b75c8f5ba61a95c713ca470754240f7f1dbd0a4968";
+ sha256 = "1knyknmykjj7gixdpfyns77sv4mizl68addk09ajmw9z5aqaif84";
};
LC_ALL = "en_US.UTF-8";
diff --git a/pkgs/development/tools/profiling/sysprof/default.nix b/pkgs/development/tools/profiling/sysprof/default.nix
index f28fe187e6c..a01d7dd4290 100644
--- a/pkgs/development/tools/profiling/sysprof/default.nix
+++ b/pkgs/development/tools/profiling/sysprof/default.nix
@@ -1,6 +1,7 @@
{ stdenv
, desktop-file-utils
, fetchurl
+, fetchpatch
, gettext
, glib
, gtk3
@@ -28,6 +29,15 @@ in stdenv.mkDerivation rec {
sha256 = "05534dvwrzrmryb4y2m1sb2q0r8i6nr88pzjg7xs5nr9zq8a87p3";
};
+ patches = [
+ # fix includedir in pkgconfig
+ # https://gitlab.gnome.org/GNOME/sysprof/merge_requests/2
+ (fetchpatch {
+ url = https://gitlab.gnome.org/GNOME/sysprof/commit/d19a496bb55b8646e866df8bb07bc6ad3c55eaf2.patch;
+ sha256 = "15w6di9c4n1gsymkpk413f5f9gd3iq23wdkzs01y9xrxwqpm7hm4";
+ })
+ ];
+
nativeBuildInputs = [ desktop-file-utils gettext itstool libxml2 meson ninja pkgconfig shared-mime-info wrapGAppsHook ];
buildInputs = [ glib gtk3 pango polkit systemd.dev systemd.lib ];
diff --git a/pkgs/os-specific/linux/eventstat/default.nix b/pkgs/os-specific/linux/eventstat/default.nix
index e2647112f1b..8d96a503c76 100644
--- a/pkgs/os-specific/linux/eventstat/default.nix
+++ b/pkgs/os-specific/linux/eventstat/default.nix
@@ -2,10 +2,10 @@
stdenv.mkDerivation rec {
name = "eventstat-${version}";
- version = "0.04.03";
+ version = "0.04.04";
src = fetchzip {
url = "http://kernel.ubuntu.com/~cking/tarballs/eventstat/eventstat-${version}.tar.gz";
- sha256 = "0yv7rpdg07rihw8iilvigib963nxf16mn26hzlb6qd1wv54k6dbr";
+ sha256 = "034xpdr3ip4w9k713wjc45x66k3nz6wg9wkzmchrjifxk4dldbd8";
};
buildInputs = [ ncurses ];
installFlags = [ "DESTDIR=$(out)" ];
diff --git a/pkgs/servers/mattermost/default.nix b/pkgs/servers/mattermost/default.nix
index 9943c0b9ab0..305ee174bf3 100644
--- a/pkgs/servers/mattermost/default.nix
+++ b/pkgs/servers/mattermost/default.nix
@@ -1,7 +1,7 @@
{ stdenv, fetchurl, fetchFromGitHub, buildGoPackage, buildEnv }:
let
- version = "4.10.0";
+ version = "5.0.0";
mattermost-server = buildGoPackage rec {
name = "mattermost-server-${version}";
@@ -10,7 +10,7 @@ let
owner = "mattermost";
repo = "mattermost-server";
rev = "v${version}";
- sha256 = "02isw8qapp35pgriy4w1ar1ppvgc5a10j550hjbc1mylnhzkg1jf";
+ sha256 = "12wiw8k5is78ppazrf26y2xq73kwbafa9w75wjnb1839v2k9sark";
};
goPackagePath = "github.com/mattermost/mattermost-server";
@@ -20,11 +20,6 @@ let
-X ${goPackagePath}/model.BuildNumber=nixpkgs-${version}
'';
- postInstall = ''
- ln -s $bin/bin/mattermost-server $bin/bin/platform
- ln -s $bin/bin/mattermost-server $bin/bin/mattermost-platform
- '';
-
};
mattermost-webapp = stdenv.mkDerivation {
@@ -32,7 +27,7 @@ let
src = fetchurl {
url = "https://releases.mattermost.com/${version}/mattermost-${version}-linux-amd64.tar.gz";
- sha256 = "0pfj2dxl4qrv4w6yj0385nw0fa4flcg95kkahs0arwhan5bgifl5";
+ sha256 = "1pal65di6w9idf3rwxh77la1v816h8kama1ilkbs40cpp2vazw3b";
};
installPhase = ''
diff --git a/pkgs/servers/sql/monetdb/default.nix b/pkgs/servers/sql/monetdb/default.nix
index 6067d498386..c32dcf475c5 100644
--- a/pkgs/servers/sql/monetdb/default.nix
+++ b/pkgs/servers/sql/monetdb/default.nix
@@ -3,14 +3,14 @@
}:
let
- version = "11.29.3";
+ version = "11.29.7";
in stdenv.mkDerivation rec {
name = "monetdb-${version}";
src = fetchurl {
url = "https://dev.monetdb.org/downloads/sources/archive/MonetDB-${version}.tar.bz2";
- sha256 = "18l4jkkryki5az5n7gnalfdxz6ibnkg3q2z4cwh1010b313wqi8s";
+ sha256 = "19f9zfg94k8hr9qc7jp1iwl8av08mibzgmid0gbqplyhf6x1j0r7";
};
nativeBuildInputs = [ pkgconfig ];
diff --git a/pkgs/tools/admin/google-cloud-sdk/default.nix b/pkgs/tools/admin/google-cloud-sdk/default.nix
index b109a835635..c3d6faeac52 100644
--- a/pkgs/tools/admin/google-cloud-sdk/default.nix
+++ b/pkgs/tools/admin/google-cloud-sdk/default.nix
@@ -19,18 +19,18 @@ let
sources = name: system: {
x86_64-darwin = {
url = "${baseUrl}/${name}-darwin-x86_64.tar.gz";
- sha256 = "0c4jj580f7z6phiw4zhd32dlf4inkrxy3cig6ng66fi4zi6vnpc9";
+ sha256 = "0fdcd5d63e231443b9e032de4e2c2be9e4f1c766a25054ad93410f5213e45645";
};
x86_64-linux = {
url = "${baseUrl}/${name}-linux-x86_64.tar.gz";
- sha256 = "0rblb0akwdzr5i8al0dcz482xmx1xdnjnzgqywjvwd8fzdyzq7bp";
+ sha256 = "d39293914b2e969bfe18dd19eb77ba96d283995f8cf1e5d7ba6ac712a3c9479a";
};
}.${system};
in stdenv.mkDerivation rec {
name = "google-cloud-sdk-${version}";
- version = "190.0.1";
+ version = "206.0.0";
src = fetchurl (sources name stdenv.system);
diff --git a/pkgs/tools/audio/abcmidi/default.nix b/pkgs/tools/audio/abcmidi/default.nix
index a0e7b1f906c..46b4ada3d57 100644
--- a/pkgs/tools/audio/abcmidi/default.nix
+++ b/pkgs/tools/audio/abcmidi/default.nix
@@ -2,11 +2,11 @@
stdenv.mkDerivation rec {
name = "abcMIDI-${version}";
- version = "2018.05.02";
+ version = "2018.06.13";
src = fetchzip {
url = "http://ifdo.ca/~seymour/runabc/${name}.zip";
- sha256 = "0pva0kwkwdrq4mfgiz389dhaqv66csqjaddirzxmhvvi6qji5d24";
+ sha256 = "0mmr0wfdwx9vfz17gp0arspv835l5gka78hm5hkri4h3cvxpflfy";
};
# There is also a file called "makefile" which seems to be preferred by the standard build phase
diff --git a/pkgs/tools/misc/cutecom/default.nix b/pkgs/tools/misc/cutecom/default.nix
index b20e493a585..3d6d2328da1 100644
--- a/pkgs/tools/misc/cutecom/default.nix
+++ b/pkgs/tools/misc/cutecom/default.nix
@@ -2,12 +2,12 @@
stdenv.mkDerivation rec {
name = "cutecom-${version}";
- version = "0.40.0";
+ version = "0.45.0";
src = fetchFromGitHub {
owner = "neundorf";
repo = "CuteCom";
rev = "v${version}";
- sha256 = "1bn6vndqlvn73riq6p0nanmcl35ja9gsil5hvfpf509r7i8gx4ds";
+ sha256 = "07h1r7bcz86fvcvxq6g5zyh7fsginx27jbp81a7hjhhhn6v0dsmh";
};
preConfigure = ''
diff --git a/pkgs/tools/misc/gams/default.nix b/pkgs/tools/misc/gams/default.nix
index 613fdc0f455..84d3239729f 100644
--- a/pkgs/tools/misc/gams/default.nix
+++ b/pkgs/tools/misc/gams/default.nix
@@ -17,9 +17,9 @@ stdenv.mkDerivation rec {
mkdir -p "$out/bin" "$out/share/gams"
cp -a * "$out/share/gams"
- cp ${licenseFile} $out/share/gamslice.txt
+ cp ${licenseFile} $out/share/gams/gamslice.txt
'' + stdenv.lib.optionalString (optgamsFile != null) ''
- cp ${optgamsFile} $out/share/optgams.def
+ cp ${optgamsFile} $out/share/gams/optgams.def
ln -s $out/share/gams/optgams.def $out/bin/optgams.def
'';
diff --git a/pkgs/tools/security/gopass/default.nix b/pkgs/tools/security/gopass/default.nix
index fe7d5060262..2d7f8b86f00 100644
--- a/pkgs/tools/security/gopass/default.nix
+++ b/pkgs/tools/security/gopass/default.nix
@@ -1,18 +1,18 @@
{ stdenv, buildGoPackage, fetchFromGitHub, git, gnupg, xclip, makeWrapper }:
buildGoPackage rec {
- version = "1.7.1";
+ version = "1.8.1";
name = "gopass-${version}";
- goPackagePath = "github.com/justwatchcom/gopass";
+ goPackagePath = "github.com/gopasspw/gopass";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
- owner = "justwatchcom";
+ owner = "gopasspw";
repo = "gopass";
rev = "v${version}";
- sha256 = "01cif6a2xa3c8nki0pas9mywdxs8d9niv8z13mii5hcfqvm0s7aw";
+ sha256 = "1b3caydxz3zf1ky6qvkx0dgidlalvpmga6cjh3gqc269n00lwh6w";
};
wrapperPath = with stdenv.lib; makeBinPath ([
@@ -38,7 +38,7 @@ buildGoPackage rec {
meta = with stdenv.lib; {
description = "The slightly more awesome Standard Unix Password Manager for Teams. Written in Go.";
- homepage = https://www.justwatch.com/gopass/;
+ homepage = https://www.gopass.pw/;
license = licenses.mit;
maintainers = with maintainers; [ andir ];
platforms = platforms.unix;
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index f82853a751a..c1c73cd8d99 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -17423,6 +17423,8 @@ with pkgs;
osmctools = callPackage ../applications/misc/osmctools { };
+ owamp = callPackage ../applications/networking/owamp { };
+
vivaldi = callPackage ../applications/networking/browsers/vivaldi {};
vivaldi-ffmpeg-codecs = callPackage ../applications/networking/browsers/vivaldi/ffmpeg-codecs.nix {};
@@ -18230,7 +18232,7 @@ with pkgs;
gconf = gnome2.GConf;
};
- teamspeak_client = libsForQt59.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { };
+ teamspeak_client = libsForQt5.callPackage ../applications/networking/instant-messengers/teamspeak/client.nix { };
teamspeak_server = callPackage ../applications/networking/instant-messengers/teamspeak/server.nix { };
uaskjuggler = callPackage ../applications/misc/taskjuggler { };