tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
commitizen: 4.2.1 -> 4.2.4
Martin Weinelt
4 years ago
6c2f6a21
37fa1e7c
+1736
-1329
4 changed files
expand all
collapse all
unified
split
pkgs
applications
version-management
commitizen
generate-dependencies.sh
node-composition.nix
node-env.nix
node-packages.nix
+1
-1
pkgs/applications/version-management/commitizen/generate-dependencies.sh
···
1
1
#!/usr/bin/env nix-shell
2
2
-
#! nix-shell -i bash -p nodePackages.node2nix
2
2
+
#! nix-shell -I nixpkgs=../../../.. -i bash -p nodePackages.node2nix
3
3
4
4
node2nix \
5
5
--node-env node-env.nix \
+4
-4
pkgs/applications/version-management/commitizen/node-composition.nix
···
1
1
-
# This file has been generated by node2nix 1.8.0. Do not edit!
1
1
+
# This file has been generated by node2nix 1.9.0. Do not edit!
2
2
3
3
{pkgs ? import <nixpkgs> {
4
4
inherit system;
···
6
6
7
7
let
8
8
nodeEnv = import ./node-env.nix {
9
9
-
inherit (pkgs) lib stdenv python2 util-linux runCommand writeTextFile;
10
10
-
inherit nodejs;
9
9
+
inherit (pkgs) stdenv lib python2 runCommand writeTextFile writeShellScript;
10
10
+
inherit pkgs nodejs;
11
11
libtool = if pkgs.stdenv.isDarwin then pkgs.darwin.cctools else null;
12
12
};
13
13
in
14
14
import ./node-packages.nix {
15
15
-
inherit (pkgs) fetchurl fetchgit;
15
15
+
inherit (pkgs) fetchurl nix-gitignore stdenv lib fetchgit;
16
16
inherit nodeEnv;
17
17
}
+89
-43
pkgs/applications/version-management/commitizen/node-env.nix
···
1
1
# This file originates from node2nix
2
2
3
3
-
{lib, stdenv, nodejs, python2, util-linux, libtool, runCommand, writeTextFile, writeShellScript}:
3
3
+
{lib, stdenv, nodejs, python2, pkgs, libtool, runCommand, writeTextFile, writeShellScript}:
4
4
5
5
let
6
6
+
# Workaround to cope with utillinux in Nixpkgs 20.09 and util-linux in Nixpkgs master
7
7
+
utillinux = if pkgs ? utillinux then pkgs.utillinux else pkgs.util-linux;
8
8
+
6
9
python = if nodejs ? python then nodejs.python else python2;
7
10
8
11
# Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
···
37
40
'';
38
41
};
39
42
40
40
-
includeDependencies = {dependencies}:
41
41
-
lib.optionalString (dependencies != [])
42
42
-
(lib.concatMapStrings (dependency:
43
43
-
''
44
44
-
# Bundle the dependencies of the package
45
45
-
mkdir -p node_modules
46
46
-
cd node_modules
47
47
-
48
48
-
# Only include dependencies if they don't exist. They may also be bundled in the package.
49
49
-
if [ ! -e "${dependency.name}" ]
50
50
-
then
51
51
-
${composePackage dependency}
52
52
-
fi
43
43
+
# Common shell logic
44
44
+
installPackage = writeShellScript "install-package" ''
45
45
+
installPackage() {
46
46
+
local packageName=$1 src=$2
53
47
54
54
-
cd ..
55
55
-
''
56
56
-
) dependencies);
48
48
+
local strippedName
57
49
58
58
-
# Recursively composes the dependencies of a package
59
59
-
composePackage = { name, packageName, src, dependencies ? [], ... }@args:
60
60
-
builtins.addErrorContext "while evaluating node package '${packageName}'" ''
61
61
-
DIR=$(pwd)
50
50
+
local DIR=$PWD
62
51
cd $TMPDIR
63
52
64
64
-
unpackFile ${src}
53
53
+
unpackFile $src
65
54
66
55
# Make the base dir in which the target dependency resides first
67
67
-
mkdir -p "$(dirname "$DIR/${packageName}")"
56
56
+
mkdir -p "$(dirname "$DIR/$packageName")"
68
57
69
69
-
if [ -f "${src}" ]
58
58
+
if [ -f "$src" ]
70
59
then
71
60
# Figure out what directory has been unpacked
72
61
packageDir="$(find . -maxdepth 1 -type d | tail -1)"
···
76
65
chmod -R u+w "$packageDir"
77
66
78
67
# Move the extracted tarball into the output folder
79
79
-
mv "$packageDir" "$DIR/${packageName}"
80
80
-
elif [ -d "${src}" ]
68
68
+
mv "$packageDir" "$DIR/$packageName"
69
69
+
elif [ -d "$src" ]
81
70
then
82
71
# Get a stripped name (without hash) of the source directory.
83
72
# On old nixpkgs it's already set internally.
84
73
if [ -z "$strippedName" ]
85
74
then
86
86
-
strippedName="$(stripHash ${src})"
75
75
+
strippedName="$(stripHash $src)"
87
76
fi
88
77
89
78
# Restore write permissions to make building work
90
79
chmod -R u+w "$strippedName"
91
80
92
81
# Move the extracted directory into the output folder
93
93
-
mv "$strippedName" "$DIR/${packageName}"
82
82
+
mv "$strippedName" "$DIR/$packageName"
94
83
fi
95
84
96
96
-
# Unset the stripped name to not confuse the next unpack step
97
97
-
unset strippedName
85
85
+
# Change to the package directory to install dependencies
86
86
+
cd "$DIR/$packageName"
87
87
+
}
88
88
+
'';
98
89
99
99
-
# Include the dependencies of the package
100
100
-
cd "$DIR/${packageName}"
90
90
+
# Bundle the dependencies of the package
91
91
+
#
92
92
+
# Only include dependencies if they don't exist. They may also be bundled in the package.
93
93
+
includeDependencies = {dependencies}:
94
94
+
lib.optionalString (dependencies != []) (
95
95
+
''
96
96
+
mkdir -p node_modules
97
97
+
cd node_modules
98
98
+
''
99
99
+
+ (lib.concatMapStrings (dependency:
100
100
+
''
101
101
+
if [ ! -e "${dependency.name}" ]; then
102
102
+
${composePackage dependency}
103
103
+
fi
104
104
+
''
105
105
+
) dependencies)
106
106
+
+ ''
107
107
+
cd ..
108
108
+
''
109
109
+
);
110
110
+
111
111
+
# Recursively composes the dependencies of a package
112
112
+
composePackage = { name, packageName, src, dependencies ? [], ... }@args:
113
113
+
builtins.addErrorContext "while evaluating node package '${packageName}'" ''
114
114
+
installPackage "${packageName}" "${src}"
101
115
${includeDependencies { inherit dependencies; }}
102
116
cd ..
103
117
${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
···
242
256
if(fs.existsSync("./package-lock.json")) {
243
257
var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
244
258
245
245
-
if(packageLock.lockfileVersion !== 1) {
246
246
-
process.stderr.write("Sorry, I only understand lock file version 1!\n");
259
259
+
if(![1, 2].includes(packageLock.lockfileVersion)) {
260
260
+
process.stderr.write("Sorry, I only understand lock file versions 1 and 2!\n");
247
261
process.exit(1);
248
262
}
249
263
···
388
402
, dontStrip ? true
389
403
, unpackPhase ? "true"
390
404
, buildPhase ? "true"
405
405
+
, meta ? {}
391
406
, ... }@args:
392
407
393
408
let
394
394
-
extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" ];
409
409
+
extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" "meta" ];
395
410
in
396
411
stdenv.mkDerivation ({
397
397
-
name = "node_${name}-${version}";
412
412
+
name = "${name}-${version}";
398
413
buildInputs = [ tarWrapper python nodejs ]
399
399
-
++ lib.optional (stdenv.isLinux) util-linux
414
414
+
++ lib.optional (stdenv.isLinux) utillinux
400
415
++ lib.optional (stdenv.isDarwin) libtool
401
416
++ buildInputs;
402
417
···
411
426
passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
412
427
413
428
installPhase = ''
429
429
+
source ${installPackage}
430
430
+
414
431
# Create and enter a root node_modules/ folder
415
432
mkdir -p $out/lib/node_modules
416
433
cd $out/lib/node_modules
···
443
460
# Run post install hook, if provided
444
461
runHook postInstall
445
462
'';
463
463
+
464
464
+
meta = {
465
465
+
# default to Node.js' platforms
466
466
+
platforms = nodejs.meta.platforms;
467
467
+
} // meta;
446
468
} // extraArgs);
447
469
448
448
-
# Builds a development shell
449
449
-
buildNodeShell =
470
470
+
# Builds a node environment (a node_modules folder and a set of binaries)
471
471
+
buildNodeDependencies =
450
472
{ name
451
473
, packageName
452
474
, version
···
465
487
466
488
let
467
489
extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
468
468
-
469
469
-
nodeDependencies = stdenv.mkDerivation ({
490
490
+
in
491
491
+
stdenv.mkDerivation ({
470
492
name = "node-dependencies-${name}-${version}";
471
493
472
494
buildInputs = [ tarWrapper python nodejs ]
473
473
-
++ lib.optional (stdenv.isLinux) util-linux
495
495
+
++ lib.optional (stdenv.isLinux) utillinux
474
496
++ lib.optional (stdenv.isDarwin) libtool
475
497
++ buildInputs;
476
498
···
483
505
passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
484
506
485
507
installPhase = ''
508
508
+
source ${installPackage}
509
509
+
486
510
mkdir -p $out/${packageName}
487
511
cd $out/${packageName}
488
512
···
512
536
ln -s $out/lib/node_modules/.bin $out/bin
513
537
'';
514
538
} // extraArgs);
539
539
+
540
540
+
# Builds a development shell
541
541
+
buildNodeShell =
542
542
+
{ name
543
543
+
, packageName
544
544
+
, version
545
545
+
, src
546
546
+
, dependencies ? []
547
547
+
, buildInputs ? []
548
548
+
, production ? true
549
549
+
, npmFlags ? ""
550
550
+
, dontNpmInstall ? false
551
551
+
, bypassCache ? false
552
552
+
, reconstructLock ? false
553
553
+
, dontStrip ? true
554
554
+
, unpackPhase ? "true"
555
555
+
, buildPhase ? "true"
556
556
+
, ... }@args:
557
557
+
558
558
+
let
559
559
+
nodeDependencies = buildNodeDependencies args;
515
560
in
516
561
stdenv.mkDerivation {
517
562
name = "node-shell-${name}-${version}";
518
563
519
519
-
buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) util-linux ++ buildInputs;
564
564
+
buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
520
565
buildCommand = ''
521
566
mkdir -p $out/bin
522
567
cat > $out/bin/shell <<EOF
···
538
583
{
539
584
buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist;
540
585
buildNodePackage = lib.makeOverridable buildNodePackage;
586
586
+
buildNodeDependencies = lib.makeOverridable buildNodeDependencies;
541
587
buildNodeShell = lib.makeOverridable buildNodeShell;
542
588
}
+1642
-1281
pkgs/applications/version-management/commitizen/node-packages.nix
···
1
1
-
# This file has been generated by node2nix 1.8.0. Do not edit!
1
1
+
# This file has been generated by node2nix 1.9.0. Do not edit!
2
2
3
3
-
{nodeEnv, fetchurl, fetchgit, globalBuildInputs ? []}:
3
3
+
{nodeEnv, fetchurl, fetchgit, nix-gitignore, stdenv, lib, globalBuildInputs ? []}:
4
4
5
5
let
6
6
sources = {
···
13
13
sha512 = "+w7BZCvkewSmaRM6H4L2QM3RL90teqEIHDIFXAmrW33+0jhlymnDAEdqVeCZATvxhQuio1ifoGVlJJbIiH9Ffg==";
14
14
};
15
15
};
16
16
-
"@babel/code-frame-7.10.4" = {
16
16
+
"@babel/code-frame-7.15.8" = {
17
17
name = "_at_babel_slash_code-frame";
18
18
packageName = "@babel/code-frame";
19
19
-
version = "7.10.4";
19
19
+
version = "7.15.8";
20
20
src = fetchurl {
21
21
-
url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz";
22
22
-
sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==";
21
21
+
url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.15.8.tgz";
22
22
+
sha512 = "2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg==";
23
23
};
24
24
};
25
25
-
"@babel/compat-data-7.11.0" = {
25
25
+
"@babel/compat-data-7.15.0" = {
26
26
name = "_at_babel_slash_compat-data";
27
27
packageName = "@babel/compat-data";
28
28
-
version = "7.11.0";
28
28
+
version = "7.15.0";
29
29
src = fetchurl {
30
30
-
url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.11.0.tgz";
31
31
-
sha512 = "TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ==";
30
30
+
url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.15.0.tgz";
31
31
+
sha512 = "0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA==";
32
32
};
33
33
};
34
34
"@babel/core-7.11.6" = {
···
40
40
sha512 = "Wpcv03AGnmkgm6uS6k8iwhIwTrcP0m17TL1n1sy7qD0qelDu4XNeW0dN0mHfa+Gei211yDaLoEe/VlbXQzM4Bg==";
41
41
};
42
42
};
43
43
-
"@babel/generator-7.11.6" = {
43
43
+
"@babel/generator-7.15.8" = {
44
44
name = "_at_babel_slash_generator";
45
45
packageName = "@babel/generator";
46
46
-
version = "7.11.6";
46
46
+
version = "7.15.8";
47
47
src = fetchurl {
48
48
-
url = "https://registry.npmjs.org/@babel/generator/-/generator-7.11.6.tgz";
49
49
-
sha512 = "DWtQ1PV3r+cLbySoHrwn9RWEgKMBLLma4OBQloPRyDYvc5msJM9kvTLo1YnlJd1P/ZuKbdli3ijr5q3FvAF3uA==";
48
48
+
url = "https://registry.npmjs.org/@babel/generator/-/generator-7.15.8.tgz";
49
49
+
sha512 = "ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g==";
50
50
};
51
51
};
52
52
-
"@babel/helper-annotate-as-pure-7.10.4" = {
52
52
+
"@babel/helper-annotate-as-pure-7.15.4" = {
53
53
name = "_at_babel_slash_helper-annotate-as-pure";
54
54
packageName = "@babel/helper-annotate-as-pure";
55
55
-
version = "7.10.4";
55
55
+
version = "7.15.4";
56
56
src = fetchurl {
57
57
-
url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz";
58
58
-
sha512 = "XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==";
57
57
+
url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.15.4.tgz";
58
58
+
sha512 = "QwrtdNvUNsPCj2lfNQacsGSQvGX8ee1ttrBrcozUP2Sv/jylewBP/8QFe6ZkBsC8T/GYWonNAWJV4aRR9AL2DA==";
59
59
};
60
60
};
61
61
-
"@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" = {
61
61
+
"@babel/helper-builder-binary-assignment-operator-visitor-7.15.4" = {
62
62
name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor";
63
63
packageName = "@babel/helper-builder-binary-assignment-operator-visitor";
64
64
-
version = "7.10.4";
64
64
+
version = "7.15.4";
65
65
src = fetchurl {
66
66
-
url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz";
67
67
-
sha512 = "L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==";
66
66
+
url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.15.4.tgz";
67
67
+
sha512 = "P8o7JP2Mzi0SdC6eWr1zF+AEYvrsZa7GSY1lTayjF5XJhVH0kjLYUZPvTMflP7tBgZoe9gIhTa60QwFpqh/E0Q==";
68
68
};
69
69
};
70
70
-
"@babel/helper-compilation-targets-7.10.4" = {
70
70
+
"@babel/helper-compilation-targets-7.15.4" = {
71
71
name = "_at_babel_slash_helper-compilation-targets";
72
72
packageName = "@babel/helper-compilation-targets";
73
73
-
version = "7.10.4";
73
73
+
version = "7.15.4";
74
74
src = fetchurl {
75
75
-
url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz";
76
76
-
sha512 = "a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ==";
75
75
+
url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz";
76
76
+
sha512 = "rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ==";
77
77
};
78
78
};
79
79
-
"@babel/helper-create-class-features-plugin-7.10.5" = {
79
79
+
"@babel/helper-create-class-features-plugin-7.15.4" = {
80
80
name = "_at_babel_slash_helper-create-class-features-plugin";
81
81
packageName = "@babel/helper-create-class-features-plugin";
82
82
-
version = "7.10.5";
82
82
+
version = "7.15.4";
83
83
src = fetchurl {
84
84
-
url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz";
85
85
-
sha512 = "0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A==";
84
84
+
url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.15.4.tgz";
85
85
+
sha512 = "7ZmzFi+DwJx6A7mHRwbuucEYpyBwmh2Ca0RvI6z2+WLZYCqV0JOaLb+u0zbtmDicebgKBZgqbYfLaKNqSgv5Pw==";
86
86
};
87
87
};
88
88
-
"@babel/helper-create-regexp-features-plugin-7.10.4" = {
88
88
+
"@babel/helper-create-regexp-features-plugin-7.14.5" = {
89
89
name = "_at_babel_slash_helper-create-regexp-features-plugin";
90
90
packageName = "@babel/helper-create-regexp-features-plugin";
91
91
-
version = "7.10.4";
92
92
-
src = fetchurl {
93
93
-
url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz";
94
94
-
sha512 = "2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g==";
95
95
-
};
96
96
-
};
97
97
-
"@babel/helper-define-map-7.10.5" = {
98
98
-
name = "_at_babel_slash_helper-define-map";
99
99
-
packageName = "@babel/helper-define-map";
100
100
-
version = "7.10.5";
91
91
+
version = "7.14.5";
101
92
src = fetchurl {
102
102
-
url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz";
103
103
-
sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==";
93
93
+
url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.14.5.tgz";
94
94
+
sha512 = "TLawwqpOErY2HhWbGJ2nZT5wSkR192QpN+nBg1THfBfftrlvOh+WbhrxXCH4q4xJ9Gl16BGPR/48JA+Ryiho/A==";
104
95
};
105
96
};
106
106
-
"@babel/helper-explode-assignable-expression-7.11.4" = {
97
97
+
"@babel/helper-explode-assignable-expression-7.15.4" = {
107
98
name = "_at_babel_slash_helper-explode-assignable-expression";
108
99
packageName = "@babel/helper-explode-assignable-expression";
109
109
-
version = "7.11.4";
100
100
+
version = "7.15.4";
110
101
src = fetchurl {
111
111
-
url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz";
112
112
-
sha512 = "ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ==";
102
102
+
url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.15.4.tgz";
103
103
+
sha512 = "J14f/vq8+hdC2KoWLIQSsGrC9EFBKE4NFts8pfMpymfApds+fPqR30AOUWc4tyr56h9l/GA1Sxv2q3dLZWbQ/g==";
113
104
};
114
105
};
115
115
-
"@babel/helper-function-name-7.10.4" = {
106
106
+
"@babel/helper-function-name-7.15.4" = {
116
107
name = "_at_babel_slash_helper-function-name";
117
108
packageName = "@babel/helper-function-name";
118
118
-
version = "7.10.4";
109
109
+
version = "7.15.4";
119
110
src = fetchurl {
120
120
-
url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz";
121
121
-
sha512 = "YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==";
111
111
+
url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz";
112
112
+
sha512 = "Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw==";
122
113
};
123
114
};
124
124
-
"@babel/helper-get-function-arity-7.10.4" = {
115
115
+
"@babel/helper-get-function-arity-7.15.4" = {
125
116
name = "_at_babel_slash_helper-get-function-arity";
126
117
packageName = "@babel/helper-get-function-arity";
127
127
-
version = "7.10.4";
118
118
+
version = "7.15.4";
128
119
src = fetchurl {
129
129
-
url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz";
130
130
-
sha512 = "EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==";
120
120
+
url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz";
121
121
+
sha512 = "1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA==";
131
122
};
132
123
};
133
133
-
"@babel/helper-hoist-variables-7.10.4" = {
124
124
+
"@babel/helper-hoist-variables-7.15.4" = {
134
125
name = "_at_babel_slash_helper-hoist-variables";
135
126
packageName = "@babel/helper-hoist-variables";
136
136
-
version = "7.10.4";
127
127
+
version = "7.15.4";
137
128
src = fetchurl {
138
138
-
url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz";
139
139
-
sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==";
129
129
+
url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz";
130
130
+
sha512 = "VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA==";
140
131
};
141
132
};
142
142
-
"@babel/helper-member-expression-to-functions-7.11.0" = {
133
133
+
"@babel/helper-member-expression-to-functions-7.15.4" = {
143
134
name = "_at_babel_slash_helper-member-expression-to-functions";
144
135
packageName = "@babel/helper-member-expression-to-functions";
145
145
-
version = "7.11.0";
136
136
+
version = "7.15.4";
146
137
src = fetchurl {
147
147
-
url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz";
148
148
-
sha512 = "JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q==";
138
138
+
url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz";
139
139
+
sha512 = "cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA==";
149
140
};
150
141
};
151
151
-
"@babel/helper-module-imports-7.10.4" = {
142
142
+
"@babel/helper-module-imports-7.15.4" = {
152
143
name = "_at_babel_slash_helper-module-imports";
153
144
packageName = "@babel/helper-module-imports";
154
154
-
version = "7.10.4";
145
145
+
version = "7.15.4";
155
146
src = fetchurl {
156
156
-
url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz";
157
157
-
sha512 = "nEQJHqYavI217oD9+s5MUBzk6x1IlvoS9WTPfgG43CbMEeStE0v+r+TucWdx8KFGowPGvyOkDT9+7DHedIDnVw==";
147
147
+
url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz";
148
148
+
sha512 = "jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA==";
158
149
};
159
150
};
160
160
-
"@babel/helper-module-transforms-7.11.0" = {
151
151
+
"@babel/helper-module-transforms-7.15.8" = {
161
152
name = "_at_babel_slash_helper-module-transforms";
162
153
packageName = "@babel/helper-module-transforms";
163
163
-
version = "7.11.0";
154
154
+
version = "7.15.8";
164
155
src = fetchurl {
165
165
-
url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz";
166
166
-
sha512 = "02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg==";
156
156
+
url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz";
157
157
+
sha512 = "DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg==";
167
158
};
168
159
};
169
169
-
"@babel/helper-optimise-call-expression-7.10.4" = {
160
160
+
"@babel/helper-optimise-call-expression-7.15.4" = {
170
161
name = "_at_babel_slash_helper-optimise-call-expression";
171
162
packageName = "@babel/helper-optimise-call-expression";
172
172
-
version = "7.10.4";
163
163
+
version = "7.15.4";
173
164
src = fetchurl {
174
174
-
url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz";
175
175
-
sha512 = "n3UGKY4VXwXThEiKrgRAoVPBMqeoPgHVqiHZOanAJCG9nQUL2pLRQirUzl0ioKclHGpGqRgIOkgcIJaIWLpygg==";
165
165
+
url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz";
166
166
+
sha512 = "E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw==";
176
167
};
177
168
};
178
178
-
"@babel/helper-plugin-utils-7.10.4" = {
169
169
+
"@babel/helper-plugin-utils-7.14.5" = {
179
170
name = "_at_babel_slash_helper-plugin-utils";
180
171
packageName = "@babel/helper-plugin-utils";
181
181
-
version = "7.10.4";
172
172
+
version = "7.14.5";
182
173
src = fetchurl {
183
183
-
url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz";
184
184
-
sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==";
174
174
+
url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz";
175
175
+
sha512 = "/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ==";
185
176
};
186
177
};
187
187
-
"@babel/helper-regex-7.10.5" = {
188
188
-
name = "_at_babel_slash_helper-regex";
189
189
-
packageName = "@babel/helper-regex";
190
190
-
version = "7.10.5";
191
191
-
src = fetchurl {
192
192
-
url = "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.10.5.tgz";
193
193
-
sha512 = "68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg==";
194
194
-
};
195
195
-
};
196
196
-
"@babel/helper-remap-async-to-generator-7.11.4" = {
178
178
+
"@babel/helper-remap-async-to-generator-7.15.4" = {
197
179
name = "_at_babel_slash_helper-remap-async-to-generator";
198
180
packageName = "@babel/helper-remap-async-to-generator";
199
199
-
version = "7.11.4";
181
181
+
version = "7.15.4";
200
182
src = fetchurl {
201
201
-
url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz";
202
202
-
sha512 = "tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA==";
183
183
+
url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.15.4.tgz";
184
184
+
sha512 = "v53MxgvMK/HCwckJ1bZrq6dNKlmwlyRNYM6ypaRTdXWGOE2c1/SCa6dL/HimhPulGhZKw9W0QhREM583F/t0vQ==";
203
185
};
204
186
};
205
205
-
"@babel/helper-replace-supers-7.10.4" = {
187
187
+
"@babel/helper-replace-supers-7.15.4" = {
206
188
name = "_at_babel_slash_helper-replace-supers";
207
189
packageName = "@babel/helper-replace-supers";
208
208
-
version = "7.10.4";
190
190
+
version = "7.15.4";
209
191
src = fetchurl {
210
210
-
url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz";
211
211
-
sha512 = "sPxZfFXocEymYTdVK1UNmFPBN+Hv5mJkLPsYWwGBxZAxaWfFu+xqp7b6qWD0yjNuNL2VKc6L5M18tOXUP7NU0A==";
192
192
+
url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz";
193
193
+
sha512 = "/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw==";
212
194
};
213
195
};
214
214
-
"@babel/helper-simple-access-7.10.4" = {
196
196
+
"@babel/helper-simple-access-7.15.4" = {
215
197
name = "_at_babel_slash_helper-simple-access";
216
198
packageName = "@babel/helper-simple-access";
217
217
-
version = "7.10.4";
199
199
+
version = "7.15.4";
218
200
src = fetchurl {
219
219
-
url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz";
220
220
-
sha512 = "0fMy72ej/VEvF8ULmX6yb5MtHG4uH4Dbd6I/aHDb/JVg0bbivwt9Wg+h3uMvX+QSFtwr5MeItvazbrc4jtRAXw==";
201
201
+
url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz";
202
202
+
sha512 = "UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg==";
221
203
};
222
204
};
223
223
-
"@babel/helper-skip-transparent-expression-wrappers-7.11.0" = {
205
205
+
"@babel/helper-skip-transparent-expression-wrappers-7.15.4" = {
224
206
name = "_at_babel_slash_helper-skip-transparent-expression-wrappers";
225
207
packageName = "@babel/helper-skip-transparent-expression-wrappers";
226
226
-
version = "7.11.0";
208
208
+
version = "7.15.4";
227
209
src = fetchurl {
228
228
-
url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz";
229
229
-
sha512 = "0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q==";
210
210
+
url = "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.15.4.tgz";
211
211
+
sha512 = "BMRLsdh+D1/aap19TycS4eD1qELGrCBJwzaY9IE8LrpJtJb+H7rQkPIdsfgnMtLBA6DJls7X9z93Z4U8h7xw0A==";
230
212
};
231
213
};
232
232
-
"@babel/helper-split-export-declaration-7.11.0" = {
214
214
+
"@babel/helper-split-export-declaration-7.15.4" = {
233
215
name = "_at_babel_slash_helper-split-export-declaration";
234
216
packageName = "@babel/helper-split-export-declaration";
235
235
-
version = "7.11.0";
217
217
+
version = "7.15.4";
236
218
src = fetchurl {
237
237
-
url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz";
238
238
-
sha512 = "74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg==";
219
219
+
url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz";
220
220
+
sha512 = "HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw==";
239
221
};
240
222
};
241
241
-
"@babel/helper-validator-identifier-7.10.4" = {
223
223
+
"@babel/helper-validator-identifier-7.15.7" = {
242
224
name = "_at_babel_slash_helper-validator-identifier";
243
225
packageName = "@babel/helper-validator-identifier";
244
244
-
version = "7.10.4";
226
226
+
version = "7.15.7";
245
227
src = fetchurl {
246
246
-
url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz";
247
247
-
sha512 = "3U9y+43hz7ZM+rzG24Qe2mufW5KhvFg/NhnNph+i9mgCtdTCtMJuI1TMkrIUiK7Ix4PYlRF9I5dhqaLYA/ADXw==";
228
228
+
url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz";
229
229
+
sha512 = "K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==";
248
230
};
249
231
};
250
250
-
"@babel/helper-wrap-function-7.10.4" = {
232
232
+
"@babel/helper-validator-option-7.14.5" = {
233
233
+
name = "_at_babel_slash_helper-validator-option";
234
234
+
packageName = "@babel/helper-validator-option";
235
235
+
version = "7.14.5";
236
236
+
src = fetchurl {
237
237
+
url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz";
238
238
+
sha512 = "OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow==";
239
239
+
};
240
240
+
};
241
241
+
"@babel/helper-wrap-function-7.15.4" = {
251
242
name = "_at_babel_slash_helper-wrap-function";
252
243
packageName = "@babel/helper-wrap-function";
253
253
-
version = "7.10.4";
244
244
+
version = "7.15.4";
254
245
src = fetchurl {
255
255
-
url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz";
256
256
-
sha512 = "6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug==";
246
246
+
url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.15.4.tgz";
247
247
+
sha512 = "Y2o+H/hRV5W8QhIfTpRIBwl57y8PrZt6JM3V8FOo5qarjshHItyH5lXlpMfBfmBefOqSCpKZs/6Dxqp0E/U+uw==";
257
248
};
258
249
};
259
259
-
"@babel/helpers-7.10.4" = {
250
250
+
"@babel/helpers-7.15.4" = {
260
251
name = "_at_babel_slash_helpers";
261
252
packageName = "@babel/helpers";
262
262
-
version = "7.10.4";
253
253
+
version = "7.15.4";
263
254
src = fetchurl {
264
264
-
url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.10.4.tgz";
265
265
-
sha512 = "L2gX/XeUONeEbI78dXSrJzGdz4GQ+ZTA/aazfUsFaWjSe95kiCuOZ5HsXvkiw3iwF+mFHSRUfJU8t6YavocdXA==";
255
255
+
url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.15.4.tgz";
256
256
+
sha512 = "V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ==";
266
257
};
267
258
};
268
268
-
"@babel/highlight-7.10.4" = {
259
259
+
"@babel/highlight-7.14.5" = {
269
260
name = "_at_babel_slash_highlight";
270
261
packageName = "@babel/highlight";
271
271
-
version = "7.10.4";
262
262
+
version = "7.14.5";
272
263
src = fetchurl {
273
273
-
url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz";
274
274
-
sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==";
264
264
+
url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.14.5.tgz";
265
265
+
sha512 = "qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg==";
275
266
};
276
267
};
277
277
-
"@babel/parser-7.11.5" = {
268
268
+
"@babel/parser-7.15.8" = {
278
269
name = "_at_babel_slash_parser";
279
270
packageName = "@babel/parser";
280
280
-
version = "7.11.5";
271
271
+
version = "7.15.8";
281
272
src = fetchurl {
282
282
-
url = "https://registry.npmjs.org/@babel/parser/-/parser-7.11.5.tgz";
283
283
-
sha512 = "X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q==";
273
273
+
url = "https://registry.npmjs.org/@babel/parser/-/parser-7.15.8.tgz";
274
274
+
sha512 = "BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA==";
284
275
};
285
276
};
286
286
-
"@babel/plugin-proposal-async-generator-functions-7.10.5" = {
277
277
+
"@babel/plugin-proposal-async-generator-functions-7.15.8" = {
287
278
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
288
279
packageName = "@babel/plugin-proposal-async-generator-functions";
289
289
-
version = "7.10.5";
280
280
+
version = "7.15.8";
290
281
src = fetchurl {
291
291
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz";
292
292
-
sha512 = "cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg==";
282
282
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.15.8.tgz";
283
283
+
sha512 = "2Z5F2R2ibINTc63mY7FLqGfEbmofrHU9FitJW1Q7aPaKFhiPvSq6QEt/BoWN5oME3GVyjcRuNNSRbb9LC0CSWA==";
293
284
};
294
285
};
295
295
-
"@babel/plugin-proposal-class-properties-7.10.4" = {
286
286
+
"@babel/plugin-proposal-class-properties-7.14.5" = {
296
287
name = "_at_babel_slash_plugin-proposal-class-properties";
297
288
packageName = "@babel/plugin-proposal-class-properties";
298
298
-
version = "7.10.4";
289
289
+
version = "7.14.5";
299
290
src = fetchurl {
300
300
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz";
301
301
-
sha512 = "vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg==";
291
291
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.14.5.tgz";
292
292
+
sha512 = "q/PLpv5Ko4dVc1LYMpCY7RVAAO4uk55qPwrIuJ5QJ8c6cVuAmhu7I/49JOppXL6gXf7ZHzpRVEUZdYoPLM04Gg==";
302
293
};
303
294
};
304
304
-
"@babel/plugin-proposal-dynamic-import-7.10.4" = {
295
295
+
"@babel/plugin-proposal-dynamic-import-7.14.5" = {
305
296
name = "_at_babel_slash_plugin-proposal-dynamic-import";
306
297
packageName = "@babel/plugin-proposal-dynamic-import";
307
307
-
version = "7.10.4";
298
298
+
version = "7.14.5";
308
299
src = fetchurl {
309
309
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz";
310
310
-
sha512 = "up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ==";
300
300
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.5.tgz";
301
301
+
sha512 = "ExjiNYc3HDN5PXJx+bwC50GIx/KKanX2HiggnIUAYedbARdImiCU4RhhHfdf0Kd7JNXGpsBBBCOm+bBVy3Gb0g==";
311
302
};
312
303
};
313
313
-
"@babel/plugin-proposal-export-namespace-from-7.10.4" = {
304
304
+
"@babel/plugin-proposal-export-namespace-from-7.14.5" = {
314
305
name = "_at_babel_slash_plugin-proposal-export-namespace-from";
315
306
packageName = "@babel/plugin-proposal-export-namespace-from";
316
316
-
version = "7.10.4";
307
307
+
version = "7.14.5";
317
308
src = fetchurl {
318
318
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz";
319
319
-
sha512 = "aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg==";
309
309
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.5.tgz";
310
310
+
sha512 = "g5POA32bXPMmSBu5Dx/iZGLGnKmKPc5AiY7qfZgurzrCYgIztDlHFbznSNCoQuv57YQLnQfaDi7dxCtLDIdXdA==";
320
311
};
321
312
};
322
322
-
"@babel/plugin-proposal-json-strings-7.10.4" = {
313
313
+
"@babel/plugin-proposal-json-strings-7.14.5" = {
323
314
name = "_at_babel_slash_plugin-proposal-json-strings";
324
315
packageName = "@babel/plugin-proposal-json-strings";
325
325
-
version = "7.10.4";
316
316
+
version = "7.14.5";
326
317
src = fetchurl {
327
327
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz";
328
328
-
sha512 = "fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw==";
318
318
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.5.tgz";
319
319
+
sha512 = "NSq2fczJYKVRIsUJyNxrVUMhB27zb7N7pOFGQOhBKJrChbGcgEAqyZrmZswkPk18VMurEeJAaICbfm57vUeTbQ==";
329
320
};
330
321
};
331
331
-
"@babel/plugin-proposal-logical-assignment-operators-7.11.0" = {
322
322
+
"@babel/plugin-proposal-logical-assignment-operators-7.14.5" = {
332
323
name = "_at_babel_slash_plugin-proposal-logical-assignment-operators";
333
324
packageName = "@babel/plugin-proposal-logical-assignment-operators";
334
334
-
version = "7.11.0";
325
325
+
version = "7.14.5";
335
326
src = fetchurl {
336
336
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz";
337
337
-
sha512 = "/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q==";
327
327
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.5.tgz";
328
328
+
sha512 = "YGn2AvZAo9TwyhlLvCCWxD90Xq8xJ4aSgaX3G5D/8DW94L8aaT+dS5cSP+Z06+rCJERGSr9GxMBZ601xoc2taw==";
338
329
};
339
330
};
340
340
-
"@babel/plugin-proposal-nullish-coalescing-operator-7.10.4" = {
331
331
+
"@babel/plugin-proposal-nullish-coalescing-operator-7.14.5" = {
341
332
name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator";
342
333
packageName = "@babel/plugin-proposal-nullish-coalescing-operator";
343
343
-
version = "7.10.4";
334
334
+
version = "7.14.5";
344
335
src = fetchurl {
345
345
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz";
346
346
-
sha512 = "wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw==";
336
336
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.5.tgz";
337
337
+
sha512 = "gun/SOnMqjSb98Nkaq2rTKMwervfdAoz6NphdY0vTfuzMfryj+tDGb2n6UkDKwez+Y8PZDhE3D143v6Gepp4Hg==";
347
338
};
348
339
};
349
349
-
"@babel/plugin-proposal-numeric-separator-7.10.4" = {
340
340
+
"@babel/plugin-proposal-numeric-separator-7.14.5" = {
350
341
name = "_at_babel_slash_plugin-proposal-numeric-separator";
351
342
packageName = "@babel/plugin-proposal-numeric-separator";
352
352
-
version = "7.10.4";
343
343
+
version = "7.14.5";
353
344
src = fetchurl {
354
354
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz";
355
355
-
sha512 = "73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA==";
345
345
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.5.tgz";
346
346
+
sha512 = "yiclALKe0vyZRZE0pS6RXgjUOt87GWv6FYa5zqj15PvhOGFO69R5DusPlgK/1K5dVnCtegTiWu9UaBSrLLJJBg==";
356
347
};
357
348
};
358
349
"@babel/plugin-proposal-object-rest-spread-7.11.0" = {
···
364
355
sha512 = "wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA==";
365
356
};
366
357
};
367
367
-
"@babel/plugin-proposal-object-rest-spread-7.9.0" = {
368
368
-
name = "_at_babel_slash_plugin-proposal-object-rest-spread";
369
369
-
packageName = "@babel/plugin-proposal-object-rest-spread";
370
370
-
version = "7.9.0";
371
371
-
src = fetchurl {
372
372
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.9.0.tgz";
373
373
-
sha512 = "UgqBv6bjq4fDb8uku9f+wcm1J7YxJ5nT7WO/jBr0cl0PLKb7t1O6RNR1kZbjgx2LQtsDI9hwoQVmn0yhXeQyow==";
374
374
-
};
375
375
-
};
376
376
-
"@babel/plugin-proposal-optional-catch-binding-7.10.4" = {
358
358
+
"@babel/plugin-proposal-optional-catch-binding-7.14.5" = {
377
359
name = "_at_babel_slash_plugin-proposal-optional-catch-binding";
378
360
packageName = "@babel/plugin-proposal-optional-catch-binding";
379
379
-
version = "7.10.4";
361
361
+
version = "7.14.5";
380
362
src = fetchurl {
381
381
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz";
382
382
-
sha512 = "LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g==";
363
363
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.5.tgz";
364
364
+
sha512 = "3Oyiixm0ur7bzO5ybNcZFlmVsygSIQgdOa7cTfOYCMY+wEPAYhZAJxi3mixKFCTCKUhQXuCTtQ1MzrpL3WT8ZQ==";
383
365
};
384
366
};
385
385
-
"@babel/plugin-proposal-optional-chaining-7.11.0" = {
367
367
+
"@babel/plugin-proposal-optional-chaining-7.14.5" = {
386
368
name = "_at_babel_slash_plugin-proposal-optional-chaining";
387
369
packageName = "@babel/plugin-proposal-optional-chaining";
388
388
-
version = "7.11.0";
370
370
+
version = "7.14.5";
389
371
src = fetchurl {
390
390
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz";
391
391
-
sha512 = "v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA==";
372
372
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.5.tgz";
373
373
+
sha512 = "ycz+VOzo2UbWNI1rQXxIuMOzrDdHGrI23fRiz/Si2R4kv2XZQ1BK8ccdHwehMKBlcH/joGW/tzrUmo67gbJHlQ==";
392
374
};
393
375
};
394
394
-
"@babel/plugin-proposal-private-methods-7.10.4" = {
376
376
+
"@babel/plugin-proposal-private-methods-7.14.5" = {
395
377
name = "_at_babel_slash_plugin-proposal-private-methods";
396
378
packageName = "@babel/plugin-proposal-private-methods";
397
397
-
version = "7.10.4";
379
379
+
version = "7.14.5";
398
380
src = fetchurl {
399
399
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz";
400
400
-
sha512 = "wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw==";
381
381
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.14.5.tgz";
382
382
+
sha512 = "838DkdUA1u+QTCplatfq4B7+1lnDa/+QMI89x5WZHBcnNv+47N8QEj2k9I2MUU9xIv8XJ4XvPCviM/Dj7Uwt9g==";
401
383
};
402
384
};
403
403
-
"@babel/plugin-proposal-unicode-property-regex-7.10.4" = {
385
385
+
"@babel/plugin-proposal-unicode-property-regex-7.14.5" = {
404
386
name = "_at_babel_slash_plugin-proposal-unicode-property-regex";
405
387
packageName = "@babel/plugin-proposal-unicode-property-regex";
406
406
-
version = "7.10.4";
388
388
+
version = "7.14.5";
407
389
src = fetchurl {
408
408
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz";
409
409
-
sha512 = "H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA==";
390
390
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.14.5.tgz";
391
391
+
sha512 = "6axIeOU5LnY471KenAB9vI8I5j7NQ2d652hIYwVyRfgaZT5UpiqFKCuVXCDMSrU+3VFafnu2c5m3lrWIlr6A5Q==";
410
392
};
411
393
};
412
394
"@babel/plugin-syntax-async-generators-7.8.4" = {
···
418
400
sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==";
419
401
};
420
402
};
421
421
-
"@babel/plugin-syntax-class-properties-7.10.4" = {
403
403
+
"@babel/plugin-syntax-class-properties-7.12.13" = {
422
404
name = "_at_babel_slash_plugin-syntax-class-properties";
423
405
packageName = "@babel/plugin-syntax-class-properties";
424
424
-
version = "7.10.4";
406
406
+
version = "7.12.13";
425
407
src = fetchurl {
426
426
-
url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz";
427
427
-
sha512 = "GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA==";
408
408
+
url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz";
409
409
+
sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==";
428
410
};
429
411
};
430
412
"@babel/plugin-syntax-dynamic-import-7.8.3" = {
···
508
490
sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==";
509
491
};
510
492
};
511
511
-
"@babel/plugin-syntax-top-level-await-7.10.4" = {
493
493
+
"@babel/plugin-syntax-top-level-await-7.14.5" = {
512
494
name = "_at_babel_slash_plugin-syntax-top-level-await";
513
495
packageName = "@babel/plugin-syntax-top-level-await";
514
514
-
version = "7.10.4";
496
496
+
version = "7.14.5";
515
497
src = fetchurl {
516
516
-
url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz";
517
517
-
sha512 = "ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ==";
498
498
+
url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz";
499
499
+
sha512 = "hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==";
518
500
};
519
501
};
520
520
-
"@babel/plugin-transform-arrow-functions-7.10.4" = {
502
502
+
"@babel/plugin-transform-arrow-functions-7.14.5" = {
521
503
name = "_at_babel_slash_plugin-transform-arrow-functions";
522
504
packageName = "@babel/plugin-transform-arrow-functions";
523
523
-
version = "7.10.4";
505
505
+
version = "7.14.5";
524
506
src = fetchurl {
525
525
-
url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz";
526
526
-
sha512 = "9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA==";
507
507
+
url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.14.5.tgz";
508
508
+
sha512 = "KOnO0l4+tD5IfOdi4x8C1XmEIRWUjNRV8wc6K2vz/3e8yAOoZZvsRXRRIF/yo/MAOFb4QjtAw9xSxMXbSMRy8A==";
527
509
};
528
510
};
529
529
-
"@babel/plugin-transform-async-to-generator-7.10.4" = {
511
511
+
"@babel/plugin-transform-async-to-generator-7.14.5" = {
530
512
name = "_at_babel_slash_plugin-transform-async-to-generator";
531
513
packageName = "@babel/plugin-transform-async-to-generator";
532
532
-
version = "7.10.4";
514
514
+
version = "7.14.5";
533
515
src = fetchurl {
534
534
-
url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz";
535
535
-
sha512 = "F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ==";
516
516
+
url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.14.5.tgz";
517
517
+
sha512 = "szkbzQ0mNk0rpu76fzDdqSyPu0MuvpXgC+6rz5rpMb5OIRxdmHfQxrktL8CYolL2d8luMCZTR0DpIMIdL27IjA==";
536
518
};
537
519
};
538
538
-
"@babel/plugin-transform-block-scoped-functions-7.10.4" = {
520
520
+
"@babel/plugin-transform-block-scoped-functions-7.14.5" = {
539
521
name = "_at_babel_slash_plugin-transform-block-scoped-functions";
540
522
packageName = "@babel/plugin-transform-block-scoped-functions";
541
541
-
version = "7.10.4";
523
523
+
version = "7.14.5";
542
524
src = fetchurl {
543
543
-
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz";
544
544
-
sha512 = "WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA==";
525
525
+
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.14.5.tgz";
526
526
+
sha512 = "dtqWqdWZ5NqBX3KzsVCWfQI3A53Ft5pWFCT2eCVUftWZgjc5DpDponbIF1+c+7cSGk2wN0YK7HGL/ezfRbpKBQ==";
545
527
};
546
528
};
547
547
-
"@babel/plugin-transform-block-scoping-7.11.1" = {
529
529
+
"@babel/plugin-transform-block-scoping-7.15.3" = {
548
530
name = "_at_babel_slash_plugin-transform-block-scoping";
549
531
packageName = "@babel/plugin-transform-block-scoping";
550
550
-
version = "7.11.1";
532
532
+
version = "7.15.3";
551
533
src = fetchurl {
552
552
-
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz";
553
553
-
sha512 = "00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew==";
534
534
+
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.15.3.tgz";
535
535
+
sha512 = "nBAzfZwZb4DkaGtOes1Up1nOAp9TDRRFw4XBzBBSG9QK7KVFmYzgj9o9sbPv7TX5ofL4Auq4wZnxCoPnI/lz2Q==";
554
536
};
555
537
};
556
556
-
"@babel/plugin-transform-classes-7.10.4" = {
538
538
+
"@babel/plugin-transform-classes-7.15.4" = {
557
539
name = "_at_babel_slash_plugin-transform-classes";
558
540
packageName = "@babel/plugin-transform-classes";
559
559
-
version = "7.10.4";
541
541
+
version = "7.15.4";
560
542
src = fetchurl {
561
561
-
url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz";
562
562
-
sha512 = "2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA==";
543
543
+
url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.15.4.tgz";
544
544
+
sha512 = "Yjvhex8GzBmmPQUvpXRPWQ9WnxXgAFuZSrqOK/eJlOGIXwvv8H3UEdUigl1gb/bnjTrln+e8bkZUYCBt/xYlBg==";
563
545
};
564
546
};
565
565
-
"@babel/plugin-transform-computed-properties-7.10.4" = {
547
547
+
"@babel/plugin-transform-computed-properties-7.14.5" = {
566
548
name = "_at_babel_slash_plugin-transform-computed-properties";
567
549
packageName = "@babel/plugin-transform-computed-properties";
568
568
-
version = "7.10.4";
550
550
+
version = "7.14.5";
569
551
src = fetchurl {
570
570
-
url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz";
571
571
-
sha512 = "JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw==";
552
552
+
url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.14.5.tgz";
553
553
+
sha512 = "pWM+E4283UxaVzLb8UBXv4EIxMovU4zxT1OPnpHJcmnvyY9QbPPTKZfEj31EUvG3/EQRbYAGaYEUZ4yWOBC2xg==";
572
554
};
573
555
};
574
574
-
"@babel/plugin-transform-destructuring-7.10.4" = {
556
556
+
"@babel/plugin-transform-destructuring-7.14.7" = {
575
557
name = "_at_babel_slash_plugin-transform-destructuring";
576
558
packageName = "@babel/plugin-transform-destructuring";
577
577
-
version = "7.10.4";
559
559
+
version = "7.14.7";
578
560
src = fetchurl {
579
579
-
url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz";
580
580
-
sha512 = "+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA==";
561
561
+
url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.14.7.tgz";
562
562
+
sha512 = "0mDE99nK+kVh3xlc5vKwB6wnP9ecuSj+zQCa/n0voENtP/zymdT4HH6QEb65wjjcbqr1Jb/7z9Qp7TF5FtwYGw==";
581
563
};
582
564
};
583
583
-
"@babel/plugin-transform-dotall-regex-7.10.4" = {
565
565
+
"@babel/plugin-transform-dotall-regex-7.14.5" = {
584
566
name = "_at_babel_slash_plugin-transform-dotall-regex";
585
567
packageName = "@babel/plugin-transform-dotall-regex";
586
586
-
version = "7.10.4";
568
568
+
version = "7.14.5";
587
569
src = fetchurl {
588
588
-
url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz";
589
589
-
sha512 = "ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA==";
570
570
+
url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.14.5.tgz";
571
571
+
sha512 = "loGlnBdj02MDsFaHhAIJzh7euK89lBrGIdM9EAtHFo6xKygCUGuuWe07o1oZVk287amtW1n0808sQM99aZt3gw==";
590
572
};
591
573
};
592
592
-
"@babel/plugin-transform-duplicate-keys-7.10.4" = {
574
574
+
"@babel/plugin-transform-duplicate-keys-7.14.5" = {
593
575
name = "_at_babel_slash_plugin-transform-duplicate-keys";
594
576
packageName = "@babel/plugin-transform-duplicate-keys";
595
595
-
version = "7.10.4";
577
577
+
version = "7.14.5";
596
578
src = fetchurl {
597
597
-
url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz";
598
598
-
sha512 = "GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA==";
579
579
+
url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.14.5.tgz";
580
580
+
sha512 = "iJjbI53huKbPDAsJ8EmVmvCKeeq21bAze4fu9GBQtSLqfvzj2oRuHVx4ZkDwEhg1htQ+5OBZh/Ab0XDf5iBZ7A==";
599
581
};
600
582
};
601
601
-
"@babel/plugin-transform-exponentiation-operator-7.10.4" = {
583
583
+
"@babel/plugin-transform-exponentiation-operator-7.14.5" = {
602
584
name = "_at_babel_slash_plugin-transform-exponentiation-operator";
603
585
packageName = "@babel/plugin-transform-exponentiation-operator";
604
604
-
version = "7.10.4";
586
586
+
version = "7.14.5";
605
587
src = fetchurl {
606
606
-
url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz";
607
607
-
sha512 = "S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw==";
588
588
+
url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.14.5.tgz";
589
589
+
sha512 = "jFazJhMBc9D27o9jDnIE5ZErI0R0m7PbKXVq77FFvqFbzvTMuv8jaAwLZ5PviOLSFttqKIW0/wxNSDbjLk0tYA==";
608
590
};
609
591
};
610
610
-
"@babel/plugin-transform-for-of-7.10.4" = {
592
592
+
"@babel/plugin-transform-for-of-7.15.4" = {
611
593
name = "_at_babel_slash_plugin-transform-for-of";
612
594
packageName = "@babel/plugin-transform-for-of";
613
613
-
version = "7.10.4";
595
595
+
version = "7.15.4";
614
596
src = fetchurl {
615
615
-
url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz";
616
616
-
sha512 = "ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ==";
597
597
+
url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.15.4.tgz";
598
598
+
sha512 = "DRTY9fA751AFBDh2oxydvVm4SYevs5ILTWLs6xKXps4Re/KG5nfUkr+TdHCrRWB8C69TlzVgA9b3RmGWmgN9LA==";
617
599
};
618
600
};
619
619
-
"@babel/plugin-transform-function-name-7.10.4" = {
601
601
+
"@babel/plugin-transform-function-name-7.14.5" = {
620
602
name = "_at_babel_slash_plugin-transform-function-name";
621
603
packageName = "@babel/plugin-transform-function-name";
622
622
-
version = "7.10.4";
604
604
+
version = "7.14.5";
623
605
src = fetchurl {
624
624
-
url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz";
625
625
-
sha512 = "OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg==";
606
606
+
url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.14.5.tgz";
607
607
+
sha512 = "vbO6kv0fIzZ1GpmGQuvbwwm+O4Cbm2NrPzwlup9+/3fdkuzo1YqOZcXw26+YUJB84Ja7j9yURWposEHLYwxUfQ==";
626
608
};
627
609
};
628
628
-
"@babel/plugin-transform-literals-7.10.4" = {
610
610
+
"@babel/plugin-transform-literals-7.14.5" = {
629
611
name = "_at_babel_slash_plugin-transform-literals";
630
612
packageName = "@babel/plugin-transform-literals";
631
631
-
version = "7.10.4";
613
613
+
version = "7.14.5";
632
614
src = fetchurl {
633
633
-
url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz";
634
634
-
sha512 = "Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ==";
615
615
+
url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.14.5.tgz";
616
616
+
sha512 = "ql33+epql2F49bi8aHXxvLURHkxJbSmMKl9J5yHqg4PLtdE6Uc48CH1GS6TQvZ86eoB/ApZXwm7jlA+B3kra7A==";
635
617
};
636
618
};
637
637
-
"@babel/plugin-transform-member-expression-literals-7.10.4" = {
619
619
+
"@babel/plugin-transform-member-expression-literals-7.14.5" = {
638
620
name = "_at_babel_slash_plugin-transform-member-expression-literals";
639
621
packageName = "@babel/plugin-transform-member-expression-literals";
640
640
-
version = "7.10.4";
622
622
+
version = "7.14.5";
641
623
src = fetchurl {
642
642
-
url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz";
643
643
-
sha512 = "0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw==";
624
624
+
url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.14.5.tgz";
625
625
+
sha512 = "WkNXxH1VXVTKarWFqmso83xl+2V3Eo28YY5utIkbsmXoItO8Q3aZxN4BTS2k0hz9dGUloHK26mJMyQEYfkn/+Q==";
644
626
};
645
627
};
646
646
-
"@babel/plugin-transform-modules-amd-7.10.5" = {
628
628
+
"@babel/plugin-transform-modules-amd-7.14.5" = {
647
629
name = "_at_babel_slash_plugin-transform-modules-amd";
648
630
packageName = "@babel/plugin-transform-modules-amd";
649
649
-
version = "7.10.5";
631
631
+
version = "7.14.5";
650
632
src = fetchurl {
651
651
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz";
652
652
-
sha512 = "elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw==";
633
633
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.5.tgz";
634
634
+
sha512 = "3lpOU8Vxmp3roC4vzFpSdEpGUWSMsHFreTWOMMLzel2gNGfHE5UWIh/LN6ghHs2xurUp4jRFYMUIZhuFbody1g==";
653
635
};
654
636
};
655
655
-
"@babel/plugin-transform-modules-commonjs-7.10.4" = {
637
637
+
"@babel/plugin-transform-modules-commonjs-7.15.4" = {
656
638
name = "_at_babel_slash_plugin-transform-modules-commonjs";
657
639
packageName = "@babel/plugin-transform-modules-commonjs";
658
658
-
version = "7.10.4";
640
640
+
version = "7.15.4";
659
641
src = fetchurl {
660
660
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz";
661
661
-
sha512 = "Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w==";
642
642
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.15.4.tgz";
643
643
+
sha512 = "qg4DPhwG8hKp4BbVDvX1s8cohM8a6Bvptu4l6Iingq5rW+yRUAhe/YRup/YcW2zCOlrysEWVhftIcKzrEZv3sA==";
662
644
};
663
645
};
664
664
-
"@babel/plugin-transform-modules-systemjs-7.10.5" = {
646
646
+
"@babel/plugin-transform-modules-systemjs-7.15.4" = {
665
647
name = "_at_babel_slash_plugin-transform-modules-systemjs";
666
648
packageName = "@babel/plugin-transform-modules-systemjs";
667
667
-
version = "7.10.5";
649
649
+
version = "7.15.4";
668
650
src = fetchurl {
669
669
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz";
670
670
-
sha512 = "f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw==";
651
651
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.15.4.tgz";
652
652
+
sha512 = "fJUnlQrl/mezMneR72CKCgtOoahqGJNVKpompKwzv3BrEXdlPspTcyxrZ1XmDTIr9PpULrgEQo3qNKp6dW7ssw==";
671
653
};
672
654
};
673
673
-
"@babel/plugin-transform-modules-umd-7.10.4" = {
655
655
+
"@babel/plugin-transform-modules-umd-7.14.5" = {
674
656
name = "_at_babel_slash_plugin-transform-modules-umd";
675
657
packageName = "@babel/plugin-transform-modules-umd";
676
676
-
version = "7.10.4";
658
658
+
version = "7.14.5";
677
659
src = fetchurl {
678
678
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz";
679
679
-
sha512 = "mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA==";
660
660
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.14.5.tgz";
661
661
+
sha512 = "RfPGoagSngC06LsGUYyM9QWSXZ8MysEjDJTAea1lqRjNECE3y0qIJF/qbvJxc4oA4s99HumIMdXOrd+TdKaAAA==";
680
662
};
681
663
};
682
682
-
"@babel/plugin-transform-named-capturing-groups-regex-7.10.4" = {
664
664
+
"@babel/plugin-transform-named-capturing-groups-regex-7.14.9" = {
683
665
name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex";
684
666
packageName = "@babel/plugin-transform-named-capturing-groups-regex";
685
685
-
version = "7.10.4";
667
667
+
version = "7.14.9";
686
668
src = fetchurl {
687
687
-
url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz";
688
688
-
sha512 = "V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA==";
669
669
+
url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.14.9.tgz";
670
670
+
sha512 = "l666wCVYO75mlAtGFfyFwnWmIXQm3kSH0C3IRnJqWcZbWkoihyAdDhFm2ZWaxWTqvBvhVFfJjMRQ0ez4oN1yYA==";
689
671
};
690
672
};
691
691
-
"@babel/plugin-transform-new-target-7.10.4" = {
673
673
+
"@babel/plugin-transform-new-target-7.14.5" = {
692
674
name = "_at_babel_slash_plugin-transform-new-target";
693
675
packageName = "@babel/plugin-transform-new-target";
694
694
-
version = "7.10.4";
676
676
+
version = "7.14.5";
695
677
src = fetchurl {
696
696
-
url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz";
697
697
-
sha512 = "YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw==";
678
678
+
url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.14.5.tgz";
679
679
+
sha512 = "Nx054zovz6IIRWEB49RDRuXGI4Gy0GMgqG0cII9L3MxqgXz/+rgII+RU58qpo4g7tNEx1jG7rRVH4ihZoP4esQ==";
698
680
};
699
681
};
700
700
-
"@babel/plugin-transform-object-super-7.10.4" = {
682
682
+
"@babel/plugin-transform-object-super-7.14.5" = {
701
683
name = "_at_babel_slash_plugin-transform-object-super";
702
684
packageName = "@babel/plugin-transform-object-super";
703
703
-
version = "7.10.4";
685
685
+
version = "7.14.5";
704
686
src = fetchurl {
705
705
-
url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz";
706
706
-
sha512 = "5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ==";
687
687
+
url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.14.5.tgz";
688
688
+
sha512 = "MKfOBWzK0pZIrav9z/hkRqIk/2bTv9qvxHzPQc12RcVkMOzpIKnFCNYJip00ssKWYkd8Sf5g0Wr7pqJ+cmtuFg==";
707
689
};
708
690
};
709
709
-
"@babel/plugin-transform-parameters-7.10.5" = {
691
691
+
"@babel/plugin-transform-parameters-7.15.4" = {
710
692
name = "_at_babel_slash_plugin-transform-parameters";
711
693
packageName = "@babel/plugin-transform-parameters";
712
712
-
version = "7.10.5";
694
694
+
version = "7.15.4";
713
695
src = fetchurl {
714
714
-
url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz";
715
715
-
sha512 = "xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw==";
696
696
+
url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.15.4.tgz";
697
697
+
sha512 = "9WB/GUTO6lvJU3XQsSr6J/WKvBC2hcs4Pew8YxZagi6GkTdniyqp8On5kqdK8MN0LMeu0mGbhPN+O049NV/9FQ==";
716
698
};
717
699
};
718
718
-
"@babel/plugin-transform-property-literals-7.10.4" = {
700
700
+
"@babel/plugin-transform-property-literals-7.14.5" = {
719
701
name = "_at_babel_slash_plugin-transform-property-literals";
720
702
packageName = "@babel/plugin-transform-property-literals";
721
721
-
version = "7.10.4";
703
703
+
version = "7.14.5";
722
704
src = fetchurl {
723
723
-
url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz";
724
724
-
sha512 = "ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g==";
705
705
+
url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.14.5.tgz";
706
706
+
sha512 = "r1uilDthkgXW8Z1vJz2dKYLV1tuw2xsbrp3MrZmD99Wh9vsfKoob+JTgri5VUb/JqyKRXotlOtwgu4stIYCmnw==";
725
707
};
726
708
};
727
727
-
"@babel/plugin-transform-regenerator-7.10.4" = {
709
709
+
"@babel/plugin-transform-regenerator-7.14.5" = {
728
710
name = "_at_babel_slash_plugin-transform-regenerator";
729
711
packageName = "@babel/plugin-transform-regenerator";
730
730
-
version = "7.10.4";
712
712
+
version = "7.14.5";
731
713
src = fetchurl {
732
732
-
url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz";
733
733
-
sha512 = "3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw==";
714
714
+
url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.14.5.tgz";
715
715
+
sha512 = "NVIY1W3ITDP5xQl50NgTKlZ0GrotKtLna08/uGY6ErQt6VEQZXla86x/CTddm5gZdcr+5GSsvMeTmWA5Ii6pkg==";
734
716
};
735
717
};
736
736
-
"@babel/plugin-transform-reserved-words-7.10.4" = {
718
718
+
"@babel/plugin-transform-reserved-words-7.14.5" = {
737
719
name = "_at_babel_slash_plugin-transform-reserved-words";
738
720
packageName = "@babel/plugin-transform-reserved-words";
739
739
-
version = "7.10.4";
721
721
+
version = "7.14.5";
740
722
src = fetchurl {
741
741
-
url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz";
742
742
-
sha512 = "hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ==";
723
723
+
url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.14.5.tgz";
724
724
+
sha512 = "cv4F2rv1nD4qdexOGsRQXJrOcyb5CrgjUH9PKrrtyhSDBNWGxd0UIitjyJiWagS+EbUGjG++22mGH1Pub8D6Vg==";
743
725
};
744
726
};
745
745
-
"@babel/plugin-transform-shorthand-properties-7.10.4" = {
727
727
+
"@babel/plugin-transform-shorthand-properties-7.14.5" = {
746
728
name = "_at_babel_slash_plugin-transform-shorthand-properties";
747
729
packageName = "@babel/plugin-transform-shorthand-properties";
748
748
-
version = "7.10.4";
730
730
+
version = "7.14.5";
749
731
src = fetchurl {
750
750
-
url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz";
751
751
-
sha512 = "AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q==";
732
732
+
url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.14.5.tgz";
733
733
+
sha512 = "xLucks6T1VmGsTB+GWK5Pl9Jl5+nRXD1uoFdA5TSO6xtiNjtXTjKkmPdFXVLGlK5A2/or/wQMKfmQ2Y0XJfn5g==";
752
734
};
753
735
};
754
754
-
"@babel/plugin-transform-spread-7.11.0" = {
736
736
+
"@babel/plugin-transform-spread-7.15.8" = {
755
737
name = "_at_babel_slash_plugin-transform-spread";
756
738
packageName = "@babel/plugin-transform-spread";
757
757
-
version = "7.11.0";
739
739
+
version = "7.15.8";
758
740
src = fetchurl {
759
759
-
url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz";
760
760
-
sha512 = "UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw==";
741
741
+
url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.15.8.tgz";
742
742
+
sha512 = "/daZ8s2tNaRekl9YJa9X4bzjpeRZLt122cpgFnQPLGUe61PH8zMEBmYqKkW5xF5JUEh5buEGXJoQpqBmIbpmEQ==";
761
743
};
762
744
};
763
763
-
"@babel/plugin-transform-sticky-regex-7.10.4" = {
745
745
+
"@babel/plugin-transform-sticky-regex-7.14.5" = {
764
746
name = "_at_babel_slash_plugin-transform-sticky-regex";
765
747
packageName = "@babel/plugin-transform-sticky-regex";
766
766
-
version = "7.10.4";
748
748
+
version = "7.14.5";
767
749
src = fetchurl {
768
768
-
url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz";
769
769
-
sha512 = "Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ==";
750
750
+
url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.14.5.tgz";
751
751
+
sha512 = "Z7F7GyvEMzIIbwnziAZmnSNpdijdr4dWt+FJNBnBLz5mwDFkqIXU9wmBcWWad3QeJF5hMTkRe4dAq2sUZiG+8A==";
770
752
};
771
753
};
772
772
-
"@babel/plugin-transform-template-literals-7.10.5" = {
754
754
+
"@babel/plugin-transform-template-literals-7.14.5" = {
773
755
name = "_at_babel_slash_plugin-transform-template-literals";
774
756
packageName = "@babel/plugin-transform-template-literals";
775
775
-
version = "7.10.5";
757
757
+
version = "7.14.5";
776
758
src = fetchurl {
777
777
-
url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz";
778
778
-
sha512 = "V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw==";
759
759
+
url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.14.5.tgz";
760
760
+
sha512 = "22btZeURqiepOfuy/VkFr+zStqlujWaarpMErvay7goJS6BWwdd6BY9zQyDLDa4x2S3VugxFb162IZ4m/S/+Gg==";
779
761
};
780
762
};
781
781
-
"@babel/plugin-transform-typeof-symbol-7.10.4" = {
763
763
+
"@babel/plugin-transform-typeof-symbol-7.14.5" = {
782
764
name = "_at_babel_slash_plugin-transform-typeof-symbol";
783
765
packageName = "@babel/plugin-transform-typeof-symbol";
784
784
-
version = "7.10.4";
766
766
+
version = "7.14.5";
785
767
src = fetchurl {
786
786
-
url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz";
787
787
-
sha512 = "QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA==";
768
768
+
url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.14.5.tgz";
769
769
+
sha512 = "lXzLD30ffCWseTbMQzrvDWqljvZlHkXU+CnseMhkMNqU1sASnCsz3tSzAaH3vCUXb9PHeUb90ZT1BdFTm1xxJw==";
788
770
};
789
771
};
790
790
-
"@babel/plugin-transform-unicode-escapes-7.10.4" = {
772
772
+
"@babel/plugin-transform-unicode-escapes-7.14.5" = {
791
773
name = "_at_babel_slash_plugin-transform-unicode-escapes";
792
774
packageName = "@babel/plugin-transform-unicode-escapes";
793
793
-
version = "7.10.4";
775
775
+
version = "7.14.5";
794
776
src = fetchurl {
795
795
-
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz";
796
796
-
sha512 = "y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg==";
777
777
+
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.14.5.tgz";
778
778
+
sha512 = "crTo4jATEOjxj7bt9lbYXcBAM3LZaUrbP2uUdxb6WIorLmjNKSpHfIybgY4B8SRpbf8tEVIWH3Vtm7ayCrKocA==";
797
779
};
798
780
};
799
799
-
"@babel/plugin-transform-unicode-regex-7.10.4" = {
781
781
+
"@babel/plugin-transform-unicode-regex-7.14.5" = {
800
782
name = "_at_babel_slash_plugin-transform-unicode-regex";
801
783
packageName = "@babel/plugin-transform-unicode-regex";
802
802
-
version = "7.10.4";
784
784
+
version = "7.14.5";
803
785
src = fetchurl {
804
804
-
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz";
805
805
-
sha512 = "wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A==";
786
786
+
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.14.5.tgz";
787
787
+
sha512 = "UygduJpC5kHeCiRw/xDVzC+wj8VaYSoKl5JNVmbP7MadpNinAm3SvZCxZ42H37KZBKztz46YC73i9yV34d0Tzw==";
806
788
};
807
789
};
808
790
"@babel/preset-env-7.11.5" = {
···
832
814
sha512 = "CAml0ioKX+kOAvBQDHa/+t1fgOt3qkTIz0TrRtRAT6XY0m5qYZXR85k6/sLCNPMGhYDlCFHCYuU0ybTJbvlC6w==";
833
815
};
834
816
};
835
835
-
"@babel/runtime-7.11.2" = {
817
817
+
"@babel/runtime-7.15.4" = {
836
818
name = "_at_babel_slash_runtime";
837
819
packageName = "@babel/runtime";
838
838
-
version = "7.11.2";
820
820
+
version = "7.15.4";
839
821
src = fetchurl {
840
840
-
url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.11.2.tgz";
841
841
-
sha512 = "TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw==";
822
822
+
url = "https://registry.npmjs.org/@babel/runtime/-/runtime-7.15.4.tgz";
823
823
+
sha512 = "99catp6bHCaxr4sJ/DbTGgHS4+Rs2RVd2g7iOap6SLGPDknRK9ztKNsE/Fg6QhSeh1FGE5f6gHGQmvvn3I3xhw==";
842
824
};
843
825
};
844
844
-
"@babel/template-7.10.4" = {
826
826
+
"@babel/template-7.15.4" = {
845
827
name = "_at_babel_slash_template";
846
828
packageName = "@babel/template";
847
847
-
version = "7.10.4";
829
829
+
version = "7.15.4";
848
830
src = fetchurl {
849
849
-
url = "https://registry.npmjs.org/@babel/template/-/template-7.10.4.tgz";
850
850
-
sha512 = "ZCjD27cGJFUB6nmCB1Enki3r+L5kJveX9pq1SvAUKoICy6CZ9yD8xO086YXdYhvNjBdnekm4ZnaP5yC8Cs/1tA==";
831
831
+
url = "https://registry.npmjs.org/@babel/template/-/template-7.15.4.tgz";
832
832
+
sha512 = "UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg==";
851
833
};
852
834
};
853
853
-
"@babel/traverse-7.11.5" = {
835
835
+
"@babel/traverse-7.15.4" = {
854
836
name = "_at_babel_slash_traverse";
855
837
packageName = "@babel/traverse";
856
856
-
version = "7.11.5";
838
838
+
version = "7.15.4";
857
839
src = fetchurl {
858
858
-
url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.11.5.tgz";
859
859
-
sha512 = "EjiPXt+r7LiCZXEfRpSJd+jUMnBd4/9OUv7Nx3+0u9+eimMwJmG0Q98lw4/289JCoxSE8OolDMNZaaF/JZ69WQ==";
840
840
+
url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.15.4.tgz";
841
841
+
sha512 = "W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA==";
860
842
};
861
843
};
862
862
-
"@babel/types-7.11.5" = {
844
844
+
"@babel/types-7.15.6" = {
863
845
name = "_at_babel_slash_types";
864
846
packageName = "@babel/types";
865
865
-
version = "7.11.5";
847
847
+
version = "7.15.6";
866
848
src = fetchurl {
867
867
-
url = "https://registry.npmjs.org/@babel/types/-/types-7.11.5.tgz";
868
868
-
sha512 = "bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q==";
849
849
+
url = "https://registry.npmjs.org/@babel/types/-/types-7.15.6.tgz";
850
850
+
sha512 = "BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig==";
869
851
};
870
852
};
871
871
-
"@commitlint/execute-rule-11.0.0" = {
853
853
+
"@commitlint/execute-rule-13.2.0" = {
872
854
name = "_at_commitlint_slash_execute-rule";
873
855
packageName = "@commitlint/execute-rule";
874
874
-
version = "11.0.0";
856
856
+
version = "13.2.0";
875
857
src = fetchurl {
876
876
-
url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-11.0.0.tgz";
877
877
-
sha512 = "g01p1g4BmYlZ2+tdotCavrMunnPFPhTzG1ZiLKTCYrooHRbmvqo42ZZn4QMStUEIcn+jfLb6BRZX3JzIwA1ezQ==";
858
858
+
url = "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-13.2.0.tgz";
859
859
+
sha512 = "6nPwpN0hwTYmsH3WM4hCdN+NrMopgRIuQ0aqZa+jnwMoS/g6ljliQNYfL+m5WO306BaIu1W3yYpbW5aI8gEr0g==";
878
860
};
879
861
};
880
880
-
"@commitlint/load-11.0.0" = {
862
862
+
"@commitlint/load-13.2.1" = {
881
863
name = "_at_commitlint_slash_load";
882
864
packageName = "@commitlint/load";
883
883
-
version = "11.0.0";
865
865
+
version = "13.2.1";
884
866
src = fetchurl {
885
885
-
url = "https://registry.npmjs.org/@commitlint/load/-/load-11.0.0.tgz";
886
886
-
sha512 = "t5ZBrtgvgCwPfxmG811FCp39/o3SJ7L+SNsxFL92OR4WQxPcu6c8taD0CG2lzOHGuRyuMxZ7ps3EbngT2WpiCg==";
867
867
+
url = "https://registry.npmjs.org/@commitlint/load/-/load-13.2.1.tgz";
868
868
+
sha512 = "qlaJkj0hfa9gtWRfCfbgFBTK3GYQRmjZhba4l9mUu4wV9lEZ4ICFlrLtd/8kaLXf/8xbrPhkAPkVFOAqM0YwUQ==";
887
869
};
888
870
};
889
889
-
"@commitlint/resolve-extends-11.0.0" = {
871
871
+
"@commitlint/resolve-extends-13.2.0" = {
890
872
name = "_at_commitlint_slash_resolve-extends";
891
873
packageName = "@commitlint/resolve-extends";
892
892
-
version = "11.0.0";
874
874
+
version = "13.2.0";
893
875
src = fetchurl {
894
894
-
url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-11.0.0.tgz";
895
895
-
sha512 = "WinU6Uv6L7HDGLqn/To13KM1CWvZ09VHZqryqxXa1OY+EvJkfU734CwnOEeNlSCK7FVLrB4kmodLJtL1dkEpXw==";
876
876
+
url = "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-13.2.0.tgz";
877
877
+
sha512 = "HLCMkqMKtvl1yYLZ1Pm0UpFvd0kYjsm1meLOGZ7VkOd9G/XX+Fr1S2G5AT2zeiDw7WUVYK8lGVMNa319bnV+aw==";
896
878
};
897
879
};
898
898
-
"@commitlint/types-11.0.0" = {
880
880
+
"@commitlint/types-13.2.0" = {
899
881
name = "_at_commitlint_slash_types";
900
882
packageName = "@commitlint/types";
901
901
-
version = "11.0.0";
883
883
+
version = "13.2.0";
884
884
+
src = fetchurl {
885
885
+
url = "https://registry.npmjs.org/@commitlint/types/-/types-13.2.0.tgz";
886
886
+
sha512 = "RRVHEqmk1qn/dIaSQhvuca6k/6Z54G+r/KyimZ8gnAFielGiGUpsFRhIY3qhd5rXClVxDaa3nlcyTWckSccotQ==";
887
887
+
};
888
888
+
};
889
889
+
"@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2" = {
890
890
+
name = "_at_endemolshinegroup_slash_cosmiconfig-typescript-loader";
891
891
+
packageName = "@endemolshinegroup/cosmiconfig-typescript-loader";
892
892
+
version = "3.0.2";
902
893
src = fetchurl {
903
903
-
url = "https://registry.npmjs.org/@commitlint/types/-/types-11.0.0.tgz";
904
904
-
sha512 = "VoNqai1vR5anRF5Tuh/+SWDFk7xi7oMwHrHrbm1BprYXjB2RJsWLhUrStMssDxEl5lW/z3EUdg8RvH/IUBccSQ==";
894
894
+
url = "https://registry.npmjs.org/@endemolshinegroup/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-3.0.2.tgz";
895
895
+
sha512 = "QRVtqJuS1mcT56oHpVegkKBlgtWjXw/gHNWO3eL9oyB5Sc7HBoc2OLG/nYpVfT/Jejvo3NUrD0Udk7XgoyDKkA==";
905
896
};
906
897
};
907
898
"@istanbuljs/load-nyc-config-1.1.0" = {
···
922
913
sha512 = "cWcUCqHOYB+Mpumsv03uaE7rMvtmJn7pZ3llc+9gyqMFC93IVcUuuJ/mknoWsiuajcEjRCqKmhGaiAaXG6kzLA==";
923
914
};
924
915
};
925
925
-
"@istanbuljs/schema-0.1.2" = {
916
916
+
"@istanbuljs/schema-0.1.3" = {
926
917
name = "_at_istanbuljs_slash_schema";
927
918
packageName = "@istanbuljs/schema";
928
928
-
version = "0.1.2";
919
919
+
version = "0.1.3";
929
920
src = fetchurl {
930
930
-
url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz";
931
931
-
sha512 = "tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw==";
921
921
+
url = "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz";
922
922
+
sha512 = "ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==";
932
923
};
933
924
};
934
934
-
"@nodelib/fs.scandir-2.1.3" = {
925
925
+
"@nodelib/fs.scandir-2.1.5" = {
935
926
name = "_at_nodelib_slash_fs.scandir";
936
927
packageName = "@nodelib/fs.scandir";
937
937
-
version = "2.1.3";
928
928
+
version = "2.1.5";
938
929
src = fetchurl {
939
939
-
url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz";
940
940
-
sha512 = "eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==";
930
930
+
url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz";
931
931
+
sha512 = "vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==";
941
932
};
942
933
};
943
943
-
"@nodelib/fs.stat-2.0.3" = {
934
934
+
"@nodelib/fs.stat-2.0.5" = {
944
935
name = "_at_nodelib_slash_fs.stat";
945
936
packageName = "@nodelib/fs.stat";
946
946
-
version = "2.0.3";
937
937
+
version = "2.0.5";
947
938
src = fetchurl {
948
948
-
url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.3.tgz";
949
949
-
sha512 = "bQBFruR2TAwoevBEd/NWMoAAtNGzTRgdrqnYCc7dhzfoNvqPzLyqlEQnzZ3kVnNrSp25iyxE00/3h2fqGAGArA==";
939
939
+
url = "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz";
940
940
+
sha512 = "RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==";
950
941
};
951
942
};
952
952
-
"@nodelib/fs.walk-1.2.4" = {
943
943
+
"@nodelib/fs.walk-1.2.8" = {
953
944
name = "_at_nodelib_slash_fs.walk";
954
945
packageName = "@nodelib/fs.walk";
955
955
-
version = "1.2.4";
946
946
+
version = "1.2.8";
956
947
src = fetchurl {
957
957
-
url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.4.tgz";
958
958
-
sha512 = "1V9XOY4rDW0rehzbrcqAmHnz8e7SKvX27gh8Gt2WgB0+pdzdiLV83p72kZPU+jvMbS1qU5mauP2iOvO8rhmurQ==";
948
948
+
url = "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz";
949
949
+
sha512 = "oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==";
959
950
};
960
951
};
961
961
-
"@octokit/auth-token-2.4.2" = {
952
952
+
"@octokit/auth-token-2.5.0" = {
962
953
name = "_at_octokit_slash_auth-token";
963
954
packageName = "@octokit/auth-token";
964
964
-
version = "2.4.2";
955
955
+
version = "2.5.0";
965
956
src = fetchurl {
966
966
-
url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.4.2.tgz";
967
967
-
sha512 = "jE/lE/IKIz2v1+/P0u4fJqv0kYwXOTujKemJMFr6FeopsxlIK3+wKDCJGnysg81XID5TgZQbIfuJ5J0lnTiuyQ==";
957
957
+
url = "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-2.5.0.tgz";
958
958
+
sha512 = "r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==";
968
959
};
969
960
};
970
970
-
"@octokit/endpoint-6.0.6" = {
961
961
+
"@octokit/endpoint-6.0.12" = {
971
962
name = "_at_octokit_slash_endpoint";
972
963
packageName = "@octokit/endpoint";
973
973
-
version = "6.0.6";
964
964
+
version = "6.0.12";
965
965
+
src = fetchurl {
966
966
+
url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.12.tgz";
967
967
+
sha512 = "lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==";
968
968
+
};
969
969
+
};
970
970
+
"@octokit/openapi-types-11.2.0" = {
971
971
+
name = "_at_octokit_slash_openapi-types";
972
972
+
packageName = "@octokit/openapi-types";
973
973
+
version = "11.2.0";
974
974
src = fetchurl {
975
975
-
url = "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-6.0.6.tgz";
976
976
-
sha512 = "7Cc8olaCoL/mtquB7j/HTbPM+sY6Ebr4k2X2y4JoXpVKQ7r5xB4iGQE0IoO58wIPsUk4AzoT65AMEpymSbWTgQ==";
975
975
+
url = "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-11.2.0.tgz";
976
976
+
sha512 = "PBsVO+15KSlGmiI8QAzaqvsNlZlrDlyAJYcrXBCvVUxCp7VnXjkwPoFHgjEJXx3WF9BAwkA6nfCUA7i9sODzKA==";
977
977
};
978
978
};
979
979
"@octokit/plugin-paginate-rest-1.1.2" = {
···
985
985
sha512 = "jbsSoi5Q1pj63sC16XIUboklNw+8tL9VOnJsWycWYR78TKss5PVpIPb1TUUcMQ+bBh7cY579cVAWmf5qG+dw+Q==";
986
986
};
987
987
};
988
988
-
"@octokit/plugin-request-log-1.0.0" = {
988
988
+
"@octokit/plugin-request-log-1.0.4" = {
989
989
name = "_at_octokit_slash_plugin-request-log";
990
990
packageName = "@octokit/plugin-request-log";
991
991
-
version = "1.0.0";
991
991
+
version = "1.0.4";
992
992
src = fetchurl {
993
993
-
url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.0.tgz";
994
994
-
sha512 = "ywoxP68aOT3zHCLgWZgwUJatiENeHE7xJzYjfz8WI0goynp96wETBF+d95b8g/uL4QmS6owPVlaxiz3wyMAzcw==";
993
993
+
url = "https://registry.npmjs.org/@octokit/plugin-request-log/-/plugin-request-log-1.0.4.tgz";
994
994
+
sha512 = "mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==";
995
995
};
996
996
};
997
997
"@octokit/plugin-rest-endpoint-methods-2.4.0" = {
···
1003
1003
sha512 = "EZi/AWhtkdfAYi01obpX0DF7U6b1VRr30QNQ5xSFPITMdLSfhcBqjamE3F+sKcxPbD7eZuMHu3Qkk2V+JGxBDQ==";
1004
1004
};
1005
1005
};
1006
1006
-
"@octokit/request-5.4.8" = {
1006
1006
+
"@octokit/request-5.6.2" = {
1007
1007
name = "_at_octokit_slash_request";
1008
1008
packageName = "@octokit/request";
1009
1009
-
version = "5.4.8";
1009
1009
+
version = "5.6.2";
1010
1010
src = fetchurl {
1011
1011
-
url = "https://registry.npmjs.org/@octokit/request/-/request-5.4.8.tgz";
1012
1012
-
sha512 = "mWbxjsARJzAq5xp+ZrQfotc+MHFz3/Am2qATJwflv4PZ1TjhgIJnr60PCVdZT9Z/tl+uPXooaVgeviy1KkDlLQ==";
1011
1011
+
url = "https://registry.npmjs.org/@octokit/request/-/request-5.6.2.tgz";
1012
1012
+
sha512 = "je66CvSEVf0jCpRISxkUcCa0UkxmFs6eGDRSbfJtAVwbLH5ceqF+YEyC8lj8ystKyZTy8adWr0qmkY52EfOeLA==";
1013
1013
};
1014
1014
};
1015
1015
"@octokit/request-error-1.2.1" = {
···
1021
1021
sha512 = "+6yDyk1EES6WK+l3viRDElw96MvwfJxCt45GvmjDUKWjYIb3PJZQkq3i46TwGwoPD4h8NmTrENmtyA1FwbmhRA==";
1022
1022
};
1023
1023
};
1024
1024
-
"@octokit/request-error-2.0.2" = {
1024
1024
+
"@octokit/request-error-2.1.0" = {
1025
1025
name = "_at_octokit_slash_request-error";
1026
1026
packageName = "@octokit/request-error";
1027
1027
-
version = "2.0.2";
1027
1027
+
version = "2.1.0";
1028
1028
src = fetchurl {
1029
1029
-
url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.0.2.tgz";
1030
1030
-
sha512 = "2BrmnvVSV1MXQvEkrb9zwzP0wXFNbPJij922kYBTLIlIafukrGOb+ABBT2+c6wZiuyWDH1K1zmjGQ0toN/wMWw==";
1029
1029
+
url = "https://registry.npmjs.org/@octokit/request-error/-/request-error-2.1.0.tgz";
1030
1030
+
sha512 = "1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==";
1031
1031
};
1032
1032
};
1033
1033
"@octokit/rest-16.43.2" = {
···
1048
1048
sha512 = "O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q==";
1049
1049
};
1050
1050
};
1051
1051
-
"@octokit/types-5.4.1" = {
1051
1051
+
"@octokit/types-6.34.0" = {
1052
1052
name = "_at_octokit_slash_types";
1053
1053
packageName = "@octokit/types";
1054
1054
-
version = "5.4.1";
1054
1054
+
version = "6.34.0";
1055
1055
src = fetchurl {
1056
1056
-
url = "https://registry.npmjs.org/@octokit/types/-/types-5.4.1.tgz";
1057
1057
-
sha512 = "OlMlSySBJoJ6uozkr/i03nO5dlYQyE05vmQNZhAh9MyO4DPBP88QlwsDVLmVjIMFssvIZB6WO0ctIGMRG+xsJQ==";
1056
1056
+
url = "https://registry.npmjs.org/@octokit/types/-/types-6.34.0.tgz";
1057
1057
+
sha512 = "s1zLBjWhdEI2zwaoSgyOFoKSl109CUcVBCc7biPJ3aAf6LGLU6szDvi31JPU7bxfla2lqfhjbbg/5DdFNxOwHw==";
1058
1058
};
1059
1059
};
1060
1060
"@semantic-release/commit-analyzer-6.3.3" = {
···
1102
1102
sha512 = "LGjgPBGjjmjap/76O0Md3wc04Y7IlLnzZceLsAkcYRwGQdRPTTFUJKqDQTuieWTs7zfHzQoZqsqPfFxEN+g2+Q==";
1103
1103
};
1104
1104
};
1105
1105
-
"@sinonjs/commons-1.8.1" = {
1105
1105
+
"@sinonjs/commons-1.8.3" = {
1106
1106
name = "_at_sinonjs_slash_commons";
1107
1107
packageName = "@sinonjs/commons";
1108
1108
-
version = "1.8.1";
1108
1108
+
version = "1.8.3";
1109
1109
src = fetchurl {
1110
1110
-
url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.1.tgz";
1111
1111
-
sha512 = "892K+kWUUi3cl+LlqEWIDrhvLgdL79tECi8JZUyq6IviKy/DNhuzCRlbHUjxK89f4ypPMMaFnFuR9Ie6DoIMsw==";
1110
1110
+
url = "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz";
1111
1111
+
sha512 = "xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==";
1112
1112
};
1113
1113
};
1114
1114
"@sinonjs/formatio-3.2.2" = {
···
1147
1147
sha512 = "+iTbntw2IZPb/anVDbypzfQa+ay64MW0Zo8aJ8gZPWMMK6/OubMVb6lUPMagqjOPnmtauXnFCACVl3O7ogjeqQ==";
1148
1148
};
1149
1149
};
1150
1150
-
"@types/color-name-1.1.1" = {
1151
1151
-
name = "_at_types_slash_color-name";
1152
1152
-
packageName = "@types/color-name";
1153
1153
-
version = "1.1.1";
1154
1154
-
src = fetchurl {
1155
1155
-
url = "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz";
1156
1156
-
sha512 = "rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==";
1157
1157
-
};
1158
1158
-
};
1159
1159
-
"@types/glob-7.1.3" = {
1150
1150
+
"@types/glob-7.2.0" = {
1160
1151
name = "_at_types_slash_glob";
1161
1152
packageName = "@types/glob";
1162
1162
-
version = "7.1.3";
1153
1153
+
version = "7.2.0";
1163
1154
src = fetchurl {
1164
1164
-
url = "https://registry.npmjs.org/@types/glob/-/glob-7.1.3.tgz";
1165
1165
-
sha512 = "SEYeGAIQIQX8NN6LDKprLjbrd5dARM5EXsd8GI/A5l0apYI1fGMWgPHSe4ZKL4eozlAyI+doUE9XbYS4xCkQ1w==";
1155
1155
+
url = "https://registry.npmjs.org/@types/glob/-/glob-7.2.0.tgz";
1156
1156
+
sha512 = "ZUxbzKl0IfJILTS6t7ip5fQQM/J3TJYubDm3nMbgubNNYS62eXeUpoLUC8/7fJNiFYHTrGPQn7hspDUzIHX3UA==";
1166
1157
};
1167
1158
};
1168
1168
-
"@types/minimatch-3.0.3" = {
1159
1159
+
"@types/minimatch-3.0.5" = {
1169
1160
name = "_at_types_slash_minimatch";
1170
1161
packageName = "@types/minimatch";
1171
1171
-
version = "3.0.3";
1162
1162
+
version = "3.0.5";
1172
1163
src = fetchurl {
1173
1173
-
url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz";
1174
1174
-
sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==";
1164
1164
+
url = "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.5.tgz";
1165
1165
+
sha512 = "Klz949h02Gz2uZCMGwDUSDS1YBlTdDDgbWHi+81l29tQALUtvz4rAYi5uoVhE5Lagoq6DeqAUlbrHvW/mXDgdQ==";
1175
1166
};
1176
1167
};
1177
1177
-
"@types/minimist-1.2.0" = {
1168
1168
+
"@types/minimist-1.2.2" = {
1178
1169
name = "_at_types_slash_minimist";
1179
1170
packageName = "@types/minimist";
1180
1180
-
version = "1.2.0";
1171
1171
+
version = "1.2.2";
1181
1172
src = fetchurl {
1182
1182
-
url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.0.tgz";
1183
1183
-
sha1 = "69a23a3ad29caf0097f06eda59b361ee2f0639f6";
1173
1173
+
url = "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz";
1174
1174
+
sha512 = "jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==";
1184
1175
};
1185
1176
};
1186
1186
-
"@types/node-14.10.0" = {
1177
1177
+
"@types/node-16.11.1" = {
1187
1178
name = "_at_types_slash_node";
1188
1179
packageName = "@types/node";
1189
1189
-
version = "14.10.0";
1180
1180
+
version = "16.11.1";
1190
1181
src = fetchurl {
1191
1191
-
url = "https://registry.npmjs.org/@types/node/-/node-14.10.0.tgz";
1192
1192
-
sha512 = "SOIyrdADB4cq6eY1F+9iU48iIomFAPltu11LCvA9PKcyEwHadjCFzNVPotAR+oEJA0bCP4Xvvgy+vwu1ZjVh8g==";
1182
1182
+
url = "https://registry.npmjs.org/@types/node/-/node-16.11.1.tgz";
1183
1183
+
sha512 = "PYGcJHL9mwl1Ek3PLiYgyEKtwTMmkMw4vbiyz/ps3pfdRYLVv+SN7qHVAImrjdAXxgluDEw6Ph4lyv+m9UpRmA==";
1193
1184
};
1194
1185
};
1195
1195
-
"@types/normalize-package-data-2.4.0" = {
1186
1186
+
"@types/normalize-package-data-2.4.1" = {
1196
1187
name = "_at_types_slash_normalize-package-data";
1197
1188
packageName = "@types/normalize-package-data";
1198
1198
-
version = "2.4.0";
1189
1189
+
version = "2.4.1";
1199
1190
src = fetchurl {
1200
1200
-
url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz";
1201
1201
-
sha512 = "f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==";
1191
1191
+
url = "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz";
1192
1192
+
sha512 = "Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==";
1202
1193
};
1203
1194
};
1204
1195
"@types/parse-json-4.0.0" = {
···
1210
1201
sha512 = "//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==";
1211
1202
};
1212
1203
};
1213
1213
-
"@types/retry-0.12.0" = {
1204
1204
+
"@types/retry-0.12.1" = {
1214
1205
name = "_at_types_slash_retry";
1215
1206
packageName = "@types/retry";
1216
1216
-
version = "0.12.0";
1207
1207
+
version = "0.12.1";
1217
1208
src = fetchurl {
1218
1218
-
url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz";
1219
1219
-
sha512 = "wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==";
1209
1209
+
url = "https://registry.npmjs.org/@types/retry/-/retry-0.12.1.tgz";
1210
1210
+
sha512 = "xoDlM2S4ortawSWORYqsdU+2rxdh4LRW9ytc3zmT37RIKQh6IHyKwwtKhKis9ah8ol07DCkZxPt8BBvPjC6v4g==";
1220
1211
};
1221
1212
};
1222
1213
"JSONStream-1.3.5" = {
···
1309
1300
sha512 = "1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==";
1310
1301
};
1311
1302
};
1312
1312
-
"ansi-regex-5.0.0" = {
1303
1303
+
"ansi-regex-5.0.1" = {
1313
1304
name = "ansi-regex";
1314
1305
packageName = "ansi-regex";
1315
1315
-
version = "5.0.0";
1306
1306
+
version = "5.0.1";
1316
1307
src = fetchurl {
1317
1317
-
url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz";
1318
1318
-
sha512 = "bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg==";
1308
1308
+
url = "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz";
1309
1309
+
sha512 = "quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==";
1319
1310
};
1320
1311
};
1321
1312
"ansi-styles-3.2.1" = {
···
1327
1318
sha512 = "VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==";
1328
1319
};
1329
1320
};
1330
1330
-
"ansi-styles-4.2.1" = {
1321
1321
+
"ansi-styles-4.3.0" = {
1331
1322
name = "ansi-styles";
1332
1323
packageName = "ansi-styles";
1333
1333
-
version = "4.2.1";
1324
1324
+
version = "4.3.0";
1334
1325
src = fetchurl {
1335
1335
-
url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.2.1.tgz";
1336
1336
-
sha512 = "9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA==";
1326
1326
+
url = "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz";
1327
1327
+
sha512 = "zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==";
1337
1328
};
1338
1329
};
1339
1330
"ansicolors-0.3.2" = {
···
1372
1363
sha1 = "f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40";
1373
1364
};
1374
1365
};
1366
1366
+
"arg-4.1.3" = {
1367
1367
+
name = "arg";
1368
1368
+
packageName = "arg";
1369
1369
+
version = "4.1.3";
1370
1370
+
src = fetchurl {
1371
1371
+
url = "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz";
1372
1372
+
sha512 = "58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==";
1373
1373
+
};
1374
1374
+
};
1375
1375
"argparse-1.0.10" = {
1376
1376
name = "argparse";
1377
1377
packageName = "argparse";
···
1570
1570
sha512 = "5LphC0USA8t4i1zCtjbbNb6jJj/9+X6P37Qfirc/70EQ34xKlMW+a1RHGwxGI+SwWpNwZ27HqvzAobeqaXwiZw==";
1571
1571
};
1572
1572
};
1573
1573
-
"balanced-match-1.0.0" = {
1573
1573
+
"balanced-match-1.0.2" = {
1574
1574
name = "balanced-match";
1575
1575
packageName = "balanced-match";
1576
1576
-
version = "1.0.0";
1576
1576
+
version = "1.0.2";
1577
1577
src = fetchurl {
1578
1578
-
url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz";
1579
1579
-
sha1 = "89b4d199ab2bee49de164ea02b89ce462d71b767";
1578
1578
+
url = "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz";
1579
1579
+
sha512 = "3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==";
1580
1580
};
1581
1581
};
1582
1582
"base-0.11.2" = {
···
1588
1588
sha512 = "5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==";
1589
1589
};
1590
1590
};
1591
1591
-
"before-after-hook-2.1.0" = {
1591
1591
+
"before-after-hook-2.2.2" = {
1592
1592
name = "before-after-hook";
1593
1593
packageName = "before-after-hook";
1594
1594
-
version = "2.1.0";
1594
1594
+
version = "2.2.2";
1595
1595
src = fetchurl {
1596
1596
-
url = "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.1.0.tgz";
1597
1597
-
sha512 = "IWIbu7pMqyw3EAJHzzHbWa85b6oud/yfKYg5rqB5hNE8CeMi3nX+2C2sj0HswfblST86hpVEOAb9x34NZd6P7A==";
1596
1596
+
url = "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.2.tgz";
1597
1597
+
sha512 = "3pZEU3NT5BFUo/AD5ERPWOgQOCZITni6iavr5AUw5AUwQjMlI0kzu5btnyD39AF0gUEsDPwJT+oY1ORBJijPjQ==";
1598
1598
};
1599
1599
};
1600
1600
"binary-extensions-1.13.1" = {
···
1687
1687
sha512 = "qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==";
1688
1688
};
1689
1689
};
1690
1690
-
"browserslist-4.14.2" = {
1690
1690
+
"browserslist-4.17.4" = {
1691
1691
name = "browserslist";
1692
1692
packageName = "browserslist";
1693
1693
-
version = "4.14.2";
1693
1693
+
version = "4.17.4";
1694
1694
src = fetchurl {
1695
1695
-
url = "https://registry.npmjs.org/browserslist/-/browserslist-4.14.2.tgz";
1696
1696
-
sha512 = "HI4lPveGKUR0x2StIz+2FXfDk9SfVMrxn6PLh1JeGUwcuoDkdKZebWiyLRJ68iIPDpMI4JLVDf7S7XzslgWOhw==";
1695
1695
+
url = "https://registry.npmjs.org/browserslist/-/browserslist-4.17.4.tgz";
1696
1696
+
sha512 = "Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ==";
1697
1697
};
1698
1698
};
1699
1699
"btoa-lite-1.0.0" = {
···
1705
1705
sha1 = "337766da15801210fdd956c22e9c6891ab9d0337";
1706
1706
};
1707
1707
};
1708
1708
-
"buffer-from-1.1.1" = {
1708
1708
+
"buffer-from-1.1.2" = {
1709
1709
name = "buffer-from";
1710
1710
packageName = "buffer-from";
1711
1711
-
version = "1.1.1";
1711
1711
+
version = "1.1.2";
1712
1712
src = fetchurl {
1713
1713
-
url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz";
1714
1714
-
sha512 = "MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==";
1713
1713
+
url = "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz";
1714
1714
+
sha512 = "E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==";
1715
1715
};
1716
1716
};
1717
1717
"cache-base-1.0.1" = {
···
1741
1741
sha512 = "kpqOvwXnjjN44D89K5ccQC+RUrsy7jB/XLlRrx0D7/2HNcTPqzsb6XgYoErwko6QsV184CA2YgS1fxDiiDZMWA==";
1742
1742
};
1743
1743
};
1744
1744
-
"caller-callsite-2.0.0" = {
1745
1745
-
name = "caller-callsite";
1746
1746
-
packageName = "caller-callsite";
1747
1747
-
version = "2.0.0";
1748
1748
-
src = fetchurl {
1749
1749
-
url = "https://registry.npmjs.org/caller-callsite/-/caller-callsite-2.0.0.tgz";
1750
1750
-
sha1 = "847e0fce0a223750a9a027c54b33731ad3154134";
1751
1751
-
};
1752
1752
-
};
1753
1753
-
"caller-path-2.0.0" = {
1754
1754
-
name = "caller-path";
1755
1755
-
packageName = "caller-path";
1756
1756
-
version = "2.0.0";
1744
1744
+
"call-bind-1.0.2" = {
1745
1745
+
name = "call-bind";
1746
1746
+
packageName = "call-bind";
1747
1747
+
version = "1.0.2";
1757
1748
src = fetchurl {
1758
1758
-
url = "https://registry.npmjs.org/caller-path/-/caller-path-2.0.0.tgz";
1759
1759
-
sha1 = "468f83044e369ab2010fac5f06ceee15bb2cb1f4";
1760
1760
-
};
1761
1761
-
};
1762
1762
-
"callsites-2.0.0" = {
1763
1763
-
name = "callsites";
1764
1764
-
packageName = "callsites";
1765
1765
-
version = "2.0.0";
1766
1766
-
src = fetchurl {
1767
1767
-
url = "https://registry.npmjs.org/callsites/-/callsites-2.0.0.tgz";
1768
1768
-
sha1 = "06eb84f00eea413da86affefacbffb36093b3c50";
1749
1749
+
url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz";
1750
1750
+
sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==";
1769
1751
};
1770
1752
};
1771
1753
"callsites-3.1.0" = {
···
1804
1786
sha512 = "YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==";
1805
1787
};
1806
1788
};
1807
1807
-
"caniuse-lite-1.0.30001125" = {
1789
1789
+
"caniuse-lite-1.0.30001270" = {
1808
1790
name = "caniuse-lite";
1809
1791
packageName = "caniuse-lite";
1810
1810
-
version = "1.0.30001125";
1792
1792
+
version = "1.0.30001270";
1811
1793
src = fetchurl {
1812
1812
-
url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001125.tgz";
1813
1813
-
sha512 = "9f+r7BW8Qli917mU3j0fUaTweT3f3vnX/Lcs+1C73V+RADmFme+Ih0Br8vONQi3X0lseOe6ZHfsZLCA8MSjxUA==";
1794
1794
+
url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001270.tgz";
1795
1795
+
sha512 = "TcIC7AyNWXhcOmv2KftOl1ShFAaHQYcB/EPL/hEyMrcS7ZX0/DvV1aoy6BzV0+16wTpoAyTMGDNAJfSqS/rz7A==";
1814
1796
};
1815
1797
};
1816
1798
"capture-stack-trace-1.0.1" = {
···
1840
1822
sha1 = "8167c1ab8397fb5bb95f96d28e5a81c50f247ac4";
1841
1823
};
1842
1824
};
1843
1843
-
"chai-4.2.0" = {
1825
1825
+
"chai-4.1.2" = {
1844
1826
name = "chai";
1845
1827
packageName = "chai";
1846
1846
-
version = "4.2.0";
1828
1828
+
version = "4.1.2";
1847
1829
src = fetchurl {
1848
1848
-
url = "https://registry.npmjs.org/chai/-/chai-4.2.0.tgz";
1849
1849
-
sha512 = "XQU3bhBukrOsQCuwZndwGcCVQHyZi53fQ6Ys1Fym7E4olpIqqZZhhoFJoaKVvV17lWQoXYwgWN2nF5crA8J2jw==";
1830
1830
+
url = "https://registry.npmjs.org/chai/-/chai-4.1.2.tgz";
1831
1831
+
sha1 = "0f64584ba642f0f2ace2806279f4f06ca23ad73c";
1850
1832
};
1851
1833
};
1852
1834
"chalk-2.4.2" = {
···
1858
1840
sha512 = "Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==";
1859
1841
};
1860
1842
};
1861
1861
-
"chalk-4.1.0" = {
1843
1843
+
"chalk-4.1.2" = {
1862
1844
name = "chalk";
1863
1845
packageName = "chalk";
1864
1864
-
version = "4.1.0";
1846
1846
+
version = "4.1.2";
1865
1847
src = fetchurl {
1866
1866
-
url = "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz";
1867
1867
-
sha512 = "qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A==";
1848
1848
+
url = "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz";
1849
1849
+
sha512 = "oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==";
1868
1850
};
1869
1851
};
1870
1852
"chardet-0.7.0" = {
···
1948
1930
sha1 = "b35dac376479facc3e94747d41d0d0f5238ffcb5";
1949
1931
};
1950
1932
};
1951
1951
-
"cli-table-0.3.1" = {
1933
1933
+
"cli-table-0.3.6" = {
1952
1934
name = "cli-table";
1953
1935
packageName = "cli-table";
1954
1954
-
version = "0.3.1";
1936
1936
+
version = "0.3.6";
1955
1937
src = fetchurl {
1956
1956
-
url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
1957
1957
-
sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
1938
1938
+
url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.6.tgz";
1939
1939
+
sha512 = "ZkNZbnZjKERTY5NwC2SeMeLeifSPq/pubeRoTpdr3WchLlnZg6hEgvHkK5zL7KNFdd9PmHN8lxrENUwI3cE8vQ==";
1958
1940
};
1959
1941
};
1960
1942
"cli-width-2.2.1" = {
···
2101
2083
sha512 = "NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==";
2102
2084
};
2103
2085
};
2104
2104
-
"commitizen-4.2.1" = {
2086
2086
+
"commitizen-4.2.4" = {
2105
2087
name = "commitizen";
2106
2088
packageName = "commitizen";
2107
2107
-
version = "4.2.1";
2089
2089
+
version = "4.2.4";
2108
2090
src = fetchurl {
2109
2109
-
url = "https://registry.npmjs.org/commitizen/-/commitizen-4.2.1.tgz";
2110
2110
-
sha512 = "nZsp8IThkDu7C+93BFD/mLShb9Gd6Wsaf90tpKE3x/6u5y/Q52kzanIJpGr0qvIsJ5bCMpgKtr3Lbu3miEJfaA==";
2091
2091
+
url = "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz";
2092
2092
+
sha512 = "LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==";
2111
2093
};
2112
2094
};
2113
2095
"commondir-1.0.1" = {
···
2155
2137
sha512 = "nlOhI4+fdzoK5xmJ+NY+1gZK56bwEaWZr8fYuXohZ9Vkc1o3a4T/R3M+yE/w7x/ZVJ1zF8c+oaOvF0dztdUgmA==";
2156
2138
};
2157
2139
};
2158
2158
-
"conventional-changelog-angular-5.0.11" = {
2140
2140
+
"conventional-changelog-angular-5.0.13" = {
2159
2141
name = "conventional-changelog-angular";
2160
2142
packageName = "conventional-changelog-angular";
2161
2161
-
version = "5.0.11";
2143
2143
+
version = "5.0.13";
2162
2144
src = fetchurl {
2163
2163
-
url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.11.tgz";
2164
2164
-
sha512 = "nSLypht/1yEflhuTogC03i7DX7sOrXGsRn14g131Potqi6cbGbGEE9PSDEHKldabB6N76HiSyw9Ph+kLmC04Qw==";
2145
2145
+
url = "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz";
2146
2146
+
sha512 = "i/gipMxs7s8L/QeuavPF2hLnJgH6pEZAttySB6aiQLWcX3puWDL3ACVmvBhJGxnAy52Qc15ua26BufY6KpmrVA==";
2147
2147
+
};
2148
2148
+
};
2149
2149
+
"conventional-changelog-conventionalcommits-4.4.0" = {
2150
2150
+
name = "conventional-changelog-conventionalcommits";
2151
2151
+
packageName = "conventional-changelog-conventionalcommits";
2152
2152
+
version = "4.4.0";
2153
2153
+
src = fetchurl {
2154
2154
+
url = "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-4.4.0.tgz";
2155
2155
+
sha512 = "ybvx76jTh08tpaYrYn/yd0uJNLt5yMrb1BphDe4WBredMlvPisvMghfpnJb6RmRNcqXeuhR6LfGZGewbkRm9yA==";
2165
2156
};
2166
2157
};
2167
2167
-
"conventional-changelog-writer-4.0.17" = {
2158
2158
+
"conventional-changelog-writer-4.1.0" = {
2168
2159
name = "conventional-changelog-writer";
2169
2160
packageName = "conventional-changelog-writer";
2170
2170
-
version = "4.0.17";
2161
2161
+
version = "4.1.0";
2171
2162
src = fetchurl {
2172
2172
-
url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.0.17.tgz";
2173
2173
-
sha512 = "IKQuK3bib/n032KWaSb8YlBFds+aLmzENtnKtxJy3+HqDq5kohu3g/UdNbIHeJWygfnEbZjnCKFxAW0y7ArZAw==";
2163
2163
+
url = "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-4.1.0.tgz";
2164
2164
+
sha512 = "WwKcUp7WyXYGQmkLsX4QmU42AZ1lqlvRW9mqoyiQzdD+rJWbTepdWoKJuwXTS+yq79XKnQNa93/roViPQrAQgw==";
2174
2165
};
2175
2166
};
2176
2167
"conventional-commit-types-2.3.0" = {
···
2191
2182
sha512 = "SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==";
2192
2183
};
2193
2184
};
2194
2194
-
"conventional-commits-filter-2.0.6" = {
2185
2185
+
"conventional-commits-filter-2.0.7" = {
2195
2186
name = "conventional-commits-filter";
2196
2187
packageName = "conventional-commits-filter";
2197
2197
-
version = "2.0.6";
2188
2188
+
version = "2.0.7";
2198
2189
src = fetchurl {
2199
2199
-
url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.6.tgz";
2200
2200
-
sha512 = "4g+sw8+KA50/Qwzfr0hL5k5NWxqtrOVw4DDk3/h6L85a9Gz0/Eqp3oP+CWCNfesBvZZZEFHF7OTEbRe+yYSyKw==";
2190
2190
+
url = "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-2.0.7.tgz";
2191
2191
+
sha512 = "ASS9SamOP4TbCClsRHxIHXRfcGCnIoQqkvAzCSbZzTFLfcTqJVugB0agRgsEELsqaeWgsXv513eS116wnlSSPA==";
2201
2192
};
2202
2193
};
2203
2203
-
"conventional-commits-parser-3.1.0" = {
2194
2194
+
"conventional-commits-parser-3.2.2" = {
2204
2195
name = "conventional-commits-parser";
2205
2196
packageName = "conventional-commits-parser";
2206
2206
-
version = "3.1.0";
2197
2197
+
version = "3.2.2";
2207
2198
src = fetchurl {
2208
2208
-
url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.1.0.tgz";
2209
2209
-
sha512 = "RSo5S0WIwXZiRxUGTPuYFbqvrR4vpJ1BDdTlthFgvHt5kEdnd1+pdvwWphWn57/oIl4V72NMmOocFqqJ8mFFhA==";
2199
2199
+
url = "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-3.2.2.tgz";
2200
2200
+
sha512 = "Jr9KAKgqAkwXMRHjxDwO/zOCDKod1XdAESHAGuJX38iZ7ZzVti/tvVoysO0suMsdAObp9NQ2rHSsSbnAqZ5f5g==";
2210
2201
};
2211
2202
};
2212
2212
-
"convert-source-map-1.7.0" = {
2203
2203
+
"convert-source-map-1.8.0" = {
2213
2204
name = "convert-source-map";
2214
2205
packageName = "convert-source-map";
2215
2215
-
version = "1.7.0";
2206
2206
+
version = "1.8.0";
2216
2207
src = fetchurl {
2217
2217
-
url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz";
2218
2218
-
sha512 = "4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA==";
2208
2208
+
url = "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz";
2209
2209
+
sha512 = "+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==";
2219
2210
};
2220
2211
};
2221
2212
"copy-descriptor-0.1.1" = {
···
2227
2218
sha1 = "676f6eb3c39997c2ee1ac3a924fd6124748f578d";
2228
2219
};
2229
2220
};
2230
2230
-
"core-js-compat-3.6.5" = {
2221
2221
+
"core-js-compat-3.18.3" = {
2231
2222
name = "core-js-compat";
2232
2223
packageName = "core-js-compat";
2233
2233
-
version = "3.6.5";
2224
2224
+
version = "3.18.3";
2234
2225
src = fetchurl {
2235
2235
-
url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.6.5.tgz";
2236
2236
-
sha512 = "7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng==";
2226
2226
+
url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.18.3.tgz";
2227
2227
+
sha512 = "4zP6/y0a2RTHN5bRGT7PTq9lVt3WzvffTNjqnTKsXhkAYNDTkdCLOIfAdOLcQ/7TDdyRj3c+NeHe1NmF1eDScw==";
2237
2228
};
2238
2229
};
2239
2239
-
"core-util-is-1.0.2" = {
2230
2230
+
"core-util-is-1.0.3" = {
2240
2231
name = "core-util-is";
2241
2232
packageName = "core-util-is";
2242
2242
-
version = "1.0.2";
2233
2233
+
version = "1.0.3";
2243
2234
src = fetchurl {
2244
2244
-
url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz";
2245
2245
-
sha1 = "b5fd54220aa2bc5ab57aab7140c940754503c1a7";
2235
2235
+
url = "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz";
2236
2236
+
sha512 = "ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==";
2246
2237
};
2247
2238
};
2248
2248
-
"cosmiconfig-5.2.1" = {
2239
2239
+
"cosmiconfig-6.0.0" = {
2249
2240
name = "cosmiconfig";
2250
2241
packageName = "cosmiconfig";
2251
2251
-
version = "5.2.1";
2242
2242
+
version = "6.0.0";
2252
2243
src = fetchurl {
2253
2253
-
url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-5.2.1.tgz";
2254
2254
-
sha512 = "H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==";
2244
2244
+
url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-6.0.0.tgz";
2245
2245
+
sha512 = "xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==";
2255
2246
};
2256
2247
};
2257
2257
-
"cosmiconfig-7.0.0" = {
2248
2248
+
"cosmiconfig-7.0.1" = {
2258
2249
name = "cosmiconfig";
2259
2250
packageName = "cosmiconfig";
2260
2260
-
version = "7.0.0";
2251
2251
+
version = "7.0.1";
2261
2252
src = fetchurl {
2262
2262
-
url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz";
2263
2263
-
sha512 = "pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==";
2253
2253
+
url = "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.1.tgz";
2254
2254
+
sha512 = "a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==";
2264
2255
};
2265
2256
};
2266
2257
"create-error-class-3.0.2" = {
···
2270
2261
src = fetchurl {
2271
2262
url = "https://registry.npmjs.org/create-error-class/-/create-error-class-3.0.2.tgz";
2272
2263
sha1 = "06be7abef947a3f14a30fd610671d401bca8b7b6";
2264
2264
+
};
2265
2265
+
};
2266
2266
+
"create-require-1.1.1" = {
2267
2267
+
name = "create-require";
2268
2268
+
packageName = "create-require";
2269
2269
+
version = "1.1.1";
2270
2270
+
src = fetchurl {
2271
2271
+
url = "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz";
2272
2272
+
sha512 = "dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==";
2273
2273
};
2274
2274
};
2275
2275
"cross-spawn-5.1.0" = {
···
2389
2389
sha512 = "mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==";
2390
2390
};
2391
2391
};
2392
2392
-
"debug-4.2.0" = {
2392
2392
+
"debug-3.2.7" = {
2393
2393
+
name = "debug";
2394
2394
+
packageName = "debug";
2395
2395
+
version = "3.2.7";
2396
2396
+
src = fetchurl {
2397
2397
+
url = "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz";
2398
2398
+
sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==";
2399
2399
+
};
2400
2400
+
};
2401
2401
+
"debug-4.3.2" = {
2393
2402
name = "debug";
2394
2403
packageName = "debug";
2395
2395
-
version = "4.2.0";
2404
2404
+
version = "4.3.2";
2396
2405
src = fetchurl {
2397
2397
-
url = "https://registry.npmjs.org/debug/-/debug-4.2.0.tgz";
2398
2398
-
sha512 = "IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg==";
2406
2406
+
url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz";
2407
2407
+
sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==";
2399
2408
};
2400
2409
};
2401
2410
"decamelize-1.2.0" = {
···
2560
2569
sha512 = "A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==";
2561
2570
};
2562
2571
};
2572
2572
+
"diff-4.0.2" = {
2573
2573
+
name = "diff";
2574
2574
+
packageName = "diff";
2575
2575
+
version = "4.0.2";
2576
2576
+
src = fetchurl {
2577
2577
+
url = "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz";
2578
2578
+
sha512 = "58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==";
2579
2579
+
};
2580
2580
+
};
2563
2581
"dir-glob-3.0.1" = {
2564
2582
name = "dir-glob";
2565
2583
packageName = "dir-glob";
···
2614
2632
sha1 = "ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2";
2615
2633
};
2616
2634
};
2617
2617
-
"electron-to-chromium-1.3.565" = {
2635
2635
+
"electron-to-chromium-1.3.873" = {
2618
2636
name = "electron-to-chromium";
2619
2637
packageName = "electron-to-chromium";
2620
2620
-
version = "1.3.565";
2638
2638
+
version = "1.3.873";
2621
2639
src = fetchurl {
2622
2622
-
url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.565.tgz";
2623
2623
-
sha512 = "me5dGlHFd8Q7mKhqbWRLIYnKjw4i0fO6hmW0JBxa7tM87fBfNEjWokRnDF7V+Qme/9IYpwhfMn+soWs40tXWqg==";
2640
2640
+
url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.873.tgz";
2641
2641
+
sha512 = "TiHlCgl2uP26Z0c67u442c0a2MZCWZNCRnPTQDPhVJ4h9G6z2zU0lApD9H0K9R5yFL5SfdaiVsVD2izOY24xBQ==";
2624
2642
};
2625
2643
};
2626
2644
"emoji-regex-7.0.3" = {
···
2668
2686
sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==";
2669
2687
};
2670
2688
};
2671
2671
-
"es-abstract-1.17.6" = {
2689
2689
+
"es-abstract-1.19.1" = {
2672
2690
name = "es-abstract";
2673
2691
packageName = "es-abstract";
2674
2674
-
version = "1.17.6";
2692
2692
+
version = "1.19.1";
2675
2693
src = fetchurl {
2676
2676
-
url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.6.tgz";
2677
2677
-
sha512 = "Fr89bON3WFyUi5EvAeI48QTWX0AyekGgLA8H+c+7fbfCkJwRWRMLd8CQedNEyJuoYYhmtEqY92pgte1FAhBlhw==";
2694
2694
+
url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.19.1.tgz";
2695
2695
+
sha512 = "2vJ6tjA/UfqLm2MPs7jxVybLoB8i1t1Jd9R3kISld20sIxPcTbLuggQOUxeWeAvIUkduv/CfMjuh4WmiXr2v9w==";
2678
2696
};
2679
2697
};
2680
2698
"es-to-primitive-1.2.1" = {
···
2695
2713
sha512 = "Um/+FxMr9CISWh0bi5Zv0iOD+4cFh5qLeks1qhAopKVAJw3drgKbKySikp7wGhDL0HPeaja0P5ULZrxLkniUVg==";
2696
2714
};
2697
2715
};
2698
2698
-
"escalade-3.0.2" = {
2716
2716
+
"escalade-3.1.1" = {
2699
2717
name = "escalade";
2700
2718
packageName = "escalade";
2701
2701
-
version = "3.0.2";
2719
2719
+
version = "3.1.1";
2702
2720
src = fetchurl {
2703
2703
-
url = "https://registry.npmjs.org/escalade/-/escalade-3.0.2.tgz";
2704
2704
-
sha512 = "gPYAU37hYCUhW5euPeR+Y74F7BL+IBsV93j5cvGriSaD1aG6MGsqsV1yamRdrWrb2j3aiZvb0X+UBOWpx3JWtQ==";
2721
2721
+
url = "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz";
2722
2722
+
sha512 = "k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==";
2705
2723
};
2706
2724
};
2707
2725
"escape-string-regexp-1.0.5" = {
···
2812
2830
sha512 = "Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==";
2813
2831
};
2814
2832
};
2815
2815
-
"fast-glob-3.2.4" = {
2833
2833
+
"fast-glob-3.2.7" = {
2816
2834
name = "fast-glob";
2817
2835
packageName = "fast-glob";
2818
2818
-
version = "3.2.4";
2836
2836
+
version = "3.2.7";
2819
2837
src = fetchurl {
2820
2820
-
url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz";
2821
2821
-
sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==";
2838
2838
+
url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.7.tgz";
2839
2839
+
sha512 = "rYGMRwip6lUMvYD3BTScMwT1HtAs2d71SMv66Vrxs0IekGZEjhM0pcMfjQPnknBt2zeCwQMEupiN02ZP4DiT1Q==";
2822
2840
};
2823
2841
};
2824
2824
-
"fastq-1.8.0" = {
2842
2842
+
"fastq-1.13.0" = {
2825
2843
name = "fastq";
2826
2844
packageName = "fastq";
2827
2827
-
version = "1.8.0";
2845
2845
+
version = "1.13.0";
2828
2846
src = fetchurl {
2829
2829
-
url = "https://registry.npmjs.org/fastq/-/fastq-1.8.0.tgz";
2830
2830
-
sha512 = "SMIZoZdLh/fgofivvIkmknUXyPnvxRE3DhtZ5Me3Mrsk5gyPL42F0xr51TdRXskBxHfMp+07bcYzfsYEsSQA9Q==";
2847
2847
+
url = "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz";
2848
2848
+
sha512 = "YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==";
2831
2849
};
2832
2850
};
2833
2851
"figures-2.0.0" = {
···
2893
2911
sha512 = "Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==";
2894
2912
};
2895
2913
};
2896
2896
-
"find-cache-dir-3.3.1" = {
2914
2914
+
"find-cache-dir-3.3.2" = {
2897
2915
name = "find-cache-dir";
2898
2916
packageName = "find-cache-dir";
2899
2899
-
version = "3.3.1";
2917
2917
+
version = "3.3.2";
2900
2918
src = fetchurl {
2901
2901
-
url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.1.tgz";
2902
2902
-
sha512 = "t2GDMt3oGC/v+BMwzmllWDuJF/xcDtE5j/fCGbqDD7OLuJkj0cfh1YSA5VKPvwMeLFLNDBkwOKZ2X85jGLVftQ==";
2919
2919
+
url = "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz";
2920
2920
+
sha512 = "wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==";
2903
2921
};
2904
2922
};
2905
2905
-
"find-node-modules-2.0.0" = {
2923
2923
+
"find-node-modules-2.1.2" = {
2906
2924
name = "find-node-modules";
2907
2925
packageName = "find-node-modules";
2908
2908
-
version = "2.0.0";
2926
2926
+
version = "2.1.2";
2909
2927
src = fetchurl {
2910
2910
-
url = "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.0.0.tgz";
2911
2911
-
sha512 = "8MWIBRgJi/WpjjfVXumjPKCtmQ10B+fjx6zmSA+770GMJirLhWIzg8l763rhjl9xaeaHbnxPNRQKq2mgMhr+aw==";
2928
2928
+
url = "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.2.tgz";
2929
2929
+
sha512 = "x+3P4mbtRPlSiVE1Qco0Z4YLU8WFiFcuWTf3m75OV9Uzcfs2Bg+O9N+r/K0AnmINBW06KpfqKwYJbFlFq4qNug==";
2912
2930
};
2913
2931
};
2914
2932
"find-root-1.1.0" = {
···
2965
2983
sha1 = "8ad929a3393bac627957a7e5de4623b06b0e2ceb";
2966
2984
};
2967
2985
};
2968
2968
-
"findup-sync-3.0.0" = {
2986
2986
+
"findup-sync-4.0.0" = {
2969
2987
name = "findup-sync";
2970
2988
packageName = "findup-sync";
2971
2971
-
version = "3.0.0";
2989
2989
+
version = "4.0.0";
2972
2990
src = fetchurl {
2973
2973
-
url = "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz";
2974
2974
-
sha512 = "YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==";
2991
2991
+
url = "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz";
2992
2992
+
sha512 = "6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==";
2975
2993
};
2976
2994
};
2977
2977
-
"flat-4.1.0" = {
2995
2995
+
"flat-4.1.1" = {
2978
2996
name = "flat";
2979
2997
packageName = "flat";
2980
2980
-
version = "4.1.0";
2998
2998
+
version = "4.1.1";
2981
2999
src = fetchurl {
2982
2982
-
url = "https://registry.npmjs.org/flat/-/flat-4.1.0.tgz";
2983
2983
-
sha512 = "Px/TiLIznH7gEDlPXcUD4KnBusa6kR6ayRUVcnEAbreRIuhkqow/mun59BuRXwoYk7ZQOLW1ZM05ilIvK38hFw==";
3000
3000
+
url = "https://registry.npmjs.org/flat/-/flat-4.1.1.tgz";
3001
3001
+
sha512 = "FmTtBsHskrU6FJ2VxCnsDb84wu9zhmO3cUX2kGFb5tuwhfXxGciiT0oRY+cck35QmG+NmGh5eLz6lLCpWTqwpA==";
2984
3002
};
2985
3003
};
2986
3004
"follow-redirects-1.5.10" = {
···
3046
3064
sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
3047
3065
};
3048
3066
};
3049
3049
-
"fromentries-1.2.1" = {
3067
3067
+
"fromentries-1.3.2" = {
3050
3068
name = "fromentries";
3051
3069
packageName = "fromentries";
3052
3052
-
version = "1.2.1";
3070
3070
+
version = "1.3.2";
3053
3071
src = fetchurl {
3054
3054
-
url = "https://registry.npmjs.org/fromentries/-/fromentries-1.2.1.tgz";
3055
3055
-
sha512 = "Xu2Qh8yqYuDhQGOhD5iJGninErSfI9A3FrriD3tjUgV5VbJFeH8vfgZ9HnC6jWN80QDVNQK5vmxRAmEAp7Mevw==";
3072
3072
+
url = "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz";
3073
3073
+
sha512 = "cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==";
3056
3074
};
3057
3075
};
3058
3076
"fs-extra-8.1.0" = {
···
3100
3118
sha512 = "yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==";
3101
3119
};
3102
3120
};
3103
3103
-
"gensync-1.0.0-beta.1" = {
3121
3121
+
"gensync-1.0.0-beta.2" = {
3104
3122
name = "gensync";
3105
3123
packageName = "gensync";
3106
3106
-
version = "1.0.0-beta.1";
3124
3124
+
version = "1.0.0-beta.2";
3107
3125
src = fetchurl {
3108
3108
-
url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.1.tgz";
3109
3109
-
sha512 = "r8EC6NO1sngH/zdD9fiRDLdcgnbayXah+mLgManTaIZJqEC1MZstmnox8KpnI2/fxQwrp5OpCOYWLp4rBl4Jcg==";
3126
3126
+
url = "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz";
3127
3127
+
sha512 = "3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==";
3110
3128
};
3111
3129
};
3112
3130
"get-caller-file-1.0.3" = {
···
3136
3154
sha1 = "ead774abee72e20409433a066366023dd6887a41";
3137
3155
};
3138
3156
};
3157
3157
+
"get-intrinsic-1.1.1" = {
3158
3158
+
name = "get-intrinsic";
3159
3159
+
packageName = "get-intrinsic";
3160
3160
+
version = "1.1.1";
3161
3161
+
src = fetchurl {
3162
3162
+
url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
3163
3163
+
sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==";
3164
3164
+
};
3165
3165
+
};
3139
3166
"get-package-type-0.1.0" = {
3140
3167
name = "get-package-type";
3141
3168
packageName = "get-package-type";
···
3170
3197
src = fetchurl {
3171
3198
url = "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz";
3172
3199
sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==";
3200
3200
+
};
3201
3201
+
};
3202
3202
+
"get-symbol-description-1.0.0" = {
3203
3203
+
name = "get-symbol-description";
3204
3204
+
packageName = "get-symbol-description";
3205
3205
+
version = "1.0.0";
3206
3206
+
src = fetchurl {
3207
3207
+
url = "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz";
3208
3208
+
sha512 = "2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==";
3173
3209
};
3174
3210
};
3175
3211
"get-value-2.0.6" = {
···
3217
3253
sha512 = "hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==";
3218
3254
};
3219
3255
};
3220
3220
-
"glob-7.1.6" = {
3256
3256
+
"glob-7.2.0" = {
3221
3257
name = "glob";
3222
3258
packageName = "glob";
3223
3223
-
version = "7.1.6";
3259
3259
+
version = "7.2.0";
3224
3260
src = fetchurl {
3225
3225
-
url = "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz";
3226
3226
-
sha512 = "LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==";
3261
3261
+
url = "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz";
3262
3262
+
sha512 = "lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==";
3227
3263
};
3228
3264
};
3229
3265
"glob-parent-3.1.0" = {
···
3235
3271
sha1 = "9e6af6299d8d3bd2bd40430832bd113df906c5ae";
3236
3272
};
3237
3273
};
3238
3238
-
"glob-parent-5.1.1" = {
3274
3274
+
"glob-parent-5.1.2" = {
3239
3275
name = "glob-parent";
3240
3276
packageName = "glob-parent";
3241
3241
-
version = "5.1.1";
3277
3277
+
version = "5.1.2";
3242
3278
src = fetchurl {
3243
3243
-
url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz";
3244
3244
-
sha512 = "FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ==";
3279
3279
+
url = "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz";
3280
3280
+
sha512 = "AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==";
3245
3281
};
3246
3282
};
3247
3283
"global-dirs-0.1.1" = {
···
3298
3334
sha1 = "240cd05785a9a18e561dc1b44b41c763ef1e8db0";
3299
3335
};
3300
3336
};
3301
3301
-
"graceful-fs-4.2.4" = {
3337
3337
+
"graceful-fs-4.2.8" = {
3302
3338
name = "graceful-fs";
3303
3339
packageName = "graceful-fs";
3304
3304
-
version = "4.2.4";
3340
3340
+
version = "4.2.8";
3305
3341
src = fetchurl {
3306
3306
-
url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz";
3307
3307
-
sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==";
3342
3342
+
url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.8.tgz";
3343
3343
+
sha512 = "qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg==";
3308
3344
};
3309
3345
};
3310
3346
"graceful-readlink-1.0.1" = {
···
3325
3361
sha512 = "qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA==";
3326
3362
};
3327
3363
};
3328
3328
-
"handlebars-4.7.6" = {
3364
3364
+
"handlebars-4.7.7" = {
3329
3365
name = "handlebars";
3330
3366
packageName = "handlebars";
3331
3331
-
version = "4.7.6";
3367
3367
+
version = "4.7.7";
3332
3368
src = fetchurl {
3333
3333
-
url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.6.tgz";
3334
3334
-
sha512 = "1f2BACcBfiwAfStCKZNrUCgqNZkGsAT7UM3kkYtXuLo0KnaVfjKOyf7PRzB6++aK9STyT1Pd2ZCPe3EGOXleXA==";
3369
3369
+
url = "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz";
3370
3370
+
sha512 = "aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==";
3335
3371
};
3336
3372
};
3337
3373
"hard-rejection-2.1.0" = {
···
3352
3388
sha512 = "f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==";
3353
3389
};
3354
3390
};
3391
3391
+
"has-bigints-1.0.1" = {
3392
3392
+
name = "has-bigints";
3393
3393
+
packageName = "has-bigints";
3394
3394
+
version = "1.0.1";
3395
3395
+
src = fetchurl {
3396
3396
+
url = "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.1.tgz";
3397
3397
+
sha512 = "LSBS2LjbNBTf6287JEbEzvJgftkF5qFkmCo9hDRpAzKhUOlJ+hx8dd4USs00SgsUNwc4617J9ki5YtEClM2ffA==";
3398
3398
+
};
3399
3399
+
};
3355
3400
"has-flag-2.0.0" = {
3356
3401
name = "has-flag";
3357
3402
packageName = "has-flag";
···
3379
3424
sha512 = "EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==";
3380
3425
};
3381
3426
};
3382
3382
-
"has-symbols-1.0.1" = {
3427
3427
+
"has-symbols-1.0.2" = {
3383
3428
name = "has-symbols";
3384
3429
packageName = "has-symbols";
3385
3385
-
version = "1.0.1";
3430
3430
+
version = "1.0.2";
3431
3431
+
src = fetchurl {
3432
3432
+
url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz";
3433
3433
+
sha512 = "chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==";
3434
3434
+
};
3435
3435
+
};
3436
3436
+
"has-tostringtag-1.0.0" = {
3437
3437
+
name = "has-tostringtag";
3438
3438
+
packageName = "has-tostringtag";
3439
3439
+
version = "1.0.0";
3386
3440
src = fetchurl {
3387
3387
-
url = "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.1.tgz";
3388
3388
-
sha512 = "PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==";
3441
3441
+
url = "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz";
3442
3442
+
sha512 = "kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==";
3389
3443
};
3390
3444
};
3391
3445
"has-value-0.3.1" = {
···
3424
3478
sha1 = "95b0b63fec2146619a6fe57fe75628d5a39efe4f";
3425
3479
};
3426
3480
};
3427
3427
-
"hasha-5.2.0" = {
3481
3481
+
"hasha-5.2.2" = {
3428
3482
name = "hasha";
3429
3483
packageName = "hasha";
3430
3430
-
version = "5.2.0";
3484
3484
+
version = "5.2.2";
3431
3485
src = fetchurl {
3432
3432
-
url = "https://registry.npmjs.org/hasha/-/hasha-5.2.0.tgz";
3433
3433
-
sha512 = "2W+jKdQbAdSIrggA8Q35Br8qKadTrqCTC8+XZvBWepKDK6m9XkX6Iz1a2yh2KP01kzAR/dpuMeUnocoLYDcskw==";
3486
3486
+
url = "https://registry.npmjs.org/hasha/-/hasha-5.2.2.tgz";
3487
3487
+
sha512 = "Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==";
3434
3488
};
3435
3489
};
3436
3490
"hawk-1.1.1" = {
···
3478
3532
sha512 = "zZ6T5WcuBMIUVh49iPQS9t977t7C0l7OtHrpeMb5uk48JdflRX0NSFvCekfYNmGQETnLq9W/isMyHl69kxGi8g==";
3479
3533
};
3480
3534
};
3481
3481
-
"hosted-git-info-2.8.8" = {
3535
3535
+
"hosted-git-info-2.8.9" = {
3536
3536
+
name = "hosted-git-info";
3537
3537
+
packageName = "hosted-git-info";
3538
3538
+
version = "2.8.9";
3539
3539
+
src = fetchurl {
3540
3540
+
url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz";
3541
3541
+
sha512 = "mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==";
3542
3542
+
};
3543
3543
+
};
3544
3544
+
"hosted-git-info-3.0.8" = {
3545
3545
+
name = "hosted-git-info";
3546
3546
+
packageName = "hosted-git-info";
3547
3547
+
version = "3.0.8";
3548
3548
+
src = fetchurl {
3549
3549
+
url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-3.0.8.tgz";
3550
3550
+
sha512 = "aXpmwoOhRBrw6X3j0h5RloK4x1OzsxMPyxqIHyNfSe2pypkVTZFpEiRoSipPEPlMrh0HW/XsjkJ5WgnCirpNUw==";
3551
3551
+
};
3552
3552
+
};
3553
3553
+
"hosted-git-info-4.0.2" = {
3482
3554
name = "hosted-git-info";
3483
3555
packageName = "hosted-git-info";
3484
3484
-
version = "2.8.8";
3556
3556
+
version = "4.0.2";
3485
3557
src = fetchurl {
3486
3486
-
url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.8.tgz";
3487
3487
-
sha512 = "f/wzC2QaWBs7t9IYqB4T3sR1xviIViXJRJTWBlx2Gf3g0Xi5vI7Yy4koXQ1c9OYDGHN9sBy1DQ2AB8fqZBWhUg==";
3558
3558
+
url = "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.0.2.tgz";
3559
3559
+
sha512 = "c9OGXbZ3guC/xOlCg1Ci/VgWlwsqDv1yMQL1CWqXDL0hDjXuNcq0zuR4xqPSuasI3kqFDhqSyTjREz5gzq0fXg==";
3488
3560
};
3489
3561
};
3490
3562
"html-escaper-2.0.2" = {
···
3559
3631
sha1 = "48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09";
3560
3632
};
3561
3633
};
3562
3562
-
"import-fresh-2.0.0" = {
3563
3563
-
name = "import-fresh";
3564
3564
-
packageName = "import-fresh";
3565
3565
-
version = "2.0.0";
3566
3566
-
src = fetchurl {
3567
3567
-
url = "https://registry.npmjs.org/import-fresh/-/import-fresh-2.0.0.tgz";
3568
3568
-
sha1 = "d81355c15612d386c61f9ddd3922d4304822a546";
3569
3569
-
};
3570
3570
-
};
3571
3571
-
"import-fresh-3.2.1" = {
3634
3634
+
"import-fresh-3.3.0" = {
3572
3635
name = "import-fresh";
3573
3636
packageName = "import-fresh";
3574
3574
-
version = "3.2.1";
3637
3637
+
version = "3.3.0";
3575
3638
src = fetchurl {
3576
3576
-
url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.1.tgz";
3577
3577
-
sha512 = "6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ==";
3639
3639
+
url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz";
3640
3640
+
sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==";
3578
3641
};
3579
3642
};
3580
3643
"import-from-3.0.0" = {
···
3604
3667
sha1 = "9218b9b2b928a238b13dc4fb6b6d576f231453ea";
3605
3668
};
3606
3669
};
3607
3607
-
"in-publish-2.0.1" = {
3670
3670
+
"in-publish-2.0.0" = {
3608
3671
name = "in-publish";
3609
3672
packageName = "in-publish";
3610
3610
-
version = "2.0.1";
3673
3673
+
version = "2.0.0";
3611
3674
src = fetchurl {
3612
3612
-
url = "https://registry.npmjs.org/in-publish/-/in-publish-2.0.1.tgz";
3613
3613
-
sha512 = "oDM0kUSNFC31ShNxHKUyfZKy8ZeXZBWMjMdZHKLOk13uvT27VTL/QzRGfRUcevJhpkZAvlhPYuXkF7eNWrtyxQ==";
3675
3675
+
url = "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz";
3676
3676
+
sha1 = "e20ff5e3a2afc2690320b6dc552682a9c7fadf51";
3614
3677
};
3615
3678
};
3616
3679
"indent-string-4.0.0" = {
···
3640
3703
sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==";
3641
3704
};
3642
3705
};
3643
3643
-
"ini-1.3.5" = {
3706
3706
+
"ini-1.3.8" = {
3644
3707
name = "ini";
3645
3708
packageName = "ini";
3646
3646
-
version = "1.3.5";
3709
3709
+
version = "1.3.8";
3647
3710
src = fetchurl {
3648
3648
-
url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
3649
3649
-
sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
3711
3711
+
url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz";
3712
3712
+
sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==";
3650
3713
};
3651
3714
};
3652
3715
"inquirer-6.5.2" = {
···
3658
3721
sha512 = "cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==";
3659
3722
};
3660
3723
};
3724
3724
+
"internal-slot-1.0.3" = {
3725
3725
+
name = "internal-slot";
3726
3726
+
packageName = "internal-slot";
3727
3727
+
version = "1.0.3";
3728
3728
+
src = fetchurl {
3729
3729
+
url = "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz";
3730
3730
+
sha512 = "O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==";
3731
3731
+
};
3732
3732
+
};
3661
3733
"into-stream-5.1.1" = {
3662
3734
name = "into-stream";
3663
3735
packageName = "into-stream";
···
3712
3784
sha1 = "77c99840527aa8ecb1a8ba697b80645a7a926a9d";
3713
3785
};
3714
3786
};
3787
3787
+
"is-bigint-1.0.4" = {
3788
3788
+
name = "is-bigint";
3789
3789
+
packageName = "is-bigint";
3790
3790
+
version = "1.0.4";
3791
3791
+
src = fetchurl {
3792
3792
+
url = "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz";
3793
3793
+
sha512 = "zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==";
3794
3794
+
};
3795
3795
+
};
3715
3796
"is-binary-path-1.0.1" = {
3716
3797
name = "is-binary-path";
3717
3798
packageName = "is-binary-path";
···
3721
3802
sha1 = "75f16642b480f187a711c814161fd3a4a7655898";
3722
3803
};
3723
3804
};
3805
3805
+
"is-boolean-object-1.1.2" = {
3806
3806
+
name = "is-boolean-object";
3807
3807
+
packageName = "is-boolean-object";
3808
3808
+
version = "1.1.2";
3809
3809
+
src = fetchurl {
3810
3810
+
url = "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz";
3811
3811
+
sha512 = "gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==";
3812
3812
+
};
3813
3813
+
};
3724
3814
"is-buffer-1.1.6" = {
3725
3815
name = "is-buffer";
3726
3816
packageName = "is-buffer";
···
3730
3820
sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
3731
3821
};
3732
3822
};
3733
3733
-
"is-buffer-2.0.4" = {
3823
3823
+
"is-buffer-2.0.5" = {
3734
3824
name = "is-buffer";
3735
3825
packageName = "is-buffer";
3736
3736
-
version = "2.0.4";
3826
3826
+
version = "2.0.5";
3737
3827
src = fetchurl {
3738
3738
-
url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.4.tgz";
3739
3739
-
sha512 = "Kq1rokWXOPXWuaMAqZiJW4XxsmD9zGx9q4aePabbn3qCRGedtH7Cm+zV8WETitMfu1wdh+Rvd6w5egwSngUX2A==";
3828
3828
+
url = "https://registry.npmjs.org/is-buffer/-/is-buffer-2.0.5.tgz";
3829
3829
+
sha512 = "i2R6zNFDwgEHJyQUtJEk0XFi1i0dPFn/oqjK3/vPCcDeJvW5NQ83V8QbicfF1SupOaB0h8ntgBC2YiE7dfyctQ==";
3740
3830
};
3741
3831
};
3742
3742
-
"is-callable-1.2.1" = {
3832
3832
+
"is-callable-1.2.4" = {
3743
3833
name = "is-callable";
3744
3834
packageName = "is-callable";
3745
3745
-
version = "1.2.1";
3835
3835
+
version = "1.2.4";
3746
3836
src = fetchurl {
3747
3747
-
url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.1.tgz";
3748
3748
-
sha512 = "wliAfSzx6V+6WfMOmus1xy0XvSgf/dlStkvTfq7F0g4bOIW0PSUbnyse3NhDwdyYS1ozfUtAAySqTws3z9Eqgg==";
3837
3837
+
url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz";
3838
3838
+
sha512 = "nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==";
3749
3839
};
3750
3840
};
3751
3841
"is-ci-1.2.1" = {
···
3757
3847
sha512 = "s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg==";
3758
3848
};
3759
3849
};
3850
3850
+
"is-core-module-2.8.0" = {
3851
3851
+
name = "is-core-module";
3852
3852
+
packageName = "is-core-module";
3853
3853
+
version = "2.8.0";
3854
3854
+
src = fetchurl {
3855
3855
+
url = "https://registry.npmjs.org/is-core-module/-/is-core-module-2.8.0.tgz";
3856
3856
+
sha512 = "vd15qHsaqrRL7dtH6QNuy0ndJmRDrS9HAM1CAiSifNUFv4x1a0CCVsj18hJ1mShxIG6T2i1sO78MkP56r0nYRw==";
3857
3857
+
};
3858
3858
+
};
3760
3859
"is-data-descriptor-0.1.4" = {
3761
3860
name = "is-data-descriptor";
3762
3861
packageName = "is-data-descriptor";
···
3775
3874
sha512 = "jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==";
3776
3875
};
3777
3876
};
3778
3778
-
"is-date-object-1.0.2" = {
3877
3877
+
"is-date-object-1.0.5" = {
3779
3878
name = "is-date-object";
3780
3879
packageName = "is-date-object";
3781
3781
-
version = "1.0.2";
3880
3880
+
version = "1.0.5";
3782
3881
src = fetchurl {
3783
3783
-
url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.2.tgz";
3784
3784
-
sha512 = "USlDT524woQ08aoZFzh3/Z6ch9Y/EWXEHQ/AaRN0SkKq4t2Jw2R2339tSXmwuVoY7LLlBCbOIlx2myP/L5zk0g==";
3882
3882
+
url = "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz";
3883
3883
+
sha512 = "9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==";
3785
3884
};
3786
3885
};
3787
3886
"is-descriptor-0.1.6" = {
···
3800
3899
src = fetchurl {
3801
3900
url = "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz";
3802
3901
sha512 = "2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==";
3803
3803
-
};
3804
3804
-
};
3805
3805
-
"is-directory-0.3.1" = {
3806
3806
-
name = "is-directory";
3807
3807
-
packageName = "is-directory";
3808
3808
-
version = "0.3.1";
3809
3809
-
src = fetchurl {
3810
3810
-
url = "https://registry.npmjs.org/is-directory/-/is-directory-0.3.1.tgz";
3811
3811
-
sha1 = "61339b6f2475fc772fd9c9d83f5c8575dc154ae1";
3812
3902
};
3813
3903
};
3814
3904
"is-extendable-0.1.1" = {
···
3874
3964
sha1 = "7ba5ae24217804ac70707b96922567486cc3e84a";
3875
3965
};
3876
3966
};
3877
3877
-
"is-glob-4.0.1" = {
3967
3967
+
"is-glob-4.0.3" = {
3878
3968
name = "is-glob";
3879
3969
packageName = "is-glob";
3880
3880
-
version = "4.0.1";
3970
3970
+
version = "4.0.3";
3881
3971
src = fetchurl {
3882
3882
-
url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz";
3883
3883
-
sha512 = "5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==";
3972
3972
+
url = "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz";
3973
3973
+
sha512 = "xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==";
3884
3974
};
3885
3975
};
3886
3976
"is-installed-globally-0.1.0" = {
···
3892
3982
sha1 = "0dfd98f5a9111716dd535dda6492f67bf3d25a80";
3893
3983
};
3894
3984
};
3985
3985
+
"is-negative-zero-2.0.1" = {
3986
3986
+
name = "is-negative-zero";
3987
3987
+
packageName = "is-negative-zero";
3988
3988
+
version = "2.0.1";
3989
3989
+
src = fetchurl {
3990
3990
+
url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
3991
3991
+
sha512 = "2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==";
3992
3992
+
};
3993
3993
+
};
3895
3994
"is-npm-1.0.0" = {
3896
3995
name = "is-npm";
3897
3996
packageName = "is-npm";
···
3919
4018
sha512 = "41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==";
3920
4019
};
3921
4020
};
4021
4021
+
"is-number-object-1.0.6" = {
4022
4022
+
name = "is-number-object";
4023
4023
+
packageName = "is-number-object";
4024
4024
+
version = "1.0.6";
4025
4025
+
src = fetchurl {
4026
4026
+
url = "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.6.tgz";
4027
4027
+
sha512 = "bEVOqiRcvo3zO1+G2lVMy+gkkEm9Yh7cDMRusKKu5ZJKPUYSJwICTKZrNKHA2EbSP0Tu0+6B/emsYNHZyn6K8g==";
4028
4028
+
};
4029
4029
+
};
3922
4030
"is-obj-1.0.1" = {
3923
4031
name = "is-obj";
3924
4032
packageName = "is-obj";
···
3937
4045
sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==";
3938
4046
};
3939
4047
};
3940
3940
-
"is-object-1.0.1" = {
4048
4048
+
"is-object-1.0.2" = {
3941
4049
name = "is-object";
3942
4050
packageName = "is-object";
3943
3943
-
version = "1.0.1";
4051
4051
+
version = "1.0.2";
3944
4052
src = fetchurl {
3945
3945
-
url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
3946
3946
-
sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
4053
4053
+
url = "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz";
4054
4054
+
sha512 = "2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==";
3947
4055
};
3948
4056
};
3949
4057
"is-path-inside-1.0.1" = {
···
3991
4099
sha1 = "1d03dded53bd8db0f30c26e4f95d36fc7c87dc24";
3992
4100
};
3993
4101
};
3994
3994
-
"is-regex-1.1.1" = {
4102
4102
+
"is-regex-1.1.4" = {
3995
4103
name = "is-regex";
3996
4104
packageName = "is-regex";
3997
3997
-
version = "1.1.1";
4105
4105
+
version = "1.1.4";
3998
4106
src = fetchurl {
3999
3999
-
url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz";
4000
4000
-
sha512 = "1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==";
4107
4107
+
url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz";
4108
4108
+
sha512 = "kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==";
4001
4109
};
4002
4110
};
4003
4111
"is-retry-allowed-1.2.0" = {
···
4009
4117
sha512 = "RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==";
4010
4118
};
4011
4119
};
4120
4120
+
"is-shared-array-buffer-1.0.1" = {
4121
4121
+
name = "is-shared-array-buffer";
4122
4122
+
packageName = "is-shared-array-buffer";
4123
4123
+
version = "1.0.1";
4124
4124
+
src = fetchurl {
4125
4125
+
url = "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.1.tgz";
4126
4126
+
sha512 = "IU0NmyknYZN0rChcKhRO1X8LYz5Isj/Fsqh8NJOSf+N/hCOTwy29F32Ik7a+QszE63IdvmwdTPDd6cZ5pg4cwA==";
4127
4127
+
};
4128
4128
+
};
4012
4129
"is-stream-1.1.0" = {
4013
4130
name = "is-stream";
4014
4131
packageName = "is-stream";
···
4018
4135
sha1 = "12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44";
4019
4136
};
4020
4137
};
4021
4021
-
"is-stream-2.0.0" = {
4138
4138
+
"is-stream-2.0.1" = {
4022
4139
name = "is-stream";
4023
4140
packageName = "is-stream";
4024
4024
-
version = "2.0.0";
4141
4141
+
version = "2.0.1";
4025
4142
src = fetchurl {
4026
4026
-
url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz";
4027
4027
-
sha512 = "XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw==";
4143
4143
+
url = "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz";
4144
4144
+
sha512 = "hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==";
4145
4145
+
};
4146
4146
+
};
4147
4147
+
"is-string-1.0.7" = {
4148
4148
+
name = "is-string";
4149
4149
+
packageName = "is-string";
4150
4150
+
version = "1.0.7";
4151
4151
+
src = fetchurl {
4152
4152
+
url = "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz";
4153
4153
+
sha512 = "tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==";
4028
4154
};
4029
4155
};
4030
4030
-
"is-symbol-1.0.3" = {
4156
4156
+
"is-symbol-1.0.4" = {
4031
4157
name = "is-symbol";
4032
4158
packageName = "is-symbol";
4033
4033
-
version = "1.0.3";
4159
4159
+
version = "1.0.4";
4034
4160
src = fetchurl {
4035
4035
-
url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.3.tgz";
4036
4036
-
sha512 = "OwijhaRSgqvhm/0ZdAcXNZt9lYdKFpcRDT5ULUuYXPoT794UNOdU+gpT6Rzo7b4V2HUl/op6GqY894AZwv9faQ==";
4161
4161
+
url = "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz";
4162
4162
+
sha512 = "C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==";
4037
4163
};
4038
4164
};
4039
4165
"is-text-path-1.0.1" = {
···
4061
4187
src = fetchurl {
4062
4188
url = "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz";
4063
4189
sha1 = "4b0da1442104d1b336340e80797e865cf39f7d72";
4190
4190
+
};
4191
4191
+
};
4192
4192
+
"is-weakref-1.0.1" = {
4193
4193
+
name = "is-weakref";
4194
4194
+
packageName = "is-weakref";
4195
4195
+
version = "1.0.1";
4196
4196
+
src = fetchurl {
4197
4197
+
url = "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.1.tgz";
4198
4198
+
sha512 = "b2jKc2pQZjaeFYWEf7ScFj+Be1I+PXmlu572Q8coTXZ+LD/QQZ7ShPMst8h16riVgyXTQwUsFEl74mDvc/3MHQ==";
4064
4199
};
4065
4200
};
4066
4201
"is-windows-1.0.2" = {
···
4135
4270
sha512 = "8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==";
4136
4271
};
4137
4272
};
4138
4138
-
"istanbul-lib-coverage-3.0.0" = {
4273
4273
+
"istanbul-lib-coverage-3.2.0" = {
4139
4274
name = "istanbul-lib-coverage";
4140
4275
packageName = "istanbul-lib-coverage";
4141
4141
-
version = "3.0.0";
4276
4276
+
version = "3.2.0";
4142
4277
src = fetchurl {
4143
4143
-
url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz";
4144
4144
-
sha512 = "UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg==";
4278
4278
+
url = "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz";
4279
4279
+
sha512 = "eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==";
4145
4280
};
4146
4281
};
4147
4282
"istanbul-lib-hook-3.0.0" = {
···
4189
4324
sha512 = "wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==";
4190
4325
};
4191
4326
};
4192
4192
-
"istanbul-lib-source-maps-4.0.0" = {
4327
4327
+
"istanbul-lib-source-maps-4.0.1" = {
4193
4328
name = "istanbul-lib-source-maps";
4194
4329
packageName = "istanbul-lib-source-maps";
4195
4195
-
version = "4.0.0";
4330
4330
+
version = "4.0.1";
4196
4331
src = fetchurl {
4197
4197
-
url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.0.tgz";
4198
4198
-
sha512 = "c16LpFRkR8vQXyHZ5nLpY35JZtzj1PQY1iZmesUbf1FZHbIupcWfjgOXBY9YHkLEQ6puz1u4Dgj6qmU/DisrZg==";
4332
4332
+
url = "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz";
4333
4333
+
sha512 = "n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==";
4199
4334
};
4200
4335
};
4201
4201
-
"istanbul-reports-3.0.2" = {
4336
4336
+
"istanbul-reports-3.0.5" = {
4202
4337
name = "istanbul-reports";
4203
4338
packageName = "istanbul-reports";
4204
4204
-
version = "3.0.2";
4339
4339
+
version = "3.0.5";
4205
4340
src = fetchurl {
4206
4206
-
url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz";
4207
4207
-
sha512 = "9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw==";
4341
4341
+
url = "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.5.tgz";
4342
4342
+
sha512 = "5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ==";
4208
4343
};
4209
4344
};
4210
4345
"java-properties-1.0.2" = {
···
4279
4414
sha1 = "1296a2d58fd45f19a0f6ce01d65701e2c735b6eb";
4280
4415
};
4281
4416
};
4282
4282
-
"json5-2.1.3" = {
4417
4417
+
"json5-2.2.0" = {
4283
4418
name = "json5";
4284
4419
packageName = "json5";
4285
4285
-
version = "2.1.3";
4420
4420
+
version = "2.2.0";
4286
4421
src = fetchurl {
4287
4287
-
url = "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz";
4288
4288
-
sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==";
4422
4422
+
url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz";
4423
4423
+
sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==";
4289
4424
};
4290
4425
};
4291
4426
"jsonfile-4.0.0" = {
···
4315
4450
sha1 = "3f4dae4a91fac315f71062f8521cc239f1366280";
4316
4451
};
4317
4452
};
4318
4318
-
"just-extend-4.1.0" = {
4453
4453
+
"just-extend-4.2.1" = {
4319
4454
name = "just-extend";
4320
4455
packageName = "just-extend";
4321
4321
-
version = "4.1.0";
4456
4456
+
version = "4.2.1";
4322
4457
src = fetchurl {
4323
4323
-
url = "https://registry.npmjs.org/just-extend/-/just-extend-4.1.0.tgz";
4324
4324
-
sha512 = "ApcjaOdVTJ7y4r08xI5wIqpvwS48Q0PBG4DJROcEkH1f8MdAiNFyFxz3xoL0LWAVwjrwPYZdVHHxhRHcx/uGLA==";
4458
4458
+
url = "https://registry.npmjs.org/just-extend/-/just-extend-4.2.1.tgz";
4459
4459
+
sha512 = "g3UB796vUFIY90VIv/WX3L2c8CS2MdWUww3CNrYmqza1Fg0DURc2K/O4YrnklBdQarSJ/y8JnJYDGc+1iumQjg==";
4325
4460
};
4326
4461
};
4327
4462
"kind-of-3.2.2" = {
···
4441
4576
sha512 = "t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==";
4442
4577
};
4443
4578
};
4444
4444
-
"lodash-4.17.20" = {
4579
4579
+
"lodash-4.17.21" = {
4445
4580
name = "lodash";
4446
4581
packageName = "lodash";
4447
4447
-
version = "4.17.20";
4582
4582
+
version = "4.17.21";
4448
4583
src = fetchurl {
4449
4449
-
url = "https://registry.npmjs.org/lodash/-/lodash-4.17.20.tgz";
4450
4450
-
sha512 = "PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA==";
4584
4584
+
url = "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz";
4585
4585
+
sha512 = "v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==";
4451
4586
};
4452
4587
};
4453
4588
"lodash._baseclone-4.5.7" = {
···
4558
4693
sha1 = "d8757b1da807dde24816b0d6a84bea1a76230b23";
4559
4694
};
4560
4695
};
4561
4561
-
"lodash.toarray-4.4.0" = {
4562
4562
-
name = "lodash.toarray";
4563
4563
-
packageName = "lodash.toarray";
4564
4564
-
version = "4.4.0";
4565
4565
-
src = fetchurl {
4566
4566
-
url = "https://registry.npmjs.org/lodash.toarray/-/lodash.toarray-4.4.0.tgz";
4567
4567
-
sha1 = "24c4bfcd6b2fba38bfd0594db1179d8e9b656561";
4568
4568
-
};
4569
4569
-
};
4570
4696
"lodash.uniq-4.5.0" = {
4571
4697
name = "lodash.uniq";
4572
4698
packageName = "lodash.uniq";
···
4657
4783
sha512 = "sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==";
4658
4784
};
4659
4785
};
4660
4660
-
"macos-release-2.4.1" = {
4786
4786
+
"lru-cache-6.0.0" = {
4787
4787
+
name = "lru-cache";
4788
4788
+
packageName = "lru-cache";
4789
4789
+
version = "6.0.0";
4790
4790
+
src = fetchurl {
4791
4791
+
url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz";
4792
4792
+
sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==";
4793
4793
+
};
4794
4794
+
};
4795
4795
+
"macos-release-2.5.0" = {
4661
4796
name = "macos-release";
4662
4797
packageName = "macos-release";
4663
4663
-
version = "2.4.1";
4798
4798
+
version = "2.5.0";
4664
4799
src = fetchurl {
4665
4665
-
url = "https://registry.npmjs.org/macos-release/-/macos-release-2.4.1.tgz";
4666
4666
-
sha512 = "H/QHeBIN1fIGJX517pvK8IEK53yQOW7YcEI55oYtgjDdoCQQz7eJS94qt5kNrscReEyuD/JcdFCm2XBEcGOITg==";
4800
4800
+
url = "https://registry.npmjs.org/macos-release/-/macos-release-2.5.0.tgz";
4801
4801
+
sha512 = "EIgv+QZ9r+814gjJj0Bt5vSLJLzswGmSUbUpbi9AIr/fsN2IWFBl2NucV9PAiek+U1STK468tEkxmVYUtuAN3g==";
4667
4802
};
4668
4803
};
4669
4804
"make-dir-1.3.0" = {
···
4693
4828
sha512 = "g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==";
4694
4829
};
4695
4830
};
4831
4831
+
"make-error-1.3.6" = {
4832
4832
+
name = "make-error";
4833
4833
+
packageName = "make-error";
4834
4834
+
version = "1.3.6";
4835
4835
+
src = fetchurl {
4836
4836
+
url = "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz";
4837
4837
+
sha512 = "s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==";
4838
4838
+
};
4839
4839
+
};
4696
4840
"manage-path-2.0.0" = {
4697
4841
name = "manage-path";
4698
4842
packageName = "manage-path";
···
4729
4873
sha1 = "d933ceb9205d82bdcf4886f6742bdc2b4dea146d";
4730
4874
};
4731
4875
};
4732
4732
-
"map-obj-4.1.0" = {
4876
4876
+
"map-obj-4.3.0" = {
4733
4877
name = "map-obj";
4734
4878
packageName = "map-obj";
4735
4735
-
version = "4.1.0";
4879
4879
+
version = "4.3.0";
4736
4880
src = fetchurl {
4737
4737
-
url = "https://registry.npmjs.org/map-obj/-/map-obj-4.1.0.tgz";
4738
4738
-
sha512 = "glc9y00wgtwcDmp7GaE/0b0OnxpNJsVf3ael/An6Fe2Q51LLwN1er6sdomLRzz5h0+yMpiYLhWYF5R7HeqVd4g==";
4881
4881
+
url = "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz";
4882
4882
+
sha512 = "hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==";
4739
4883
};
4740
4884
};
4741
4885
"map-visit-1.0.0" = {
···
4747
4891
sha1 = "ecdca8f13144e660f1b5bd41f12f3479d98dfb8f";
4748
4892
};
4749
4893
};
4750
4750
-
"marked-0.6.3" = {
4894
4894
+
"marked-0.7.0" = {
4751
4895
name = "marked";
4752
4896
packageName = "marked";
4753
4753
-
version = "0.6.3";
4897
4897
+
version = "0.7.0";
4754
4898
src = fetchurl {
4755
4755
-
url = "https://registry.npmjs.org/marked/-/marked-0.6.3.tgz";
4756
4756
-
sha512 = "Fqa7eq+UaxfMriqzYLayfqAE40WN03jf+zHjT18/uXNuzjq3TY0XTbrAoPeqSJrAmPz11VuUA+kBPYOhHt9oOQ==";
4899
4899
+
url = "https://registry.npmjs.org/marked/-/marked-0.7.0.tgz";
4900
4900
+
sha512 = "c+yYdCZJQrsRjTPhUx7VKkApw9bwDkNbHUKo1ovgcfDjb2kc8rLuRbIFyXL5WOEUwzSSKo3IXpph2K6DqB/KZg==";
4757
4901
};
4758
4902
};
4759
4903
"marked-terminal-3.3.0" = {
···
4783
4927
sha512 = "qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==";
4784
4928
};
4785
4929
};
4786
4786
-
"meow-7.1.1" = {
4930
4930
+
"meow-8.1.2" = {
4787
4931
name = "meow";
4788
4932
packageName = "meow";
4789
4789
-
version = "7.1.1";
4933
4933
+
version = "8.1.2";
4790
4934
src = fetchurl {
4791
4791
-
url = "https://registry.npmjs.org/meow/-/meow-7.1.1.tgz";
4792
4792
-
sha512 = "GWHvA5QOcS412WCo8vwKDlTelGLsCGBVevQB5Kva961rmNfun0PCbv5+xta2kUMFJyR8/oWnn7ddeKdosbAPbA==";
4935
4935
+
url = "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz";
4936
4936
+
sha512 = "r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==";
4793
4937
};
4794
4938
};
4795
4795
-
"merge-1.2.1" = {
4939
4939
+
"merge-2.1.1" = {
4796
4940
name = "merge";
4797
4941
packageName = "merge";
4798
4798
-
version = "1.2.1";
4942
4942
+
version = "2.1.1";
4799
4943
src = fetchurl {
4800
4800
-
url = "https://registry.npmjs.org/merge/-/merge-1.2.1.tgz";
4801
4801
-
sha512 = "VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==";
4944
4944
+
url = "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz";
4945
4945
+
sha512 = "jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==";
4802
4946
};
4803
4947
};
4804
4948
"merge-descriptors-1.0.1" = {
···
4837
4981
sha512 = "MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==";
4838
4982
};
4839
4983
};
4840
4840
-
"micromatch-4.0.2" = {
4984
4984
+
"micromatch-4.0.4" = {
4841
4985
name = "micromatch";
4842
4986
packageName = "micromatch";
4843
4843
-
version = "4.0.2";
4987
4987
+
version = "4.0.4";
4844
4988
src = fetchurl {
4845
4845
-
url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz";
4846
4846
-
sha512 = "y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q==";
4989
4989
+
url = "https://registry.npmjs.org/micromatch/-/micromatch-4.0.4.tgz";
4990
4990
+
sha512 = "pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg==";
4847
4991
};
4848
4992
};
4849
4993
"mime-1.2.11" = {
···
4855
4999
sha1 = "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10";
4856
5000
};
4857
5001
};
4858
4858
-
"mime-2.4.6" = {
5002
5002
+
"mime-2.5.2" = {
4859
5003
name = "mime";
4860
5004
packageName = "mime";
4861
4861
-
version = "2.4.6";
5005
5005
+
version = "2.5.2";
4862
5006
src = fetchurl {
4863
4863
-
url = "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz";
4864
4864
-
sha512 = "RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==";
5007
5007
+
url = "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz";
5008
5008
+
sha512 = "tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==";
4865
5009
};
4866
5010
};
4867
5011
"mime-types-1.0.2" = {
···
4963
5107
sha512 = "qwfFgY+7EKAAUAdv7VYMZQknI7YJSGesxHyhn6qD52DV8UcSZs5XwCifcZGMVIE4a5fbmhvbotxC0DLQ0oKohQ==";
4964
5108
};
4965
5109
};
4966
4966
-
"mocha-junit-reporter-1.23.3" = {
5110
5110
+
"mocha-junit-reporter-1.18.0" = {
4967
5111
name = "mocha-junit-reporter";
4968
5112
packageName = "mocha-junit-reporter";
4969
4969
-
version = "1.23.3";
5113
5113
+
version = "1.18.0";
4970
5114
src = fetchurl {
4971
4971
-
url = "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-1.23.3.tgz";
4972
4972
-
sha512 = "ed8LqbRj1RxZfjt/oC9t12sfrWsjZ3gNnbhV1nuj9R/Jb5/P3Xb4duv2eCfCDMYH+fEu0mqca7m4wsiVjsxsvA==";
5115
5115
+
url = "https://registry.npmjs.org/mocha-junit-reporter/-/mocha-junit-reporter-1.18.0.tgz";
5116
5116
+
sha512 = "y3XuqKa2+HRYtg0wYyhW/XsLm2Ps+pqf9HaTAt7+MVUAKFJaNAHOrNseTZo9KCxjfIbxUWwckP5qCDDPUmjSWA==";
4973
5117
};
4974
5118
};
4975
5119
"mocha-multi-reporters-1.1.7" = {
···
5026
5170
sha512 = "sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==";
5027
5171
};
5028
5172
};
5173
5173
+
"ms-2.1.3" = {
5174
5174
+
name = "ms";
5175
5175
+
packageName = "ms";
5176
5176
+
version = "2.1.3";
5177
5177
+
src = fetchurl {
5178
5178
+
url = "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz";
5179
5179
+
sha512 = "6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==";
5180
5180
+
};
5181
5181
+
};
5029
5182
"mute-stream-0.0.7" = {
5030
5183
name = "mute-stream";
5031
5184
packageName = "mute-stream";
···
5035
5188
sha1 = "3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab";
5036
5189
};
5037
5190
};
5038
5038
-
"nan-2.14.1" = {
5191
5191
+
"nan-2.15.0" = {
5039
5192
name = "nan";
5040
5193
packageName = "nan";
5041
5041
-
version = "2.14.1";
5194
5194
+
version = "2.15.0";
5042
5195
src = fetchurl {
5043
5043
-
url = "https://registry.npmjs.org/nan/-/nan-2.14.1.tgz";
5044
5044
-
sha512 = "isWHgVjnFjh2x2yuJ/tj3JbwoHu3UC2dX5G/88Cm24yB6YopVgxvBObDY7n5xW6ExmFhJpSEQqFPvq9zaXc8Jw==";
5196
5196
+
url = "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz";
5197
5197
+
sha512 = "8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==";
5045
5198
};
5046
5199
};
5047
5200
"nanomatch-1.2.13" = {
···
5089
5242
sha512 = "Ymbac/94xeIrMf59REBPOv0thr+CJVFMhrlAkW/gjCIE58BGQdCj0x7KRCb3yz+Ga2Rz3E9XXSvUyyxqqhjQAQ==";
5090
5243
};
5091
5244
};
5092
5092
-
"node-emoji-1.10.0" = {
5245
5245
+
"node-emoji-1.11.0" = {
5093
5246
name = "node-emoji";
5094
5247
packageName = "node-emoji";
5095
5095
-
version = "1.10.0";
5248
5248
+
version = "1.11.0";
5096
5249
src = fetchurl {
5097
5097
-
url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.10.0.tgz";
5098
5098
-
sha512 = "Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw==";
5250
5250
+
url = "https://registry.npmjs.org/node-emoji/-/node-emoji-1.11.0.tgz";
5251
5251
+
sha512 = "wo2DpQkQp7Sjm2A0cq+sN7EHKO6Sl0ctXeBdFZrL9T9+UywORbufTcTZxom8YqpLQt/FqNMUkOpkZrJVYSKD3A==";
5099
5252
};
5100
5253
};
5101
5254
"node-environment-flags-1.0.5" = {
···
5107
5260
sha512 = "VNYPRfGfmZLx0Ye20jWzHUjyTW/c+6Wq+iLhDzUI4XmhrDd9l/FozXV3F2xOaXjvp0co0+v1YSR3CMP6g+VvLQ==";
5108
5261
};
5109
5262
};
5110
5110
-
"node-fetch-2.6.1" = {
5263
5263
+
"node-fetch-2.6.5" = {
5111
5264
name = "node-fetch";
5112
5265
packageName = "node-fetch";
5113
5113
-
version = "2.6.1";
5266
5266
+
version = "2.6.5";
5114
5267
src = fetchurl {
5115
5115
-
url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.1.tgz";
5116
5116
-
sha512 = "V4aYg89jEoVRxRb2fJdAg8FHvI7cEyYdVAh94HH0UIK8oJxUfkjlDQN9RbMx+bEjP7+ggMiFRprSti032Oipxw==";
5268
5268
+
url = "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz";
5269
5269
+
sha512 = "mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==";
5117
5270
};
5118
5271
};
5119
5272
"node-modules-regexp-1.0.0" = {
···
5134
5287
sha512 = "RM5oyBy45cLEoHqCeh+MNuFAxO0vTFBLskvQbOKnEE7YTTSN4tbN8QWDIPQ6L+WvKsB/qLEGpYe2ZZ9d4W9OIQ==";
5135
5288
};
5136
5289
};
5137
5137
-
"node-releases-1.1.61" = {
5290
5290
+
"node-releases-2.0.0" = {
5138
5291
name = "node-releases";
5139
5292
packageName = "node-releases";
5140
5140
-
version = "1.1.61";
5293
5293
+
version = "2.0.0";
5141
5294
src = fetchurl {
5142
5142
-
url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.61.tgz";
5143
5143
-
sha512 = "DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g==";
5295
5295
+
url = "https://registry.npmjs.org/node-releases/-/node-releases-2.0.0.tgz";
5296
5296
+
sha512 = "aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA==";
5144
5297
};
5145
5298
};
5146
5299
"node-uuid-1.4.8" = {
···
5177
5330
src = fetchurl {
5178
5331
url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz";
5179
5332
sha512 = "/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==";
5333
5333
+
};
5334
5334
+
};
5335
5335
+
"normalize-package-data-3.0.3" = {
5336
5336
+
name = "normalize-package-data";
5337
5337
+
packageName = "normalize-package-data";
5338
5338
+
version = "3.0.3";
5339
5339
+
src = fetchurl {
5340
5340
+
url = "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz";
5341
5341
+
sha512 = "p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==";
5180
5342
};
5181
5343
};
5182
5344
"normalize-path-2.1.1" = {
···
5197
5359
sha512 = "6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==";
5198
5360
};
5199
5361
};
5200
5200
-
"normalize-url-4.5.0" = {
5362
5362
+
"normalize-url-4.5.1" = {
5201
5363
name = "normalize-url";
5202
5364
packageName = "normalize-url";
5203
5203
-
version = "4.5.0";
5365
5365
+
version = "4.5.1";
5204
5366
src = fetchurl {
5205
5205
-
url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.0.tgz";
5206
5206
-
sha512 = "2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==";
5367
5367
+
url = "https://registry.npmjs.org/normalize-url/-/normalize-url-4.5.1.tgz";
5368
5368
+
sha512 = "9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==";
5207
5369
};
5208
5370
};
5209
5209
-
"npm-6.14.8" = {
5371
5371
+
"npm-6.14.15" = {
5210
5372
name = "npm";
5211
5373
packageName = "npm";
5212
5212
-
version = "6.14.8";
5374
5374
+
version = "6.14.15";
5213
5375
src = fetchurl {
5214
5214
-
url = "https://registry.npmjs.org/npm/-/npm-6.14.8.tgz";
5215
5215
-
sha512 = "HBZVBMYs5blsj94GTeQZel7s9odVuuSUHy1+AlZh7rPVux1os2ashvEGLy/STNK7vUjbrCg5Kq9/GXisJgdf6A==";
5376
5376
+
url = "https://registry.npmjs.org/npm/-/npm-6.14.15.tgz";
5377
5377
+
sha512 = "dkcQc4n+DiJAMYG2haNAMyJbmuvevjXz+WC9dCUzodw8EovwTIc6CATSsTEplCY6c0jG4OshxFGFJsrnKJguWA==";
5216
5378
};
5217
5379
};
5218
5380
"npm-run-path-2.0.2" = {
···
5269
5431
sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
5270
5432
};
5271
5433
};
5272
5272
-
"object-inspect-1.8.0" = {
5434
5434
+
"object-inspect-1.11.0" = {
5273
5435
name = "object-inspect";
5274
5436
packageName = "object-inspect";
5275
5275
-
version = "1.8.0";
5437
5437
+
version = "1.11.0";
5276
5438
src = fetchurl {
5277
5277
-
url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz";
5278
5278
-
sha512 = "jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==";
5439
5439
+
url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.11.0.tgz";
5440
5440
+
sha512 = "jp7ikS6Sd3GxQfZJPyH3cjcbJF6GZPClgdV+EFygjFLQ5FmW/dRUnTd9PQ9k0JhoNDabWFbpF1yCdSWCC6gexg==";
5279
5441
};
5280
5442
};
5281
5443
"object-keys-1.1.1" = {
···
5305
5467
sha512 = "exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==";
5306
5468
};
5307
5469
};
5308
5308
-
"object.getownpropertydescriptors-2.1.0" = {
5470
5470
+
"object.assign-4.1.2" = {
5471
5471
+
name = "object.assign";
5472
5472
+
packageName = "object.assign";
5473
5473
+
version = "4.1.2";
5474
5474
+
src = fetchurl {
5475
5475
+
url = "https://registry.npmjs.org/object.assign/-/object.assign-4.1.2.tgz";
5476
5476
+
sha512 = "ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==";
5477
5477
+
};
5478
5478
+
};
5479
5479
+
"object.getownpropertydescriptors-2.1.3" = {
5309
5480
name = "object.getownpropertydescriptors";
5310
5481
packageName = "object.getownpropertydescriptors";
5311
5311
-
version = "2.1.0";
5482
5482
+
version = "2.1.3";
5312
5483
src = fetchurl {
5313
5313
-
url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz";
5314
5314
-
sha512 = "Z53Oah9A3TdLoblT7VKJaTDdXdT+lQO+cNpKVnya5JDe9uLvzu1YyY1yFDFrcxrlRgWrEFH0jJtD/IbuwjcEVg==";
5484
5484
+
url = "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.3.tgz";
5485
5485
+
sha512 = "VdDoCwvJI4QdC6ndjpqFmoL3/+HxffFBbcJzKi5hwLLqqx3mdbedRpfZDdK0SrOSauj8X4GzBvnDZl4vTN7dOw==";
5315
5486
};
5316
5487
};
5317
5488
"object.pick-1.3.0" = {
···
5521
5692
sha512 = "2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==";
5522
5693
};
5523
5694
};
5524
5524
-
"p-retry-4.2.0" = {
5695
5695
+
"p-retry-4.6.1" = {
5525
5696
name = "p-retry";
5526
5697
packageName = "p-retry";
5527
5527
-
version = "4.2.0";
5698
5698
+
version = "4.6.1";
5528
5699
src = fetchurl {
5529
5529
-
url = "https://registry.npmjs.org/p-retry/-/p-retry-4.2.0.tgz";
5530
5530
-
sha512 = "jPH38/MRh263KKcq0wBNOGFJbm+U6784RilTmHjB/HM9kH9V8WlCpVUcdOmip9cjXOh6MxZ5yk1z2SjDUJfWmA==";
5700
5700
+
url = "https://registry.npmjs.org/p-retry/-/p-retry-4.6.1.tgz";
5701
5701
+
sha512 = "e2xXGNhZOZ0lfgR9kL34iGlU8N/KO0xZnQxVEwdeOvpqNDQfdnxIYizvWtK8RglUa3bGqI8g0R/BdfzLMxRkiA==";
5531
5702
};
5532
5703
};
5533
5704
"p-try-1.0.0" = {
···
5593
5764
sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
5594
5765
};
5595
5766
};
5596
5596
-
"parse-json-5.1.0" = {
5767
5767
+
"parse-json-5.2.0" = {
5597
5768
name = "parse-json";
5598
5769
packageName = "parse-json";
5599
5599
-
version = "5.1.0";
5770
5770
+
version = "5.2.0";
5600
5771
src = fetchurl {
5601
5601
-
url = "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz";
5602
5602
-
sha512 = "+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==";
5772
5772
+
url = "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz";
5773
5773
+
sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==";
5603
5774
};
5604
5775
};
5605
5776
"parse-passwd-1.0.0" = {
···
5683
5854
sha512 = "ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==";
5684
5855
};
5685
5856
};
5686
5686
-
"path-parse-1.0.6" = {
5857
5857
+
"path-parse-1.0.7" = {
5687
5858
name = "path-parse";
5688
5859
packageName = "path-parse";
5689
5689
-
version = "1.0.6";
5860
5860
+
version = "1.0.7";
5690
5861
src = fetchurl {
5691
5691
-
url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz";
5692
5692
-
sha512 = "GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==";
5862
5862
+
url = "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz";
5863
5863
+
sha512 = "LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==";
5693
5864
};
5694
5865
};
5695
5866
"path-to-regexp-1.8.0" = {
···
5719
5890
sha512 = "gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==";
5720
5891
};
5721
5892
};
5722
5722
-
"pathval-1.1.0" = {
5893
5893
+
"pathval-1.1.1" = {
5723
5894
name = "pathval";
5724
5895
packageName = "pathval";
5725
5725
-
version = "1.1.0";
5896
5896
+
version = "1.1.1";
5897
5897
+
src = fetchurl {
5898
5898
+
url = "https://registry.npmjs.org/pathval/-/pathval-1.1.1.tgz";
5899
5899
+
sha512 = "Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==";
5900
5900
+
};
5901
5901
+
};
5902
5902
+
"picocolors-1.0.0" = {
5903
5903
+
name = "picocolors";
5904
5904
+
packageName = "picocolors";
5905
5905
+
version = "1.0.0";
5726
5906
src = fetchurl {
5727
5727
-
url = "https://registry.npmjs.org/pathval/-/pathval-1.1.0.tgz";
5728
5728
-
sha1 = "b942e6d4bde653005ef6b71361def8727d0645e0";
5907
5907
+
url = "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz";
5908
5908
+
sha512 = "1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==";
5729
5909
};
5730
5910
};
5731
5731
-
"picomatch-2.2.2" = {
5911
5911
+
"picomatch-2.3.0" = {
5732
5912
name = "picomatch";
5733
5913
packageName = "picomatch";
5734
5734
-
version = "2.2.2";
5914
5914
+
version = "2.3.0";
5735
5915
src = fetchurl {
5736
5736
-
url = "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz";
5737
5737
-
sha512 = "q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg==";
5916
5916
+
url = "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz";
5917
5917
+
sha512 = "lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==";
5738
5918
};
5739
5919
};
5740
5920
"pify-3.0.0" = {
···
5827
6007
sha512 = "1WsPDsUSMmZH5LeMLegqkPDrsGgsWwk1Exipy2hvB0o/F0ASzbpIctSCcZIK1ykJvtTJULEH+20WOFjMvGnCTg==";
5828
6008
};
5829
6009
};
5830
5830
-
"proxyquire-2.1.3" = {
6010
6010
+
"proxyquire-2.1.0" = {
5831
6011
name = "proxyquire";
5832
6012
packageName = "proxyquire";
5833
5833
-
version = "2.1.3";
6013
6013
+
version = "2.1.0";
5834
6014
src = fetchurl {
5835
5835
-
url = "https://registry.npmjs.org/proxyquire/-/proxyquire-2.1.3.tgz";
5836
5836
-
sha512 = "BQWfCqYM+QINd+yawJz23tbBM40VIGXOdDw3X344KcclI/gtBbdWF6SlQ4nK/bYhF9d27KYug9WzljHC6B9Ysg==";
6015
6015
+
url = "https://registry.npmjs.org/proxyquire/-/proxyquire-2.1.0.tgz";
6016
6016
+
sha512 = "kptdFArCfGRtQFv3Qwjr10lwbEV0TBJYvfqzhwucyfEXqVgmnAkyEw/S3FYzR5HI9i5QOq4rcqQjZ6AlknlCDQ==";
5837
6017
};
5838
6018
};
5839
6019
"pseudomap-1.0.2" = {
···
5899
6079
sha1 = "19b57ff24dc2a99ce1f8bdf6afcda59f8ef61f88";
5900
6080
};
5901
6081
};
6082
6082
+
"queue-microtask-1.2.3" = {
6083
6083
+
name = "queue-microtask";
6084
6084
+
packageName = "queue-microtask";
6085
6085
+
version = "1.2.3";
6086
6086
+
src = fetchurl {
6087
6087
+
url = "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz";
6088
6088
+
sha512 = "NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==";
6089
6089
+
};
6090
6090
+
};
5902
6091
"quick-lru-4.0.1" = {
5903
6092
name = "quick-lru";
5904
6093
packageName = "quick-lru";
···
5944
6133
sha512 = "6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==";
5945
6134
};
5946
6135
};
5947
5947
-
"read-pkg-up-6.0.0" = {
5948
5948
-
name = "read-pkg-up";
5949
5949
-
packageName = "read-pkg-up";
5950
5950
-
version = "6.0.0";
5951
5951
-
src = fetchurl {
5952
5952
-
url = "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-6.0.0.tgz";
5953
5953
-
sha512 = "odtTvLl+EXo1eTsMnoUHRmg/XmXdTkwXVxy4VFE9Kp6cCq7b3l7QMdBndND3eAFzrbSAXC/WCUOQQ9rLjifKZw==";
5954
5954
-
};
5955
5955
-
};
5956
6136
"read-pkg-up-7.0.1" = {
5957
6137
name = "read-pkg-up";
5958
6138
packageName = "read-pkg-up";
···
5980
6160
sha512 = "Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==";
5981
6161
};
5982
6162
};
6163
6163
+
"readable-stream-3.6.0" = {
6164
6164
+
name = "readable-stream";
6165
6165
+
packageName = "readable-stream";
6166
6166
+
version = "3.6.0";
6167
6167
+
src = fetchurl {
6168
6168
+
url = "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz";
6169
6169
+
sha512 = "BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==";
6170
6170
+
};
6171
6171
+
};
5983
6172
"readdirp-2.2.1" = {
5984
6173
name = "readdirp";
5985
6174
packageName = "readdirp";
···
6007
6196
sha1 = "8984b5815d99cb220469c99eeeffe38913e6cc0b";
6008
6197
};
6009
6198
};
6010
6010
-
"regenerate-1.4.1" = {
6199
6199
+
"regenerate-1.4.2" = {
6011
6200
name = "regenerate";
6012
6201
packageName = "regenerate";
6013
6013
-
version = "1.4.1";
6202
6202
+
version = "1.4.2";
6014
6203
src = fetchurl {
6015
6015
-
url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.1.tgz";
6016
6016
-
sha512 = "j2+C8+NtXQgEKWk49MMP5P/u2GhnahTtVkRIHr5R5lVRlbKvmQ+oS+A5aLKWp2ma5VkT8sh6v+v4hbH0YHR66A==";
6204
6204
+
url = "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz";
6205
6205
+
sha512 = "zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==";
6017
6206
};
6018
6207
};
6019
6019
-
"regenerate-unicode-properties-8.2.0" = {
6208
6208
+
"regenerate-unicode-properties-9.0.0" = {
6020
6209
name = "regenerate-unicode-properties";
6021
6210
packageName = "regenerate-unicode-properties";
6022
6022
-
version = "8.2.0";
6211
6211
+
version = "9.0.0";
6023
6212
src = fetchurl {
6024
6024
-
url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz";
6025
6025
-
sha512 = "F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA==";
6213
6213
+
url = "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-9.0.0.tgz";
6214
6214
+
sha512 = "3E12UeNSPfjrgwjkR81m5J7Aw/T55Tu7nUyZVQYCKEOs+2dkxEY+DpPtZzO4YruuiPb7NkYLVcyJC4+zCbk5pA==";
6026
6215
};
6027
6216
};
6028
6028
-
"regenerator-runtime-0.13.7" = {
6217
6217
+
"regenerator-runtime-0.13.9" = {
6029
6218
name = "regenerator-runtime";
6030
6219
packageName = "regenerator-runtime";
6031
6031
-
version = "0.13.7";
6220
6220
+
version = "0.13.9";
6032
6221
src = fetchurl {
6033
6033
-
url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz";
6034
6034
-
sha512 = "a54FxoJDIr27pgf7IgeQGxmqUNYrcV338lf/6gH456HZ/PhX+5BcwHXG9ajESmwe6WRO0tAzRUrRmNONWgkrew==";
6222
6222
+
url = "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz";
6223
6223
+
sha512 = "p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==";
6035
6224
};
6036
6225
};
6037
6226
"regenerator-transform-0.14.5" = {
···
6052
6241
sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
6053
6242
};
6054
6243
};
6055
6055
-
"regexpu-core-4.7.0" = {
6244
6244
+
"regexpu-core-4.8.0" = {
6056
6245
name = "regexpu-core";
6057
6246
packageName = "regexpu-core";
6058
6058
-
version = "4.7.0";
6247
6247
+
version = "4.8.0";
6059
6248
src = fetchurl {
6060
6060
-
url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.7.0.tgz";
6061
6061
-
sha512 = "TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ==";
6249
6249
+
url = "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.8.0.tgz";
6250
6250
+
sha512 = "1F6bYsoYiz6is+oz70NWur2Vlh9KWtswuRuzJOfeYUrfPX2o8n74AnUVaOGDbUqVGO9fNHu48/pjJO4sNVwsOg==";
6062
6251
};
6063
6252
};
6064
6253
"registry-auth-token-3.4.0" = {
···
6070
6259
sha512 = "4LM6Fw8eBQdwMYcES4yTnn2TqIasbXuwDx3um+QRs7S55aMKCBKBxvPXl2RiUjHwuJLTyYfxSpmfSAjQpcuP+A==";
6071
6260
};
6072
6261
};
6073
6073
-
"registry-auth-token-4.2.0" = {
6262
6262
+
"registry-auth-token-4.2.1" = {
6074
6263
name = "registry-auth-token";
6075
6264
packageName = "registry-auth-token";
6076
6076
-
version = "4.2.0";
6265
6265
+
version = "4.2.1";
6077
6266
src = fetchurl {
6078
6078
-
url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.0.tgz";
6079
6079
-
sha512 = "P+lWzPrsgfN+UEpDS3U8AQKg/UjZX6mQSJueZj3EK+vNESoqBSpBUD3gmu4sF9lOsjXWjF11dQKUqemf3veq1w==";
6267
6267
+
url = "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-4.2.1.tgz";
6268
6268
+
sha512 = "6gkSb4U6aWJB4SF2ZvLb76yCBjcvufXBqvvEx1HbmKPkutswjW1xNVRY0+daljIYRbogN7O0etYSlbiaEQyMyw==";
6080
6269
};
6081
6270
};
6082
6271
"registry-url-3.1.0" = {
···
6097
6286
sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==";
6098
6287
};
6099
6288
};
6100
6100
-
"regjsparser-0.6.4" = {
6289
6289
+
"regjsparser-0.7.0" = {
6101
6290
name = "regjsparser";
6102
6291
packageName = "regjsparser";
6103
6103
-
version = "0.6.4";
6292
6292
+
version = "0.7.0";
6104
6293
src = fetchurl {
6105
6105
-
url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz";
6106
6106
-
sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==";
6294
6294
+
url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.7.0.tgz";
6295
6295
+
sha512 = "A4pcaORqmNMDVwUjWoTzuhwMGpP+NykpfqAsEgI1FSH/EzC7lrN5TMd+kN8YCovX+jMpu8eaqXgXPCa0g8FQNQ==";
6107
6296
};
6108
6297
};
6109
6298
"release-zalgo-1.0.0" = {
···
6124
6313
sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
6125
6314
};
6126
6315
};
6127
6127
-
"repeat-element-1.1.3" = {
6316
6316
+
"repeat-element-1.1.4" = {
6128
6317
name = "repeat-element";
6129
6318
packageName = "repeat-element";
6130
6130
-
version = "1.1.3";
6319
6319
+
version = "1.1.4";
6131
6320
src = fetchurl {
6132
6132
-
url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz";
6133
6133
-
sha512 = "ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==";
6321
6321
+
url = "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz";
6322
6322
+
sha512 = "LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==";
6134
6323
};
6135
6324
};
6136
6325
"repeat-string-1.6.1" = {
···
6178
6367
sha512 = "NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==";
6179
6368
};
6180
6369
};
6181
6181
-
"resolve-1.17.0" = {
6370
6370
+
"resolve-1.20.0" = {
6182
6371
name = "resolve";
6183
6372
packageName = "resolve";
6184
6184
-
version = "1.17.0";
6373
6373
+
version = "1.20.0";
6185
6374
src = fetchurl {
6186
6186
-
url = "https://registry.npmjs.org/resolve/-/resolve-1.17.0.tgz";
6187
6187
-
sha512 = "ic+7JYiV8Vi2yzQGFWOkiZD5Z9z7O2Zhm9XMaTxdJExKasieFCr+yXZ/WmXsckHiKl12ar0y6XiXDx3m4RHn1w==";
6375
6375
+
url = "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz";
6376
6376
+
sha512 = "wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==";
6377
6377
+
};
6378
6378
+
};
6379
6379
+
"resolve-1.8.1" = {
6380
6380
+
name = "resolve";
6381
6381
+
packageName = "resolve";
6382
6382
+
version = "1.8.1";
6383
6383
+
src = fetchurl {
6384
6384
+
url = "https://registry.npmjs.org/resolve/-/resolve-1.8.1.tgz";
6385
6385
+
sha512 = "AicPrAC7Qu1JxPCZ9ZgCZlY35QgFnNqc+0LtbRNxnVw4TXvjQ72wnuL9JQcEBgXkI9JM8MsT9kaQoHcpCRJOYA==";
6188
6386
};
6189
6387
};
6190
6388
"resolve-dir-1.0.1" = {
···
6196
6394
sha1 = "79a40644c362be82f26effe739c9bb5382046f43";
6197
6395
};
6198
6396
};
6199
6199
-
"resolve-from-3.0.0" = {
6200
6200
-
name = "resolve-from";
6201
6201
-
packageName = "resolve-from";
6202
6202
-
version = "3.0.0";
6203
6203
-
src = fetchurl {
6204
6204
-
url = "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz";
6205
6205
-
sha1 = "b22c7af7d9d6881bc8b6e653335eebcb0a188748";
6206
6206
-
};
6207
6207
-
};
6208
6397
"resolve-from-4.0.0" = {
6209
6398
name = "resolve-from";
6210
6399
packageName = "resolve-from";
···
6268
6457
sha512 = "TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==";
6269
6458
};
6270
6459
};
6271
6271
-
"retry-0.12.0" = {
6460
6460
+
"retry-0.13.1" = {
6272
6461
name = "retry";
6273
6462
packageName = "retry";
6274
6274
-
version = "0.12.0";
6463
6463
+
version = "0.13.1";
6275
6464
src = fetchurl {
6276
6276
-
url = "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz";
6277
6277
-
sha1 = "1b42a6266a21f07421d1b0b54b7dc167b01c013b";
6465
6465
+
url = "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz";
6466
6466
+
sha512 = "XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==";
6278
6467
};
6279
6468
};
6280
6469
"reusify-1.0.4" = {
···
6313
6502
sha512 = "tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==";
6314
6503
};
6315
6504
};
6316
6316
-
"run-parallel-1.1.9" = {
6505
6505
+
"run-parallel-1.2.0" = {
6317
6506
name = "run-parallel";
6318
6507
packageName = "run-parallel";
6319
6319
-
version = "1.1.9";
6508
6508
+
version = "1.2.0";
6320
6509
src = fetchurl {
6321
6321
-
url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.9.tgz";
6322
6322
-
sha512 = "DEqnSRTDw/Tc3FXf49zedI638Z9onwUotBMiUFKmrO2sdFKIbXamXGQ3Axd4qgphxKB4kw/qP1w5kTxnfU1B9Q==";
6510
6510
+
url = "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz";
6511
6511
+
sha512 = "5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==";
6323
6512
};
6324
6513
};
6325
6325
-
"rxjs-6.6.3" = {
6514
6514
+
"rxjs-6.6.7" = {
6326
6515
name = "rxjs";
6327
6516
packageName = "rxjs";
6328
6328
-
version = "6.6.3";
6517
6517
+
version = "6.6.7";
6329
6518
src = fetchurl {
6330
6330
-
url = "https://registry.npmjs.org/rxjs/-/rxjs-6.6.3.tgz";
6331
6331
-
sha512 = "trsQc+xYYXZ3urjOiJOuCOa5N3jAZ3eiSpQB5hIT8zGlL2QfnHLJ2r7GMkBGuIausdJN1OneaI6gQlsqNHHmZQ==";
6519
6519
+
url = "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz";
6520
6520
+
sha512 = "hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==";
6332
6521
};
6333
6522
};
6334
6523
"safe-buffer-5.1.2" = {
···
6358
6547
sha512 = "YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==";
6359
6548
};
6360
6549
};
6361
6361
-
"semantic-release-15.13.18" = {
6550
6550
+
"semantic-release-15.14.0" = {
6362
6551
name = "semantic-release";
6363
6552
packageName = "semantic-release";
6364
6364
-
version = "15.13.18";
6553
6553
+
version = "15.14.0";
6365
6554
src = fetchurl {
6366
6366
-
url = "https://registry.npmjs.org/semantic-release/-/semantic-release-15.13.18.tgz";
6367
6367
-
sha512 = "JtfdrhF1zRm91nJH/Rg3taftbWGwktJqqrJJdbmZGKYx63cfC4PoaS0jxRifGJUdmmgW/Kxz8f5bhtB+p1bu8A==";
6555
6555
+
url = "https://registry.npmjs.org/semantic-release/-/semantic-release-15.14.0.tgz";
6556
6556
+
sha512 = "Cn43W35AOLY0RMcDbtwhJODJmWg6YCs1+R5jRQsTmmkEGzkV4B2F/QXkjVZpl4UbH91r93GGH0xhoq9kh7I5PA==";
6368
6557
};
6369
6558
};
6370
6559
"semver-5.7.1" = {
···
6394
6583
sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==";
6395
6584
};
6396
6585
};
6586
6586
+
"semver-7.3.5" = {
6587
6587
+
name = "semver";
6588
6588
+
packageName = "semver";
6589
6589
+
version = "7.3.5";
6590
6590
+
src = fetchurl {
6591
6591
+
url = "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz";
6592
6592
+
sha512 = "PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==";
6593
6593
+
};
6594
6594
+
};
6397
6595
"semver-diff-2.1.0" = {
6398
6596
name = "semver-diff";
6399
6597
packageName = "semver-diff";
···
6466
6664
sha512 = "7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==";
6467
6665
};
6468
6666
};
6469
6469
-
"signal-exit-3.0.3" = {
6667
6667
+
"side-channel-1.0.4" = {
6668
6668
+
name = "side-channel";
6669
6669
+
packageName = "side-channel";
6670
6670
+
version = "1.0.4";
6671
6671
+
src = fetchurl {
6672
6672
+
url = "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz";
6673
6673
+
sha512 = "q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==";
6674
6674
+
};
6675
6675
+
};
6676
6676
+
"signal-exit-3.0.5" = {
6470
6677
name = "signal-exit";
6471
6678
packageName = "signal-exit";
6472
6472
-
version = "3.0.3";
6679
6679
+
version = "3.0.5";
6473
6680
src = fetchurl {
6474
6474
-
url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz";
6475
6475
-
sha512 = "VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA==";
6681
6681
+
url = "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.5.tgz";
6682
6682
+
sha512 = "KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ==";
6476
6683
};
6477
6684
};
6478
6685
"signale-1.4.0" = {
···
6484
6691
sha512 = "iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==";
6485
6692
};
6486
6693
};
6487
6487
-
"sinon-6.3.5" = {
6694
6694
+
"sinon-6.3.4" = {
6488
6695
name = "sinon";
6489
6696
packageName = "sinon";
6490
6490
-
version = "6.3.5";
6697
6697
+
version = "6.3.4";
6491
6698
src = fetchurl {
6492
6492
-
url = "https://registry.npmjs.org/sinon/-/sinon-6.3.5.tgz";
6493
6493
-
sha512 = "xgoZ2gKjyVRcF08RrIQc+srnSyY1JDJtxu3Nsz07j1ffjgXoY6uPLf/qja6nDBZgzYYEovVkFryw2+KiZz11xQ==";
6699
6699
+
url = "https://registry.npmjs.org/sinon/-/sinon-6.3.4.tgz";
6700
6700
+
sha512 = "NIaR56Z1mefuRBXYrf4otqBxkWiKveX+fvqs3HzFq2b07HcgpkMgIwmQM/owNjNFAHkx0kJXW+Q0mDthiuslXw==";
6494
6701
};
6495
6702
};
6496
6703
"slash-2.0.0" = {
···
6574
6781
sha512 = "Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==";
6575
6782
};
6576
6783
};
6577
6577
-
"source-map-support-0.5.19" = {
6784
6784
+
"source-map-support-0.5.20" = {
6578
6785
name = "source-map-support";
6579
6786
packageName = "source-map-support";
6580
6580
-
version = "0.5.19";
6787
6787
+
version = "0.5.20";
6581
6788
src = fetchurl {
6582
6582
-
url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.19.tgz";
6583
6583
-
sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==";
6789
6789
+
url = "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.20.tgz";
6790
6790
+
sha512 = "n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw==";
6584
6791
};
6585
6792
};
6586
6586
-
"source-map-url-0.4.0" = {
6793
6793
+
"source-map-url-0.4.1" = {
6587
6794
name = "source-map-url";
6588
6795
packageName = "source-map-url";
6589
6589
-
version = "0.4.0";
6796
6796
+
version = "0.4.1";
6590
6797
src = fetchurl {
6591
6591
-
url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
6592
6592
-
sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
6798
6798
+
url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz";
6799
6799
+
sha512 = "cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==";
6593
6800
};
6594
6801
};
6595
6802
"spawn-command-0.0.2" = {
···
6655
6862
sha512 = "cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==";
6656
6863
};
6657
6864
};
6658
6658
-
"spdx-license-ids-3.0.5" = {
6865
6865
+
"spdx-license-ids-3.0.10" = {
6659
6866
name = "spdx-license-ids";
6660
6867
packageName = "spdx-license-ids";
6661
6661
-
version = "3.0.5";
6868
6868
+
version = "3.0.10";
6662
6869
src = fetchurl {
6663
6663
-
url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz";
6664
6664
-
sha512 = "J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==";
6870
6870
+
url = "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.10.tgz";
6871
6871
+
sha512 = "oie3/+gKf7QtpitB0LYLETe+k8SifzsX4KixvpOsbI6S0kRiRQ5MKOio8eMSAKQ17N06+wdEOXRiId+zOxo0hA==";
6665
6872
};
6666
6873
};
6667
6874
"split-0.2.10" = {
···
6700
6907
sha1 = "52e2e221d88c75f9a73f90556e263ff96772b314";
6701
6908
};
6702
6909
};
6703
6703
-
"split2-2.2.0" = {
6910
6910
+
"split2-3.2.2" = {
6704
6911
name = "split2";
6705
6912
packageName = "split2";
6706
6706
-
version = "2.2.0";
6913
6913
+
version = "3.2.2";
6707
6914
src = fetchurl {
6708
6708
-
url = "https://registry.npmjs.org/split2/-/split2-2.2.0.tgz";
6709
6709
-
sha512 = "RAb22TG39LhI31MbreBgIuKiIKhVsawfTgEGqKHTK87aG+ul/PB8Sqoi3I7kVdRWiCfrKxK3uo4/YUkpNvhPbw==";
6915
6915
+
url = "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz";
6916
6916
+
sha512 = "9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==";
6710
6917
};
6711
6918
};
6712
6919
"sprintf-js-1.0.3" = {
···
6772
6979
sha512 = "vafcv6KjVZKSgz06oM/H6GDBrAtz8vdhQakGjFIvNrHA6y3HCF1CInLy+QLq8dTJPQ1b+KDUqDFctkdRW44e1w==";
6773
6980
};
6774
6981
};
6775
6775
-
"string-width-4.2.0" = {
6982
6982
+
"string-width-4.2.3" = {
6776
6983
name = "string-width";
6777
6984
packageName = "string-width";
6778
6778
-
version = "4.2.0";
6985
6985
+
version = "4.2.3";
6779
6986
src = fetchurl {
6780
6780
-
url = "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz";
6781
6781
-
sha512 = "zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg==";
6987
6987
+
url = "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz";
6988
6988
+
sha512 = "wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==";
6782
6989
};
6783
6990
};
6784
6784
-
"string.prototype.trimend-1.0.1" = {
6991
6991
+
"string.prototype.trimend-1.0.4" = {
6785
6992
name = "string.prototype.trimend";
6786
6993
packageName = "string.prototype.trimend";
6787
6787
-
version = "1.0.1";
6994
6994
+
version = "1.0.4";
6788
6995
src = fetchurl {
6789
6789
-
url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz";
6790
6790
-
sha512 = "LRPxFUaTtpqYsTeNKaFOw3R4bxIzWOnbQ837QfBylo8jIxtcbK/A/sMV7Q+OAV/vWo+7s25pOE10KYSjaSO06g==";
6996
6996
+
url = "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz";
6997
6997
+
sha512 = "y9xCjw1P23Awk8EvTpcyL2NIr1j7wJ39f+k6lvRnSMz+mz9CGz9NYPelDk42kOz6+ql8xjfK8oYzy3jAP5QU5A==";
6791
6998
};
6792
6999
};
6793
6793
-
"string.prototype.trimstart-1.0.1" = {
7000
7000
+
"string.prototype.trimstart-1.0.4" = {
6794
7001
name = "string.prototype.trimstart";
6795
7002
packageName = "string.prototype.trimstart";
6796
6796
-
version = "1.0.1";
7003
7003
+
version = "1.0.4";
6797
7004
src = fetchurl {
6798
6798
-
url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz";
6799
6799
-
sha512 = "XxZn+QpvrBI1FOcg6dIpxUPgWCPuNXvMD72aaRaUQv1eD4e/Qy8i/hFTe0BUmD60p/QA6bh1avmuPTfNjqVWRw==";
7005
7005
+
url = "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.4.tgz";
7006
7006
+
sha512 = "jh6e984OBfvxS50tdY2nRZnoC5/mLFKOREQfw8t5yytkoUsJRNxvI/E39qu1sD0OtWI3OC0XgKSmcWwziwYuZw==";
6800
7007
};
6801
7008
};
6802
7009
"string_decoder-0.10.31" = {
···
6853
7060
sha512 = "DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==";
6854
7061
};
6855
7062
};
6856
6856
-
"strip-ansi-6.0.0" = {
7063
7063
+
"strip-ansi-6.0.1" = {
6857
7064
name = "strip-ansi";
6858
7065
packageName = "strip-ansi";
6859
6859
-
version = "6.0.0";
7066
7066
+
version = "6.0.1";
6860
7067
src = fetchurl {
6861
6861
-
url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz";
6862
6862
-
sha512 = "AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w==";
7068
7068
+
url = "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz";
7069
7069
+
sha512 = "Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==";
6863
7070
};
6864
7071
};
6865
7072
"strip-bom-3.0.0" = {
···
7042
7249
sha512 = "/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==";
7043
7250
};
7044
7251
};
7045
7045
-
"through2-3.0.2" = {
7252
7252
+
"through2-4.0.2" = {
7046
7253
name = "through2";
7047
7254
packageName = "through2";
7048
7048
-
version = "3.0.2";
7255
7255
+
version = "4.0.2";
7049
7256
src = fetchurl {
7050
7050
-
url = "https://registry.npmjs.org/through2/-/through2-3.0.2.tgz";
7051
7051
-
sha512 = "enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==";
7257
7257
+
url = "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz";
7258
7258
+
sha512 = "iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==";
7052
7259
};
7053
7260
};
7054
7261
"timed-out-4.0.1" = {
···
7132
7339
sha512 = "tHdtEpQCMrc1YLrMaqXXcj6AxhYi/xgit6mZu1+EDWUn+qhUf8wMQoFIy9NXuq23zAwtcB0t/MjACGR18pcRbg==";
7133
7340
};
7134
7341
};
7342
7342
+
"tr46-0.0.3" = {
7343
7343
+
name = "tr46";
7344
7344
+
packageName = "tr46";
7345
7345
+
version = "0.0.3";
7346
7346
+
src = fetchurl {
7347
7347
+
url = "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz";
7348
7348
+
sha1 = "8184fd347dac9cdc185992f3a6622e14b9d9ab6a";
7349
7349
+
};
7350
7350
+
};
7135
7351
"traverse-0.6.6" = {
7136
7352
name = "traverse";
7137
7353
packageName = "traverse";
···
7141
7357
sha1 = "cbdf560fd7b9af632502fed40f918c157ea97137";
7142
7358
};
7143
7359
};
7144
7144
-
"trim-newlines-3.0.0" = {
7360
7360
+
"trim-newlines-3.0.1" = {
7145
7361
name = "trim-newlines";
7146
7362
packageName = "trim-newlines";
7147
7147
-
version = "3.0.0";
7363
7363
+
version = "3.0.1";
7148
7364
src = fetchurl {
7149
7149
-
url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.0.tgz";
7150
7150
-
sha512 = "C4+gOpvmxaSMKuEf9Qc134F1ZuOHVXKRbtEflf4NTtuuJDEIJ9p5PXsalL8SkeRw+qit1Mo+yuvMPAKwWg/1hA==";
7365
7365
+
url = "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz";
7366
7366
+
sha512 = "c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==";
7151
7367
};
7152
7368
};
7153
7153
-
"trim-off-newlines-1.0.1" = {
7154
7154
-
name = "trim-off-newlines";
7155
7155
-
packageName = "trim-off-newlines";
7156
7156
-
version = "1.0.1";
7369
7369
+
"ts-node-9.1.1" = {
7370
7370
+
name = "ts-node";
7371
7371
+
packageName = "ts-node";
7372
7372
+
version = "9.1.1";
7157
7373
src = fetchurl {
7158
7158
-
url = "https://registry.npmjs.org/trim-off-newlines/-/trim-off-newlines-1.0.1.tgz";
7159
7159
-
sha1 = "9f9ba9d9efa8764c387698bcbfeb2c848f11adb3";
7374
7374
+
url = "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz";
7375
7375
+
sha512 = "hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==";
7160
7376
};
7161
7377
};
7162
7162
-
"tslib-1.13.0" = {
7378
7378
+
"tslib-1.14.1" = {
7163
7379
name = "tslib";
7164
7380
packageName = "tslib";
7165
7165
-
version = "1.13.0";
7381
7381
+
version = "1.14.1";
7166
7382
src = fetchurl {
7167
7167
-
url = "https://registry.npmjs.org/tslib/-/tslib-1.13.0.tgz";
7168
7168
-
sha512 = "i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q==";
7383
7383
+
url = "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz";
7384
7384
+
sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==";
7385
7385
+
};
7386
7386
+
};
7387
7387
+
"tslib-2.3.1" = {
7388
7388
+
name = "tslib";
7389
7389
+
packageName = "tslib";
7390
7390
+
version = "2.3.1";
7391
7391
+
src = fetchurl {
7392
7392
+
url = "https://registry.npmjs.org/tslib/-/tslib-2.3.1.tgz";
7393
7393
+
sha512 = "77EbyPPpMz+FRFRuAFlWMtmgUWGe9UOG2Z25NqCwiIjRhOf5iKGuzSe5P2w1laq+FkRy4p+PCuVkJSGkzTEKVw==";
7169
7394
};
7170
7395
};
7171
7396
"tunnel-agent-0.4.3" = {
···
7186
7411
sha512 = "0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==";
7187
7412
};
7188
7413
};
7189
7189
-
"type-fest-0.13.1" = {
7414
7414
+
"type-fest-0.18.1" = {
7190
7415
name = "type-fest";
7191
7416
packageName = "type-fest";
7192
7192
-
version = "0.13.1";
7417
7417
+
version = "0.18.1";
7193
7418
src = fetchurl {
7194
7194
-
url = "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz";
7195
7195
-
sha512 = "34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==";
7419
7419
+
url = "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz";
7420
7420
+
sha512 = "OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==";
7196
7421
};
7197
7422
};
7198
7423
"type-fest-0.3.1" = {
···
7204
7429
sha512 = "cUGJnCdr4STbePCgqNFbpVNCepa+kAVohJs1sLhxzdH+gnEoOd8VhbYa7pD3zZYGiURWM2xzEII3fQcRizDkYQ==";
7205
7430
};
7206
7431
};
7207
7207
-
"type-fest-0.5.2" = {
7208
7208
-
name = "type-fest";
7209
7209
-
packageName = "type-fest";
7210
7210
-
version = "0.5.2";
7211
7211
-
src = fetchurl {
7212
7212
-
url = "https://registry.npmjs.org/type-fest/-/type-fest-0.5.2.tgz";
7213
7213
-
sha512 = "DWkS49EQKVX//Tbupb9TFa19c7+MK1XmzkrZUR8TAktmE/DizXoaoJV6TZ/tSIPXipqNiRI6CyAe7x69Jb6RSw==";
7214
7214
-
};
7215
7215
-
};
7216
7432
"type-fest-0.6.0" = {
7217
7433
name = "type-fest";
7218
7434
packageName = "type-fest";
···
7240
7456
sha512 = "zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==";
7241
7457
};
7242
7458
};
7243
7243
-
"uglify-js-3.10.4" = {
7459
7459
+
"typescript-4.4.4" = {
7460
7460
+
name = "typescript";
7461
7461
+
packageName = "typescript";
7462
7462
+
version = "4.4.4";
7463
7463
+
src = fetchurl {
7464
7464
+
url = "https://registry.npmjs.org/typescript/-/typescript-4.4.4.tgz";
7465
7465
+
sha512 = "DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==";
7466
7466
+
};
7467
7467
+
};
7468
7468
+
"uglify-js-3.14.2" = {
7244
7469
name = "uglify-js";
7245
7470
packageName = "uglify-js";
7246
7246
-
version = "3.10.4";
7471
7471
+
version = "3.14.2";
7247
7472
src = fetchurl {
7248
7248
-
url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.10.4.tgz";
7249
7249
-
sha512 = "kBFT3U4Dcj4/pJ52vfjCSfyLyvG9VYYuGYPmrPvAxRw/i7xHiT4VvCev+uiEMcEEiu6UNB6KgWmGtSUYIWScbw==";
7473
7473
+
url = "https://registry.npmjs.org/uglify-js/-/uglify-js-3.14.2.tgz";
7474
7474
+
sha512 = "rtPMlmcO4agTUfz10CbgJ1k6UAoXM2gWb3GoMPPZB/+/Ackf8lNWk11K4rYi2D0apgoFRLtQOZhb+/iGNJq26A==";
7250
7475
};
7251
7476
};
7252
7252
-
"undefsafe-2.0.3" = {
7477
7477
+
"unbox-primitive-1.0.1" = {
7478
7478
+
name = "unbox-primitive";
7479
7479
+
packageName = "unbox-primitive";
7480
7480
+
version = "1.0.1";
7481
7481
+
src = fetchurl {
7482
7482
+
url = "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.1.tgz";
7483
7483
+
sha512 = "tZU/3NqK3dA5gpE1KtyiJUrEB0lxnGkMFHptJ7q6ewdZ8s12QrODwNbhIJStmJkd1QDXa1NRA8aF2A1zk/Ypyw==";
7484
7484
+
};
7485
7485
+
};
7486
7486
+
"undefsafe-2.0.5" = {
7253
7487
name = "undefsafe";
7254
7488
packageName = "undefsafe";
7255
7255
-
version = "2.0.3";
7489
7489
+
version = "2.0.5";
7256
7490
src = fetchurl {
7257
7257
-
url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.3.tgz";
7258
7258
-
sha512 = "nrXZwwXrD/T/JXeygJqdCO6NZZ1L66HrxM/Z7mIq2oPanoN0F1nLx3lwJMu6AwJY69hdixaFQOuoYsMjE5/C2A==";
7491
7491
+
url = "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz";
7492
7492
+
sha512 = "WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==";
7259
7493
};
7260
7494
};
7261
7261
-
"unicode-canonical-property-names-ecmascript-1.0.4" = {
7495
7495
+
"unicode-canonical-property-names-ecmascript-2.0.0" = {
7262
7496
name = "unicode-canonical-property-names-ecmascript";
7263
7497
packageName = "unicode-canonical-property-names-ecmascript";
7264
7264
-
version = "1.0.4";
7498
7498
+
version = "2.0.0";
7265
7499
src = fetchurl {
7266
7266
-
url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz";
7267
7267
-
sha512 = "jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==";
7500
7500
+
url = "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz";
7501
7501
+
sha512 = "yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==";
7268
7502
};
7269
7503
};
7270
7270
-
"unicode-match-property-ecmascript-1.0.4" = {
7504
7504
+
"unicode-match-property-ecmascript-2.0.0" = {
7271
7505
name = "unicode-match-property-ecmascript";
7272
7506
packageName = "unicode-match-property-ecmascript";
7273
7273
-
version = "1.0.4";
7507
7507
+
version = "2.0.0";
7274
7508
src = fetchurl {
7275
7275
-
url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz";
7276
7276
-
sha512 = "L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==";
7509
7509
+
url = "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz";
7510
7510
+
sha512 = "5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==";
7277
7511
};
7278
7512
};
7279
7279
-
"unicode-match-property-value-ecmascript-1.2.0" = {
7513
7513
+
"unicode-match-property-value-ecmascript-2.0.0" = {
7280
7514
name = "unicode-match-property-value-ecmascript";
7281
7515
packageName = "unicode-match-property-value-ecmascript";
7282
7282
-
version = "1.2.0";
7516
7516
+
version = "2.0.0";
7283
7517
src = fetchurl {
7284
7284
-
url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz";
7285
7285
-
sha512 = "wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ==";
7518
7518
+
url = "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.0.0.tgz";
7519
7519
+
sha512 = "7Yhkc0Ye+t4PNYzOGKedDhXbYIBe1XEQYQxOPyhcXNMJ0WCABqqj6ckydd6pWRZTHV4GuCPKdBAUiMc60tsKVw==";
7286
7520
};
7287
7521
};
7288
7288
-
"unicode-property-aliases-ecmascript-1.1.0" = {
7522
7522
+
"unicode-property-aliases-ecmascript-2.0.0" = {
7289
7523
name = "unicode-property-aliases-ecmascript";
7290
7524
packageName = "unicode-property-aliases-ecmascript";
7291
7291
-
version = "1.1.0";
7525
7525
+
version = "2.0.0";
7292
7526
src = fetchurl {
7293
7293
-
url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz";
7294
7294
-
sha512 = "PqSoPh/pWetQ2phoj5RLiaqIk4kCNwoV3CI+LfGmWLKI3rE3kl1h59XpX2BjgDrmbxD9ARtQobPGU1SguCYuQg==";
7527
7527
+
url = "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.0.0.tgz";
7528
7528
+
sha512 = "5Zfuy9q/DFr4tfO7ZPeVXb1aPoeQSdeFMLpYuFebehDAhbuevLs5yxSZmIFN1tP5F9Wl4IpJrYojg85/zgyZHQ==";
7295
7529
};
7296
7530
};
7297
7531
"union-value-1.0.1" = {
···
7429
7663
sha1 = "450d4dc9fa70de732762fbd2d4a28981419a0ccf";
7430
7664
};
7431
7665
};
7432
7432
-
"uuid-3.3.2" = {
7433
7433
-
name = "uuid";
7434
7434
-
packageName = "uuid";
7435
7435
-
version = "3.3.2";
7436
7436
-
src = fetchurl {
7437
7437
-
url = "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz";
7438
7438
-
sha512 = "yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==";
7439
7439
-
};
7440
7440
-
};
7441
7666
"uuid-3.4.0" = {
7442
7667
name = "uuid";
7443
7668
packageName = "uuid";
···
7456
7681
sha512 = "DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==";
7457
7682
};
7458
7683
};
7684
7684
+
"webidl-conversions-3.0.1" = {
7685
7685
+
name = "webidl-conversions";
7686
7686
+
packageName = "webidl-conversions";
7687
7687
+
version = "3.0.1";
7688
7688
+
src = fetchurl {
7689
7689
+
url = "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz";
7690
7690
+
sha1 = "24534275e2a7bc6be7bc86611cc16ae0a5654871";
7691
7691
+
};
7692
7692
+
};
7693
7693
+
"whatwg-url-5.0.0" = {
7694
7694
+
name = "whatwg-url";
7695
7695
+
packageName = "whatwg-url";
7696
7696
+
version = "5.0.0";
7697
7697
+
src = fetchurl {
7698
7698
+
url = "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz";
7699
7699
+
sha1 = "966454e8765462e37644d3626f6742ce8b70965d";
7700
7700
+
};
7701
7701
+
};
7459
7702
"which-1.3.1" = {
7460
7703
name = "which";
7461
7704
packageName = "which";
···
7472
7715
src = fetchurl {
7473
7716
url = "https://registry.npmjs.org/which/-/which-2.0.2.tgz";
7474
7717
sha512 = "BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==";
7718
7718
+
};
7719
7719
+
};
7720
7720
+
"which-boxed-primitive-1.0.2" = {
7721
7721
+
name = "which-boxed-primitive";
7722
7722
+
packageName = "which-boxed-primitive";
7723
7723
+
version = "1.0.2";
7724
7724
+
src = fetchurl {
7725
7725
+
url = "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz";
7726
7726
+
sha512 = "bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==";
7475
7727
};
7476
7728
};
7477
7729
"which-module-2.0.0" = {
···
7600
7852
sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";
7601
7853
};
7602
7854
};
7603
7603
-
"y18n-4.0.0" = {
7855
7855
+
"y18n-4.0.3" = {
7604
7856
name = "y18n";
7605
7857
packageName = "y18n";
7606
7606
-
version = "4.0.0";
7858
7858
+
version = "4.0.3";
7607
7859
src = fetchurl {
7608
7608
-
url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
7609
7609
-
sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
7860
7860
+
url = "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz";
7861
7861
+
sha512 = "JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==";
7610
7862
};
7611
7863
};
7612
7864
"yallist-2.1.2" = {
···
7618
7870
sha1 = "1c11f9218f076089a47dd512f93c6699a6a81d52";
7619
7871
};
7620
7872
};
7621
7621
-
"yaml-1.10.0" = {
7873
7873
+
"yallist-4.0.0" = {
7874
7874
+
name = "yallist";
7875
7875
+
packageName = "yallist";
7876
7876
+
version = "4.0.0";
7877
7877
+
src = fetchurl {
7878
7878
+
url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz";
7879
7879
+
sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==";
7880
7880
+
};
7881
7881
+
};
7882
7882
+
"yaml-1.10.2" = {
7622
7883
name = "yaml";
7623
7884
packageName = "yaml";
7624
7624
-
version = "1.10.0";
7885
7885
+
version = "1.10.2";
7625
7886
src = fetchurl {
7626
7626
-
url = "https://registry.npmjs.org/yaml/-/yaml-1.10.0.tgz";
7627
7627
-
sha512 = "yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg==";
7887
7887
+
url = "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz";
7888
7888
+
sha512 = "r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==";
7628
7889
};
7629
7890
};
7630
7891
"yargs-12.0.5" = {
···
7681
7942
sha512 = "o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==";
7682
7943
};
7683
7944
};
7945
7945
+
"yargs-parser-20.2.9" = {
7946
7946
+
name = "yargs-parser";
7947
7947
+
packageName = "yargs-parser";
7948
7948
+
version = "20.2.9";
7949
7949
+
src = fetchurl {
7950
7950
+
url = "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz";
7951
7951
+
sha512 = "y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==";
7952
7952
+
};
7953
7953
+
};
7684
7954
"yargs-unparser-1.5.0" = {
7685
7955
name = "yargs-unparser";
7686
7956
packageName = "yargs-unparser";
···
7690
7960
sha512 = "HK25qidFTCVuj/D1VfNiEndpLIeJN78aqgR23nL3y4N0U/91cOAzqfHlF8n2BvoNDcZmJKin3ddNSvOxSr8flw==";
7691
7961
};
7692
7962
};
7963
7963
+
"yn-3.1.1" = {
7964
7964
+
name = "yn";
7965
7965
+
packageName = "yn";
7966
7966
+
version = "3.1.1";
7967
7967
+
src = fetchurl {
7968
7968
+
url = "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz";
7969
7969
+
sha512 = "Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==";
7970
7970
+
};
7971
7971
+
};
7693
7972
};
7694
7973
in
7695
7974
{
7696
7975
commitizen = nodeEnv.buildNodePackage {
7697
7976
name = "commitizen";
7698
7977
packageName = "commitizen";
7699
7699
-
version = "4.2.1";
7978
7978
+
version = "4.2.4";
7700
7979
src = fetchurl {
7701
7701
-
url = "https://registry.npmjs.org/commitizen/-/commitizen-4.2.1.tgz";
7702
7702
-
sha512 = "nZsp8IThkDu7C+93BFD/mLShb9Gd6Wsaf90tpKE3x/6u5y/Q52kzanIJpGr0qvIsJ5bCMpgKtr3Lbu3miEJfaA==";
7980
7980
+
url = "https://registry.npmjs.org/commitizen/-/commitizen-4.2.4.tgz";
7981
7981
+
sha512 = "LlZChbDzg3Ir3O2S7jSo/cgWp5/QwylQVr59K4xayVq8S4/RdKzSyJkghAiZZHfhh5t4pxunUoyeg0ml1q/7aw==";
7703
7982
};
7704
7983
dependencies = [
7705
7705
-
sources."@babel/cli-7.11.6"
7706
7706
-
sources."@babel/code-frame-7.10.4"
7707
7707
-
(sources."@babel/compat-data-7.11.0" // {
7984
7984
+
(sources."@babel/cli-7.11.6" // {
7708
7985
dependencies = [
7709
7709
-
sources."semver-5.7.1"
7986
7986
+
sources."source-map-0.5.7"
7710
7987
];
7711
7988
})
7989
7989
+
sources."@babel/code-frame-7.15.8"
7990
7990
+
sources."@babel/compat-data-7.15.0"
7712
7991
(sources."@babel/core-7.11.6" // {
7713
7992
dependencies = [
7714
7714
-
sources."debug-4.2.0"
7993
7993
+
sources."debug-4.3.2"
7715
7994
sources."ms-2.1.2"
7716
7995
sources."semver-5.7.1"
7996
7996
+
sources."source-map-0.5.7"
7717
7997
];
7718
7998
})
7719
7719
-
sources."@babel/generator-7.11.6"
7720
7720
-
sources."@babel/helper-annotate-as-pure-7.10.4"
7721
7721
-
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4"
7722
7722
-
(sources."@babel/helper-compilation-targets-7.10.4" // {
7999
7999
+
(sources."@babel/generator-7.15.8" // {
7723
8000
dependencies = [
7724
7724
-
sources."semver-5.7.1"
8001
8001
+
sources."source-map-0.5.7"
7725
8002
];
7726
8003
})
7727
7727
-
sources."@babel/helper-create-class-features-plugin-7.10.5"
7728
7728
-
sources."@babel/helper-create-regexp-features-plugin-7.10.4"
7729
7729
-
sources."@babel/helper-define-map-7.10.5"
7730
7730
-
sources."@babel/helper-explode-assignable-expression-7.11.4"
7731
7731
-
sources."@babel/helper-function-name-7.10.4"
7732
7732
-
sources."@babel/helper-get-function-arity-7.10.4"
7733
7733
-
sources."@babel/helper-hoist-variables-7.10.4"
7734
7734
-
sources."@babel/helper-member-expression-to-functions-7.11.0"
7735
7735
-
sources."@babel/helper-module-imports-7.10.4"
7736
7736
-
sources."@babel/helper-module-transforms-7.11.0"
7737
7737
-
sources."@babel/helper-optimise-call-expression-7.10.4"
7738
7738
-
sources."@babel/helper-plugin-utils-7.10.4"
7739
7739
-
sources."@babel/helper-regex-7.10.5"
7740
7740
-
sources."@babel/helper-remap-async-to-generator-7.11.4"
7741
7741
-
sources."@babel/helper-replace-supers-7.10.4"
7742
7742
-
sources."@babel/helper-simple-access-7.10.4"
7743
7743
-
sources."@babel/helper-skip-transparent-expression-wrappers-7.11.0"
7744
7744
-
sources."@babel/helper-split-export-declaration-7.11.0"
7745
7745
-
sources."@babel/helper-validator-identifier-7.10.4"
7746
7746
-
sources."@babel/helper-wrap-function-7.10.4"
7747
7747
-
sources."@babel/helpers-7.10.4"
7748
7748
-
sources."@babel/highlight-7.10.4"
7749
7749
-
sources."@babel/parser-7.11.5"
7750
7750
-
sources."@babel/plugin-proposal-async-generator-functions-7.10.5"
7751
7751
-
sources."@babel/plugin-proposal-class-properties-7.10.4"
7752
7752
-
sources."@babel/plugin-proposal-dynamic-import-7.10.4"
7753
7753
-
sources."@babel/plugin-proposal-export-namespace-from-7.10.4"
7754
7754
-
sources."@babel/plugin-proposal-json-strings-7.10.4"
7755
7755
-
sources."@babel/plugin-proposal-logical-assignment-operators-7.11.0"
7756
7756
-
sources."@babel/plugin-proposal-nullish-coalescing-operator-7.10.4"
7757
7757
-
sources."@babel/plugin-proposal-numeric-separator-7.10.4"
7758
7758
-
sources."@babel/plugin-proposal-object-rest-spread-7.9.0"
7759
7759
-
sources."@babel/plugin-proposal-optional-catch-binding-7.10.4"
7760
7760
-
sources."@babel/plugin-proposal-optional-chaining-7.11.0"
7761
7761
-
sources."@babel/plugin-proposal-private-methods-7.10.4"
7762
7762
-
sources."@babel/plugin-proposal-unicode-property-regex-7.10.4"
8004
8004
+
sources."@babel/helper-annotate-as-pure-7.15.4"
8005
8005
+
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.15.4"
8006
8006
+
sources."@babel/helper-compilation-targets-7.15.4"
8007
8007
+
sources."@babel/helper-create-class-features-plugin-7.15.4"
8008
8008
+
sources."@babel/helper-create-regexp-features-plugin-7.14.5"
8009
8009
+
sources."@babel/helper-explode-assignable-expression-7.15.4"
8010
8010
+
sources."@babel/helper-function-name-7.15.4"
8011
8011
+
sources."@babel/helper-get-function-arity-7.15.4"
8012
8012
+
sources."@babel/helper-hoist-variables-7.15.4"
8013
8013
+
sources."@babel/helper-member-expression-to-functions-7.15.4"
8014
8014
+
sources."@babel/helper-module-imports-7.15.4"
8015
8015
+
sources."@babel/helper-module-transforms-7.15.8"
8016
8016
+
sources."@babel/helper-optimise-call-expression-7.15.4"
8017
8017
+
sources."@babel/helper-plugin-utils-7.14.5"
8018
8018
+
sources."@babel/helper-remap-async-to-generator-7.15.4"
8019
8019
+
sources."@babel/helper-replace-supers-7.15.4"
8020
8020
+
sources."@babel/helper-simple-access-7.15.4"
8021
8021
+
sources."@babel/helper-skip-transparent-expression-wrappers-7.15.4"
8022
8022
+
sources."@babel/helper-split-export-declaration-7.15.4"
8023
8023
+
sources."@babel/helper-validator-identifier-7.15.7"
8024
8024
+
sources."@babel/helper-validator-option-7.14.5"
8025
8025
+
sources."@babel/helper-wrap-function-7.15.4"
8026
8026
+
sources."@babel/helpers-7.15.4"
8027
8027
+
sources."@babel/highlight-7.14.5"
8028
8028
+
sources."@babel/parser-7.15.8"
8029
8029
+
sources."@babel/plugin-proposal-async-generator-functions-7.15.8"
8030
8030
+
sources."@babel/plugin-proposal-class-properties-7.14.5"
8031
8031
+
sources."@babel/plugin-proposal-dynamic-import-7.14.5"
8032
8032
+
sources."@babel/plugin-proposal-export-namespace-from-7.14.5"
8033
8033
+
sources."@babel/plugin-proposal-json-strings-7.14.5"
8034
8034
+
sources."@babel/plugin-proposal-logical-assignment-operators-7.14.5"
8035
8035
+
sources."@babel/plugin-proposal-nullish-coalescing-operator-7.14.5"
8036
8036
+
sources."@babel/plugin-proposal-numeric-separator-7.14.5"
8037
8037
+
sources."@babel/plugin-proposal-object-rest-spread-7.11.0"
8038
8038
+
sources."@babel/plugin-proposal-optional-catch-binding-7.14.5"
8039
8039
+
sources."@babel/plugin-proposal-optional-chaining-7.14.5"
8040
8040
+
sources."@babel/plugin-proposal-private-methods-7.14.5"
8041
8041
+
sources."@babel/plugin-proposal-unicode-property-regex-7.14.5"
7763
8042
sources."@babel/plugin-syntax-async-generators-7.8.4"
7764
7764
-
sources."@babel/plugin-syntax-class-properties-7.10.4"
8043
8043
+
sources."@babel/plugin-syntax-class-properties-7.12.13"
7765
8044
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
7766
8045
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
7767
8046
sources."@babel/plugin-syntax-json-strings-7.8.3"
···
7771
8050
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
7772
8051
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
7773
8052
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
7774
7774
-
sources."@babel/plugin-syntax-top-level-await-7.10.4"
7775
7775
-
sources."@babel/plugin-transform-arrow-functions-7.10.4"
7776
7776
-
sources."@babel/plugin-transform-async-to-generator-7.10.4"
7777
7777
-
sources."@babel/plugin-transform-block-scoped-functions-7.10.4"
7778
7778
-
sources."@babel/plugin-transform-block-scoping-7.11.1"
7779
7779
-
sources."@babel/plugin-transform-classes-7.10.4"
7780
7780
-
sources."@babel/plugin-transform-computed-properties-7.10.4"
7781
7781
-
sources."@babel/plugin-transform-destructuring-7.10.4"
7782
7782
-
sources."@babel/plugin-transform-dotall-regex-7.10.4"
7783
7783
-
sources."@babel/plugin-transform-duplicate-keys-7.10.4"
7784
7784
-
sources."@babel/plugin-transform-exponentiation-operator-7.10.4"
7785
7785
-
sources."@babel/plugin-transform-for-of-7.10.4"
7786
7786
-
sources."@babel/plugin-transform-function-name-7.10.4"
7787
7787
-
sources."@babel/plugin-transform-literals-7.10.4"
7788
7788
-
sources."@babel/plugin-transform-member-expression-literals-7.10.4"
7789
7789
-
sources."@babel/plugin-transform-modules-amd-7.10.5"
7790
7790
-
sources."@babel/plugin-transform-modules-commonjs-7.10.4"
7791
7791
-
sources."@babel/plugin-transform-modules-systemjs-7.10.5"
7792
7792
-
sources."@babel/plugin-transform-modules-umd-7.10.4"
7793
7793
-
sources."@babel/plugin-transform-named-capturing-groups-regex-7.10.4"
7794
7794
-
sources."@babel/plugin-transform-new-target-7.10.4"
7795
7795
-
sources."@babel/plugin-transform-object-super-7.10.4"
7796
7796
-
sources."@babel/plugin-transform-parameters-7.10.5"
7797
7797
-
sources."@babel/plugin-transform-property-literals-7.10.4"
7798
7798
-
sources."@babel/plugin-transform-regenerator-7.10.4"
7799
7799
-
sources."@babel/plugin-transform-reserved-words-7.10.4"
7800
7800
-
sources."@babel/plugin-transform-shorthand-properties-7.10.4"
7801
7801
-
sources."@babel/plugin-transform-spread-7.11.0"
7802
7802
-
sources."@babel/plugin-transform-sticky-regex-7.10.4"
7803
7803
-
sources."@babel/plugin-transform-template-literals-7.10.5"
7804
7804
-
sources."@babel/plugin-transform-typeof-symbol-7.10.4"
7805
7805
-
sources."@babel/plugin-transform-unicode-escapes-7.10.4"
7806
7806
-
sources."@babel/plugin-transform-unicode-regex-7.10.4"
8053
8053
+
sources."@babel/plugin-syntax-top-level-await-7.14.5"
8054
8054
+
sources."@babel/plugin-transform-arrow-functions-7.14.5"
8055
8055
+
sources."@babel/plugin-transform-async-to-generator-7.14.5"
8056
8056
+
sources."@babel/plugin-transform-block-scoped-functions-7.14.5"
8057
8057
+
sources."@babel/plugin-transform-block-scoping-7.15.3"
8058
8058
+
sources."@babel/plugin-transform-classes-7.15.4"
8059
8059
+
sources."@babel/plugin-transform-computed-properties-7.14.5"
8060
8060
+
sources."@babel/plugin-transform-destructuring-7.14.7"
8061
8061
+
sources."@babel/plugin-transform-dotall-regex-7.14.5"
8062
8062
+
sources."@babel/plugin-transform-duplicate-keys-7.14.5"
8063
8063
+
sources."@babel/plugin-transform-exponentiation-operator-7.14.5"
8064
8064
+
sources."@babel/plugin-transform-for-of-7.15.4"
8065
8065
+
sources."@babel/plugin-transform-function-name-7.14.5"
8066
8066
+
sources."@babel/plugin-transform-literals-7.14.5"
8067
8067
+
sources."@babel/plugin-transform-member-expression-literals-7.14.5"
8068
8068
+
sources."@babel/plugin-transform-modules-amd-7.14.5"
8069
8069
+
sources."@babel/plugin-transform-modules-commonjs-7.15.4"
8070
8070
+
sources."@babel/plugin-transform-modules-systemjs-7.15.4"
8071
8071
+
sources."@babel/plugin-transform-modules-umd-7.14.5"
8072
8072
+
sources."@babel/plugin-transform-named-capturing-groups-regex-7.14.9"
8073
8073
+
sources."@babel/plugin-transform-new-target-7.14.5"
8074
8074
+
sources."@babel/plugin-transform-object-super-7.14.5"
8075
8075
+
sources."@babel/plugin-transform-parameters-7.15.4"
8076
8076
+
sources."@babel/plugin-transform-property-literals-7.14.5"
8077
8077
+
sources."@babel/plugin-transform-regenerator-7.14.5"
8078
8078
+
sources."@babel/plugin-transform-reserved-words-7.14.5"
8079
8079
+
sources."@babel/plugin-transform-shorthand-properties-7.14.5"
8080
8080
+
sources."@babel/plugin-transform-spread-7.15.8"
8081
8081
+
sources."@babel/plugin-transform-sticky-regex-7.14.5"
8082
8082
+
sources."@babel/plugin-transform-template-literals-7.14.5"
8083
8083
+
sources."@babel/plugin-transform-typeof-symbol-7.14.5"
8084
8084
+
sources."@babel/plugin-transform-unicode-escapes-7.14.5"
8085
8085
+
sources."@babel/plugin-transform-unicode-regex-7.14.5"
7807
8086
(sources."@babel/preset-env-7.11.5" // {
7808
8087
dependencies = [
7809
7809
-
sources."@babel/plugin-proposal-object-rest-spread-7.11.0"
7810
8088
sources."semver-5.7.1"
7811
8089
];
7812
8090
})
7813
8091
sources."@babel/preset-modules-0.1.4"
7814
8092
sources."@babel/register-7.11.5"
7815
7815
-
sources."@babel/runtime-7.11.2"
7816
7816
-
sources."@babel/template-7.10.4"
7817
7817
-
(sources."@babel/traverse-7.11.5" // {
8093
8093
+
sources."@babel/runtime-7.15.4"
8094
8094
+
sources."@babel/template-7.15.4"
8095
8095
+
(sources."@babel/traverse-7.15.4" // {
7818
8096
dependencies = [
7819
7819
-
sources."debug-4.2.0"
8097
8097
+
sources."debug-4.3.2"
7820
8098
sources."ms-2.1.2"
7821
8099
];
7822
8100
})
7823
7823
-
sources."@babel/types-7.11.5"
7824
7824
-
sources."@commitlint/execute-rule-11.0.0"
7825
7825
-
(sources."@commitlint/load-11.0.0" // {
8101
8101
+
sources."@babel/types-7.15.6"
8102
8102
+
sources."@commitlint/execute-rule-13.2.0"
8103
8103
+
(sources."@commitlint/load-13.2.1" // {
7826
8104
dependencies = [
7827
7827
-
sources."ansi-styles-4.2.1"
7828
7828
-
sources."chalk-4.1.0"
8105
8105
+
sources."ansi-styles-4.3.0"
8106
8106
+
sources."chalk-4.1.2"
8107
8107
+
sources."color-convert-2.0.1"
8108
8108
+
sources."color-name-1.1.4"
8109
8109
+
sources."has-flag-4.0.0"
8110
8110
+
sources."supports-color-7.2.0"
8111
8111
+
];
8112
8112
+
})
8113
8113
+
sources."@commitlint/resolve-extends-13.2.0"
8114
8114
+
(sources."@commitlint/types-13.2.0" // {
8115
8115
+
dependencies = [
8116
8116
+
sources."ansi-styles-4.3.0"
8117
8117
+
sources."chalk-4.1.2"
7829
8118
sources."color-convert-2.0.1"
7830
8119
sources."color-name-1.1.4"
7831
8120
sources."has-flag-4.0.0"
7832
8121
sources."supports-color-7.2.0"
7833
8122
];
7834
8123
})
7835
7835
-
sources."@commitlint/resolve-extends-11.0.0"
7836
7836
-
sources."@commitlint/types-11.0.0"
8124
8124
+
sources."@endemolshinegroup/cosmiconfig-typescript-loader-3.0.2"
7837
8125
(sources."@istanbuljs/load-nyc-config-1.1.0" // {
7838
8126
dependencies = [
7839
8127
sources."find-up-4.1.0"
···
7843
8131
];
7844
8132
})
7845
8133
sources."@istanbuljs/nyc-config-babel-2.1.1"
7846
7846
-
sources."@istanbuljs/schema-0.1.2"
7847
7847
-
sources."@nodelib/fs.scandir-2.1.3"
7848
7848
-
sources."@nodelib/fs.stat-2.0.3"
7849
7849
-
sources."@nodelib/fs.walk-1.2.4"
7850
7850
-
sources."@octokit/auth-token-2.4.2"
7851
7851
-
(sources."@octokit/endpoint-6.0.6" // {
8134
8134
+
sources."@istanbuljs/schema-0.1.3"
8135
8135
+
sources."@nodelib/fs.scandir-2.1.5"
8136
8136
+
sources."@nodelib/fs.stat-2.0.5"
8137
8137
+
sources."@nodelib/fs.walk-1.2.8"
8138
8138
+
sources."@octokit/auth-token-2.5.0"
8139
8139
+
(sources."@octokit/endpoint-6.0.12" // {
7852
8140
dependencies = [
7853
8141
sources."is-plain-object-5.0.0"
7854
8142
sources."universal-user-agent-6.0.0"
7855
8143
];
7856
8144
})
8145
8145
+
sources."@octokit/openapi-types-11.2.0"
7857
8146
(sources."@octokit/plugin-paginate-rest-1.1.2" // {
7858
8147
dependencies = [
7859
8148
sources."@octokit/types-2.16.2"
7860
8149
];
7861
8150
})
7862
7862
-
sources."@octokit/plugin-request-log-1.0.0"
8151
8151
+
sources."@octokit/plugin-request-log-1.0.4"
7863
8152
(sources."@octokit/plugin-rest-endpoint-methods-2.4.0" // {
7864
8153
dependencies = [
7865
8154
sources."@octokit/types-2.16.2"
7866
8155
];
7867
8156
})
7868
7868
-
(sources."@octokit/request-5.4.8" // {
8157
8157
+
(sources."@octokit/request-5.6.2" // {
7869
8158
dependencies = [
7870
7870
-
sources."@octokit/request-error-2.0.2"
8159
8159
+
sources."@octokit/request-error-2.1.0"
7871
8160
sources."is-plain-object-5.0.0"
7872
8161
sources."universal-user-agent-6.0.0"
7873
8162
];
···
7878
8167
];
7879
8168
})
7880
8169
sources."@octokit/rest-16.43.2"
7881
7881
-
sources."@octokit/types-5.4.1"
8170
8170
+
sources."@octokit/types-6.34.0"
7882
8171
(sources."@semantic-release/commit-analyzer-6.3.3" // {
7883
8172
dependencies = [
7884
7884
-
sources."debug-4.2.0"
8173
8173
+
sources."debug-4.3.2"
7885
8174
sources."ms-2.1.2"
7886
8175
];
7887
8176
})
7888
8177
sources."@semantic-release/error-2.2.0"
7889
8178
(sources."@semantic-release/github-5.5.8" // {
7890
8179
dependencies = [
7891
7891
-
sources."debug-4.2.0"
7892
7892
-
sources."mime-2.4.6"
8180
8180
+
sources."debug-4.3.2"
8181
8181
+
sources."mime-2.5.2"
7893
8182
sources."ms-2.1.2"
7894
8183
];
7895
8184
})
···
7898
8187
sources."cross-spawn-7.0.3"
7899
8188
sources."execa-3.4.0"
7900
8189
sources."get-stream-5.2.0"
7901
7901
-
sources."is-stream-2.0.0"
8190
8190
+
sources."is-stream-2.0.1"
7902
8191
sources."mimic-fn-2.1.0"
7903
8192
sources."npm-run-path-4.0.1"
7904
8193
sources."onetime-5.1.2"
7905
8194
sources."p-finally-2.0.1"
7906
8195
sources."path-key-3.1.1"
7907
8196
sources."read-pkg-5.2.0"
7908
7908
-
sources."registry-auth-token-4.2.0"
8197
8197
+
sources."registry-auth-token-4.2.1"
7909
8198
sources."shebang-command-2.0.0"
7910
8199
sources."shebang-regex-3.0.0"
7911
8200
sources."type-fest-0.6.0"
···
7914
8203
})
7915
8204
(sources."@semantic-release/release-notes-generator-7.3.5" // {
7916
8205
dependencies = [
7917
7917
-
sources."debug-4.2.0"
8206
8206
+
sources."debug-4.3.2"
7918
8207
sources."find-up-4.1.0"
7919
8208
sources."get-stream-5.2.0"
7920
8209
sources."locate-path-5.0.0"
···
7926
8215
sources."type-fest-0.6.0"
7927
8216
];
7928
8217
})
7929
7929
-
sources."@sinonjs/commons-1.8.1"
8218
8218
+
sources."@sinonjs/commons-1.8.3"
7930
8219
(sources."@sinonjs/formatio-3.2.2" // {
7931
8220
dependencies = [
7932
8221
sources."@sinonjs/samsam-3.3.3"
···
7934
8223
})
7935
8224
sources."@sinonjs/samsam-2.1.3"
7936
8225
sources."@sinonjs/text-encoding-0.7.1"
7937
7937
-
sources."@types/color-name-1.1.1"
7938
7938
-
sources."@types/glob-7.1.3"
7939
7939
-
sources."@types/minimatch-3.0.3"
7940
7940
-
sources."@types/minimist-1.2.0"
7941
7941
-
sources."@types/node-14.10.0"
7942
7942
-
sources."@types/normalize-package-data-2.4.0"
8226
8226
+
sources."@types/glob-7.2.0"
8227
8227
+
sources."@types/minimatch-3.0.5"
8228
8228
+
sources."@types/minimist-1.2.2"
8229
8229
+
sources."@types/node-16.11.1"
8230
8230
+
sources."@types/normalize-package-data-2.4.1"
7943
8231
sources."@types/parse-json-4.0.0"
7944
7944
-
sources."@types/retry-0.12.0"
8232
8232
+
sources."@types/retry-0.12.1"
7945
8233
sources."JSONStream-1.3.5"
7946
8234
sources."abbrev-1.1.1"
7947
8235
sources."agent-base-5.1.1"
···
7954
8242
sources."ansicolors-0.3.2"
7955
8243
(sources."anymatch-2.0.0" // {
7956
8244
dependencies = [
8245
8245
+
(sources."braces-2.3.2" // {
8246
8246
+
dependencies = [
8247
8247
+
sources."extend-shallow-2.0.1"
8248
8248
+
];
8249
8249
+
})
8250
8250
+
(sources."fill-range-4.0.0" // {
8251
8251
+
dependencies = [
8252
8252
+
sources."extend-shallow-2.0.1"
8253
8253
+
];
8254
8254
+
})
8255
8255
+
(sources."is-number-3.0.0" // {
8256
8256
+
dependencies = [
8257
8257
+
sources."kind-of-3.2.2"
8258
8258
+
];
8259
8259
+
})
8260
8260
+
sources."micromatch-3.1.10"
7957
8261
sources."normalize-path-2.1.1"
8262
8262
+
sources."to-regex-range-2.1.1"
7958
8263
];
7959
8264
})
7960
8265
sources."append-transform-2.0.0"
7961
8266
sources."archy-1.0.0"
8267
8267
+
sources."arg-4.1.3"
7962
8268
sources."argparse-1.0.10"
7963
8269
sources."argv-formatter-1.0.0"
7964
8270
sources."arr-diff-4.0.0"
···
7980
8286
sources."aws-sign2-0.5.0"
7981
8287
(sources."axios-0.19.0" // {
7982
8288
dependencies = [
7983
7983
-
sources."is-buffer-2.0.4"
8289
8289
+
sources."is-buffer-2.0.5"
7984
8290
];
7985
8291
})
7986
8292
sources."babel-plugin-dynamic-import-node-2.3.3"
7987
8293
sources."babel-plugin-istanbul-5.2.0"
7988
7988
-
sources."balanced-match-1.0.0"
8294
8294
+
sources."balanced-match-1.0.2"
7989
8295
(sources."base-0.11.2" // {
7990
8296
dependencies = [
7991
8297
sources."define-property-1.0.0"
7992
8298
];
7993
8299
})
7994
7994
-
sources."before-after-hook-2.1.0"
8300
8300
+
sources."before-after-hook-2.2.2"
7995
8301
sources."binary-extensions-1.13.1"
7996
8302
sources."bindings-1.5.0"
7997
8303
(sources."bl-0.9.5" // {
···
8009
8315
];
8010
8316
})
8011
8317
sources."brace-expansion-1.1.11"
8012
8012
-
(sources."braces-2.3.2" // {
8013
8013
-
dependencies = [
8014
8014
-
sources."extend-shallow-2.0.1"
8015
8015
-
];
8016
8016
-
})
8318
8318
+
sources."braces-3.0.2"
8017
8319
sources."browser-stdout-1.3.1"
8018
8018
-
sources."browserslist-4.14.2"
8320
8320
+
sources."browserslist-4.17.4"
8019
8321
sources."btoa-lite-1.0.0"
8020
8020
-
sources."buffer-from-1.1.1"
8322
8322
+
sources."buffer-from-1.1.2"
8021
8323
sources."cache-base-1.0.1"
8022
8324
sources."cachedir-2.2.0"
8023
8325
(sources."caching-transform-4.0.0" // {
···
8026
8328
sources."write-file-atomic-3.0.3"
8027
8329
];
8028
8330
})
8029
8029
-
(sources."caller-callsite-2.0.0" // {
8030
8030
-
dependencies = [
8031
8031
-
sources."callsites-2.0.0"
8032
8032
-
];
8033
8033
-
})
8034
8034
-
sources."caller-path-2.0.0"
8331
8331
+
sources."call-bind-1.0.2"
8035
8332
sources."callsites-3.1.0"
8036
8333
sources."camelcase-5.3.1"
8037
8334
sources."camelcase-keys-6.2.2"
8038
8038
-
sources."caniuse-lite-1.0.30001125"
8335
8335
+
sources."caniuse-lite-1.0.30001270"
8039
8336
sources."capture-stack-trace-1.0.1"
8040
8337
sources."cardinal-2.1.1"
8041
8338
sources."caseless-0.6.0"
8042
8042
-
sources."chai-4.2.0"
8339
8339
+
sources."chai-4.1.2"
8043
8340
sources."chalk-2.4.2"
8044
8341
sources."chardet-0.7.0"
8045
8342
sources."charenc-0.0.2"
8046
8343
sources."check-error-1.0.2"
8047
8047
-
sources."chokidar-2.1.8"
8344
8344
+
(sources."chokidar-2.1.8" // {
8345
8345
+
dependencies = [
8346
8346
+
sources."braces-2.3.2"
8347
8347
+
sources."extend-shallow-2.0.1"
8348
8348
+
sources."fill-range-4.0.0"
8349
8349
+
sources."is-number-3.0.0"
8350
8350
+
sources."kind-of-3.2.2"
8351
8351
+
sources."to-regex-range-2.1.1"
8352
8352
+
];
8353
8353
+
})
8048
8354
sources."ci-info-1.6.0"
8049
8355
(sources."class-utils-0.3.6" // {
8050
8356
dependencies = [
···
8066
8372
sources."clean-stack-2.2.0"
8067
8373
sources."cli-boxes-1.0.0"
8068
8374
sources."cli-cursor-2.1.0"
8069
8069
-
(sources."cli-table-0.3.1" // {
8375
8375
+
(sources."cli-table-0.3.6" // {
8070
8376
dependencies = [
8071
8377
sources."colors-1.0.3"
8072
8378
];
···
8085
8391
sources."colors-0.6.2"
8086
8392
sources."combined-stream-0.0.7"
8087
8393
sources."commander-4.1.1"
8088
8088
-
sources."commitizen-4.2.1"
8394
8394
+
sources."commitizen-4.2.4"
8089
8395
sources."commondir-1.0.1"
8090
8090
-
(sources."compare-func-2.0.0" // {
8091
8091
-
dependencies = [
8092
8092
-
sources."dot-prop-5.3.0"
8093
8093
-
sources."is-obj-2.0.0"
8094
8094
-
];
8095
8095
-
})
8396
8396
+
sources."compare-func-2.0.0"
8096
8397
sources."component-emitter-1.3.0"
8097
8398
sources."concat-map-0.0.1"
8098
8399
(sources."configstore-3.1.5" // {
8099
8400
dependencies = [
8401
8401
+
sources."dot-prop-4.2.1"
8402
8402
+
sources."is-obj-1.0.1"
8100
8403
sources."make-dir-1.3.0"
8101
8404
sources."pify-3.0.0"
8102
8405
];
8103
8406
})
8104
8104
-
sources."conventional-changelog-angular-5.0.11"
8105
8105
-
(sources."conventional-changelog-writer-4.0.17" // {
8407
8407
+
sources."conventional-changelog-angular-5.0.13"
8408
8408
+
sources."conventional-changelog-conventionalcommits-4.4.0"
8409
8409
+
(sources."conventional-changelog-writer-4.1.0" // {
8106
8410
dependencies = [
8107
8411
sources."split-1.0.1"
8108
8412
];
8109
8413
})
8110
8414
sources."conventional-commit-types-3.0.0"
8111
8111
-
sources."conventional-commits-filter-2.0.6"
8112
8112
-
sources."conventional-commits-parser-3.1.0"
8113
8113
-
sources."convert-source-map-1.7.0"
8415
8415
+
sources."conventional-commits-filter-2.0.7"
8416
8416
+
sources."conventional-commits-parser-3.2.2"
8417
8417
+
sources."convert-source-map-1.8.0"
8114
8418
sources."copy-descriptor-0.1.1"
8115
8115
-
(sources."core-js-compat-3.6.5" // {
8419
8419
+
(sources."core-js-compat-3.18.3" // {
8116
8420
dependencies = [
8117
8421
sources."semver-7.0.0"
8118
8422
];
8119
8423
})
8120
8120
-
sources."core-util-is-1.0.2"
8121
8121
-
sources."cosmiconfig-7.0.0"
8424
8424
+
sources."core-util-is-1.0.3"
8425
8425
+
sources."cosmiconfig-7.0.1"
8122
8426
sources."create-error-class-3.0.2"
8427
8427
+
sources."create-require-1.1.1"
8123
8428
(sources."cross-spawn-6.0.5" // {
8124
8429
dependencies = [
8125
8430
sources."semver-5.7.1"
···
8157
8462
sources."deprecation-2.3.1"
8158
8463
sources."detect-file-1.0.0"
8159
8464
sources."detect-indent-6.0.0"
8160
8160
-
sources."diff-3.5.0"
8465
8465
+
sources."diff-4.0.2"
8161
8466
sources."dir-glob-3.0.1"
8162
8162
-
sources."dot-prop-4.2.1"
8467
8467
+
sources."dot-prop-5.3.0"
8163
8468
sources."duplexer-0.1.2"
8164
8469
sources."duplexer2-0.1.4"
8165
8470
sources."duplexer3-0.1.4"
8166
8166
-
sources."electron-to-chromium-1.3.565"
8471
8471
+
sources."electron-to-chromium-1.3.873"
8167
8472
sources."emoji-regex-7.0.3"
8168
8473
sources."end-of-stream-1.4.4"
8169
8474
(sources."env-ci-4.5.2" // {
···
8171
8476
sources."cross-spawn-7.0.3"
8172
8477
sources."execa-3.4.0"
8173
8478
sources."get-stream-5.2.0"
8174
8174
-
sources."is-stream-2.0.0"
8479
8479
+
sources."is-stream-2.0.1"
8175
8480
sources."mimic-fn-2.1.0"
8176
8481
sources."npm-run-path-4.0.1"
8177
8482
sources."onetime-5.1.2"
···
8183
8488
];
8184
8489
})
8185
8490
sources."error-ex-1.3.2"
8186
8186
-
sources."es-abstract-1.17.6"
8491
8491
+
sources."es-abstract-1.19.1"
8187
8492
sources."es-to-primitive-1.2.1"
8188
8493
sources."es6-error-4.1.1"
8189
8189
-
sources."escalade-3.0.2"
8494
8494
+
sources."escalade-3.1.1"
8190
8495
sources."escape-string-regexp-1.0.5"
8191
8496
sources."esprima-4.0.1"
8192
8497
sources."esutils-2.0.3"
···
8222
8527
sources."extend-shallow-2.0.1"
8223
8528
];
8224
8529
})
8225
8225
-
(sources."fast-glob-3.2.4" // {
8530
8530
+
(sources."fast-glob-3.2.7" // {
8226
8531
dependencies = [
8227
8227
-
sources."braces-3.0.2"
8228
8228
-
sources."fill-range-7.0.1"
8229
8229
-
sources."glob-parent-5.1.1"
8230
8230
-
sources."is-number-7.0.0"
8231
8231
-
sources."micromatch-4.0.2"
8232
8232
-
sources."to-regex-range-5.0.1"
8532
8532
+
sources."glob-parent-5.1.2"
8233
8533
];
8234
8534
})
8235
8235
-
sources."fastq-1.8.0"
8535
8535
+
sources."fastq-1.13.0"
8236
8536
sources."figures-2.0.0"
8237
8537
sources."file-uri-to-path-1.0.0"
8238
8538
sources."fill-keys-1.0.2"
8239
8239
-
(sources."fill-range-4.0.0" // {
8240
8240
-
dependencies = [
8241
8241
-
sources."extend-shallow-2.0.1"
8242
8242
-
];
8243
8243
-
})
8539
8539
+
sources."fill-range-7.0.1"
8244
8540
sources."find-cache-dir-2.1.0"
8245
8245
-
sources."find-node-modules-2.0.0"
8541
8541
+
sources."find-node-modules-2.1.2"
8246
8542
sources."find-root-1.1.0"
8247
8543
sources."find-up-3.0.0"
8248
8544
sources."find-versions-3.2.0"
···
8251
8547
sources."commander-2.1.0"
8252
8548
];
8253
8549
})
8254
8254
-
sources."findup-sync-3.0.0"
8255
8255
-
(sources."flat-4.1.0" // {
8550
8550
+
sources."findup-sync-4.0.0"
8551
8551
+
(sources."flat-4.1.1" // {
8256
8552
dependencies = [
8257
8257
-
sources."is-buffer-2.0.4"
8553
8553
+
sources."is-buffer-2.0.5"
8258
8554
];
8259
8555
})
8260
8556
(sources."follow-redirects-1.5.10" // {
···
8276
8572
sources."form-data-0.1.4"
8277
8573
sources."fragment-cache-0.2.1"
8278
8574
sources."from2-2.3.0"
8279
8279
-
sources."fromentries-1.2.1"
8575
8575
+
sources."fromentries-1.3.2"
8280
8576
sources."fs-extra-8.1.0"
8281
8577
sources."fs-readdir-recursive-1.1.0"
8282
8578
sources."fs.realpath-1.0.0"
8283
8579
sources."fsevents-1.2.13"
8284
8580
sources."function-bind-1.1.1"
8285
8285
-
sources."gensync-1.0.0-beta.1"
8581
8581
+
sources."gensync-1.0.0-beta.2"
8286
8582
sources."get-caller-file-2.0.5"
8287
8583
sources."get-func-name-2.0.0"
8584
8584
+
sources."get-intrinsic-1.1.1"
8288
8585
sources."get-package-type-0.1.0"
8289
8586
sources."get-stream-4.1.0"
8587
8587
+
sources."get-symbol-description-1.0.0"
8290
8588
sources."get-value-2.0.6"
8291
8589
sources."ghooks-2.0.4"
8292
8590
(sources."git-log-parser-1.2.0" // {
···
8315
8613
sources."get-stream-3.0.0"
8316
8614
];
8317
8615
})
8318
8318
-
sources."graceful-fs-4.2.4"
8616
8616
+
sources."graceful-fs-4.2.8"
8319
8617
sources."graceful-readlink-1.0.1"
8320
8618
sources."growl-1.10.5"
8321
8321
-
(sources."handlebars-4.7.6" // {
8322
8322
-
dependencies = [
8323
8323
-
sources."source-map-0.6.1"
8324
8324
-
];
8325
8325
-
})
8619
8619
+
sources."handlebars-4.7.7"
8326
8620
sources."hard-rejection-2.1.0"
8327
8621
sources."has-1.0.3"
8622
8622
+
sources."has-bigints-1.0.1"
8328
8623
sources."has-flag-3.0.0"
8329
8329
-
sources."has-symbols-1.0.1"
8624
8624
+
sources."has-symbols-1.0.2"
8625
8625
+
sources."has-tostringtag-1.0.0"
8330
8626
sources."has-value-1.0.0"
8331
8627
(sources."has-values-1.0.0" // {
8332
8628
dependencies = [
8629
8629
+
(sources."is-number-3.0.0" // {
8630
8630
+
dependencies = [
8631
8631
+
sources."kind-of-3.2.2"
8632
8632
+
];
8633
8633
+
})
8333
8634
sources."kind-of-4.0.0"
8334
8635
];
8335
8636
})
8336
8336
-
(sources."hasha-5.2.0" // {
8637
8637
+
(sources."hasha-5.2.2" // {
8337
8638
dependencies = [
8338
8338
-
sources."is-stream-2.0.0"
8639
8639
+
sources."is-stream-2.0.1"
8339
8640
];
8340
8641
})
8341
8642
sources."hawk-1.1.1"
···
8343
8644
sources."hoek-0.9.1"
8344
8645
sources."homedir-polyfill-1.0.3"
8345
8646
sources."hook-std-2.0.0"
8346
8346
-
sources."hosted-git-info-2.8.8"
8647
8647
+
sources."hosted-git-info-2.8.9"
8347
8648
sources."html-escaper-2.0.2"
8348
8649
(sources."http-proxy-agent-3.0.0" // {
8349
8650
dependencies = [
8350
8350
-
sources."debug-4.2.0"
8651
8651
+
sources."debug-4.3.2"
8351
8652
sources."ms-2.1.2"
8352
8653
];
8353
8654
})
8354
8655
sources."http-signature-0.10.1"
8355
8656
(sources."https-proxy-agent-4.0.0" // {
8356
8657
dependencies = [
8357
8357
-
sources."debug-4.2.0"
8658
8658
+
sources."debug-4.3.2"
8358
8659
sources."ms-2.1.2"
8359
8660
];
8360
8661
})
···
8362
8663
sources."iconv-lite-0.4.24"
8363
8664
sources."ignore-5.1.8"
8364
8665
sources."ignore-by-default-1.0.1"
8365
8365
-
(sources."import-fresh-3.2.1" // {
8666
8666
+
(sources."import-fresh-3.3.0" // {
8366
8667
dependencies = [
8367
8668
sources."resolve-from-4.0.0"
8368
8669
];
···
8370
8671
sources."import-from-3.0.0"
8371
8672
sources."import-lazy-2.1.0"
8372
8673
sources."imurmurhash-0.1.4"
8373
8373
-
sources."in-publish-2.0.1"
8674
8674
+
sources."in-publish-2.0.0"
8374
8675
sources."indent-string-4.0.0"
8375
8676
sources."inflight-1.0.6"
8376
8677
sources."inherits-2.0.4"
8377
8377
-
sources."ini-1.3.5"
8678
8678
+
sources."ini-1.3.8"
8378
8679
sources."inquirer-6.5.2"
8680
8680
+
sources."internal-slot-1.0.3"
8379
8681
(sources."into-stream-5.1.1" // {
8380
8682
dependencies = [
8381
8683
sources."p-is-promise-3.0.0"
···
8385
8687
sources."invert-kv-2.0.0"
8386
8688
sources."is-accessor-descriptor-1.0.0"
8387
8689
sources."is-arrayish-0.2.1"
8690
8690
+
sources."is-bigint-1.0.4"
8388
8691
sources."is-binary-path-1.0.1"
8692
8692
+
sources."is-boolean-object-1.1.2"
8389
8693
sources."is-buffer-1.1.6"
8390
8390
-
sources."is-callable-1.2.1"
8694
8694
+
sources."is-callable-1.2.4"
8391
8695
sources."is-ci-1.2.1"
8696
8696
+
sources."is-core-module-2.8.0"
8392
8697
sources."is-data-descriptor-1.0.0"
8393
8393
-
sources."is-date-object-1.0.2"
8698
8698
+
sources."is-date-object-1.0.5"
8394
8699
sources."is-descriptor-1.0.2"
8395
8395
-
sources."is-directory-0.3.1"
8396
8700
sources."is-extendable-0.1.1"
8397
8701
sources."is-extglob-2.1.1"
8398
8702
sources."is-fullwidth-code-point-2.0.0"
8399
8399
-
sources."is-glob-4.0.1"
8703
8703
+
sources."is-glob-4.0.3"
8400
8704
sources."is-installed-globally-0.1.0"
8705
8705
+
sources."is-negative-zero-2.0.1"
8401
8706
sources."is-npm-1.0.0"
8402
8402
-
(sources."is-number-3.0.0" // {
8403
8403
-
dependencies = [
8404
8404
-
sources."kind-of-3.2.2"
8405
8405
-
];
8406
8406
-
})
8407
8407
-
sources."is-obj-1.0.1"
8408
8408
-
sources."is-object-1.0.1"
8707
8707
+
sources."is-number-7.0.0"
8708
8708
+
sources."is-number-object-1.0.6"
8709
8709
+
sources."is-obj-2.0.0"
8710
8710
+
sources."is-object-1.0.2"
8409
8711
sources."is-path-inside-1.0.1"
8410
8712
sources."is-plain-obj-1.1.0"
8411
8713
sources."is-plain-object-2.0.4"
8412
8714
sources."is-redirect-1.0.0"
8413
8413
-
sources."is-regex-1.1.1"
8715
8715
+
sources."is-regex-1.1.4"
8414
8716
sources."is-retry-allowed-1.2.0"
8717
8717
+
sources."is-shared-array-buffer-1.0.1"
8415
8718
sources."is-stream-1.1.0"
8416
8416
-
sources."is-symbol-1.0.3"
8719
8719
+
sources."is-string-1.0.7"
8720
8720
+
sources."is-symbol-1.0.4"
8417
8721
sources."is-text-path-1.0.1"
8418
8722
sources."is-typedarray-1.0.0"
8419
8723
sources."is-utf8-0.2.1"
8724
8724
+
sources."is-weakref-1.0.1"
8420
8725
sources."is-windows-1.0.2"
8421
8726
sources."isarray-1.0.0"
8422
8727
sources."isexe-2.0.0"
···
8428
8733
(sources."istanbul-lib-processinfo-2.0.2" // {
8429
8734
dependencies = [
8430
8735
sources."cross-spawn-7.0.3"
8431
8431
-
sources."istanbul-lib-coverage-3.0.0"
8736
8736
+
sources."istanbul-lib-coverage-3.2.0"
8432
8737
sources."make-dir-3.1.0"
8433
8738
sources."path-key-3.1.1"
8434
8739
sources."shebang-command-2.0.0"
8435
8740
sources."shebang-regex-3.0.0"
8436
8436
-
sources."uuid-3.4.0"
8437
8741
sources."which-2.0.2"
8438
8742
];
8439
8743
})
8440
8744
(sources."istanbul-lib-report-3.0.0" // {
8441
8745
dependencies = [
8442
8746
sources."has-flag-4.0.0"
8443
8443
-
sources."istanbul-lib-coverage-3.0.0"
8747
8747
+
sources."istanbul-lib-coverage-3.2.0"
8444
8748
sources."make-dir-3.1.0"
8445
8749
sources."supports-color-7.2.0"
8446
8750
];
8447
8751
})
8448
8448
-
(sources."istanbul-lib-source-maps-4.0.0" // {
8752
8752
+
(sources."istanbul-lib-source-maps-4.0.1" // {
8449
8753
dependencies = [
8450
8450
-
sources."debug-4.2.0"
8451
8451
-
sources."istanbul-lib-coverage-3.0.0"
8754
8754
+
sources."debug-4.3.2"
8755
8755
+
sources."istanbul-lib-coverage-3.2.0"
8452
8756
sources."ms-2.1.2"
8453
8453
-
sources."source-map-0.6.1"
8454
8757
];
8455
8758
})
8456
8456
-
sources."istanbul-reports-3.0.2"
8759
8759
+
sources."istanbul-reports-3.0.5"
8457
8760
sources."java-properties-1.0.2"
8458
8761
sources."js-tokens-4.0.0"
8459
8762
sources."js-yaml-3.13.1"
···
8461
8764
sources."json-parse-better-errors-1.0.2"
8462
8765
sources."json-parse-even-better-errors-2.3.1"
8463
8766
sources."json-stringify-safe-5.0.1"
8464
8464
-
sources."json5-2.1.3"
8767
8767
+
sources."json5-2.2.0"
8465
8768
sources."jsonfile-4.0.0"
8466
8769
sources."jsonify-0.0.0"
8467
8770
sources."jsonparse-1.3.1"
8468
8468
-
sources."just-extend-4.1.0"
8771
8771
+
sources."just-extend-4.2.1"
8469
8772
sources."kind-of-6.0.3"
8470
8773
sources."latest-version-3.1.0"
8471
8774
sources."lcid-2.0.0"
···
8480
8783
];
8481
8784
})
8482
8785
sources."locate-path-3.0.0"
8483
8483
-
sources."lodash-4.17.20"
8786
8786
+
sources."lodash-4.17.21"
8484
8787
sources."lodash._baseclone-4.5.7"
8485
8788
sources."lodash.capitalize-4.2.1"
8486
8789
sources."lodash.clone-4.5.0"
···
8492
8795
sources."lodash.isstring-4.0.1"
8493
8796
sources."lodash.map-4.6.0"
8494
8797
sources."lodash.set-4.3.2"
8495
8495
-
sources."lodash.toarray-4.4.0"
8496
8798
sources."lodash.uniq-4.5.0"
8497
8799
sources."lodash.uniqby-4.7.0"
8498
8800
sources."log-symbols-2.2.0"
···
8501
8803
sources."loose-envify-1.4.0"
8502
8804
sources."lowercase-keys-1.0.1"
8503
8805
sources."lru-cache-4.1.5"
8504
8504
-
sources."macos-release-2.4.1"
8806
8806
+
sources."macos-release-2.5.0"
8505
8807
(sources."make-dir-2.1.0" // {
8506
8808
dependencies = [
8507
8809
sources."semver-5.7.1"
8508
8810
];
8509
8811
})
8812
8812
+
sources."make-error-1.3.6"
8510
8813
sources."manage-path-2.0.0"
8511
8814
sources."map-age-cleaner-0.1.3"
8512
8815
sources."map-cache-0.2.2"
8513
8513
-
sources."map-obj-4.1.0"
8816
8816
+
sources."map-obj-4.3.0"
8514
8817
sources."map-visit-1.0.0"
8515
8515
-
sources."marked-0.6.3"
8818
8818
+
sources."marked-0.7.0"
8516
8819
sources."marked-terminal-3.3.0"
8517
8820
sources."md5-2.3.0"
8518
8821
(sources."mem-4.3.0" // {
···
8520
8823
sources."mimic-fn-2.1.0"
8521
8824
];
8522
8825
})
8523
8523
-
(sources."meow-7.1.1" // {
8826
8826
+
(sources."meow-8.1.2" // {
8524
8827
dependencies = [
8525
8828
sources."find-up-4.1.0"
8829
8829
+
sources."hosted-git-info-4.0.2"
8526
8830
sources."locate-path-5.0.0"
8831
8831
+
sources."lru-cache-6.0.0"
8832
8832
+
sources."normalize-package-data-3.0.3"
8527
8833
sources."p-locate-4.1.0"
8528
8834
sources."path-exists-4.0.0"
8529
8835
(sources."read-pkg-5.2.0" // {
8530
8836
dependencies = [
8837
8837
+
sources."hosted-git-info-2.8.9"
8838
8838
+
sources."normalize-package-data-2.5.0"
8839
8839
+
sources."semver-5.7.1"
8531
8840
sources."type-fest-0.6.0"
8532
8841
];
8533
8842
})
···
8536
8845
sources."type-fest-0.8.1"
8537
8846
];
8538
8847
})
8539
8539
-
sources."type-fest-0.13.1"
8540
8540
-
sources."yargs-parser-18.1.3"
8848
8848
+
sources."semver-7.3.5"
8849
8849
+
sources."type-fest-0.18.1"
8850
8850
+
sources."yallist-4.0.0"
8851
8851
+
sources."yargs-parser-20.2.9"
8541
8852
];
8542
8853
})
8543
8543
-
sources."merge-1.2.1"
8854
8854
+
sources."merge-2.1.1"
8544
8855
sources."merge-descriptors-1.0.1"
8545
8856
sources."merge-stream-2.0.0"
8546
8857
sources."merge2-1.4.1"
8547
8547
-
sources."micromatch-3.1.10"
8858
8858
+
sources."micromatch-4.0.4"
8548
8859
sources."mime-1.2.11"
8549
8860
sources."mime-types-1.0.2"
8550
8861
sources."mimic-fn-1.2.0"
···
8565
8876
(sources."mocha-6.2.0" // {
8566
8877
dependencies = [
8567
8878
sources."debug-3.2.6"
8879
8879
+
sources."diff-3.5.0"
8568
8880
sources."glob-7.1.3"
8569
8881
sources."ms-2.1.1"
8882
8882
+
sources."object.assign-4.1.0"
8570
8883
sources."strip-json-comments-2.0.1"
8571
8884
sources."supports-color-6.0.0"
8572
8885
];
8573
8886
})
8574
8574
-
(sources."mocha-junit-reporter-1.23.3" // {
8887
8887
+
(sources."mocha-junit-reporter-1.18.0" // {
8575
8888
dependencies = [
8576
8889
sources."strip-ansi-4.0.0"
8577
8890
];
8578
8891
})
8579
8892
(sources."mocha-multi-reporters-1.1.7" // {
8580
8893
dependencies = [
8581
8581
-
sources."debug-3.2.6"
8582
8582
-
sources."ms-2.1.2"
8894
8894
+
sources."debug-3.2.7"
8895
8895
+
sources."ms-2.1.3"
8583
8896
];
8584
8897
})
8585
8898
sources."modify-values-1.0.1"
8586
8899
sources."module-not-found-error-1.0.1"
8587
8900
sources."ms-2.0.0"
8588
8901
sources."mute-stream-0.0.7"
8589
8589
-
sources."nan-2.14.1"
8902
8902
+
sources."nan-2.15.0"
8590
8903
sources."nanomatch-1.2.13"
8591
8904
sources."neo-async-2.6.2"
8592
8905
sources."nerf-dart-1.0.0"
···
8596
8909
sources."lolex-5.1.2"
8597
8910
];
8598
8911
})
8599
8599
-
sources."node-emoji-1.10.0"
8912
8912
+
sources."node-emoji-1.11.0"
8600
8913
(sources."node-environment-flags-1.0.5" // {
8601
8914
dependencies = [
8602
8915
sources."semver-5.7.1"
8603
8916
];
8604
8917
})
8605
8605
-
sources."node-fetch-2.6.1"
8918
8918
+
sources."node-fetch-2.6.5"
8606
8919
sources."node-modules-regexp-1.0.0"
8607
8920
sources."node-preload-0.2.1"
8608
8608
-
sources."node-releases-1.1.61"
8921
8921
+
sources."node-releases-2.0.0"
8609
8922
sources."node-uuid-1.4.8"
8610
8923
(sources."nodemon-1.19.1" // {
8611
8924
dependencies = [
8612
8612
-
sources."debug-3.2.6"
8613
8613
-
sources."ms-2.1.2"
8925
8925
+
sources."debug-3.2.7"
8926
8926
+
sources."ms-2.1.3"
8614
8927
sources."semver-5.7.1"
8615
8928
];
8616
8929
})
···
8621
8934
];
8622
8935
})
8623
8936
sources."normalize-path-3.0.0"
8624
8624
-
sources."normalize-url-4.5.0"
8625
8625
-
sources."npm-6.14.8"
8937
8937
+
sources."normalize-url-4.5.1"
8938
8938
+
sources."npm-6.14.15"
8626
8939
sources."npm-run-path-2.0.2"
8627
8940
sources."number-is-nan-1.0.1"
8628
8941
(sources."nyc-15.1.0" // {
8629
8942
dependencies = [
8630
8630
-
sources."ansi-regex-5.0.0"
8631
8631
-
sources."ansi-styles-4.2.1"
8943
8943
+
sources."ansi-regex-5.0.1"
8944
8944
+
sources."ansi-styles-4.3.0"
8632
8945
sources."cliui-6.0.0"
8633
8946
sources."color-convert-2.0.1"
8634
8947
sources."color-name-1.1.4"
8635
8948
sources."emoji-regex-8.0.0"
8636
8636
-
sources."find-cache-dir-3.3.1"
8949
8949
+
sources."find-cache-dir-3.3.2"
8637
8950
sources."find-up-4.1.0"
8638
8638
-
sources."glob-7.1.6"
8951
8951
+
sources."glob-7.2.0"
8639
8952
sources."is-fullwidth-code-point-3.0.0"
8640
8640
-
sources."istanbul-lib-coverage-3.0.0"
8953
8953
+
sources."istanbul-lib-coverage-3.2.0"
8641
8954
sources."istanbul-lib-instrument-4.0.3"
8642
8955
sources."locate-path-5.0.0"
8643
8956
sources."make-dir-3.1.0"
8644
8957
sources."p-locate-4.1.0"
8645
8958
sources."path-exists-4.0.0"
8646
8959
sources."pkg-dir-4.2.0"
8647
8647
-
sources."string-width-4.2.0"
8648
8648
-
sources."strip-ansi-6.0.0"
8960
8960
+
sources."string-width-4.2.3"
8961
8961
+
sources."strip-ansi-6.0.1"
8649
8962
sources."test-exclude-6.0.0"
8650
8963
sources."wrap-ansi-6.2.0"
8651
8964
sources."yargs-15.4.1"
···
8666
8979
sources."kind-of-3.2.2"
8667
8980
];
8668
8981
})
8669
8669
-
sources."object-inspect-1.8.0"
8982
8982
+
sources."object-inspect-1.11.0"
8670
8983
sources."object-keys-1.1.1"
8671
8984
sources."object-visit-1.0.1"
8672
8672
-
sources."object.assign-4.1.0"
8673
8673
-
sources."object.getownpropertydescriptors-2.1.0"
8985
8985
+
sources."object.assign-4.1.2"
8986
8986
+
sources."object.getownpropertydescriptors-2.1.3"
8674
8987
sources."object.pick-1.3.0"
8675
8988
sources."octokit-pagination-methods-1.1.0"
8676
8989
sources."once-1.4.0"
···
8697
9010
sources."p-locate-3.0.0"
8698
9011
sources."p-map-3.0.0"
8699
9012
sources."p-reduce-2.1.0"
8700
8700
-
sources."p-retry-4.2.0"
9013
9013
+
sources."p-retry-4.6.1"
8701
9014
sources."p-try-2.2.0"
8702
9015
sources."package-hash-4.0.0"
8703
9016
(sources."package-json-4.0.1" // {
···
8707
9020
})
8708
9021
sources."pad-right-0.2.2"
8709
9022
sources."parent-module-1.0.1"
8710
8710
-
sources."parse-json-5.1.0"
9023
9023
+
sources."parse-json-5.2.0"
8711
9024
sources."parse-passwd-1.0.0"
8712
9025
sources."pascalcase-0.1.1"
8713
9026
sources."path-dirname-1.0.2"
···
8715
9028
sources."path-is-absolute-1.0.1"
8716
9029
sources."path-is-inside-1.0.2"
8717
9030
sources."path-key-2.0.1"
8718
8718
-
sources."path-parse-1.0.6"
9031
9031
+
sources."path-parse-1.0.7"
8719
9032
(sources."path-to-regexp-1.8.0" // {
8720
9033
dependencies = [
8721
9034
sources."isarray-0.0.1"
8722
9035
];
8723
9036
})
8724
9037
sources."path-type-4.0.0"
8725
8725
-
sources."pathval-1.1.0"
8726
8726
-
sources."picomatch-2.2.2"
9038
9038
+
sources."pathval-1.1.1"
9039
9039
+
sources."picocolors-1.0.0"
9040
9040
+
sources."picomatch-2.3.0"
8727
9041
sources."pify-4.0.1"
8728
9042
sources."pirates-4.0.1"
8729
9043
(sources."pkg-conf-2.1.0" // {
···
8740
9054
sources."prepend-http-1.0.4"
8741
9055
sources."process-nextick-args-2.0.1"
8742
9056
sources."process-on-spawn-1.0.0"
8743
8743
-
sources."proxyquire-2.1.3"
9057
9057
+
(sources."proxyquire-2.1.0" // {
9058
9058
+
dependencies = [
9059
9059
+
sources."resolve-1.8.1"
9060
9060
+
];
9061
9061
+
})
8744
9062
sources."pseudomap-1.0.2"
8745
9063
sources."psl-1.8.0"
8746
9064
sources."pstree.remy-1.1.8"
···
8748
9066
sources."punycode-2.1.1"
8749
9067
sources."q-1.5.1"
8750
9068
sources."qs-1.2.2"
9069
9069
+
sources."queue-microtask-1.2.3"
8751
9070
sources."quick-lru-4.0.1"
8752
9071
(sources."rc-1.2.8" // {
8753
9072
dependencies = [
···
8762
9081
})
8763
9082
sources."read-pkg-up-4.0.0"
8764
9083
sources."readable-stream-2.3.7"
8765
8765
-
sources."readdirp-2.2.1"
9084
9084
+
(sources."readdirp-2.2.1" // {
9085
9085
+
dependencies = [
9086
9086
+
sources."braces-2.3.2"
9087
9087
+
sources."extend-shallow-2.0.1"
9088
9088
+
sources."fill-range-4.0.0"
9089
9089
+
sources."is-number-3.0.0"
9090
9090
+
sources."kind-of-3.2.2"
9091
9091
+
sources."micromatch-3.1.10"
9092
9092
+
sources."to-regex-range-2.1.1"
9093
9093
+
];
9094
9094
+
})
8766
9095
sources."redent-3.0.0"
8767
9096
sources."redeyed-2.1.1"
8768
8768
-
sources."regenerate-1.4.1"
8769
8769
-
sources."regenerate-unicode-properties-8.2.0"
8770
8770
-
sources."regenerator-runtime-0.13.7"
9097
9097
+
sources."regenerate-1.4.2"
9098
9098
+
sources."regenerate-unicode-properties-9.0.0"
9099
9099
+
sources."regenerator-runtime-0.13.9"
8771
9100
sources."regenerator-transform-0.14.5"
8772
9101
sources."regex-not-1.0.2"
8773
8773
-
sources."regexpu-core-4.7.0"
9102
9102
+
sources."regexpu-core-4.8.0"
8774
9103
sources."registry-auth-token-3.4.0"
8775
9104
sources."registry-url-3.1.0"
8776
9105
sources."regjsgen-0.5.2"
8777
8777
-
(sources."regjsparser-0.6.4" // {
9106
9106
+
(sources."regjsparser-0.7.0" // {
8778
9107
dependencies = [
8779
9108
sources."jsesc-0.5.0"
8780
9109
];
8781
9110
})
8782
9111
sources."release-zalgo-1.0.0"
8783
9112
sources."remove-trailing-separator-1.1.0"
8784
8784
-
sources."repeat-element-1.1.3"
9113
9113
+
sources."repeat-element-1.1.4"
8785
9114
sources."repeat-string-1.6.1"
8786
9115
sources."request-2.42.0"
8787
9116
sources."require-directory-2.1.1"
8788
9117
sources."require-main-filename-2.0.0"
8789
8789
-
sources."resolve-1.17.0"
9118
9118
+
sources."resolve-1.20.0"
8790
9119
sources."resolve-dir-1.0.1"
8791
9120
sources."resolve-from-5.0.0"
8792
9121
sources."resolve-global-1.0.0"
···
8794
9123
sources."restore-cursor-2.0.0"
8795
9124
sources."resumer-0.0.0"
8796
9125
sources."ret-0.1.15"
8797
8797
-
sources."retry-0.12.0"
9126
9126
+
sources."retry-0.13.1"
8798
9127
sources."reusify-1.0.4"
8799
9128
sources."right-pad-1.0.1"
8800
9129
sources."rimraf-3.0.2"
8801
9130
sources."run-async-2.4.1"
8802
8802
-
sources."run-parallel-1.1.9"
8803
8803
-
sources."rxjs-6.6.3"
9131
9131
+
sources."run-parallel-1.2.0"
9132
9132
+
(sources."rxjs-6.6.7" // {
9133
9133
+
dependencies = [
9134
9134
+
sources."tslib-1.14.1"
9135
9135
+
];
9136
9136
+
})
8804
9137
sources."safe-buffer-5.1.2"
8805
9138
sources."safe-regex-1.1.0"
8806
9139
sources."safer-buffer-2.1.2"
8807
8807
-
(sources."semantic-release-15.13.18" // {
9140
9140
+
(sources."semantic-release-15.14.0" // {
8808
9141
dependencies = [
8809
8809
-
sources."cosmiconfig-5.2.1"
8810
8810
-
sources."debug-4.2.0"
9142
9142
+
sources."ansi-regex-5.0.1"
9143
9143
+
sources."ansi-styles-4.3.0"
9144
9144
+
sources."cliui-6.0.0"
9145
9145
+
sources."color-convert-2.0.1"
9146
9146
+
sources."color-name-1.1.4"
9147
9147
+
sources."cosmiconfig-6.0.0"
9148
9148
+
sources."cross-spawn-7.0.3"
9149
9149
+
sources."debug-4.3.2"
9150
9150
+
sources."emoji-regex-8.0.0"
9151
9151
+
sources."execa-3.4.0"
8811
9152
sources."figures-3.2.0"
8812
9153
sources."find-up-4.1.0"
8813
9154
sources."get-stream-5.2.0"
8814
8814
-
(sources."import-fresh-2.0.0" // {
8815
8815
-
dependencies = [
8816
8816
-
sources."resolve-from-3.0.0"
8817
8817
-
];
8818
8818
-
})
9155
9155
+
sources."hosted-git-info-3.0.8"
9156
9156
+
sources."is-fullwidth-code-point-3.0.0"
9157
9157
+
sources."is-stream-2.0.1"
8819
9158
sources."locate-path-5.0.0"
9159
9159
+
sources."lru-cache-6.0.0"
9160
9160
+
sources."mimic-fn-2.1.0"
8820
9161
sources."ms-2.1.2"
9162
9162
+
sources."npm-run-path-4.0.1"
9163
9163
+
sources."onetime-5.1.2"
9164
9164
+
sources."p-finally-2.0.1"
8821
9165
sources."p-locate-4.1.0"
8822
8822
-
sources."parse-json-4.0.0"
8823
9166
sources."path-exists-4.0.0"
8824
8824
-
(sources."read-pkg-5.2.0" // {
8825
8825
-
dependencies = [
8826
8826
-
sources."parse-json-5.1.0"
8827
8827
-
sources."type-fest-0.6.0"
8828
8828
-
];
8829
8829
-
})
8830
8830
-
sources."read-pkg-up-6.0.0"
8831
8831
-
sources."type-fest-0.5.2"
9167
9167
+
sources."path-key-3.1.1"
9168
9168
+
sources."read-pkg-5.2.0"
9169
9169
+
sources."read-pkg-up-7.0.1"
9170
9170
+
sources."shebang-command-2.0.0"
9171
9171
+
sources."shebang-regex-3.0.0"
9172
9172
+
sources."string-width-4.2.3"
9173
9173
+
sources."strip-ansi-6.0.1"
9174
9174
+
sources."type-fest-0.6.0"
9175
9175
+
sources."which-2.0.2"
9176
9176
+
sources."wrap-ansi-6.2.0"
9177
9177
+
sources."yallist-4.0.0"
9178
9178
+
sources."yargs-15.4.1"
9179
9179
+
sources."yargs-parser-18.1.3"
8832
9180
];
8833
9181
})
8834
9182
sources."semver-6.3.0"
···
8846
9194
})
8847
9195
sources."shebang-command-1.2.0"
8848
9196
sources."shebang-regex-1.0.0"
8849
8849
-
sources."signal-exit-3.0.3"
9197
9197
+
sources."side-channel-1.0.4"
9198
9198
+
sources."signal-exit-3.0.5"
8850
9199
sources."signale-1.4.0"
8851
8851
-
sources."sinon-6.3.5"
9200
9200
+
(sources."sinon-6.3.4" // {
9201
9201
+
dependencies = [
9202
9202
+
sources."diff-3.5.0"
9203
9203
+
];
9204
9204
+
})
8852
9205
sources."slash-2.0.0"
8853
9206
(sources."snapdragon-0.8.2" // {
8854
9207
dependencies = [
···
8866
9219
})
8867
9220
sources."is-descriptor-0.1.6"
8868
9221
sources."kind-of-5.1.0"
9222
9222
+
sources."source-map-0.5.7"
8869
9223
];
8870
9224
})
8871
9225
(sources."snapdragon-node-2.1.1" // {
···
8879
9233
];
8880
9234
})
8881
9235
sources."sntp-0.2.4"
8882
8882
-
sources."source-map-0.5.7"
9236
9236
+
sources."source-map-0.6.1"
8883
9237
sources."source-map-resolve-0.5.3"
8884
8884
-
(sources."source-map-support-0.5.19" // {
8885
8885
-
dependencies = [
8886
8886
-
sources."source-map-0.6.1"
8887
8887
-
];
8888
8888
-
})
8889
8889
-
sources."source-map-url-0.4.0"
9238
9238
+
sources."source-map-support-0.5.20"
9239
9239
+
sources."source-map-url-0.4.1"
8890
9240
sources."spawn-command-0.0.2"
8891
9241
sources."spawn-error-forwarder-1.0.0"
8892
9242
(sources."spawn-wrap-2.0.0" // {
···
8898
9248
sources."spdx-correct-3.1.1"
8899
9249
sources."spdx-exceptions-2.3.0"
8900
9250
sources."spdx-expression-parse-3.0.1"
8901
8901
-
sources."spdx-license-ids-3.0.5"
9251
9251
+
sources."spdx-license-ids-3.0.10"
8902
9252
sources."split-0.2.10"
8903
9253
sources."split-string-3.1.0"
8904
8904
-
(sources."split2-2.2.0" // {
9254
9254
+
(sources."split2-3.2.2" // {
8905
9255
dependencies = [
8906
8906
-
sources."through2-2.0.5"
9256
9256
+
sources."readable-stream-3.6.0"
8907
9257
];
8908
9258
})
8909
9259
sources."sprintf-js-1.0.3"
···
8931
9281
sources."strip-ansi-4.0.0"
8932
9282
];
8933
9283
})
8934
8934
-
sources."string.prototype.trimend-1.0.1"
8935
8935
-
sources."string.prototype.trimstart-1.0.1"
9284
9284
+
sources."string.prototype.trimend-1.0.4"
9285
9285
+
sources."string.prototype.trimstart-1.0.4"
8936
9286
sources."string_decoder-1.1.1"
8937
9287
sources."stringstream-0.0.6"
8938
9288
(sources."strip-ansi-5.2.0" // {
···
8968
9318
sources."test-exclude-5.2.3"
8969
9319
sources."text-extensions-1.9.0"
8970
9320
sources."through-2.3.8"
8971
8971
-
sources."through2-3.0.2"
9321
9321
+
(sources."through2-4.0.2" // {
9322
9322
+
dependencies = [
9323
9323
+
sources."readable-stream-3.6.0"
9324
9324
+
];
9325
9325
+
})
8972
9326
sources."timed-out-4.0.1"
8973
9327
sources."tmp-0.0.33"
8974
9328
sources."to-fast-properties-2.0.0"
···
8978
9332
];
8979
9333
})
8980
9334
sources."to-regex-3.0.2"
8981
8981
-
sources."to-regex-range-2.1.1"
9335
9335
+
sources."to-regex-range-5.0.1"
8982
9336
sources."touch-3.1.0"
8983
9337
sources."tough-cookie-4.0.0"
9338
9338
+
sources."tr46-0.0.3"
8984
9339
sources."traverse-0.6.6"
8985
8985
-
sources."trim-newlines-3.0.0"
8986
8986
-
sources."trim-off-newlines-1.0.1"
8987
8987
-
sources."tslib-1.13.0"
9340
9340
+
sources."trim-newlines-3.0.1"
9341
9341
+
sources."ts-node-9.1.1"
9342
9342
+
sources."tslib-2.3.1"
8988
9343
sources."tunnel-agent-0.4.3"
8989
9344
sources."type-detect-4.0.8"
8990
9345
sources."type-fest-0.8.1"
8991
9346
sources."typedarray-to-buffer-3.1.5"
8992
8992
-
sources."uglify-js-3.10.4"
8993
8993
-
sources."undefsafe-2.0.3"
8994
8994
-
sources."unicode-canonical-property-names-ecmascript-1.0.4"
8995
8995
-
sources."unicode-match-property-ecmascript-1.0.4"
8996
8996
-
sources."unicode-match-property-value-ecmascript-1.2.0"
8997
8997
-
sources."unicode-property-aliases-ecmascript-1.1.0"
9347
9347
+
sources."typescript-4.4.4"
9348
9348
+
sources."uglify-js-3.14.2"
9349
9349
+
sources."unbox-primitive-1.0.1"
9350
9350
+
sources."undefsafe-2.0.5"
9351
9351
+
sources."unicode-canonical-property-names-ecmascript-2.0.0"
9352
9352
+
sources."unicode-match-property-ecmascript-2.0.0"
9353
9353
+
sources."unicode-match-property-value-ecmascript-2.0.0"
9354
9354
+
sources."unicode-property-aliases-ecmascript-2.0.0"
8998
9355
sources."union-value-1.0.1"
8999
9356
sources."unique-string-1.0.0"
9000
9357
sources."universal-user-agent-4.0.1"
···
9018
9375
sources."urlgrey-0.4.0"
9019
9376
sources."use-3.1.1"
9020
9377
sources."util-deprecate-1.0.2"
9021
9021
-
sources."uuid-3.3.2"
9378
9378
+
sources."uuid-3.4.0"
9022
9379
sources."validate-npm-package-license-3.0.4"
9380
9380
+
sources."webidl-conversions-3.0.1"
9381
9381
+
sources."whatwg-url-5.0.0"
9023
9382
sources."which-1.3.1"
9383
9383
+
sources."which-boxed-primitive-1.0.2"
9024
9384
sources."which-module-2.0.0"
9025
9385
sources."wide-align-1.1.3"
9026
9386
sources."widest-line-2.0.1"
···
9040
9400
sources."xdg-basedir-3.0.0"
9041
9401
sources."xml-1.0.1"
9042
9402
sources."xtend-4.0.2"
9043
9043
-
sources."y18n-4.0.0"
9403
9403
+
sources."y18n-4.0.3"
9044
9404
sources."yallist-2.1.2"
9045
9045
-
sources."yaml-1.10.0"
9405
9405
+
sources."yaml-1.10.2"
9046
9406
(sources."yargs-13.2.2" // {
9047
9407
dependencies = [
9048
9408
sources."string-width-3.1.0"
···
9057
9417
sources."yargs-parser-11.1.1"
9058
9418
];
9059
9419
})
9420
9420
+
sources."yn-3.1.1"
9060
9421
];
9061
9422
buildInputs = globalBuildInputs;
9062
9423
meta = {