diff --git a/pkgs/development/node-packages/composition-v4.nix b/pkgs/development/node-packages/composition-v4.nix
index b78bbda5d5e..8c4a5390f55 100644
--- a/pkgs/development/node-packages/composition-v4.nix
+++ b/pkgs/development/node-packages/composition-v4.nix
@@ -1,8 +1,8 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{pkgs ? import {
inherit system;
- }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs"}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-4_x"}:
let
nodeEnv = import ./node-env.nix {
diff --git a/pkgs/development/node-packages/composition-v6.nix b/pkgs/development/node-packages/composition-v6.nix
index 1c21b47b92c..ea30c5b04c4 100644
--- a/pkgs/development/node-packages/composition-v6.nix
+++ b/pkgs/development/node-packages/composition-v6.nix
@@ -1,8 +1,8 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{pkgs ? import {
inherit system;
- }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-5_x"}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-6_x"}:
let
nodeEnv = import ./node-env.nix {
diff --git a/pkgs/development/node-packages/generate.sh b/pkgs/development/node-packages/generate.sh
index 613293e850b..f5675623c2c 100755
--- a/pkgs/development/node-packages/generate.sh
+++ b/pkgs/development/node-packages/generate.sh
@@ -2,5 +2,4 @@
rm -f node-env.nix
node2nix -i node-packages.json -o node-packages-v4.nix -c composition-v4.nix
-# node2nix doesn't explicitely support node v6 so far
-node2nix -5 -i node-packages.json -o node-packages-v6.nix -c composition-v6.nix
+node2nix -6 -i node-packages.json -o node-packages-v6.nix -c composition-v6.nix
diff --git a/pkgs/development/node-packages/node-env.nix b/pkgs/development/node-packages/node-env.nix
index e8328252a11..356e78f027b 100644
--- a/pkgs/development/node-packages/node-env.nix
+++ b/pkgs/development/node-packages/node-env.nix
@@ -57,60 +57,6 @@ let
# Recursively composes the dependencies of a package
composePackage = { name, packageName, src, dependencies ? [], ... }@args:
- let
- fixImpureDependencies = writeTextFile {
- name = "fixDependencies.js";
- text = ''
- var fs = require('fs');
- var url = require('url');
-
- /*
- * Replaces an impure version specification by *
- */
- function replaceImpureVersionSpec(versionSpec) {
- var parsedUrl = url.parse(versionSpec);
-
- if(versionSpec == "latest" || versionSpec == "unstable" ||
- versionSpec.substr(0, 2) == ".." || dependency.substr(0, 2) == "./" || dependency.substr(0, 2) == "~/" || dependency.substr(0, 1) == '/')
- return '*';
- else if(parsedUrl.protocol == "git:" || parsedUrl.protocol == "git+ssh:" || parsedUrl.protocol == "git+http:" || parsedUrl.protocol == "git+https:" || parsedUrl.protocol == "github:" ||
- parsedUrl.protocol == "http:" || parsedUrl.protocol == "https:")
- return '*';
- else
- return versionSpec;
- }
-
- var packageObj = JSON.parse(fs.readFileSync('./package.json'));
-
- /* Replace dependencies */
- if(packageObj.dependencies !== undefined) {
- for(var dependency in packageObj.dependencies) {
- var versionSpec = packageObj.dependencies[dependency];
- packageObj.dependencies[dependency] = replaceImpureVersionSpec(versionSpec);
- }
- }
-
- /* Replace development dependencies */
- if(packageObj.devDependencies !== undefined) {
- for(var dependency in packageObj.devDependencies) {
- var versionSpec = packageObj.devDependencies[dependency];
- packageObj.devDependencies[dependency] = replaceImpureVersionSpec(versionSpec);
- }
- }
-
- /* Replace optional dependencies */
- if(packageObj.optionalDependencies !== undefined) {
- for(var dependency in packageObj.optionalDependencies) {
- var versionSpec = packageObj.optionalDependencies[dependency];
- packageObj.optionalDependencies[dependency] = replaceImpureVersionSpec(versionSpec);
- }
- }
-
- /* Write the fixed JSON file */
- fs.writeFileSync("package.json", JSON.stringify(packageObj));
- '';
- };
- in
''
DIR=$(pwd)
cd $TMPDIR
@@ -150,17 +96,97 @@ let
# Unset the stripped name to not confuse the next unpack step
unset strippedName
- # Some version specifiers (latest, unstable, URLs, file paths) force NPM to make remote connections or consult paths outside the Nix store.
- # The following JavaScript replaces these by * to prevent that
- cd "$DIR/${packageName}"
- node ${fixImpureDependencies}
-
# Include the dependencies of the package
+ cd "$DIR/${packageName}"
${includeDependencies { inherit dependencies; }}
cd ..
${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
'';
+ pinpointDependencies = {dependencies, production}:
+ let
+ pinpointDependenciesFromPackageJSON = writeTextFile {
+ name = "pinpointDependencies.js";
+ text = ''
+ var fs = require('fs');
+ var path = require('path');
+
+ function resolveDependencyVersion(location, name) {
+ if(location == process.env['NIX_STORE']) {
+ return null;
+ } else {
+ var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
+
+ if(fs.existsSync(dependencyPackageJSON)) {
+ var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
+
+ if(dependencyPackageObj.name == name) {
+ return dependencyPackageObj.version;
+ }
+ } else {
+ return resolveDependencyVersion(path.resolve(location, ".."), name);
+ }
+ }
+ }
+
+ function replaceDependencies(dependencies) {
+ if(typeof dependencies == "object" && dependencies !== null) {
+ for(var dependency in dependencies) {
+ var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
+
+ if(resolvedVersion === null) {
+ process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
+ } else {
+ dependencies[dependency] = resolvedVersion;
+ }
+ }
+ }
+ }
+
+ /* Read the package.json configuration */
+ var packageObj = JSON.parse(fs.readFileSync('./package.json'));
+
+ /* Pinpoint all dependencies */
+ replaceDependencies(packageObj.dependencies);
+ if(process.argv[2] == "development") {
+ replaceDependencies(packageObj.devDependencies);
+ }
+ replaceDependencies(packageObj.optionalDependencies);
+
+ /* Write the fixed package.json file */
+ fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
+ '';
+ };
+ in
+ ''
+ node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"}
+
+ ${stdenv.lib.optionalString (dependencies != [])
+ ''
+ if [ -d node_modules ]
+ then
+ cd node_modules
+ ${stdenv.lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies}
+ cd ..
+ fi
+ ''}
+ '';
+
+ # Recursively traverses all dependencies of a package and pinpoints all
+ # dependencies in the package.json file to the versions that are actually
+ # being used.
+
+ pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
+ ''
+ if [ -d "${packageName}" ]
+ then
+ cd "${packageName}"
+ ${pinpointDependencies { inherit dependencies production; }}
+ cd ..
+ ${stdenv.lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
+ fi
+ '';
+
# Extract the Node.js source code which is used to compile packages with
# native bindings
nodeSources = runCommand "node-sources" {} ''
@@ -183,7 +209,9 @@ let
buildPhase = args.buildPhase or "true";
compositionScript = composePackage args;
- passAsFile = [ "compositionScript" ];
+ pinpointDependenciesScript = pinpointDependenciesOfPackage args;
+
+ passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
installPhase = args.installPhase or ''
# Create and enter a root node_modules/ folder
@@ -192,6 +220,10 @@ let
# Compose the package and all its dependencies
source $compositionScriptPath
+
+ # Pinpoint the versions of all dependencies to the ones that are actually being used
+ echo "pinpointing versions of dependencies..."
+ source $pinpointDependenciesScriptPath
# Patch the shebangs of the bundled modules to prevent them from
# calling executables outside the Nix store as much as possible
@@ -254,12 +286,18 @@ let
buildInputs = [ tarWrapper python nodejs ] ++ stdenv.lib.optional (stdenv.isLinux) utillinux ++ args.buildInputs or [];
includeScript = includeDependencies { inherit dependencies; };
- passAsFile = [ "includeScript" ];
+ pinpointDependenciesScript = pinpointDependenciesOfPackage args;
+
+ passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
buildCommand = ''
mkdir -p $out/lib
cd $out/lib
source $includeScriptPath
+
+ # Pinpoint the versions of all dependencies to the ones that are actually being used
+ echo "pinpointing versions of dependencies..."
+ source $pinpointDependenciesScriptPath
# Create fake package.json to make the npm commands work properly
cat > package.json <
";
+ description = "📦🐈 Fast, reliable, and secure dependency management.";
homepage = "https://github.com/yarnpkg/yarn#readme";
license = "BSD-2-Clause";
};
@@ -39792,12 +40632,12 @@ in
(sources."lru-cache-4.0.2" // {
dependencies = [
sources."pseudomap-1.0.2"
- sources."yallist-2.0.0"
+ sources."yallist-2.1.2"
];
})
- (sources."which-1.2.12" // {
+ (sources."which-1.2.14" // {
dependencies = [
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
];
})
];
@@ -39868,7 +40708,7 @@ in
sources."object-assign-4.1.1"
(sources."parse-json-2.2.0" // {
dependencies = [
- (sources."error-ex-1.3.0" // {
+ (sources."error-ex-1.3.1" // {
dependencies = [
sources."is-arrayish-0.2.1"
];
@@ -39881,7 +40721,7 @@ in
];
})
sources."read-all-stream-3.1.0"
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -40018,11 +40858,11 @@ in
})
];
})
- (sources."request-2.79.0" // {
+ (sources."request-2.81.0" // {
dependencies = [
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
(sources."combined-stream-1.0.5" // {
dependencies = [
sources."delayed-stream-1.0.0"
@@ -40035,30 +40875,19 @@ in
sources."asynckit-0.4.0"
];
})
- (sources."har-validator-2.0.6" // {
+ (sources."har-validator-4.2.1" // {
dependencies = [
- (sources."commander-2.9.0" // {
+ (sources."ajv-4.11.5" // {
dependencies = [
- sources."graceful-readlink-1.0.1"
- ];
- })
- (sources."is-my-json-valid-2.16.0" // {
- dependencies = [
- sources."generate-function-2.0.0"
- (sources."generate-object-property-1.2.0" // {
+ sources."co-4.6.0"
+ (sources."json-stable-stringify-1.0.1" // {
dependencies = [
- sources."is-property-1.0.2"
+ sources."jsonify-0.0.0"
];
})
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- ];
- })
- (sources."pinkie-promise-2.0.1" // {
- dependencies = [
- sources."pinkie-2.0.4"
];
})
+ sources."har-schema-1.0.5"
];
})
(sources."hawk-3.1.3" // {
@@ -40072,14 +40901,15 @@ in
(sources."http-signature-1.1.1" // {
dependencies = [
sources."assert-plus-0.2.0"
- (sources."jsprim-1.3.1" // {
+ (sources."jsprim-1.4.0" // {
dependencies = [
+ sources."assert-plus-1.0.0"
sources."extsprintf-1.0.2"
sources."json-schema-0.2.3"
sources."verror-1.3.6"
];
})
- (sources."sshpk-1.10.2" // {
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
@@ -40097,15 +40927,17 @@ in
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
];
})
@@ -40137,9 +40969,9 @@ in
})
sources."map-obj-1.0.1"
sources."minimist-1.2.0"
- (sources."normalize-package-data-2.3.5" // {
+ (sources."normalize-package-data-2.3.6" // {
dependencies = [
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
(sources."is-builtin-module-1.0.0" // {
dependencies = [
sources."builtin-modules-1.1.1"
@@ -40182,7 +41014,7 @@ in
})
(sources."registry-url-3.1.0" // {
dependencies = [
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."deep-extend-0.4.1"
sources."ini-1.3.4"
@@ -40203,7 +41035,7 @@ in
dependencies = [
(sources."registry-auth-token-3.1.0" // {
dependencies = [
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."deep-extend-0.4.1"
sources."ini-1.3.4"
@@ -40215,7 +41047,7 @@ in
})
(sources."registry-url-3.1.0" // {
dependencies = [
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."deep-extend-0.4.1"
sources."ini-1.3.4"
@@ -40261,7 +41093,7 @@ in
sources."graceful-fs-4.1.11"
(sources."parse-json-2.2.0" // {
dependencies = [
- (sources."error-ex-1.3.0" // {
+ (sources."error-ex-1.3.1" // {
dependencies = [
sources."is-arrayish-0.2.1"
];
@@ -40281,9 +41113,9 @@ in
})
];
})
- (sources."normalize-package-data-2.3.5" // {
+ (sources."normalize-package-data-2.3.6" // {
dependencies = [
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
(sources."is-builtin-module-1.0.0" // {
dependencies = [
sources."builtin-modules-1.1.1"
@@ -40363,7 +41195,7 @@ in
})
(sources."tabtab-1.3.2" // {
dependencies = [
- (sources."debug-2.6.1" // {
+ (sources."debug-2.6.3" // {
dependencies = [
sources."ms-0.7.2"
];
@@ -40391,7 +41223,7 @@ in
dependencies = [
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -40456,7 +41288,7 @@ in
(sources."are-we-there-yet-1.1.2" // {
dependencies = [
sources."delegates-1.0.0"
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -40620,7 +41452,7 @@ in
})
(sources."yeoman-environment-1.6.6" // {
dependencies = [
- (sources."debug-2.6.1" // {
+ (sources."debug-2.6.3" // {
dependencies = [
sources."ms-0.7.2"
];
@@ -40694,7 +41526,7 @@ in
dependencies = [
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -40752,7 +41584,7 @@ in
dependencies = [
(sources."through2-2.0.3" // {
dependencies = [
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -40791,7 +41623,7 @@ in
dependencies = [
(sources."first-chunk-stream-2.0.0" // {
dependencies = [
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
diff --git a/pkgs/development/node-packages/node-packages-v6.nix b/pkgs/development/node-packages/node-packages-v6.nix
index dba0e9d82c2..08070fe0e5f 100644
--- a/pkgs/development/node-packages/node-packages-v6.nix
+++ b/pkgs/development/node-packages/node-packages-v6.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
@@ -337,13 +337,13 @@ let
sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
};
};
- "is-buffer-1.1.4" = {
+ "is-buffer-1.1.5" = {
name = "is-buffer";
packageName = "is-buffer";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz";
- sha1 = "cfc86ccd5dc5a52fa80489111c6920c457e2d98b";
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz";
+ sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc";
};
};
"path-parse-1.0.5" = {
@@ -418,13 +418,13 @@ let
sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e";
};
};
- "which-1.2.12" = {
+ "which-1.2.14" = {
name = "which";
packageName = "which";
- version = "1.2.12";
+ version = "1.2.14";
src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.2.12.tgz";
- sha1 = "de67b5e450269f194909ef23ece4ebe416fa1192";
+ url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz";
+ sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5";
};
};
"parse-passwd-1.0.0" = {
@@ -436,13 +436,13 @@ let
sha1 = "6d5b934a456993b23d37f40a382d6f1666a8e5c6";
};
};
- "isexe-1.1.2" = {
+ "isexe-2.0.0" = {
name = "isexe";
packageName = "isexe";
- version = "1.1.2";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz";
- sha1 = "36f3e22e60750920f5e7241a476a8c6a42275ad0";
+ url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
+ sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
};
};
"amdefine-1.0.1" = {
@@ -517,13 +517,13 @@ let
sha1 = "56b558ba43b9cb5657662251dabe3cb34c16c56f";
};
};
- "azure-arm-cdn-1.0.2" = {
+ "azure-arm-cdn-1.0.3" = {
name = "azure-arm-cdn";
packageName = "azure-arm-cdn";
- version = "1.0.2";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-1.0.2.tgz";
- sha1 = "35eed81c93fb1b2fe1236b432c821a61bce6be96";
+ url = "https://registry.npmjs.org/azure-arm-cdn/-/azure-arm-cdn-1.0.3.tgz";
+ sha1 = "39db281679dcdd33cb6ce032383b192430476412";
};
};
"azure-arm-commerce-0.2.0" = {
@@ -886,6 +886,15 @@ let
sha1 = "5edeb1aee23c4fb541a6b70d692abef19669a2d3";
};
};
+ "date-utils-1.2.21" = {
+ name = "date-utils";
+ packageName = "date-utils";
+ version = "1.2.21";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz";
+ sha1 = "61fb16cdc1274b3c9acaaffe9fc69df8720a2b64";
+ };
+ };
"easy-table-0.0.1" = {
name = "easy-table";
packageName = "easy-table";
@@ -967,6 +976,15 @@ let
sha1 = "bd0a7040d426d7598d6c742ec8f875d0e88644a9";
};
};
+ "jwt-decode-2.2.0" = {
+ name = "jwt-decode";
+ packageName = "jwt-decode";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/jwt-decode/-/jwt-decode-2.2.0.tgz";
+ sha1 = "7d86bd56679f58ce6a84704a657dd392bba81a79";
+ };
+ };
"kuduscript-1.0.13" = {
name = "kuduscript";
packageName = "kuduscript";
@@ -976,22 +994,31 @@ let
sha1 = "c74349b2092608bb0f3dc827c516ef2fddb8238e";
};
};
- "ms-rest-1.15.5" = {
- name = "ms-rest";
- packageName = "ms-rest";
- version = "1.15.5";
+ "moment-2.18.1" = {
+ name = "moment";
+ packageName = "moment";
+ version = "2.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.5.tgz";
- sha1 = "b207a9c447f7fca3adca701feccc2c1907b1431d";
+ url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz";
+ sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f";
};
};
- "ms-rest-azure-1.15.5" = {
+ "ms-rest-1.15.7" = {
+ name = "ms-rest";
+ packageName = "ms-rest";
+ version = "1.15.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ms-rest/-/ms-rest-1.15.7.tgz";
+ sha1 = "400515e05b1924889cb61a1ec6054290a68e1207";
+ };
+ };
+ "ms-rest-azure-1.15.7" = {
name = "ms-rest-azure";
packageName = "ms-rest-azure";
- version = "1.15.5";
+ version = "1.15.7";
src = fetchurl {
- url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.15.5.tgz";
- sha1 = "8fbb1366ecca18ce59010473dc0228b5a32c5611";
+ url = "https://registry.npmjs.org/ms-rest-azure/-/ms-rest-azure-1.15.7.tgz";
+ sha1 = "8bce09f053b1565dbaa8bd022ca40155c35b0fde";
};
};
"node-forge-0.6.23" = {
@@ -1183,15 +1210,6 @@ let
sha1 = "b3da19bd052431a97671d44a42634adf710b40c4";
};
};
- "date-utils-1.2.21" = {
- name = "date-utils";
- packageName = "date-utils";
- version = "1.2.21";
- src = fetchurl {
- url = "https://registry.npmjs.org/date-utils/-/date-utils-1.2.21.tgz";
- sha1 = "61fb16cdc1274b3c9acaaffe9fc69df8720a2b64";
- };
- };
"jws-3.1.4" = {
name = "jws";
packageName = "jws";
@@ -1480,13 +1498,13 @@ let
sha1 = "4a3188d4291b66b4f65edb99f806aa9ae293592a";
};
};
- "from-0.1.3" = {
+ "from-0.1.7" = {
name = "from";
packageName = "from";
- version = "0.1.3";
+ version = "0.1.7";
src = fetchurl {
- url = "https://registry.npmjs.org/from/-/from-0.1.3.tgz";
- sha1 = "ef63ac2062ac32acf7862e0d40b44b896f22f3bc";
+ url = "https://registry.npmjs.org/from/-/from-0.1.7.tgz";
+ sha1 = "83c60afc58b9c56997007ed1a768b3ab303a44fe";
};
};
"map-stream-0.1.0" = {
@@ -1912,13 +1930,13 @@ let
sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
};
};
- "mime-types-2.1.14" = {
+ "mime-types-2.1.15" = {
name = "mime-types";
packageName = "mime-types";
- version = "2.1.14";
+ version = "2.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz";
- sha1 = "f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz";
+ sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed";
};
};
"oauth-sign-0.8.2" = {
@@ -1930,13 +1948,13 @@ let
sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
};
};
- "qs-6.2.2" = {
+ "qs-6.2.3" = {
name = "qs";
packageName = "qs";
- version = "6.2.2";
+ version = "6.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.2.2.tgz";
- sha1 = "d506a5ad5b2cae1fd35c4f54ec182e267e3ef586";
+ url = "https://registry.npmjs.org/qs/-/qs-6.2.3.tgz";
+ sha1 = "1cfcb25c10a9b2b483053ff39f5dfc9233908cfe";
};
};
"stringstream-0.0.5" = {
@@ -1975,13 +1993,13 @@ let
sha1 = "df3ae199acadfb7d440aaae0b29e2272b24ec619";
};
};
- "async-2.1.5" = {
+ "async-2.2.0" = {
name = "async";
packageName = "async";
- version = "2.1.5";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
- sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
+ url = "https://registry.npmjs.org/async/-/async-2.2.0.tgz";
+ sha1 = "c324eba010a237e4fbd55a12dee86367d5c0ef32";
};
};
"lodash-4.17.4" = {
@@ -2191,22 +2209,31 @@ let
sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
};
};
- "jsprim-1.3.1" = {
+ "jsprim-1.4.0" = {
name = "jsprim";
packageName = "jsprim";
- version = "1.3.1";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.3.1.tgz";
- sha1 = "2a7256f70412a29ee3670aaca625994c4dcff252";
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz";
+ sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918";
};
};
- "sshpk-1.10.2" = {
+ "sshpk-1.11.0" = {
name = "sshpk";
packageName = "sshpk";
- version = "1.10.2";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.10.2.tgz";
- sha1 = "d5a804ce22695515638e798dbe23273de070a5fa";
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.11.0.tgz";
+ sha1 = "2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77";
+ };
+ };
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
};
};
"extsprintf-1.0.2" = {
@@ -2245,15 +2272,6 @@ let
sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
};
};
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- };
"dashdash-1.14.1" = {
name = "dashdash";
packageName = "dashdash";
@@ -2317,13 +2335,13 @@ let
sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
};
};
- "mime-db-1.26.0" = {
+ "mime-db-1.27.0" = {
name = "mime-db";
packageName = "mime-db";
- version = "1.26.0";
+ version = "1.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.26.0.tgz";
- sha1 = "eaffcd0e4fc6935cf8134da246e2e6c35305adff";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz";
+ sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1";
};
};
"punycode-1.4.1" = {
@@ -2416,13 +2434,13 @@ let
sha1 = "867ac74e3864187b1d3d47d996a78ec5c8830777";
};
};
- "readable-stream-2.2.3" = {
+ "readable-stream-2.2.6" = {
name = "readable-stream";
packageName = "readable-stream";
- version = "2.2.3";
+ version = "2.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.3.tgz";
- sha1 = "9cf49463985df016c8ae8813097a9293a9b33729";
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.6.tgz";
+ sha1 = "8b43aed76e71483938d12a8d46c6cf1a00b1f816";
};
};
"buffer-shims-1.0.0" = {
@@ -2839,13 +2857,13 @@ let
sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
};
};
- "normalize-package-data-2.3.5" = {
+ "normalize-package-data-2.3.6" = {
name = "normalize-package-data";
packageName = "normalize-package-data";
- version = "2.3.5";
+ version = "2.3.6";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.5.tgz";
- sha1 = "8d924f142960e1777e7ffe170543631cc7cb02df";
+ url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.6.tgz";
+ sha1 = "498fa420c96401f787402ba21e600def9f981fff";
};
};
"object-assign-4.1.1" = {
@@ -2920,13 +2938,13 @@ let
sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
};
};
- "hosted-git-info-2.2.0" = {
+ "hosted-git-info-2.4.1" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
- version = "2.2.0";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz";
- sha1 = "7a0d097863d886c0fabbdcd37bf1758d8becf8a5";
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.1.tgz";
+ sha1 = "4b0445e41c004a8bd1337773a4ff790ca40318c8";
};
};
"is-builtin-module-1.0.0" = {
@@ -3064,13 +3082,13 @@ let
sha1 = "6219a85616520491f35788bdbf1447a99c7e6b0e";
};
};
- "error-ex-1.3.0" = {
+ "error-ex-1.3.1" = {
name = "error-ex";
packageName = "error-ex";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.0.tgz";
- sha1 = "e67b43f3e82c96ea3a584ffee0b9fc3325d802d9";
+ url = "https://registry.npmjs.org/error-ex/-/error-ex-1.3.1.tgz";
+ sha1 = "f855a86ce61adc4e8621c3cda21e7a7612c3a8dc";
};
};
"is-arrayish-0.2.1" = {
@@ -3190,22 +3208,22 @@ let
sha1 = "4088433b46b3b1ba259d78785d8e96f73ba02439";
};
};
- "q-1.4.1" = {
+ "q-1.5.0" = {
name = "q";
packageName = "q";
- version = "1.4.1";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/q/-/q-1.4.1.tgz";
- sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e";
+ url = "https://registry.npmjs.org/q/-/q-1.5.0.tgz";
+ sha1 = "dd01bac9d06d30e6f219aecb8253ee9ebdc308f1";
};
};
- "debug-2.6.1" = {
+ "debug-2.6.3" = {
name = "debug";
packageName = "debug";
- version = "2.6.1";
+ version = "2.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz";
- sha1 = "79855090ba2c4e3115cc7d8769491d58f0491351";
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.3.tgz";
+ sha1 = "0f7eb8c30965ec08c72accfa0130c8b79984141d";
};
};
"ms-0.7.2" = {
@@ -3532,13 +3550,13 @@ let
sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2";
};
};
- "syntax-error-1.1.6" = {
+ "syntax-error-1.3.0" = {
name = "syntax-error";
packageName = "syntax-error";
- version = "1.1.6";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.1.6.tgz";
- sha1 = "b4549706d386cc1c1dc7c2423f18579b6cade710";
+ url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.3.0.tgz";
+ sha1 = "1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1";
};
};
"through2-2.0.3" = {
@@ -3712,13 +3730,13 @@ let
sha1 = "9988244874bf5ed4e28da95666dcd66ac8fc363a";
};
};
- "browserify-sign-4.0.0" = {
+ "browserify-sign-4.0.4" = {
name = "browserify-sign";
packageName = "browserify-sign";
- version = "4.0.0";
+ version = "4.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.0.tgz";
- sha1 = "10773910c3c206d5420a46aad8694f820b85968f";
+ url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
+ sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
};
};
"create-ecdh-4.0.0" = {
@@ -3874,13 +3892,13 @@ let
sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df";
};
};
- "parse-asn1-5.0.0" = {
+ "parse-asn1-5.1.0" = {
name = "parse-asn1";
packageName = "parse-asn1";
- version = "5.0.0";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.0.0.tgz";
- sha1 = "35060f6d5015d37628c770f4e091a0b5a278bc23";
+ url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz";
+ sha1 = "37c4f9b7ed3ab65c74817b5f2480937fbf97c712";
};
};
"brorand-1.1.0" = {
@@ -3973,22 +3991,22 @@ let
sha1 = "fcea5edc704a4b3a8796cdca419c3a0afaf22df4";
};
};
- "astw-2.0.0" = {
+ "astw-2.2.0" = {
name = "astw";
packageName = "astw";
- version = "2.0.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/astw/-/astw-2.0.0.tgz";
- sha1 = "08121ac8288d35611c0ceec663f6cd545604897d";
+ url = "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz";
+ sha1 = "7bd41784d32493987aeb239b6b4e1c57a873b917";
};
};
- "acorn-1.2.2" = {
+ "acorn-4.0.11" = {
name = "acorn";
packageName = "acorn";
- version = "1.2.2";
+ version = "4.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
- sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
+ url = "https://registry.npmjs.org/acorn/-/acorn-4.0.11.tgz";
+ sha1 = "edcda3bd937e7556410d42ed5860f67399c794c0";
};
};
"stream-splicer-2.0.0" = {
@@ -4000,13 +4018,13 @@ let
sha1 = "1b63be438a133e4b671cc1935197600175910d83";
};
};
- "detective-4.3.2" = {
+ "detective-4.5.0" = {
name = "detective";
packageName = "detective";
- version = "4.3.2";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/detective/-/detective-4.3.2.tgz";
- sha1 = "77697e2e7947ac3fe7c8e26a6d6f115235afa91c";
+ url = "https://registry.npmjs.org/detective/-/detective-4.5.0.tgz";
+ sha1 = "6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1";
};
};
"stream-combiner2-1.1.1" = {
@@ -4018,15 +4036,6 @@ let
sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe";
};
};
- "acorn-3.3.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
- sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
- };
- };
"path-platform-0.11.15" = {
name = "path-platform";
packageName = "path-platform";
@@ -4099,15 +4108,6 @@ let
sha1 = "7d229b1fcc637e466ca081180836a7aabff83f43";
};
};
- "acorn-2.7.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "2.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
- sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
- };
- };
"punycode-1.3.2" = {
name = "punycode";
packageName = "punycode";
@@ -4612,13 +4612,13 @@ let
sha1 = "da3ea74686fa21a19a111c326e90eb15a0196686";
};
};
- "parse-torrent-5.8.1" = {
+ "parse-torrent-5.8.2" = {
name = "parse-torrent";
packageName = "parse-torrent";
- version = "5.8.1";
+ version = "5.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.8.1.tgz";
- sha1 = "29452b9eae4a1b497f12e580c1cf6fa9682e5c68";
+ url = "https://registry.npmjs.org/parse-torrent/-/parse-torrent-5.8.2.tgz";
+ sha1 = "09f02ca43ec2d885d1460aacb0fb50c79b3c49f9";
};
};
"pump-0.3.5" = {
@@ -5071,13 +5071,13 @@ let
sha1 = "a862e018e3fb1ea2ec3fce5d55605cf57f247371";
};
};
- "ip-1.1.4" = {
+ "ip-1.1.5" = {
name = "ip";
packageName = "ip";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ip/-/ip-1.1.4.tgz";
- sha1 = "de8247ffef940451832550fba284945e6e039bfb";
+ url = "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz";
+ sha1 = "bdded70114290828c0a039e72ef25f5aaec4354a";
};
};
"magnet-uri-4.2.3" = {
@@ -5314,13 +5314,13 @@ let
sha1 = "89a73ddc5e75c9ef8ab6320c0a1600d6a41179b9";
};
};
- "simple-peer-6.4.3" = {
+ "simple-peer-6.4.4" = {
name = "simple-peer";
packageName = "simple-peer";
- version = "6.4.3";
+ version = "6.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/simple-peer/-/simple-peer-6.4.3.tgz";
- sha1 = "f487b381e0fe0874bff1020026001bbf4579c20a";
+ url = "https://registry.npmjs.org/simple-peer/-/simple-peer-6.4.4.tgz";
+ sha1 = "4e421f485ac7b13b08077a4476934d52c5ba3bb3";
};
};
"simple-websocket-4.3.1" = {
@@ -5341,22 +5341,22 @@ let
sha1 = "420b3a9ee1c46854919b4a2aeac65c43fa50597b";
};
};
- "ws-1.1.2" = {
+ "ws-1.1.4" = {
name = "ws";
packageName = "ws";
- version = "1.1.2";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz";
- sha1 = "8a244fa052401e08c9886cf44a85189e1fd4067f";
+ url = "https://registry.npmjs.org/ws/-/ws-1.1.4.tgz";
+ sha1 = "57f40d036832e5f5055662a397c4de76ed66bf61";
};
};
- "ipaddr.js-1.2.0" = {
+ "ipaddr.js-1.3.0" = {
name = "ipaddr.js";
packageName = "ipaddr.js";
- version = "1.2.0";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.2.0.tgz";
- sha1 = "8aba49c9192799585bdd643e0ccb50e8ae777ba4";
+ url = "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.3.0.tgz";
+ sha1 = "1e03a52fdad83a8bbb2b25cbf4998b4cffcd3dec";
};
};
"get-browser-rtc-1.0.2" = {
@@ -5368,13 +5368,13 @@ let
sha1 = "bbcd40c8451a7ed4ef5c373b8169a409dd1d11d9";
};
};
- "ws-2.1.0" = {
+ "ws-2.2.2" = {
name = "ws";
packageName = "ws";
- version = "2.1.0";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/ws/-/ws-2.1.0.tgz";
- sha1 = "b24eaed9609f8632dd51e3f7698619a90fddcc92";
+ url = "https://registry.npmjs.org/ws/-/ws-2.2.2.tgz";
+ sha1 = "aa26daf39c52b20ed716e3447f8641494a726b01";
};
};
"ultron-1.1.0" = {
@@ -5530,6 +5530,15 @@ let
sha1 = "9b361dee95a931640e6d504e05609a8fc3ac45d2";
};
};
+ "node-uuid-1.4.8" = {
+ name = "node-uuid";
+ packageName = "node-uuid";
+ version = "1.4.8";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz";
+ sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
+ };
+ };
"cookie-jar-0.2.0" = {
name = "cookie-jar";
packageName = "cookie-jar";
@@ -5953,13 +5962,13 @@ let
sha1 = "2ac4c46ea30516c8c4cbdb5e3ac7418e592de20c";
};
};
- "init-package-json-1.9.4" = {
+ "init-package-json-1.9.5" = {
name = "init-package-json";
packageName = "init-package-json";
- version = "1.9.4";
+ version = "1.9.5";
src = fetchurl {
- url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.4.tgz";
- sha1 = "b4053d0b40f0cf842a41966937cb3dc0f534e856";
+ url = "https://registry.npmjs.org/init-package-json/-/init-package-json-1.9.5.tgz";
+ sha1 = "7d4d64a264dc76c1f1f557cbbe824978bf10cd09";
};
};
"nopt-3.0.6" = {
@@ -5971,13 +5980,13 @@ let
sha1 = "c6465dbf08abcd4db359317f79ac68a646b28ff9";
};
};
- "npm-2.15.11" = {
+ "npm-2.15.12" = {
name = "npm";
packageName = "npm";
- version = "2.15.11";
+ version = "2.15.12";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-2.15.11.tgz";
- sha1 = "350588fba9cd8d384cf9a6e8dc0fef0f94992b7c";
+ url = "https://registry.npmjs.org/npm/-/npm-2.15.12.tgz";
+ sha1 = "df7c3ed5a277c3f9d4b5d819b05311d10a200ae6";
};
};
"opener-1.4.1" = {
@@ -6079,6 +6088,15 @@ let
sha1 = "c18d24ef5091174a497f318cd24b026a25cddab4";
};
};
+ "acorn-1.2.2" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "1.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
+ sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
+ };
+ };
"foreach-2.0.5" = {
name = "foreach";
packageName = "foreach";
@@ -6124,22 +6142,31 @@ let
sha1 = "498905a593bf47cc2d9e7f738372bbf7696c7f26";
};
};
- "shelljs-0.7.6" = {
+ "shelljs-0.7.7" = {
name = "shelljs";
packageName = "shelljs";
- version = "0.7.6";
+ version = "0.7.7";
src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.6.tgz";
- sha1 = "379cccfb56b91c8601e4793356eb5382924de9ad";
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.7.tgz";
+ sha1 = "b2f5c77ef97148f4b4f6e22682e10bba8667cff1";
};
};
- "interpret-1.0.1" = {
+ "q-1.4.1" = {
+ name = "q";
+ packageName = "q";
+ version = "1.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/q/-/q-1.4.1.tgz";
+ sha1 = "55705bcd93c5f3673530c2c2cbc0c2b3addc286e";
+ };
+ };
+ "interpret-1.0.2" = {
name = "interpret";
packageName = "interpret";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/interpret/-/interpret-1.0.1.tgz";
- sha1 = "d579fb7f693b858004947af39fa0db49f795602c";
+ url = "https://registry.npmjs.org/interpret/-/interpret-1.0.2.tgz";
+ sha1 = "f4f623f0bb7122f15f5717c8e254b8161b5c5b2d";
};
};
"rechoir-0.6.2" = {
@@ -6178,13 +6205,13 @@ let
sha1 = "cceb121ecc9d09c52d7ad0c3350ea93ddd402bc3";
};
};
- "express-4.14.1" = {
+ "express-4.15.2" = {
name = "express";
packageName = "express";
- version = "4.14.1";
+ version = "4.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-4.14.1.tgz";
- sha1 = "646c237f766f148c2120aff073817b9e4d7e0d33";
+ url = "https://registry.npmjs.org/express/-/express-4.15.2.tgz";
+ sha1 = "af107fc148504457f2dca9a6f2571d7129b97b35";
};
};
"accepts-1.3.3" = {
@@ -6205,13 +6232,13 @@ let
sha1 = "d5b680a165b6201739acb611542aabc2d8ceb070";
};
};
- "compressible-2.0.9" = {
+ "compressible-2.0.10" = {
name = "compressible";
packageName = "compressible";
- version = "2.0.9";
+ version = "2.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/compressible/-/compressible-2.0.9.tgz";
- sha1 = "6daab4e2b599c2770dd9e21e7a891b1c5a755425";
+ url = "https://registry.npmjs.org/compressible/-/compressible-2.0.10.tgz";
+ sha1 = "feda1c7f7617912732b29bf8cf26252a20b9eecd";
};
};
"debug-2.2.0" = {
@@ -6232,13 +6259,13 @@ let
sha1 = "928f5d0f470d49342651ea6794b0857c100693f7";
};
};
- "vary-1.1.0" = {
+ "vary-1.1.1" = {
name = "vary";
packageName = "vary";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vary/-/vary-1.1.0.tgz";
- sha1 = "e1e5affbbd16ae768dd2674394b9ad3022653140";
+ url = "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz";
+ sha1 = "67535ebb694c1d52257457984665323f587e8d37";
};
};
"negotiator-0.6.1" = {
@@ -6304,6 +6331,15 @@ let
sha1 = "e303a882b342cc3ee8ca513a79999734dab3ae2c";
};
};
+ "debug-2.6.1" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz";
+ sha1 = "79855090ba2c4e3115cc7d8769491d58f0491351";
+ };
+ };
"depd-1.1.0" = {
name = "depd";
packageName = "depd";
@@ -6331,31 +6367,31 @@ let
sha1 = "0258eae4d3d0c0974de1c169188ef0051d1d1988";
};
};
- "etag-1.7.0" = {
+ "etag-1.8.0" = {
name = "etag";
packageName = "etag";
- version = "1.7.0";
+ version = "1.8.0";
src = fetchurl {
- url = "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz";
- sha1 = "03d30b5f67dd6e632d2945d30d6652731a34d5d8";
+ url = "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz";
+ sha1 = "6f631aef336d6c46362b51764044ce216be3c051";
};
};
- "finalhandler-0.5.1" = {
+ "finalhandler-1.0.1" = {
name = "finalhandler";
packageName = "finalhandler";
- version = "0.5.1";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.1.tgz";
- sha1 = "2c400d8d4530935bc232549c5fa385ec07de6fcd";
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-1.0.1.tgz";
+ sha1 = "bcd15d1689c0e5ed729b6f7f541a6df984117db8";
};
};
- "fresh-0.3.0" = {
+ "fresh-0.5.0" = {
name = "fresh";
packageName = "fresh";
- version = "0.3.0";
+ version = "0.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz";
- sha1 = "651f838e22424e7566de161d8358caa199f83d4f";
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.5.0.tgz";
+ sha1 = "f474ca5e6a9246d6fd8e0953cfa9b9c805afa78e";
};
};
"merge-descriptors-1.0.1" = {
@@ -6403,40 +6439,49 @@ let
sha1 = "df604178005f522f15eb4490e7247a1bfaa67f8c";
};
};
- "proxy-addr-1.1.3" = {
+ "proxy-addr-1.1.4" = {
name = "proxy-addr";
packageName = "proxy-addr";
- version = "1.1.3";
+ version = "1.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.3.tgz";
- sha1 = "dc97502f5722e888467b3fa2297a7b1ff47df074";
+ url = "https://registry.npmjs.org/proxy-addr/-/proxy-addr-1.1.4.tgz";
+ sha1 = "27e545f6960a44a627d9b44467e35c1b6b4ce2f3";
};
};
- "qs-6.2.0" = {
+ "qs-6.4.0" = {
name = "qs";
packageName = "qs";
- version = "6.2.0";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.2.0.tgz";
- sha1 = "3b7848c03c2dece69a9522b0fae8c4126d745f3b";
+ url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
+ sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
};
};
- "send-0.14.2" = {
+ "send-0.15.1" = {
name = "send";
packageName = "send";
- version = "0.14.2";
+ version = "0.15.1";
src = fetchurl {
- url = "https://registry.npmjs.org/send/-/send-0.14.2.tgz";
- sha1 = "39b0438b3f510be5dc6f667a11f71689368cdeef";
+ url = "https://registry.npmjs.org/send/-/send-0.15.1.tgz";
+ sha1 = "8a02354c26e6f5cca700065f5f0cdeba90ec7b5f";
};
};
- "serve-static-1.11.2" = {
+ "serve-static-1.12.1" = {
name = "serve-static";
packageName = "serve-static";
- version = "1.11.2";
+ version = "1.12.1";
src = fetchurl {
- url = "https://registry.npmjs.org/serve-static/-/serve-static-1.11.2.tgz";
- sha1 = "2cf9889bd4435a320cc36895c9aa57bd662e6ac7";
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.12.1.tgz";
+ sha1 = "7443a965e3ced647aceb5639fa06bf4d1bbe0039";
+ };
+ };
+ "setprototypeof-1.0.3" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
+ sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
};
};
"type-is-1.6.14" = {
@@ -6493,22 +6538,13 @@ let
sha1 = "978857442c44749e4206613e37946205826abd80";
};
};
- "http-errors-1.5.1" = {
+ "http-errors-1.6.1" = {
name = "http-errors";
packageName = "http-errors";
- version = "1.5.1";
+ version = "1.6.1";
src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz";
- sha1 = "788c0d2c1de2c81b9e6e8c01843b6b97eb920750";
- };
- };
- "setprototypeof-1.0.2" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz";
- sha1 = "81a552141ec104b88e89ce383103ad5c66564d08";
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz";
+ sha1 = "5f8b8ed98aca545656bf572997387f904a722257";
};
};
"media-typer-0.3.0" = {
@@ -6538,13 +6574,13 @@ let
sha1 = "88fcfc1f73c0c8bbd5b7c776b6d3f3501eed073d";
};
};
- "npm-package-arg-4.2.0" = {
+ "npm-package-arg-4.2.1" = {
name = "npm-package-arg";
packageName = "npm-package-arg";
- version = "4.2.0";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.2.0.tgz";
- sha1 = "809bc61cabf54bd5ff94f6165c89ba8ee88c115c";
+ url = "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-4.2.1.tgz";
+ sha1 = "593303fdea85f7c422775f17f9eb7670f680e3ec";
};
};
"promzard-0.3.0" = {
@@ -6556,22 +6592,22 @@ let
sha1 = "26a5d6ee8c7dee4cb12208305acfb93ba382a9ee";
};
};
- "read-package-json-2.0.4" = {
+ "read-package-json-2.0.5" = {
name = "read-package-json";
packageName = "read-package-json";
- version = "2.0.4";
+ version = "2.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.4.tgz";
- sha1 = "61ed1b2256ea438d8008895090be84b8e799c853";
+ url = "https://registry.npmjs.org/read-package-json/-/read-package-json-2.0.5.tgz";
+ sha1 = "f93a64e641529df68a08c64de46389e8a3f88845";
};
};
- "validate-npm-package-name-2.2.2" = {
+ "validate-npm-package-name-3.0.0" = {
name = "validate-npm-package-name";
packageName = "validate-npm-package-name";
- version = "2.2.2";
+ version = "3.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-2.2.2.tgz";
- sha1 = "f65695b22f7324442019a3c7fa39a6e7fd299085";
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-3.0.0.tgz";
+ sha1 = "5fa912d81eb7d0c74afc140de7317f0ca7df437e";
};
};
"json-parse-helpfulerror-1.0.3" = {
@@ -6592,13 +6628,13 @@ let
sha1 = "dadd9ef01924bc728b03f2f7979bdbd62f7a2aaa";
};
};
- "builtins-0.0.7" = {
+ "builtins-1.0.3" = {
name = "builtins";
packageName = "builtins";
- version = "0.0.7";
+ version = "1.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/builtins/-/builtins-0.0.7.tgz";
- sha1 = "355219cd6cf18dbe7c01cc7fd2dce765cfdc549a";
+ url = "https://registry.npmjs.org/builtins/-/builtins-1.0.3.tgz";
+ sha1 = "cb94faeb61c8696451db36534e1422f94f0aee88";
};
};
"abbrev-1.1.0" = {
@@ -6736,31 +6772,31 @@ let
sha1 = "60c7f87bd62bcc6a894fa8ccd6afb7823a24f742";
};
};
- "fs-vacuum-1.2.9" = {
+ "fs-vacuum-1.2.10" = {
name = "fs-vacuum";
packageName = "fs-vacuum";
- version = "1.2.9";
+ version = "1.2.10";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-vacuum/-/fs-vacuum-1.2.9.tgz";
- sha1 = "4f90193ab8ea02890995bcd4e804659a5d366b2d";
+ url = "https://registry.npmjs.org/fs-vacuum/-/fs-vacuum-1.2.10.tgz";
+ sha1 = "b7629bec07a4031a2548fdf99f5ecf1cc8b31e36";
};
};
- "fs-write-stream-atomic-1.0.8" = {
+ "fs-write-stream-atomic-1.0.10" = {
name = "fs-write-stream-atomic";
packageName = "fs-write-stream-atomic";
- version = "1.0.8";
- src = fetchurl {
- url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.8.tgz";
- sha1 = "e49aaddf288f87d46ff9e882f216a13abc40778b";
- };
- };
- "fstream-1.0.10" = {
- name = "fstream";
- packageName = "fstream";
version = "1.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/fstream/-/fstream-1.0.10.tgz";
- sha1 = "604e8a92fe26ffd9f6fae30399d4984e1ab22822";
+ url = "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz";
+ sha1 = "b47df53493ef911df75731e70a9ded0189db40c9";
+ };
+ };
+ "fstream-1.0.11" = {
+ name = "fstream";
+ packageName = "fstream";
+ version = "1.0.11";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fstream/-/fstream-1.0.11.tgz";
+ sha1 = "5c1fb1f117477114f0632a0eb4b71b3cb0fd3171";
};
};
"fstream-npm-1.1.1" = {
@@ -6826,13 +6862,13 @@ let
sha1 = "1d17679c069cda5d040991a09dbc2c0db377e55e";
};
};
- "node-gyp-3.4.0" = {
+ "node-gyp-3.6.0" = {
name = "node-gyp";
packageName = "node-gyp";
- version = "3.4.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.4.0.tgz";
- sha1 = "dda558393b3ecbbe24c9e6b8703c71194c63fa36";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.0.tgz";
+ sha1 = "7474f63a3a0501161dda0b6341f022f14c423fa6";
};
};
"normalize-git-url-3.0.2" = {
@@ -7015,6 +7051,15 @@ let
sha1 = "f29cebf01df517912bb58ff9c4e50fde8e33320d";
};
};
+ "validate-npm-package-name-2.2.2" = {
+ name = "validate-npm-package-name";
+ packageName = "validate-npm-package-name";
+ version = "2.2.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-2.2.2.tgz";
+ sha1 = "f65695b22f7324442019a3c7fa39a6e7fd299085";
+ };
+ };
"write-file-atomic-1.1.4" = {
name = "write-file-atomic";
packageName = "write-file-atomic";
@@ -7096,76 +7141,31 @@ let
sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
};
};
- "yallist-2.0.0" = {
+ "yallist-2.1.2" = {
name = "yallist";
packageName = "yallist";
- version = "2.0.0";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz";
- sha1 = "306c543835f09ee1a4cb23b7bce9ab341c91cdd4";
+ url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
+ sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
};
};
- "path-array-1.0.1" = {
- name = "path-array";
- packageName = "path-array";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/path-array/-/path-array-1.0.1.tgz";
- sha1 = "7e2f0f35f07a2015122b868b7eac0eb2c4fec271";
- };
- };
- "array-index-1.0.0" = {
- name = "array-index";
- packageName = "array-index";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/array-index/-/array-index-1.0.0.tgz";
- sha1 = "ec56a749ee103e4e08c790b9c353df16055b97f9";
- };
- };
- "es6-symbol-3.1.0" = {
- name = "es6-symbol";
- packageName = "es6-symbol";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.0.tgz";
- sha1 = "94481c655e7a7cad82eba832d97d5433496d7ffa";
- };
- };
- "d-0.1.1" = {
- name = "d";
- packageName = "d";
- version = "0.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/d/-/d-0.1.1.tgz";
- sha1 = "da184c535d18d8ee7ba2aa229b914009fae11309";
- };
- };
- "es5-ext-0.10.12" = {
- name = "es5-ext";
- packageName = "es5-ext";
- version = "0.10.12";
- src = fetchurl {
- url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.12.tgz";
- sha1 = "aa84641d4db76b62abba5e45fd805ecbab140047";
- };
- };
- "es6-iterator-2.0.0" = {
- name = "es6-iterator";
- packageName = "es6-iterator";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.0.tgz";
- sha1 = "bd968567d61635e33c0b80727613c9cb4b096bac";
- };
- };
- "request-2.79.0" = {
+ "request-2.81.0" = {
name = "request";
packageName = "request";
- version = "2.79.0";
+ version = "2.81.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz";
- sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de";
+ url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
+ sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
+ };
+ };
+ "caseless-0.12.0" = {
+ name = "caseless";
+ packageName = "caseless";
+ version = "0.12.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
"form-data-2.1.2" = {
@@ -7177,13 +7177,31 @@ let
sha1 = "89c3534008b97eada4cbb157d58f6f5df025eae4";
};
};
- "qs-6.3.1" = {
- name = "qs";
- packageName = "qs";
- version = "6.3.1";
+ "har-validator-4.2.1" = {
+ name = "har-validator";
+ packageName = "har-validator";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.3.1.tgz";
- sha1 = "918c0b3bcd36679772baf135b1acb4c1651ed79d";
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
+ sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
+ };
+ };
+ "performance-now-0.2.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
+ sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
+ };
+ };
+ "tunnel-agent-0.6.0" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
};
};
"asynckit-0.4.0" = {
@@ -7195,6 +7213,42 @@ let
sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
+ "ajv-4.11.5" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "4.11.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.5.tgz";
+ sha1 = "b6ee74657b993a01dce44b7944d56f485828d5bd";
+ };
+ };
+ "har-schema-1.0.5" = {
+ name = "har-schema";
+ packageName = "har-schema";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
+ sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
+ };
+ };
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
+ };
+ };
+ "json-stable-stringify-1.0.1" = {
+ name = "json-stable-stringify";
+ packageName = "json-stable-stringify";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
+ sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ };
+ };
"are-we-there-yet-1.1.2" = {
name = "are-we-there-yet";
packageName = "are-we-there-yet";
@@ -7285,6 +7339,15 @@ let
sha1 = "a7c216d267545169637b3b6edc6ca9119e2ff93f";
};
};
+ "builtins-0.0.7" = {
+ name = "builtins";
+ packageName = "builtins";
+ version = "0.0.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/builtins/-/builtins-0.0.7.tgz";
+ sha1 = "355219cd6cf18dbe7c01cc7fd2dce765cfdc549a";
+ };
+ };
"bl-0.9.5" = {
name = "bl";
packageName = "bl";
@@ -7771,13 +7834,13 @@ let
sha1 = "35c3e177f2078ef789ee4bfafa4373074eaef4fa";
};
};
- "rc-1.1.7" = {
+ "rc-1.2.0" = {
name = "rc";
packageName = "rc";
- version = "1.1.7";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/rc/-/rc-1.1.7.tgz";
- sha1 = "c5ea564bb07aff9fd3a5b32e906c1d3a65940fea";
+ url = "https://registry.npmjs.org/rc/-/rc-1.2.0.tgz";
+ sha1 = "c7de973b7b46297c041366b2fd3d2363b1697c66";
};
};
"strip-json-comments-2.0.1" = {
@@ -7789,13 +7852,13 @@ let
sha1 = "3c531942e908c2697c0ec344858c286c7ca0a60a";
};
};
- "clone-2.1.0" = {
+ "clone-2.1.1" = {
name = "clone";
packageName = "clone";
- version = "2.1.0";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/clone/-/clone-2.1.0.tgz";
- sha1 = "9c715bfbd39aa197c8ee0f8e65c3912ba34f8cd6";
+ url = "https://registry.npmjs.org/clone/-/clone-2.1.1.tgz";
+ sha1 = "d217d1e961118e3ac9a4b8bba3285553bf647cdb";
};
};
"parserlib-1.1.1" = {
@@ -8459,13 +8522,13 @@ let
sha1 = "45221ee429f7ee1e5035be3f51533f1cdfd29884";
};
};
- "cors-2.8.1" = {
+ "cors-2.8.3" = {
name = "cors";
packageName = "cors";
- version = "2.8.1";
+ version = "2.8.3";
src = fetchurl {
- url = "https://registry.npmjs.org/cors/-/cors-2.8.1.tgz";
- sha1 = "6181aa56abb45a2825be3304703747ae4e9d2383";
+ url = "https://registry.npmjs.org/cors/-/cors-2.8.3.tgz";
+ sha1 = "4cf78e1d23329a7496b2fc2225b77ca5bb5eb802";
};
};
"docker-parse-image-3.0.1" = {
@@ -8477,13 +8540,13 @@ let
sha1 = "33dc69291eac3414f84871f2d59d77b6f6948be4";
};
};
- "end-of-stream-1.1.0" = {
+ "end-of-stream-1.4.0" = {
name = "end-of-stream";
packageName = "end-of-stream";
- version = "1.1.0";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz";
- sha1 = "e9353258baa9108965efc41cb0ef8ade2f3cfb07";
+ url = "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.0.tgz";
+ sha1 = "7a90d833efda6cfa6eac0f4949dbb0fad3a63206";
};
};
"from2-1.3.0" = {
@@ -9152,13 +9215,13 @@ let
sha1 = "027620bee567a88c32561574e7fd0801d33118e4";
};
};
- "doctrine-1.5.0" = {
+ "doctrine-2.0.0" = {
name = "doctrine";
packageName = "doctrine";
- version = "1.5.0";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/doctrine/-/doctrine-1.5.0.tgz";
- sha1 = "379dce730f6166f76cefa4e6707a159b02c5a6fa";
+ url = "https://registry.npmjs.org/doctrine/-/doctrine-2.0.0.tgz";
+ sha1 = "c73d8d2909d22291e1a007a395804da8b665fe63";
};
};
"escope-3.6.0" = {
@@ -9179,6 +9242,15 @@ let
sha1 = "41656fa5628e042878025ef467e78f125cb86e1d";
};
};
+ "esquery-1.0.0" = {
+ name = "esquery";
+ packageName = "esquery";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/esquery/-/esquery-1.0.0.tgz";
+ sha1 = "cfba8b57d7fba93f17298a8a006a04cda13d80fa";
+ };
+ };
"estraverse-4.2.0" = {
name = "estraverse";
packageName = "estraverse";
@@ -9206,22 +9278,22 @@ let
sha1 = "c392990c3e684783d838b8c84a45d8a048458361";
};
};
- "globals-9.16.0" = {
+ "globals-9.17.0" = {
name = "globals";
packageName = "globals";
- version = "9.16.0";
+ version = "9.17.0";
src = fetchurl {
- url = "https://registry.npmjs.org/globals/-/globals-9.16.0.tgz";
- sha1 = "63e903658171ec2d9f51b1d31de5e2b8dc01fb80";
+ url = "https://registry.npmjs.org/globals/-/globals-9.17.0.tgz";
+ sha1 = "0c0ca696d9b9bb694d2e5470bd37777caad50286";
};
};
- "ignore-3.2.4" = {
+ "ignore-3.2.6" = {
name = "ignore";
packageName = "ignore";
- version = "3.2.4";
+ version = "3.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/ignore/-/ignore-3.2.4.tgz";
- sha1 = "4055e03596729a8fabe45a43c100ad5ed815c4e8";
+ url = "https://registry.npmjs.org/ignore/-/ignore-3.2.6.tgz";
+ sha1 = "26e8da0644be0bb4cb39516f6c79f0e0f4ffe48c";
};
};
"inquirer-0.12.0" = {
@@ -9242,22 +9314,13 @@ let
sha1 = "8df57c61ea2e3c501408d100fb013cf8d6e0cc62";
};
};
- "js-yaml-3.8.1" = {
+ "js-yaml-3.8.2" = {
name = "js-yaml";
packageName = "js-yaml";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.1.tgz";
- sha1 = "782ba50200be7b9e5a8537001b7804db3ad02628";
- };
- };
- "json-stable-stringify-1.0.1" = {
- name = "json-stable-stringify";
- packageName = "json-stable-stringify";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
- sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.2.tgz";
+ sha1 = "02d3e2c0f6beab20248d412c352203827d786721";
};
};
"levn-0.3.0" = {
@@ -9332,22 +9395,22 @@ let
sha1 = "08e9f132484a2c45a30907e9dc4d5567b7f114d7";
};
};
- "es6-map-0.1.4" = {
+ "es6-map-0.1.5" = {
name = "es6-map";
packageName = "es6-map";
- version = "0.1.4";
+ version = "0.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.4.tgz";
- sha1 = "a34b147be224773a4d7da8072794cefa3632b897";
+ url = "https://registry.npmjs.org/es6-map/-/es6-map-0.1.5.tgz";
+ sha1 = "9136e0503dcc06a301690f0bb14ff4e364e949f0";
};
};
- "es6-weak-map-2.0.1" = {
+ "es6-weak-map-2.0.2" = {
name = "es6-weak-map";
packageName = "es6-weak-map";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.1.tgz";
- sha1 = "0d2bbd8827eb5fb4ba8f97fbfea50d43db21ea81";
+ url = "https://registry.npmjs.org/es6-weak-map/-/es6-weak-map-2.0.2.tgz";
+ sha1 = "5e3ab32251ffd1538a1f8e5ffa1357772f92d96f";
};
};
"esrecurse-4.1.0" = {
@@ -9359,22 +9422,58 @@ let
sha1 = "4713b6536adf7f2ac4f327d559e7756bff648220";
};
};
- "es6-set-0.1.4" = {
- name = "es6-set";
- packageName = "es6-set";
- version = "0.1.4";
+ "d-1.0.0" = {
+ name = "d";
+ packageName = "d";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.4.tgz";
- sha1 = "9516b6761c2964b92ff479456233a247dc707ce8";
+ url = "https://registry.npmjs.org/d/-/d-1.0.0.tgz";
+ sha1 = "754bb5bfe55451da69a58b94d45f4c5b0462d58f";
};
};
- "event-emitter-0.3.4" = {
+ "es5-ext-0.10.15" = {
+ name = "es5-ext";
+ packageName = "es5-ext";
+ version = "0.10.15";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es5-ext/-/es5-ext-0.10.15.tgz";
+ sha1 = "c330a5934c1ee21284a7c081a86e5fd937c91ea6";
+ };
+ };
+ "es6-iterator-2.0.1" = {
+ name = "es6-iterator";
+ packageName = "es6-iterator";
+ version = "2.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-iterator/-/es6-iterator-2.0.1.tgz";
+ sha1 = "8e319c9f0453bf575d374940a655920e59ca5512";
+ };
+ };
+ "es6-set-0.1.5" = {
+ name = "es6-set";
+ packageName = "es6-set";
+ version = "0.1.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-set/-/es6-set-0.1.5.tgz";
+ sha1 = "d2b3ec5d4d800ced818db538d28974db0a73ccb1";
+ };
+ };
+ "es6-symbol-3.1.1" = {
+ name = "es6-symbol";
+ packageName = "es6-symbol";
+ version = "3.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/es6-symbol/-/es6-symbol-3.1.1.tgz";
+ sha1 = "bf00ef4fdab6ba1b46ecb7b629b4c7ed5715cc77";
+ };
+ };
+ "event-emitter-0.3.5" = {
name = "event-emitter";
packageName = "event-emitter";
- version = "0.3.4";
+ version = "0.3.5";
src = fetchurl {
- url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.4.tgz";
- sha1 = "8d63ddfb4cfe1fae3b32ca265c4c720222080bb5";
+ url = "https://registry.npmjs.org/event-emitter/-/event-emitter-0.3.5.tgz";
+ sha1 = "df8c69eef1647923c7157b9ce83840610b02cc39";
};
};
"estraverse-4.1.1" = {
@@ -9404,6 +9503,15 @@ let
sha1 = "afdf9488fb1ecefc8348f6fb22f464e32a58b36b";
};
};
+ "acorn-3.3.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
+ sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
+ };
+ };
"flat-cache-1.2.2" = {
name = "flat-cache";
packageName = "flat-cache";
@@ -9620,15 +9728,6 @@ let
sha1 = "afab96262910a7f33c19a5775825c69f34e350ca";
};
};
- "ajv-4.11.3" = {
- name = "ajv";
- packageName = "ajv";
- version = "4.11.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-4.11.3.tgz";
- sha1 = "ce30bdb90d1254f762c75af915fb3a63e7183d22";
- };
- };
"ajv-keywords-1.5.1" = {
name = "ajv-keywords";
packageName = "ajv-keywords";
@@ -9656,15 +9755,6 @@ let
sha1 = "635c5436cc72a6e0c387ceca278d4e2eec52687e";
};
};
- "co-4.6.0" = {
- name = "co";
- packageName = "co";
- version = "4.6.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
- sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
- };
- };
"is-fullwidth-code-point-2.0.0" = {
name = "is-fullwidth-code-point";
packageName = "is-fullwidth-code-point";
@@ -9962,13 +10052,13 @@ let
sha1 = "ac468177c4943405a092fc8f29760c6ffc6206c0";
};
};
- "normalize-path-2.0.1" = {
+ "normalize-path-2.1.1" = {
name = "normalize-path";
packageName = "normalize-path";
- version = "2.0.1";
+ version = "2.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.0.1.tgz";
- sha1 = "47886ac1662760d4261b7d979d241709d3ce3f7a";
+ url = "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz";
+ sha1 = "1ab28b556e198363a8c1a6f7e6fa20137fe6aed9";
};
};
"object.omit-2.0.1" = {
@@ -10079,6 +10169,15 @@ let
sha1 = "3334dc79774368e92f016e6fbc0a88f5cd6e6bc4";
};
};
+ "remove-trailing-separator-1.0.1" = {
+ name = "remove-trailing-separator";
+ packageName = "remove-trailing-separator";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.0.1.tgz";
+ sha1 = "615ebb96af559552d4bf4057c8436d486ab63cc4";
+ };
+ };
"for-own-0.1.5" = {
name = "for-own";
packageName = "for-own";
@@ -10097,13 +10196,13 @@ let
sha1 = "62b110e289a471418e3ec36a617d472e301dfc89";
};
};
- "for-in-1.0.1" = {
+ "for-in-1.0.2" = {
name = "for-in";
packageName = "for-in";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/for-in/-/for-in-1.0.1.tgz";
- sha1 = "d6c3e3798ceaaa301047b109dedf1b1ae37a0efa";
+ url = "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz";
+ sha1 = "81068d295a8142ec0ac726c6e2200c30fb6d5e80";
};
};
"glob-base-0.3.0" = {
@@ -10160,13 +10259,22 @@ let
sha1 = "4b2b1b27eb808a9f8dcc481a58e5e56f599f3f61";
};
};
- "node-pre-gyp-0.6.33" = {
+ "node-pre-gyp-0.6.34" = {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
- version = "0.6.33";
+ version = "0.6.34";
src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz";
- sha1 = "640ac55198f6a925972e0c16c4ac26a034d5ecc9";
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz";
+ sha1 = "94ad1c798a11d7fc67381b50d47f8cc18d9799f7";
+ };
+ };
+ "nopt-4.0.1" = {
+ name = "nopt";
+ packageName = "nopt";
+ version = "4.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
+ sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
};
};
"npmlog-4.0.2" = {
@@ -10178,13 +10286,13 @@ let
sha1 = "d03950e0e78ce1527ba26d2a7592e9348ac3e75f";
};
};
- "tar-pack-3.3.0" = {
+ "tar-pack-3.4.0" = {
name = "tar-pack";
packageName = "tar-pack";
- version = "3.3.0";
+ version = "3.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.3.0.tgz";
- sha1 = "30931816418f55afc4d21775afdd6720cee45dae";
+ url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.4.0.tgz";
+ sha1 = "23be2d7f671a8339376cbdb0b8fe3fdebf317984";
};
};
"console-control-strings-1.1.0" = {
@@ -10313,6 +10421,15 @@ let
sha1 = "f1e8f461e4064ba39e82af3cdc2a8c893d076759";
};
};
+ "lodash.groupby-4.6.0" = {
+ name = "lodash.groupby";
+ packageName = "lodash.groupby";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz";
+ sha1 = "0b08a1dcf68397c397855c3239783832df7403d1";
+ };
+ };
"minilog-2.0.8" = {
name = "minilog";
packageName = "minilog";
@@ -10322,6 +10439,15 @@ let
sha1 = "21ffdc429be2b50cb361df990a40a7731288e935";
};
};
+ "simple-git-1.69.0" = {
+ name = "simple-git";
+ packageName = "simple-git";
+ version = "1.69.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/simple-git/-/simple-git-1.69.0.tgz";
+ sha1 = "e86ead16abfc273dca9ae2bd51e5eb3c0122c177";
+ };
+ };
"tabtab-git+https://github.com/mixu/node-tabtab.git" = {
name = "tabtab";
packageName = "tabtab";
@@ -10449,13 +10575,13 @@ let
sha1 = "5d23cb35561dd85dc67fb8482309b47d53cce9a7";
};
};
- "uglify-js-2.7.5" = {
+ "uglify-js-2.8.20" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "2.7.5";
+ version = "2.8.20";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz";
- sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.20.tgz";
+ sha1 = "be87100fbc18de3876ed606e9d24b4568311cecf";
};
};
"void-elements-2.0.1" = {
@@ -10494,6 +10620,15 @@ let
sha1 = "eba4f5da9c0dc999de68032d8b4f76173652036b";
};
};
+ "acorn-2.7.0" = {
+ name = "acorn";
+ packageName = "acorn";
+ version = "2.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
+ sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
+ };
+ };
"is-promise-2.1.0" = {
name = "is-promise";
packageName = "is-promise";
@@ -10665,13 +10800,13 @@ let
sha1 = "dcec03f55dca9b7aa3e5b04f21817eb56e63588a";
};
};
- "v8flags-2.0.11" = {
+ "v8flags-2.0.12" = {
name = "v8flags";
packageName = "v8flags";
- version = "2.0.11";
+ version = "2.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/v8flags/-/v8flags-2.0.11.tgz";
- sha1 = "bca8f30f0d6d60612cc2c00641e6962d42ae6881";
+ url = "https://registry.npmjs.org/v8flags/-/v8flags-2.0.12.tgz";
+ sha1 = "73235d9f7176f8e8833fb286795445f7938d84e5";
};
};
"vinyl-fs-0.3.14" = {
@@ -11358,13 +11493,13 @@ let
sha1 = "1fddad938aae1263ce138680be1b3f591c0ab41c";
};
};
- "eventemitter3-2.0.2" = {
+ "eventemitter3-2.0.3" = {
name = "eventemitter3";
packageName = "eventemitter3";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.2.tgz";
- sha1 = "20ce4891909ce9f35b088c94fab40e2c96f473ac";
+ url = "https://registry.npmjs.org/eventemitter3/-/eventemitter3-2.0.3.tgz";
+ sha1 = "b5e1079b59fb5e1ba2771c0a993be060a58c99ba";
};
};
"csslint-0.10.0" = {
@@ -11592,22 +11727,22 @@ let
sha1 = "22817534f24bfa4950c34d532d48ecbc621b8c14";
};
};
- "bluebird-3.4.7" = {
+ "bluebird-3.5.0" = {
name = "bluebird";
packageName = "bluebird";
- version = "3.4.7";
+ version = "3.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz";
- sha1 = "f72d760be09b7f76d08ed8fae98b289a8d05fab3";
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.5.0.tgz";
+ sha1 = "791420d7f551eea2897453a8a77653f96606d67c";
};
};
- "body-parser-1.16.1" = {
+ "body-parser-1.17.1" = {
name = "body-parser";
packageName = "body-parser";
- version = "1.16.1";
+ version = "1.17.1";
src = fetchurl {
- url = "https://registry.npmjs.org/body-parser/-/body-parser-1.16.1.tgz";
- sha1 = "51540d045adfa7a0c6995a014bb6b1ed9b802329";
+ url = "https://registry.npmjs.org/body-parser/-/body-parser-1.17.1.tgz";
+ sha1 = "75b3bc98ddd6e7e0d8ffe750dfaca5c66993fa47";
};
};
"combine-lists-1.0.1" = {
@@ -11718,13 +11853,13 @@ let
sha1 = "8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7";
};
};
- "useragent-2.1.12" = {
+ "useragent-2.1.13" = {
name = "useragent";
packageName = "useragent";
- version = "2.1.12";
+ version = "2.1.13";
src = fetchurl {
- url = "https://registry.npmjs.org/useragent/-/useragent-2.1.12.tgz";
- sha1 = "aa7da6cdc48bdc37ba86790871a7321d64edbaa2";
+ url = "https://registry.npmjs.org/useragent/-/useragent-2.1.13.tgz";
+ sha1 = "bba43e8aa24d5ceb83c2937473e102e21df74c10";
};
};
"bytes-2.4.0" = {
@@ -11745,15 +11880,6 @@ let
sha1 = "fe265a218ac6a57cfe854927e9d04c19825eddeb";
};
};
- "qs-6.2.1" = {
- name = "qs";
- packageName = "qs";
- version = "6.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.2.1.tgz";
- sha1 = "ce03c5ff0935bc1d9d69a9f14cbd18e568d67625";
- };
- };
"raw-body-2.2.0" = {
name = "raw-body";
packageName = "raw-body";
@@ -11934,6 +12060,15 @@ let
sha1 = "937b079f0007d0893ec56d46cb220b8cb435220a";
};
};
+ "ws-1.1.2" = {
+ name = "ws";
+ packageName = "ws";
+ version = "1.1.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz";
+ sha1 = "8a244fa052401e08c9886cf44a85189e1fd4067f";
+ };
+ };
"after-0.8.2" = {
name = "after";
packageName = "after";
@@ -12204,6 +12339,24 @@ let
sha1 = "d77d32fa98e38c2f41ae85e9278e0e0e6ba1022c";
};
};
+ "etag-1.7.0" = {
+ name = "etag";
+ packageName = "etag";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/etag/-/etag-1.7.0.tgz";
+ sha1 = "03d30b5f67dd6e632d2945d30d6652731a34d5d8";
+ };
+ };
+ "fresh-0.3.0" = {
+ name = "fresh";
+ packageName = "fresh";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/fresh/-/fresh-0.3.0.tgz";
+ sha1 = "651f838e22424e7566de161d8358caa199f83d4f";
+ };
+ };
"merge-descriptors-1.0.0" = {
name = "merge-descriptors";
packageName = "merge-descriptors";
@@ -12321,13 +12474,13 @@ let
sha1 = "197e22cdebd4198585e8694ef6786197b91ed942";
};
};
- "method-override-2.3.7" = {
+ "method-override-2.3.8" = {
name = "method-override";
packageName = "method-override";
- version = "2.3.7";
+ version = "2.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/method-override/-/method-override-2.3.7.tgz";
- sha1 = "8e1d47ac480fb0cd8777083f11c896901166b2e5";
+ url = "https://registry.npmjs.org/method-override/-/method-override-2.3.8.tgz";
+ sha1 = "178234bf4bab869f89df9444b06fc6147b44828c";
};
};
"morgan-1.6.1" = {
@@ -12438,22 +12591,13 @@ let
sha1 = "1f88aba4ab0b1508e8312acc39345f36e992e2f2";
};
};
- "csrf-3.0.4" = {
+ "csrf-3.0.6" = {
name = "csrf";
packageName = "csrf";
- version = "3.0.4";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/csrf/-/csrf-3.0.4.tgz";
- sha1 = "ba01423e5b5bea7b655e38b0bdd1323954cbdaa5";
- };
- };
- "base64-url-1.3.3" = {
- name = "base64-url";
- packageName = "base64-url";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-url/-/base64-url-1.3.3.tgz";
- sha1 = "f8b6c537f09a4fc58c99cb86e0b0e9c61461a20f";
+ url = "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz";
+ sha1 = "b61120ddceeafc91e76ed5313bb5c0b2667b710a";
};
};
"rndm-1.2.0" = {
@@ -12474,13 +12618,13 @@ let
sha1 = "7dc4a33af71581ab4337da91d85ca5427ebd9a97";
};
};
- "uid-safe-2.1.3" = {
+ "uid-safe-2.1.4" = {
name = "uid-safe";
packageName = "uid-safe";
- version = "2.1.3";
+ version = "2.1.4";
src = fetchurl {
- url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.3.tgz";
- sha1 = "077e264a00b3187936b270bb7376a26473631071";
+ url = "https://registry.npmjs.org/uid-safe/-/uid-safe-2.1.4.tgz";
+ sha1 = "3ad6f38368c6d4c8c75ec17623fb79aa1d071d81";
};
};
"random-bytes-1.0.0" = {
@@ -12798,13 +12942,13 @@ let
sha1 = "51af7d614ad9a9f610ea1bafbb989d6b1c56890f";
};
};
- "convert-source-map-1.4.0" = {
+ "convert-source-map-1.5.0" = {
name = "convert-source-map";
packageName = "convert-source-map";
- version = "1.4.0";
+ version = "1.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.4.0.tgz";
- sha1 = "e3dad195bf61bfe13a7a3c73e9876ec14a0268f3";
+ url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.5.0.tgz";
+ sha1 = "9acd70851c6d5dfdd93d9282e5edf94a03ff46b5";
};
};
"express-2.5.11" = {
@@ -13158,13 +13302,13 @@ let
sha1 = "159a49b9a9714c1fb102f2e0ed1906fab6a450f4";
};
};
- "serve-favicon-2.4.0" = {
+ "serve-favicon-2.4.2" = {
name = "serve-favicon";
packageName = "serve-favicon";
- version = "2.4.0";
+ version = "2.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.0.tgz";
- sha1 = "064dcdfdb0f250ae3b148eb18c8bbf3d185e3dd0";
+ url = "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.4.2.tgz";
+ sha1 = "aed1d8de67d5b83192cf31fdf53d2ea29464363e";
};
};
"strong-data-uri-1.0.4" = {
@@ -13176,22 +13320,22 @@ let
sha1 = "136765ebaf8e0f4ad60c4b146779f062c29d18f0";
};
};
- "v8-debug-0.7.7" = {
+ "v8-debug-1.0.1" = {
name = "v8-debug";
packageName = "v8-debug";
- version = "0.7.7";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/v8-debug/-/v8-debug-0.7.7.tgz";
- sha1 = "c0a14e7d2957209da2508f63a251ce3ffeeb4935";
+ url = "https://registry.npmjs.org/v8-debug/-/v8-debug-1.0.1.tgz";
+ sha1 = "6ae1c6dae4477bb3ced79b523e4d160c1d8667fe";
};
};
- "v8-profiler-5.6.5" = {
+ "v8-profiler-5.7.0" = {
name = "v8-profiler";
packageName = "v8-profiler";
- version = "5.6.5";
+ version = "5.7.0";
src = fetchurl {
- url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.6.5.tgz";
- sha1 = "8b22e6ff3b76a1c75b1d53fd18d58e3f0a46f5be";
+ url = "https://registry.npmjs.org/v8-profiler/-/v8-profiler-5.7.0.tgz";
+ sha1 = "e8381cbebb5b5fd0ca8d2b09f6a0181a158db34d";
};
};
"yargs-3.32.0" = {
@@ -13275,22 +13419,13 @@ let
sha1 = "17eb2807987f76952e9c0485fc311d06a826a2e0";
};
};
- "etag-1.8.0" = {
- name = "etag";
- packageName = "etag";
- version = "1.8.0";
+ "ms-1.0.0" = {
+ name = "ms";
+ packageName = "ms";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/etag/-/etag-1.8.0.tgz";
- sha1 = "6f631aef336d6c46362b51764044ce216be3c051";
- };
- };
- "fresh-0.4.0" = {
- name = "fresh";
- packageName = "fresh";
- version = "0.4.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/fresh/-/fresh-0.4.0.tgz";
- sha1 = "475626a934a8d3480b2101a1d6ecef7dafd7c553";
+ url = "https://registry.npmjs.org/ms/-/ms-1.0.0.tgz";
+ sha1 = "59adcd22edc543f7b5381862d31387b1f4bc9473";
};
};
"truncate-1.0.5" = {
@@ -13500,6 +13635,15 @@ let
sha1 = "a9baa860a3f9b595a6b81b1a86873121ed3a269e";
};
};
+ "clone-2.1.0" = {
+ name = "clone";
+ packageName = "clone";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clone/-/clone-2.1.0.tgz";
+ sha1 = "9c715bfbd39aa197c8ee0f8e65c3912ba34f8cd6";
+ };
+ };
"cookie-parser-1.4.3" = {
name = "cookie-parser";
packageName = "cookie-parser";
@@ -13509,6 +13653,15 @@ let
sha1 = "0fe31fa19d000b95f4aadf1f53fdc2b8a203baa5";
};
};
+ "cors-2.8.1" = {
+ name = "cors";
+ packageName = "cors";
+ version = "2.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cors/-/cors-2.8.1.tgz";
+ sha1 = "6181aa56abb45a2825be3304703747ae4e9d2383";
+ };
+ };
"cron-1.2.1" = {
name = "cron";
packageName = "cron";
@@ -13635,6 +13788,15 @@ let
sha1 = "33279100c35c38519ca5e435245186c512fe0fdc";
};
};
+ "uglify-js-2.7.5" = {
+ name = "uglify-js";
+ packageName = "uglify-js";
+ version = "2.7.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz";
+ sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8";
+ };
+ };
"when-3.7.7" = {
name = "when";
packageName = "when";
@@ -13671,13 +13833,13 @@ let
sha1 = "63baed16d538e786ddadc169b23552d9eb9abc30";
};
};
- "node-red-node-twitter-0.1.9" = {
+ "node-red-node-twitter-0.1.10" = {
name = "node-red-node-twitter";
packageName = "node-red-node-twitter";
- version = "0.1.9";
+ version = "0.1.10";
src = fetchurl {
- url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.9.tgz";
- sha1 = "e0ad7f654aab3ff8e7c3d001ec3cee030d33d217";
+ url = "https://registry.npmjs.org/node-red-node-twitter/-/node-red-node-twitter-0.1.10.tgz";
+ sha1 = "5883f6a8acebc99829c52400420d5ed52f44d221";
};
};
"node-red-node-rbe-0.1.6" = {
@@ -13698,6 +13860,33 @@ let
sha1 = "d05fc5d223173e0e28ec381c0f00cc25ffaf2736";
};
};
+ "http-errors-1.5.1" = {
+ name = "http-errors";
+ packageName = "http-errors";
+ version = "1.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/http-errors/-/http-errors-1.5.1.tgz";
+ sha1 = "788c0d2c1de2c81b9e6e8c01843b6b97eb920750";
+ };
+ };
+ "qs-6.2.0" = {
+ name = "qs";
+ packageName = "qs";
+ version = "6.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/qs/-/qs-6.2.0.tgz";
+ sha1 = "3b7848c03c2dece69a9522b0fae8c4126d745f3b";
+ };
+ };
+ "setprototypeof-1.0.2" = {
+ name = "setprototypeof";
+ packageName = "setprototypeof";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.2.tgz";
+ sha1 = "81a552141ec104b88e89ce383103ad5c66564d08";
+ };
+ };
"css-select-1.2.0" = {
name = "css-select";
packageName = "css-select";
@@ -13878,6 +14067,24 @@ let
sha1 = "a954984325392f51532a7760760e459598c89f7a";
};
};
+ "serve-static-1.11.2" = {
+ name = "serve-static";
+ packageName = "serve-static";
+ version = "1.11.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/serve-static/-/serve-static-1.11.2.tgz";
+ sha1 = "2cf9889bd4435a320cc36895c9aa57bd662e6ac7";
+ };
+ };
+ "send-0.14.2" = {
+ name = "send";
+ packageName = "send";
+ version = "0.14.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/send/-/send-0.14.2.tgz";
+ sha1 = "39b0438b3f510be5dc6f667a11f71689368cdeef";
+ };
+ };
"retry-0.6.1" = {
name = "retry";
packageName = "retry";
@@ -13941,13 +14148,13 @@ let
sha1 = "b6893c8b0ed9d3c60db83560fa75b4d0097a8d5a";
};
};
- "mqtt-packet-5.2.1" = {
+ "mqtt-packet-5.2.2" = {
name = "mqtt-packet";
packageName = "mqtt-packet";
- version = "5.2.1";
+ version = "5.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.2.1.tgz";
- sha1 = "876e35ed616a8e348ac0283b4922039872458b58";
+ url = "https://registry.npmjs.org/mqtt-packet/-/mqtt-packet-5.2.2.tgz";
+ sha1 = "190d4358f415c6f964211030c20ca0bf45d5698a";
};
};
"reinterval-1.1.0" = {
@@ -14247,6 +14454,24 @@ let
sha1 = "fc452b376e7319b3d255f5f34853ef6fd8fe1fd5";
};
};
+ "rc-1.1.7" = {
+ name = "rc";
+ packageName = "rc";
+ version = "1.1.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rc/-/rc-1.1.7.tgz";
+ sha1 = "c5ea564bb07aff9fd3a5b32e906c1d3a65940fea";
+ };
+ };
+ "tar-pack-3.3.0" = {
+ name = "tar-pack";
+ packageName = "tar-pack";
+ version = "3.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tar-pack/-/tar-pack-3.3.0.tgz";
+ sha1 = "30931816418f55afc4d21775afdd6720cee45dae";
+ };
+ };
"mongoose-3.6.7" = {
name = "mongoose";
packageName = "mongoose";
@@ -14832,6 +15057,15 @@ let
sha1 = "8cdd8fbac4e2d2ea1e7e2e8097c42f442280f85b";
};
};
+ "call-limit-1.1.0" = {
+ name = "call-limit";
+ packageName = "call-limit";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/call-limit/-/call-limit-1.1.0.tgz";
+ sha1 = "6fd61b03f3da42a2cd0ec2b60f02bd0e71991fea";
+ };
+ };
"fstream-npm-1.2.0" = {
name = "fstream-npm";
packageName = "fstream-npm";
@@ -14841,6 +15075,15 @@ let
sha1 = "d2c3c89101346982d64e57091c38487bda916fce";
};
};
+ "hosted-git-info-2.2.0" = {
+ name = "hosted-git-info";
+ packageName = "hosted-git-info";
+ version = "2.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz";
+ sha1 = "7a0d097863d886c0fabbdcd37bf1758d8becf8a5";
+ };
+ };
"lazy-property-1.0.0" = {
name = "lazy-property";
packageName = "lazy-property";
@@ -14904,6 +15147,15 @@ let
sha1 = "d201583eb12327e3c5c1642a404a9cacf94e34f5";
};
};
+ "move-concurrently-1.0.1" = {
+ name = "move-concurrently";
+ packageName = "move-concurrently";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz";
+ sha1 = "be2c005fda32e0b29af1f05d7c4b33214c701f92";
+ };
+ };
"node-gyp-3.5.0" = {
name = "node-gyp";
packageName = "node-gyp";
@@ -14913,15 +15165,6 @@ let
sha1 = "a8fe5e611d079ec16348a3eb960e78e11c85274a";
};
};
- "nopt-4.0.1" = {
- name = "nopt";
- packageName = "nopt";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/nopt/-/nopt-4.0.1.tgz";
- sha1 = "d0d4685afd5415193c8c7505602d0d17cd64474d";
- };
- };
"npm-install-checks-3.0.0" = {
name = "npm-install-checks";
packageName = "npm-install-checks";
@@ -14931,13 +15174,13 @@ let
sha1 = "d4aecdfd51a53e3723b7b2f93b2ee28e307bc0d7";
};
};
- "npm-registry-client-7.4.5" = {
+ "npm-registry-client-7.4.6" = {
name = "npm-registry-client";
packageName = "npm-registry-client";
- version = "7.4.5";
+ version = "7.4.6";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.4.5.tgz";
- sha1 = "1ef61851bb7231db53e397aaf76ddf1cb645c3df";
+ url = "https://registry.npmjs.org/npm-registry-client/-/npm-registry-client-7.4.6.tgz";
+ sha1 = "0aa7c55f18631b941b7b80a7aa501bfcb8b19717";
};
};
"opener-1.4.3" = {
@@ -14985,6 +15228,15 @@ let
sha1 = "d05f2fe4032560871f30e93cbe735eea201514f3";
};
};
+ "update-notifier-2.1.0" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "2.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-2.1.0.tgz";
+ sha1 = "ec0c1e53536b76647a24b77cb83966d9315123d9";
+ };
+ };
"lodash._baseindexof-3.1.0" = {
name = "lodash._baseindexof";
packageName = "lodash._baseindexof";
@@ -15066,6 +15318,24 @@ let
sha1 = "1b33792e11e914a2fd6d6ed6447464444e5fa640";
};
};
+ "copy-concurrently-1.0.3" = {
+ name = "copy-concurrently";
+ packageName = "copy-concurrently";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.3.tgz";
+ sha1 = "45fb7866249a1ca889aa5708e6cbd273e75bb250";
+ };
+ };
+ "run-queue-1.0.3" = {
+ name = "run-queue";
+ packageName = "run-queue";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz";
+ sha1 = "e848396f057d223f24386924618e25694161ec47";
+ };
+ };
"stream-iterate-1.2.0" = {
name = "stream-iterate";
packageName = "stream-iterate";
@@ -15084,6 +15354,186 @@ let
sha1 = "db6676e7c7cc0629878ff196097c78855ae9f4ab";
};
};
+ "boxen-1.0.0" = {
+ name = "boxen";
+ packageName = "boxen";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boxen/-/boxen-1.0.0.tgz";
+ sha1 = "b2694baf1f605f708ff0177c12193b22f29aaaab";
+ };
+ };
+ "configstore-3.0.0" = {
+ name = "configstore";
+ packageName = "configstore";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/configstore/-/configstore-3.0.0.tgz";
+ sha1 = "e1b8669c1803ccc50b545e92f8e6e79aa80e0196";
+ };
+ };
+ "latest-version-3.1.0" = {
+ name = "latest-version";
+ packageName = "latest-version";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/latest-version/-/latest-version-3.1.0.tgz";
+ sha1 = "a205383fea322b33b5ae3b18abee0dc2f356ee15";
+ };
+ };
+ "lazy-req-2.0.0" = {
+ name = "lazy-req";
+ packageName = "lazy-req";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-req/-/lazy-req-2.0.0.tgz";
+ sha1 = "c9450a363ecdda2e6f0c70132ad4f37f8f06f2b4";
+ };
+ };
+ "xdg-basedir-3.0.0" = {
+ name = "xdg-basedir";
+ packageName = "xdg-basedir";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-3.0.0.tgz";
+ sha1 = "496b2cc109eca8dbacfe2dc72b603c17c5870ad4";
+ };
+ };
+ "ansi-align-1.1.0" = {
+ name = "ansi-align";
+ packageName = "ansi-align";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/ansi-align/-/ansi-align-1.1.0.tgz";
+ sha1 = "2f0c1658829739add5ebb15e6b0c6e3423f016ba";
+ };
+ };
+ "camelcase-4.1.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-4.1.0.tgz";
+ sha1 = "d545635be1e33c542649c69173e5de6acfae34dd";
+ };
+ };
+ "cli-boxes-1.0.0" = {
+ name = "cli-boxes";
+ packageName = "cli-boxes";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz";
+ sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143";
+ };
+ };
+ "term-size-0.1.1" = {
+ name = "term-size";
+ packageName = "term-size";
+ version = "0.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/term-size/-/term-size-0.1.1.tgz";
+ sha1 = "87360b96396cab5760963714cda0d0cbeecad9ca";
+ };
+ };
+ "widest-line-1.0.0" = {
+ name = "widest-line";
+ packageName = "widest-line";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz";
+ sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c";
+ };
+ };
+ "execa-0.4.0" = {
+ name = "execa";
+ packageName = "execa";
+ version = "0.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/execa/-/execa-0.4.0.tgz";
+ sha1 = "4eb6467a36a095fabb2970ff9d5e3fb7bce6ebc3";
+ };
+ };
+ "cross-spawn-async-2.2.5" = {
+ name = "cross-spawn-async";
+ packageName = "cross-spawn-async";
+ version = "2.2.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/cross-spawn-async/-/cross-spawn-async-2.2.5.tgz";
+ sha1 = "845ff0c0834a3ded9d160daca6d390906bb288cc";
+ };
+ };
+ "npm-run-path-1.0.0" = {
+ name = "npm-run-path";
+ packageName = "npm-run-path";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/npm-run-path/-/npm-run-path-1.0.0.tgz";
+ sha1 = "f5c32bf595fe81ae927daec52e82f8b000ac3c8f";
+ };
+ };
+ "path-key-1.0.0" = {
+ name = "path-key";
+ packageName = "path-key";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-key/-/path-key-1.0.0.tgz";
+ sha1 = "5d53d578019646c0d68800db4e146e6bdc2ac7af";
+ };
+ };
+ "dot-prop-4.1.1" = {
+ name = "dot-prop";
+ packageName = "dot-prop";
+ version = "4.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/dot-prop/-/dot-prop-4.1.1.tgz";
+ sha1 = "a8493f0b7b5eeec82525b5c7587fa7de7ca859c1";
+ };
+ };
+ "unique-string-1.0.0" = {
+ name = "unique-string";
+ packageName = "unique-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/unique-string/-/unique-string-1.0.0.tgz";
+ sha1 = "9e1057cca851abb93398f8b33ae187b99caec11a";
+ };
+ };
+ "is-obj-1.0.1" = {
+ name = "is-obj";
+ packageName = "is-obj";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz";
+ sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
+ };
+ };
+ "crypto-random-string-1.0.0" = {
+ name = "crypto-random-string";
+ packageName = "crypto-random-string";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-1.0.0.tgz";
+ sha1 = "a230f64f568310e1498009940790ec99545bca7e";
+ };
+ };
+ "package-json-4.0.0" = {
+ name = "package-json";
+ packageName = "package-json";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/package-json/-/package-json-4.0.0.tgz";
+ sha1 = "f3c9dc8738f5b59304d54d2cfb3f91d08fdd7998";
+ };
+ };
+ "registry-auth-token-3.1.0" = {
+ name = "registry-auth-token";
+ packageName = "registry-auth-token";
+ version = "3.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.1.0.tgz";
+ sha1 = "997c08256e0c7999837b90e944db39d8a790276b";
+ };
+ };
"argparse-0.1.15" = {
name = "argparse";
packageName = "argparse";
@@ -15336,6 +15786,15 @@ let
sha1 = "27d92fec34d27cfa42707d3b40d025ae9855f2df";
};
};
+ "snyk-1.26.1" = {
+ name = "snyk";
+ packageName = "snyk";
+ version = "1.26.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk/-/snyk-1.26.1.tgz";
+ sha1 = "12b28e9b43c6453ecb6d4be7670b0c0df7db38a5";
+ };
+ };
"spawn-please-0.2.0" = {
name = "spawn-please";
packageName = "spawn-please";
@@ -15363,6 +15822,15 @@ let
sha1 = "2713680775e7614c8ba186c065d4e2e52d1072c0";
};
};
+ "node-gyp-3.4.0" = {
+ name = "node-gyp";
+ packageName = "node-gyp";
+ version = "3.4.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.4.0.tgz";
+ sha1 = "dda558393b3ecbbe24c9e6b8703c71194c63fa36";
+ };
+ };
"request-2.75.0" = {
name = "request";
packageName = "request";
@@ -15381,6 +15849,24 @@ let
sha1 = "14c66d4e4cb3ca0565c28cf3b7a6f3e4d5938fab";
};
};
+ "path-array-1.0.1" = {
+ name = "path-array";
+ packageName = "path-array";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-array/-/path-array-1.0.1.tgz";
+ sha1 = "7e2f0f35f07a2015122b868b7eac0eb2c4fec271";
+ };
+ };
+ "array-index-1.0.0" = {
+ name = "array-index";
+ packageName = "array-index";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/array-index/-/array-index-1.0.0.tgz";
+ sha1 = "ec56a749ee103e4e08c790b9c353df16055b97f9";
+ };
+ };
"form-data-2.0.0" = {
name = "form-data";
packageName = "form-data";
@@ -15390,13 +15876,220 @@ let
sha1 = "6f0aebadcc5da16c13e1ecc11137d85f9b883b25";
};
};
- "boxen-0.6.0" = {
+ "hasbin-1.2.3" = {
+ name = "hasbin";
+ packageName = "hasbin";
+ version = "1.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hasbin/-/hasbin-1.2.3.tgz";
+ sha1 = "78c5926893c80215c2b568ae1fd3fcab7a2696b0";
+ };
+ };
+ "inquirer-1.0.3" = {
+ name = "inquirer";
+ packageName = "inquirer";
+ version = "1.0.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-1.0.3.tgz";
+ sha1 = "ebe3a0948571bcc46ccccbe2f9bcec251e984bd0";
+ };
+ };
+ "snyk-config-1.0.1" = {
+ name = "snyk-config";
+ packageName = "snyk-config";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-config/-/snyk-config-1.0.1.tgz";
+ sha1 = "f27aec2498b24027ac719214026521591111508f";
+ };
+ };
+ "snyk-module-1.7.0" = {
+ name = "snyk-module";
+ packageName = "snyk-module";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-module/-/snyk-module-1.7.0.tgz";
+ sha1 = "07c6ca8556d281de6f9e2368c04ecb6dd1f2631a";
+ };
+ };
+ "snyk-policy-1.7.0" = {
+ name = "snyk-policy";
+ packageName = "snyk-policy";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-policy/-/snyk-policy-1.7.0.tgz";
+ sha1 = "2151c751ab1edc040fc6b94a872aa989db492324";
+ };
+ };
+ "snyk-recursive-readdir-2.0.0" = {
+ name = "snyk-recursive-readdir";
+ packageName = "snyk-recursive-readdir";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-recursive-readdir/-/snyk-recursive-readdir-2.0.0.tgz";
+ sha1 = "5cb59e94698169e0205a60e7d6a506d0b4d52ff3";
+ };
+ };
+ "snyk-resolve-1.0.0" = {
+ name = "snyk-resolve";
+ packageName = "snyk-resolve";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-resolve/-/snyk-resolve-1.0.0.tgz";
+ sha1 = "bbe9196d37f57c39251e6be75ccdd5b2097e99a2";
+ };
+ };
+ "snyk-resolve-deps-1.7.0" = {
+ name = "snyk-resolve-deps";
+ packageName = "snyk-resolve-deps";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-resolve-deps/-/snyk-resolve-deps-1.7.0.tgz";
+ sha1 = "13743a058437dff890baaf437c333c966a743cb6";
+ };
+ };
+ "snyk-tree-1.0.0" = {
+ name = "snyk-tree";
+ packageName = "snyk-tree";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-tree/-/snyk-tree-1.0.0.tgz";
+ sha1 = "0fb73176dbf32e782f19100294160448f9111cc8";
+ };
+ };
+ "snyk-try-require-1.2.0" = {
+ name = "snyk-try-require";
+ packageName = "snyk-try-require";
+ version = "1.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/snyk-try-require/-/snyk-try-require-1.2.0.tgz";
+ sha1 = "30fc2b11c07064591ee35780c826be91312f2144";
+ };
+ };
+ "tempfile-1.1.1" = {
+ name = "tempfile";
+ packageName = "tempfile";
+ version = "1.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tempfile/-/tempfile-1.1.1.tgz";
+ sha1 = "5bcc4eaecc4ab2c707d8bc11d99ccc9a2cb287f2";
+ };
+ };
+ "then-fs-2.0.0" = {
+ name = "then-fs";
+ packageName = "then-fs";
+ version = "2.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/then-fs/-/then-fs-2.0.0.tgz";
+ sha1 = "72f792dd9d31705a91ae19ebfcf8b3f968c81da2";
+ };
+ };
+ "mute-stream-0.0.6" = {
+ name = "mute-stream";
+ packageName = "mute-stream";
+ version = "0.0.6";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz";
+ sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db";
+ };
+ };
+ "run-async-2.3.0" = {
+ name = "run-async";
+ packageName = "run-async";
+ version = "2.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz";
+ sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
+ };
+ };
+ "rx-4.1.0" = {
+ name = "rx";
+ packageName = "rx";
+ version = "4.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz";
+ sha1 = "a5f13ff79ef3b740fe30aa803fb09f98805d4782";
+ };
+ };
+ "nconf-0.7.2" = {
+ name = "nconf";
+ packageName = "nconf";
+ version = "0.7.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/nconf/-/nconf-0.7.2.tgz";
+ sha1 = "a05fdf22dc01c378dd5c4df27f2dc90b9aa8bb00";
+ };
+ };
+ "yargs-3.15.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "3.15.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-3.15.0.tgz";
+ sha1 = "3d9446ef21fb3791b3985690662e4b9683c7f181";
+ };
+ };
+ "minimatch-3.0.2" = {
+ name = "minimatch";
+ packageName = "minimatch";
+ version = "3.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimatch/-/minimatch-3.0.2.tgz";
+ sha1 = "0f398a7300ea441e9c348c83d98ab8c9dbf9c40a";
+ };
+ };
+ "clite-0.3.0" = {
+ name = "clite";
+ packageName = "clite";
+ version = "0.3.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/clite/-/clite-0.3.0.tgz";
+ sha1 = "e7fcbc8cc5bd3e7f8b84ed48db12e9474cc73441";
+ };
+ };
+ "lodash.defaultsdeep-4.6.0" = {
+ name = "lodash.defaultsdeep";
+ packageName = "lodash.defaultsdeep";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.defaultsdeep/-/lodash.defaultsdeep-4.6.0.tgz";
+ sha1 = "bec1024f85b1bd96cbea405b23c14ad6443a6f81";
+ };
+ };
+ "lodash.mergewith-4.6.0" = {
+ name = "lodash.mergewith";
+ packageName = "lodash.mergewith";
+ version = "4.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.0.tgz";
+ sha1 = "150cf0a16791f5903b8891eab154609274bdea55";
+ };
+ };
+ "update-notifier-0.6.3" = {
+ name = "update-notifier";
+ packageName = "update-notifier";
+ version = "0.6.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz";
+ sha1 = "776dec8daa13e962a341e8a1d98354306b67ae08";
+ };
+ };
+ "yargs-4.8.1" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "4.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz";
+ sha1 = "c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0";
+ };
+ };
+ "boxen-0.3.1" = {
name = "boxen";
packageName = "boxen";
- version = "0.6.0";
+ version = "0.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/boxen/-/boxen-0.6.0.tgz";
- sha1 = "8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6";
+ url = "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz";
+ sha1 = "a7d898243ae622f7abb6bb604d740a76c6a5461b";
};
};
"configstore-2.1.0" = {
@@ -15417,33 +16110,6 @@ let
sha1 = "56f8d6139620847b8017f8f1f4d78e211324168b";
};
};
- "lazy-req-1.1.0" = {
- name = "lazy-req";
- packageName = "lazy-req";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lazy-req/-/lazy-req-1.1.0.tgz";
- sha1 = "bdaebead30f8d824039ce0ce149d4daa07ba1fac";
- };
- };
- "ansi-align-1.1.0" = {
- name = "ansi-align";
- packageName = "ansi-align";
- version = "1.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-align/-/ansi-align-1.1.0.tgz";
- sha1 = "2f0c1658829739add5ebb15e6b0c6e3423f016ba";
- };
- };
- "cli-boxes-1.0.0" = {
- name = "cli-boxes";
- packageName = "cli-boxes";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/cli-boxes/-/cli-boxes-1.0.0.tgz";
- sha1 = "4fa917c3e59c94a004cd61f8ee509da651687143";
- };
- };
"filled-array-1.1.0" = {
name = "filled-array";
packageName = "filled-array";
@@ -15453,15 +16119,6 @@ let
sha1 = "c3c4f6c663b923459a9aa29912d2d031f1507f84";
};
};
- "widest-line-1.0.0" = {
- name = "widest-line";
- packageName = "widest-line";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/widest-line/-/widest-line-1.0.0.tgz";
- sha1 = "0c09c85c2a94683d0d7eaf8ee097d564bf0e105c";
- };
- };
"dot-prop-3.0.0" = {
name = "dot-prop";
packageName = "dot-prop";
@@ -15471,15 +16128,6 @@ let
sha1 = "1b708af094a49c9a0e7dbcad790aba539dac1177";
};
};
- "is-obj-1.0.1" = {
- name = "is-obj";
- packageName = "is-obj";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-obj/-/is-obj-1.0.1.tgz";
- sha1 = "3e4729ac1f5fde025cd7d83a896dab9f4f67db0f";
- };
- };
"package-json-2.4.0" = {
name = "package-json";
packageName = "package-json";
@@ -15498,15 +16146,6 @@ let
sha1 = "5f81635a61e4a6589f180569ea4e381680a51f35";
};
};
- "registry-auth-token-3.1.0" = {
- name = "registry-auth-token";
- packageName = "registry-auth-token";
- version = "3.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-3.1.0.tgz";
- sha1 = "997c08256e0c7999837b90e944db39d8a790276b";
- };
- };
"node-status-codes-1.0.0" = {
name = "node-status-codes";
packageName = "node-status-codes";
@@ -15534,6 +16173,96 @@ let
sha1 = "b984f0877fc0a89c2c773cc1ef7b5b232b5b06fe";
};
};
+ "get-caller-file-1.0.2" = {
+ name = "get-caller-file";
+ packageName = "get-caller-file";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz";
+ sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5";
+ };
+ };
+ "lodash.assign-4.2.0" = {
+ name = "lodash.assign";
+ packageName = "lodash.assign";
+ version = "4.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz";
+ sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7";
+ };
+ };
+ "require-directory-2.1.1" = {
+ name = "require-directory";
+ packageName = "require-directory";
+ version = "2.1.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
+ sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
+ };
+ };
+ "require-main-filename-1.0.1" = {
+ name = "require-main-filename";
+ packageName = "require-main-filename";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
+ sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
+ };
+ };
+ "which-module-1.0.0" = {
+ name = "which-module";
+ packageName = "which-module";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz";
+ sha1 = "bba63ca861948994ff307736089e3b96026c2a4f";
+ };
+ };
+ "window-size-0.2.0" = {
+ name = "window-size";
+ packageName = "window-size";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz";
+ sha1 = "b4315bb4214a3d7058ebeee892e13fa24d98b075";
+ };
+ };
+ "yargs-parser-2.4.1" = {
+ name = "yargs-parser";
+ packageName = "yargs-parser";
+ version = "2.4.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz";
+ sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4";
+ };
+ };
+ "camelcase-3.0.0" = {
+ name = "camelcase";
+ packageName = "camelcase";
+ version = "3.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz";
+ sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a";
+ };
+ };
+ "boxen-0.6.0" = {
+ name = "boxen";
+ packageName = "boxen";
+ version = "0.6.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/boxen/-/boxen-0.6.0.tgz";
+ sha1 = "8364d4248ac34ff0ef1b2f2bf49a6c60ce0d81b6";
+ };
+ };
+ "lazy-req-1.1.0" = {
+ name = "lazy-req";
+ packageName = "lazy-req";
+ version = "1.1.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/lazy-req/-/lazy-req-1.1.0.tgz";
+ sha1 = "bdaebead30f8d824039ce0ce149d4daa07ba1fac";
+ };
+ };
"babybird-0.0.1" = {
name = "babybird";
packageName = "babybird";
@@ -15580,6 +16309,15 @@ let
sha1 = "80a070bb819b09e4af2ca6d0780f75ce05e75c2f";
};
};
+ "finalhandler-0.5.1" = {
+ name = "finalhandler";
+ packageName = "finalhandler";
+ version = "0.5.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/finalhandler/-/finalhandler-0.5.1.tgz";
+ sha1 = "2c400d8d4530935bc232549c5fa385ec07de6fcd";
+ };
+ };
"gelf-stream-0.2.4" = {
name = "gelf-stream";
packageName = "gelf-stream";
@@ -15627,13 +16365,13 @@ let
sha1 = "78717d9b718ce7cab55e20b9f24388d5fa51d5c0";
};
};
- "service-runner-2.2.4" = {
+ "service-runner-2.2.5" = {
name = "service-runner";
packageName = "service-runner";
- version = "2.2.4";
+ version = "2.2.5";
src = fetchurl {
- url = "https://registry.npmjs.org/service-runner/-/service-runner-2.2.4.tgz";
- sha1 = "75cc51113d31d4bb287130880b38f82d7bb4c42c";
+ url = "https://registry.npmjs.org/service-runner/-/service-runner-2.2.5.tgz";
+ sha1 = "95a55084f939110b3f201549c1afedf900ec4850";
};
};
"simplediff-0.1.1" = {
@@ -15645,15 +16383,6 @@ let
sha1 = "b0caeeb093223370033c6c3aa1130dc86c6a087c";
};
};
- "yargs-4.8.1" = {
- name = "yargs";
- packageName = "yargs";
- version = "4.8.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-4.8.1.tgz";
- sha1 = "c0c42924ca4aaa6b0e6da1739dfb216439f9ddc0";
- };
- };
"is-arguments-1.0.2" = {
name = "is-arguments";
packageName = "is-arguments";
@@ -15717,13 +16446,13 @@ let
sha1 = "23a13c366883adae32ecfd252a566be302b88dc3";
};
};
- "bunyan-1.8.5" = {
+ "bunyan-1.8.9" = {
name = "bunyan";
packageName = "bunyan";
- version = "1.8.5";
+ version = "1.8.9";
src = fetchurl {
- url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.5.tgz";
- sha1 = "0d619e83005fb89070f5f47982fc1bf00600878a";
+ url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.9.tgz";
+ sha1 = "2c7c9d422ea64ee2465d52b4decd72de0657401a";
};
};
"bunyan-syslog-udp-0.1.0" = {
@@ -15744,13 +16473,13 @@ let
sha1 = "9cea9b6386ac301c741838ca3cb91e66dbfbf669";
};
};
- "hot-shots-4.3.1" = {
+ "hot-shots-4.4.0" = {
name = "hot-shots";
packageName = "hot-shots";
- version = "4.3.1";
+ version = "4.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.3.1.tgz";
- sha1 = "58a6c1ff717f25673be4d2f736d1c94d5d79e239";
+ url = "https://registry.npmjs.org/hot-shots/-/hot-shots-4.4.0.tgz";
+ sha1 = "ab3f3b3df2f4b2ff0d716837569241ede81d9175";
};
};
"limitation-0.2.0" = {
@@ -15780,13 +16509,13 @@ let
sha1 = "42cb2b9bfb5e8fbdfa395aac74e127fc05074d31";
};
};
- "dtrace-provider-0.8.0" = {
+ "dtrace-provider-0.8.1" = {
name = "dtrace-provider";
packageName = "dtrace-provider";
- version = "0.8.0";
+ version = "0.8.1";
src = fetchurl {
- url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.0.tgz";
- sha1 = "fa95fbf67ed3ae3e97364f9664af7302e5ff5625";
+ url = "https://registry.npmjs.org/dtrace-provider/-/dtrace-provider-0.8.1.tgz";
+ sha1 = "cd4d174a233bea1bcf4a1fbfa5798f44f48cda9f";
};
};
"mv-2.1.1" = {
@@ -15798,13 +16527,13 @@ let
sha1 = "ae6ce0d6f6d5e0a4f7d893798d03c1ea9559b6a2";
};
};
- "safe-json-stringify-1.0.3" = {
+ "safe-json-stringify-1.0.4" = {
name = "safe-json-stringify";
packageName = "safe-json-stringify";
- version = "1.0.3";
+ version = "1.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.0.3.tgz";
- sha1 = "3cb6717660a086d07cb5bd9b7a6875bcf67bd05e";
+ url = "https://registry.npmjs.org/safe-json-stringify/-/safe-json-stringify-1.0.4.tgz";
+ sha1 = "81a098f447e4bbc3ff3312a243521bc060ef5911";
};
};
"ncp-2.0.0" = {
@@ -15907,51 +16636,6 @@ let
sha1 = "ed17cbf68abd10e0aef8182713e297c5e4b500b0";
};
};
- "camelcase-3.0.0" = {
- name = "camelcase";
- packageName = "camelcase";
- version = "3.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz";
- sha1 = "32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a";
- };
- };
- "get-caller-file-1.0.2" = {
- name = "get-caller-file";
- packageName = "get-caller-file";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.2.tgz";
- sha1 = "f702e63127e7e231c160a80c1554acb70d5047e5";
- };
- };
- "require-directory-2.1.1" = {
- name = "require-directory";
- packageName = "require-directory";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz";
- sha1 = "8c64ad5fd30dab1c976e2344ffe7f792a6a6df42";
- };
- };
- "require-main-filename-1.0.1" = {
- name = "require-main-filename";
- packageName = "require-main-filename";
- version = "1.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz";
- sha1 = "97f717b69d48784f5f526a6c5aa8ffdda055a4d1";
- };
- };
- "which-module-1.0.0" = {
- name = "which-module";
- packageName = "which-module";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz";
- sha1 = "bba63ca861948994ff307736089e3b96026c2a4f";
- };
- };
"yargs-parser-4.2.1" = {
name = "yargs-parser";
packageName = "yargs-parser";
@@ -15979,33 +16663,6 @@ let
sha1 = "ce42ade08384ef5d62fa77c30f61a46e686f8434";
};
};
- "lodash.assign-4.2.0" = {
- name = "lodash.assign";
- packageName = "lodash.assign";
- version = "4.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/lodash.assign/-/lodash.assign-4.2.0.tgz";
- sha1 = "0d99f3ccd7a6d261d19bdaeb9245005d285808e7";
- };
- };
- "window-size-0.2.0" = {
- name = "window-size";
- packageName = "window-size";
- version = "0.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/window-size/-/window-size-0.2.0.tgz";
- sha1 = "b4315bb4214a3d7058ebeee892e13fa24d98b075";
- };
- };
- "yargs-parser-2.4.1" = {
- name = "yargs-parser";
- packageName = "yargs-parser";
- version = "2.4.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-2.4.1.tgz";
- sha1 = "85568de3cf150ff49fa51825f03a8c880ddcc5c4";
- };
- };
"airplayer-2.0.0" = {
name = "airplayer";
packageName = "airplayer";
@@ -16186,13 +16843,13 @@ let
sha1 = "b91d806f5d27188e4ab3e7d107d881a1cc4642b6";
};
};
- "multicast-dns-6.1.0" = {
+ "multicast-dns-6.1.1" = {
name = "multicast-dns";
packageName = "multicast-dns";
- version = "6.1.0";
+ version = "6.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.1.0.tgz";
- sha1 = "8d91824b538556cd34f0adf6f27c60d94b5fb3bf";
+ url = "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.1.1.tgz";
+ sha1 = "6e7de86a570872ab17058adea7160bbeca814dde";
};
};
"multicast-dns-service-types-1.1.0" = {
@@ -16222,33 +16879,6 @@ let
sha1 = "12d7b0db850f7ff7e7081baf4005700060c4600b";
};
};
- "mute-stream-0.0.6" = {
- name = "mute-stream";
- packageName = "mute-stream";
- version = "0.0.6";
- src = fetchurl {
- url = "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.6.tgz";
- sha1 = "48962b19e169fd1dfc240b3f1e7317627bbc47db";
- };
- };
- "run-async-2.3.0" = {
- name = "run-async";
- packageName = "run-async";
- version = "2.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz";
- sha1 = "0371ab4ae0bdd720d4166d7dfda64ff7a445a6c0";
- };
- };
- "rx-4.1.0" = {
- name = "rx";
- packageName = "rx";
- version = "4.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/rx/-/rx-4.1.0.tgz";
- sha1 = "a5f13ff79ef3b740fe30aa803fb09f98805d4782";
- };
- };
"spawn-sync-1.0.15" = {
name = "spawn-sync";
packageName = "spawn-sync";
@@ -16942,22 +17572,22 @@ let
sha1 = "68ce5e8a1ef0a23bb570cc28537b5332aba63ef1";
};
};
- "recast-0.11.22" = {
+ "recast-0.11.23" = {
name = "recast";
packageName = "recast";
- version = "0.11.22";
+ version = "0.11.23";
src = fetchurl {
- url = "https://registry.npmjs.org/recast/-/recast-0.11.22.tgz";
- sha1 = "dedeb18fb001a2bbc6ac34475fda53dfe3d47dfa";
+ url = "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz";
+ sha1 = "451fd3004ab1e4df9b4e4b66376b2a21912462d3";
};
};
- "ast-types-0.9.5" = {
+ "ast-types-0.9.6" = {
name = "ast-types";
packageName = "ast-types";
- version = "0.9.5";
+ version = "0.9.6";
src = fetchurl {
- url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.5.tgz";
- sha1 = "1a660a09945dbceb1f9c9cbb715002617424e04a";
+ url = "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz";
+ sha1 = "102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9";
};
};
"base62-0.1.1" = {
@@ -17240,13 +17870,13 @@ let
sha1 = "82998ea749501145fd2da7cf8ecbe6420fac02a4";
};
};
- "express-5.0.0-alpha.3" = {
+ "express-5.0.0-alpha.5" = {
name = "express";
packageName = "express";
- version = "5.0.0-alpha.3";
+ version = "5.0.0-alpha.5";
src = fetchurl {
- url = "https://registry.npmjs.org/express/-/express-5.0.0-alpha.3.tgz";
- sha1 = "19d63b931bf0f64c42725952ef0602c381fe64db";
+ url = "https://registry.npmjs.org/express/-/express-5.0.0-alpha.5.tgz";
+ sha1 = "e37423a8d82826fb915c7dd166e2900bfa3552e6";
};
};
"express-json5-0.1.0" = {
@@ -17312,22 +17942,13 @@ let
sha1 = "2af824ae20eccb8f902325b1a2c27dd6619805c9";
};
};
- "http-errors-1.6.1" = {
- name = "http-errors";
- packageName = "http-errors";
- version = "1.6.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/http-errors/-/http-errors-1.6.1.tgz";
- sha1 = "5f8b8ed98aca545656bf572997387f904a722257";
- };
- };
- "fs-ext-0.5.0" = {
+ "fs-ext-0.6.0" = {
name = "fs-ext";
packageName = "fs-ext";
- version = "0.5.0";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/fs-ext/-/fs-ext-0.5.0.tgz";
- sha1 = "9c1f9a20b8e7e012e0a914b5e19132724f44f69e";
+ url = "https://registry.npmjs.org/fs-ext/-/fs-ext-0.6.0.tgz";
+ sha1 = "27d32a72e2e7c3c8001712a0f307f5f8d91dfc66";
};
};
"crypt3-0.2.0" = {
@@ -17339,13 +17960,13 @@ let
sha1 = "4bd28e0770fad421fc807745c1ef3010905b2332";
};
};
- "router-1.1.5" = {
+ "router-1.3.0" = {
name = "router";
packageName = "router";
- version = "1.1.5";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/router/-/router-1.1.5.tgz";
- sha1 = "c9c6935201b30ac1f227ada6af86e8cea6515387";
+ url = "https://registry.npmjs.org/router/-/router-1.3.0.tgz";
+ sha1 = "15b24075c1de4a3d3f39808c5d7344a1564417c8";
};
};
"raw-body-1.3.4" = {
@@ -17438,13 +18059,13 @@ let
sha1 = "1e0f4650c862dcbfed54fd42b148e9bb1721fcf2";
};
};
- "setprototypeof-1.0.3" = {
- name = "setprototypeof";
- packageName = "setprototypeof";
- version = "1.0.3";
+ "async-2.1.5" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz";
- sha1 = "66567e37043eeb4f04d91bd658c0cbefb55b8e04";
+ url = "https://registry.npmjs.org/async/-/async-2.1.5.tgz";
+ sha1 = "e587c68580994ac67fc56ff86d3ac56bdbe810bc";
};
};
"lru-cache-2.2.0" = {
@@ -17816,31 +18437,22 @@ let
sha1 = "f877d5bf648c97e5aa542fadc16d6a259b9c11a1";
};
};
- "csso-2.3.1" = {
+ "csso-2.3.2" = {
name = "csso";
packageName = "csso";
- version = "2.3.1";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/csso/-/csso-2.3.1.tgz";
- sha1 = "4f8d91a156f2f1c2aebb40b8fb1b5eb83d94d3b9";
+ url = "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz";
+ sha1 = "ddd52c587033f49e94b71fc55569f252e8ff5f85";
};
};
- "clap-1.1.2" = {
+ "clap-1.1.3" = {
name = "clap";
packageName = "clap";
- version = "1.1.2";
+ version = "1.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/clap/-/clap-1.1.2.tgz";
- sha1 = "316545bf22229225a2cecaa6824cd2f56a9709ed";
- };
- };
- "acorn-4.0.11" = {
- name = "acorn";
- packageName = "acorn";
- version = "4.0.11";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-4.0.11.tgz";
- sha1 = "edcda3bd937e7556410d42ed5860f67399c794c0";
+ url = "https://registry.npmjs.org/clap/-/clap-1.1.3.tgz";
+ sha1 = "b3bd36e93dd4cbfb395a3c26896352445265c05b";
};
};
"enhanced-resolve-2.3.0" = {
@@ -17924,22 +18536,22 @@ let
sha1 = "f38f2c97c9889b0ee18fc6cc392e1e443ad2da8e";
};
};
- "node-appc-0.2.39" = {
+ "node-appc-0.2.41" = {
name = "node-appc";
packageName = "node-appc";
- version = "0.2.39";
+ version = "0.2.41";
src = fetchurl {
- url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.39.tgz";
- sha1 = "c8ffb1e4e1c85b0df3a443889d765de0d963a1f4";
+ url = "https://registry.npmjs.org/node-appc/-/node-appc-0.2.41.tgz";
+ sha1 = "f68cf5acb607c4903e2f63024383ae95ba1fdc52";
};
};
- "request-2.78.0" = {
+ "request-2.79.0" = {
name = "request";
packageName = "request";
- version = "2.78.0";
+ version = "2.79.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.78.0.tgz";
- sha1 = "e1c8dec346e1c81923b24acdb337f11decabe9cc";
+ url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz";
+ sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de";
};
};
"sprintf-0.1.5" = {
@@ -17960,13 +18572,13 @@ let
sha1 = "68edd769ff79d4f9528cf0e5d80021aade67480c";
};
};
- "wrench-1.5.9" = {
- name = "wrench";
- packageName = "wrench";
- version = "1.5.9";
+ "fs-extra-2.1.2" = {
+ name = "fs-extra";
+ packageName = "fs-extra";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/wrench/-/wrench-1.5.9.tgz";
- sha1 = "411691c63a9b2531b1700267279bdeca23b2142a";
+ url = "https://registry.npmjs.org/fs-extra/-/fs-extra-2.1.2.tgz";
+ sha1 = "046c70163cef9aad46b0e4a7fa467fb22d71de35";
};
};
"source-map-support-0.3.2" = {
@@ -17996,58 +18608,49 @@ let
sha1 = "8606c2cbf1c426ce8c8ec00174447fd49b6eafc1";
};
};
- "diff-2.2.1" = {
+ "async-2.1.4" = {
+ name = "async";
+ packageName = "async";
+ version = "2.1.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/async/-/async-2.1.4.tgz";
+ sha1 = "2d2160c7788032e4dd6cbe2502f1f9a2c8f6cde4";
+ };
+ };
+ "diff-3.2.0" = {
name = "diff";
packageName = "diff";
- version = "2.2.1";
+ version = "3.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-2.2.1.tgz";
- sha1 = "76ec8ea33535344078079fbe8cf03435ffb185ec";
+ url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz";
+ sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9";
};
};
- "request-2.69.0" = {
- name = "request";
- packageName = "request";
- version = "2.69.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.69.0.tgz";
- sha1 = "cf91d2e000752b1217155c005241911991a2346a";
- };
- };
- "semver-5.1.0" = {
- name = "semver";
- packageName = "semver";
- version = "5.1.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz";
- sha1 = "85f2cf8550465c4df000cf7d86f6b054106ab9e5";
- };
- };
- "wrench-1.5.8" = {
+ "wrench-1.5.9" = {
name = "wrench";
packageName = "wrench";
- version = "1.5.8";
+ version = "1.5.9";
src = fetchurl {
- url = "https://registry.npmjs.org/wrench/-/wrench-1.5.8.tgz";
- sha1 = "7a31c97f7869246d76c5cf2f5c977a1c4c8e5ab5";
+ url = "https://registry.npmjs.org/wrench/-/wrench-1.5.9.tgz";
+ sha1 = "411691c63a9b2531b1700267279bdeca23b2142a";
};
};
- "xmldom-0.1.22" = {
- name = "xmldom";
- packageName = "xmldom";
- version = "0.1.22";
- src = fetchurl {
- url = "https://registry.npmjs.org/xmldom/-/xmldom-0.1.22.tgz";
- sha1 = "10de4e5e964981f03c8cc72fadc08d14b6c3aa26";
- };
- };
- "qs-6.0.3" = {
+ "qs-6.3.2" = {
name = "qs";
packageName = "qs";
- version = "6.0.3";
+ version = "6.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.0.3.tgz";
- sha1 = "95f870b23e70268fba18704e80667515905af06c";
+ url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
+ sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
+ };
+ };
+ "bluebird-3.4.7" = {
+ name = "bluebird";
+ packageName = "bluebird";
+ version = "3.4.7";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz";
+ sha1 = "f72d760be09b7f76d08ed8fae98b289a8d05fab3";
};
};
"blueimp-md5-2.6.0" = {
@@ -18077,13 +18680,22 @@ let
sha1 = "b1d5f9c1d98af3bdd61f1bda6a86dd1aee4ff8f2";
};
};
- "diff2html-2.0.12" = {
+ "diff2html-2.3.0" = {
name = "diff2html";
packageName = "diff2html";
- version = "2.0.12";
+ version = "2.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/diff2html/-/diff2html-2.0.12.tgz";
- sha1 = "20eda2f1ffd14027716485c938e3fe21dc379455";
+ url = "https://registry.npmjs.org/diff2html/-/diff2html-2.3.0.tgz";
+ sha1 = "375fb0783ca8fa90307749399bc9c75eb7cf6580";
+ };
+ };
+ "express-4.14.1" = {
+ name = "express";
+ packageName = "express";
+ version = "4.14.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/express/-/express-4.14.1.tgz";
+ sha1 = "646c237f766f148c2120aff073817b9e4d7e0d33";
};
};
"express-session-1.14.2" = {
@@ -18131,13 +18743,13 @@ let
sha1 = "5056f5c989ab14ccf62fc20ed7598115ae7d09e3";
};
};
- "knockout-3.4.1" = {
+ "knockout-3.4.2" = {
name = "knockout";
packageName = "knockout";
- version = "3.4.1";
+ version = "3.4.2";
src = fetchurl {
- url = "https://registry.npmjs.org/knockout/-/knockout-3.4.1.tgz";
- sha1 = "8bd057bde8f7d0a02b93dda433c2a8d942d8a9a0";
+ url = "https://registry.npmjs.org/knockout/-/knockout-3.4.2.tgz";
+ sha1 = "e87958de77ad1e936f7ce645bab8b5d7c456d937";
};
};
"node-cache-4.1.1" = {
@@ -18176,13 +18788,13 @@ let
sha1 = "1fe63268c92e75606626437e3b906662c15ba6ee";
};
};
- "raven-1.1.2" = {
+ "raven-1.1.5" = {
name = "raven";
packageName = "raven";
- version = "1.1.2";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/raven/-/raven-1.1.2.tgz";
- sha1 = "a5eb3db71f2fc3015a20145bcaf28015e7ae0718";
+ url = "https://registry.npmjs.org/raven/-/raven-1.1.5.tgz";
+ sha1 = "6af541406c37da1d678781d0af411c27c6f05fbf";
};
};
"signals-1.0.0" = {
@@ -18221,22 +18833,22 @@ let
sha1 = "1accf97dd739b983bf994d56fec8f95853641b7a";
};
};
- "color-string-1.5.0" = {
+ "color-string-1.5.2" = {
name = "color-string";
packageName = "color-string";
- version = "1.5.0";
+ version = "1.5.2";
src = fetchurl {
- url = "https://registry.npmjs.org/color-string/-/color-string-1.5.0.tgz";
- sha1 = "f9a7a0553e55b34d18a463c06f13e3384dd960ce";
+ url = "https://registry.npmjs.org/color-string/-/color-string-1.5.2.tgz";
+ sha1 = "26e45814bc3c9a7cbd6751648a41434514a773a9";
};
};
- "color-name-1.1.1" = {
+ "color-name-1.1.2" = {
name = "color-name";
packageName = "color-name";
- version = "1.1.1";
+ version = "1.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/color-name/-/color-name-1.1.1.tgz";
- sha1 = "4b1415304cf50028ea81643643bd82ea05803689";
+ url = "https://registry.npmjs.org/color-name/-/color-name-1.1.2.tgz";
+ sha1 = "5c8ab72b64bd2215d617ae9559ebb148475cf98d";
};
};
"simple-swizzle-0.2.2" = {
@@ -18257,15 +18869,6 @@ let
sha1 = "c2dfc386abaa0c3e33c48db3fe87059e69065efd";
};
};
- "diff-3.2.0" = {
- name = "diff";
- packageName = "diff";
- version = "3.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz";
- sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9";
- };
- };
"hogan.js-3.0.2" = {
name = "hogan.js";
packageName = "hogan.js";
@@ -18275,13 +18878,13 @@ let
sha1 = "4cd9e1abd4294146e7679e41d7898732b02c7bfd";
};
};
- "whatwg-fetch-2.0.2" = {
+ "whatwg-fetch-2.0.3" = {
name = "whatwg-fetch";
packageName = "whatwg-fetch";
- version = "2.0.2";
+ version = "2.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.2.tgz";
- sha1 = "fe294d1d89e36c5be8b3195057f2e4bc74fc980e";
+ url = "https://registry.npmjs.org/whatwg-fetch/-/whatwg-fetch-2.0.3.tgz";
+ sha1 = "9c84ec2dcf68187ff00bc64e1274b442176e1c84";
};
};
"crc-3.4.1" = {
@@ -18491,13 +19094,13 @@ let
sha1 = "6ce67a24db1fe13f226c1171a72a7ef2b17b8f65";
};
};
- "acorn-dynamic-import-2.0.1" = {
+ "acorn-dynamic-import-2.0.2" = {
name = "acorn-dynamic-import";
packageName = "acorn-dynamic-import";
- version = "2.0.1";
+ version = "2.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.1.tgz";
- sha1 = "23f671eb6e650dab277fef477c321b1178a8cca2";
+ url = "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz";
+ sha1 = "c752bd210bef679501b6c6cb7fc84f8f47158cc4";
};
};
"enhanced-resolve-3.1.0" = {
@@ -18563,13 +19166,13 @@ let
sha1 = "7d8693907b28ce6013e7f3610aa2a1acf07dad87";
};
};
- "webpack-sources-0.1.4" = {
+ "webpack-sources-0.2.3" = {
name = "webpack-sources";
packageName = "webpack-sources";
- version = "0.1.4";
+ version = "0.2.3";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.1.4.tgz";
- sha1 = "ccc2c817e08e5fa393239412690bb481821393cd";
+ url = "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.2.3.tgz";
+ sha1 = "17c62bfaf13c707f9d02c479e0dcdde8380697fb";
};
};
"big.js-3.1.3" = {
@@ -18626,13 +19229,13 @@ let
sha1 = "290cbb232e306942d7d7ea9b83732ab7856f8285";
};
};
- "source-list-map-0.1.8" = {
+ "source-list-map-1.1.1" = {
name = "source-list-map";
packageName = "source-list-map";
- version = "0.1.8";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz";
- sha1 = "c550b2ab5427f6b3f21f5afead88c4f5587b2106";
+ url = "https://registry.npmjs.org/source-list-map/-/source-list-map-1.1.1.tgz";
+ sha1 = "1a33ac210ca144d1e561f906ebccab5669ff4cb4";
};
};
"babel-runtime-6.23.0" = {
@@ -18644,6 +19247,15 @@ let
sha1 = "0a9489f144de70efb3ce4300accdb329e2fc543b";
};
};
+ "bytes-2.5.0" = {
+ name = "bytes";
+ packageName = "bytes";
+ version = "2.5.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/bytes/-/bytes-2.5.0.tgz";
+ sha1 = "4c9423ea2d252c270c41b2bdefeff9bb6b62c06a";
+ };
+ };
"death-1.1.0" = {
name = "death";
packageName = "death";
@@ -18662,22 +19274,13 @@ let
sha1 = "3871cc0a6a002e8c3e5b3cf7f336264675f06b9d";
};
};
- "diff-2.2.3" = {
- name = "diff";
- packageName = "diff";
- version = "2.2.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/diff/-/diff-2.2.3.tgz";
- sha1 = "60eafd0d28ee906e4e8ff0a52c1229521033bf99";
- };
- };
- "inquirer-3.0.5" = {
+ "inquirer-3.0.6" = {
name = "inquirer";
packageName = "inquirer";
- version = "3.0.5";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/inquirer/-/inquirer-3.0.5.tgz";
- sha1 = "172cabc8eacbfb91d595f5d7c354b446b8141f65";
+ url = "https://registry.npmjs.org/inquirer/-/inquirer-3.0.6.tgz";
+ sha1 = "e04aaa9d05b7a3cb9b0f407d04375f0447190347";
};
};
"invariant-2.2.2" = {
@@ -18734,13 +19337,13 @@ let
sha1 = "b21f5e79bcbb6b4e23eeeced15cfc7f63e8a2e55";
};
};
- "request-capture-har-1.1.4" = {
+ "request-capture-har-1.2.2" = {
name = "request-capture-har";
packageName = "request-capture-har";
- version = "1.1.4";
+ version = "1.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/request-capture-har/-/request-capture-har-1.1.4.tgz";
- sha1 = "e6ad76eb8e7a1714553fdbeef32cd4518e4e2013";
+ url = "https://registry.npmjs.org/request-capture-har/-/request-capture-har-1.2.2.tgz";
+ sha1 = "cd692cfb2cc744fd84a3358aac6ee51528cf720d";
};
};
"roadrunner-1.1.0" = {
@@ -18797,13 +19400,13 @@ let
sha1 = "9f7ee287f82fd326d4fd162923d62129eee0dfaf";
};
};
- "onetime-2.0.0" = {
+ "onetime-2.0.1" = {
name = "onetime";
packageName = "onetime";
- version = "2.0.0";
+ version = "2.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/onetime/-/onetime-2.0.0.tgz";
- sha1 = "52aa8110e52fc5126ffc667bd8ec21c2ed209ce6";
+ url = "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz";
+ sha1 = "067428230fd67443b2794b22bba528b6867962d4";
};
};
"loose-envify-1.3.1" = {
@@ -18950,15 +19553,6 @@ let
sha1 = "7d350722061830ba6617631e0cfd3ea08398d95a";
};
};
- "update-notifier-0.6.3" = {
- name = "update-notifier";
- packageName = "update-notifier";
- version = "0.6.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/update-notifier/-/update-notifier-0.6.3.tgz";
- sha1 = "776dec8daa13e962a341e8a1d98354306b67ae08";
- };
- };
"yeoman-character-1.1.0" = {
name = "yeoman-character";
packageName = "yeoman-character";
@@ -19094,15 +19688,6 @@ let
sha1 = "848e28f7f1d50740c6747ab3cb07670462b6f89c";
};
};
- "boxen-0.3.1" = {
- name = "boxen";
- packageName = "boxen";
- version = "0.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/boxen/-/boxen-0.3.1.tgz";
- sha1 = "a7d898243ae622f7abb6bb604d740a76c6a5461b";
- };
- };
"bin-version-check-2.1.0" = {
name = "bin-version-check";
packageName = "bin-version-check";
@@ -19184,6 +19769,15 @@ let
sha1 = "92a4969065f9c70c694753d55248fc68f8f652c9";
};
};
+ "diff-2.2.3" = {
+ name = "diff";
+ packageName = "diff";
+ version = "2.2.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-2.2.3.tgz";
+ sha1 = "60eafd0d28ee906e4e8ff0a52c1229521033bf99";
+ };
+ };
"globby-4.1.0" = {
name = "globby";
packageName = "globby";
@@ -19308,7 +19902,7 @@ in
sources."kind-of-3.1.0"
sources."longest-1.0.1"
sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."path-parse-1.0.5"
sources."array-unique-0.2.1"
(sources."global-modules-0.2.3" // {
@@ -19324,9 +19918,9 @@ in
})
sources."homedir-polyfill-1.0.1"
sources."ini-1.3.4"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."parse-passwd-1.0.0"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."amdefine-1.0.1"
sources."xml2js-0.2.8"
sources."sax-0.5.8"
@@ -19343,10 +19937,10 @@ in
azure-cli = nodeEnv.buildNodePackage {
name = "azure-cli";
packageName = "azure-cli";
- version = "0.10.10";
+ version = "0.10.11";
src = fetchurl {
- url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.10.tgz";
- sha1 = "f50fe398f935d7e8751b7e84dcf02616553fcfa4";
+ url = "https://registry.npmjs.org/azure-cli/-/azure-cli-0.10.11.tgz";
+ sha1 = "aa1a379386b5c60f90f86134b4047acb1302d482";
};
dependencies = [
sources."adal-node-0.1.21"
@@ -19358,7 +19952,7 @@ in
];
})
sources."azure-arm-authorization-2.0.0"
- sources."azure-arm-cdn-1.0.2"
+ sources."azure-arm-cdn-1.0.3"
sources."azure-arm-commerce-0.2.0"
sources."azure-arm-compute-0.20.0"
sources."azure-arm-datalake-analytics-1.0.1-preview"
@@ -19413,6 +20007,7 @@ in
sources."caller-id-0.1.0"
sources."colors-1.1.2"
sources."commander-1.0.4"
+ sources."date-utils-1.2.21"
sources."easy-table-0.0.1"
sources."event-stream-3.1.5"
sources."eyes-0.1.8"
@@ -19422,15 +20017,16 @@ in
sources."jsonlint-1.6.2"
sources."jsonminify-0.4.1"
sources."jsrsasign-4.8.2"
+ sources."jwt-decode-2.2.0"
(sources."kuduscript-1.0.13" // {
dependencies = [
sources."commander-1.1.1"
sources."streamline-0.4.11"
];
})
- sources."moment-2.17.1"
- sources."ms-rest-1.15.5"
- (sources."ms-rest-azure-1.15.5" // {
+ sources."moment-2.18.1"
+ sources."ms-rest-1.15.7"
+ (sources."ms-rest-azure-1.15.7" // {
dependencies = [
sources."async-0.2.7"
];
@@ -19485,7 +20081,6 @@ in
sources."xml2js-0.1.14"
sources."xmlbuilder-0.4.3"
sources."read-1.0.7"
- sources."date-utils-1.2.21"
sources."jws-3.1.4"
sources."node-uuid-1.4.7"
sources."xmldom-0.1.27"
@@ -19513,7 +20108,7 @@ in
sources."util-deprecate-1.0.2"
sources."stack-trace-0.0.9"
sources."keypress-0.1.0"
- sources."from-0.1.3"
+ sources."from-0.1.7"
sources."map-stream-0.1.0"
sources."pause-stream-0.0.11"
sources."split-0.2.10"
@@ -19567,7 +20162,7 @@ in
sources."forever-agent-0.6.1"
(sources."form-data-1.0.1" // {
dependencies = [
- sources."async-2.1.5"
+ sources."async-2.2.0"
];
})
(sources."har-validator-2.0.6" // {
@@ -19582,9 +20177,9 @@ in
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.2.2"
+ sources."qs-6.2.3"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
sources."tunnel-agent-0.4.3"
@@ -19608,8 +20203,12 @@ in
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -19633,7 +20232,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."ctype-0.5.2"
sources."source-map-0.1.43"
@@ -19642,7 +20241,7 @@ in
sources."amdefine-1.0.1"
(sources."concat-stream-1.6.0" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
];
})
sources."http-response-object-1.1.0"
@@ -19733,7 +20332,7 @@ in
sources."timed-out-2.0.0"
sources."end-of-stream-1.0.0"
sources."inherits-2.0.3"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."stream-shift-1.0.0"
sources."once-1.3.3"
sources."wrappy-1.0.2"
@@ -19748,7 +20347,7 @@ in
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
sources."minimist-1.2.0"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
sources."trim-newlines-1.0.0"
@@ -19756,7 +20355,7 @@ in
sources."currently-unhandled-0.4.1"
sources."signal-exit-3.0.2"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
sources."builtin-modules-1.1.1"
@@ -19781,7 +20380,7 @@ in
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
sources."indent-string-2.1.0"
@@ -19815,8 +20414,8 @@ in
sources."brace-expansion-1.1.6"
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
- sources."q-1.4.1"
- sources."debug-2.6.1"
+ sources."q-1.5.0"
+ sources."debug-2.6.3"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
@@ -19885,7 +20484,7 @@ in
sources."punycode-1.4.1"
sources."querystring-es3-0.2.1"
sources."read-only-stream-2.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."resolve-1.3.2"
sources."shasum-1.0.2"
sources."shell-quote-1.6.1"
@@ -19893,11 +20492,7 @@ in
sources."stream-http-2.6.3"
sources."string_decoder-0.10.31"
sources."subarg-1.0.0"
- (sources."syntax-error-1.1.6" // {
- dependencies = [
- sources."acorn-2.7.0"
- ];
- })
+ sources."syntax-error-1.3.0"
sources."through2-2.0.3"
sources."timers-browserify-1.4.2"
sources."tty-browserify-0.0.0"
@@ -19931,7 +20526,7 @@ in
sources."util-deprecate-1.0.2"
sources."date-now-0.1.4"
sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.0"
+ sources."browserify-sign-4.0.4"
sources."create-ecdh-4.0.0"
sources."create-hash-1.1.2"
sources."create-hmac-1.1.4"
@@ -19949,7 +20544,7 @@ in
sources."bn.js-4.11.6"
sources."browserify-rsa-4.0.1"
sources."elliptic-6.4.0"
- sources."parse-asn1-5.0.0"
+ sources."parse-asn1-5.1.0"
sources."brorand-1.1.0"
sources."hash.js-1.0.3"
sources."hmac-drbg-1.0.0"
@@ -19968,16 +20563,12 @@ in
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
sources."function-bind-1.1.0"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."lexical-scope-1.2.0"
- sources."astw-2.0.0"
- sources."acorn-1.2.2"
+ sources."astw-2.2.0"
+ sources."acorn-4.0.11"
sources."stream-splicer-2.0.0"
- (sources."detective-4.3.2" // {
- dependencies = [
- sources."acorn-3.3.0"
- ];
- })
+ sources."detective-4.5.0"
sources."stream-combiner2-1.1.1"
sources."path-platform-0.11.15"
sources."buffer-shims-1.0.0"
@@ -20016,7 +20607,7 @@ in
sources."chalk-1.0.0"
sources."chromecast-player-0.2.3"
sources."debounced-seeker-1.0.0"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."diveSync-0.3.0"
sources."got-1.2.2"
sources."internal-ip-1.2.0"
@@ -20097,7 +20688,7 @@ in
sources."decamelize-1.2.0"
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
sources."trim-newlines-1.0.0"
@@ -20105,7 +20696,7 @@ in
sources."currently-unhandled-0.4.1"
sources."signal-exit-3.0.2"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."semver-5.3.0"
sources."validate-npm-package-license-3.0.1"
@@ -20124,7 +20715,7 @@ in
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
sources."indent-string-2.1.0"
@@ -20143,7 +20734,7 @@ in
sources."minimist-0.0.10"
];
})
- (sources."parse-torrent-5.8.1" // {
+ (sources."parse-torrent-5.8.2" // {
dependencies = [
sources."get-stdin-5.0.1"
];
@@ -20241,7 +20832,7 @@ in
sources."randombytes-2.0.3"
sources."run-parallel-1.1.6"
sources."inherits-2.0.3"
- sources."ip-1.1.4"
+ sources."ip-1.1.5"
sources."flatten-0.0.1"
sources."fifo-0.1.4"
(sources."peer-wire-protocol-0.7.0" // {
@@ -20289,26 +20880,26 @@ in
sources."compact2string-1.4.0"
sources."random-iterate-1.0.1"
sources."run-series-1.1.4"
- (sources."simple-peer-6.4.3" // {
+ (sources."simple-peer-6.4.4" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
(sources."simple-websocket-4.3.1" // {
dependencies = [
- sources."readable-stream-2.2.3"
- sources."ws-2.1.0"
+ sources."readable-stream-2.2.6"
+ sources."ws-2.2.2"
sources."isarray-1.0.0"
];
})
sources."string2compact-1.2.2"
- (sources."ws-1.1.2" // {
+ (sources."ws-1.1.4" // {
dependencies = [
sources."ultron-1.0.2"
];
})
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."get-browser-rtc-1.0.2"
sources."buffer-shims-1.0.0"
sources."process-nextick-args-1.0.7"
@@ -20329,7 +20920,7 @@ in
];
})
sources."hawk-0.10.2"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."cookie-jar-0.2.0"
sources."aws-sign-0.2.0"
sources."oauth-sign-0.2.0"
@@ -20349,7 +20940,7 @@ in
sources."voc-0.5.0"
(sources."concat-stream-1.6.0" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -20395,7 +20986,7 @@ in
dependencies = [
(sources."cordova-common-2.0.0" // {
dependencies = [
- sources."q-1.4.1"
+ sources."q-1.5.0"
sources."underscore-1.8.3"
];
})
@@ -20412,8 +21003,7 @@ in
(sources."insight-0.8.4" // {
dependencies = [
sources."async-1.5.2"
- sources."request-2.79.0"
- sources."qs-6.3.1"
+ sources."request-2.81.0"
];
})
sources."nopt-3.0.1"
@@ -20456,15 +21046,15 @@ in
})
(sources."cordova-fetch-1.0.2" // {
dependencies = [
- sources."q-1.4.1"
- sources."shelljs-0.7.6"
+ sources."q-1.5.0"
+ sources."shelljs-0.7.7"
sources."glob-7.1.1"
];
})
sources."cordova-js-4.2.1"
(sources."cordova-serve-1.0.1" // {
dependencies = [
- sources."q-1.4.1"
+ sources."q-1.5.0"
];
})
(sources."dep-graph-1.1.0" // {
@@ -20472,12 +21062,12 @@ in
sources."underscore-1.2.1"
];
})
- (sources."init-package-json-1.9.4" // {
+ (sources."init-package-json-1.9.5" // {
dependencies = [
- sources."glob-6.0.4"
+ sources."glob-7.1.1"
];
})
- (sources."npm-2.15.11" // {
+ (sources."npm-2.15.12" // {
dependencies = [
sources."abbrev-1.0.9"
sources."glob-7.0.6"
@@ -20488,8 +21078,14 @@ in
sources."request-2.74.0"
sources."semver-5.1.1"
sources."tar-2.2.1"
+ sources."validate-npm-package-name-2.2.2"
sources."isarray-1.0.0"
+ sources."caseless-0.11.0"
sources."form-data-1.0.1"
+ sources."har-validator-2.0.6"
+ sources."qs-6.2.3"
+ sources."tunnel-agent-0.4.3"
+ sources."builtins-0.0.7"
];
})
sources."opener-1.4.1"
@@ -20502,6 +21098,7 @@ in
sources."form-data-0.1.4"
sources."mime-types-1.0.2"
sources."qs-2.3.3"
+ sources."tunnel-agent-0.4.3"
sources."http-signature-0.10.1"
sources."oauth-sign-0.4.0"
sources."hawk-1.1.1"
@@ -20521,7 +21118,11 @@ in
})
sources."tar-1.0.2"
sources."valid-identifier-0.0.1"
- sources."xcode-0.9.1"
+ (sources."xcode-0.9.1" // {
+ dependencies = [
+ sources."node-uuid-1.4.7"
+ ];
+ })
sources."browserify-transform-tools-1.5.3"
sources."falafel-1.2.0"
sources."through-2.3.8"
@@ -20536,7 +21137,7 @@ in
];
})
sources."is-url-1.2.2"
- sources."interpret-1.0.1"
+ sources."interpret-1.0.2"
sources."rechoir-0.6.2"
sources."fs.realpath-1.0.0"
sources."resolve-1.3.2"
@@ -20589,7 +21190,7 @@ in
sources."punycode-1.4.1"
sources."querystring-es3-0.2.1"
sources."read-only-stream-2.0.0"
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."isarray-1.0.0"
];
@@ -20600,9 +21201,9 @@ in
sources."stream-http-2.6.3"
sources."string_decoder-0.10.31"
sources."subarg-1.0.0"
- (sources."syntax-error-1.1.6" // {
+ (sources."syntax-error-1.3.0" // {
dependencies = [
- sources."acorn-2.7.0"
+ sources."acorn-4.0.11"
];
})
sources."through2-2.0.3"
@@ -20634,7 +21235,7 @@ in
sources."process-nextick-args-1.0.7"
sources."date-now-0.1.4"
sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.0"
+ sources."browserify-sign-4.0.4"
sources."create-ecdh-4.0.0"
sources."create-hash-1.1.2"
sources."create-hmac-1.1.4"
@@ -20652,7 +21253,7 @@ in
sources."bn.js-4.11.6"
sources."browserify-rsa-4.0.1"
sources."elliptic-6.4.0"
- sources."parse-asn1-5.0.0"
+ sources."parse-asn1-5.1.0"
sources."brorand-1.1.0"
sources."hash.js-1.0.3"
sources."hmac-drbg-1.0.0"
@@ -20662,13 +21263,17 @@ in
sources."sha.js-2.4.8"
sources."miller-rabin-4.0.0"
sources."function-bind-1.1.0"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."lexical-scope-1.2.0"
- sources."astw-2.0.0"
- sources."stream-splicer-2.0.0"
- (sources."detective-4.3.2" // {
+ (sources."astw-2.2.0" // {
dependencies = [
- sources."acorn-3.3.0"
+ sources."acorn-4.0.11"
+ ];
+ })
+ sources."stream-splicer-2.0.0"
+ (sources."detective-4.5.0" // {
+ dependencies = [
+ sources."acorn-4.0.11"
];
})
sources."stream-combiner2-1.1.1"
@@ -20686,7 +21291,12 @@ in
sources."indexof-0.0.1"
sources."chalk-1.1.3"
sources."compression-1.6.2"
- sources."express-4.14.1"
+ (sources."express-4.15.2" // {
+ dependencies = [
+ sources."debug-2.6.1"
+ sources."ms-0.7.2"
+ ];
+ })
sources."ansi-styles-2.2.1"
sources."escape-string-regexp-1.0.5"
sources."has-ansi-2.0.0"
@@ -20695,13 +21305,13 @@ in
sources."ansi-regex-2.1.1"
sources."accepts-1.3.3"
sources."bytes-2.3.0"
- sources."compressible-2.0.9"
+ sources."compressible-2.0.10"
sources."debug-2.2.0"
sources."on-headers-1.0.1"
- sources."vary-1.1.0"
- sources."mime-types-2.1.14"
+ sources."vary-1.1.1"
+ sources."mime-types-2.1.15"
sources."negotiator-0.6.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."ms-0.7.1"
sources."array-flatten-1.1.1"
sources."content-disposition-0.5.2"
@@ -20711,49 +21321,55 @@ in
sources."depd-1.1.0"
sources."encodeurl-1.0.1"
sources."escape-html-1.0.3"
- sources."etag-1.7.0"
- sources."finalhandler-0.5.1"
- sources."fresh-0.3.0"
+ sources."etag-1.8.0"
+ (sources."finalhandler-1.0.1" // {
+ dependencies = [
+ sources."debug-2.6.3"
+ sources."ms-0.7.2"
+ ];
+ })
+ sources."fresh-0.5.0"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
sources."on-finished-2.3.0"
sources."parseurl-1.3.1"
sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.3"
- sources."qs-6.2.0"
+ sources."proxy-addr-1.1.4"
+ sources."qs-6.4.0"
sources."range-parser-1.2.0"
- (sources."send-0.14.2" // {
+ (sources."send-0.15.1" // {
dependencies = [
+ sources."debug-2.6.1"
sources."ms-0.7.2"
];
})
- sources."serve-static-1.11.2"
+ sources."serve-static-1.12.1"
+ sources."setprototypeof-1.0.3"
+ sources."statuses-1.3.1"
sources."type-is-1.6.14"
sources."utils-merge-1.0.0"
- sources."statuses-1.3.1"
sources."unpipe-1.0.0"
sources."ee-first-1.1.1"
sources."forwarded-0.1.0"
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."destroy-1.0.4"
- sources."http-errors-1.5.1"
+ sources."http-errors-1.6.1"
sources."mime-1.3.4"
- sources."setprototypeof-1.0.2"
sources."media-typer-0.3.0"
- sources."npm-package-arg-4.2.0"
+ sources."npm-package-arg-4.2.1"
sources."promzard-0.3.0"
sources."read-1.0.7"
- (sources."read-package-json-2.0.4" // {
+ (sources."read-package-json-2.0.5" // {
dependencies = [
- sources."glob-6.0.4"
+ sources."glob-7.1.1"
];
})
sources."validate-npm-package-license-3.0.1"
- sources."validate-npm-package-name-2.2.2"
- sources."hosted-git-info-2.2.0"
+ sources."validate-npm-package-name-3.0.0"
+ sources."hosted-git-info-2.4.1"
sources."mute-stream-0.0.7"
sources."json-parse-helpfulerror-1.0.3"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."graceful-fs-4.1.11"
sources."jju-1.3.0"
sources."is-builtin-module-1.0.0"
@@ -20761,7 +21377,7 @@ in
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
- sources."builtins-0.0.7"
+ sources."builtins-1.0.3"
sources."abbrev-1.1.0"
sources."ansicolors-0.3.2"
sources."ansistyles-0.1.3"
@@ -20776,9 +21392,9 @@ in
sources."config-chain-1.1.11"
sources."dezalgo-1.0.3"
sources."editor-1.0.0"
- sources."fs-vacuum-1.2.9"
- sources."fs-write-stream-atomic-1.0.8"
- sources."fstream-1.0.10"
+ sources."fs-vacuum-1.2.10"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-npm-1.1.1"
sources."github-url-from-git-1.4.0"
sources."github-url-from-username-repo-1.0.2"
@@ -20790,7 +21406,7 @@ in
sources."minimist-0.0.8"
];
})
- (sources."node-gyp-3.4.0" // {
+ (sources."node-gyp-3.6.0" // {
dependencies = [
sources."glob-7.1.1"
sources."tar-2.2.1"
@@ -20801,8 +21417,7 @@ in
sources."npm-install-checks-1.0.7"
(sources."npm-registry-client-7.2.1" // {
dependencies = [
- sources."request-2.79.0"
- sources."qs-6.3.1"
+ sources."request-2.81.0"
];
})
sources."npm-user-validate-0.1.5"
@@ -20822,7 +21437,7 @@ in
sources."text-table-0.2.0"
sources."uid-number-0.0.6"
sources."umask-1.1.0"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."write-file-atomic-1.1.4"
sources."imurmurhash-0.1.4"
sources."wcwidth-1.0.1"
@@ -20833,49 +21448,47 @@ in
sources."iferr-0.1.5"
sources."fstream-ignore-1.0.5"
sources."pseudomap-1.0.2"
- sources."yallist-2.0.0"
- sources."path-array-1.0.1"
- sources."array-index-1.0.0"
- sources."es6-symbol-3.1.0"
- sources."d-0.1.1"
- sources."es5-ext-0.10.12"
- sources."es6-iterator-2.0.0"
+ sources."yallist-2.1.2"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ (sources."ajv-4.11.5" // {
+ dependencies = [
+ sources."json-stable-stringify-1.0.1"
+ ];
+ })
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -20915,13 +21528,22 @@ in
sources."isarray-1.0.0"
];
})
- sources."node-uuid-1.4.7"
- (sources."async-2.1.5" // {
+ sources."node-uuid-1.4.8"
+ (sources."async-2.2.0" // {
dependencies = [
sources."lodash-4.17.4"
];
})
- sources."isexe-1.1.2"
+ sources."commander-2.9.0"
+ sources."is-my-json-valid-2.16.0"
+ sources."pinkie-promise-2.0.1"
+ sources."graceful-readlink-1.0.1"
+ sources."generate-function-2.0.0"
+ sources."generate-object-property-1.2.0"
+ sources."jsonpointer-4.0.1"
+ sources."is-property-1.0.2"
+ sources."pinkie-2.0.4"
+ sources."isexe-2.0.0"
sources."ctype-0.5.3"
sources."pegjs-0.9.0"
(sources."simple-plist-0.1.4" // {
@@ -20988,7 +21610,7 @@ in
];
})
sources."stream-shift-1.0.0"
- sources."rc-1.1.7"
+ sources."rc-1.2.0"
sources."deep-extend-0.4.1"
sources."strip-json-comments-2.0.1"
sources."is-finite-1.0.2"
@@ -21009,7 +21631,7 @@ in
sha1 = "19cc3eda322160fd3f7232af1cb2a360e898a2e9";
};
dependencies = [
- sources."clone-2.1.0"
+ sources."clone-2.1.1"
sources."parserlib-1.1.1"
];
buildInputs = globalBuildInputs;
@@ -21065,7 +21687,7 @@ in
})
sources."through-2.3.8"
sources."duplexer-0.1.1"
- sources."from-0.1.3"
+ sources."from-0.1.7"
sources."map-stream-0.1.0"
sources."pause-stream-0.0.11"
sources."split-0.3.3"
@@ -21099,9 +21721,9 @@ in
sources."cookie-0.1.2"
sources."merge-descriptors-0.0.2"
sources."utils-merge-1.0.0"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."negotiator-0.5.3"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."ms-0.7.0"
sources."crc-3.2.1"
sources."ee-first-1.1.0"
@@ -21172,9 +21794,9 @@ in
sources."JSONStream-0.8.4"
sources."basic-auth-1.1.0"
sources."cookie-signature-1.0.6"
- sources."cors-2.8.1"
+ sources."cors-2.8.3"
sources."docker-parse-image-3.0.1"
- sources."end-of-stream-1.1.0"
+ sources."end-of-stream-1.4.0"
sources."from2-1.3.0"
sources."fs-blob-store-5.2.1"
sources."level-0.18.0"
@@ -21213,7 +21835,7 @@ in
sources."minimist-1.2.0"
sources."split2-2.1.1"
sources."through2-2.0.3"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -21227,7 +21849,7 @@ in
(sources."tar-stream-1.5.2" // {
dependencies = [
sources."bl-1.2.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -21240,8 +21862,9 @@ in
sources."xtend-4.0.1"
sources."jsonparse-0.0.5"
sources."through-2.3.8"
- sources."vary-1.1.0"
- sources."once-1.3.3"
+ sources."object-assign-4.1.1"
+ sources."vary-1.1.1"
+ sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."inherits-2.0.3"
sources."readable-stream-1.1.14"
@@ -21251,7 +21874,8 @@ in
(sources."duplexify-3.5.0" // {
dependencies = [
sources."end-of-stream-1.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
+ sources."once-1.3.3"
sources."isarray-1.0.0"
];
})
@@ -21319,62 +21943,56 @@ in
};
dependencies = [
sources."JSONStream-1.3.1"
- sources."async-2.1.5"
+ sources."async-2.2.0"
sources."aws4-1.6.0"
sources."awscred-1.2.0"
sources."ini-1.3.4"
sources."optimist-0.6.1"
- sources."request-2.79.0"
+ sources."request-2.81.0"
sources."jsonparse-1.3.0"
sources."through-2.3.8"
sources."lodash-4.17.4"
sources."wordwrap-0.0.3"
sources."minimist-0.0.10"
sources."aws-sign2-0.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -21398,7 +22016,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
];
buildInputs = globalBuildInputs;
@@ -21444,10 +22062,10 @@ in
sources."signal-exit-3.0.2"
sources."strip-eof-1.0.0"
sources."lru-cache-4.0.2"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."pseudomap-1.0.2"
- sources."yallist-2.0.0"
- sources."isexe-1.1.2"
+ sources."yallist-2.1.2"
+ sources."isexe-2.0.0"
sources."object-assign-4.1.1"
sources."pinkie-promise-2.0.1"
sources."pinkie-2.0.4"
@@ -21474,14 +22092,14 @@ in
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
sources."minimist-1.2.0"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
sources."trim-newlines-1.0.0"
sources."camelcase-2.1.1"
sources."currently-unhandled-0.4.1"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."semver-5.3.0"
sources."validate-npm-package-license-3.0.1"
@@ -21498,7 +22116,7 @@ in
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
sources."indent-string-2.1.0"
@@ -21519,30 +22137,31 @@ in
eslint = nodeEnv.buildNodePackage {
name = "eslint";
packageName = "eslint";
- version = "3.16.1";
+ version = "3.18.0";
src = fetchurl {
- url = "https://registry.npmjs.org/eslint/-/eslint-3.16.1.tgz";
- sha1 = "9bc31fc7341692cf772e80607508f67d711c5609";
+ url = "https://registry.npmjs.org/eslint/-/eslint-3.18.0.tgz";
+ sha1 = "647e985c4ae71502d20ac62c109f66d5104c8a4b";
};
dependencies = [
sources."babel-code-frame-6.22.0"
sources."chalk-1.1.3"
sources."concat-stream-1.6.0"
- sources."debug-2.6.1"
- sources."doctrine-1.5.0"
+ sources."debug-2.6.3"
+ sources."doctrine-2.0.0"
sources."escope-3.6.0"
sources."espree-3.4.0"
+ sources."esquery-1.0.0"
sources."estraverse-4.2.0"
sources."esutils-2.0.2"
sources."file-entry-cache-2.0.0"
sources."glob-7.1.1"
- sources."globals-9.16.0"
- sources."ignore-3.2.4"
+ sources."globals-9.17.0"
+ sources."ignore-3.2.6"
sources."imurmurhash-0.1.4"
sources."inquirer-0.12.0"
sources."is-my-json-valid-2.16.0"
sources."is-resolvable-1.0.0"
- sources."js-yaml-3.8.1"
+ sources."js-yaml-3.8.2"
sources."json-stable-stringify-1.0.1"
sources."levn-0.3.0"
sources."lodash-4.17.4"
@@ -21553,7 +22172,7 @@ in
sources."pluralize-1.2.1"
sources."progress-1.1.8"
sources."require-uncached-1.0.3"
- sources."shelljs-0.7.6"
+ sources."shelljs-0.7.7"
sources."strip-bom-3.0.0"
sources."strip-json-comments-2.0.1"
(sources."table-3.8.3" // {
@@ -21573,7 +22192,7 @@ in
sources."ansi-regex-2.1.1"
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -21581,19 +22200,19 @@ in
sources."string_decoder-0.10.31"
sources."util-deprecate-1.0.2"
sources."ms-0.7.2"
- sources."es6-map-0.1.4"
- sources."es6-weak-map-2.0.1"
+ sources."es6-map-0.1.5"
+ sources."es6-weak-map-2.0.2"
(sources."esrecurse-4.1.0" // {
dependencies = [
sources."estraverse-4.1.1"
];
})
- sources."d-0.1.1"
- sources."es5-ext-0.10.12"
- sources."es6-iterator-2.0.0"
- sources."es6-set-0.1.4"
- sources."es6-symbol-3.1.0"
- sources."event-emitter-0.3.4"
+ sources."d-1.0.0"
+ sources."es5-ext-0.10.15"
+ sources."es6-iterator-2.0.1"
+ sources."es6-set-0.1.5"
+ sources."es6-symbol-3.1.1"
+ sources."event-emitter-0.3.5"
sources."object-assign-4.1.1"
sources."acorn-4.0.4"
(sources."acorn-jsx-3.0.1" // {
@@ -21661,11 +22280,11 @@ in
sources."caller-path-0.1.0"
sources."resolve-from-1.0.1"
sources."callsites-0.2.0"
- sources."interpret-1.0.1"
+ sources."interpret-1.0.2"
sources."rechoir-0.6.2"
sources."resolve-1.3.2"
sources."path-parse-1.0.5"
- sources."ajv-4.11.3"
+ sources."ajv-4.11.5"
sources."ajv-keywords-1.5.1"
sources."slice-ansi-0.0.4"
sources."co-4.6.0"
@@ -21805,7 +22424,7 @@ in
sources."filename-regex-2.0.0"
sources."is-extglob-1.0.0"
sources."kind-of-3.1.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
sources."parse-glob-3.0.4"
sources."regex-cache-0.4.3"
@@ -21820,17 +22439,18 @@ in
sources."repeat-string-1.6.1"
sources."isarray-1.0.0"
sources."is-posix-bracket-0.1.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
sources."glob-base-0.3.0"
sources."is-dotfile-1.0.2"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
sources."binary-extensions-1.8.0"
sources."graceful-fs-4.1.11"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."set-immediate-shim-1.0.1"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -21838,30 +22458,28 @@ in
sources."string_decoder-0.10.31"
sources."util-deprecate-1.0.2"
sources."nan-2.5.1"
- sources."node-pre-gyp-0.6.33"
+ sources."node-pre-gyp-0.6.34"
(sources."mkdirp-0.5.1" // {
dependencies = [
sources."minimist-0.0.8"
];
})
- sources."nopt-3.0.6"
+ sources."nopt-4.0.1"
sources."npmlog-4.0.2"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
- sources."request-2.79.0"
- sources."rimraf-2.5.4"
+ sources."request-2.81.0"
+ sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."tar-2.2.1"
- (sources."tar-pack-3.3.0" // {
- dependencies = [
- sources."once-1.3.3"
- sources."readable-stream-2.1.5"
- ];
- })
+ sources."tar-pack-3.4.0"
sources."abbrev-1.1.0"
+ sources."osenv-0.1.4"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
sources."are-we-there-yet-1.1.2"
sources."console-control-strings-1.1.0"
(sources."gauge-2.7.3" // {
@@ -21886,48 +22504,44 @@ in
sources."strip-json-comments-2.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -21951,7 +22565,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."glob-7.1.1"
sources."fs.realpath-1.0.0"
@@ -21959,11 +22573,11 @@ in
sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
- sources."debug-2.2.0"
+ sources."fstream-1.0.11"
+ sources."debug-2.6.3"
sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."ms-0.7.1"
+ sources."ms-0.7.2"
sources."brace-expansion-1.1.6"
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
@@ -21975,7 +22589,6 @@ in
sources."lazy-1.0.11"
sources."caller-0.0.1"
sources."tape-2.3.3"
- sources."jsonify-0.0.0"
sources."deep-equal-0.1.2"
sources."defined-0.0.0"
sources."through-2.3.8"
@@ -21994,14 +22607,18 @@ in
git-run = nodeEnv.buildNodePackage {
name = "git-run";
packageName = "git-run";
- version = "0.5.3";
+ version = "0.5.4";
src = fetchurl {
- url = "https://registry.npmjs.org/git-run/-/git-run-0.5.3.tgz";
- sha1 = "92005049d5514753d53c4f90fd6f2b2b29a8e08c";
+ url = "https://registry.npmjs.org/git-run/-/git-run-0.5.4.tgz";
+ sha1 = "466a7253a54f526ca2f57ca78780895b95efaee4";
};
dependencies = [
+ sources."async-2.2.0"
+ sources."lodash.groupby-4.6.0"
sources."minilog-2.0.8"
+ sources."simple-git-1.69.0"
sources."tabtab-git+https://github.com/mixu/node-tabtab.git"
+ sources."lodash-4.17.4"
sources."microee-0.0.2"
];
buildInputs = globalBuildInputs;
@@ -22082,7 +22699,7 @@ in
sources."source-map-0.1.43"
];
})
- (sources."uglify-js-2.7.5" // {
+ (sources."uglify-js-2.8.20" // {
dependencies = [
sources."source-map-0.5.6"
];
@@ -22106,9 +22723,8 @@ in
sources."css-stringify-1.0.5"
sources."optimist-0.3.7"
sources."wordwrap-0.0.3"
- sources."async-0.2.10"
- sources."uglify-to-browserify-1.0.2"
sources."yargs-3.10.0"
+ sources."uglify-to-browserify-1.0.2"
sources."camelcase-1.2.1"
(sources."cliui-2.1.0" // {
dependencies = [
@@ -22124,7 +22740,7 @@ in
sources."kind-of-3.1.0"
sources."longest-1.0.1"
sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."acorn-globals-1.0.9"
sources."pop-iterate-1.0.1"
sources."weak-map-1.0.5"
@@ -22153,14 +22769,14 @@ in
sources."chalk-1.1.3"
sources."deprecated-0.0.1"
sources."gulp-util-3.0.8"
- sources."interpret-1.0.1"
+ sources."interpret-1.0.2"
sources."liftoff-2.3.0"
sources."minimist-1.2.0"
sources."orchestrator-0.3.8"
sources."pretty-hrtime-1.0.3"
sources."semver-4.3.6"
sources."tildify-1.2.0"
- sources."v8flags-2.0.11"
+ sources."v8flags-2.0.12"
(sources."vinyl-fs-0.3.14" // {
dependencies = [
sources."through2-0.6.5"
@@ -22191,7 +22807,7 @@ in
sources."replace-ext-0.0.1"
(sources."through2-2.0.3" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -22245,7 +22861,7 @@ in
sources."extglob-0.3.2"
sources."filename-regex-2.0.0"
sources."kind-of-3.1.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
sources."parse-glob-3.0.4"
sources."regex-cache-0.4.3"
@@ -22263,10 +22879,11 @@ in
sources."randomatic-1.1.6"
sources."repeat-string-1.6.1"
sources."is-posix-bracket-0.1.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
sources."glob-base-0.3.0"
sources."is-dotfile-1.0.2"
sources."glob-parent-2.0.0"
@@ -22279,9 +22896,9 @@ in
sources."is-windows-0.2.0"
sources."homedir-polyfill-1.0.1"
sources."ini-1.3.4"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."parse-passwd-1.0.0"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."lodash.assignwith-4.2.0"
sources."lodash.isempty-4.4.0"
sources."lodash.pick-4.4.0"
@@ -22362,7 +22979,7 @@ in
sources."redis-0.10.3"
sources."lru-cache-2.5.2"
sources."minimist-0.0.8"
- sources."eventemitter3-2.0.2"
+ sources."eventemitter3-2.0.3"
];
buildInputs = globalBuildInputs;
meta = {
@@ -22481,7 +23098,7 @@ in
sources."source-map-0.4.4"
];
})
- (sources."js-yaml-3.8.1" // {
+ (sources."js-yaml-3.8.2" // {
dependencies = [
sources."esprima-3.1.3"
];
@@ -22495,7 +23112,7 @@ in
sources."once-1.4.0"
sources."resolve-1.1.7"
sources."supports-color-3.2.3"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."wordwrap-1.0.0"
sources."estraverse-1.9.3"
sources."esutils-2.0.2"
@@ -22520,15 +23137,14 @@ in
sources."wordwrap-0.0.3"
];
})
- (sources."uglify-js-2.7.5" // {
+ (sources."uglify-js-2.8.20" // {
dependencies = [
- sources."async-0.2.10"
sources."source-map-0.5.6"
];
})
sources."minimist-0.0.10"
- sources."uglify-to-browserify-1.0.2"
sources."yargs-3.10.0"
+ sources."uglify-to-browserify-1.0.2"
sources."camelcase-1.2.1"
(sources."cliui-2.1.0" // {
dependencies = [
@@ -22544,11 +23160,11 @@ in
sources."kind-of-3.1.0"
sources."longest-1.0.1"
sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."argparse-1.0.9"
sources."sprintf-js-1.0.3"
sources."has-flag-1.0.0"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -22631,15 +23247,15 @@ in
json = nodeEnv.buildNodePackage {
name = "json";
packageName = "json";
- version = "9.0.4";
+ version = "9.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/json/-/json-9.0.4.tgz";
- sha1 = "d0dbf2404c128572a935ecafadfc782ec81112ce";
+ url = "https://registry.npmjs.org/json/-/json-9.0.6.tgz";
+ sha1 = "7972c2a5a48a42678db2730c7c2c4ee6e4e24585";
};
buildInputs = globalBuildInputs;
meta = {
description = "a 'json' command for massaging and processing JSON on the command line";
- homepage = https://github.com/trentm/json;
+ homepage = "https://github.com/trentm/json#readme";
};
production = true;
};
@@ -22661,10 +23277,10 @@ in
js-yaml = nodeEnv.buildNodePackage {
name = "js-yaml";
packageName = "js-yaml";
- version = "3.8.1";
+ version = "3.8.2";
src = fetchurl {
- url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.1.tgz";
- sha1 = "782ba50200be7b9e5a8537001b7804db3ad02628";
+ url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.8.2.tgz";
+ sha1 = "02d3e2c0f6beab20248d412c352203827d786721";
};
dependencies = [
sources."argparse-1.0.9"
@@ -22688,8 +23304,8 @@ in
sha1 = "9c4c14f0400bef2c04c8e8e6bff59371025cc009";
};
dependencies = [
- sources."bluebird-3.4.7"
- sources."body-parser-1.16.1"
+ sources."bluebird-3.5.0"
+ sources."body-parser-1.17.1"
sources."chokidar-1.6.1"
sources."colors-1.1.2"
(sources."combine-lists-1.0.1" // {
@@ -22736,26 +23352,26 @@ in
})
sources."source-map-0.5.6"
sources."tmp-0.0.31"
- sources."useragent-2.1.12"
+ sources."useragent-2.1.13"
sources."bytes-2.4.0"
sources."content-type-1.0.2"
sources."debug-2.6.1"
sources."depd-1.1.0"
- sources."http-errors-1.5.1"
+ sources."http-errors-1.6.1"
sources."iconv-lite-0.4.15"
sources."on-finished-2.3.0"
- sources."qs-6.2.1"
+ sources."qs-6.4.0"
sources."raw-body-2.2.0"
sources."type-is-1.6.14"
sources."ms-0.7.2"
sources."inherits-2.0.3"
- sources."setprototypeof-1.0.2"
+ sources."setprototypeof-1.0.3"
sources."statuses-1.3.1"
sources."ee-first-1.1.1"
sources."unpipe-1.0.0"
sources."media-typer-0.3.0"
- sources."mime-types-2.1.14"
- sources."mime-db-1.26.0"
+ sources."mime-types-2.1.15"
+ sources."mime-db-1.27.0"
sources."anymatch-1.3.0"
sources."async-each-1.0.1"
sources."glob-parent-2.0.0"
@@ -22774,7 +23390,7 @@ in
sources."filename-regex-2.0.0"
sources."is-extglob-1.0.0"
sources."kind-of-3.1.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
sources."parse-glob-3.0.4"
sources."regex-cache-0.4.3"
@@ -22789,16 +23405,17 @@ in
sources."repeat-string-1.6.1"
sources."isarray-1.0.0"
sources."is-posix-bracket-0.1.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
sources."glob-base-0.3.0"
sources."is-dotfile-1.0.2"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
sources."binary-extensions-1.8.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."set-immediate-shim-1.0.1"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -22806,36 +23423,24 @@ in
sources."string_decoder-0.10.31"
sources."util-deprecate-1.0.2"
sources."nan-2.5.1"
- (sources."node-pre-gyp-0.6.33" // {
- dependencies = [
- sources."rimraf-2.5.4"
- ];
- })
+ sources."node-pre-gyp-0.6.34"
sources."mkdirp-0.5.1"
- sources."nopt-3.0.6"
+ sources."nopt-4.0.1"
sources."npmlog-4.0.2"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
- (sources."request-2.79.0" // {
- dependencies = [
- sources."qs-6.3.1"
- ];
- })
+ sources."request-2.81.0"
sources."semver-5.3.0"
sources."tar-2.2.1"
- (sources."tar-pack-3.3.0" // {
- dependencies = [
- sources."debug-2.2.0"
- sources."readable-stream-2.1.5"
- sources."rimraf-2.5.4"
- sources."ms-0.7.1"
- ];
- })
+ sources."tar-pack-3.4.0"
sources."minimist-0.0.8"
sources."abbrev-1.1.0"
+ sources."osenv-0.1.4"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
sources."are-we-there-yet-1.1.2"
sources."console-control-strings-1.1.0"
sources."gauge-2.7.3"
@@ -22857,46 +23462,41 @@ in
sources."strip-json-comments-2.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -22922,9 +23522,9 @@ in
sources."bcrypt-pbkdf-1.0.1"
sources."punycode-1.4.1"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-ignore-1.0.5"
- sources."once-1.3.3"
+ sources."once-1.4.0"
sources."uid-number-0.0.6"
sources."wrappy-1.0.2"
sources."finalhandler-1.0.0"
@@ -23006,7 +23606,6 @@ in
sources."better-assert-1.0.2"
sources."callsite-1.0.0"
sources."json3-3.3.2"
- sources."os-tmpdir-1.0.2"
sources."lru-cache-2.2.4"
];
buildInputs = globalBuildInputs;
@@ -23079,15 +23678,14 @@ in
(sources."express-session-1.11.3" // {
dependencies = [
sources."uid-safe-2.0.0"
- sources."base64-url-1.2.1"
];
})
sources."finalhandler-0.4.0"
sources."http-errors-1.3.1"
- (sources."method-override-2.3.7" // {
+ (sources."method-override-2.3.8" // {
dependencies = [
- sources."debug-2.3.3"
- sources."vary-1.1.0"
+ sources."debug-2.6.3"
+ sources."vary-1.1.1"
sources."ms-0.7.2"
];
})
@@ -23132,18 +23730,18 @@ in
sources."ee-first-1.1.1"
sources."unpipe-1.0.0"
sources."accepts-1.2.13"
- sources."compressible-2.0.9"
- sources."mime-types-2.1.14"
+ sources."compressible-2.0.10"
+ sources."mime-types-2.1.15"
sources."negotiator-0.5.3"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."ms-0.7.1"
- sources."csrf-3.0.4"
- sources."base64-url-1.3.3"
+ sources."csrf-3.0.6"
sources."rndm-1.2.0"
sources."tsscmp-1.0.5"
- sources."uid-safe-2.1.3"
+ sources."uid-safe-2.1.4"
sources."random-bytes-1.0.0"
sources."crc-3.3.0"
+ sources."base64-url-1.2.1"
sources."inherits-2.0.3"
sources."statuses-1.3.1"
sources."readable-stream-1.1.14"
@@ -23188,7 +23786,7 @@ in
sources."through2-2.0.3"
sources."vinyl-1.2.0"
sources."vinyl-fs-2.4.4"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."xtend-4.0.1"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -23256,7 +23854,7 @@ in
})
sources."filename-regex-2.0.0"
sources."kind-of-3.1.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
(sources."parse-glob-3.0.4" // {
dependencies = [
@@ -23275,10 +23873,11 @@ in
sources."randomatic-1.1.6"
sources."repeat-string-1.6.1"
sources."is-posix-bracket-0.1.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
(sources."glob-base-0.3.0" // {
dependencies = [
sources."glob-parent-2.0.0"
@@ -23293,7 +23892,7 @@ in
sources."extend-shallow-2.0.1"
sources."json-stable-stringify-1.0.1"
sources."jsonify-0.0.0"
- sources."convert-source-map-1.4.0"
+ sources."convert-source-map-1.5.0"
sources."minimist-0.0.8"
sources."is-utf8-0.2.1"
sources."first-chunk-stream-1.0.0"
@@ -23415,10 +24014,10 @@ in
node2nix = nodeEnv.buildNodePackage {
name = "node2nix";
packageName = "node2nix";
- version = "1.1.1";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node2nix/-/node2nix-1.1.1.tgz";
- sha1 = "f58c3157be2ffcb8253f82641b5f0473543d21e8";
+ url = "https://registry.npmjs.org/node2nix/-/node2nix-1.2.0.tgz";
+ sha1 = "3c0a578ffebc231a14f0c0e9078b8063ff776408";
};
dependencies = [
sources."optparse-1.0.5"
@@ -23448,17 +24047,17 @@ in
sources."concat-stream-1.6.0"
sources."graceful-fs-4.1.11"
sources."mkdirp-0.5.1"
- sources."normalize-package-data-2.3.5"
- sources."npm-package-arg-4.2.0"
+ sources."normalize-package-data-2.3.6"
+ sources."npm-package-arg-4.2.1"
sources."once-1.4.0"
- sources."request-2.79.0"
+ sources."request-2.81.0"
sources."retry-0.8.0"
sources."rimraf-2.6.1"
sources."slide-1.1.6"
sources."npmlog-3.1.2"
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -23466,7 +24065,7 @@ in
sources."string_decoder-0.10.31"
sources."util-deprecate-1.0.2"
sources."minimist-0.0.8"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
sources."builtin-modules-1.1.1"
@@ -23476,50 +24075,44 @@ in
sources."wrappy-1.0.2"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -23543,7 +24136,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."glob-7.1.1"
sources."fs.realpath-1.0.0"
@@ -23564,10 +24157,12 @@ in
sources."object-assign-4.1.1"
sources."signal-exit-3.0.2"
sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
sources."wide-align-1.1.0"
sources."code-point-at-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
sources."number-is-nan-1.0.1"
+ sources."ansi-regex-2.1.1"
sources."config-chain-1.1.11"
sources."ini-1.3.4"
sources."nopt-3.0.6"
@@ -23578,7 +24173,7 @@ in
sources."os-homedir-1.0.2"
sources."os-tmpdir-1.0.2"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
(sources."fs-extra-0.6.4" // {
dependencies = [
sources."mkdirp-0.3.5"
@@ -23595,19 +24190,20 @@ in
meta = {
description = "Generate Nix expressions to build NPM packages";
homepage = https://github.com/svanderburg/node2nix;
+ license = "MIT";
};
production = true;
};
node-gyp = nodeEnv.buildNodePackage {
name = "node-gyp";
packageName = "node-gyp";
- version = "3.5.0";
+ version = "3.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.5.0.tgz";
- sha1 = "a8fe5e611d079ec16348a3eb960e78e11c85274a";
+ url = "https://registry.npmjs.org/node-gyp/-/node-gyp-3.6.0.tgz";
+ sha1 = "7474f63a3a0501161dda0b6341f022f14c423fa6";
};
dependencies = [
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."glob-7.1.1"
sources."graceful-fs-4.1.11"
sources."minimatch-3.0.3"
@@ -23615,11 +24211,11 @@ in
sources."nopt-3.0.6"
sources."npmlog-4.0.2"
sources."osenv-0.1.4"
- sources."request-2.79.0"
+ sources."request-2.81.0"
sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."tar-2.2.1"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."inherits-2.0.3"
sources."fs.realpath-1.0.0"
sources."inflight-1.0.6"
@@ -23636,7 +24232,7 @@ in
sources."gauge-2.7.3"
sources."set-blocking-2.0.0"
sources."delegates-1.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -23658,48 +24254,44 @@ in
sources."os-tmpdir-1.0.2"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -23723,10 +24315,10 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."block-stream-0.0.9"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -23739,36 +24331,34 @@ in
node-inspector = nodeEnv.buildNodePackage {
name = "node-inspector";
packageName = "node-inspector";
- version = "0.12.8";
+ version = "1.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/node-inspector/-/node-inspector-0.12.8.tgz";
- sha1 = "a59c3dc47cb08d15a2e526be3a1da7d64e5c227f";
+ url = "https://registry.npmjs.org/node-inspector/-/node-inspector-1.0.0.tgz";
+ sha1 = "c6221619e3f0bd8f1f24e0e882a65eb793f69d37";
};
dependencies = [
sources."async-0.9.2"
sources."biased-opener-0.2.8"
- sources."debug-2.6.1"
- (sources."express-4.14.1" // {
+ sources."debug-2.6.3"
+ (sources."express-4.15.2" // {
dependencies = [
- sources."debug-2.2.0"
- sources."ms-0.7.1"
+ sources."debug-2.6.1"
];
})
sources."glob-5.0.15"
sources."path-is-absolute-1.0.1"
- sources."rc-1.1.7"
+ sources."rc-1.2.0"
sources."semver-4.3.6"
- (sources."serve-favicon-2.4.0" // {
+ (sources."serve-favicon-2.4.2" // {
dependencies = [
- sources."etag-1.8.0"
- sources."fresh-0.4.0"
+ sources."ms-1.0.0"
];
})
sources."strong-data-uri-1.0.4"
- sources."v8-debug-0.7.7"
- sources."v8-profiler-5.6.5"
- sources."which-1.2.12"
- sources."ws-1.1.2"
+ sources."v8-debug-1.0.1"
+ sources."v8-profiler-5.7.0"
+ sources."which-1.2.14"
+ sources."ws-1.1.4"
sources."yargs-3.32.0"
sources."browser-launcher2-0.4.6"
sources."minimist-1.2.0"
@@ -23810,7 +24400,7 @@ in
sources."decamelize-1.2.0"
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."object-assign-4.1.1"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
@@ -23819,7 +24409,7 @@ in
sources."currently-unhandled-0.4.1"
sources."signal-exit-3.0.2"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
sources."builtin-modules-1.1.1"
@@ -23837,7 +24427,7 @@ in
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
sources."indent-string-2.1.0"
@@ -23856,48 +24446,39 @@ in
sources."depd-1.1.0"
sources."encodeurl-1.0.1"
sources."escape-html-1.0.3"
- sources."etag-1.7.0"
- (sources."finalhandler-0.5.1" // {
- dependencies = [
- sources."debug-2.2.0"
- sources."ms-0.7.1"
- ];
- })
- sources."fresh-0.3.0"
+ sources."etag-1.8.0"
+ sources."finalhandler-1.0.1"
+ sources."fresh-0.5.0"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
sources."on-finished-2.3.0"
sources."parseurl-1.3.1"
sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.3"
- sources."qs-6.2.0"
+ sources."proxy-addr-1.1.4"
+ sources."qs-6.4.0"
sources."range-parser-1.2.0"
- (sources."send-0.14.2" // {
+ (sources."send-0.15.1" // {
dependencies = [
- (sources."debug-2.2.0" // {
- dependencies = [
- sources."ms-0.7.1"
- ];
- })
+ sources."debug-2.6.1"
];
})
- sources."serve-static-1.11.2"
+ sources."serve-static-1.12.1"
+ sources."setprototypeof-1.0.3"
+ sources."statuses-1.3.1"
sources."type-is-1.6.14"
sources."utils-merge-1.0.0"
- sources."vary-1.1.0"
- sources."mime-types-2.1.14"
+ sources."vary-1.1.1"
+ sources."mime-types-2.1.15"
sources."negotiator-0.6.1"
- sources."mime-db-1.26.0"
- sources."statuses-1.3.1"
+ sources."mime-db-1.27.0"
sources."unpipe-1.0.0"
sources."ee-first-1.1.1"
sources."forwarded-0.1.0"
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."destroy-1.0.4"
- sources."http-errors-1.5.1"
+ sources."http-errors-1.6.1"
sources."mime-1.3.4"
sources."inherits-2.0.3"
- sources."setprototypeof-1.0.2"
sources."media-typer-0.3.0"
sources."inflight-1.0.6"
sources."minimatch-3.0.3"
@@ -23911,28 +24492,20 @@ in
sources."strip-json-comments-2.0.1"
sources."truncate-1.0.5"
sources."nan-2.5.1"
- (sources."node-pre-gyp-0.6.33" // {
+ (sources."node-pre-gyp-0.6.34" // {
dependencies = [
- sources."rimraf-2.5.4"
+ sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."glob-7.1.1"
];
})
- sources."nopt-3.0.6"
+ sources."nopt-4.0.1"
sources."npmlog-4.0.2"
- (sources."request-2.79.0" // {
- dependencies = [
- sources."qs-6.3.1"
- ];
- })
+ sources."request-2.81.0"
sources."tar-2.2.1"
- (sources."tar-pack-3.3.0" // {
+ (sources."tar-pack-3.4.0" // {
dependencies = [
- sources."debug-2.2.0"
- sources."once-1.3.3"
- sources."readable-stream-2.1.5"
- sources."rimraf-2.5.4"
- sources."ms-0.7.1"
+ sources."rimraf-2.6.1"
sources."glob-7.1.1"
];
})
@@ -23942,7 +24515,7 @@ in
sources."gauge-2.7.3"
sources."set-blocking-2.0.0"
sources."delegates-1.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -23958,43 +24531,42 @@ in
sources."ansi-regex-2.1.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -24021,10 +24593,10 @@ in
sources."punycode-1.4.1"
sources."fs.realpath-1.0.0"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."options-0.0.6"
sources."ultron-1.0.2"
sources."cliui-3.2.0"
@@ -24045,38 +24617,36 @@ in
node-pre-gyp = nodeEnv.buildNodePackage {
name = "node-pre-gyp";
packageName = "node-pre-gyp";
- version = "0.6.33";
+ version = "0.6.34";
src = fetchurl {
- url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.33.tgz";
- sha1 = "640ac55198f6a925972e0c16c4ac26a034d5ecc9";
+ url = "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.34.tgz";
+ sha1 = "94ad1c798a11d7fc67381b50d47f8cc18d9799f7";
};
dependencies = [
sources."mkdirp-0.5.1"
- sources."nopt-3.0.6"
+ sources."nopt-4.0.1"
sources."npmlog-4.0.2"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
- sources."request-2.79.0"
- sources."rimraf-2.5.4"
+ sources."request-2.81.0"
+ sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."tar-2.2.1"
- (sources."tar-pack-3.3.0" // {
- dependencies = [
- sources."once-1.3.3"
- sources."readable-stream-2.1.5"
- ];
- })
+ sources."tar-pack-3.4.0"
sources."minimist-0.0.8"
sources."abbrev-1.1.0"
+ sources."osenv-0.1.4"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
sources."are-we-there-yet-1.1.2"
sources."console-control-strings-1.1.0"
sources."gauge-2.7.3"
sources."set-blocking-2.0.0"
sources."delegates-1.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -24100,48 +24670,44 @@ in
sources."strip-json-comments-2.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -24165,7 +24731,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."glob-7.1.1"
sources."fs.realpath-1.0.0"
@@ -24178,12 +24744,12 @@ in
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."graceful-fs-4.1.11"
- sources."debug-2.2.0"
+ sources."debug-2.6.3"
sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."ms-0.7.1"
+ sources."ms-0.7.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -24203,11 +24769,7 @@ in
};
dependencies = [
sources."chokidar-1.6.1"
- (sources."debug-2.6.1" // {
- dependencies = [
- sources."ms-0.7.2"
- ];
- })
+ sources."debug-2.6.3"
sources."es6-promise-3.3.1"
sources."ignore-by-default-1.0.1"
sources."lodash.defaults-3.1.2"
@@ -24239,7 +24801,7 @@ in
sources."filename-regex-2.0.0"
sources."is-extglob-1.0.0"
sources."kind-of-3.1.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
sources."parse-glob-3.0.4"
sources."regex-cache-0.4.3"
@@ -24254,17 +24816,18 @@ in
sources."repeat-string-1.6.1"
sources."isarray-1.0.0"
sources."is-posix-bracket-0.1.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
sources."glob-base-0.3.0"
sources."is-dotfile-1.0.2"
sources."is-equal-shallow-0.1.3"
sources."is-primitive-2.0.0"
sources."binary-extensions-1.8.0"
sources."graceful-fs-4.1.11"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."set-immediate-shim-1.0.1"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -24272,28 +24835,25 @@ in
sources."string_decoder-0.10.31"
sources."util-deprecate-1.0.2"
sources."nan-2.5.1"
- sources."node-pre-gyp-0.6.33"
+ sources."node-pre-gyp-0.6.34"
sources."mkdirp-0.5.1"
- sources."nopt-3.0.6"
+ sources."nopt-4.0.1"
sources."npmlog-4.0.2"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
- sources."request-2.79.0"
- sources."rimraf-2.5.4"
+ sources."request-2.81.0"
+ sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."tar-2.2.1"
- (sources."tar-pack-3.3.0" // {
- dependencies = [
- sources."debug-2.2.0"
- sources."once-1.3.3"
- sources."readable-stream-2.1.5"
- ];
- })
+ sources."tar-pack-3.4.0"
sources."minimist-0.0.8"
sources."abbrev-1.1.0"
+ sources."osenv-0.1.4"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
sources."are-we-there-yet-1.1.2"
sources."console-control-strings-1.1.0"
sources."gauge-2.7.3"
@@ -24315,48 +24875,44 @@ in
sources."strip-json-comments-2.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -24380,7 +24936,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."glob-7.1.1"
sources."fs.realpath-1.0.0"
@@ -24388,10 +24944,10 @@ in
sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."ms-0.7.1"
+ sources."ms-0.7.2"
sources."lodash.assign-3.2.0"
sources."lodash.restparam-3.6.1"
sources."lodash._baseassign-3.2.0"
@@ -24409,11 +24965,12 @@ in
sources."event-stream-3.3.4"
sources."through-2.3.8"
sources."duplexer-0.1.1"
- sources."from-0.1.3"
+ sources."from-0.1.7"
sources."map-stream-0.1.0"
sources."pause-stream-0.0.11"
sources."split-0.3.3"
sources."stream-combiner-0.0.4"
+ sources."chalk-1.1.3"
(sources."configstore-1.4.0" // {
dependencies = [
sources."uuid-2.0.3"
@@ -24424,11 +24981,12 @@ in
sources."repeating-1.1.3"
sources."semver-diff-2.1.0"
sources."string-length-1.0.1"
- sources."os-tmpdir-1.0.2"
- sources."osenv-0.1.4"
+ sources."ansi-styles-2.2.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."has-ansi-2.0.0"
+ sources."supports-color-2.0.0"
sources."write-file-atomic-1.3.1"
sources."xdg-basedir-2.0.0"
- sources."os-homedir-1.0.2"
sources."imurmurhash-0.1.4"
sources."slide-1.1.6"
sources."package-json-1.2.0"
@@ -24453,6 +25011,8 @@ in
];
})
sources."stream-shift-1.0.0"
+ sources."pinkie-promise-2.0.1"
+ sources."pinkie-2.0.4"
sources."is-finite-1.0.2"
];
buildInputs = globalBuildInputs;
@@ -24487,7 +25047,7 @@ in
sources."express-4.14.0"
(sources."follow-redirects-1.2.1" // {
dependencies = [
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."ms-0.7.2"
];
})
@@ -24524,11 +25084,14 @@ in
sources."xml2js-0.4.17"
sources."node-red-node-feedparser-0.1.7"
sources."node-red-node-email-0.1.21"
- (sources."node-red-node-twitter-0.1.9" // {
+ (sources."node-red-node-twitter-0.1.10" // {
dependencies = [
- sources."request-2.79.0"
+ sources."request-2.81.0"
+ sources."caseless-0.12.0"
sources."form-data-2.1.2"
- sources."qs-6.3.1"
+ sources."har-validator-4.2.1"
+ sources."qs-6.4.0"
+ sources."tunnel-agent-0.6.0"
];
})
sources."node-red-node-rbe-0.1.6"
@@ -24548,8 +25111,8 @@ in
sources."statuses-1.3.1"
sources."ee-first-1.1.1"
sources."unpipe-1.0.0"
- sources."mime-types-2.1.14"
- sources."mime-db-1.26.0"
+ sources."mime-types-2.1.15"
+ sources."mime-db-1.27.0"
sources."css-select-1.2.0"
(sources."dom-serializer-0.1.0" // {
dependencies = [
@@ -24576,7 +25139,7 @@ in
sources."nth-check-1.0.1"
sources."domelementtype-1.3.0"
sources."domhandler-2.3.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -24585,9 +25148,9 @@ in
sources."util-deprecate-1.0.2"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."vary-1.1.0"
+ sources."vary-1.1.1"
sources."moment-timezone-0.5.11"
- sources."moment-2.17.1"
+ sources."moment-2.18.1"
sources."accepts-1.3.3"
sources."array-flatten-1.1.1"
sources."content-disposition-0.5.1"
@@ -24600,7 +25163,7 @@ in
sources."methods-1.1.2"
sources."parseurl-1.3.1"
sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.3"
+ sources."proxy-addr-1.1.4"
sources."range-parser-1.2.0"
sources."send-0.14.1"
(sources."serve-static-1.11.2" // {
@@ -24612,7 +25175,7 @@ in
sources."utils-merge-1.0.0"
sources."negotiator-0.6.1"
sources."forwarded-0.1.0"
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."destroy-1.0.4"
sources."mime-1.3.4"
sources."graceful-fs-4.1.11"
@@ -24629,10 +25192,10 @@ in
sources."sprintf-js-1.0.3"
sources."commist-1.0.0"
sources."concat-stream-1.6.0"
- sources."end-of-stream-1.1.0"
+ sources."end-of-stream-1.4.0"
sources."help-me-1.0.1"
sources."minimist-1.2.0"
- sources."mqtt-packet-5.2.1"
+ sources."mqtt-packet-5.2.2"
sources."pump-1.0.2"
sources."reinterval-1.1.0"
sources."split2-2.1.1"
@@ -24640,7 +25203,7 @@ in
sources."xtend-4.0.1"
sources."leven-1.0.2"
sources."typedarray-0.0.6"
- sources."once-1.3.3"
+ sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."callback-stream-1.1.0"
(sources."glob-stream-5.3.5" // {
@@ -24683,7 +25246,7 @@ in
})
sources."filename-regex-2.0.0"
sources."kind-of-3.1.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
(sources."parse-glob-3.0.4" // {
dependencies = [
@@ -24702,10 +25265,11 @@ in
sources."randomatic-1.1.6"
sources."repeat-string-1.6.1"
sources."is-posix-bracket-0.1.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
(sources."glob-base-0.3.0" // {
dependencies = [
sources."glob-parent-2.0.0"
@@ -24725,6 +25289,7 @@ in
(sources."duplexify-3.5.0" // {
dependencies = [
sources."end-of-stream-1.0.0"
+ sources."once-1.3.3"
];
})
sources."stream-shift-1.0.0"
@@ -24772,7 +25337,7 @@ in
sources."forever-agent-0.6.1"
(sources."form-data-1.0.1" // {
dependencies = [
- sources."async-2.1.5"
+ sources."async-2.2.0"
];
})
sources."har-validator-2.0.6"
@@ -24780,7 +25345,7 @@ in
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."oauth-sign-0.8.2"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
@@ -24807,8 +25372,12 @@ in
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -24876,15 +25445,23 @@ in
sources."utf7-1.0.2"
sources."twitter-ng-0.6.2"
sources."oauth-0.9.14"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
sources."uuid-3.0.1"
sources."asynckit-0.4.0"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
sources."bindings-1.2.1"
sources."nan-2.5.0"
(sources."node-pre-gyp-0.6.32" // {
dependencies = [
- sources."request-2.79.0"
+ sources."request-2.81.0"
+ sources."caseless-0.12.0"
sources."form-data-2.1.2"
- sources."qs-6.3.1"
+ sources."har-validator-4.2.1"
+ sources."qs-6.4.0"
+ sources."tunnel-agent-0.6.0"
];
})
(sources."mkdirp-0.5.1" // {
@@ -24902,6 +25479,7 @@ in
sources."tar-2.2.1"
(sources."tar-pack-3.3.0" // {
dependencies = [
+ sources."once-1.3.3"
sources."readable-stream-2.1.5"
];
})
@@ -24924,7 +25502,7 @@ in
sources."strip-json-comments-2.0.1"
sources."fs.realpath-1.0.0"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
];
@@ -24990,7 +25568,7 @@ in
sources."methods-0.0.1"
sources."send-0.1.0"
sources."cookie-signature-1.0.1"
- (sources."debug-2.6.1" // {
+ (sources."debug-2.6.3" // {
dependencies = [
sources."ms-0.7.2"
];
@@ -25065,29 +25643,31 @@ in
npm = nodeEnv.buildNodePackage {
name = "npm";
packageName = "npm";
- version = "4.3.0";
+ version = "4.4.4";
src = fetchurl {
- url = "https://registry.npmjs.org/npm/-/npm-4.3.0.tgz";
- sha1 = "78e97142408c8383bff10a0e4036e9f77f00ce28";
+ url = "https://registry.npmjs.org/npm/-/npm-4.4.4.tgz";
+ sha1 = "d5ec661923a06bcd6a6eec3d0433a9da3fd67e37";
};
dependencies = [
sources."JSONStream-1.3.1"
- sources."abbrev-1.0.9"
+ sources."abbrev-1.1.0"
sources."ansi-regex-2.1.1"
sources."ansicolors-0.3.2"
sources."ansistyles-0.1.3"
sources."aproba-1.1.1"
sources."archy-1.0.0"
sources."asap-2.0.5"
+ sources."bluebird-3.5.0"
+ sources."call-limit-1.1.0"
sources."chownr-1.0.1"
sources."cmd-shim-2.0.2"
sources."columnify-1.5.4"
sources."config-chain-1.1.11"
sources."dezalgo-1.0.3"
sources."editor-1.0.0"
- sources."fs-vacuum-1.2.9"
- sources."fs-write-stream-atomic-1.0.8"
- sources."fstream-1.0.10"
+ sources."fs-vacuum-1.2.10"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-npm-1.2.0"
sources."glob-7.1.1"
sources."graceful-fs-4.1.11"
@@ -25097,11 +25677,7 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.4"
- (sources."init-package-json-1.9.4" // {
- dependencies = [
- sources."glob-6.0.4"
- ];
- })
+ sources."init-package-json-1.9.5"
sources."lazy-property-1.0.0"
sources."lockfile-1.0.3"
sources."lodash._baseuniq-4.6.0"
@@ -25111,6 +25687,7 @@ in
sources."lodash.without-4.4.0"
sources."mississippi-1.3.0"
sources."mkdirp-0.5.1"
+ sources."move-concurrently-1.0.1"
(sources."node-gyp-3.5.0" // {
dependencies = [
sources."nopt-3.0.6"
@@ -25118,11 +25695,11 @@ in
})
sources."nopt-4.0.1"
sources."normalize-git-url-3.0.2"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."npm-cache-filename-1.0.2"
sources."npm-install-checks-3.0.0"
- sources."npm-package-arg-4.2.0"
- sources."npm-registry-client-7.4.5"
+ sources."npm-package-arg-4.2.1"
+ sources."npm-registry-client-7.4.6"
sources."npm-user-validate-0.1.5"
sources."npmlog-4.0.2"
sources."once-1.4.0"
@@ -25132,17 +25709,13 @@ in
sources."read-1.0.7"
sources."read-cmd-shim-1.0.1"
sources."read-installed-4.0.3"
- (sources."read-package-json-2.0.4" // {
- dependencies = [
- sources."glob-6.0.4"
- ];
- })
+ sources."read-package-json-2.0.5"
sources."read-package-tree-5.1.5"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."realize-package-specifier-3.0.3"
- sources."request-2.79.0"
+ sources."request-2.81.0"
sources."retry-0.10.1"
- sources."rimraf-2.5.4"
+ sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."sha-2.0.1"
sources."slide-1.1.6"
@@ -25161,9 +25734,10 @@ in
sources."umask-1.1.0"
sources."unique-filename-1.1.0"
sources."unpipe-1.0.0"
+ sources."update-notifier-2.1.0"
sources."uuid-3.0.1"
- sources."validate-npm-package-name-2.2.2"
- sources."which-1.2.12"
+ sources."validate-npm-package-name-3.0.0"
+ sources."which-1.2.14"
sources."wrappy-1.0.2"
sources."write-file-atomic-1.3.1"
sources."debuglog-1.0.1"
@@ -25199,11 +25773,7 @@ in
sources."once-1.3.3"
];
})
- (sources."end-of-stream-1.1.0" // {
- dependencies = [
- sources."once-1.3.3"
- ];
- })
+ sources."end-of-stream-1.4.0"
sources."flush-write-stream-1.0.2"
sources."from2-2.3.0"
sources."parallel-transform-1.1.0"
@@ -25216,6 +25786,8 @@ in
sources."cyclist-0.2.2"
sources."xtend-4.0.1"
sources."minimist-0.0.8"
+ sources."copy-concurrently-1.0.3"
+ sources."run-queue-1.0.3"
sources."is-builtin-module-1.0.0"
sources."builtin-modules-1.1.1"
sources."are-we-there-yet-1.1.2"
@@ -25244,46 +25816,43 @@ in
sources."util-deprecate-1.0.2"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."supports-color-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -25307,13 +25876,70 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."stream-iterate-1.2.0"
sources."block-stream-0.0.9"
sources."unique-slug-2.0.0"
- sources."builtins-0.0.7"
- sources."isexe-1.1.2"
+ (sources."boxen-1.0.0" // {
+ dependencies = [
+ sources."string-width-2.0.0"
+ sources."is-fullwidth-code-point-2.0.0"
+ ];
+ })
+ sources."chalk-1.1.3"
+ sources."configstore-3.0.0"
+ sources."is-npm-1.0.0"
+ sources."latest-version-3.1.0"
+ sources."lazy-req-2.0.0"
+ sources."semver-diff-2.1.0"
+ sources."xdg-basedir-3.0.0"
+ sources."ansi-align-1.1.0"
+ sources."camelcase-4.1.0"
+ sources."cli-boxes-1.0.0"
+ sources."term-size-0.1.1"
+ sources."widest-line-1.0.0"
+ sources."execa-0.4.0"
+ sources."cross-spawn-async-2.2.5"
+ sources."is-stream-1.1.0"
+ sources."npm-run-path-1.0.0"
+ sources."path-key-1.0.0"
+ sources."strip-eof-1.0.0"
+ sources."lru-cache-4.0.2"
+ sources."pseudomap-1.0.2"
+ sources."yallist-2.1.2"
+ sources."ansi-styles-2.2.1"
+ sources."escape-string-regexp-1.0.5"
+ sources."has-ansi-2.0.0"
+ sources."supports-color-2.0.0"
+ sources."dot-prop-4.1.1"
+ sources."unique-string-1.0.0"
+ sources."is-obj-1.0.1"
+ sources."crypto-random-string-1.0.0"
+ sources."package-json-4.0.0"
+ sources."got-6.7.1"
+ sources."registry-auth-token-3.1.0"
+ sources."registry-url-3.1.0"
+ sources."create-error-class-3.0.2"
+ sources."duplexer3-0.1.4"
+ sources."get-stream-3.0.0"
+ sources."is-redirect-1.0.0"
+ sources."is-retry-allowed-1.1.0"
+ sources."lowercase-keys-1.0.0"
+ sources."timed-out-4.0.1"
+ sources."unzip-response-2.0.1"
+ sources."url-parse-lax-1.0.0"
+ sources."capture-stack-trace-1.0.0"
+ sources."prepend-http-1.0.4"
+ (sources."rc-1.2.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."deep-extend-0.4.1"
+ sources."strip-json-comments-2.0.1"
+ sources."builtins-1.0.3"
+ sources."isexe-2.0.0"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
@@ -25366,7 +25992,7 @@ in
sources."coffee-script-1.12.4"
sources."underscore-1.4.4"
sources."underscore.string-2.3.3"
- sources."request-2.79.0"
+ sources."request-2.81.0"
sources."graceful-fs-2.0.3"
sources."slide-1.1.6"
sources."chownr-0.0.2"
@@ -25377,50 +26003,44 @@ in
sources."npmlog-4.0.2"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -25444,7 +26064,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."glob-7.1.1"
sources."fs.realpath-1.0.0"
@@ -25462,7 +26082,7 @@ in
sources."gauge-2.7.3"
sources."set-blocking-2.0.0"
sources."delegates-1.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -25474,10 +26094,12 @@ in
sources."object-assign-4.1.1"
sources."signal-exit-3.0.2"
sources."string-width-1.0.2"
+ sources."strip-ansi-3.0.1"
sources."wide-align-1.1.0"
sources."code-point-at-1.1.0"
sources."is-fullwidth-code-point-1.0.0"
sources."number-is-nan-1.0.1"
+ sources."ansi-regex-2.1.1"
(sources."config-chain-1.1.11" // {
dependencies = [
sources."ini-1.3.4"
@@ -25517,13 +26139,13 @@ in
npm-check-updates = nodeEnv.buildNodePackage {
name = "npm-check-updates";
packageName = "npm-check-updates";
- version = "2.10.3";
+ version = "2.10.4";
src = fetchurl {
- url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.10.3.tgz";
- sha1 = "40540278e81e60e2f28df3bc79bf77e157f95555";
+ url = "https://registry.npmjs.org/npm-check-updates/-/npm-check-updates-2.10.4.tgz";
+ sha1 = "0833dd707f983a04fdcd615afb860ce82b1e54a2";
};
dependencies = [
- sources."bluebird-3.4.7"
+ sources."bluebird-3.5.0"
sources."chalk-1.1.3"
sources."cint-8.2.1"
sources."cli-table-0.3.1"
@@ -25543,8 +26165,26 @@ in
sources."require-dir-0.3.1"
sources."semver-5.3.0"
sources."semver-utils-1.1.1"
+ (sources."snyk-1.26.1" // {
+ dependencies = [
+ sources."update-notifier-0.5.0"
+ sources."latest-version-1.0.1"
+ sources."repeating-1.1.3"
+ sources."package-json-1.2.0"
+ sources."got-3.3.1"
+ sources."object-assign-3.0.0"
+ sources."timed-out-2.0.0"
+ ];
+ })
sources."spawn-please-0.2.0"
- sources."update-notifier-1.0.3"
+ (sources."update-notifier-1.0.3" // {
+ dependencies = [
+ sources."boxen-0.6.0"
+ sources."configstore-2.1.0"
+ sources."camelcase-2.1.1"
+ sources."uuid-2.0.3"
+ ];
+ })
sources."ansi-styles-2.2.1"
sources."escape-string-regexp-1.0.5"
sources."has-ansi-2.0.0"
@@ -25569,9 +26209,9 @@ in
sources."config-chain-1.1.11"
sources."dezalgo-1.0.3"
sources."editor-1.0.0"
- sources."fs-vacuum-1.2.9"
- sources."fs-write-stream-atomic-1.0.8"
- sources."fstream-1.0.10"
+ sources."fs-vacuum-1.2.10"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-npm-1.2.0"
sources."glob-7.1.1"
sources."graceful-fs-4.1.11"
@@ -25581,9 +26221,9 @@ in
sources."inflight-1.0.6"
sources."inherits-2.0.3"
sources."ini-1.3.4"
- (sources."init-package-json-1.9.4" // {
+ (sources."init-package-json-1.9.5" // {
dependencies = [
- sources."glob-6.0.4"
+ sources."validate-npm-package-name-3.0.0"
];
})
sources."lockfile-1.0.3"
@@ -25600,10 +26240,10 @@ in
})
sources."nopt-3.0.6"
sources."normalize-git-url-3.0.2"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."npm-cache-filename-1.0.2"
sources."npm-install-checks-3.0.0"
- sources."npm-package-arg-4.2.0"
+ sources."npm-package-arg-4.2.1"
(sources."npm-registry-client-7.2.1" // {
dependencies = [
sources."npmlog-3.1.2"
@@ -25622,11 +26262,7 @@ in
sources."read-1.0.7"
sources."read-cmd-shim-1.0.1"
sources."read-installed-4.0.3"
- (sources."read-package-json-2.0.4" // {
- dependencies = [
- sources."glob-6.0.4"
- ];
- })
+ sources."read-package-json-2.0.5"
sources."read-package-tree-5.1.5"
sources."readable-stream-2.1.5"
sources."realize-package-specifier-3.0.3"
@@ -25642,8 +26278,12 @@ in
sources."umask-1.1.0"
sources."unique-filename-1.1.0"
sources."unpipe-1.0.0"
- sources."validate-npm-package-name-2.2.2"
- sources."which-1.2.12"
+ (sources."validate-npm-package-name-2.2.2" // {
+ dependencies = [
+ sources."builtins-0.0.7"
+ ];
+ })
+ sources."which-1.2.14"
sources."wrappy-1.0.2"
sources."write-file-atomic-1.2.0"
sources."debuglog-1.0.1"
@@ -25668,6 +26308,7 @@ in
sources."fs.realpath-1.0.0"
sources."path-is-absolute-1.0.1"
sources."promzard-0.3.0"
+ sources."builtins-1.0.3"
sources."lodash._createset-4.0.3"
sources."lodash._root-3.0.1"
sources."minimist-0.0.8"
@@ -25686,17 +26327,17 @@ in
sources."is-fullwidth-code-point-1.0.0"
sources."number-is-nan-1.0.1"
sources."array-index-1.0.0"
- sources."debug-2.6.1"
- sources."es6-symbol-3.1.0"
+ sources."debug-2.6.3"
+ sources."es6-symbol-3.1.1"
sources."ms-0.7.2"
- sources."d-0.1.1"
- sources."es5-ext-0.10.12"
- sources."es6-iterator-2.0.0"
+ sources."d-1.0.0"
+ sources."es5-ext-0.10.15"
+ sources."es6-iterator-2.0.1"
sources."is-builtin-module-1.0.0"
sources."builtin-modules-1.1.1"
(sources."concat-stream-1.6.0" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
];
})
sources."typedarray-0.0.6"
@@ -25728,10 +26369,10 @@ in
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
- sources."node-uuid-1.4.7"
+ sources."mime-types-2.1.15"
+ sources."node-uuid-1.4.8"
sources."oauth-sign-0.8.2"
- sources."qs-6.2.2"
+ sources."qs-6.2.3"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
sources."tunnel-agent-0.4.3"
@@ -25748,8 +26389,12 @@ in
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -25773,31 +26418,122 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."block-stream-0.0.9"
sources."unique-slug-2.0.0"
- sources."builtins-0.0.7"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
- sources."boxen-0.6.0"
- sources."configstore-2.1.0"
+ sources."ansi-escapes-1.4.0"
+ (sources."configstore-1.4.0" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
+ sources."es6-promise-3.3.1"
+ sources."hasbin-1.2.3"
+ (sources."inquirer-1.0.3" // {
+ dependencies = [
+ sources."mute-stream-0.0.6"
+ ];
+ })
+ sources."open-0.0.5"
+ sources."os-name-1.0.3"
+ sources."snyk-config-1.0.1"
+ sources."snyk-module-1.7.0"
+ sources."snyk-policy-1.7.0"
+ (sources."snyk-recursive-readdir-2.0.0" // {
+ dependencies = [
+ sources."minimatch-3.0.2"
+ ];
+ })
+ sources."snyk-resolve-1.0.0"
+ (sources."snyk-resolve-deps-1.7.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."snyk-tree-1.0.0"
+ sources."snyk-try-require-1.2.0"
+ (sources."tempfile-1.1.1" // {
+ dependencies = [
+ sources."uuid-2.0.3"
+ ];
+ })
+ sources."then-fs-2.0.0"
+ sources."undefsafe-0.0.3"
+ (sources."url-0.11.0" // {
+ dependencies = [
+ sources."punycode-1.3.2"
+ ];
+ })
+ sources."uuid-3.0.1"
+ sources."xdg-basedir-2.0.0"
+ sources."async-1.5.2"
+ sources."cli-cursor-1.0.2"
+ sources."cli-width-2.1.0"
+ sources."figures-1.7.0"
+ sources."run-async-2.3.0"
+ sources."rx-4.1.0"
+ sources."through-2.3.8"
+ sources."restore-cursor-1.0.1"
+ sources."exit-hook-1.1.1"
+ sources."onetime-1.1.0"
+ sources."is-promise-2.1.0"
+ (sources."osx-release-1.1.0" // {
+ dependencies = [
+ sources."minimist-1.2.0"
+ ];
+ })
+ sources."win-release-1.1.1"
+ (sources."nconf-0.7.2" // {
+ dependencies = [
+ sources."async-0.9.2"
+ ];
+ })
+ sources."yargs-3.15.0"
+ sources."camelcase-1.2.1"
+ sources."cliui-2.1.0"
+ sources."decamelize-1.2.0"
+ sources."window-size-0.1.4"
+ sources."center-align-0.1.3"
+ sources."right-align-0.1.3"
+ sources."wordwrap-0.0.2"
+ sources."align-text-0.1.4"
+ sources."lazy-cache-1.0.4"
+ sources."kind-of-3.1.0"
+ sources."longest-1.0.1"
+ sources."repeat-string-1.6.1"
+ sources."is-buffer-1.1.5"
+ sources."js-yaml-3.8.2"
+ sources."argparse-1.0.9"
+ sources."esprima-3.1.3"
+ sources."sprintf-js-1.0.3"
+ (sources."clite-0.3.0" // {
+ dependencies = [
+ sources."update-notifier-0.6.3"
+ sources."yargs-4.8.1"
+ sources."configstore-2.1.0"
+ sources."uuid-2.0.3"
+ sources."cliui-3.2.0"
+ sources."window-size-0.2.0"
+ ];
+ })
+ sources."lru-cache-4.0.2"
+ sources."lodash.defaults-4.2.0"
+ sources."lodash.defaultsdeep-4.6.0"
+ sources."lodash.mergewith-4.6.0"
+ sources."boxen-0.3.1"
sources."is-npm-1.0.0"
sources."latest-version-2.0.0"
- sources."lazy-req-1.1.0"
sources."semver-diff-2.1.0"
- sources."xdg-basedir-2.0.0"
- sources."ansi-align-1.1.0"
- sources."camelcase-2.1.1"
- sources."cli-boxes-1.0.0"
sources."filled-array-1.1.0"
sources."repeating-2.0.1"
sources."widest-line-1.0.0"
sources."is-finite-1.0.2"
sources."dot-prop-3.0.0"
- sources."uuid-2.0.3"
sources."is-obj-1.0.1"
sources."package-json-2.4.0"
sources."got-5.7.1"
@@ -25816,16 +26552,55 @@ in
sources."unzip-response-1.0.2"
sources."url-parse-lax-1.0.0"
sources."capture-stack-trace-1.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."prepend-http-1.0.4"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
sources."deep-extend-0.4.1"
sources."strip-json-comments-2.0.1"
+ sources."get-caller-file-1.0.2"
+ sources."lodash.assign-4.2.0"
+ sources."os-locale-1.4.0"
+ sources."read-pkg-up-1.0.1"
+ sources."require-directory-2.1.1"
+ sources."require-main-filename-1.0.1"
+ sources."which-module-1.0.0"
+ sources."y18n-3.2.1"
+ (sources."yargs-parser-2.4.1" // {
+ dependencies = [
+ sources."camelcase-3.0.0"
+ ];
+ })
+ sources."wrap-ansi-2.1.0"
+ sources."lcid-1.0.0"
+ sources."invert-kv-1.0.0"
+ sources."read-pkg-1.1.0"
+ sources."load-json-file-1.1.0"
+ sources."path-type-1.1.0"
+ sources."pify-2.3.0"
+ sources."strip-bom-2.0.0"
+ sources."is-utf8-0.2.1"
+ sources."pseudomap-1.0.2"
+ sources."yallist-2.1.2"
+ sources."promise-7.1.1"
+ sources."string-length-1.0.1"
+ sources."duplexify-3.5.0"
+ sources."infinity-agent-2.0.3"
+ sources."nested-error-stacks-1.0.2"
+ (sources."end-of-stream-1.0.0" // {
+ dependencies = [
+ sources."once-1.3.3"
+ ];
+ })
+ sources."stream-shift-1.0.0"
+ sources."querystring-0.2.0"
+ sources."lazy-req-1.1.0"
+ sources."ansi-align-1.1.0"
+ sources."cli-boxes-1.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -25846,7 +26621,7 @@ in
dependencies = [
sources."async-0.9.2"
sources."babybird-0.0.1"
- (sources."body-parser-1.16.1" // {
+ (sources."body-parser-1.17.1" // {
dependencies = [
sources."content-type-1.0.2"
];
@@ -25864,12 +26639,14 @@ in
sources."diff-1.4.0"
sources."domino-1.0.28"
sources."entities-1.1.1"
- (sources."express-4.14.1" // {
+ (sources."express-4.15.2" // {
dependencies = [
sources."content-type-1.0.2"
- sources."debug-2.2.0"
- sources."qs-6.2.0"
- sources."ms-0.7.1"
+ (sources."finalhandler-1.0.1" // {
+ dependencies = [
+ sources."debug-2.6.3"
+ ];
+ })
];
})
sources."express-handlebars-3.0.0"
@@ -25880,25 +26657,20 @@ in
];
})
sources."gelf-stream-0.2.4"
- sources."js-yaml-3.8.1"
+ sources."js-yaml-3.8.2"
sources."mediawiki-title-0.5.6"
sources."negotiator-git+https://github.com/arlolra/negotiator.git#full-parse-access"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."pegjs-git+https://github.com/tstarling/pegjs.git#fork"
sources."prfun-2.1.4"
- (sources."request-2.79.0" // {
- dependencies = [
- sources."qs-6.3.1"
- ];
- })
+ sources."request-2.81.0"
sources."semver-5.3.0"
- (sources."serve-favicon-2.4.0" // {
+ (sources."serve-favicon-2.4.2" // {
dependencies = [
- sources."etag-1.8.0"
- sources."fresh-0.4.0"
+ sources."ms-1.0.0"
];
})
- (sources."service-runner-2.2.4" // {
+ (sources."service-runner-2.2.5" // {
dependencies = [
sources."gelf-stream-1.1.1"
sources."yargs-6.6.0"
@@ -25921,25 +26693,25 @@ in
sources."bytes-2.4.0"
sources."debug-2.6.1"
sources."depd-1.1.0"
- sources."http-errors-1.5.1"
+ sources."http-errors-1.6.1"
sources."iconv-lite-0.4.15"
sources."on-finished-2.3.0"
- sources."qs-6.2.1"
+ sources."qs-6.4.0"
sources."raw-body-2.2.0"
sources."type-is-1.6.14"
sources."ms-0.7.2"
sources."inherits-2.0.3"
- sources."setprototypeof-1.0.2"
+ sources."setprototypeof-1.0.3"
sources."statuses-1.3.1"
sources."ee-first-1.1.1"
sources."unpipe-1.0.0"
sources."media-typer-0.3.0"
- sources."mime-types-2.1.14"
- sources."mime-db-1.26.0"
+ sources."mime-types-2.1.15"
+ sources."mime-db-1.27.0"
sources."accepts-1.3.3"
- sources."compressible-2.0.9"
+ sources."compressible-2.0.10"
sources."on-headers-1.0.1"
- sources."vary-1.1.0"
+ sources."vary-1.1.1"
sources."busboy-0.2.14"
sources."dicer-0.2.5"
sources."readable-stream-1.1.14"
@@ -25953,27 +26725,19 @@ in
sources."cookie-signature-1.0.6"
sources."encodeurl-1.0.1"
sources."escape-html-1.0.3"
- sources."etag-1.7.0"
- sources."fresh-0.3.0"
+ sources."etag-1.8.0"
+ sources."fresh-0.5.0"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
sources."parseurl-1.3.1"
sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.3"
+ sources."proxy-addr-1.1.4"
sources."range-parser-1.2.0"
- (sources."send-0.14.2" // {
- dependencies = [
- (sources."debug-2.2.0" // {
- dependencies = [
- sources."ms-0.7.1"
- ];
- })
- ];
- })
- sources."serve-static-1.11.2"
+ sources."send-0.15.1"
+ sources."serve-static-1.12.1"
sources."utils-merge-1.0.0"
sources."forwarded-0.1.0"
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."destroy-1.0.4"
sources."mime-1.3.4"
sources."glob-6.0.4"
@@ -25995,9 +26759,8 @@ in
sources."concat-map-0.0.1"
sources."optimist-0.6.1"
sources."source-map-0.4.4"
- (sources."uglify-js-2.7.5" // {
+ (sources."uglify-js-2.8.20" // {
dependencies = [
- sources."async-0.2.10"
sources."source-map-0.5.6"
sources."yargs-3.10.0"
];
@@ -26021,7 +26784,7 @@ in
sources."kind-of-3.1.0"
sources."longest-1.0.1"
sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."function-bind-1.1.0"
sources."object-keys-1.0.11"
sources."define-properties-1.1.2"
@@ -26032,48 +26795,42 @@ in
sources."sprintf-js-1.0.3"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -26098,21 +26855,21 @@ in
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
sources."punycode-1.4.1"
- sources."bluebird-3.4.7"
- sources."bunyan-1.8.5"
+ sources."bluebird-3.5.0"
+ sources."bunyan-1.8.9"
sources."bunyan-syslog-udp-0.1.0"
- sources."hot-shots-4.3.1"
+ sources."hot-shots-4.4.0"
(sources."limitation-0.2.0" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
sources."dnscache-1.0.1"
- sources."dtrace-provider-0.8.0"
+ sources."dtrace-provider-0.8.1"
sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.3"
- sources."moment-2.17.1"
+ sources."safe-json-stringify-1.0.4"
+ sources."moment-2.18.1"
sources."nan-2.5.1"
(sources."mkdirp-0.5.1" // {
dependencies = [
@@ -26127,14 +26884,14 @@ in
sources."hat-0.0.3"
(sources."kad-fs-0.0.4" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
sources."kad-localstorage-0.0.7"
(sources."kad-memstore-0.0.1" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -26142,7 +26899,7 @@ in
sources."merge-1.2.0"
(sources."msgpack5-3.4.1" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -26152,7 +26909,7 @@ in
sources."dom-storage-2.0.2"
(sources."bl-1.2.0" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."isarray-1.0.0"
];
})
@@ -26170,22 +26927,26 @@ in
sources."camelcase-3.0.0"
];
})
+ sources."strip-ansi-3.0.1"
sources."wrap-ansi-2.1.0"
+ sources."ansi-regex-2.1.1"
sources."lcid-1.0.0"
sources."invert-kv-1.0.0"
sources."find-up-1.1.2"
sources."read-pkg-1.1.0"
sources."path-exists-2.1.0"
+ sources."pinkie-promise-2.0.1"
+ sources."pinkie-2.0.4"
sources."load-json-file-1.1.0"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."path-type-1.1.0"
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
sources."builtin-modules-1.1.1"
@@ -26210,10 +26971,10 @@ in
peerflix = nodeEnv.buildNodePackage {
name = "peerflix";
packageName = "peerflix";
- version = "0.36.1";
+ version = "0.36.2";
src = fetchurl {
- url = "https://registry.npmjs.org/peerflix/-/peerflix-0.36.1.tgz";
- sha1 = "7d2009b814b5b3a2ca573cabea1f2873a4be4a14";
+ url = "https://registry.npmjs.org/peerflix/-/peerflix-0.36.2.tgz";
+ sha1 = "93dd39e10a0a94b4f66ec19a42d8f5598a3eec01";
};
dependencies = [
sources."airplayer-2.0.0"
@@ -26233,14 +26994,14 @@ in
sources."minimist-0.0.10"
];
})
- (sources."parse-torrent-5.8.1" // {
+ (sources."parse-torrent-5.8.2" // {
dependencies = [
sources."get-stdin-5.0.1"
];
})
sources."pump-1.0.2"
sources."range-parser-1.2.0"
- sources."rc-1.1.7"
+ sources."rc-1.2.0"
(sources."torrent-stream-1.0.3" // {
dependencies = [
sources."end-of-stream-0.1.5"
@@ -26269,7 +27030,7 @@ in
sources."big-integer-1.6.17"
sources."inherits-2.0.3"
sources."typedarray-0.0.6"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -26303,18 +27064,18 @@ in
sources."deep-equal-1.0.1"
sources."dns-equal-1.0.0"
sources."dns-txt-2.0.2"
- sources."multicast-dns-6.1.0"
+ sources."multicast-dns-6.1.1"
sources."multicast-dns-service-types-1.1.0"
sources."dns-packet-1.1.1"
sources."thunky-0.1.0"
- sources."ip-1.1.4"
+ sources."ip-1.1.5"
sources."safe-buffer-5.0.1"
sources."meow-3.7.0"
sources."camelcase-keys-2.1.0"
sources."decamelize-1.2.0"
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."object-assign-4.1.1"
sources."read-pkg-up-1.0.1"
sources."redent-1.0.0"
@@ -26323,7 +27084,7 @@ in
sources."currently-unhandled-0.4.1"
sources."signal-exit-3.0.2"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."semver-5.3.0"
sources."validate-npm-package-license-3.0.1"
@@ -26342,7 +27103,7 @@ in
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
sources."indent-string-2.1.0"
@@ -26380,11 +27141,7 @@ in
sources."rusha-0.8.5"
sources."simple-concat-1.0.0"
sources."unzip-response-2.0.1"
- (sources."end-of-stream-1.1.0" // {
- dependencies = [
- sources."once-1.3.3"
- ];
- })
+ sources."end-of-stream-1.4.0"
sources."deep-extend-0.4.1"
sources."ini-1.3.4"
sources."strip-json-comments-2.0.1"
@@ -26414,7 +27171,7 @@ in
})
sources."randombytes-2.0.3"
sources."run-parallel-1.1.6"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."ms-0.7.2"
sources."flatten-0.0.1"
sources."fifo-0.1.4"
@@ -26461,19 +27218,19 @@ in
sources."compact2string-1.4.0"
sources."random-iterate-1.0.1"
sources."run-series-1.1.4"
- sources."simple-peer-6.4.3"
+ sources."simple-peer-6.4.4"
(sources."simple-websocket-4.3.1" // {
dependencies = [
- sources."ws-2.1.0"
+ sources."ws-2.2.2"
];
})
sources."string2compact-1.2.2"
- (sources."ws-1.1.2" // {
+ (sources."ws-1.1.4" // {
dependencies = [
sources."ultron-1.0.2"
];
})
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."get-browser-rtc-1.0.2"
sources."ultron-1.1.0"
sources."addr-to-ip-port-1.4.2"
@@ -26604,11 +27361,7 @@ in
sources."keypress-0.1.0"
sources."mime-1.2.11"
sources."minimist-0.0.8"
- (sources."end-of-stream-1.1.0" // {
- dependencies = [
- sources."once-1.3.3"
- ];
- })
+ sources."end-of-stream-1.4.0"
sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."magnet-uri-2.0.1"
@@ -26631,7 +27384,7 @@ in
sources."rusha-0.8.5"
sources."form-data-0.0.10"
sources."hawk-0.10.2"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."cookie-jar-0.2.0"
sources."aws-sign-0.2.0"
sources."oauth-sign-0.2.0"
@@ -26673,9 +27426,9 @@ in
sources."ms-0.7.2"
(sources."accepts-1.3.3" // {
dependencies = [
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."negotiator-0.6.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."base64id-1.0.0"
@@ -26712,13 +27465,13 @@ in
sources."bitfield-0.1.0"
(sources."bittorrent-dht-3.2.6" // {
dependencies = [
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
];
})
(sources."bittorrent-tracker-2.12.1" // {
dependencies = [
sources."bencode-0.6.0"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
];
})
sources."bncode-0.5.3"
@@ -26727,7 +27480,7 @@ in
sources."ip-0.3.3"
(sources."ip-set-1.0.1" // {
dependencies = [
- sources."ip-1.1.4"
+ sources."ip-1.1.5"
];
})
sources."peer-wire-swarm-0.9.2"
@@ -26744,7 +27497,7 @@ in
sources."string2compact-1.2.2"
sources."ip-regex-1.0.3"
sources."unzip-response-1.0.2"
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."bn.js-1.3.0"
sources."extend.js-0.0.2"
(sources."portfinder-0.3.0" // {
@@ -26768,8 +27521,8 @@ in
sources."brace-expansion-1.1.6"
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
- sources."which-1.2.12"
- sources."isexe-1.1.2"
+ sources."which-1.2.14"
+ sources."isexe-2.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -26795,7 +27548,7 @@ in
sources."progress-1.1.8"
sources."request-2.67.0"
sources."request-progress-2.0.1"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."concat-stream-1.5.0"
sources."debug-0.7.4"
sources."mkdirp-0.5.0"
@@ -26834,8 +27587,8 @@ in
sources."forever-agent-0.6.1"
sources."form-data-1.0.1"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
- sources."node-uuid-1.4.7"
+ sources."mime-types-2.1.15"
+ sources."node-uuid-1.4.8"
sources."qs-5.2.1"
sources."tunnel-agent-0.4.3"
sources."tough-cookie-2.2.2"
@@ -26848,12 +27601,16 @@ in
sources."isstream-0.1.2"
sources."is-typedarray-1.0.0"
sources."har-validator-2.0.6"
- sources."async-2.1.5"
+ sources."async-2.2.0"
sources."lodash-4.17.4"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -26898,7 +27655,7 @@ in
sources."xtend-4.0.1"
sources."is-property-1.0.2"
sources."throttleit-1.0.0"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -26924,16 +27681,16 @@ in
];
})
sources."commander-2.9.0"
- sources."detective-4.3.2"
+ sources."detective-4.5.0"
sources."glob-5.0.15"
sources."graceful-fs-4.1.11"
sources."iconv-lite-0.4.15"
sources."mkdirp-0.5.1"
sources."private-0.1.7"
- sources."q-1.4.1"
- sources."recast-0.11.22"
+ sources."q-1.5.0"
+ sources."recast-0.11.23"
sources."graceful-readlink-1.0.1"
- sources."acorn-3.3.0"
+ sources."acorn-4.0.11"
sources."defined-1.0.0"
sources."inflight-1.0.6"
sources."inherits-2.0.3"
@@ -26945,7 +27702,7 @@ in
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
sources."minimist-0.0.8"
- sources."ast-types-0.9.5"
+ sources."ast-types-0.9.6"
sources."esprima-3.1.3"
sources."source-map-0.5.6"
sources."base62-0.1.1"
@@ -27010,7 +27767,7 @@ in
sources."methods-0.1.0"
sources."send-0.1.4"
sources."cookie-signature-1.0.1"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."qs-0.6.5"
sources."bytes-0.2.1"
sources."pause-0.0.1"
@@ -27031,8 +27788,8 @@ in
sources."request-2.9.203"
(sources."openid-2.0.6" // {
dependencies = [
- sources."request-2.79.0"
- sources."qs-6.3.1"
+ sources."request-2.81.0"
+ sources."qs-6.4.0"
];
})
sources."node-swt-0.1.1"
@@ -27041,52 +27798,43 @@ in
sources."crc-0.2.0"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- (sources."har-validator-2.0.6" // {
- dependencies = [
- sources."commander-2.9.0"
- ];
- })
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -27110,7 +27858,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."events.node-0.4.9"
];
@@ -27144,37 +27892,31 @@ in
sha1 = "36bf5209356facbf6cef18fa32274d116043ed24";
};
dependencies = [
- sources."express-5.0.0-alpha.3"
+ sources."express-5.0.0-alpha.5"
sources."express-json5-0.1.0"
- (sources."body-parser-1.16.1" // {
+ (sources."body-parser-1.17.1" // {
dependencies = [
sources."bytes-2.4.0"
- sources."debug-2.6.1"
- sources."http-errors-1.5.1"
sources."iconv-lite-0.4.15"
- sources."qs-6.2.1"
sources."raw-body-2.2.0"
- sources."ms-0.7.2"
];
})
(sources."compression-1.6.2" // {
dependencies = [
sources."bytes-2.3.0"
+ sources."debug-2.2.0"
+ sources."ms-0.7.1"
];
})
sources."commander-2.9.0"
- sources."js-yaml-3.8.1"
+ sources."js-yaml-3.8.2"
sources."cookies-0.7.0"
- (sources."request-2.79.0" // {
- dependencies = [
- sources."qs-6.3.1"
- ];
- })
+ sources."request-2.81.0"
sources."async-0.9.2"
sources."es6-shim-0.21.1"
sources."semver-4.3.6"
sources."minimatch-1.0.0"
- sources."bunyan-1.8.5"
+ sources."bunyan-1.8.9"
sources."handlebars-2.0.0"
sources."highlight.js-8.9.1"
sources."lunr-0.7.2"
@@ -27183,17 +27925,13 @@ in
sources."JSONStream-1.3.1"
sources."mkdirp-0.5.1"
sources."sinopia-htpasswd-0.4.5"
- (sources."http-errors-1.6.1" // {
- dependencies = [
- sources."setprototypeof-1.0.3"
- ];
- })
+ sources."http-errors-1.6.1"
(sources."readable-stream-1.1.14" // {
dependencies = [
sources."isarray-0.0.1"
];
})
- sources."fs-ext-0.5.0"
+ sources."fs-ext-0.6.0"
sources."crypt3-0.2.0"
sources."accepts-1.3.3"
sources."array-flatten-2.1.1"
@@ -27201,51 +27939,49 @@ in
sources."content-type-1.0.2"
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
- sources."debug-2.2.0"
+ sources."debug-2.6.1"
sources."depd-1.1.0"
sources."encodeurl-1.0.1"
sources."escape-html-1.0.3"
- sources."etag-1.7.0"
- sources."finalhandler-0.5.1"
- sources."fresh-0.3.0"
+ sources."etag-1.8.0"
+ (sources."finalhandler-1.0.1" // {
+ dependencies = [
+ sources."debug-2.6.3"
+ ];
+ })
+ sources."fresh-0.5.0"
sources."merge-descriptors-1.0.1"
sources."methods-1.1.2"
sources."on-finished-2.3.0"
sources."parseurl-1.3.1"
sources."path-is-absolute-1.0.1"
sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.3"
- sources."qs-6.2.0"
+ sources."proxy-addr-1.1.4"
+ sources."qs-6.4.0"
sources."range-parser-1.2.0"
- sources."router-1.1.5"
- (sources."send-0.14.2" // {
- dependencies = [
- sources."http-errors-1.5.1"
- sources."ms-0.7.2"
- ];
- })
- sources."serve-static-1.11.2"
+ sources."router-1.3.0"
+ sources."send-0.15.1"
+ sources."serve-static-1.12.1"
+ sources."setprototypeof-1.0.3"
+ sources."statuses-1.3.1"
sources."type-is-1.6.14"
sources."utils-merge-1.0.0"
- sources."vary-1.1.0"
- sources."mime-types-2.1.14"
+ sources."vary-1.1.1"
+ sources."mime-types-2.1.15"
sources."negotiator-0.6.1"
- sources."mime-db-1.26.0"
- sources."ms-0.7.1"
- sources."statuses-1.3.1"
+ sources."mime-db-1.27.0"
+ sources."ms-0.7.2"
sources."unpipe-1.0.0"
sources."ee-first-1.1.1"
sources."forwarded-0.1.0"
- sources."ipaddr.js-1.2.0"
- sources."setprototypeof-1.0.2"
+ sources."ipaddr.js-1.3.0"
sources."destroy-1.0.4"
sources."mime-1.3.4"
- sources."inherits-2.0.3"
sources."media-typer-0.3.0"
sources."raw-body-1.3.4"
sources."bytes-1.0.0"
sources."iconv-lite-0.4.8"
- sources."compressible-2.0.9"
+ sources."compressible-2.0.10"
sources."on-headers-1.0.1"
sources."graceful-readlink-1.0.1"
sources."argparse-1.0.9"
@@ -27254,46 +27990,42 @@ in
sources."keygrip-1.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."chalk-1.1.3"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."strip-ansi-3.0.1"
- sources."supports-color-2.0.0"
- sources."ansi-regex-2.1.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -27320,10 +28052,10 @@ in
sources."punycode-1.4.1"
sources."lru-cache-2.7.3"
sources."sigmund-1.0.1"
- sources."dtrace-provider-0.8.0"
+ sources."dtrace-provider-0.8.1"
sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.3"
- sources."moment-2.17.1"
+ sources."safe-json-stringify-1.0.4"
+ sources."moment-2.18.1"
sources."nan-2.5.1"
sources."ncp-2.0.0"
sources."rimraf-2.4.5"
@@ -27333,6 +28065,7 @@ in
];
})
sources."inflight-1.0.6"
+ sources."inherits-2.0.3"
sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."brace-expansion-1.1.6"
@@ -27355,10 +28088,11 @@ in
sources."uc.micro-1.0.3"
(sources."htmlparser2-3.9.2" // {
dependencies = [
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
];
})
sources."regexp-quote-0.0.0"
+ sources."xtend-4.0.1"
sources."domelementtype-1.3.0"
sources."domhandler-2.3.0"
sources."domutils-1.5.1"
@@ -27406,7 +28140,7 @@ in
sources."graceful-readlink-1.0.1"
sources."graceful-fs-4.1.11"
sources."minimatch-3.0.3"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."set-immediate-shim-1.0.1"
sources."brace-expansion-1.1.6"
sources."balanced-match-0.4.2"
@@ -27493,7 +28227,7 @@ in
sources."keep-alive-agent-0.0.1"
sources."mime-1.3.4"
sources."negotiator-0.5.3"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."once-1.4.0"
sources."qs-3.1.0"
sources."semver-4.3.6"
@@ -27517,7 +28251,7 @@ in
sources."core-util-is-1.0.2"
sources."nan-2.5.1"
sources."mv-2.1.1"
- sources."safe-json-stringify-1.0.3"
+ sources."safe-json-stringify-1.0.4"
sources."mkdirp-0.5.1"
sources."ncp-2.0.0"
sources."rimraf-2.4.5"
@@ -27542,14 +28276,15 @@ in
})
];
})
- (sources."jsprim-1.3.1" // {
+ (sources."jsprim-1.4.0" // {
dependencies = [
+ sources."assert-plus-1.0.0"
sources."extsprintf-1.0.2"
sources."verror-1.3.6"
];
})
sources."json-schema-0.2.3"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."isarray-1.0.0"
sources."process-nextick-args-1.0.7"
@@ -27578,7 +28313,7 @@ in
dependencies = [
sources."css-parse-1.7.0"
sources."mkdirp-0.5.1"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."sax-0.5.8"
sources."glob-7.0.6"
sources."source-map-0.1.43"
@@ -27619,13 +28354,13 @@ in
sources."colors-1.1.2"
sources."whet.extend-0.9.9"
sources."mkdirp-0.5.1"
- sources."csso-2.3.1"
- sources."q-1.4.1"
+ sources."csso-2.3.2"
+ sources."q-1.5.0"
sources."argparse-1.0.9"
sources."esprima-2.7.3"
sources."sprintf-js-1.0.3"
sources."minimist-0.0.8"
- sources."clap-1.1.2"
+ sources."clap-1.1.3"
sources."source-map-0.5.6"
sources."chalk-1.1.3"
sources."ansi-styles-2.2.1"
@@ -27662,7 +28397,7 @@ in
sources."graceful-fs-4.1.11"
sources."object-assign-4.1.1"
sources."errno-0.1.4"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."prr-0.0.0"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -27691,10 +28426,10 @@ in
titanium = nodeEnv.buildNodePackage {
name = "titanium";
packageName = "titanium";
- version = "5.0.11";
+ version = "5.0.12";
src = fetchurl {
- url = "https://registry.npmjs.org/titanium/-/titanium-5.0.11.tgz";
- sha1 = "dd0f7132475a5db6ea188222876d28538b47df27";
+ url = "https://registry.npmjs.org/titanium/-/titanium-5.0.12.tgz";
+ sha1 = "2bcfab6110ef0a91c9d54825052fd0db3e9dd942";
};
dependencies = [
sources."async-2.1.2"
@@ -27707,21 +28442,12 @@ in
sources."humanize-0.0.9"
sources."longjohn-0.2.11"
sources."moment-2.16.0"
- (sources."node-appc-0.2.39" // {
+ (sources."node-appc-0.2.41" // {
dependencies = [
- sources."async-1.5.2"
- sources."request-2.69.0"
- sources."semver-5.1.0"
- sources."wrench-1.5.8"
- ];
- })
- (sources."request-2.78.0" // {
- dependencies = [
- sources."form-data-2.1.2"
- sources."qs-6.3.1"
- sources."tough-cookie-2.3.2"
+ sources."async-2.1.4"
];
})
+ sources."request-2.79.0"
sources."semver-5.3.0"
sources."sprintf-0.1.5"
sources."temp-0.8.3"
@@ -27731,53 +28457,66 @@ in
sources."colors-1.0.3"
];
})
- sources."wrench-1.5.9"
+ sources."fs-extra-2.1.2"
sources."lodash-4.17.4"
sources."keypress-0.2.1"
sources."source-map-support-0.3.2"
sources."source-map-0.1.32"
sources."amdefine-1.0.1"
sources."adm-zip-0.4.7"
- sources."diff-2.2.1"
+ sources."diff-3.2.0"
sources."node-uuid-1.4.7"
sources."optimist-0.6.1"
- (sources."uglify-js-2.6.1" // {
+ sources."wrench-1.5.9"
+ (sources."uglify-js-2.7.5" // {
dependencies = [
sources."async-0.2.10"
sources."source-map-0.5.6"
];
})
- sources."xmldom-0.1.22"
+ sources."xmldom-0.1.27"
sources."wordwrap-0.0.3"
sources."minimist-0.0.10"
+ sources."uglify-to-browserify-1.0.2"
+ sources."yargs-3.10.0"
+ sources."camelcase-1.2.1"
+ (sources."cliui-2.1.0" // {
+ dependencies = [
+ sources."wordwrap-0.0.2"
+ ];
+ })
+ sources."decamelize-1.2.0"
+ sources."window-size-0.1.0"
+ sources."center-align-0.1.3"
+ sources."right-align-0.1.3"
+ sources."align-text-0.1.4"
+ sources."lazy-cache-1.0.4"
+ sources."kind-of-3.1.0"
+ sources."longest-1.0.1"
+ sources."repeat-string-1.6.1"
+ sources."is-buffer-1.1.5"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."bl-1.0.3"
sources."caseless-0.11.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
- sources."form-data-1.0.1"
+ sources."form-data-2.1.2"
sources."har-validator-2.0.6"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.0.3"
+ sources."qs-6.3.2"
sources."stringstream-0.0.5"
- sources."tough-cookie-2.2.2"
+ sources."tough-cookie-2.3.2"
sources."tunnel-agent-0.4.3"
- sources."readable-stream-2.0.6"
- sources."core-util-is-1.0.2"
- sources."inherits-2.0.3"
- sources."isarray-1.0.0"
- sources."process-nextick-args-1.0.7"
- sources."string_decoder-0.10.31"
- sources."util-deprecate-1.0.2"
+ sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
+ sources."asynckit-0.4.0"
sources."chalk-1.1.3"
sources."commander-2.9.0"
sources."is-my-json-valid-2.16.0"
@@ -27800,8 +28539,12 @@ in
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -27825,26 +28568,7 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
- sources."uglify-to-browserify-1.0.2"
- sources."yargs-3.10.0"
- sources."camelcase-1.2.1"
- (sources."cliui-2.1.0" // {
- dependencies = [
- sources."wordwrap-0.0.2"
- ];
- })
- sources."decamelize-1.2.0"
- sources."window-size-0.1.0"
- sources."center-align-0.1.3"
- sources."right-align-0.1.3"
- sources."align-text-0.1.4"
- sources."lazy-cache-1.0.4"
- sources."kind-of-3.1.0"
- sources."longest-1.0.1"
- sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
- sources."asynckit-0.4.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."os-tmpdir-1.0.2"
sources."rimraf-2.2.8"
@@ -27852,6 +28576,8 @@ in
sources."eyes-0.1.8"
sources."pkginfo-0.3.1"
sources."stack-trace-0.0.9"
+ sources."graceful-fs-4.1.11"
+ sources."jsonfile-2.4.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -27864,10 +28590,10 @@ in
typescript = nodeEnv.buildNodePackage {
name = "typescript";
packageName = "typescript";
- version = "2.2.1";
+ version = "2.2.2";
src = fetchurl {
- url = "https://registry.npmjs.org/typescript/-/typescript-2.2.1.tgz";
- sha1 = "4862b662b988a4c8ff691cc7969622d24db76ae9";
+ url = "https://registry.npmjs.org/typescript/-/typescript-2.2.2.tgz";
+ sha1 = "606022508479b55ffa368b58fee963a03dfd7b0c";
};
buildInputs = globalBuildInputs;
meta = {
@@ -27880,16 +28606,15 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "2.7.5";
+ version = "2.8.20";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz";
- sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.20.tgz";
+ sha1 = "be87100fbc18de3876ed606e9d24b4568311cecf";
};
dependencies = [
- sources."async-0.2.10"
sources."source-map-0.5.6"
- sources."uglify-to-browserify-1.0.2"
sources."yargs-3.10.0"
+ sources."uglify-to-browserify-1.0.2"
sources."camelcase-1.2.1"
sources."cliui-2.1.0"
sources."decamelize-1.2.0"
@@ -27902,7 +28627,7 @@ in
sources."kind-of-3.1.0"
sources."longest-1.0.1"
sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
];
buildInputs = globalBuildInputs;
meta = {
@@ -27915,10 +28640,10 @@ in
ungit = nodeEnv.buildNodePackage {
name = "ungit";
packageName = "ungit";
- version = "1.1.8";
+ version = "1.1.11";
src = fetchurl {
- url = "https://registry.npmjs.org/ungit/-/ungit-1.1.8.tgz";
- sha1 = "1519b78475ef5162ef3342c2046889b396add651";
+ url = "https://registry.npmjs.org/ungit/-/ungit-1.1.11.tgz";
+ sha1 = "a6391af1d6d132c2f995dbf9740b17b315b2f90f";
};
dependencies = [
sources."async-2.1.5"
@@ -27928,15 +28653,15 @@ in
sources."color-1.0.3"
sources."cookie-parser-1.4.3"
sources."crossroads-0.12.2"
- sources."diff2html-2.0.12"
+ sources."diff2html-2.3.0"
sources."express-4.14.1"
sources."express-session-1.14.2"
sources."forever-monitor-1.1.0"
sources."getmac-1.2.1"
sources."hasher-1.2.0"
- sources."ignore-3.2.4"
+ sources."ignore-3.2.6"
sources."keen.io-0.1.3"
- sources."knockout-3.4.1"
+ sources."knockout-3.4.2"
sources."lodash-4.17.4"
(sources."mkdirp-0.5.1" // {
dependencies = [
@@ -27956,7 +28681,7 @@ in
sources."hawk-3.1.3"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."qs-6.3.2"
sources."tunnel-agent-0.4.3"
sources."delayed-stream-1.0.0"
sources."hoek-2.16.3"
@@ -27965,17 +28690,19 @@ in
sources."sntp-1.0.9"
];
})
- (sources."npm-registry-client-7.4.5" // {
+ (sources."npm-registry-client-7.4.6" // {
dependencies = [
- sources."request-2.79.0"
+ sources."request-2.81.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."json-stringify-safe-5.0.1"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
- sources."tunnel-agent-0.4.3"
+ sources."qs-6.4.0"
+ sources."tunnel-agent-0.6.0"
sources."delayed-stream-1.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
@@ -27988,7 +28715,7 @@ in
sources."os-homedir-1.0.2"
sources."passport-0.3.2"
sources."passport-local-1.0.0"
- (sources."raven-1.1.2" // {
+ (sources."raven-1.1.5" // {
dependencies = [
sources."json-stringify-safe-5.0.1"
sources."uuid-3.0.0"
@@ -28053,11 +28780,11 @@ in
sources."ee-first-1.1.1"
sources."unpipe-1.0.0"
sources."media-typer-0.3.0"
- sources."mime-types-2.1.14"
- sources."mime-db-1.26.0"
+ sources."mime-types-2.1.15"
+ sources."mime-db-1.27.0"
sources."color-convert-1.9.0"
- sources."color-string-1.5.0"
- sources."color-name-1.1.1"
+ sources."color-string-1.5.2"
+ sources."color-name-1.1.2"
sources."simple-swizzle-0.2.2"
sources."is-arrayish-0.3.1"
sources."cookie-0.3.1"
@@ -28068,7 +28795,7 @@ in
sources."mkdirp-0.3.0"
];
})
- sources."whatwg-fetch-2.0.2"
+ sources."whatwg-fetch-2.0.3"
sources."nopt-1.0.10"
sources."abbrev-1.1.0"
sources."accepts-1.3.3"
@@ -28083,7 +28810,7 @@ in
sources."methods-1.1.2"
sources."parseurl-1.3.1"
sources."path-to-regexp-0.1.7"
- sources."proxy-addr-1.1.3"
+ sources."proxy-addr-1.1.4"
sources."range-parser-1.2.0"
(sources."send-0.14.2" // {
dependencies = [
@@ -28091,16 +28818,15 @@ in
];
})
sources."utils-merge-1.0.0"
- sources."vary-1.1.0"
+ sources."vary-1.1.1"
sources."negotiator-0.6.1"
sources."forwarded-0.1.0"
- sources."ipaddr.js-1.2.0"
+ sources."ipaddr.js-1.3.0"
sources."destroy-1.0.4"
sources."mime-1.3.4"
sources."crc-3.4.1"
sources."on-headers-1.0.1"
- sources."uid-safe-2.1.3"
- sources."base64-url-1.3.3"
+ sources."uid-safe-2.1.4"
sources."random-bytes-1.0.0"
(sources."broadway-0.2.10" // {
dependencies = [
@@ -28153,7 +28879,7 @@ in
];
})
sources."hawk-0.10.2"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."cookie-jar-0.2.0"
sources."aws-sign-0.2.0"
sources."oauth-sign-0.2.0"
@@ -28180,7 +28906,7 @@ in
sources."editions-1.3.3"
sources."typechecker-4.4.1"
sources."underscore-1.5.2"
- sources."clone-2.1.0"
+ sources."clone-2.1.1"
sources."JSONStream-1.3.1"
sources."ansicolors-0.3.2"
sources."ansistyles-0.1.3"
@@ -28193,9 +28919,9 @@ in
sources."config-chain-1.1.11"
sources."dezalgo-1.0.3"
sources."editor-1.0.0"
- sources."fs-vacuum-1.2.9"
- sources."fs-write-stream-atomic-1.0.8"
- sources."fstream-1.0.10"
+ sources."fs-vacuum-1.2.10"
+ sources."fs-write-stream-atomic-1.0.10"
+ sources."fstream-1.0.11"
sources."fstream-npm-1.2.0"
(sources."glob-7.1.1" // {
dependencies = [
@@ -28207,10 +28933,9 @@ in
sources."hosted-git-info-2.1.5"
sources."iferr-0.1.5"
sources."inflight-1.0.6"
- (sources."init-package-json-1.9.4" // {
+ (sources."init-package-json-1.9.5" // {
dependencies = [
- sources."glob-6.0.4"
- sources."minimatch-3.0.3"
+ sources."validate-npm-package-name-3.0.0"
];
})
sources."lockfile-1.0.3"
@@ -28227,10 +28952,10 @@ in
];
})
sources."normalize-git-url-3.0.2"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."npm-cache-filename-1.0.2"
sources."npm-install-checks-3.0.0"
- sources."npm-package-arg-4.2.0"
+ sources."npm-package-arg-4.2.1"
sources."npm-user-validate-0.1.5"
sources."npmlog-4.0.2"
sources."once-1.4.0"
@@ -28240,14 +28965,9 @@ in
sources."read-1.0.7"
sources."read-cmd-shim-1.0.1"
sources."read-installed-4.0.3"
- (sources."read-package-json-2.0.4" // {
- dependencies = [
- sources."glob-6.0.4"
- sources."minimatch-3.0.3"
- ];
- })
+ sources."read-package-json-2.0.5"
sources."read-package-tree-5.1.5"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."realize-package-specifier-3.0.3"
sources."retry-0.10.1"
sources."sha-2.0.1"
@@ -28267,8 +28987,12 @@ in
sources."umask-1.1.0"
sources."unique-filename-1.1.0"
sources."uuid-3.0.1"
- sources."validate-npm-package-name-2.2.2"
- sources."which-1.2.12"
+ (sources."validate-npm-package-name-2.2.2" // {
+ dependencies = [
+ sources."builtins-0.0.7"
+ ];
+ })
+ sources."which-1.2.14"
sources."wrappy-1.0.2"
sources."write-file-atomic-1.3.1"
sources."ansi-regex-2.1.1"
@@ -28302,6 +29026,7 @@ in
sources."fs.realpath-1.0.0"
sources."path-is-absolute-1.0.1"
sources."promzard-0.3.0"
+ sources."builtins-1.0.3"
sources."lodash._createset-4.0.3"
sources."lodash._root-3.0.1"
sources."concat-stream-1.6.0"
@@ -28311,11 +29036,7 @@ in
sources."once-1.3.3"
];
})
- (sources."end-of-stream-1.1.0" // {
- dependencies = [
- sources."once-1.3.3"
- ];
- })
+ sources."end-of-stream-1.4.0"
sources."flush-write-stream-1.0.2"
sources."from2-2.3.0"
sources."pump-1.0.2"
@@ -28376,8 +29097,12 @@ in
sources."is-property-1.0.2"
sources."pinkie-2.0.4"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -28405,11 +29130,17 @@ in
sources."stream-iterate-1.2.0"
sources."block-stream-0.0.9"
sources."unique-slug-2.0.0"
- sources."builtins-0.0.7"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
+ sources."performance-now-0.2.0"
+ sources."safe-buffer-5.0.1"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."passport-strategy-1.0.0"
sources."pause-0.0.1"
sources."lsmod-1.0.0"
@@ -28502,7 +29233,7 @@ in
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- (sources."error-ex-1.3.0" // {
+ (sources."error-ex-1.3.1" // {
dependencies = [
sources."is-arrayish-0.2.1"
];
@@ -28561,7 +29292,7 @@ in
sources."progress-1.1.8"
sources."request-2.67.0"
sources."request-progress-2.0.1"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."concat-stream-1.5.0"
sources."debug-0.7.4"
sources."yauzl-2.4.1"
@@ -28596,8 +29327,8 @@ in
sources."forever-agent-0.6.1"
sources."form-data-1.0.1"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
- sources."node-uuid-1.4.7"
+ sources."mime-types-2.1.15"
+ sources."node-uuid-1.4.8"
sources."qs-5.2.1"
sources."tunnel-agent-0.4.3"
sources."tough-cookie-2.2.2"
@@ -28610,12 +29341,16 @@ in
sources."isstream-0.1.2"
sources."is-typedarray-1.0.0"
sources."har-validator-2.0.6"
- sources."async-2.1.5"
+ sources."async-2.2.0"
sources."lodash-4.17.4"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -28660,7 +29395,7 @@ in
sources."xtend-4.0.1"
sources."is-property-1.0.2"
sources."throttleit-1.0.0"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."os-tmpdir-1.0.2"
sources."underscore-1.8.3"
];
@@ -28675,19 +29410,19 @@ in
webpack = nodeEnv.buildNodePackage {
name = "webpack";
packageName = "webpack";
- version = "2.2.1";
+ version = "2.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/webpack/-/webpack-2.2.1.tgz";
- sha1 = "7bb1d72ae2087dd1a4af526afec15eed17dda475";
+ url = "https://registry.npmjs.org/webpack/-/webpack-2.3.2.tgz";
+ sha1 = "7d521e6f0777a3a58985c69425263fdfe977b458";
};
dependencies = [
sources."acorn-4.0.11"
- sources."acorn-dynamic-import-2.0.1"
- sources."ajv-4.11.3"
+ sources."acorn-dynamic-import-2.0.2"
+ sources."ajv-4.11.5"
sources."ajv-keywords-1.5.1"
- sources."async-2.1.5"
+ sources."async-2.2.0"
sources."enhanced-resolve-3.1.0"
- sources."interpret-1.0.1"
+ sources."interpret-1.0.2"
sources."json-loader-0.5.4"
sources."loader-runner-2.3.0"
sources."loader-utils-0.2.17"
@@ -28697,14 +29432,13 @@ in
sources."source-map-0.5.6"
sources."supports-color-3.2.3"
sources."tapable-0.2.6"
- (sources."uglify-js-2.7.5" // {
+ (sources."uglify-js-2.8.20" // {
dependencies = [
- sources."async-0.2.10"
sources."yargs-3.10.0"
];
})
sources."watchpack-1.3.1"
- sources."webpack-sources-0.1.4"
+ sources."webpack-sources-0.2.3"
(sources."yargs-6.6.0" // {
dependencies = [
sources."camelcase-3.0.0"
@@ -28721,7 +29455,7 @@ in
sources."emojis-list-2.1.0"
sources."json5-0.5.1"
sources."errno-0.1.4"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."prr-0.0.0"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -28765,7 +29499,7 @@ in
sources."ieee754-1.1.8"
sources."date-now-0.1.4"
sources."browserify-cipher-1.0.0"
- sources."browserify-sign-4.0.0"
+ sources."browserify-sign-4.0.4"
sources."create-ecdh-4.0.0"
sources."create-hash-1.1.2"
sources."create-hmac-1.1.4"
@@ -28783,7 +29517,7 @@ in
sources."bn.js-4.11.6"
sources."browserify-rsa-4.0.1"
sources."elliptic-6.4.0"
- sources."parse-asn1-5.0.0"
+ sources."parse-asn1-5.1.0"
sources."brorand-1.1.0"
sources."hash.js-1.0.3"
sources."hmac-drbg-1.0.0"
@@ -28812,7 +29546,7 @@ in
sources."kind-of-3.1.0"
sources."longest-1.0.1"
sources."repeat-string-1.6.1"
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
sources."chokidar-1.6.1"
sources."anymatch-1.3.0"
sources."async-each-1.0.1"
@@ -28831,7 +29565,7 @@ in
sources."extglob-0.3.2"
sources."filename-regex-2.0.0"
sources."is-extglob-1.0.0"
- sources."normalize-path-2.0.1"
+ sources."normalize-path-2.1.1"
sources."object.omit-2.0.1"
sources."parse-glob-3.0.4"
sources."regex-cache-0.4.3"
@@ -28844,9 +29578,10 @@ in
sources."isobject-2.1.0"
sources."randomatic-1.1.6"
sources."is-posix-bracket-0.1.1"
+ sources."remove-trailing-separator-1.0.1"
sources."for-own-0.1.5"
sources."is-extendable-0.1.1"
- sources."for-in-1.0.1"
+ sources."for-in-1.0.2"
sources."glob-base-0.3.0"
sources."is-dotfile-1.0.2"
sources."is-equal-shallow-0.1.3"
@@ -28858,25 +29593,23 @@ in
sources."balanced-match-0.4.2"
sources."concat-map-0.0.1"
sources."nan-2.5.1"
- sources."node-pre-gyp-0.6.33"
- sources."nopt-3.0.6"
+ sources."node-pre-gyp-0.6.34"
+ sources."nopt-4.0.1"
sources."npmlog-4.0.2"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
})
- sources."request-2.79.0"
- sources."rimraf-2.5.4"
+ sources."request-2.81.0"
+ sources."rimraf-2.6.1"
sources."semver-5.3.0"
sources."tar-2.2.1"
- (sources."tar-pack-3.3.0" // {
- dependencies = [
- sources."once-1.3.3"
- sources."readable-stream-2.1.5"
- ];
- })
+ sources."tar-pack-3.4.0"
sources."abbrev-1.1.0"
+ sources."osenv-0.1.4"
+ sources."os-homedir-1.0.2"
+ sources."os-tmpdir-1.0.2"
sources."are-we-there-yet-1.1.2"
sources."console-control-strings-1.1.0"
sources."gauge-2.7.3"
@@ -28897,50 +29630,40 @@ in
sources."strip-json-comments-2.0.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- (sources."chalk-1.1.3" // {
- dependencies = [
- sources."supports-color-2.0.0"
- ];
- })
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- sources."has-ansi-2.0.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."har-schema-1.0.5"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -28964,19 +29687,19 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."glob-7.1.1"
sources."fs.realpath-1.0.0"
sources."inflight-1.0.6"
sources."once-1.4.0"
sources."wrappy-1.0.2"
sources."block-stream-0.0.9"
- sources."fstream-1.0.10"
- sources."debug-2.2.0"
+ sources."fstream-1.0.11"
+ sources."debug-2.6.3"
sources."fstream-ignore-1.0.5"
sources."uid-number-0.0.6"
- sources."ms-0.7.1"
- sources."source-list-map-0.1.8"
+ sources."ms-0.7.2"
+ sources."source-list-map-1.1.1"
sources."get-caller-file-1.0.2"
sources."os-locale-1.4.0"
sources."read-pkg-up-1.0.1"
@@ -28995,16 +29718,18 @@ in
sources."find-up-1.1.2"
sources."read-pkg-1.1.0"
sources."path-exists-2.1.0"
+ sources."pinkie-promise-2.0.1"
+ sources."pinkie-2.0.4"
sources."load-json-file-1.1.0"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."path-type-1.1.0"
sources."parse-json-2.2.0"
sources."pify-2.3.0"
sources."strip-bom-2.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."is-utf8-0.2.1"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
sources."builtin-modules-1.1.1"
@@ -29039,25 +29764,24 @@ in
yarn = nodeEnv.buildNodePackage {
name = "yarn";
packageName = "yarn";
- version = "0.20.4";
+ version = "0.21.3";
src = fetchurl {
- url = "https://registry.npmjs.org/yarn/-/yarn-0.20.4.tgz";
- sha1 = "575190fee60a27a54d4125a0f7579fc702f01229";
+ url = "https://registry.npmjs.org/yarn/-/yarn-0.21.3.tgz";
+ sha1 = "8dda3a63c798b383cfa577452c2b3cb3e4aa87e0";
};
dependencies = [
sources."babel-runtime-6.23.0"
- sources."bytes-2.4.0"
+ sources."bytes-2.5.0"
sources."camelcase-3.0.0"
sources."chalk-1.1.3"
sources."cmd-shim-2.0.2"
sources."commander-2.9.0"
sources."death-1.1.0"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."defaults-1.0.3"
sources."detect-indent-5.0.0"
- sources."diff-2.2.3"
sources."ini-1.3.4"
- sources."inquirer-3.0.5"
+ sources."inquirer-3.0.6"
sources."invariant-2.2.2"
sources."is-builtin-module-1.0.0"
sources."is-ci-1.0.10"
@@ -29066,19 +29790,18 @@ in
sources."minimatch-3.0.3"
sources."mkdirp-0.5.1"
sources."node-emoji-1.5.1"
- sources."node-gyp-3.5.0"
+ sources."node-gyp-3.6.0"
sources."object-path-0.11.4"
sources."proper-lockfile-2.0.0"
sources."read-1.0.7"
- sources."request-2.79.0"
- sources."request-capture-har-1.1.4"
+ sources."request-2.81.0"
+ sources."request-capture-har-1.2.2"
sources."rimraf-2.6.1"
sources."roadrunner-1.1.0"
sources."semver-5.3.0"
sources."strip-bom-3.0.0"
sources."tar-2.2.1"
sources."tar-stream-1.5.2"
- sources."user-home-2.0.0"
sources."validate-npm-package-license-3.0.1"
sources."core-js-2.4.1"
sources."regenerator-runtime-0.10.3"
@@ -29104,7 +29827,7 @@ in
sources."string-width-2.0.0"
sources."through-2.3.8"
sources."restore-cursor-2.0.0"
- sources."onetime-2.0.0"
+ sources."onetime-2.0.1"
sources."signal-exit-3.0.2"
sources."mimic-fn-1.1.0"
sources."tmp-0.0.31"
@@ -29122,12 +29845,12 @@ in
sources."concat-map-0.0.1"
sources."minimist-0.0.8"
sources."string.prototype.codepointat-0.2.0"
- sources."fstream-1.0.10"
+ sources."fstream-1.0.11"
sources."glob-7.1.1"
sources."nopt-3.0.6"
sources."npmlog-4.0.2"
sources."osenv-0.1.4"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."inherits-2.0.3"
sources."fs.realpath-1.0.0"
sources."inflight-1.0.6"
@@ -29145,7 +29868,7 @@ in
})
sources."set-blocking-2.0.0"
sources."delegates-1.0.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
sources."isarray-1.0.0"
@@ -29164,45 +29887,48 @@ in
sources."code-point-at-1.1.0"
sources."number-is-nan-1.0.1"
sources."os-homedir-1.0.2"
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
sources."retry-0.10.1"
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
sources."tough-cookie-2.3.2"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."is-my-json-valid-2.16.0"
- sources."pinkie-promise-2.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
- sources."pinkie-2.0.4"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -29226,22 +29952,19 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."block-stream-0.0.9"
sources."bl-1.2.0"
- (sources."end-of-stream-1.1.0" // {
- dependencies = [
- sources."once-1.3.3"
- ];
- })
+ sources."end-of-stream-1.4.0"
+ sources."xtend-4.0.1"
sources."spdx-correct-1.0.2"
sources."spdx-expression-parse-1.0.4"
sources."spdx-license-ids-1.2.2"
];
buildInputs = globalBuildInputs;
meta = {
- description = "
";
+ description = "📦🐈 Fast, reliable, and secure dependency management.";
homepage = "https://github.com/yarnpkg/yarn#readme";
license = "BSD-2-Clause";
};
@@ -29347,10 +30070,10 @@ in
sources."imurmurhash-0.1.4"
sources."slide-1.1.6"
sources."lru-cache-4.0.2"
- sources."which-1.2.12"
+ sources."which-1.2.14"
sources."pseudomap-1.0.2"
- sources."yallist-2.0.0"
- sources."isexe-1.1.2"
+ sources."yallist-2.1.2"
+ sources."isexe-2.0.0"
sources."npmconf-2.1.2"
sources."pify-2.3.0"
sources."pinkie-promise-2.0.1"
@@ -29374,12 +30097,12 @@ in
sources."node-status-codes-1.0.0"
sources."parse-json-2.2.0"
sources."read-all-stream-3.1.0"
- sources."readable-stream-2.2.3"
+ sources."readable-stream-2.2.6"
sources."timed-out-3.1.3"
sources."unzip-response-1.0.2"
sources."url-parse-lax-1.0.0"
sources."capture-stack-trace-1.0.0"
- sources."error-ex-1.3.0"
+ sources."error-ex-1.3.1"
sources."is-arrayish-0.2.1"
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -29406,7 +30129,7 @@ in
sources."number-is-nan-1.0.1"
sources."lodash.debounce-3.1.1"
sources."os-name-1.0.3"
- (sources."request-2.79.0" // {
+ (sources."request-2.81.0" // {
dependencies = [
sources."uuid-3.0.1"
];
@@ -29425,39 +30148,42 @@ in
})
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
- sources."caseless-0.11.0"
+ sources."caseless-0.12.0"
sources."combined-stream-1.0.5"
sources."extend-3.0.0"
sources."forever-agent-0.6.1"
sources."form-data-2.1.2"
- sources."har-validator-2.0.6"
+ sources."har-validator-4.2.1"
sources."hawk-3.1.3"
sources."http-signature-1.1.1"
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- sources."mime-types-2.1.14"
+ sources."mime-types-2.1.15"
sources."oauth-sign-0.8.2"
- sources."qs-6.3.1"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."delayed-stream-1.0.0"
sources."asynckit-0.4.0"
- sources."commander-2.9.0"
- sources."is-my-json-valid-2.16.0"
- sources."graceful-readlink-1.0.1"
- sources."generate-function-2.0.0"
- sources."generate-object-property-1.2.0"
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- sources."is-property-1.0.2"
+ sources."ajv-4.11.5"
+ sources."har-schema-1.0.5"
+ sources."co-4.6.0"
+ sources."json-stable-stringify-1.0.1"
+ sources."jsonify-0.0.0"
sources."hoek-2.16.3"
sources."boom-2.10.1"
sources."cryptiles-2.0.5"
sources."sntp-1.0.9"
sources."assert-plus-0.2.0"
- sources."jsprim-1.3.1"
- (sources."sshpk-1.10.2" // {
+ (sources."jsprim-1.4.0" // {
+ dependencies = [
+ sources."assert-plus-1.0.0"
+ ];
+ })
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."assert-plus-1.0.0"
];
@@ -29481,19 +30207,19 @@ in
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
sources."bcrypt-pbkdf-1.0.1"
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
sources."punycode-1.4.1"
sources."camelcase-keys-2.1.0"
sources."loud-rejection-1.6.0"
sources."map-obj-1.0.1"
- sources."normalize-package-data-2.3.5"
+ sources."normalize-package-data-2.3.6"
sources."redent-1.0.0"
sources."trim-newlines-1.0.0"
sources."camelcase-2.1.1"
sources."currently-unhandled-0.4.1"
sources."signal-exit-3.0.2"
sources."array-find-index-1.0.2"
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
sources."is-builtin-module-1.0.0"
sources."validate-npm-package-license-3.0.1"
sources."builtin-modules-1.1.1"
@@ -29504,7 +30230,7 @@ in
sources."strip-indent-1.0.1"
sources."get-stdin-4.0.1"
sources."registry-url-3.1.0"
- (sources."rc-1.1.7" // {
+ (sources."rc-1.2.0" // {
dependencies = [
sources."minimist-1.2.0"
];
@@ -29532,7 +30258,7 @@ in
sources."arrify-1.0.1"
sources."dot-prop-2.4.0"
sources."is-obj-1.0.1"
- sources."debug-2.6.1"
+ sources."debug-2.6.3"
sources."npmlog-2.0.4"
sources."ms-0.7.2"
sources."external-editor-1.1.1"
@@ -29604,6 +30330,7 @@ in
sources."through2-2.0.3"
sources."vinyl-1.2.0"
sources."vinyl-file-2.0.0"
+ sources."xtend-4.0.1"
sources."clone-1.0.2"
sources."clone-stats-0.0.1"
sources."replace-ext-0.0.1"
diff --git a/pkgs/development/web/remarkjs/node-packages.nix b/pkgs/development/web/remarkjs/node-packages.nix
index 7e8a3160b31..2e17d72ea9e 100644
--- a/pkgs/development/web/remarkjs/node-packages.nix
+++ b/pkgs/development/web/remarkjs/node-packages.nix
@@ -1,16 +1,16 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
let
sources = {
- "JSONStream-1.3.0" = {
+ "JSONStream-1.3.1" = {
name = "JSONStream";
packageName = "JSONStream";
- version = "1.3.0";
+ version = "1.3.1";
src = fetchurl {
- url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.0.tgz";
- sha1 = "680ab9ac6572a8a1a207e0b38721db1c77b215e5";
+ url = "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.1.tgz";
+ sha1 = "707f761e01dae9e16f1bcf93703b78c70966579a";
};
};
"assert-1.4.1" = {
@@ -49,22 +49,22 @@ let
sha1 = "bb35f8a519f600e0fa6b8485241c979d0141fb2d";
};
};
- "buffer-4.9.1" = {
+ "buffer-5.0.5" = {
name = "buffer";
packageName = "buffer";
- version = "4.9.1";
+ version = "5.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz";
- sha1 = "6d1bb601b07a4efced97094132093027c95bc298";
+ url = "https://registry.npmjs.org/buffer/-/buffer-5.0.5.tgz";
+ sha1 = "35c9393244a90aff83581063d16f0882cecc9418";
};
};
- "cached-path-relative-1.0.0" = {
+ "cached-path-relative-1.0.1" = {
name = "cached-path-relative";
packageName = "cached-path-relative";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.0.tgz";
- sha1 = "d1094c577fbd9a8b8bd43c96af6188aa205d05f4";
+ url = "https://registry.npmjs.org/cached-path-relative/-/cached-path-relative-1.0.1.tgz";
+ sha1 = "d09c4b52800aa4c078e2dd81a869aac90d2e54e7";
};
};
"concat-stream-1.5.2" = {
@@ -211,13 +211,13 @@ let
sha1 = "a52e1d138024c00b86b1c0c91f677918b8ae0a59";
};
};
- "module-deps-4.0.8" = {
+ "module-deps-4.1.1" = {
name = "module-deps";
packageName = "module-deps";
- version = "4.0.8";
+ version = "4.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/module-deps/-/module-deps-4.0.8.tgz";
- sha1 = "55fd70623399706c3288bef7a609ff1e8c0ed2bb";
+ url = "https://registry.npmjs.org/module-deps/-/module-deps-4.1.1.tgz";
+ sha1 = "23215833f1da13fd606ccb8087b44852dcb821fd";
};
};
"os-browserify-0.1.2" = {
@@ -283,22 +283,22 @@ let
sha1 = "2724fd6a8113d73764ac288d4386270c1dbf17f0";
};
};
- "readable-stream-2.2.2" = {
+ "readable-stream-2.2.6" = {
name = "readable-stream";
packageName = "readable-stream";
- version = "2.2.2";
+ version = "2.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.2.tgz";
- sha1 = "a9e6fec3c7dda85f8bb1b3ba7028604556fc825e";
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.6.tgz";
+ sha1 = "8b43aed76e71483938d12a8d46c6cf1a00b1f816";
};
};
- "resolve-1.2.0" = {
+ "resolve-1.3.2" = {
name = "resolve";
packageName = "resolve";
- version = "1.2.0";
+ version = "1.3.2";
src = fetchurl {
- url = "https://registry.npmjs.org/resolve/-/resolve-1.2.0.tgz";
- sha1 = "9589c3f2f6149d1417a40becc1663db6ec6bc26c";
+ url = "https://registry.npmjs.org/resolve/-/resolve-1.3.2.tgz";
+ sha1 = "1f0442c9e0cbb8136e87b9305f932f46c7f28235";
};
};
"shasum-1.0.2" = {
@@ -355,13 +355,13 @@ let
sha1 = "f62cf17581e996b48fc965699f54c06ae268b8d2";
};
};
- "syntax-error-1.1.6" = {
+ "syntax-error-1.3.0" = {
name = "syntax-error";
packageName = "syntax-error";
- version = "1.1.6";
+ version = "1.3.0";
src = fetchurl {
- url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.1.6.tgz";
- sha1 = "b4549706d386cc1c1dc7c2423f18579b6cade710";
+ url = "https://registry.npmjs.org/syntax-error/-/syntax-error-1.3.0.tgz";
+ sha1 = "1ed9266c4d40be75dc55bf9bb1cb77062bb96ca1";
};
};
"through2-2.0.3" = {
@@ -535,15 +535,6 @@ let
sha1 = "be33d40ac10ef1926701f6f08a2d86fbfd1ad3e4";
};
};
- "isarray-1.0.0" = {
- name = "isarray";
- packageName = "isarray";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
- sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
- };
- };
"typedarray-0.0.6" = {
name = "typedarray";
packageName = "typedarray";
@@ -571,6 +562,15 @@ let
sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
};
};
+ "isarray-1.0.0" = {
+ name = "isarray";
+ packageName = "isarray";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz";
+ sha1 = "bb935d48582cba168c06834957a54a3e07124f11";
+ };
+ };
"process-nextick-args-1.0.7" = {
name = "process-nextick-args";
packageName = "process-nextick-args";
@@ -607,13 +607,13 @@ let
sha1 = "9988244874bf5ed4e28da95666dcd66ac8fc363a";
};
};
- "browserify-sign-4.0.0" = {
+ "browserify-sign-4.0.4" = {
name = "browserify-sign";
packageName = "browserify-sign";
- version = "4.0.0";
+ version = "4.0.4";
src = fetchurl {
- url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.0.tgz";
- sha1 = "10773910c3c206d5420a46aad8694f820b85968f";
+ url = "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz";
+ sha1 = "aa4eb68e5d7b658baa6bf6a57e630cbd7a93d298";
};
};
"create-ecdh-4.0.0" = {
@@ -760,31 +760,31 @@ let
sha1 = "21e0abfaf6f2029cf2fafb133567a701d4135524";
};
};
- "elliptic-6.3.2" = {
+ "elliptic-6.4.0" = {
name = "elliptic";
packageName = "elliptic";
- version = "6.3.2";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/elliptic/-/elliptic-6.3.2.tgz";
- sha1 = "e4c81e0829cf0a65ab70e998b8232723b5c1bc48";
+ url = "https://registry.npmjs.org/elliptic/-/elliptic-6.4.0.tgz";
+ sha1 = "cac9af8762c85836187003c8dfe193e5e2eae5df";
};
};
- "parse-asn1-5.0.0" = {
+ "parse-asn1-5.1.0" = {
name = "parse-asn1";
packageName = "parse-asn1";
- version = "5.0.0";
+ version = "5.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.0.0.tgz";
- sha1 = "35060f6d5015d37628c770f4e091a0b5a278bc23";
+ url = "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.0.tgz";
+ sha1 = "37c4f9b7ed3ab65c74817b5f2480937fbf97c712";
};
};
- "brorand-1.0.6" = {
+ "brorand-1.1.0" = {
name = "brorand";
packageName = "brorand";
- version = "1.0.6";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/brorand/-/brorand-1.0.6.tgz";
- sha1 = "4028706b915f91f7b349a2e0bf3c376039d216e5";
+ url = "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz";
+ sha1 = "12c25efe40a45e3c323eb8675a0a0ce57b22371f";
};
};
"hash.js-1.0.3" = {
@@ -796,6 +796,24 @@ let
sha1 = "1332ff00156c0a0ffdd8236013d07b77a0451573";
};
};
+ "hmac-drbg-1.0.0" = {
+ name = "hmac-drbg";
+ packageName = "hmac-drbg";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.0.tgz";
+ sha1 = "3db471f45aae4a994a0688322171f51b8b91bee5";
+ };
+ };
+ "minimalistic-crypto-utils-1.0.1" = {
+ name = "minimalistic-crypto-utils";
+ packageName = "minimalistic-crypto-utils";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz";
+ sha1 = "f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a";
+ };
+ };
"asn1.js-4.9.1" = {
name = "asn1.js";
packageName = "asn1.js";
@@ -922,13 +940,13 @@ let
sha1 = "16176714c801798e4e8f2cf7f7529467bb4a5771";
};
};
- "is-buffer-1.1.4" = {
+ "is-buffer-1.1.5" = {
name = "is-buffer";
packageName = "is-buffer";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz";
- sha1 = "cfc86ccd5dc5a52fa80489111c6920c457e2d98b";
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz";
+ sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc";
};
};
"lexical-scope-1.2.0" = {
@@ -940,22 +958,22 @@ let
sha1 = "fcea5edc704a4b3a8796cdca419c3a0afaf22df4";
};
};
- "astw-2.0.0" = {
+ "astw-2.2.0" = {
name = "astw";
packageName = "astw";
- version = "2.0.0";
+ version = "2.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/astw/-/astw-2.0.0.tgz";
- sha1 = "08121ac8288d35611c0ceec663f6cd545604897d";
+ url = "https://registry.npmjs.org/astw/-/astw-2.2.0.tgz";
+ sha1 = "7bd41784d32493987aeb239b6b4e1c57a873b917";
};
};
- "acorn-1.2.2" = {
+ "acorn-4.0.11" = {
name = "acorn";
packageName = "acorn";
- version = "1.2.2";
+ version = "4.0.11";
src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-1.2.2.tgz";
- sha1 = "c8ce27de0acc76d896d2b1fad3df588d9e82f014";
+ url = "https://registry.npmjs.org/acorn/-/acorn-4.0.11.tgz";
+ sha1 = "edcda3bd937e7556410d42ed5860f67399c794c0";
};
};
"isarray-0.0.1" = {
@@ -976,13 +994,13 @@ let
sha1 = "1b63be438a133e4b671cc1935197600175910d83";
};
};
- "detective-4.3.2" = {
+ "detective-4.5.0" = {
name = "detective";
packageName = "detective";
- version = "4.3.2";
+ version = "4.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/detective/-/detective-4.3.2.tgz";
- sha1 = "77697e2e7947ac3fe7c8e26a6d6f115235afa91c";
+ url = "https://registry.npmjs.org/detective/-/detective-4.5.0.tgz";
+ sha1 = "6e5a8c6b26e6c7a254b1c6b6d7490d98ec91edd1";
};
};
"stream-combiner2-1.1.1" = {
@@ -994,15 +1012,6 @@ let
sha1 = "fb4d8a1420ea362764e21ad4780397bebcb41cbe";
};
};
- "acorn-3.3.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "3.3.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz";
- sha1 = "45e37fb39e8da3f25baee3ff5369e2bb5f22017a";
- };
- };
"path-platform-0.11.15" = {
name = "path-platform";
packageName = "path-platform";
@@ -1021,6 +1030,15 @@ let
sha1 = "9978ce317388c649ad8793028c3477ef044a8b51";
};
};
+ "path-parse-1.0.5" = {
+ name = "path-parse";
+ packageName = "path-parse";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.5.tgz";
+ sha1 = "3c1adf871ea9cd6c9431b6ea2bd74a0ff055c4c1";
+ };
+ };
"json-stable-stringify-0.0.1" = {
name = "json-stable-stringify";
packageName = "json-stable-stringify";
@@ -1093,15 +1111,6 @@ let
sha1 = "a35008b20f41383eec1fb914f4cd5df79a264284";
};
};
- "acorn-2.7.0" = {
- name = "acorn";
- packageName = "acorn";
- version = "2.7.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/acorn/-/acorn-2.7.0.tgz";
- sha1 = "ab6e7d9d886aaca8b085bc3312b79a198433f0e7";
- };
- };
"punycode-1.3.2" = {
name = "punycode";
packageName = "punycode";
@@ -1138,13 +1147,13 @@ let
sha1 = "82dc336d232b9062179d05ab3293a66059fd435d";
};
};
- "async-0.2.10" = {
- name = "async";
- packageName = "async";
- version = "0.2.10";
+ "yargs-3.10.0" = {
+ name = "yargs";
+ packageName = "yargs";
+ version = "3.10.0";
src = fetchurl {
- url = "https://registry.npmjs.org/async/-/async-0.2.10.tgz";
- sha1 = "b6bbe0b0674b9d719708ca38de8c237cb526c3d1";
+ url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
+ sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
};
};
"uglify-to-browserify-1.0.2" = {
@@ -1156,15 +1165,6 @@ let
sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
};
};
- "yargs-3.10.0" = {
- name = "yargs";
- packageName = "yargs";
- version = "3.10.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz";
- sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
- };
- };
"camelcase-1.2.1" = {
name = "camelcase";
packageName = "camelcase";
@@ -1327,13 +1327,13 @@ let
sha1 = "489654c692616b8aa55b0724fa809bb7db49c5bf";
};
};
- "request-2.79.0" = {
+ "request-2.81.0" = {
name = "request";
packageName = "request";
- version = "2.79.0";
+ version = "2.81.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.79.0.tgz";
- sha1 = "4dfe5bf6be8b8cdc37fcf93e04b65577722710de";
+ url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
+ sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
};
};
"prr-0.0.0" = {
@@ -1372,22 +1372,22 @@ let
sha1 = "14342dd38dbcc94d0e5b87d763cd63612c0e794f";
};
};
- "aws4-1.5.0" = {
+ "aws4-1.6.0" = {
name = "aws4";
packageName = "aws4";
- version = "1.5.0";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/aws4/-/aws4-1.5.0.tgz";
- sha1 = "0a29ffb79c31c9e712eeb087e8e7a64b4a56d755";
+ url = "https://registry.npmjs.org/aws4/-/aws4-1.6.0.tgz";
+ sha1 = "83ef5ca860b2b32e4a0deedee8c771b9db57471e";
};
};
- "caseless-0.11.0" = {
+ "caseless-0.12.0" = {
name = "caseless";
packageName = "caseless";
- version = "0.11.0";
+ version = "0.12.0";
src = fetchurl {
- url = "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz";
- sha1 = "715b96ea9841593cc33067923f5ec60ebda4f7d7";
+ url = "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz";
+ sha1 = "1b681c21ff84033c826543090689420d187151dc";
};
};
"combined-stream-1.0.5" = {
@@ -1426,13 +1426,13 @@ let
sha1 = "89c3534008b97eada4cbb157d58f6f5df025eae4";
};
};
- "har-validator-2.0.6" = {
+ "har-validator-4.2.1" = {
name = "har-validator";
packageName = "har-validator";
- version = "2.0.6";
+ version = "4.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/har-validator/-/har-validator-2.0.6.tgz";
- sha1 = "cdcbc08188265ad119b6a5a7c8ab70eecfb5d27d";
+ url = "https://registry.npmjs.org/har-validator/-/har-validator-4.2.1.tgz";
+ sha1 = "33481d0f1bbff600dd203d75812a6a5fba002e2a";
};
};
"hawk-3.1.3" = {
@@ -1480,13 +1480,13 @@ let
sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
};
};
- "mime-types-2.1.14" = {
+ "mime-types-2.1.15" = {
name = "mime-types";
packageName = "mime-types";
- version = "2.1.14";
+ version = "2.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz";
- sha1 = "f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz";
+ sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed";
};
};
"oauth-sign-0.8.2" = {
@@ -1498,13 +1498,31 @@ let
sha1 = "46a6ab7f0aead8deae9ec0565780b7d4efeb9d43";
};
};
- "qs-6.3.0" = {
+ "performance-now-0.2.0" = {
+ name = "performance-now";
+ packageName = "performance-now";
+ version = "0.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/performance-now/-/performance-now-0.2.0.tgz";
+ sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
+ };
+ };
+ "qs-6.4.0" = {
name = "qs";
packageName = "qs";
- version = "6.3.0";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.3.0.tgz";
- sha1 = "f403b264f23bc01228c74131b407f18d5ea5d442";
+ url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
+ sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
+ };
+ };
+ "safe-buffer-5.0.1" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz";
+ sha1 = "d263ca54696cd8a306b5ca6551e92de57918fbe7";
};
};
"stringstream-0.0.5" = {
@@ -1525,13 +1543,13 @@ let
sha1 = "f081f76e4c85720e6c37a5faced737150d84072a";
};
};
- "tunnel-agent-0.4.3" = {
+ "tunnel-agent-0.6.0" = {
name = "tunnel-agent";
packageName = "tunnel-agent";
- version = "0.4.3";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz";
- sha1 = "6373db76909fe570e08d73583365ed828a74eeeb";
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
};
};
"uuid-3.0.1" = {
@@ -1561,148 +1579,40 @@ let
sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
- "chalk-1.1.3" = {
- name = "chalk";
- packageName = "chalk";
- version = "1.1.3";
+ "ajv-4.11.5" = {
+ name = "ajv";
+ packageName = "ajv";
+ version = "4.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz";
- sha1 = "a8115c55e4a702fe4d150abd3872822a7e09fc98";
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.5.tgz";
+ sha1 = "b6ee74657b993a01dce44b7944d56f485828d5bd";
};
};
- "commander-2.9.0" = {
- name = "commander";
- packageName = "commander";
- version = "2.9.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
- sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
- };
- };
- "is-my-json-valid-2.15.0" = {
- name = "is-my-json-valid";
- packageName = "is-my-json-valid";
- version = "2.15.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.15.0.tgz";
- sha1 = "936edda3ca3c211fd98f3b2d3e08da43f7b2915b";
- };
- };
- "pinkie-promise-2.0.1" = {
- name = "pinkie-promise";
- packageName = "pinkie-promise";
- version = "2.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz";
- sha1 = "2135d6dfa7a358c069ac9b178776288228450ffa";
- };
- };
- "ansi-styles-2.2.1" = {
- name = "ansi-styles";
- packageName = "ansi-styles";
- version = "2.2.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz";
- sha1 = "b432dd3358b634cf75e1e4664368240533c1ddbe";
- };
- };
- "escape-string-regexp-1.0.5" = {
- name = "escape-string-regexp";
- packageName = "escape-string-regexp";
+ "har-schema-1.0.5" = {
+ name = "har-schema";
+ packageName = "har-schema";
version = "1.0.5";
src = fetchurl {
- url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
- sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ url = "https://registry.npmjs.org/har-schema/-/har-schema-1.0.5.tgz";
+ sha1 = "d263135f43307c02c602afc8fe95970c0151369e";
};
};
- "has-ansi-2.0.0" = {
- name = "has-ansi";
- packageName = "has-ansi";
- version = "2.0.0";
+ "co-4.6.0" = {
+ name = "co";
+ packageName = "co";
+ version = "4.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz";
- sha1 = "34f5049ce1ecdf2b0649af3ef24e45ed35416d91";
+ url = "https://registry.npmjs.org/co/-/co-4.6.0.tgz";
+ sha1 = "6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184";
};
};
- "strip-ansi-3.0.1" = {
- name = "strip-ansi";
- packageName = "strip-ansi";
- version = "3.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz";
- sha1 = "6a385fb8853d952d5ff05d0e8aaf94278dc63dcf";
- };
- };
- "supports-color-2.0.0" = {
- name = "supports-color";
- packageName = "supports-color";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz";
- sha1 = "535d045ce6b6363fa40117084629995e9df324c7";
- };
- };
- "ansi-regex-2.1.1" = {
- name = "ansi-regex";
- packageName = "ansi-regex";
- version = "2.1.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz";
- sha1 = "c3b33ab5ee360d86e0e628f0468ae7ef27d654df";
- };
- };
- "graceful-readlink-1.0.1" = {
- name = "graceful-readlink";
- packageName = "graceful-readlink";
+ "json-stable-stringify-1.0.1" = {
+ name = "json-stable-stringify";
+ packageName = "json-stable-stringify";
version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
- sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
- };
- };
- "generate-function-2.0.0" = {
- name = "generate-function";
- packageName = "generate-function";
- version = "2.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz";
- sha1 = "6858fe7c0969b7d4e9093337647ac79f60dfbe74";
- };
- };
- "generate-object-property-1.2.0" = {
- name = "generate-object-property";
- packageName = "generate-object-property";
- version = "1.2.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz";
- sha1 = "9c0e1c40308ce804f4783618b937fa88f99d50d0";
- };
- };
- "jsonpointer-4.0.1" = {
- name = "jsonpointer";
- packageName = "jsonpointer";
- version = "4.0.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/jsonpointer/-/jsonpointer-4.0.1.tgz";
- sha1 = "4fd92cb34e0e9db3c89c8622ecf51f9b978c6cb9";
- };
- };
- "is-property-1.0.2" = {
- name = "is-property";
- packageName = "is-property";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz";
- sha1 = "57fe1c4e48474edd65b09911f26b1cd4095dda84";
- };
- };
- "pinkie-2.0.4" = {
- name = "pinkie";
- packageName = "pinkie";
- version = "2.0.4";
- src = fetchurl {
- url = "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz";
- sha1 = "72556b80cfa0d48a974e80e77248e80ed4f7f870";
+ url = "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz";
+ sha1 = "9a759d39c5f2ff503fd5300646ed445f88c4f9af";
};
};
"hoek-2.16.3" = {
@@ -1750,22 +1660,31 @@ let
sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
};
};
- "jsprim-1.3.1" = {
+ "jsprim-1.4.0" = {
name = "jsprim";
packageName = "jsprim";
- version = "1.3.1";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.3.1.tgz";
- sha1 = "2a7256f70412a29ee3670aaca625994c4dcff252";
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz";
+ sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918";
};
};
- "sshpk-1.10.2" = {
+ "sshpk-1.11.0" = {
name = "sshpk";
packageName = "sshpk";
- version = "1.10.2";
+ version = "1.11.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sshpk/-/sshpk-1.10.2.tgz";
- sha1 = "d5a804ce22695515638e798dbe23273de070a5fa";
+ url = "https://registry.npmjs.org/sshpk/-/sshpk-1.11.0.tgz";
+ sha1 = "2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77";
+ };
+ };
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
};
};
"extsprintf-1.0.2" = {
@@ -1804,15 +1723,6 @@ let
sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
};
};
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- };
"dashdash-1.14.1" = {
name = "dashdash";
packageName = "dashdash";
@@ -1831,13 +1741,13 @@ let
sha1 = "283ffd9fc1256840875311c1b60e8c40187110e6";
};
};
- "jsbn-0.1.0" = {
+ "jsbn-0.1.1" = {
name = "jsbn";
packageName = "jsbn";
- version = "0.1.0";
+ version = "0.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz";
- sha1 = "650987da0dd74f4ebf5a11377a2aa2d273e97dfd";
+ url = "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz";
+ sha1 = "a5e654c2e5a2deb5f201d96cefbca80c0ef2f513";
};
};
"tweetnacl-0.14.5" = {
@@ -1867,22 +1777,22 @@ let
sha1 = "0fc73a9ed5f0d53c38193398523ef7e543777505";
};
};
- "bcrypt-pbkdf-1.0.0" = {
+ "bcrypt-pbkdf-1.0.1" = {
name = "bcrypt-pbkdf";
packageName = "bcrypt-pbkdf";
- version = "1.0.0";
+ version = "1.0.1";
src = fetchurl {
- url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.0.tgz";
- sha1 = "3ca76b85241c7170bf7d9703e7b9aa74630040d4";
+ url = "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.1.tgz";
+ sha1 = "63bc5dcb61331b92bc05fd528953c33462a06f8d";
};
};
- "mime-db-1.26.0" = {
+ "mime-db-1.27.0" = {
name = "mime-db";
packageName = "mime-db";
- version = "1.26.0";
+ version = "1.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.26.0.tgz";
- sha1 = "eaffcd0e4fc6935cf8134da246e2e6c35305adff";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz";
+ sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1";
};
};
"browser-stdout-1.3.0" = {
@@ -1894,6 +1804,15 @@ let
sha1 = "f351d32969d32fa5d7a5567154263d928ae3bd1f";
};
};
+ "commander-2.9.0" = {
+ name = "commander";
+ packageName = "commander";
+ version = "2.9.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz";
+ sha1 = "9c99094176e12240cb22d6c5146098400fe0f7d4";
+ };
+ };
"debug-2.2.0" = {
name = "debug";
packageName = "debug";
@@ -1912,6 +1831,15 @@ let
sha1 = "7f28d2eb9ee7b15a97efd89ce63dcfdaa3ccbabf";
};
};
+ "escape-string-regexp-1.0.5" = {
+ name = "escape-string-regexp";
+ packageName = "escape-string-regexp";
+ version = "1.0.5";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz";
+ sha1 = "1b61c0562190a8dff6ae3bb2cf0200ca130b86d4";
+ };
+ };
"glob-7.0.5" = {
name = "glob";
packageName = "glob";
@@ -1957,6 +1885,15 @@ let
sha1 = "72a262894d9d408b956ca05ff37b2ed8a6e2a2d5";
};
};
+ "graceful-readlink-1.0.1" = {
+ name = "graceful-readlink";
+ packageName = "graceful-readlink";
+ version = "1.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz";
+ sha1 = "4cafad76bc62f02fa039b2f94e9a3dd3a391a725";
+ };
+ };
"ms-0.7.1" = {
name = "ms";
packageName = "ms";
@@ -2236,13 +2173,13 @@ let
sha1 = "0537cb79daf59b59a1a517dff706c86ec039162e";
};
};
- "abbrev-1.0.9" = {
+ "abbrev-1.1.0" = {
name = "abbrev";
packageName = "abbrev";
- version = "1.0.9";
+ version = "1.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/abbrev/-/abbrev-1.0.9.tgz";
- sha1 = "91b4792588a7738c25f35dd6f63752a2f8776135";
+ url = "https://registry.npmjs.org/abbrev/-/abbrev-1.1.0.tgz";
+ sha1 = "d0554c2256636e2f56e7c2e5ad183f859428d81f";
};
};
"qs-0.6.6" = {
@@ -2272,13 +2209,13 @@ let
sha1 = "6d0e09c4921f94a27f63d3b49c5feff1ea4c5130";
};
};
- "node-uuid-1.4.7" = {
+ "node-uuid-1.4.8" = {
name = "node-uuid";
packageName = "node-uuid";
- version = "1.4.7";
+ version = "1.4.8";
src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
- sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f";
+ url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz";
+ sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
};
};
"form-data-0.1.4" = {
@@ -2290,6 +2227,15 @@ let
sha1 = "91abd788aba9702b1aabfa8bc01031a2ac9e3b12";
};
};
+ "tunnel-agent-0.4.3" = {
+ name = "tunnel-agent";
+ packageName = "tunnel-agent";
+ version = "0.4.3";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz";
+ sha1 = "6373db76909fe570e08d73583365ed828a74eeeb";
+ };
+ };
"http-signature-0.10.1" = {
name = "http-signature";
packageName = "http-signature";
@@ -2434,13 +2380,13 @@ let
sha1 = "0b6e9516f2601a9fb0bb2dcc369afa1c7e200af7";
};
};
- "should-format-3.0.2" = {
+ "should-format-3.0.3" = {
name = "should-format";
packageName = "should-format";
- version = "3.0.2";
+ version = "3.0.3";
src = fetchurl {
- url = "https://registry.npmjs.org/should-format/-/should-format-3.0.2.tgz";
- sha1 = "1a543ad3abfea5dc2bea4a0ba875ede60fe22b19";
+ url = "https://registry.npmjs.org/should-format/-/should-format-3.0.3.tgz";
+ sha1 = "9bfc8f74fa39205c53d38c34d717303e277124f1";
};
};
"should-type-1.4.0" = {
@@ -2470,31 +2416,76 @@ let
sha1 = "c98cda374aa6b190df8ba87c9889c2b4db620063";
};
};
- "formatio-1.1.1" = {
+ "diff-3.2.0" = {
+ name = "diff";
+ packageName = "diff";
+ version = "3.2.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/diff/-/diff-3.2.0.tgz";
+ sha1 = "c9ce393a4b7cbd0b058a725c93df299027868ff9";
+ };
+ };
+ "formatio-1.2.0" = {
name = "formatio";
packageName = "formatio";
- version = "1.1.1";
+ version = "1.2.0";
src = fetchurl {
- url = "https://registry.npmjs.org/formatio/-/formatio-1.1.1.tgz";
- sha1 = "5ed3ccd636551097383465d996199100e86161e9";
+ url = "https://registry.npmjs.org/formatio/-/formatio-1.2.0.tgz";
+ sha1 = "f3b2167d9068c4698a8d51f4f760a39a54d818eb";
};
};
- "lolex-1.3.2" = {
+ "lolex-1.6.0" = {
name = "lolex";
packageName = "lolex";
- version = "1.3.2";
+ version = "1.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/lolex/-/lolex-1.3.2.tgz";
- sha1 = "7c3da62ffcb30f0f5a80a2566ca24e45d8a01f31";
+ url = "https://registry.npmjs.org/lolex/-/lolex-1.6.0.tgz";
+ sha1 = "3a9a0283452a47d7439e72731b9e07d7386e49f6";
};
};
- "samsam-1.1.2" = {
+ "native-promise-only-0.8.1" = {
+ name = "native-promise-only";
+ packageName = "native-promise-only";
+ version = "0.8.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/native-promise-only/-/native-promise-only-0.8.1.tgz";
+ sha1 = "20a318c30cb45f71fe7adfbf7b21c99c1472ef11";
+ };
+ };
+ "path-to-regexp-1.7.0" = {
+ name = "path-to-regexp";
+ packageName = "path-to-regexp";
+ version = "1.7.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-1.7.0.tgz";
+ sha1 = "59fde0f435badacba103a84e9d3bc64e96b9937d";
+ };
+ };
+ "samsam-1.2.1" = {
name = "samsam";
packageName = "samsam";
- version = "1.1.2";
+ version = "1.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/samsam/-/samsam-1.1.2.tgz";
- sha1 = "bec11fdc83a9fda063401210e40176c3024d1567";
+ url = "https://registry.npmjs.org/samsam/-/samsam-1.2.1.tgz";
+ sha1 = "edd39093a3184370cb859243b2bdf255e7d8ea67";
+ };
+ };
+ "text-encoding-0.6.4" = {
+ name = "text-encoding";
+ packageName = "text-encoding";
+ version = "0.6.4";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/text-encoding/-/text-encoding-0.6.4.tgz";
+ sha1 = "e399a982257a276dae428bb92845cb71bdc26d19";
+ };
+ };
+ "type-detect-4.0.0" = {
+ name = "type-detect";
+ packageName = "type-detect";
+ version = "4.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/type-detect/-/type-detect-4.0.0.tgz";
+ sha1 = "62053883542a321f2f7b25746dc696478b18ff6b";
};
};
"cli-1.0.1" = {
@@ -2623,13 +2614,13 @@ let
sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0";
};
};
- "interpret-1.0.1" = {
+ "interpret-1.0.2" = {
name = "interpret";
packageName = "interpret";
- version = "1.0.1";
+ version = "1.0.2";
src = fetchurl {
- url = "https://registry.npmjs.org/interpret/-/interpret-1.0.1.tgz";
- sha1 = "d579fb7f693b858004947af39fa0db49f795602c";
+ url = "https://registry.npmjs.org/interpret/-/interpret-1.0.2.tgz";
+ sha1 = "f4f623f0bb7122f15f5717c8e254b8161b5c5b2d";
};
};
"rechoir-0.6.2" = {
@@ -2663,13 +2654,13 @@ in
browserify = nodeEnv.buildNodePackage {
name = "browserify";
packageName = "browserify";
- version = "13.3.0";
+ version = "14.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/browserify/-/browserify-13.3.0.tgz";
- sha1 = "b5a9c9020243f0c70e4675bec8223bc627e415ce";
+ url = "https://registry.npmjs.org/browserify/-/browserify-14.1.0.tgz";
+ sha1 = "0508cc1e7bf4c152312c2fa523e676c0b0b92311";
};
dependencies = [
- (sources."JSONStream-1.3.0" // {
+ (sources."JSONStream-1.3.1" // {
dependencies = [
sources."jsonparse-1.3.0"
sources."through-2.3.8"
@@ -2699,14 +2690,13 @@ in
sources."pako-0.2.9"
];
})
- (sources."buffer-4.9.1" // {
+ (sources."buffer-5.0.5" // {
dependencies = [
sources."base64-js-1.2.0"
sources."ieee754-1.1.8"
- sources."isarray-1.0.0"
];
})
- sources."cached-path-relative-1.0.0"
+ sources."cached-path-relative-1.0.1"
(sources."concat-stream-1.5.2" // {
dependencies = [
sources."typedarray-0.0.6"
@@ -2749,17 +2739,20 @@ in
sources."evp_bytestokey-1.0.0"
];
})
- (sources."browserify-sign-4.0.0" // {
+ (sources."browserify-sign-4.0.4" // {
dependencies = [
sources."bn.js-4.11.6"
sources."browserify-rsa-4.0.1"
- (sources."elliptic-6.3.2" // {
+ (sources."elliptic-6.4.0" // {
dependencies = [
- sources."brorand-1.0.6"
+ sources."brorand-1.1.0"
sources."hash.js-1.0.3"
+ sources."hmac-drbg-1.0.0"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
];
})
- (sources."parse-asn1-5.0.0" // {
+ (sources."parse-asn1-5.1.0" // {
dependencies = [
(sources."asn1.js-4.9.1" // {
dependencies = [
@@ -2780,10 +2773,13 @@ in
(sources."create-ecdh-4.0.0" // {
dependencies = [
sources."bn.js-4.11.6"
- (sources."elliptic-6.3.2" // {
+ (sources."elliptic-6.4.0" // {
dependencies = [
- sources."brorand-1.0.6"
+ sources."brorand-1.1.0"
sources."hash.js-1.0.3"
+ sources."hmac-drbg-1.0.0"
+ sources."minimalistic-assert-1.0.0"
+ sources."minimalistic-crypto-utils-1.0.1"
];
})
];
@@ -2801,7 +2797,7 @@ in
sources."bn.js-4.11.6"
(sources."miller-rabin-4.0.0" // {
dependencies = [
- sources."brorand-1.0.6"
+ sources."brorand-1.1.0"
];
})
];
@@ -2811,7 +2807,7 @@ in
dependencies = [
sources."bn.js-4.11.6"
sources."browserify-rsa-4.0.1"
- (sources."parse-asn1-5.0.0" // {
+ (sources."parse-asn1-5.1.0" // {
dependencies = [
(sources."asn1.js-4.9.1" // {
dependencies = [
@@ -2881,12 +2877,12 @@ in
sources."source-map-0.5.6"
];
})
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
(sources."lexical-scope-1.2.0" // {
dependencies = [
- (sources."astw-2.0.0" // {
+ (sources."astw-2.2.0" // {
dependencies = [
- sources."acorn-1.2.2"
+ sources."acorn-4.0.11"
];
})
];
@@ -2899,11 +2895,11 @@ in
sources."stream-splicer-2.0.0"
];
})
- (sources."module-deps-4.0.8" // {
+ (sources."module-deps-4.1.1" // {
dependencies = [
- (sources."detective-4.3.2" // {
+ (sources."detective-4.5.0" // {
dependencies = [
- sources."acorn-3.3.0"
+ sources."acorn-4.0.11"
];
})
sources."stream-combiner2-1.1.1"
@@ -2920,7 +2916,7 @@ in
sources."punycode-1.4.1"
sources."querystring-es3-0.2.1"
sources."read-only-stream-2.0.0"
- (sources."readable-stream-2.2.2" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -2929,7 +2925,11 @@ in
sources."util-deprecate-1.0.2"
];
})
- sources."resolve-1.2.0"
+ (sources."resolve-1.3.2" // {
+ dependencies = [
+ sources."path-parse-1.0.5"
+ ];
+ })
(sources."shasum-1.0.2" // {
dependencies = [
(sources."json-stable-stringify-0.0.1" // {
@@ -2961,9 +2961,9 @@ in
sources."minimist-1.2.0"
];
})
- (sources."syntax-error-1.1.6" // {
+ (sources."syntax-error-1.3.0" // {
dependencies = [
- sources."acorn-2.7.0"
+ sources."acorn-4.0.11"
];
})
sources."through2-2.0.3"
@@ -2998,15 +2998,13 @@ in
uglify-js = nodeEnv.buildNodePackage {
name = "uglify-js";
packageName = "uglify-js";
- version = "2.7.5";
+ version = "2.8.20";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.7.5.tgz";
- sha1 = "4612c0c7baaee2ba7c487de4904ae122079f2ca8";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.20.tgz";
+ sha1 = "be87100fbc18de3876ed606e9d24b4568311cecf";
};
dependencies = [
- sources."async-0.2.10"
sources."source-map-0.5.6"
- sources."uglify-to-browserify-1.0.2"
(sources."yargs-3.10.0" // {
dependencies = [
sources."camelcase-1.2.1"
@@ -3018,7 +3016,7 @@ in
dependencies = [
(sources."kind-of-3.1.0" // {
dependencies = [
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
];
})
sources."longest-1.0.1"
@@ -3034,7 +3032,7 @@ in
dependencies = [
(sources."kind-of-3.1.0" // {
dependencies = [
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
];
})
sources."longest-1.0.1"
@@ -3050,6 +3048,7 @@ in
sources."window-size-0.1.0"
];
})
+ sources."uglify-to-browserify-1.0.2"
];
buildInputs = globalBuildInputs;
meta = {
@@ -3087,11 +3086,11 @@ in
];
})
sources."source-map-0.5.6"
- (sources."request-2.79.0" // {
+ (sources."request-2.81.0" // {
dependencies = [
sources."aws-sign2-0.6.0"
- sources."aws4-1.5.0"
- sources."caseless-0.11.0"
+ sources."aws4-1.6.0"
+ sources."caseless-0.12.0"
(sources."combined-stream-1.0.5" // {
dependencies = [
sources."delayed-stream-1.0.0"
@@ -3104,47 +3103,19 @@ in
sources."asynckit-0.4.0"
];
})
- (sources."har-validator-2.0.6" // {
+ (sources."har-validator-4.2.1" // {
dependencies = [
- (sources."chalk-1.1.3" // {
+ (sources."ajv-4.11.5" // {
dependencies = [
- sources."ansi-styles-2.2.1"
- sources."escape-string-regexp-1.0.5"
- (sources."has-ansi-2.0.0" // {
+ sources."co-4.6.0"
+ (sources."json-stable-stringify-1.0.1" // {
dependencies = [
- sources."ansi-regex-2.1.1"
+ sources."jsonify-0.0.0"
];
})
- (sources."strip-ansi-3.0.1" // {
- dependencies = [
- sources."ansi-regex-2.1.1"
- ];
- })
- sources."supports-color-2.0.0"
- ];
- })
- (sources."commander-2.9.0" // {
- dependencies = [
- sources."graceful-readlink-1.0.1"
- ];
- })
- (sources."is-my-json-valid-2.15.0" // {
- dependencies = [
- sources."generate-function-2.0.0"
- (sources."generate-object-property-1.2.0" // {
- dependencies = [
- sources."is-property-1.0.2"
- ];
- })
- sources."jsonpointer-4.0.1"
- sources."xtend-4.0.1"
- ];
- })
- (sources."pinkie-promise-2.0.1" // {
- dependencies = [
- sources."pinkie-2.0.4"
];
})
+ sources."har-schema-1.0.5"
];
})
(sources."hawk-3.1.3" // {
@@ -3158,24 +3129,25 @@ in
(sources."http-signature-1.1.1" // {
dependencies = [
sources."assert-plus-0.2.0"
- (sources."jsprim-1.3.1" // {
+ (sources."jsprim-1.4.0" // {
dependencies = [
+ sources."assert-plus-1.0.0"
sources."extsprintf-1.0.2"
sources."json-schema-0.2.3"
sources."verror-1.3.6"
];
})
- (sources."sshpk-1.10.2" // {
+ (sources."sshpk-1.11.0" // {
dependencies = [
sources."asn1-0.2.3"
sources."assert-plus-1.0.0"
sources."dashdash-1.14.1"
sources."getpass-0.1.6"
- sources."jsbn-0.1.0"
+ sources."jsbn-0.1.1"
sources."tweetnacl-0.14.5"
sources."jodid25519-1.0.2"
sources."ecc-jsbn-0.1.1"
- sources."bcrypt-pbkdf-1.0.0"
+ sources."bcrypt-pbkdf-1.0.1"
];
})
];
@@ -3183,20 +3155,22 @@ in
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."oauth-sign-0.8.2"
- sources."qs-6.3.0"
+ sources."performance-now-0.2.0"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
(sources."tough-cookie-2.3.2" // {
dependencies = [
sources."punycode-1.4.1"
];
})
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
sources."uuid-3.0.1"
];
})
@@ -3324,7 +3298,7 @@ in
sources."osenv-0.0.3"
(sources."nopt-2.2.1" // {
dependencies = [
- sources."abbrev-1.0.9"
+ sources."abbrev-1.1.0"
];
})
sources."semver-1.1.4"
@@ -3339,7 +3313,7 @@ in
sources."json-stringify-safe-5.0.1"
sources."mime-1.2.11"
sources."forever-agent-0.5.2"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
(sources."tough-cookie-2.3.2" // {
dependencies = [
sources."punycode-1.4.1"
@@ -3401,14 +3375,14 @@ in
should = nodeEnv.buildNodePackage {
name = "should";
packageName = "should";
- version = "11.1.2";
+ version = "11.2.1";
src = fetchurl {
- url = "https://registry.npmjs.org/should/-/should-11.1.2.tgz";
- sha1 = "3cad9c6fc600ffe2e1547d948be3284e984da946";
+ url = "https://registry.npmjs.org/should/-/should-11.2.1.tgz";
+ sha1 = "90f55145552d01cfc200666e4e818a1c9670eda2";
};
dependencies = [
sources."should-equal-1.0.1"
- sources."should-format-3.0.2"
+ sources."should-format-3.0.3"
sources."should-type-1.4.0"
sources."should-type-adaptors-1.0.1"
sources."should-util-1.0.0"
@@ -3424,20 +3398,24 @@ in
sinon = nodeEnv.buildNodePackage {
name = "sinon";
packageName = "sinon";
- version = "1.17.7";
+ version = "2.1.0";
src = fetchurl {
- url = "https://registry.npmjs.org/sinon/-/sinon-1.17.7.tgz";
- sha1 = "4542a4f49ba0c45c05eb2e9dd9d203e2b8efe0bf";
+ url = "https://registry.npmjs.org/sinon/-/sinon-2.1.0.tgz";
+ sha1 = "e057a9d2bf1b32f5d6dd62628ca9ee3961b0cafb";
};
dependencies = [
- sources."formatio-1.1.1"
- (sources."util-0.10.3" // {
+ sources."diff-3.2.0"
+ sources."formatio-1.2.0"
+ sources."lolex-1.6.0"
+ sources."native-promise-only-0.8.1"
+ (sources."path-to-regexp-1.7.0" // {
dependencies = [
- sources."inherits-2.0.1"
+ sources."isarray-0.0.1"
];
})
- sources."lolex-1.3.2"
- sources."samsam-1.1.2"
+ sources."samsam-1.2.1"
+ sources."text-encoding-0.6.4"
+ sources."type-detect-4.0.0"
];
buildInputs = globalBuildInputs;
meta = {
@@ -3533,10 +3511,10 @@ in
shelljs = nodeEnv.buildNodePackage {
name = "shelljs";
packageName = "shelljs";
- version = "0.7.6";
+ version = "0.7.7";
src = fetchurl {
- url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.6.tgz";
- sha1 = "379cccfb56b91c8601e4793356eb5382924de9ad";
+ url = "https://registry.npmjs.org/shelljs/-/shelljs-0.7.7.tgz";
+ sha1 = "b2f5c77ef97148f4b4f6e22682e10bba8667cff1";
};
dependencies = [
(sources."glob-7.1.1" // {
@@ -3566,10 +3544,14 @@ in
sources."path-is-absolute-1.0.1"
];
})
- sources."interpret-1.0.1"
+ sources."interpret-1.0.2"
(sources."rechoir-0.6.2" // {
dependencies = [
- sources."resolve-1.2.0"
+ (sources."resolve-1.3.2" // {
+ dependencies = [
+ sources."path-parse-1.0.5"
+ ];
+ })
];
})
];
diff --git a/pkgs/development/web/remarkjs/nodepkgs.nix b/pkgs/development/web/remarkjs/nodepkgs.nix
index 54f8fe0c728..751638e02da 100644
--- a/pkgs/development/web/remarkjs/nodepkgs.nix
+++ b/pkgs/development/web/remarkjs/nodepkgs.nix
@@ -1,8 +1,8 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{pkgs ? import {
inherit system;
- }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs"}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-4_x"}:
let
nodeEnv = import ../../node-packages/node-env.nix {
diff --git a/pkgs/servers/web-apps/pump.io/composition.nix b/pkgs/servers/web-apps/pump.io/composition.nix
index d413475389f..ee4dab5ad64 100644
--- a/pkgs/servers/web-apps/pump.io/composition.nix
+++ b/pkgs/servers/web-apps/pump.io/composition.nix
@@ -1,8 +1,8 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{pkgs ? import {
inherit system;
- }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs"}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-4_x"}:
let
nodeEnv = import ../../../development/node-packages/node-env.nix {
diff --git a/pkgs/servers/web-apps/pump.io/node-packages.nix b/pkgs/servers/web-apps/pump.io/node-packages.nix
index a275ef4ca40..ca27c79fab9 100644
--- a/pkgs/servers/web-apps/pump.io/node-packages.nix
+++ b/pkgs/servers/web-apps/pump.io/node-packages.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
@@ -13,13 +13,13 @@ let
sha1 = "bc3875a9afd0a7b2cd231a6a7f218a5ce156b093";
};
};
- "bunyan-1.8.8" = {
+ "bunyan-1.8.9" = {
name = "bunyan";
packageName = "bunyan";
- version = "1.8.8";
+ version = "1.8.9";
src = fetchurl {
- url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.8.tgz";
- sha1 = "6549ed6db088e4d82b7be3bcc6d0697159f6e209";
+ url = "https://registry.npmjs.org/bunyan/-/bunyan-1.8.9.tgz";
+ sha1 = "2c7c9d422ea64ee2465d52b4decd72de0657401a";
};
};
"colors-1.1.2" = {
@@ -131,13 +131,13 @@ let
sha1 = "0c2903ee5c54e63d65a96170764703550665a3de";
};
};
- "express-session-1.15.1" = {
+ "express-session-1.15.2" = {
name = "express-session";
packageName = "express-session";
- version = "1.15.1";
+ version = "1.15.2";
src = fetchurl {
- url = "https://registry.npmjs.org/express-session/-/express-session-1.15.1.tgz";
- sha1 = "9abba15971beea7ad98da5a4d25ed92ba4a2984e";
+ url = "https://registry.npmjs.org/express-session/-/express-session-1.15.2.tgz";
+ sha1 = "d98516443a4ccb8688e1725ae584c02daa4093d4";
};
};
"gm-1.23.0" = {
@@ -149,13 +149,13 @@ let
sha1 = "80a2fe9cbf131515024846444658461269f52661";
};
};
- "helmet-3.4.1" = {
+ "helmet-3.5.0" = {
name = "helmet";
packageName = "helmet";
- version = "3.4.1";
+ version = "3.5.0";
src = fetchurl {
- url = "https://registry.npmjs.org/helmet/-/helmet-3.4.1.tgz";
- sha1 = "27d37629227f25a110f2a128bfe1b1028648a397";
+ url = "https://registry.npmjs.org/helmet/-/helmet-3.5.0.tgz";
+ sha1 = "e1d6de27d2e3317d3182e00d672df3d0e1e12539";
};
};
"jade-1.11.0" = {
@@ -185,13 +185,13 @@ let
sha1 = "40b402770c2bda23469096bee91ab675e3b1fc6e";
};
};
- "method-override-2.3.7" = {
+ "method-override-2.3.8" = {
name = "method-override";
packageName = "method-override";
- version = "2.3.7";
+ version = "2.3.8";
src = fetchurl {
- url = "https://registry.npmjs.org/method-override/-/method-override-2.3.7.tgz";
- sha1 = "8e1d47ac480fb0cd8777083f11c896901166b2e5";
+ url = "https://registry.npmjs.org/method-override/-/method-override-2.3.8.tgz";
+ sha1 = "178234bf4bab869f89df9444b06fc6147b44828c";
};
};
"mkdirp-0.5.1" = {
@@ -374,13 +374,13 @@ let
sha1 = "dd476b81b8200269ea0cc85f6b6decd05799bce9";
};
};
- "databank-lrucache-0.1.2" = {
+ "databank-lrucache-0.1.3" = {
name = "databank-lrucache";
packageName = "databank-lrucache";
- version = "0.1.2";
+ version = "0.1.3";
src = fetchurl {
- url = "https://registry.npmjs.org/databank-lrucache/-/databank-lrucache-0.1.2.tgz";
- sha1 = "846d3bbc3d908ea2880baf9a611d86a28697c640";
+ url = "https://registry.npmjs.org/databank-lrucache/-/databank-lrucache-0.1.3.tgz";
+ sha1 = "a68fbf6bb5f2e1dab81f5a410065484889a0eeef";
};
};
"bindings-1.2.1" = {
@@ -428,13 +428,13 @@ let
sha1 = "81a098f447e4bbc3ff3312a243521bc060ef5911";
};
};
- "moment-2.17.1" = {
+ "moment-2.18.1" = {
name = "moment";
packageName = "moment";
- version = "2.17.1";
+ version = "2.18.1";
src = fetchurl {
- url = "https://registry.npmjs.org/moment/-/moment-2.17.1.tgz";
- sha1 = "fed9506063f36b10f066c8b59a144d7faebe1d82";
+ url = "https://registry.npmjs.org/moment/-/moment-2.18.1.tgz";
+ sha1 = "c36193dd3ce1c2eed2adb7c802dbbc77a81b1c0f";
};
};
"nan-2.5.1" = {
@@ -896,13 +896,13 @@ let
sha1 = "e5f1f3928c6d95fd96558c36ec3d9d0de4a6ecea";
};
};
- "compressible-2.0.9" = {
+ "compressible-2.0.10" = {
name = "compressible";
packageName = "compressible";
- version = "2.0.9";
+ version = "2.0.10";
src = fetchurl {
- url = "https://registry.npmjs.org/compressible/-/compressible-2.0.9.tgz";
- sha1 = "6daab4e2b599c2770dd9e21e7a891b1c5a755425";
+ url = "https://registry.npmjs.org/compressible/-/compressible-2.0.10.tgz";
+ sha1 = "feda1c7f7617912732b29bf8cf26252a20b9eecd";
};
};
"vary-1.0.1" = {
@@ -914,13 +914,13 @@ let
sha1 = "99e4981566a286118dfb2b817357df7993376d10";
};
};
- "mime-types-2.1.14" = {
+ "mime-types-2.1.15" = {
name = "mime-types";
packageName = "mime-types";
- version = "2.1.14";
+ version = "2.1.15";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.14.tgz";
- sha1 = "f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee";
+ url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.15.tgz";
+ sha1 = "a4ebf5064094569237b8cf70046776d09fc92aed";
};
};
"negotiator-0.5.3" = {
@@ -932,13 +932,13 @@ let
sha1 = "269d5c476810ec92edbe7b6c2f28316384f9a7e8";
};
};
- "mime-db-1.26.0" = {
+ "mime-db-1.27.0" = {
name = "mime-db";
packageName = "mime-db";
- version = "1.26.0";
+ version = "1.27.0";
src = fetchurl {
- url = "https://registry.npmjs.org/mime-db/-/mime-db-1.26.0.tgz";
- sha1 = "eaffcd0e4fc6935cf8134da246e2e6c35305adff";
+ url = "https://registry.npmjs.org/mime-db/-/mime-db-1.27.0.tgz";
+ sha1 = "820f572296bbd20ec25ed55e5b5de869e5436eb1";
};
};
"ms-0.7.1" = {
@@ -950,22 +950,13 @@ let
sha1 = "9cd13c03adbff25b65effde7ce864ee952017098";
};
};
- "csrf-3.0.5" = {
+ "csrf-3.0.6" = {
name = "csrf";
packageName = "csrf";
- version = "3.0.5";
+ version = "3.0.6";
src = fetchurl {
- url = "https://registry.npmjs.org/csrf/-/csrf-3.0.5.tgz";
- sha1 = "3c3aa86f395dd39f86d68fcf1734a2380f466112";
- };
- };
- "base64-url-1.3.3" = {
- name = "base64-url";
- packageName = "base64-url";
- version = "1.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/base64-url/-/base64-url-1.3.3.tgz";
- sha1 = "f8b6c537f09a4fc58c99cb86e0b0e9c61461a20f";
+ url = "https://registry.npmjs.org/csrf/-/csrf-3.0.6.tgz";
+ sha1 = "b61120ddceeafc91e76ed5313bb5c0b2667b710a";
};
};
"rndm-1.2.0" = {
@@ -1202,13 +1193,13 @@ let
sha1 = "ec6a61ae56480c0c3cb241c95618e20892f9672a";
};
};
- "node-uuid-1.4.7" = {
+ "node-uuid-1.4.8" = {
name = "node-uuid";
packageName = "node-uuid";
- version = "1.4.7";
+ version = "1.4.8";
src = fetchurl {
- url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz";
- sha1 = "6da5a17668c4b3dd59623bda11cf7fa4c1f60a6f";
+ url = "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.8.tgz";
+ sha1 = "b040eb0923968afabf8d32fb1f17f1167fdab907";
};
};
"set-immediate-0.1.1" = {
@@ -1391,13 +1382,13 @@ let
sha1 = "df010aa1287e164bbda6f9723b0a96a1ec4187a1";
};
};
- "hosted-git-info-2.2.0" = {
+ "hosted-git-info-2.4.1" = {
name = "hosted-git-info";
packageName = "hosted-git-info";
- version = "2.2.0";
+ version = "2.4.1";
src = fetchurl {
- url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.2.0.tgz";
- sha1 = "7a0d097863d886c0fabbdcd37bf1758d8becf8a5";
+ url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.4.1.tgz";
+ sha1 = "4b0445e41c004a8bd1337773a4ff790ca40318c8";
};
};
"is-builtin-module-1.0.0" = {
@@ -1850,13 +1841,13 @@ let
sha1 = "9da1e980e3bd44fc5c93bf5ab3da3378d85e466b";
};
};
- "debug-2.6.1" = {
+ "debug-2.6.3" = {
name = "debug";
packageName = "debug";
- version = "2.6.1";
+ version = "2.6.3";
src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz";
- sha1 = "79855090ba2c4e3115cc7d8769491d58f0491351";
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.3.tgz";
+ sha1 = "0f7eb8c30965ec08c72accfa0130c8b79984141d";
};
};
"array-parallel-0.1.3" = {
@@ -1895,13 +1886,13 @@ let
sha1 = "1d17679c069cda5d040991a09dbc2c0db377e55e";
};
};
- "which-1.2.12" = {
+ "which-1.2.14" = {
name = "which";
packageName = "which";
- version = "1.2.12";
+ version = "1.2.14";
src = fetchurl {
- url = "https://registry.npmjs.org/which/-/which-1.2.12.tgz";
- sha1 = "de67b5e450269f194909ef23ece4ebe416fa1192";
+ url = "https://registry.npmjs.org/which/-/which-1.2.14.tgz";
+ sha1 = "9a87c4378f03e827cecaf1acdf56c736c01c14e5";
};
};
"pseudomap-1.0.2" = {
@@ -1913,22 +1904,22 @@ let
sha1 = "f052a28da70e618917ef0a8ac34c1ae5a68286b3";
};
};
- "yallist-2.0.0" = {
+ "yallist-2.1.2" = {
name = "yallist";
packageName = "yallist";
- version = "2.0.0";
+ version = "2.1.2";
src = fetchurl {
- url = "https://registry.npmjs.org/yallist/-/yallist-2.0.0.tgz";
- sha1 = "306c543835f09ee1a4cb23b7bce9ab341c91cdd4";
+ url = "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz";
+ sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
};
};
- "isexe-1.1.2" = {
+ "isexe-2.0.0" = {
name = "isexe";
packageName = "isexe";
- version = "1.1.2";
+ version = "2.0.0";
src = fetchurl {
- url = "https://registry.npmjs.org/isexe/-/isexe-1.1.2.tgz";
- sha1 = "36f3e22e60750920f5e7241a476a8c6a42275ad0";
+ url = "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz";
+ sha1 = "e8fbf374dc556ff8947a10dcb0572d633f2cfa10";
};
};
"connect-3.6.0" = {
@@ -1967,13 +1958,13 @@ let
sha1 = "7bcad469ee7b96e91d12ceb3959c78235a9272e9";
};
};
- "helmet-csp-2.3.0" = {
+ "helmet-csp-2.4.0" = {
name = "helmet-csp";
packageName = "helmet-csp";
- version = "2.3.0";
+ version = "2.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.3.0.tgz";
- sha1 = "bc341939dfef5266cc817abcf53f079f61fe7e3f";
+ url = "https://registry.npmjs.org/helmet-csp/-/helmet-csp-2.4.0.tgz";
+ sha1 = "7e53a157167a0645aadd7177d12ae6c605c1842e";
};
};
"hide-powered-by-1.0.0" = {
@@ -2039,6 +2030,15 @@ let
sha1 = "898afb93869b24661cf9c52f9ee8db8ed0764dd9";
};
};
+ "debug-2.6.1" = {
+ name = "debug";
+ packageName = "debug";
+ version = "2.6.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/debug/-/debug-2.6.1.tgz";
+ sha1 = "79855090ba2c4e3115cc7d8769491d58f0491351";
+ };
+ };
"finalhandler-1.0.0" = {
name = "finalhandler";
packageName = "finalhandler";
@@ -2156,13 +2156,13 @@ let
sha1 = "5d23cb35561dd85dc67fb8482309b47d53cce9a7";
};
};
- "uglify-js-2.8.9" = {
+ "uglify-js-2.8.20" = {
name = "uglify-js";
packageName = "uglify-js";
- version = "2.8.9";
+ version = "2.8.20";
src = fetchurl {
- url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.9.tgz";
- sha1 = "01194b91cc0795214093c05594ef5ac1e0b2e900";
+ url = "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.20.tgz";
+ sha1 = "be87100fbc18de3876ed606e9d24b4568311cecf";
};
};
"void-elements-2.0.1" = {
@@ -2345,15 +2345,6 @@ let
sha1 = "75ce38f52bf0733c5a7f0c118d81334a2bb5f412";
};
};
- "uglify-to-browserify-1.0.2" = {
- name = "uglify-to-browserify";
- packageName = "uglify-to-browserify";
- version = "1.0.2";
- src = fetchurl {
- url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
- sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
- };
- };
"yargs-3.10.0" = {
name = "yargs";
packageName = "yargs";
@@ -2363,6 +2354,15 @@ let
sha1 = "f7ee7bd857dd7c1d2d38c0e74efbd681d1431fd1";
};
};
+ "uglify-to-browserify-1.0.2" = {
+ name = "uglify-to-browserify";
+ packageName = "uglify-to-browserify";
+ version = "1.0.2";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz";
+ sha1 = "6e0924d6bda6b5afe349e39a6d632850a0f882b7";
+ };
+ };
"camelcase-1.2.1" = {
name = "camelcase";
packageName = "camelcase";
@@ -2462,13 +2462,13 @@ let
sha1 = "8dcae470e1c88abc2d600fff4a776286da75e637";
};
};
- "is-buffer-1.1.4" = {
+ "is-buffer-1.1.5" = {
name = "is-buffer";
packageName = "is-buffer";
- version = "1.1.4";
+ version = "1.1.5";
src = fetchurl {
- url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.4.tgz";
- sha1 = "cfc86ccd5dc5a52fa80489111c6920c457e2d98b";
+ url = "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.5.tgz";
+ sha1 = "1f3b26ef613b214b88cbca23cc6c01d87961eecc";
};
};
"acorn-1.2.2" = {
@@ -2543,13 +2543,13 @@ let
sha1 = "9b7f3b0de32be78dc2401b17573ccaf0f6f59d94";
};
};
- "request-2.80.0" = {
+ "request-2.81.0" = {
name = "request";
packageName = "request";
- version = "2.80.0";
+ version = "2.81.0";
src = fetchurl {
- url = "https://registry.npmjs.org/request/-/request-2.80.0.tgz";
- sha1 = "8cc162d76d79381cdefdd3505d76b80b60589bd0";
+ url = "https://registry.npmjs.org/request/-/request-2.81.0.tgz";
+ sha1 = "c6928946a0e06c5f8d6f8a9333469ffda46298a0";
};
};
"sax-1.2.2" = {
@@ -2840,13 +2840,22 @@ let
sha1 = "33ef30c5c77d4ea21c5a53869d91b56d8f2555e5";
};
};
- "qs-6.3.2" = {
+ "qs-6.4.0" = {
name = "qs";
packageName = "qs";
- version = "6.3.2";
+ version = "6.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/qs/-/qs-6.3.2.tgz";
- sha1 = "e75bd5f6e268122a2a0e0bda630b2550c166502c";
+ url = "https://registry.npmjs.org/qs/-/qs-6.4.0.tgz";
+ sha1 = "13e26d28ad6b0ffaa91312cd3bf708ed351e7233";
+ };
+ };
+ "safe-buffer-5.0.1" = {
+ name = "safe-buffer";
+ packageName = "safe-buffer";
+ version = "5.0.1";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.0.1.tgz";
+ sha1 = "d263ca54696cd8a306b5ca6551e92de57918fbe7";
};
};
"stringstream-0.0.5" = {
@@ -2858,13 +2867,13 @@ let
sha1 = "4e484cd4de5a0bbbee18e46307710a8a81621878";
};
};
- "tunnel-agent-0.4.3" = {
+ "tunnel-agent-0.6.0" = {
name = "tunnel-agent";
packageName = "tunnel-agent";
- version = "0.4.3";
+ version = "0.6.0";
src = fetchurl {
- url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.3.tgz";
- sha1 = "6373db76909fe570e08d73583365ed828a74eeeb";
+ url = "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz";
+ sha1 = "27a5dea06b36b04a0a9966774b290868f0fc40fd";
};
};
"delayed-stream-1.0.0" = {
@@ -2885,13 +2894,13 @@ let
sha1 = "c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79";
};
};
- "ajv-4.11.4" = {
+ "ajv-4.11.5" = {
name = "ajv";
packageName = "ajv";
- version = "4.11.4";
+ version = "4.11.5";
src = fetchurl {
- url = "https://registry.npmjs.org/ajv/-/ajv-4.11.4.tgz";
- sha1 = "ebf3a55d4b132ea60ff5847ae85d2ef069960b45";
+ url = "https://registry.npmjs.org/ajv/-/ajv-4.11.5.tgz";
+ sha1 = "b6ee74657b993a01dce44b7944d56f485828d5bd";
};
};
"har-schema-1.0.5" = {
@@ -2975,13 +2984,13 @@ let
sha1 = "d74e1b87e7affc0db8aadb7021f3fe48101ab234";
};
};
- "jsprim-1.3.1" = {
+ "jsprim-1.4.0" = {
name = "jsprim";
packageName = "jsprim";
- version = "1.3.1";
+ version = "1.4.0";
src = fetchurl {
- url = "https://registry.npmjs.org/jsprim/-/jsprim-1.3.1.tgz";
- sha1 = "2a7256f70412a29ee3670aaca625994c4dcff252";
+ url = "https://registry.npmjs.org/jsprim/-/jsprim-1.4.0.tgz";
+ sha1 = "a3b87e40298d8c380552d8cc7628a0bb95a22918";
};
};
"sshpk-1.11.0" = {
@@ -2993,6 +3002,15 @@ let
sha1 = "2d8d5ebb4a6fab28ffba37fa62a90f4a3ea59d77";
};
};
+ "assert-plus-1.0.0" = {
+ name = "assert-plus";
+ packageName = "assert-plus";
+ version = "1.0.0";
+ src = fetchurl {
+ url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
+ sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
+ };
+ };
"extsprintf-1.0.2" = {
name = "extsprintf";
packageName = "extsprintf";
@@ -3029,15 +3047,6 @@ let
sha1 = "dac8787713c9966849fc8180777ebe9c1ddf3b86";
};
};
- "assert-plus-1.0.0" = {
- name = "assert-plus";
- packageName = "assert-plus";
- version = "1.0.0";
- src = fetchurl {
- url = "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz";
- sha1 = "f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525";
- };
- };
"dashdash-1.14.1" = {
name = "dashdash";
packageName = "dashdash";
@@ -3119,22 +3128,13 @@ let
sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a";
};
};
- "debug-2.3.3" = {
- name = "debug";
- packageName = "debug";
- version = "2.3.3";
- src = fetchurl {
- url = "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz";
- sha1 = "40c453e67e6e13c901ddec317af8986cda9eff8c";
- };
- };
- "vary-1.1.0" = {
+ "vary-1.1.1" = {
name = "vary";
packageName = "vary";
- version = "1.1.0";
+ version = "1.1.1";
src = fetchurl {
- url = "https://registry.npmjs.org/vary/-/vary-1.1.0.tgz";
- sha1 = "e1e5affbbd16ae768dd2674394b9ad3022653140";
+ url = "https://registry.npmjs.org/vary/-/vary-1.1.1.tgz";
+ sha1 = "67535ebb694c1d52257457984665323f587e8d37";
};
};
"minimist-0.0.8" = {
@@ -3236,13 +3236,13 @@ let
sha1 = "6e5c2d0a5621b5dadaecef80b90edfb5cd7772f0";
};
};
- "readable-stream-2.2.3" = {
+ "readable-stream-2.2.6" = {
name = "readable-stream";
packageName = "readable-stream";
- version = "2.2.3";
+ version = "2.2.6";
src = fetchurl {
- url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.3.tgz";
- sha1 = "9cf49463985df016c8ae8813097a9293a9b33729";
+ url = "https://registry.npmjs.org/readable-stream/-/readable-stream-2.2.6.tgz";
+ sha1 = "8b43aed76e71483938d12a8d46c6cf1a00b1f816";
};
};
"dom-serializer-0.1.0" = {
@@ -3587,13 +3587,13 @@ let
sha1 = "ef063df1f1aaceb8507ce70f7de6cb32980e874b";
};
};
- "mongodb-2.2.24" = {
+ "mongodb-2.2.25" = {
name = "mongodb";
packageName = "mongodb";
- version = "2.2.24";
+ version = "2.2.25";
src = fetchurl {
- url = "https://registry.npmjs.org/mongodb/-/mongodb-2.2.24.tgz";
- sha1 = "80f40d6ec5bdec0ddecf0f9ce0144e794c46449a";
+ url = "https://registry.npmjs.org/mongodb/-/mongodb-2.2.25.tgz";
+ sha1 = "d3b25dad00eda2bdfcbc996210ba082ac686a6b6";
};
};
"setimmediate-1.0.5" = {
@@ -3614,13 +3614,13 @@ let
sha1 = "ec56233868032909207170c39448e24449dd1fc4";
};
};
- "mongodb-core-2.1.8" = {
+ "mongodb-core-2.1.9" = {
name = "mongodb-core";
packageName = "mongodb-core";
- version = "2.1.8";
+ version = "2.1.9";
src = fetchurl {
- url = "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.8.tgz";
- sha1 = "b33e0370d0a59d97b6cb1ec610527be9e95ca2c0";
+ url = "https://registry.npmjs.org/mongodb-core/-/mongodb-core-2.1.9.tgz";
+ sha1 = "85aa71ee4fb716196e06b787557bf139f801daf5";
};
};
"readable-stream-2.1.5" = {
@@ -3677,15 +3677,6 @@ let
sha1 = "8927fe2110ee39617bcf3fd37b89d8e123911bb6";
};
};
- "lru-cache-2.3.1" = {
- name = "lru-cache";
- packageName = "lru-cache";
- version = "2.3.1";
- src = fetchurl {
- url = "https://registry.npmjs.org/lru-cache/-/lru-cache-2.3.1.tgz";
- sha1 = "b3adf6b3d856e954e2c390e6cef22081245a53d6";
- };
- };
};
args = {
name = "pump.io";
@@ -3699,7 +3690,7 @@ let
sources."nan-2.3.5"
];
})
- (sources."bunyan-1.8.8" // {
+ (sources."bunyan-1.8.9" // {
dependencies = [
(sources."dtrace-provider-0.8.1" // {
dependencies = [
@@ -3742,7 +3733,7 @@ let
];
})
sources."safe-json-stringify-1.0.4"
- sources."moment-2.17.1"
+ sources."moment-2.18.1"
];
})
sources."colors-1.1.2"
@@ -3774,17 +3765,17 @@ let
dependencies = [
(sources."accepts-1.2.13" // {
dependencies = [
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."negotiator-0.5.3"
];
})
- (sources."compressible-2.0.9" // {
+ (sources."compressible-2.0.10" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."vary-1.0.1"
@@ -3798,9 +3789,8 @@ let
sources."content-type-1.0.2"
(sources."csurf-1.8.3" // {
dependencies = [
- (sources."csrf-3.0.5" // {
+ (sources."csrf-3.0.6" // {
dependencies = [
- sources."base64-url-1.3.3"
sources."rndm-1.2.0"
sources."tsscmp-1.0.5"
(sources."uid-safe-2.1.4" // {
@@ -3822,9 +3812,9 @@ let
dependencies = [
(sources."accepts-1.3.3" // {
dependencies = [
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."negotiator-0.6.1"
@@ -3908,9 +3898,9 @@ let
})
sources."batch-0.5.3"
sources."escape-html-1.0.3"
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
];
@@ -3923,9 +3913,9 @@ let
(sources."type-is-1.6.14" // {
dependencies = [
sources."media-typer-0.3.0"
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
];
@@ -3943,7 +3933,7 @@ let
(sources."connect-databank-1.0.3" // {
dependencies = [
sources."async-1.5.2"
- sources."node-uuid-1.4.7"
+ sources."node-uuid-1.4.8"
sources."set-immediate-0.1.1"
];
})
@@ -3967,9 +3957,9 @@ let
(sources."type-is-1.6.14" // {
dependencies = [
sources."media-typer-0.3.0"
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
];
@@ -4007,7 +3997,7 @@ let
sources."minimist-1.2.0"
(sources."normalize-package-data-2.3.6" // {
dependencies = [
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
(sources."is-builtin-module-1.0.0" // {
dependencies = [
sources."builtin-modules-1.1.1"
@@ -4178,12 +4168,12 @@ let
sources."vary-1.0.1"
];
})
- (sources."express-session-1.15.1" // {
+ (sources."express-session-1.15.2" // {
dependencies = [
sources."cookie-0.3.1"
sources."cookie-signature-1.0.6"
sources."crc-3.4.4"
- (sources."debug-2.6.1" // {
+ (sources."debug-2.6.3" // {
dependencies = [
sources."ms-0.7.2"
];
@@ -4208,12 +4198,12 @@ let
(sources."lru-cache-4.0.2" // {
dependencies = [
sources."pseudomap-1.0.2"
- sources."yallist-2.0.0"
+ sources."yallist-2.1.2"
];
})
- (sources."which-1.2.12" // {
+ (sources."which-1.2.14" // {
dependencies = [
- sources."isexe-1.1.2"
+ sources."isexe-2.0.0"
];
})
];
@@ -4225,7 +4215,7 @@ let
})
];
})
- (sources."helmet-3.4.1" // {
+ (sources."helmet-3.5.0" // {
dependencies = [
(sources."connect-3.6.0" // {
dependencies = [
@@ -4254,7 +4244,7 @@ let
sources."dns-prefetch-control-0.1.0"
sources."dont-sniff-mimetype-1.0.0"
sources."frameguard-3.0.0"
- (sources."helmet-csp-2.3.0" // {
+ (sources."helmet-csp-2.4.0" // {
dependencies = [
sources."camelize-1.0.0"
(sources."content-security-policy-builder-1.1.0" // {
@@ -4342,10 +4332,9 @@ let
})
];
})
- (sources."uglify-js-2.8.9" // {
+ (sources."uglify-js-2.8.20" // {
dependencies = [
sources."source-map-0.5.6"
- sources."uglify-to-browserify-1.0.2"
(sources."yargs-3.10.0" // {
dependencies = [
sources."camelcase-1.2.1"
@@ -4357,7 +4346,7 @@ let
dependencies = [
(sources."kind-of-3.1.0" // {
dependencies = [
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
];
})
sources."longest-1.0.1"
@@ -4373,7 +4362,7 @@ let
dependencies = [
(sources."kind-of-3.1.0" // {
dependencies = [
- sources."is-buffer-1.1.4"
+ sources."is-buffer-1.1.5"
];
})
sources."longest-1.0.1"
@@ -4389,6 +4378,7 @@ let
sources."window-size-0.1.0"
];
})
+ sources."uglify-to-browserify-1.0.2"
];
})
sources."void-elements-2.0.1"
@@ -4436,7 +4426,7 @@ let
})
sources."nwmatcher-1.3.9"
sources."parse5-1.5.1"
- (sources."request-2.80.0" // {
+ (sources."request-2.81.0" // {
dependencies = [
sources."aws-sign2-0.6.0"
sources."aws4-1.6.0"
@@ -4455,7 +4445,7 @@ let
})
(sources."har-validator-4.2.1" // {
dependencies = [
- (sources."ajv-4.11.4" // {
+ (sources."ajv-4.11.5" // {
dependencies = [
sources."co-4.6.0"
(sources."json-stable-stringify-1.0.1" // {
@@ -4479,8 +4469,9 @@ let
(sources."http-signature-1.1.1" // {
dependencies = [
sources."assert-plus-0.2.0"
- (sources."jsprim-1.3.1" // {
+ (sources."jsprim-1.4.0" // {
dependencies = [
+ sources."assert-plus-1.0.0"
sources."extsprintf-1.0.2"
sources."json-schema-0.2.3"
sources."verror-1.3.6"
@@ -4504,16 +4495,17 @@ let
sources."is-typedarray-1.0.0"
sources."isstream-0.1.2"
sources."json-stringify-safe-5.0.1"
- (sources."mime-types-2.1.14" // {
+ (sources."mime-types-2.1.15" // {
dependencies = [
- sources."mime-db-1.26.0"
+ sources."mime-db-1.27.0"
];
})
sources."oauth-sign-0.8.2"
sources."performance-now-0.2.0"
- sources."qs-6.3.2"
+ sources."qs-6.4.0"
+ sources."safe-buffer-5.0.1"
sources."stringstream-0.0.5"
- sources."tunnel-agent-0.4.3"
+ sources."tunnel-agent-0.6.0"
];
})
sources."sax-1.2.2"
@@ -4532,16 +4524,16 @@ let
sources."xml-name-validator-2.0.1"
];
})
- (sources."method-override-2.3.7" // {
+ (sources."method-override-2.3.8" // {
dependencies = [
- (sources."debug-2.3.3" // {
+ (sources."debug-2.6.3" // {
dependencies = [
sources."ms-0.7.2"
];
})
sources."methods-1.1.2"
sources."parseurl-1.3.1"
- sources."vary-1.1.0"
+ sources."vary-1.1.1"
];
})
(sources."mkdirp-0.5.1" // {
@@ -4605,7 +4597,7 @@ let
})
sources."entities-1.1.1"
sources."inherits-2.0.3"
- (sources."readable-stream-2.2.3" // {
+ (sources."readable-stream-2.2.6" // {
dependencies = [
sources."buffer-shims-1.0.0"
sources."core-util-is-1.0.2"
@@ -4713,7 +4705,7 @@ let
})
(sources."normalize-package-data-2.3.6" // {
dependencies = [
- sources."hosted-git-info-2.2.0"
+ sources."hosted-git-info-2.4.1"
(sources."is-builtin-module-1.0.0" // {
dependencies = [
sources."builtin-modules-1.1.1"
@@ -4828,15 +4820,15 @@ let
sources."setimmediate-1.0.5"
];
})
- (sources."debug-2.6.1" // {
+ (sources."debug-2.6.3" // {
dependencies = [
sources."ms-0.7.2"
];
})
- (sources."mongodb-2.2.24" // {
+ (sources."mongodb-2.2.25" // {
dependencies = [
sources."es6-promise-3.2.1"
- (sources."mongodb-core-2.1.8" // {
+ (sources."mongodb-core-2.1.9" // {
dependencies = [
sources."bson-1.0.4"
(sources."require_optional-1.0.0" // {
@@ -4869,11 +4861,16 @@ let
sources."underscore-1.6.0"
];
})
- (sources."databank-lrucache-0.1.2" // {
+ (sources."databank-lrucache-0.1.3" // {
dependencies = [
- sources."underscore-1.5.2"
- sources."lru-cache-2.3.1"
- sources."set-immediate-0.1.1"
+ sources."databank-1.0.1"
+ (sources."lru-cache-4.0.2" // {
+ dependencies = [
+ sources."pseudomap-1.0.2"
+ sources."yallist-2.1.2"
+ ];
+ })
+ sources."setimmediate-1.0.5"
];
})
];
diff --git a/pkgs/tools/package-management/nixui/nixui.nix b/pkgs/tools/package-management/nixui/nixui.nix
index d413475389f..ee4dab5ad64 100644
--- a/pkgs/tools/package-management/nixui/nixui.nix
+++ b/pkgs/tools/package-management/nixui/nixui.nix
@@ -1,8 +1,8 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{pkgs ? import {
inherit system;
- }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs"}:
+ }, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-4_x"}:
let
nodeEnv = import ../../../development/node-packages/node-env.nix {
diff --git a/pkgs/tools/package-management/nixui/node-packages.nix b/pkgs/tools/package-management/nixui/node-packages.nix
index 74707ae015f..cdb2df80804 100644
--- a/pkgs/tools/package-management/nixui/node-packages.nix
+++ b/pkgs/tools/package-management/nixui/node-packages.nix
@@ -1,4 +1,4 @@
-# This file has been generated by node2nix 1.1.1. Do not edit!
+# This file has been generated by node2nix 1.2.0. Do not edit!
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}: