tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
elmPackages: updates
Marek Fajkus
5 years ago
c7cb9abf
cf8ad5ef
+1099
-1911
5 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
elm
default.nix
packages
generate-node-packages.sh
node-composition.nix
node-env.nix
node-packages.nix
+4
-5
pkgs/development/compilers/elm/default.nix
···
104
104
homepage = "https://github.com/zwilias/elm-json";
105
105
license = licenses.mit;
106
106
maintainers = [ maintainers.turbomack ];
107
107
-
platforms = platforms.linux;
108
107
};
109
108
};
110
109
};
···
117
116
};
118
117
in with hsPkgs.elmPkgs; {
119
118
120
120
-
elm-test = patchBinwrap [elmi-to-json]
119
119
+
elm-test =
121
120
nodePkgs.elm-test // {
122
121
meta = with lib; {
123
122
description = "Runs elm-test suites from Node.js";
···
162
161
};
163
162
});
164
163
165
165
-
create-elm-app = patchNpmElm (patchBinwrap [elmi-to-json]
166
166
-
nodePkgs.create-elm-app) // {
164
164
+
create-elm-app = patchNpmElm
165
165
+
nodePkgs.create-elm-app // {
167
166
meta = with lib; {
168
167
description = "Create Elm apps with no build configuration";
169
168
homepage = "https://github.com/halfzebra/create-elm-app";
···
172
171
};
173
172
};
174
173
175
175
-
elm-review = patchBinwrap [elmRustPackages.elm-json]
174
174
+
elm-review =
176
175
nodePkgs.elm-review // {
177
176
meta = with lib; {
178
177
description = "Analyzes Elm projects, to help find mistakes before your users find them";
+1
-3
pkgs/development/compilers/elm/packages/generate-node-packages.sh
···
10
10
-i node-packages.json \
11
11
-o node-packages.nix \
12
12
-c node-composition.nix \
13
13
-
# TODO: Switch to the commented out version once nodejs package set gets updated to new node2nix
14
14
-
-e node-env.nix
15
15
-
# --no-copy-node-env -e ../../../node-packages/node-env.nix
13
13
+
--no-copy-node-env -e ../../../node-packages/node-env.nix
+5
-5
pkgs/development/compilers/elm/packages/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;
5
5
}, system ? builtins.currentSystem, nodejs ? pkgs."nodejs-12_x"}:
6
6
7
7
let
8
8
-
nodeEnv = import ./node-env.nix {
9
9
-
inherit (pkgs) lib stdenv python2 utillinux runCommand writeTextFile;
10
10
-
inherit nodejs;
8
8
+
nodeEnv = import ../../../node-packages/node-env.nix {
9
9
+
inherit (pkgs) stdenv lib python2 runCommand writeTextFile;
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
}
-542
pkgs/development/compilers/elm/packages/node-env.nix
···
1
1
-
# This file originates from node2nix
2
2
-
3
3
-
{lib, stdenv, nodejs, python2, utillinux, libtool, runCommand, writeTextFile}:
4
4
-
5
5
-
let
6
6
-
python = if nodejs ? python then nodejs.python else python2;
7
7
-
8
8
-
# Create a tar wrapper that filters all the 'Ignoring unknown extended header keyword' noise
9
9
-
tarWrapper = runCommand "tarWrapper" {} ''
10
10
-
mkdir -p $out/bin
11
11
-
12
12
-
cat > $out/bin/tar <<EOF
13
13
-
#! ${stdenv.shell} -e
14
14
-
$(type -p tar) "\$@" --warning=no-unknown-keyword --delay-directory-restore
15
15
-
EOF
16
16
-
17
17
-
chmod +x $out/bin/tar
18
18
-
'';
19
19
-
20
20
-
# Function that generates a TGZ file from a NPM project
21
21
-
buildNodeSourceDist =
22
22
-
{ name, version, src, ... }:
23
23
-
24
24
-
stdenv.mkDerivation {
25
25
-
name = "node-tarball-${name}-${version}";
26
26
-
inherit src;
27
27
-
buildInputs = [ nodejs ];
28
28
-
buildPhase = ''
29
29
-
export HOME=$TMPDIR
30
30
-
tgzFile=$(npm pack | tail -n 1) # Hooks to the pack command will add output (https://docs.npmjs.com/misc/scripts)
31
31
-
'';
32
32
-
installPhase = ''
33
33
-
mkdir -p $out/tarballs
34
34
-
mv $tgzFile $out/tarballs
35
35
-
mkdir -p $out/nix-support
36
36
-
echo "file source-dist $out/tarballs/$tgzFile" >> $out/nix-support/hydra-build-products
37
37
-
'';
38
38
-
};
39
39
-
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
53
53
-
54
54
-
cd ..
55
55
-
''
56
56
-
) dependencies);
57
57
-
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)
62
62
-
cd $TMPDIR
63
63
-
64
64
-
unpackFile ${src}
65
65
-
66
66
-
# Make the base dir in which the target dependency resides first
67
67
-
mkdir -p "$(dirname "$DIR/${packageName}")"
68
68
-
69
69
-
if [ -f "${src}" ]
70
70
-
then
71
71
-
# Figure out what directory has been unpacked
72
72
-
packageDir="$(find . -maxdepth 1 -type d | tail -1)"
73
73
-
74
74
-
# Restore write permissions to make building work
75
75
-
find "$packageDir" -type d -exec chmod u+x {} \;
76
76
-
chmod -R u+w "$packageDir"
77
77
-
78
78
-
# Move the extracted tarball into the output folder
79
79
-
mv "$packageDir" "$DIR/${packageName}"
80
80
-
elif [ -d "${src}" ]
81
81
-
then
82
82
-
# Get a stripped name (without hash) of the source directory.
83
83
-
# On old nixpkgs it's already set internally.
84
84
-
if [ -z "$strippedName" ]
85
85
-
then
86
86
-
strippedName="$(stripHash ${src})"
87
87
-
fi
88
88
-
89
89
-
# Restore write permissions to make building work
90
90
-
chmod -R u+w "$strippedName"
91
91
-
92
92
-
# Move the extracted directory into the output folder
93
93
-
mv "$strippedName" "$DIR/${packageName}"
94
94
-
fi
95
95
-
96
96
-
# Unset the stripped name to not confuse the next unpack step
97
97
-
unset strippedName
98
98
-
99
99
-
# Include the dependencies of the package
100
100
-
cd "$DIR/${packageName}"
101
101
-
${includeDependencies { inherit dependencies; }}
102
102
-
cd ..
103
103
-
${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
104
104
-
'';
105
105
-
106
106
-
pinpointDependencies = {dependencies, production}:
107
107
-
let
108
108
-
pinpointDependenciesFromPackageJSON = writeTextFile {
109
109
-
name = "pinpointDependencies.js";
110
110
-
text = ''
111
111
-
var fs = require('fs');
112
112
-
var path = require('path');
113
113
-
114
114
-
function resolveDependencyVersion(location, name) {
115
115
-
if(location == process.env['NIX_STORE']) {
116
116
-
return null;
117
117
-
} else {
118
118
-
var dependencyPackageJSON = path.join(location, "node_modules", name, "package.json");
119
119
-
120
120
-
if(fs.existsSync(dependencyPackageJSON)) {
121
121
-
var dependencyPackageObj = JSON.parse(fs.readFileSync(dependencyPackageJSON));
122
122
-
123
123
-
if(dependencyPackageObj.name == name) {
124
124
-
return dependencyPackageObj.version;
125
125
-
}
126
126
-
} else {
127
127
-
return resolveDependencyVersion(path.resolve(location, ".."), name);
128
128
-
}
129
129
-
}
130
130
-
}
131
131
-
132
132
-
function replaceDependencies(dependencies) {
133
133
-
if(typeof dependencies == "object" && dependencies !== null) {
134
134
-
for(var dependency in dependencies) {
135
135
-
var resolvedVersion = resolveDependencyVersion(process.cwd(), dependency);
136
136
-
137
137
-
if(resolvedVersion === null) {
138
138
-
process.stderr.write("WARNING: cannot pinpoint dependency: "+dependency+", context: "+process.cwd()+"\n");
139
139
-
} else {
140
140
-
dependencies[dependency] = resolvedVersion;
141
141
-
}
142
142
-
}
143
143
-
}
144
144
-
}
145
145
-
146
146
-
/* Read the package.json configuration */
147
147
-
var packageObj = JSON.parse(fs.readFileSync('./package.json'));
148
148
-
149
149
-
/* Pinpoint all dependencies */
150
150
-
replaceDependencies(packageObj.dependencies);
151
151
-
if(process.argv[2] == "development") {
152
152
-
replaceDependencies(packageObj.devDependencies);
153
153
-
}
154
154
-
replaceDependencies(packageObj.optionalDependencies);
155
155
-
156
156
-
/* Write the fixed package.json file */
157
157
-
fs.writeFileSync("package.json", JSON.stringify(packageObj, null, 2));
158
158
-
'';
159
159
-
};
160
160
-
in
161
161
-
''
162
162
-
node ${pinpointDependenciesFromPackageJSON} ${if production then "production" else "development"}
163
163
-
164
164
-
${lib.optionalString (dependencies != [])
165
165
-
''
166
166
-
if [ -d node_modules ]
167
167
-
then
168
168
-
cd node_modules
169
169
-
${lib.concatMapStrings (dependency: pinpointDependenciesOfPackage dependency) dependencies}
170
170
-
cd ..
171
171
-
fi
172
172
-
''}
173
173
-
'';
174
174
-
175
175
-
# Recursively traverses all dependencies of a package and pinpoints all
176
176
-
# dependencies in the package.json file to the versions that are actually
177
177
-
# being used.
178
178
-
179
179
-
pinpointDependenciesOfPackage = { packageName, dependencies ? [], production ? true, ... }@args:
180
180
-
''
181
181
-
if [ -d "${packageName}" ]
182
182
-
then
183
183
-
cd "${packageName}"
184
184
-
${pinpointDependencies { inherit dependencies production; }}
185
185
-
cd ..
186
186
-
${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
187
187
-
fi
188
188
-
'';
189
189
-
190
190
-
# Extract the Node.js source code which is used to compile packages with
191
191
-
# native bindings
192
192
-
nodeSources = runCommand "node-sources" {} ''
193
193
-
tar --no-same-owner --no-same-permissions -xf ${nodejs.src}
194
194
-
mv node-* $out
195
195
-
'';
196
196
-
197
197
-
# Script that adds _integrity fields to all package.json files to prevent NPM from consulting the cache (that is empty)
198
198
-
addIntegrityFieldsScript = writeTextFile {
199
199
-
name = "addintegrityfields.js";
200
200
-
text = ''
201
201
-
var fs = require('fs');
202
202
-
var path = require('path');
203
203
-
204
204
-
function augmentDependencies(baseDir, dependencies) {
205
205
-
for(var dependencyName in dependencies) {
206
206
-
var dependency = dependencies[dependencyName];
207
207
-
208
208
-
// Open package.json and augment metadata fields
209
209
-
var packageJSONDir = path.join(baseDir, "node_modules", dependencyName);
210
210
-
var packageJSONPath = path.join(packageJSONDir, "package.json");
211
211
-
212
212
-
if(fs.existsSync(packageJSONPath)) { // Only augment packages that exist. Sometimes we may have production installs in which development dependencies can be ignored
213
213
-
console.log("Adding metadata fields to: "+packageJSONPath);
214
214
-
var packageObj = JSON.parse(fs.readFileSync(packageJSONPath));
215
215
-
216
216
-
if(dependency.integrity) {
217
217
-
packageObj["_integrity"] = dependency.integrity;
218
218
-
} else {
219
219
-
packageObj["_integrity"] = "sha1-000000000000000000000000000="; // When no _integrity string has been provided (e.g. by Git dependencies), add a dummy one. It does not seem to harm and it bypasses downloads.
220
220
-
}
221
221
-
222
222
-
if(dependency.resolved) {
223
223
-
packageObj["_resolved"] = dependency.resolved; // Adopt the resolved property if one has been provided
224
224
-
} else {
225
225
-
packageObj["_resolved"] = dependency.version; // Set the resolved version to the version identifier. This prevents NPM from cloning Git repositories.
226
226
-
}
227
227
-
228
228
-
if(dependency.from !== undefined) { // Adopt from property if one has been provided
229
229
-
packageObj["_from"] = dependency.from;
230
230
-
}
231
231
-
232
232
-
fs.writeFileSync(packageJSONPath, JSON.stringify(packageObj, null, 2));
233
233
-
}
234
234
-
235
235
-
// Augment transitive dependencies
236
236
-
if(dependency.dependencies !== undefined) {
237
237
-
augmentDependencies(packageJSONDir, dependency.dependencies);
238
238
-
}
239
239
-
}
240
240
-
}
241
241
-
242
242
-
if(fs.existsSync("./package-lock.json")) {
243
243
-
var packageLock = JSON.parse(fs.readFileSync("./package-lock.json"));
244
244
-
245
245
-
if(packageLock.lockfileVersion !== 1) {
246
246
-
process.stderr.write("Sorry, I only understand lock file version 1!\n");
247
247
-
process.exit(1);
248
248
-
}
249
249
-
250
250
-
if(packageLock.dependencies !== undefined) {
251
251
-
augmentDependencies(".", packageLock.dependencies);
252
252
-
}
253
253
-
}
254
254
-
'';
255
255
-
};
256
256
-
257
257
-
# Reconstructs a package-lock file from the node_modules/ folder structure and package.json files with dummy sha1 hashes
258
258
-
reconstructPackageLock = writeTextFile {
259
259
-
name = "addintegrityfields.js";
260
260
-
text = ''
261
261
-
var fs = require('fs');
262
262
-
var path = require('path');
263
263
-
264
264
-
var packageObj = JSON.parse(fs.readFileSync("package.json"));
265
265
-
266
266
-
var lockObj = {
267
267
-
name: packageObj.name,
268
268
-
version: packageObj.version,
269
269
-
lockfileVersion: 1,
270
270
-
requires: true,
271
271
-
dependencies: {}
272
272
-
};
273
273
-
274
274
-
function augmentPackageJSON(filePath, dependencies) {
275
275
-
var packageJSON = path.join(filePath, "package.json");
276
276
-
if(fs.existsSync(packageJSON)) {
277
277
-
var packageObj = JSON.parse(fs.readFileSync(packageJSON));
278
278
-
dependencies[packageObj.name] = {
279
279
-
version: packageObj.version,
280
280
-
integrity: "sha1-000000000000000000000000000=",
281
281
-
dependencies: {}
282
282
-
};
283
283
-
processDependencies(path.join(filePath, "node_modules"), dependencies[packageObj.name].dependencies);
284
284
-
}
285
285
-
}
286
286
-
287
287
-
function processDependencies(dir, dependencies) {
288
288
-
if(fs.existsSync(dir)) {
289
289
-
var files = fs.readdirSync(dir);
290
290
-
291
291
-
files.forEach(function(entry) {
292
292
-
var filePath = path.join(dir, entry);
293
293
-
var stats = fs.statSync(filePath);
294
294
-
295
295
-
if(stats.isDirectory()) {
296
296
-
if(entry.substr(0, 1) == "@") {
297
297
-
// When we encounter a namespace folder, augment all packages belonging to the scope
298
298
-
var pkgFiles = fs.readdirSync(filePath);
299
299
-
300
300
-
pkgFiles.forEach(function(entry) {
301
301
-
if(stats.isDirectory()) {
302
302
-
var pkgFilePath = path.join(filePath, entry);
303
303
-
augmentPackageJSON(pkgFilePath, dependencies);
304
304
-
}
305
305
-
});
306
306
-
} else {
307
307
-
augmentPackageJSON(filePath, dependencies);
308
308
-
}
309
309
-
}
310
310
-
});
311
311
-
}
312
312
-
}
313
313
-
314
314
-
processDependencies("node_modules", lockObj.dependencies);
315
315
-
316
316
-
fs.writeFileSync("package-lock.json", JSON.stringify(lockObj, null, 2));
317
317
-
'';
318
318
-
};
319
319
-
320
320
-
prepareAndInvokeNPM = {packageName, bypassCache, reconstructLock, npmFlags, production}:
321
321
-
let
322
322
-
forceOfflineFlag = if bypassCache then "--offline" else "--registry http://www.example.com";
323
323
-
in
324
324
-
''
325
325
-
# Pinpoint the versions of all dependencies to the ones that are actually being used
326
326
-
echo "pinpointing versions of dependencies..."
327
327
-
source $pinpointDependenciesScriptPath
328
328
-
329
329
-
# Patch the shebangs of the bundled modules to prevent them from
330
330
-
# calling executables outside the Nix store as much as possible
331
331
-
patchShebangs .
332
332
-
333
333
-
# Deploy the Node.js package by running npm install. Since the
334
334
-
# dependencies have been provided already by ourselves, it should not
335
335
-
# attempt to install them again, which is good, because we want to make
336
336
-
# it Nix's responsibility. If it needs to install any dependencies
337
337
-
# anyway (e.g. because the dependency parameters are
338
338
-
# incomplete/incorrect), it fails.
339
339
-
#
340
340
-
# The other responsibilities of NPM are kept -- version checks, build
341
341
-
# steps, postprocessing etc.
342
342
-
343
343
-
export HOME=$TMPDIR
344
344
-
cd "${packageName}"
345
345
-
runHook preRebuild
346
346
-
347
347
-
${lib.optionalString bypassCache ''
348
348
-
${lib.optionalString reconstructLock ''
349
349
-
if [ -f package-lock.json ]
350
350
-
then
351
351
-
echo "WARNING: Reconstruct lock option enabled, but a lock file already exists!"
352
352
-
echo "This will most likely result in version mismatches! We will remove the lock file and regenerate it!"
353
353
-
rm package-lock.json
354
354
-
else
355
355
-
echo "No package-lock.json file found, reconstructing..."
356
356
-
fi
357
357
-
358
358
-
node ${reconstructPackageLock}
359
359
-
''}
360
360
-
361
361
-
node ${addIntegrityFieldsScript}
362
362
-
''}
363
363
-
364
364
-
npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} rebuild
365
365
-
366
366
-
if [ "''${dontNpmInstall-}" != "1" ]
367
367
-
then
368
368
-
# NPM tries to download packages even when they already exist if npm-shrinkwrap is used.
369
369
-
rm -f npm-shrinkwrap.json
370
370
-
371
371
-
npm ${forceOfflineFlag} --nodedir=${nodeSources} ${npmFlags} ${lib.optionalString production "--production"} install
372
372
-
fi
373
373
-
'';
374
374
-
375
375
-
# Builds and composes an NPM package including all its dependencies
376
376
-
buildNodePackage =
377
377
-
{ name
378
378
-
, packageName
379
379
-
, version
380
380
-
, dependencies ? []
381
381
-
, buildInputs ? []
382
382
-
, production ? true
383
383
-
, npmFlags ? ""
384
384
-
, dontNpmInstall ? false
385
385
-
, bypassCache ? false
386
386
-
, reconstructLock ? false
387
387
-
, preRebuild ? ""
388
388
-
, dontStrip ? true
389
389
-
, unpackPhase ? "true"
390
390
-
, buildPhase ? "true"
391
391
-
, ... }@args:
392
392
-
393
393
-
let
394
394
-
extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" "dontStrip" "dontNpmInstall" "preRebuild" "unpackPhase" "buildPhase" ];
395
395
-
in
396
396
-
stdenv.mkDerivation ({
397
397
-
name = "node_${name}-${version}";
398
398
-
buildInputs = [ tarWrapper python nodejs ]
399
399
-
++ lib.optional (stdenv.isLinux) utillinux
400
400
-
++ lib.optional (stdenv.isDarwin) libtool
401
401
-
++ buildInputs;
402
402
-
403
403
-
inherit nodejs;
404
404
-
405
405
-
inherit dontStrip; # Stripping may fail a build for some package deployments
406
406
-
inherit dontNpmInstall preRebuild unpackPhase buildPhase;
407
407
-
408
408
-
compositionScript = composePackage args;
409
409
-
pinpointDependenciesScript = pinpointDependenciesOfPackage args;
410
410
-
411
411
-
passAsFile = [ "compositionScript" "pinpointDependenciesScript" ];
412
412
-
413
413
-
installPhase = ''
414
414
-
# Create and enter a root node_modules/ folder
415
415
-
mkdir -p $out/lib/node_modules
416
416
-
cd $out/lib/node_modules
417
417
-
418
418
-
# Compose the package and all its dependencies
419
419
-
source $compositionScriptPath
420
420
-
421
421
-
${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
422
422
-
423
423
-
# Create symlink to the deployed executable folder, if applicable
424
424
-
if [ -d "$out/lib/node_modules/.bin" ]
425
425
-
then
426
426
-
ln -s $out/lib/node_modules/.bin $out/bin
427
427
-
fi
428
428
-
429
429
-
# Create symlinks to the deployed manual page folders, if applicable
430
430
-
if [ -d "$out/lib/node_modules/${packageName}/man" ]
431
431
-
then
432
432
-
mkdir -p $out/share
433
433
-
for dir in "$out/lib/node_modules/${packageName}/man/"*
434
434
-
do
435
435
-
mkdir -p $out/share/man/$(basename "$dir")
436
436
-
for page in "$dir"/*
437
437
-
do
438
438
-
ln -s $page $out/share/man/$(basename "$dir")
439
439
-
done
440
440
-
done
441
441
-
fi
442
442
-
443
443
-
# Run post install hook, if provided
444
444
-
runHook postInstall
445
445
-
'';
446
446
-
} // extraArgs);
447
447
-
448
448
-
# Builds a development shell
449
449
-
buildNodeShell =
450
450
-
{ name
451
451
-
, packageName
452
452
-
, version
453
453
-
, src
454
454
-
, dependencies ? []
455
455
-
, buildInputs ? []
456
456
-
, production ? true
457
457
-
, npmFlags ? ""
458
458
-
, dontNpmInstall ? false
459
459
-
, bypassCache ? false
460
460
-
, reconstructLock ? false
461
461
-
, dontStrip ? true
462
462
-
, unpackPhase ? "true"
463
463
-
, buildPhase ? "true"
464
464
-
, ... }@args:
465
465
-
466
466
-
let
467
467
-
extraArgs = removeAttrs args [ "name" "dependencies" "buildInputs" ];
468
468
-
469
469
-
nodeDependencies = stdenv.mkDerivation ({
470
470
-
name = "node-dependencies-${name}-${version}";
471
471
-
472
472
-
buildInputs = [ tarWrapper python nodejs ]
473
473
-
++ lib.optional (stdenv.isLinux) utillinux
474
474
-
++ lib.optional (stdenv.isDarwin) libtool
475
475
-
++ buildInputs;
476
476
-
477
477
-
inherit dontStrip; # Stripping may fail a build for some package deployments
478
478
-
inherit dontNpmInstall unpackPhase buildPhase;
479
479
-
480
480
-
includeScript = includeDependencies { inherit dependencies; };
481
481
-
pinpointDependenciesScript = pinpointDependenciesOfPackage args;
482
482
-
483
483
-
passAsFile = [ "includeScript" "pinpointDependenciesScript" ];
484
484
-
485
485
-
installPhase = ''
486
486
-
mkdir -p $out/${packageName}
487
487
-
cd $out/${packageName}
488
488
-
489
489
-
source $includeScriptPath
490
490
-
491
491
-
# Create fake package.json to make the npm commands work properly
492
492
-
cp ${src}/package.json .
493
493
-
chmod 644 package.json
494
494
-
${lib.optionalString bypassCache ''
495
495
-
if [ -f ${src}/package-lock.json ]
496
496
-
then
497
497
-
cp ${src}/package-lock.json .
498
498
-
fi
499
499
-
''}
500
500
-
501
501
-
# Go to the parent folder to make sure that all packages are pinpointed
502
502
-
cd ..
503
503
-
${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
504
504
-
505
505
-
${prepareAndInvokeNPM { inherit packageName bypassCache reconstructLock npmFlags production; }}
506
506
-
507
507
-
# Expose the executables that were installed
508
508
-
cd ..
509
509
-
${lib.optionalString (builtins.substring 0 1 packageName == "@") "cd .."}
510
510
-
511
511
-
mv ${packageName} lib
512
512
-
ln -s $out/lib/node_modules/.bin $out/bin
513
513
-
'';
514
514
-
} // extraArgs);
515
515
-
in
516
516
-
stdenv.mkDerivation {
517
517
-
name = "node-shell-${name}-${version}";
518
518
-
519
519
-
buildInputs = [ python nodejs ] ++ lib.optional (stdenv.isLinux) utillinux ++ buildInputs;
520
520
-
buildCommand = ''
521
521
-
mkdir -p $out/bin
522
522
-
cat > $out/bin/shell <<EOF
523
523
-
#! ${stdenv.shell} -e
524
524
-
$shellHook
525
525
-
exec ${stdenv.shell}
526
526
-
EOF
527
527
-
chmod +x $out/bin/shell
528
528
-
'';
529
529
-
530
530
-
# Provide the dependencies in a development shell through the NODE_PATH environment variable
531
531
-
inherit nodeDependencies;
532
532
-
shellHook = lib.optionalString (dependencies != []) ''
533
533
-
export NODE_PATH=${nodeDependencies}/lib/node_modules
534
534
-
export PATH="${nodeDependencies}/bin:$PATH"
535
535
-
'';
536
536
-
};
537
537
-
in
538
538
-
{
539
539
-
buildNodeSourceDist = lib.makeOverridable buildNodeSourceDist;
540
540
-
buildNodePackage = lib.makeOverridable buildNodePackage;
541
541
-
buildNodeShell = lib.makeOverridable buildNodeShell;
542
542
-
}
+1089
-1356
pkgs/development/compilers/elm/packages/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 = {
7
7
-
"@babel/cli-7.12.8" = {
7
7
+
"@babel/cli-7.12.10" = {
8
8
name = "_at_babel_slash_cli";
9
9
packageName = "@babel/cli";
10
10
-
version = "7.12.8";
10
10
+
version = "7.12.10";
11
11
src = fetchurl {
12
12
-
url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.8.tgz";
13
13
-
sha512 = "/6nQj11oaGhLmZiuRUfxsujiPDc9BBReemiXgIbxc+M5W+MIiFKYwvNDJvBfnGKNsJTKbUfEheKc9cwoPHAVQA==";
12
12
+
url = "https://registry.npmjs.org/@babel/cli/-/cli-7.12.10.tgz";
13
13
+
sha512 = "+y4ZnePpvWs1fc/LhZRTHkTesbXkyBYuOB+5CyodZqrEuETXi3zOVfpAQIdgC3lXbHLTDG9dQosxR9BhvLKDLQ==";
14
14
};
15
15
};
16
16
"@babel/code-frame-7.0.0" = {
···
22
22
sha512 = "OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==";
23
23
};
24
24
};
25
25
-
"@babel/code-frame-7.10.4" = {
25
25
+
"@babel/code-frame-7.12.13" = {
26
26
name = "_at_babel_slash_code-frame";
27
27
packageName = "@babel/code-frame";
28
28
-
version = "7.10.4";
28
28
+
version = "7.12.13";
29
29
src = fetchurl {
30
30
-
url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.10.4.tgz";
31
31
-
sha512 = "vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg==";
30
30
+
url = "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.13.tgz";
31
31
+
sha512 = "HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g==";
32
32
};
33
33
};
34
34
-
"@babel/compat-data-7.12.7" = {
34
34
+
"@babel/compat-data-7.12.13" = {
35
35
name = "_at_babel_slash_compat-data";
36
36
packageName = "@babel/compat-data";
37
37
-
version = "7.12.7";
37
37
+
version = "7.12.13";
38
38
src = fetchurl {
39
39
-
url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz";
40
40
-
sha512 = "YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==";
39
39
+
url = "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.13.tgz";
40
40
+
sha512 = "U/hshG5R+SIoW7HVWIdmy1cB7s3ki+r3FpyEZiCgpi4tFgPnX/vynY80ZGSASOIrUM6O7VxOgCZgdt7h97bUGg==";
41
41
};
42
42
};
43
43
-
"@babel/core-7.12.9" = {
43
43
+
"@babel/core-7.12.10" = {
44
44
name = "_at_babel_slash_core";
45
45
packageName = "@babel/core";
46
46
-
version = "7.12.9";
46
46
+
version = "7.12.10";
47
47
src = fetchurl {
48
48
-
url = "https://registry.npmjs.org/@babel/core/-/core-7.12.9.tgz";
49
49
-
sha512 = "gTXYh3M5wb7FRXQy+FErKFAv90BnlOuNn1QkCK2lREoPAjrQCO49+HVSrFoe5uakFAF5eenS75KbO2vQiLrTMQ==";
48
48
+
url = "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz";
49
49
+
sha512 = "eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==";
50
50
};
51
51
};
52
52
-
"@babel/generator-7.12.5" = {
52
52
+
"@babel/generator-7.12.15" = {
53
53
name = "_at_babel_slash_generator";
54
54
packageName = "@babel/generator";
55
55
-
version = "7.12.5";
55
55
+
version = "7.12.15";
56
56
src = fetchurl {
57
57
-
url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.5.tgz";
58
58
-
sha512 = "m16TQQJ8hPt7E+OS/XVQg/7U184MLXtvuGbCdA7na61vha+ImkyyNM/9DDA0unYCVZn3ZOhng+qz48/KBOT96A==";
57
57
+
url = "https://registry.npmjs.org/@babel/generator/-/generator-7.12.15.tgz";
58
58
+
sha512 = "6F2xHxBiFXWNSGb7vyCUTBF8RCLY66rS0zEPcP8t/nQyXjha5EuK4z7H5o7fWG8B4M7y6mqVWq1J+1PuwRhecQ==";
59
59
};
60
60
};
61
61
-
"@babel/helper-annotate-as-pure-7.10.4" = {
61
61
+
"@babel/helper-annotate-as-pure-7.12.13" = {
62
62
name = "_at_babel_slash_helper-annotate-as-pure";
63
63
packageName = "@babel/helper-annotate-as-pure";
64
64
-
version = "7.10.4";
64
64
+
version = "7.12.13";
65
65
src = fetchurl {
66
66
-
url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz";
67
67
-
sha512 = "XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA==";
66
66
+
url = "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.12.13.tgz";
67
67
+
sha512 = "7YXfX5wQ5aYM/BOlbSccHDbuXXFPxeoUmfWtz8le2yTkTZc+BxsiEnENFoi2SlmA8ewDkG2LgIMIVzzn2h8kfw==";
68
68
};
69
69
};
70
70
-
"@babel/helper-builder-binary-assignment-operator-visitor-7.10.4" = {
70
70
+
"@babel/helper-builder-binary-assignment-operator-visitor-7.12.13" = {
71
71
name = "_at_babel_slash_helper-builder-binary-assignment-operator-visitor";
72
72
packageName = "@babel/helper-builder-binary-assignment-operator-visitor";
73
73
-
version = "7.10.4";
73
73
+
version = "7.12.13";
74
74
src = fetchurl {
75
75
-
url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz";
76
76
-
sha512 = "L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg==";
75
75
+
url = "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.12.13.tgz";
76
76
+
sha512 = "CZOv9tGphhDRlVjVkAgm8Nhklm9RzSmWpX2my+t7Ua/KT616pEzXsQCjinzvkRvHWJ9itO4f296efroX23XCMA==";
77
77
};
78
78
};
79
79
-
"@babel/helper-compilation-targets-7.12.5" = {
79
79
+
"@babel/helper-compilation-targets-7.12.13" = {
80
80
name = "_at_babel_slash_helper-compilation-targets";
81
81
packageName = "@babel/helper-compilation-targets";
82
82
-
version = "7.12.5";
82
82
+
version = "7.12.13";
83
83
src = fetchurl {
84
84
-
url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz";
85
85
-
sha512 = "+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==";
84
84
+
url = "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.13.tgz";
85
85
+
sha512 = "dXof20y/6wB5HnLOGyLh/gobsMvDNoekcC+8MCV2iaTd5JemhFkPD73QB+tK3iFC9P0xJC73B6MvKkyUfS9cCw==";
86
86
};
87
87
};
88
88
-
"@babel/helper-create-class-features-plugin-7.12.1" = {
88
88
+
"@babel/helper-create-class-features-plugin-7.12.13" = {
89
89
name = "_at_babel_slash_helper-create-class-features-plugin";
90
90
packageName = "@babel/helper-create-class-features-plugin";
91
91
-
version = "7.12.1";
91
91
+
version = "7.12.13";
92
92
src = fetchurl {
93
93
-
url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz";
94
94
-
sha512 = "hkL++rWeta/OVOBTRJc9a5Azh5mt5WgZUGAKMD8JM141YsE08K//bp1unBBieO6rUKkIPyUE0USQ30jAy3Sk1w==";
93
93
+
url = "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.13.tgz";
94
94
+
sha512 = "Vs/e9wv7rakKYeywsmEBSRC9KtmE7Px+YBlESekLeJOF0zbGUicGfXSNi3o+tfXSNS48U/7K9mIOOCR79Cl3+Q==";
95
95
};
96
96
};
97
97
-
"@babel/helper-create-regexp-features-plugin-7.12.7" = {
97
97
+
"@babel/helper-create-regexp-features-plugin-7.12.13" = {
98
98
name = "_at_babel_slash_helper-create-regexp-features-plugin";
99
99
packageName = "@babel/helper-create-regexp-features-plugin";
100
100
-
version = "7.12.7";
100
100
+
version = "7.12.13";
101
101
src = fetchurl {
102
102
-
url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.7.tgz";
103
103
-
sha512 = "idnutvQPdpbduutvi3JVfEgcVIHooQnhvhx0Nk9isOINOIGYkZea1Pk2JlJRiUnMefrlvr0vkByATBY/mB4vjQ==";
102
102
+
url = "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.12.13.tgz";
103
103
+
sha512 = "XC+kiA0J3at6E85dL5UnCYfVOcIZ834QcAY0TIpgUVnz0zDzg+0TtvZTnJ4g9L1dPRGe30Qi03XCIS4tYCLtqw==";
104
104
};
105
105
};
106
106
-
"@babel/helper-define-map-7.10.5" = {
107
107
-
name = "_at_babel_slash_helper-define-map";
108
108
-
packageName = "@babel/helper-define-map";
109
109
-
version = "7.10.5";
110
110
-
src = fetchurl {
111
111
-
url = "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz";
112
112
-
sha512 = "fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ==";
113
113
-
};
114
114
-
};
115
115
-
"@babel/helper-explode-assignable-expression-7.12.1" = {
106
106
+
"@babel/helper-explode-assignable-expression-7.12.13" = {
116
107
name = "_at_babel_slash_helper-explode-assignable-expression";
117
108
packageName = "@babel/helper-explode-assignable-expression";
118
118
-
version = "7.12.1";
109
109
+
version = "7.12.13";
119
110
src = fetchurl {
120
120
-
url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz";
121
121
-
sha512 = "dmUwH8XmlrUpVqgtZ737tK88v07l840z9j3OEhCLwKTkjlvKpfqXVIZ0wpK3aeOxspwGrf/5AP5qLx4rO3w5rA==";
111
111
+
url = "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.13.tgz";
112
112
+
sha512 = "5loeRNvMo9mx1dA/d6yNi+YiKziJZFylZnCo1nmFF4qPU4yJ14abhWESuSMQSlQxWdxdOFzxXjk/PpfudTtYyw==";
122
113
};
123
114
};
124
124
-
"@babel/helper-function-name-7.10.4" = {
115
115
+
"@babel/helper-function-name-7.12.13" = {
125
116
name = "_at_babel_slash_helper-function-name";
126
117
packageName = "@babel/helper-function-name";
127
127
-
version = "7.10.4";
118
118
+
version = "7.12.13";
128
119
src = fetchurl {
129
129
-
url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz";
130
130
-
sha512 = "YdaSyz1n8gY44EmN7x44zBn9zQ1Ry2Y+3GTA+3vH6Mizke1Vw0aWDM66FOYEPw8//qKkmqOckrGgTYa+6sceqQ==";
120
120
+
url = "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz";
121
121
+
sha512 = "TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA==";
131
122
};
132
123
};
133
133
-
"@babel/helper-get-function-arity-7.10.4" = {
124
124
+
"@babel/helper-get-function-arity-7.12.13" = {
134
125
name = "_at_babel_slash_helper-get-function-arity";
135
126
packageName = "@babel/helper-get-function-arity";
136
136
-
version = "7.10.4";
127
127
+
version = "7.12.13";
137
128
src = fetchurl {
138
138
-
url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz";
139
139
-
sha512 = "EkN3YDB+SRDgiIUnNgcmiD361ti+AVbL3f3Henf6dqqUyr5dMsorno0lJWJuLhDhkI5sYEpgj6y9kB8AOU1I2A==";
129
129
+
url = "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.13.tgz";
130
130
+
sha512 = "DjEVzQNz5LICkzN0REdpD5prGoidvbdYk1BVgRUOINaWJP2t6avB27X1guXK1kXNrX0WMfsrm1A/ZBthYuIMQg==";
140
131
};
141
132
};
142
142
-
"@babel/helper-hoist-variables-7.10.4" = {
133
133
+
"@babel/helper-hoist-variables-7.12.13" = {
143
134
name = "_at_babel_slash_helper-hoist-variables";
144
135
packageName = "@babel/helper-hoist-variables";
145
145
-
version = "7.10.4";
136
136
+
version = "7.12.13";
146
137
src = fetchurl {
147
147
-
url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz";
148
148
-
sha512 = "wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==";
138
138
+
url = "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.12.13.tgz";
139
139
+
sha512 = "KSC5XSj5HreRhYQtZ3cnSnQwDzgnbdUDEFsxkN0m6Q3WrCRt72xrnZ8+h+pX7YxM7hr87zIO3a/v5p/H3TrnVw==";
149
140
};
150
141
};
151
151
-
"@babel/helper-member-expression-to-functions-7.12.7" = {
142
142
+
"@babel/helper-member-expression-to-functions-7.12.13" = {
152
143
name = "_at_babel_slash_helper-member-expression-to-functions";
153
144
packageName = "@babel/helper-member-expression-to-functions";
154
154
-
version = "7.12.7";
145
145
+
version = "7.12.13";
155
146
src = fetchurl {
156
156
-
url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.7.tgz";
157
157
-
sha512 = "DCsuPyeWxeHgh1Dus7APn7iza42i/qXqiFPWyBDdOFtvS581JQePsc1F/nD+fHrcswhLlRc2UpYS1NwERxZhHw==";
147
147
+
url = "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.12.13.tgz";
148
148
+
sha512 = "B+7nN0gIL8FZ8SvMcF+EPyB21KnCcZHQZFczCxbiNGV/O0rsrSBlWGLzmtBJ3GMjSVMIm4lpFhR+VdVBuIsUcQ==";
158
149
};
159
150
};
160
160
-
"@babel/helper-module-imports-7.12.5" = {
151
151
+
"@babel/helper-module-imports-7.12.13" = {
161
152
name = "_at_babel_slash_helper-module-imports";
162
153
packageName = "@babel/helper-module-imports";
163
163
-
version = "7.12.5";
154
154
+
version = "7.12.13";
164
155
src = fetchurl {
165
165
-
url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz";
166
166
-
sha512 = "SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==";
156
156
+
url = "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.13.tgz";
157
157
+
sha512 = "NGmfvRp9Rqxy0uHSSVP+SRIW1q31a7Ji10cLBcqSDUngGentY4FRiHOFZFE1CLU5eiL0oE8reH7Tg1y99TDM/g==";
167
158
};
168
159
};
169
169
-
"@babel/helper-module-transforms-7.12.1" = {
160
160
+
"@babel/helper-module-transforms-7.12.13" = {
170
161
name = "_at_babel_slash_helper-module-transforms";
171
162
packageName = "@babel/helper-module-transforms";
172
172
-
version = "7.12.1";
163
163
+
version = "7.12.13";
173
164
src = fetchurl {
174
174
-
url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz";
175
175
-
sha512 = "QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==";
165
165
+
url = "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.13.tgz";
166
166
+
sha512 = "acKF7EjqOR67ASIlDTupwkKM1eUisNAjaSduo5Cz+793ikfnpe7p4Q7B7EWU2PCoSTPWsQkR7hRUWEIZPiVLGA==";
176
167
};
177
168
};
178
178
-
"@babel/helper-optimise-call-expression-7.12.7" = {
169
169
+
"@babel/helper-optimise-call-expression-7.12.13" = {
179
170
name = "_at_babel_slash_helper-optimise-call-expression";
180
171
packageName = "@babel/helper-optimise-call-expression";
181
181
-
version = "7.12.7";
172
172
+
version = "7.12.13";
182
173
src = fetchurl {
183
183
-
url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.7.tgz";
184
184
-
sha512 = "I5xc9oSJ2h59OwyUqjv95HRyzxj53DAubUERgQMrpcCEYQyToeHA+NEcUEsVWB4j53RDeskeBJ0SgRAYHDBckw==";
174
174
+
url = "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.12.13.tgz";
175
175
+
sha512 = "BdWQhoVJkp6nVjB7nkFWcn43dkprYauqtk++Py2eaf/GRDFm5BxRqEIZCiHlZUGAVmtwKcsVL1dC68WmzeFmiA==";
185
176
};
186
177
};
187
187
-
"@babel/helper-plugin-utils-7.10.4" = {
178
178
+
"@babel/helper-plugin-utils-7.12.13" = {
188
179
name = "_at_babel_slash_helper-plugin-utils";
189
180
packageName = "@babel/helper-plugin-utils";
190
190
-
version = "7.10.4";
181
181
+
version = "7.12.13";
191
182
src = fetchurl {
192
192
-
url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz";
193
193
-
sha512 = "O4KCvQA6lLiMU9l2eawBPMf1xPP8xPfB3iEQw150hOVTqj/rfXz0ThTb4HEzqQfs2Bmo5Ay8BzxfzVtBrr9dVg==";
183
183
+
url = "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.12.13.tgz";
184
184
+
sha512 = "C+10MXCXJLiR6IeG9+Wiejt9jmtFpxUc3MQqCmPY8hfCjyUGl9kT+B2okzEZrtykiwrc4dbCPdDoz0A/HQbDaA==";
194
185
};
195
186
};
196
196
-
"@babel/helper-remap-async-to-generator-7.12.1" = {
187
187
+
"@babel/helper-remap-async-to-generator-7.12.13" = {
197
188
name = "_at_babel_slash_helper-remap-async-to-generator";
198
189
packageName = "@babel/helper-remap-async-to-generator";
199
199
-
version = "7.12.1";
190
190
+
version = "7.12.13";
200
191
src = fetchurl {
201
201
-
url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.1.tgz";
202
202
-
sha512 = "9d0KQCRM8clMPcDwo8SevNs+/9a8yWVVmaE80FGJcEP8N1qToREmWEGnBn8BUlJhYRFz6fqxeRL1sl5Ogsed7A==";
192
192
+
url = "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.12.13.tgz";
193
193
+
sha512 = "Qa6PU9vNcj1NZacZZI1Mvwt+gXDH6CTfgAkSjeRMLE8HxtDK76+YDId6NQR+z7Rgd5arhD2cIbS74r0SxD6PDA==";
203
194
};
204
195
};
205
205
-
"@babel/helper-replace-supers-7.12.5" = {
196
196
+
"@babel/helper-replace-supers-7.12.13" = {
206
197
name = "_at_babel_slash_helper-replace-supers";
207
198
packageName = "@babel/helper-replace-supers";
208
208
-
version = "7.12.5";
199
199
+
version = "7.12.13";
209
200
src = fetchurl {
210
210
-
url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.5.tgz";
211
211
-
sha512 = "5YILoed0ZyIpF4gKcpZitEnXEJ9UoDRki1Ey6xz46rxOzfNMAhVIJMoune1hmPVxh40LRv1+oafz7UsWX+vyWA==";
201
201
+
url = "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.12.13.tgz";
202
202
+
sha512 = "pctAOIAMVStI2TMLhozPKbf5yTEXc0OJa0eENheb4w09SrgOWEs+P4nTOZYJQCqs8JlErGLDPDJTiGIp3ygbLg==";
212
203
};
213
204
};
214
214
-
"@babel/helper-simple-access-7.12.1" = {
205
205
+
"@babel/helper-simple-access-7.12.13" = {
215
206
name = "_at_babel_slash_helper-simple-access";
216
207
packageName = "@babel/helper-simple-access";
217
217
-
version = "7.12.1";
208
208
+
version = "7.12.13";
218
209
src = fetchurl {
219
219
-
url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz";
220
220
-
sha512 = "OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==";
210
210
+
url = "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.13.tgz";
211
211
+
sha512 = "0ski5dyYIHEfwpWGx5GPWhH35j342JaflmCeQmsPWcrOQDtCN6C1zKAVRFVbK53lPW2c9TsuLLSUDf0tIGJ5hA==";
221
212
};
222
213
};
223
214
"@babel/helper-skip-transparent-expression-wrappers-7.12.1" = {
···
229
220
sha512 = "Mf5AUuhG1/OCChOJ/HcADmvcHM42WJockombn8ATJG3OnyiSxBK/Mm5x78BQWvmtXZKHgbjdGL2kin/HOLlZGA==";
230
221
};
231
222
};
232
232
-
"@babel/helper-split-export-declaration-7.11.0" = {
223
223
+
"@babel/helper-split-export-declaration-7.12.13" = {
233
224
name = "_at_babel_slash_helper-split-export-declaration";
234
225
packageName = "@babel/helper-split-export-declaration";
235
235
-
version = "7.11.0";
226
226
+
version = "7.12.13";
236
227
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==";
228
228
+
url = "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.13.tgz";
229
229
+
sha512 = "tCJDltF83htUtXx5NLcaDqRmknv652ZWCHyoTETf1CXYJdPC7nohZohjUgieXhv0hTJdRf2FjDueFehdNucpzg==";
239
230
};
240
231
};
241
241
-
"@babel/helper-validator-identifier-7.10.4" = {
232
232
+
"@babel/helper-validator-identifier-7.12.11" = {
242
233
name = "_at_babel_slash_helper-validator-identifier";
243
234
packageName = "@babel/helper-validator-identifier";
244
244
-
version = "7.10.4";
235
235
+
version = "7.12.11";
245
236
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==";
237
237
+
url = "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz";
238
238
+
sha512 = "np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==";
248
239
};
249
240
};
250
250
-
"@babel/helper-validator-option-7.12.1" = {
241
241
+
"@babel/helper-validator-option-7.12.11" = {
251
242
name = "_at_babel_slash_helper-validator-option";
252
243
packageName = "@babel/helper-validator-option";
253
253
-
version = "7.12.1";
244
244
+
version = "7.12.11";
254
245
src = fetchurl {
255
255
-
url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.1.tgz";
256
256
-
sha512 = "YpJabsXlJVWP0USHjnC/AQDTLlZERbON577YUVO/wLpqyj6HAtVYnWaQaN0iUN+1/tWn3c+uKKXjRut5115Y2A==";
246
246
+
url = "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz";
247
247
+
sha512 = "TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==";
257
248
};
258
249
};
259
259
-
"@babel/helper-wrap-function-7.12.3" = {
250
250
+
"@babel/helper-wrap-function-7.12.13" = {
260
251
name = "_at_babel_slash_helper-wrap-function";
261
252
packageName = "@babel/helper-wrap-function";
262
262
-
version = "7.12.3";
253
253
+
version = "7.12.13";
263
254
src = fetchurl {
264
264
-
url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.3.tgz";
265
265
-
sha512 = "Cvb8IuJDln3rs6tzjW3Y8UeelAOdnpB8xtQ4sme2MSZ9wOxrbThporC0y/EtE16VAtoyEfLM404Xr1e0OOp+ow==";
255
255
+
url = "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.12.13.tgz";
256
256
+
sha512 = "t0aZFEmBJ1LojdtJnhOaQEVejnzYhyjWHSsNSNo8vOYRbAJNh6r6GQF7pd36SqG7OKGbn+AewVQ/0IfYfIuGdw==";
266
257
};
267
258
};
268
268
-
"@babel/helpers-7.12.5" = {
259
259
+
"@babel/helpers-7.12.13" = {
269
260
name = "_at_babel_slash_helpers";
270
261
packageName = "@babel/helpers";
271
271
-
version = "7.12.5";
262
262
+
version = "7.12.13";
272
263
src = fetchurl {
273
273
-
url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz";
274
274
-
sha512 = "lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==";
264
264
+
url = "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.13.tgz";
265
265
+
sha512 = "oohVzLRZ3GQEk4Cjhfs9YkJA4TdIDTObdBEZGrd6F/T0GPSnuV6l22eMcxlvcvzVIPH3VTtxbseudM1zIE+rPQ==";
275
266
};
276
267
};
277
277
-
"@babel/highlight-7.10.4" = {
268
268
+
"@babel/highlight-7.12.13" = {
278
269
name = "_at_babel_slash_highlight";
279
270
packageName = "@babel/highlight";
280
280
-
version = "7.10.4";
271
271
+
version = "7.12.13";
281
272
src = fetchurl {
282
282
-
url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz";
283
283
-
sha512 = "i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==";
273
273
+
url = "https://registry.npmjs.org/@babel/highlight/-/highlight-7.12.13.tgz";
274
274
+
sha512 = "kocDQvIbgMKlWxXe9fof3TQ+gkIPOUSEYhJjqUjvKMez3krV7vbzYCDq39Oj11UAVK7JqPVGQPlgE85dPNlQww==";
284
275
};
285
276
};
286
286
-
"@babel/parser-7.12.7" = {
277
277
+
"@babel/parser-7.12.15" = {
287
278
name = "_at_babel_slash_parser";
288
279
packageName = "@babel/parser";
289
289
-
version = "7.12.7";
280
280
+
version = "7.12.15";
290
281
src = fetchurl {
291
291
-
url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.7.tgz";
292
292
-
sha512 = "oWR02Ubp4xTLCAqPRiNIuMVgNO5Aif/xpXtabhzW2HWUD47XJsAB4Zd/Rg30+XeQA3juXigV7hlquOTmwqLiwg==";
282
282
+
url = "https://registry.npmjs.org/@babel/parser/-/parser-7.12.15.tgz";
283
283
+
sha512 = "AQBOU2Z9kWwSZMd6lNjCX0GUgFonL1wAM1db8L8PMk9UDaGsRCArBkU4Sc+UCM3AE4hjbXx+h58Lb3QT4oRmrA==";
293
284
};
294
285
};
295
295
-
"@babel/plugin-proposal-async-generator-functions-7.12.1" = {
286
286
+
"@babel/plugin-proposal-async-generator-functions-7.12.13" = {
296
287
name = "_at_babel_slash_plugin-proposal-async-generator-functions";
297
288
packageName = "@babel/plugin-proposal-async-generator-functions";
298
298
-
version = "7.12.1";
289
289
+
version = "7.12.13";
299
290
src = fetchurl {
300
300
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.1.tgz";
301
301
-
sha512 = "d+/o30tJxFxrA1lhzJqiUcEJdI6jKlNregCv5bASeGf2Q4MXmnwH7viDo7nhx1/ohf09oaH8j1GVYG/e3Yqk6A==";
291
291
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.12.13.tgz";
292
292
+
sha512 = "1KH46Hx4WqP77f978+5Ye/VUbuwQld2hph70yaw2hXS2v7ER2f3nlpNMu909HO2rbvP0NKLlMVDPh9KXklVMhA==";
302
293
};
303
294
};
304
304
-
"@babel/plugin-proposal-class-properties-7.12.1" = {
295
295
+
"@babel/plugin-proposal-class-properties-7.12.13" = {
305
296
name = "_at_babel_slash_plugin-proposal-class-properties";
306
297
packageName = "@babel/plugin-proposal-class-properties";
307
307
-
version = "7.12.1";
298
298
+
version = "7.12.13";
308
299
src = fetchurl {
309
309
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.1.tgz";
310
310
-
sha512 = "cKp3dlQsFsEs5CWKnN7BnSHOd0EOW8EKpEjkoz1pO2E5KzIDNV9Ros1b0CnmbVgAGXJubOYVBOGCT1OmJwOI7w==";
300
300
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.12.13.tgz";
301
301
+
sha512 = "8SCJ0Ddrpwv4T7Gwb33EmW1V9PY5lggTO+A8WjyIwxrSHDUyBw4MtF96ifn1n8H806YlxbVCoKXbbmzD6RD+cA==";
311
302
};
312
303
};
313
304
"@babel/plugin-proposal-dynamic-import-7.12.1" = {
···
319
310
sha512 = "a4rhUSZFuq5W8/OO8H7BL5zspjnc1FLd9hlOxIK/f7qG4a0qsqk8uvF/ywgBA8/OmjsapjpvaEOYItfGG1qIvQ==";
320
311
};
321
312
};
322
322
-
"@babel/plugin-proposal-export-namespace-from-7.12.1" = {
313
313
+
"@babel/plugin-proposal-export-namespace-from-7.12.13" = {
323
314
name = "_at_babel_slash_plugin-proposal-export-namespace-from";
324
315
packageName = "@babel/plugin-proposal-export-namespace-from";
325
325
-
version = "7.12.1";
316
316
+
version = "7.12.13";
326
317
src = fetchurl {
327
327
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.1.tgz";
328
328
-
sha512 = "6CThGf0irEkzujYS5LQcjBx8j/4aQGiVv7J9+2f7pGfxqyKh3WnmVJYW3hdrQjyksErMGBPQrCnHfOtna+WLbw==";
318
318
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz";
319
319
+
sha512 = "INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw==";
329
320
};
330
321
};
331
331
-
"@babel/plugin-proposal-json-strings-7.12.1" = {
322
322
+
"@babel/plugin-proposal-json-strings-7.12.13" = {
332
323
name = "_at_babel_slash_plugin-proposal-json-strings";
333
324
packageName = "@babel/plugin-proposal-json-strings";
334
334
-
version = "7.12.1";
325
325
+
version = "7.12.13";
335
326
src = fetchurl {
336
336
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.1.tgz";
337
337
-
sha512 = "GoLDUi6U9ZLzlSda2Df++VSqDJg3CG+dR0+iWsv6XRw1rEq+zwt4DirM9yrxW6XWaTpmai1cWJLMfM8qQJf+yw==";
327
327
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.12.13.tgz";
328
328
+
sha512 = "v9eEi4GiORDg8x+Dmi5r8ibOe0VXoKDeNPYcTTxdGN4eOWikrJfDJCJrr1l5gKGvsNyGJbrfMftC2dTL6oz7pg==";
338
329
};
339
330
};
340
340
-
"@babel/plugin-proposal-logical-assignment-operators-7.12.1" = {
331
331
+
"@babel/plugin-proposal-logical-assignment-operators-7.12.13" = {
341
332
name = "_at_babel_slash_plugin-proposal-logical-assignment-operators";
342
333
packageName = "@babel/plugin-proposal-logical-assignment-operators";
343
343
-
version = "7.12.1";
334
334
+
version = "7.12.13";
344
335
src = fetchurl {
345
345
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.1.tgz";
346
346
-
sha512 = "k8ZmVv0JU+4gcUGeCDZOGd0lCIamU/sMtIiX3UWnUc5yzgq6YUGyEolNYD+MLYKfSzgECPcqetVcJP9Afe/aCA==";
336
336
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.12.13.tgz";
337
337
+
sha512 = "fqmiD3Lz7jVdK6kabeSr1PZlWSUVqSitmHEe3Z00dtGTKieWnX9beafvavc32kjORa5Bai4QNHgFDwWJP+WtSQ==";
347
338
};
348
339
};
349
349
-
"@babel/plugin-proposal-nullish-coalescing-operator-7.12.1" = {
340
340
+
"@babel/plugin-proposal-nullish-coalescing-operator-7.12.13" = {
350
341
name = "_at_babel_slash_plugin-proposal-nullish-coalescing-operator";
351
342
packageName = "@babel/plugin-proposal-nullish-coalescing-operator";
352
352
-
version = "7.12.1";
343
343
+
version = "7.12.13";
353
344
src = fetchurl {
354
354
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.1.tgz";
355
355
-
sha512 = "nZY0ESiaQDI1y96+jk6VxMOaL4LPo/QDHBqL+SF3/vl6dHkTwHlOI8L4ZwuRBHgakRBw5zsVylel7QPbbGuYgg==";
345
345
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.12.13.tgz";
346
346
+
sha512 = "Qoxpy+OxhDBI5kRqliJFAl4uWXk3Bn24WeFstPH0iLymFehSAUR8MHpqU7njyXv/qbo7oN6yTy5bfCmXdKpo1Q==";
356
347
};
357
348
};
358
358
-
"@babel/plugin-proposal-numeric-separator-7.12.7" = {
349
349
+
"@babel/plugin-proposal-numeric-separator-7.12.13" = {
359
350
name = "_at_babel_slash_plugin-proposal-numeric-separator";
360
351
packageName = "@babel/plugin-proposal-numeric-separator";
361
361
-
version = "7.12.7";
352
352
+
version = "7.12.13";
362
353
src = fetchurl {
363
363
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.7.tgz";
364
364
-
sha512 = "8c+uy0qmnRTeukiGsjLGy6uVs/TFjJchGXUeBqlG4VWYOdJWkhhVPdQ3uHwbmalfJwv2JsV0qffXP4asRfL2SQ==";
354
354
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz";
355
355
+
sha512 = "O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w==";
365
356
};
366
357
};
367
367
-
"@babel/plugin-proposal-object-rest-spread-7.12.1" = {
358
358
+
"@babel/plugin-proposal-object-rest-spread-7.12.13" = {
368
359
name = "_at_babel_slash_plugin-proposal-object-rest-spread";
369
360
packageName = "@babel/plugin-proposal-object-rest-spread";
370
370
-
version = "7.12.1";
361
361
+
version = "7.12.13";
371
362
src = fetchurl {
372
372
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.1.tgz";
373
373
-
sha512 = "s6SowJIjzlhx8o7lsFx5zmY4At6CTtDvgNQDdPzkBQucle58A6b/TTeEBYtyDgmcXjUTM+vE8YOGHZzzbc/ioA==";
363
363
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.12.13.tgz";
364
364
+
sha512 = "WvA1okB/0OS/N3Ldb3sziSrXg6sRphsBgqiccfcQq7woEn5wQLNX82Oc4PlaFcdwcWHuQXAtb8ftbS8Fbsg/sg==";
374
365
};
375
366
};
376
376
-
"@babel/plugin-proposal-optional-catch-binding-7.12.1" = {
367
367
+
"@babel/plugin-proposal-optional-catch-binding-7.12.13" = {
377
368
name = "_at_babel_slash_plugin-proposal-optional-catch-binding";
378
369
packageName = "@babel/plugin-proposal-optional-catch-binding";
379
379
-
version = "7.12.1";
370
370
+
version = "7.12.13";
380
371
src = fetchurl {
381
381
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.1.tgz";
382
382
-
sha512 = "hFvIjgprh9mMw5v42sJWLI1lzU5L2sznP805zeT6rySVRA0Y18StRhDqhSxlap0oVgItRsB6WSROp4YnJTJz0g==";
372
372
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.12.13.tgz";
373
373
+
sha512 = "9+MIm6msl9sHWg58NvqpNpLtuFbmpFYk37x8kgnGzAHvX35E1FyAwSUt5hIkSoWJFSAH+iwU8bJ4fcD1zKXOzg==";
383
374
};
384
375
};
385
385
-
"@babel/plugin-proposal-optional-chaining-7.12.7" = {
376
376
+
"@babel/plugin-proposal-optional-chaining-7.12.13" = {
386
377
name = "_at_babel_slash_plugin-proposal-optional-chaining";
387
378
packageName = "@babel/plugin-proposal-optional-chaining";
388
388
-
version = "7.12.7";
379
379
+
version = "7.12.13";
389
380
src = fetchurl {
390
390
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.7.tgz";
391
391
-
sha512 = "4ovylXZ0PWmwoOvhU2vhnzVNnm88/Sm9nx7V8BPgMvAzn5zDou3/Awy0EjglyubVHasJj+XCEkr/r1X3P5elCA==";
381
381
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.12.13.tgz";
382
382
+
sha512 = "0ZwjGfTcnZqyV3y9DSD1Yk3ebp+sIUpT2YDqP8hovzaNZnQq2Kd7PEqa6iOIUDBXBt7Jl3P7YAcEIL5Pz8u09Q==";
392
383
};
393
384
};
394
394
-
"@babel/plugin-proposal-private-methods-7.12.1" = {
385
385
+
"@babel/plugin-proposal-private-methods-7.12.13" = {
395
386
name = "_at_babel_slash_plugin-proposal-private-methods";
396
387
packageName = "@babel/plugin-proposal-private-methods";
397
397
-
version = "7.12.1";
388
388
+
version = "7.12.13";
398
389
src = fetchurl {
399
399
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.1.tgz";
400
400
-
sha512 = "mwZ1phvH7/NHK6Kf8LP7MYDogGV+DKB1mryFOEwx5EBNQrosvIczzZFTUmWaeujd5xT6G1ELYWUz3CutMhjE1w==";
390
390
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.12.13.tgz";
391
391
+
sha512 = "sV0V57uUwpauixvR7s2o75LmwJI6JECwm5oPUY5beZB1nBl2i37hc7CJGqB5G+58fur5Y6ugvl3LRONk5x34rg==";
401
392
};
402
393
};
403
403
-
"@babel/plugin-proposal-unicode-property-regex-7.12.1" = {
394
394
+
"@babel/plugin-proposal-unicode-property-regex-7.12.13" = {
404
395
name = "_at_babel_slash_plugin-proposal-unicode-property-regex";
405
396
packageName = "@babel/plugin-proposal-unicode-property-regex";
406
406
-
version = "7.12.1";
397
397
+
version = "7.12.13";
407
398
src = fetchurl {
408
408
-
url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.1.tgz";
409
409
-
sha512 = "MYq+l+PvHuw/rKUz1at/vb6nCnQ2gmJBNaM62z0OgH7B2W1D9pvkpYtlti9bGtizNIU1K3zm4bZF9F91efVY0w==";
399
399
+
url = "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.12.13.tgz";
400
400
+
sha512 = "XyJmZidNfofEkqFV5VC/bLabGmO5QzenPO/YOfGuEbgU+2sSwMmio3YLb4WtBgcmmdwZHyVyv8on77IUjQ5Gvg==";
410
401
};
411
402
};
412
403
"@babel/plugin-syntax-async-generators-7.8.4" = {
···
418
409
sha512 = "tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==";
419
410
};
420
411
};
421
421
-
"@babel/plugin-syntax-class-properties-7.12.1" = {
412
412
+
"@babel/plugin-syntax-class-properties-7.12.13" = {
422
413
name = "_at_babel_slash_plugin-syntax-class-properties";
423
414
packageName = "@babel/plugin-syntax-class-properties";
424
424
-
version = "7.12.1";
415
415
+
version = "7.12.13";
425
416
src = fetchurl {
426
426
-
url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.1.tgz";
427
427
-
sha512 = "U40A76x5gTwmESz+qiqssqmeEsKvcSyvtgktrm0uzcARAmM9I1jR221f6Oq+GmHrcD+LvZDag1UTOTe2fL3TeA==";
417
417
+
url = "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz";
418
418
+
sha512 = "fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==";
428
419
};
429
420
};
430
421
"@babel/plugin-syntax-dynamic-import-7.8.3" = {
···
508
499
sha512 = "KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==";
509
500
};
510
501
};
511
511
-
"@babel/plugin-syntax-top-level-await-7.12.1" = {
502
502
+
"@babel/plugin-syntax-top-level-await-7.12.13" = {
512
503
name = "_at_babel_slash_plugin-syntax-top-level-await";
513
504
packageName = "@babel/plugin-syntax-top-level-await";
514
514
-
version = "7.12.1";
505
505
+
version = "7.12.13";
515
506
src = fetchurl {
516
516
-
url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz";
517
517
-
sha512 = "i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A==";
507
507
+
url = "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.13.tgz";
508
508
+
sha512 = "A81F9pDwyS7yM//KwbCSDqy3Uj4NMIurtplxphWxoYtNPov7cJsDkAFNNyVlIZ3jwGycVsurZ+LtOA8gZ376iQ==";
518
509
};
519
510
};
520
520
-
"@babel/plugin-transform-arrow-functions-7.12.1" = {
511
511
+
"@babel/plugin-transform-arrow-functions-7.12.13" = {
521
512
name = "_at_babel_slash_plugin-transform-arrow-functions";
522
513
packageName = "@babel/plugin-transform-arrow-functions";
523
523
-
version = "7.12.1";
514
514
+
version = "7.12.13";
524
515
src = fetchurl {
525
525
-
url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.1.tgz";
526
526
-
sha512 = "5QB50qyN44fzzz4/qxDPQMBCTHgxg3n0xRBLJUmBlLoU/sFvxVWGZF/ZUfMVDQuJUKXaBhbupxIzIfZ6Fwk/0A==";
516
516
+
url = "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.12.13.tgz";
517
517
+
sha512 = "tBtuN6qtCTd+iHzVZVOMNp+L04iIJBpqkdY42tWbmjIT5wvR2kx7gxMBsyhQtFzHwBbyGi9h8J8r9HgnOpQHxg==";
527
518
};
528
519
};
529
529
-
"@babel/plugin-transform-async-to-generator-7.12.1" = {
520
520
+
"@babel/plugin-transform-async-to-generator-7.12.13" = {
530
521
name = "_at_babel_slash_plugin-transform-async-to-generator";
531
522
packageName = "@babel/plugin-transform-async-to-generator";
532
532
-
version = "7.12.1";
523
523
+
version = "7.12.13";
533
524
src = fetchurl {
534
534
-
url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.1.tgz";
535
535
-
sha512 = "SDtqoEcarK1DFlRJ1hHRY5HvJUj5kX4qmtpMAm2QnhOlyuMC4TMdCRgW6WXpv93rZeYNeLP22y8Aq2dbcDRM1A==";
525
525
+
url = "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.12.13.tgz";
526
526
+
sha512 = "psM9QHcHaDr+HZpRuJcE1PXESuGWSCcbiGFFhhwfzdbTxaGDVzuVtdNYliAwcRo3GFg0Bc8MmI+AvIGYIJG04A==";
536
527
};
537
528
};
538
538
-
"@babel/plugin-transform-block-scoped-functions-7.12.1" = {
529
529
+
"@babel/plugin-transform-block-scoped-functions-7.12.13" = {
539
530
name = "_at_babel_slash_plugin-transform-block-scoped-functions";
540
531
packageName = "@babel/plugin-transform-block-scoped-functions";
541
541
-
version = "7.12.1";
532
532
+
version = "7.12.13";
542
533
src = fetchurl {
543
543
-
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.1.tgz";
544
544
-
sha512 = "5OpxfuYnSgPalRpo8EWGPzIYf0lHBWORCkj5M0oLBwHdlux9Ri36QqGW3/LR13RSVOAoUUMzoPI/jpE4ABcHoA==";
534
534
+
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.12.13.tgz";
535
535
+
sha512 = "zNyFqbc3kI/fVpqwfqkg6RvBgFpC4J18aKKMmv7KdQ/1GgREapSJAykLMVNwfRGO3BtHj3YQZl8kxCXPcVMVeg==";
545
536
};
546
537
};
547
547
-
"@babel/plugin-transform-block-scoping-7.12.1" = {
538
538
+
"@babel/plugin-transform-block-scoping-7.12.13" = {
548
539
name = "_at_babel_slash_plugin-transform-block-scoping";
549
540
packageName = "@babel/plugin-transform-block-scoping";
550
550
-
version = "7.12.1";
541
541
+
version = "7.12.13";
551
542
src = fetchurl {
552
552
-
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.1.tgz";
553
553
-
sha512 = "zJyAC9sZdE60r1nVQHblcfCj29Dh2Y0DOvlMkcqSo0ckqjiCwNiUezUKw+RjOCwGfpLRwnAeQ2XlLpsnGkvv9w==";
543
543
+
url = "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.12.13.tgz";
544
544
+
sha512 = "Pxwe0iqWJX4fOOM2kEZeUuAxHMWb9nK+9oh5d11bsLoB0xMg+mkDpt0eYuDZB7ETrY9bbcVlKUGTOGWy7BHsMQ==";
554
545
};
555
546
};
556
556
-
"@babel/plugin-transform-classes-7.12.1" = {
547
547
+
"@babel/plugin-transform-classes-7.12.13" = {
557
548
name = "_at_babel_slash_plugin-transform-classes";
558
549
packageName = "@babel/plugin-transform-classes";
559
559
-
version = "7.12.1";
550
550
+
version = "7.12.13";
560
551
src = fetchurl {
561
561
-
url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.1.tgz";
562
562
-
sha512 = "/74xkA7bVdzQTBeSUhLLJgYIcxw/dpEpCdRDiHgPJ3Mv6uC11UhjpOhl72CgqbBCmt1qtssCyB2xnJm1+PFjog==";
552
552
+
url = "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.12.13.tgz";
553
553
+
sha512 = "cqZlMlhCC1rVnxE5ZGMtIb896ijL90xppMiuWXcwcOAuFczynpd3KYemb91XFFPi3wJSe/OcrX9lXoowatkkxA==";
563
554
};
564
555
};
565
565
-
"@babel/plugin-transform-computed-properties-7.12.1" = {
556
556
+
"@babel/plugin-transform-computed-properties-7.12.13" = {
566
557
name = "_at_babel_slash_plugin-transform-computed-properties";
567
558
packageName = "@babel/plugin-transform-computed-properties";
568
568
-
version = "7.12.1";
559
559
+
version = "7.12.13";
569
560
src = fetchurl {
570
570
-
url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.1.tgz";
571
571
-
sha512 = "vVUOYpPWB7BkgUWPo4C44mUQHpTZXakEqFjbv8rQMg7TC6S6ZhGZ3otQcRH6u7+adSlE5i0sp63eMC/XGffrzg==";
561
561
+
url = "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.12.13.tgz";
562
562
+
sha512 = "dDfuROUPGK1mTtLKyDPUavmj2b6kFu82SmgpztBFEO974KMjJT+Ytj3/oWsTUMBmgPcp9J5Pc1SlcAYRpJ2hRA==";
572
563
};
573
564
};
574
574
-
"@babel/plugin-transform-destructuring-7.12.1" = {
565
565
+
"@babel/plugin-transform-destructuring-7.12.13" = {
575
566
name = "_at_babel_slash_plugin-transform-destructuring";
576
567
packageName = "@babel/plugin-transform-destructuring";
577
577
-
version = "7.12.1";
568
568
+
version = "7.12.13";
578
569
src = fetchurl {
579
579
-
url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.1.tgz";
580
580
-
sha512 = "fRMYFKuzi/rSiYb2uRLiUENJOKq4Gnl+6qOv5f8z0TZXg3llUwUhsNNwrwaT/6dUhJTzNpBr+CUvEWBtfNY1cw==";
570
570
+
url = "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.12.13.tgz";
571
571
+
sha512 = "Dn83KykIFzjhA3FDPA1z4N+yfF3btDGhjnJwxIj0T43tP0flCujnU8fKgEkf0C1biIpSv9NZegPBQ1J6jYkwvQ==";
581
572
};
582
573
};
583
583
-
"@babel/plugin-transform-dotall-regex-7.12.1" = {
574
574
+
"@babel/plugin-transform-dotall-regex-7.12.13" = {
584
575
name = "_at_babel_slash_plugin-transform-dotall-regex";
585
576
packageName = "@babel/plugin-transform-dotall-regex";
586
586
-
version = "7.12.1";
577
577
+
version = "7.12.13";
587
578
src = fetchurl {
588
588
-
url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.1.tgz";
589
589
-
sha512 = "B2pXeRKoLszfEW7J4Hg9LoFaWEbr/kzo3teWHmtFCszjRNa/b40f9mfeqZsIDLLt/FjwQ6pz/Gdlwy85xNckBA==";
579
579
+
url = "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.12.13.tgz";
580
580
+
sha512 = "foDrozE65ZFdUC2OfgeOCrEPTxdB3yjqxpXh8CH+ipd9CHd4s/iq81kcUpyH8ACGNEPdFqbtzfgzbT/ZGlbDeQ==";
590
581
};
591
582
};
592
592
-
"@babel/plugin-transform-duplicate-keys-7.12.1" = {
583
583
+
"@babel/plugin-transform-duplicate-keys-7.12.13" = {
593
584
name = "_at_babel_slash_plugin-transform-duplicate-keys";
594
585
packageName = "@babel/plugin-transform-duplicate-keys";
595
595
-
version = "7.12.1";
586
586
+
version = "7.12.13";
596
587
src = fetchurl {
597
597
-
url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.1.tgz";
598
598
-
sha512 = "iRght0T0HztAb/CazveUpUQrZY+aGKKaWXMJ4uf9YJtqxSUe09j3wteztCUDRHs+SRAL7yMuFqUsLoAKKzgXjw==";
588
588
+
url = "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.12.13.tgz";
589
589
+
sha512 = "NfADJiiHdhLBW3pulJlJI2NB0t4cci4WTZ8FtdIuNc2+8pslXdPtRRAEWqUY+m9kNOk2eRYbTAOipAxlrOcwwQ==";
599
590
};
600
591
};
601
601
-
"@babel/plugin-transform-exponentiation-operator-7.12.1" = {
592
592
+
"@babel/plugin-transform-exponentiation-operator-7.12.13" = {
602
593
name = "_at_babel_slash_plugin-transform-exponentiation-operator";
603
594
packageName = "@babel/plugin-transform-exponentiation-operator";
604
604
-
version = "7.12.1";
595
595
+
version = "7.12.13";
605
596
src = fetchurl {
606
606
-
url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.1.tgz";
607
607
-
sha512 = "7tqwy2bv48q+c1EHbXK0Zx3KXd2RVQp6OC7PbwFNt/dPTAV3Lu5sWtWuAj8owr5wqtWnqHfl2/mJlUmqkChKug==";
597
597
+
url = "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.12.13.tgz";
598
598
+
sha512 = "fbUelkM1apvqez/yYx1/oICVnGo2KM5s63mhGylrmXUxK/IAXSIf87QIxVfZldWf4QsOafY6vV3bX8aMHSvNrA==";
608
599
};
609
600
};
610
610
-
"@babel/plugin-transform-for-of-7.12.1" = {
601
601
+
"@babel/plugin-transform-for-of-7.12.13" = {
611
602
name = "_at_babel_slash_plugin-transform-for-of";
612
603
packageName = "@babel/plugin-transform-for-of";
613
613
-
version = "7.12.1";
604
604
+
version = "7.12.13";
614
605
src = fetchurl {
615
615
-
url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.1.tgz";
616
616
-
sha512 = "Zaeq10naAsuHo7heQvyV0ptj4dlZJwZgNAtBYBnu5nNKJoW62m0zKcIEyVECrUKErkUkg6ajMy4ZfnVZciSBhg==";
606
606
+
url = "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.12.13.tgz";
607
607
+
sha512 = "xCbdgSzXYmHGyVX3+BsQjcd4hv4vA/FDy7Kc8eOpzKmBBPEOTurt0w5fCRQaGl+GSBORKgJdstQ1rHl4jbNseQ==";
617
608
};
618
609
};
619
619
-
"@babel/plugin-transform-function-name-7.12.1" = {
610
610
+
"@babel/plugin-transform-function-name-7.12.13" = {
620
611
name = "_at_babel_slash_plugin-transform-function-name";
621
612
packageName = "@babel/plugin-transform-function-name";
622
622
-
version = "7.12.1";
613
613
+
version = "7.12.13";
623
614
src = fetchurl {
624
624
-
url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.1.tgz";
625
625
-
sha512 = "JF3UgJUILoFrFMEnOJLJkRHSk6LUSXLmEFsA23aR2O5CSLUxbeUX1IZ1YQ7Sn0aXb601Ncwjx73a+FVqgcljVw==";
615
615
+
url = "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.12.13.tgz";
616
616
+
sha512 = "6K7gZycG0cmIwwF7uMK/ZqeCikCGVBdyP2J5SKNCXO5EOHcqi+z7Jwf8AmyDNcBgxET8DrEtCt/mPKPyAzXyqQ==";
626
617
};
627
618
};
628
628
-
"@babel/plugin-transform-literals-7.12.1" = {
619
619
+
"@babel/plugin-transform-literals-7.12.13" = {
629
620
name = "_at_babel_slash_plugin-transform-literals";
630
621
packageName = "@babel/plugin-transform-literals";
631
631
-
version = "7.12.1";
622
622
+
version = "7.12.13";
632
623
src = fetchurl {
633
633
-
url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.1.tgz";
634
634
-
sha512 = "+PxVGA+2Ag6uGgL0A5f+9rklOnnMccwEBzwYFL3EUaKuiyVnUipyXncFcfjSkbimLrODoqki1U9XxZzTvfN7IQ==";
624
624
+
url = "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.12.13.tgz";
625
625
+
sha512 = "FW+WPjSR7hiUxMcKqyNjP05tQ2kmBCdpEpZHY1ARm96tGQCCBvXKnpjILtDplUnJ/eHZ0lALLM+d2lMFSpYJrQ==";
635
626
};
636
627
};
637
637
-
"@babel/plugin-transform-member-expression-literals-7.12.1" = {
628
628
+
"@babel/plugin-transform-member-expression-literals-7.12.13" = {
638
629
name = "_at_babel_slash_plugin-transform-member-expression-literals";
639
630
packageName = "@babel/plugin-transform-member-expression-literals";
640
640
-
version = "7.12.1";
631
631
+
version = "7.12.13";
641
632
src = fetchurl {
642
642
-
url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.1.tgz";
643
643
-
sha512 = "1sxePl6z9ad0gFMB9KqmYofk34flq62aqMt9NqliS/7hPEpURUCMbyHXrMPlo282iY7nAvUB1aQd5mg79UD9Jg==";
633
633
+
url = "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.12.13.tgz";
634
634
+
sha512 = "kxLkOsg8yir4YeEPHLuO2tXP9R/gTjpuTOjshqSpELUN3ZAg2jfDnKUvzzJxObun38sw3wm4Uu69sX/zA7iRvg==";
644
635
};
645
636
};
646
646
-
"@babel/plugin-transform-modules-amd-7.12.1" = {
637
637
+
"@babel/plugin-transform-modules-amd-7.12.13" = {
647
638
name = "_at_babel_slash_plugin-transform-modules-amd";
648
639
packageName = "@babel/plugin-transform-modules-amd";
649
649
-
version = "7.12.1";
640
640
+
version = "7.12.13";
650
641
src = fetchurl {
651
651
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.1.tgz";
652
652
-
sha512 = "tDW8hMkzad5oDtzsB70HIQQRBiTKrhfgwC/KkJeGsaNFTdWhKNt/BiE8c5yj19XiGyrxpbkOfH87qkNg1YGlOQ==";
642
642
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.12.13.tgz";
643
643
+
sha512 = "JHLOU0o81m5UqG0Ulz/fPC68/v+UTuGTWaZBUwpEk1fYQ1D9LfKV6MPn4ttJKqRo5Lm460fkzjLTL4EHvCprvA==";
653
644
};
654
645
};
655
655
-
"@babel/plugin-transform-modules-commonjs-7.12.1" = {
646
646
+
"@babel/plugin-transform-modules-commonjs-7.12.13" = {
656
647
name = "_at_babel_slash_plugin-transform-modules-commonjs";
657
648
packageName = "@babel/plugin-transform-modules-commonjs";
658
658
-
version = "7.12.1";
649
649
+
version = "7.12.13";
659
650
src = fetchurl {
660
660
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.1.tgz";
661
661
-
sha512 = "dY789wq6l0uLY8py9c1B48V8mVL5gZh/+PQ5ZPrylPYsnAvnEMjqsUXkuoDVPeVK+0VyGar+D08107LzDQ6pag==";
651
651
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.12.13.tgz";
652
652
+
sha512 = "OGQoeVXVi1259HjuoDnsQMlMkT9UkZT9TpXAsqWplS/M0N1g3TJAn/ByOCeQu7mfjc5WpSsRU+jV1Hd89ts0kQ==";
662
653
};
663
654
};
664
664
-
"@babel/plugin-transform-modules-systemjs-7.12.1" = {
655
655
+
"@babel/plugin-transform-modules-systemjs-7.12.13" = {
665
656
name = "_at_babel_slash_plugin-transform-modules-systemjs";
666
657
packageName = "@babel/plugin-transform-modules-systemjs";
667
667
-
version = "7.12.1";
658
658
+
version = "7.12.13";
668
659
src = fetchurl {
669
669
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.1.tgz";
670
670
-
sha512 = "Hn7cVvOavVh8yvW6fLwveFqSnd7rbQN3zJvoPNyNaQSvgfKmDBO9U1YL9+PCXGRlZD9tNdWTy5ACKqMuzyn32Q==";
660
660
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.12.13.tgz";
661
661
+
sha512 = "aHfVjhZ8QekaNF/5aNdStCGzwTbU7SI5hUybBKlMzqIMC7w7Ho8hx5a4R/DkTHfRfLwHGGxSpFt9BfxKCoXKoA==";
671
662
};
672
663
};
673
673
-
"@babel/plugin-transform-modules-umd-7.12.1" = {
664
664
+
"@babel/plugin-transform-modules-umd-7.12.13" = {
674
665
name = "_at_babel_slash_plugin-transform-modules-umd";
675
666
packageName = "@babel/plugin-transform-modules-umd";
676
676
-
version = "7.12.1";
667
667
+
version = "7.12.13";
677
668
src = fetchurl {
678
678
-
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.1.tgz";
679
679
-
sha512 = "aEIubCS0KHKM0zUos5fIoQm+AZUMt1ZvMpqz0/H5qAQ7vWylr9+PLYurT+Ic7ID/bKLd4q8hDovaG3Zch2uz5Q==";
669
669
+
url = "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.12.13.tgz";
670
670
+
sha512 = "BgZndyABRML4z6ibpi7Z98m4EVLFI9tVsZDADC14AElFaNHHBcJIovflJ6wtCqFxwy2YJ1tJhGRsr0yLPKoN+w==";
680
671
};
681
672
};
682
682
-
"@babel/plugin-transform-named-capturing-groups-regex-7.12.1" = {
673
673
+
"@babel/plugin-transform-named-capturing-groups-regex-7.12.13" = {
683
674
name = "_at_babel_slash_plugin-transform-named-capturing-groups-regex";
684
675
packageName = "@babel/plugin-transform-named-capturing-groups-regex";
685
685
-
version = "7.12.1";
676
676
+
version = "7.12.13";
686
677
src = fetchurl {
687
687
-
url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.1.tgz";
688
688
-
sha512 = "tB43uQ62RHcoDp9v2Nsf+dSM8sbNodbEicbQNA53zHz8pWUhsgHSJCGpt7daXxRydjb0KnfmB+ChXOv3oADp1Q==";
678
678
+
url = "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.12.13.tgz";
679
679
+
sha512 = "Xsm8P2hr5hAxyYblrfACXpQKdQbx4m2df9/ZZSQ8MAhsadw06+jW7s9zsSw6he+mJZXRlVMyEnVktJo4zjk1WA==";
689
680
};
690
681
};
691
691
-
"@babel/plugin-transform-new-target-7.12.1" = {
682
682
+
"@babel/plugin-transform-new-target-7.12.13" = {
692
683
name = "_at_babel_slash_plugin-transform-new-target";
693
684
packageName = "@babel/plugin-transform-new-target";
694
694
-
version = "7.12.1";
685
685
+
version = "7.12.13";
695
686
src = fetchurl {
696
696
-
url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.1.tgz";
697
697
-
sha512 = "+eW/VLcUL5L9IvJH7rT1sT0CzkdUTvPrXC2PXTn/7z7tXLBuKvezYbGdxD5WMRoyvyaujOq2fWoKl869heKjhw==";
687
687
+
url = "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.12.13.tgz";
688
688
+
sha512 = "/KY2hbLxrG5GTQ9zzZSc3xWiOy379pIETEhbtzwZcw9rvuaVV4Fqy7BYGYOWZnaoXIQYbbJ0ziXLa/sKcGCYEQ==";
698
689
};
699
690
};
700
700
-
"@babel/plugin-transform-object-super-7.12.1" = {
691
691
+
"@babel/plugin-transform-object-super-7.12.13" = {
701
692
name = "_at_babel_slash_plugin-transform-object-super";
702
693
packageName = "@babel/plugin-transform-object-super";
703
703
-
version = "7.12.1";
694
694
+
version = "7.12.13";
704
695
src = fetchurl {
705
705
-
url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.1.tgz";
706
706
-
sha512 = "AvypiGJH9hsquNUn+RXVcBdeE3KHPZexWRdimhuV59cSoOt5kFBmqlByorAeUlGG2CJWd0U+4ZtNKga/TB0cAw==";
696
696
+
url = "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.12.13.tgz";
697
697
+
sha512 = "JzYIcj3XtYspZDV8j9ulnoMPZZnF/Cj0LUxPOjR89BdBVx+zYJI9MdMIlUZjbXDX+6YVeS6I3e8op+qQ3BYBoQ==";
707
698
};
708
699
};
709
709
-
"@babel/plugin-transform-parameters-7.12.1" = {
700
700
+
"@babel/plugin-transform-parameters-7.12.13" = {
710
701
name = "_at_babel_slash_plugin-transform-parameters";
711
702
packageName = "@babel/plugin-transform-parameters";
712
712
-
version = "7.12.1";
703
703
+
version = "7.12.13";
713
704
src = fetchurl {
714
714
-
url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.1.tgz";
715
715
-
sha512 = "xq9C5EQhdPK23ZeCdMxl8bbRnAgHFrw5EOC3KJUsSylZqdkCaFEXxGSBuTSObOpiiHHNyb82es8M1QYgfQGfNg==";
705
705
+
url = "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.12.13.tgz";
706
706
+
sha512 = "e7QqwZalNiBRHCpJg/P8s/VJeSRYgmtWySs1JwvfwPqhBbiWfOcHDKdeAi6oAyIimoKWBlwc8oTgbZHdhCoVZA==";
716
707
};
717
708
};
718
718
-
"@babel/plugin-transform-property-literals-7.12.1" = {
709
709
+
"@babel/plugin-transform-property-literals-7.12.13" = {
719
710
name = "_at_babel_slash_plugin-transform-property-literals";
720
711
packageName = "@babel/plugin-transform-property-literals";
721
721
-
version = "7.12.1";
712
712
+
version = "7.12.13";
722
713
src = fetchurl {
723
723
-
url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.1.tgz";
724
724
-
sha512 = "6MTCR/mZ1MQS+AwZLplX4cEySjCpnIF26ToWo942nqn8hXSm7McaHQNeGx/pt7suI1TWOWMfa/NgBhiqSnX0cQ==";
714
714
+
url = "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.12.13.tgz";
715
715
+
sha512 = "nqVigwVan+lR+g8Fj8Exl0UQX2kymtjcWfMOYM1vTYEKujeyv2SkMgazf2qNcK7l4SDiKyTA/nHCPqL4e2zo1A==";
725
716
};
726
717
};
727
727
-
"@babel/plugin-transform-regenerator-7.12.1" = {
718
718
+
"@babel/plugin-transform-regenerator-7.12.13" = {
728
719
name = "_at_babel_slash_plugin-transform-regenerator";
729
720
packageName = "@babel/plugin-transform-regenerator";
730
730
-
version = "7.12.1";
721
721
+
version = "7.12.13";
731
722
src = fetchurl {
732
732
-
url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.1.tgz";
733
733
-
sha512 = "gYrHqs5itw6i4PflFX3OdBPMQdPbF4bj2REIUxlMRUFk0/ZOAIpDFuViuxPjUL7YC8UPnf+XG7/utJvqXdPKng==";
723
723
+
url = "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.12.13.tgz";
724
724
+
sha512 = "lxb2ZAvSLyJ2PEe47hoGWPmW22v7CtSl9jW8mingV4H2sEX/JOcrAj2nPuGWi56ERUm2bUpjKzONAuT6HCn2EA==";
734
725
};
735
726
};
736
736
-
"@babel/plugin-transform-reserved-words-7.12.1" = {
727
727
+
"@babel/plugin-transform-reserved-words-7.12.13" = {
737
728
name = "_at_babel_slash_plugin-transform-reserved-words";
738
729
packageName = "@babel/plugin-transform-reserved-words";
739
739
-
version = "7.12.1";
730
730
+
version = "7.12.13";
740
731
src = fetchurl {
741
741
-
url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.1.tgz";
742
742
-
sha512 = "pOnUfhyPKvZpVyBHhSBoX8vfA09b7r00Pmm1sH+29ae2hMTKVmSp4Ztsr8KBKjLjx17H0eJqaRC3bR2iThM54A==";
732
732
+
url = "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.12.13.tgz";
733
733
+
sha512 = "xhUPzDXxZN1QfiOy/I5tyye+TRz6lA7z6xaT4CLOjPRMVg1ldRf0LHw0TDBpYL4vG78556WuHdyO9oi5UmzZBg==";
743
734
};
744
735
};
745
745
-
"@babel/plugin-transform-runtime-7.12.1" = {
736
736
+
"@babel/plugin-transform-runtime-7.12.10" = {
746
737
name = "_at_babel_slash_plugin-transform-runtime";
747
738
packageName = "@babel/plugin-transform-runtime";
748
748
-
version = "7.12.1";
739
739
+
version = "7.12.10";
749
740
src = fetchurl {
750
750
-
url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.1.tgz";
751
751
-
sha512 = "Ac/H6G9FEIkS2tXsZjL4RAdS3L3WHxci0usAnz7laPWUmFiGtj7tIASChqKZMHTSQTQY6xDbOq+V1/vIq3QrWg==";
741
741
+
url = "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.12.10.tgz";
742
742
+
sha512 = "xOrUfzPxw7+WDm9igMgQCbO3cJKymX7dFdsgRr1eu9n3KjjyU4pptIXbXPseQDquw+W+RuJEJMHKHNsPNNm3CA==";
752
743
};
753
744
};
754
754
-
"@babel/plugin-transform-shorthand-properties-7.12.1" = {
745
745
+
"@babel/plugin-transform-shorthand-properties-7.12.13" = {
755
746
name = "_at_babel_slash_plugin-transform-shorthand-properties";
756
747
packageName = "@babel/plugin-transform-shorthand-properties";
757
757
-
version = "7.12.1";
748
748
+
version = "7.12.13";
758
749
src = fetchurl {
759
759
-
url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.1.tgz";
760
760
-
sha512 = "GFZS3c/MhX1OusqB1MZ1ct2xRzX5ppQh2JU1h2Pnfk88HtFTM+TWQqJNfwkmxtPQtb/s1tk87oENfXJlx7rSDw==";
750
750
+
url = "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.12.13.tgz";
751
751
+
sha512 = "xpL49pqPnLtf0tVluuqvzWIgLEhuPpZzvs2yabUHSKRNlN7ScYU7aMlmavOeyXJZKgZKQRBlh8rHbKiJDraTSw==";
761
752
};
762
753
};
763
763
-
"@babel/plugin-transform-spread-7.12.1" = {
754
754
+
"@babel/plugin-transform-spread-7.12.13" = {
764
755
name = "_at_babel_slash_plugin-transform-spread";
765
756
packageName = "@babel/plugin-transform-spread";
766
766
-
version = "7.12.1";
757
757
+
version = "7.12.13";
767
758
src = fetchurl {
768
768
-
url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.1.tgz";
769
769
-
sha512 = "vuLp8CP0BE18zVYjsEBZ5xoCecMK6LBMMxYzJnh01rxQRvhNhH1csMMmBfNo5tGpGO+NhdSNW2mzIvBu3K1fng==";
759
759
+
url = "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.12.13.tgz";
760
760
+
sha512 = "dUCrqPIowjqk5pXsx1zPftSq4sT0aCeZVAxhdgs3AMgyaDmoUT0G+5h3Dzja27t76aUEIJWlFgPJqJ/d4dbTtg==";
770
761
};
771
762
};
772
772
-
"@babel/plugin-transform-sticky-regex-7.12.7" = {
763
763
+
"@babel/plugin-transform-sticky-regex-7.12.13" = {
773
764
name = "_at_babel_slash_plugin-transform-sticky-regex";
774
765
packageName = "@babel/plugin-transform-sticky-regex";
775
775
-
version = "7.12.7";
766
766
+
version = "7.12.13";
776
767
src = fetchurl {
777
777
-
url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.7.tgz";
778
778
-
sha512 = "VEiqZL5N/QvDbdjfYQBhruN0HYjSPjC4XkeqW4ny/jNtH9gcbgaqBIXYEZCNnESMAGs0/K/R7oFGMhOyu/eIxg==";
768
768
+
url = "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.12.13.tgz";
769
769
+
sha512 = "Jc3JSaaWT8+fr7GRvQP02fKDsYk4K/lYwWq38r/UGfaxo89ajud321NH28KRQ7xy1Ybc0VUE5Pz8psjNNDUglg==";
779
770
};
780
771
};
781
781
-
"@babel/plugin-transform-template-literals-7.12.1" = {
772
772
+
"@babel/plugin-transform-template-literals-7.12.13" = {
782
773
name = "_at_babel_slash_plugin-transform-template-literals";
783
774
packageName = "@babel/plugin-transform-template-literals";
784
784
-
version = "7.12.1";
775
775
+
version = "7.12.13";
785
776
src = fetchurl {
786
786
-
url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.1.tgz";
787
787
-
sha512 = "b4Zx3KHi+taXB1dVRBhVJtEPi9h1THCeKmae2qP0YdUHIFhVjtpqqNfxeVAa1xeHVhAy4SbHxEwx5cltAu5apw==";
777
777
+
url = "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.12.13.tgz";
778
778
+
sha512 = "arIKlWYUgmNsF28EyfmiQHJLJFlAJNYkuQO10jL46ggjBpeb2re1P9K9YGxNJB45BqTbaslVysXDYm/g3sN/Qg==";
788
779
};
789
780
};
790
790
-
"@babel/plugin-transform-typeof-symbol-7.12.1" = {
781
781
+
"@babel/plugin-transform-typeof-symbol-7.12.13" = {
791
782
name = "_at_babel_slash_plugin-transform-typeof-symbol";
792
783
packageName = "@babel/plugin-transform-typeof-symbol";
793
793
-
version = "7.12.1";
784
784
+
version = "7.12.13";
794
785
src = fetchurl {
795
795
-
url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.1.tgz";
796
796
-
sha512 = "EPGgpGy+O5Kg5pJFNDKuxt9RdmTgj5sgrus2XVeMp/ZIbOESadgILUbm50SNpghOh3/6yrbsH+NB5+WJTmsA7Q==";
786
786
+
url = "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.12.13.tgz";
787
787
+
sha512 = "eKv/LmUJpMnu4npgfvs3LiHhJua5fo/CysENxa45YCQXZwKnGCQKAg87bvoqSW1fFT+HA32l03Qxsm8ouTY3ZQ==";
797
788
};
798
789
};
799
799
-
"@babel/plugin-transform-unicode-escapes-7.12.1" = {
790
790
+
"@babel/plugin-transform-unicode-escapes-7.12.13" = {
800
791
name = "_at_babel_slash_plugin-transform-unicode-escapes";
801
792
packageName = "@babel/plugin-transform-unicode-escapes";
802
802
-
version = "7.12.1";
793
793
+
version = "7.12.13";
803
794
src = fetchurl {
804
804
-
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.1.tgz";
805
805
-
sha512 = "I8gNHJLIc7GdApm7wkVnStWssPNbSRMPtgHdmH3sRM1zopz09UWPS4x5V4n1yz/MIWTVnJ9sp6IkuXdWM4w+2Q==";
795
795
+
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.12.13.tgz";
796
796
+
sha512 = "0bHEkdwJ/sN/ikBHfSmOXPypN/beiGqjo+o4/5K+vxEFNPRPdImhviPakMKG4x96l85emoa0Z6cDflsdBusZbw==";
806
797
};
807
798
};
808
808
-
"@babel/plugin-transform-unicode-regex-7.12.1" = {
799
799
+
"@babel/plugin-transform-unicode-regex-7.12.13" = {
809
800
name = "_at_babel_slash_plugin-transform-unicode-regex";
810
801
packageName = "@babel/plugin-transform-unicode-regex";
811
811
-
version = "7.12.1";
802
802
+
version = "7.12.13";
812
803
src = fetchurl {
813
813
-
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.1.tgz";
814
814
-
sha512 = "SqH4ClNngh/zGwHZOOQMTD+e8FGWexILV+ePMyiDJttAWRh5dhDL8rcl5lSgU3Huiq6Zn6pWTMvdPAb21Dwdyg==";
804
804
+
url = "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.12.13.tgz";
805
805
+
sha512 = "mDRzSNY7/zopwisPZ5kM9XKCfhchqIYwAKRERtEnhYscZB79VRekuRSoYbN0+KVe3y8+q1h6A4svXtP7N+UoCA==";
815
806
};
816
807
};
817
817
-
"@babel/preset-env-7.12.7" = {
808
808
+
"@babel/preset-env-7.12.10" = {
818
809
name = "_at_babel_slash_preset-env";
819
810
packageName = "@babel/preset-env";
820
820
-
version = "7.12.7";
811
811
+
version = "7.12.10";
821
812
src = fetchurl {
822
822
-
url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.7.tgz";
823
823
-
sha512 = "OnNdfAr1FUQg7ksb7bmbKoby4qFOHw6DKWWUNB9KqnnCldxhxJlP+21dpyaWFmf2h0rTbOkXJtAGevY3XW1eew==";
813
813
+
url = "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.12.10.tgz";
814
814
+
sha512 = "Gz9hnBT/tGeTE2DBNDkD7BiWRELZt+8lSysHuDwmYXUIvtwZl0zI+D6mZgXZX0u8YBlLS4tmai9ONNY9tjRgRA==";
824
815
};
825
816
};
826
817
"@babel/preset-modules-0.1.4" = {
···
841
832
sha512 = "plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg==";
842
833
};
843
834
};
844
844
-
"@babel/template-7.12.7" = {
835
835
+
"@babel/template-7.12.13" = {
845
836
name = "_at_babel_slash_template";
846
837
packageName = "@babel/template";
847
847
-
version = "7.12.7";
838
838
+
version = "7.12.13";
848
839
src = fetchurl {
849
849
-
url = "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz";
850
850
-
sha512 = "GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==";
840
840
+
url = "https://registry.npmjs.org/@babel/template/-/template-7.12.13.tgz";
841
841
+
sha512 = "/7xxiGA57xMo/P2GVvdEumr8ONhFOhfgq2ihK3h1e6THqzTAkHbkXgB0xI9yeTfIUoH3+oAeHhqm/I43OTbbjA==";
851
842
};
852
843
};
853
853
-
"@babel/traverse-7.12.9" = {
844
844
+
"@babel/traverse-7.12.13" = {
854
845
name = "_at_babel_slash_traverse";
855
846
packageName = "@babel/traverse";
856
856
-
version = "7.12.9";
847
847
+
version = "7.12.13";
857
848
src = fetchurl {
858
858
-
url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.9.tgz";
859
859
-
sha512 = "iX9ajqnLdoU1s1nHt36JDI9KG4k+vmI8WgjK5d+aDTwQbL2fUnzedNedssA645Ede3PM2ma1n8Q4h2ohwXgMXw==";
849
849
+
url = "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.13.tgz";
850
850
+
sha512 = "3Zb4w7eE/OslI0fTp8c7b286/cQps3+vdLW3UcwC8VSJC6GbKn55aeVVu2QJNuCDoeKyptLOFrPq8WqZZBodyA==";
860
851
};
861
852
};
862
862
-
"@babel/types-7.12.7" = {
853
853
+
"@babel/types-7.12.13" = {
863
854
name = "_at_babel_slash_types";
864
855
packageName = "@babel/types";
865
865
-
version = "7.12.7";
856
856
+
version = "7.12.13";
866
857
src = fetchurl {
867
867
-
url = "https://registry.npmjs.org/@babel/types/-/types-7.12.7.tgz";
868
868
-
sha512 = "MNyI92qZq6jrQkXvtIiykvl4WtoRrVV9MPn+ZfsoEENjiWcBQ3ZSHrkxnJWgWtLX3XXqX5hrSQ+X69wkmesXuQ==";
858
858
+
url = "https://registry.npmjs.org/@babel/types/-/types-7.12.13.tgz";
859
859
+
sha512 = "oKrdZTld2im1z8bDwTOQvUbxKwE+854zc16qWZQlcTqMN00pWxHQ4ZeOq0yDMnisOpRykH2/5Qqcrk/OlbAjiQ==";
869
860
};
870
861
};
871
862
"@hapi/address-2.1.4" = {
···
922
913
sha512 = "bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==";
923
914
};
924
915
};
925
925
-
"@nodelib/fs.scandir-2.1.3" = {
916
916
+
"@nodelib/fs.scandir-2.1.4" = {
926
917
name = "_at_nodelib_slash_fs.scandir";
927
918
packageName = "@nodelib/fs.scandir";
928
928
-
version = "2.1.3";
919
919
+
version = "2.1.4";
929
920
src = fetchurl {
930
930
-
url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.3.tgz";
931
931
-
sha512 = "eGmwYQn3gxo4r7jdQnkrrN6bY478C3P+a/y72IJukF8LjB6ZHeB3c+Ehacj3sYeSmUXGlnA67/PmbM9CVwL7Dw==";
921
921
+
url = "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz";
922
922
+
sha512 = "33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA==";
932
923
};
933
924
};
934
925
"@nodelib/fs.stat-1.1.3" = {
···
940
931
sha512 = "shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==";
941
932
};
942
933
};
943
943
-
"@nodelib/fs.stat-2.0.3" = {
934
934
+
"@nodelib/fs.stat-2.0.4" = {
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.4";
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.4.tgz";
940
940
+
sha512 = "IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q==";
950
941
};
951
942
};
952
952
-
"@nodelib/fs.walk-1.2.4" = {
943
943
+
"@nodelib/fs.walk-1.2.6" = {
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.6";
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.6.tgz";
949
949
+
sha512 = "8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow==";
959
950
};
960
951
};
961
952
"@sindresorhus/is-0.14.0" = {
···
1039
1030
sha512 = "c3Xy026kOF7QOTn00hbIllV1dLR9hG9NkSrLQgCVs8NF6sBU+VGWjD3wLPhmh1TYAc7ugCFsvHYMN4VcBN1U1A==";
1040
1031
};
1041
1032
};
1042
1042
-
"@types/http-proxy-1.17.4" = {
1033
1033
+
"@types/http-proxy-1.17.5" = {
1043
1034
name = "_at_types_slash_http-proxy";
1044
1035
packageName = "@types/http-proxy";
1045
1045
-
version = "1.17.4";
1036
1036
+
version = "1.17.5";
1046
1037
src = fetchurl {
1047
1047
-
url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.4.tgz";
1048
1048
-
sha512 = "IrSHl2u6AWXduUaDLqYpt45tLVCtYv7o4Z0s1KghBCDgIIS9oW5K1H8mZG/A2CfeLdEa7rTd1ACOiHBc1EMT2Q==";
1038
1038
+
url = "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.5.tgz";
1039
1039
+
sha512 = "GNkDE7bTv6Sf8JbV2GksknKOsk7OznNYHSdrtvPJXO0qJ9odZig6IZKUi5RFGi6d1bf6dgIAe4uXi3DBc7069Q==";
1049
1040
};
1050
1041
};
1051
1051
-
"@types/json-schema-7.0.6" = {
1042
1042
+
"@types/json-schema-7.0.7" = {
1052
1043
name = "_at_types_slash_json-schema";
1053
1044
packageName = "@types/json-schema";
1054
1054
-
version = "7.0.6";
1045
1045
+
version = "7.0.7";
1055
1046
src = fetchurl {
1056
1056
-
url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.6.tgz";
1057
1057
-
sha512 = "3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw==";
1047
1047
+
url = "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.7.tgz";
1048
1048
+
sha512 = "cxWFQVseBm6O9Gbw1IWb8r6OS4OhSt3hPZLkFApLjM8TEXROBuQGLAH2i2gZpcXdLBIrpXuTDhH7Vbm1iXmNGA==";
1058
1049
};
1059
1050
};
1060
1051
"@types/keyv-3.1.1" = {
···
1075
1066
sha512 = "tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==";
1076
1067
};
1077
1068
};
1078
1078
-
"@types/node-14.14.10" = {
1069
1069
+
"@types/node-14.14.25" = {
1079
1070
name = "_at_types_slash_node";
1080
1071
packageName = "@types/node";
1081
1081
-
version = "14.14.10";
1072
1072
+
version = "14.14.25";
1082
1073
src = fetchurl {
1083
1083
-
url = "https://registry.npmjs.org/@types/node/-/node-14.14.10.tgz";
1084
1084
-
sha512 = "J32dgx2hw8vXrSbu4ZlVhn1Nm3GbeCFNw2FWL8S5QKucHGY0cyNwjdQdO+KMBZ4wpmC7KhLCiNsdk1RFRIYUQQ==";
1074
1074
+
url = "https://registry.npmjs.org/@types/node/-/node-14.14.25.tgz";
1075
1075
+
sha512 = "EPpXLOVqDvisVxtlbvzfyqSsFeQxltFbluZNRndIb8tr9KiBnYNLzrc1N3pyKUCww2RNrfHDViqDWWE1LCJQtQ==";
1085
1076
};
1086
1077
};
1087
1078
"@types/parse-json-4.0.0" = {
···
1138
1129
sha512 = "7npvPKV+jINLu1SpSYVWG8KvyJBhBa8tmzMMdDoVc2pWUYHN8KIXlPJhjJ4LT97c4dXJA2SHL/q6ADbDriZN+Q==";
1139
1130
};
1140
1131
};
1141
1141
-
"@types/webpack-4.41.25" = {
1132
1132
+
"@types/webpack-4.41.26" = {
1142
1133
name = "_at_types_slash_webpack";
1143
1134
packageName = "@types/webpack";
1144
1144
-
version = "4.41.25";
1135
1135
+
version = "4.41.26";
1145
1136
src = fetchurl {
1146
1146
-
url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.25.tgz";
1147
1147
-
sha512 = "cr6kZ+4m9lp86ytQc1jPOJXgINQyz3kLLunZ57jznW+WIAL0JqZbGubQk4GlD42MuQL5JGOABrxdpqqWeovlVQ==";
1137
1137
+
url = "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.26.tgz";
1138
1138
+
sha512 = "7ZyTfxjCRwexh+EJFwRUM+CDB2XvgHl4vfuqf1ZKrgGvcS5BrNvPQqJh3tsZ0P6h6Aa1qClVHaJZszLPzpqHeA==";
1148
1139
};
1149
1140
};
1150
1150
-
"@types/webpack-sources-2.0.0" = {
1141
1141
+
"@types/webpack-sources-2.1.0" = {
1151
1142
name = "_at_types_slash_webpack-sources";
1152
1143
packageName = "@types/webpack-sources";
1153
1153
-
version = "2.0.0";
1144
1144
+
version = "2.1.0";
1154
1145
src = fetchurl {
1155
1155
-
url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.0.0.tgz";
1156
1156
-
sha512 = "a5kPx98CNFRKQ+wqawroFunvFqv7GHm/3KOI52NY9xWADgc8smu4R6prt4EU/M4QfVjvgBkMqU4fBhw3QfMVkg==";
1146
1146
+
url = "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-2.1.0.tgz";
1147
1147
+
sha512 = "LXn/oYIpBeucgP1EIJbKQ2/4ZmpvRl+dlrFdX7+94SKRUV3Evy3FsfMZY318vGhkWUS5MPhtOM3w1/hCOAOXcg==";
1157
1148
};
1158
1149
};
1159
1150
"@webassemblyjs/ast-1.9.0" = {
···
1795
1786
sha512 = "Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==";
1796
1787
};
1797
1788
};
1798
1798
-
"autoprefixer-10.0.4" = {
1789
1789
+
"autoprefixer-10.1.0" = {
1799
1790
name = "autoprefixer";
1800
1791
packageName = "autoprefixer";
1801
1801
-
version = "10.0.4";
1792
1792
+
version = "10.1.0";
1802
1793
src = fetchurl {
1803
1803
-
url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.0.4.tgz";
1804
1804
-
sha512 = "hmjYejN/WTyPP9cdNmiwtwqM8/ACVJPD5ExtwoOceQohNbgnFNiwpL2+U4bXS8aXozBL00WvH6WhqbuHf0Fgfg==";
1794
1794
+
url = "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.1.0.tgz";
1795
1795
+
sha512 = "0/lBNwN+ZUnb5su18NZo5MBIjDaq6boQKZcxwy86Gip/CmXA2zZqUoFQLCNAGI5P25ZWSP2RWdhDJ8osfKEjoQ==";
1805
1796
};
1806
1797
};
1807
1798
"aws-sign2-0.7.0" = {
···
1975
1966
sha512 = "Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==";
1976
1967
};
1977
1968
};
1978
1978
-
"binary-extensions-2.1.0" = {
1969
1969
+
"binary-extensions-2.2.0" = {
1979
1970
name = "binary-extensions";
1980
1971
packageName = "binary-extensions";
1981
1981
-
version = "2.1.0";
1972
1972
+
version = "2.2.0";
1982
1973
src = fetchurl {
1983
1983
-
url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.1.0.tgz";
1984
1984
-
sha512 = "1Yj8h9Q+QDF5FzhMs/c9+6UntbD5MkRfRwac8DoEm9ZfUBZ7tZ55YcGVAzEe4bXsdQHEk+s9S5wsOKVdZrw0tQ==";
1974
1974
+
url = "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz";
1975
1975
+
sha512 = "jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==";
1985
1976
};
1986
1977
};
1987
1978
"bindings-1.5.0" = {
···
2000
1991
src = fetchurl {
2001
1992
url = "https://registry.npmjs.org/binwrap/-/binwrap-0.2.2.tgz";
2002
1993
sha512 = "Y+Wvypk3JhH5GPZAvlwJAWOVH/OsOhQMSj37vySuWHwQivoALplPxfBA8b973rFJI7OS+O+1YmmYXIiEXVMAcw==";
1994
1994
+
};
1995
1995
+
};
1996
1996
+
"binwrap-0.2.3" = {
1997
1997
+
name = "binwrap";
1998
1998
+
packageName = "binwrap";
1999
1999
+
version = "0.2.3";
2000
2000
+
src = fetchurl {
2001
2001
+
url = "https://registry.npmjs.org/binwrap/-/binwrap-0.2.3.tgz";
2002
2002
+
sha512 = "N4Pm7iyDEv0BrAMs+dny8WQa+e0nNTdzn2ODkf/MM6XBtKSCxCSUA1ZOQGoc1n7mUqdgOS5pwjsW91rmXVxy2Q==";
2003
2003
};
2004
2004
};
2005
2005
"bluebird-3.7.2" = {
···
2164
2164
sha512 = "VBorw+tgpOtZ1BYhrVSVTzTt/3+vSE3eFUh0N2GCFK1HffceOaf32YS/bs6WiFhjDAblAFrx85jMy3BG9fBK2Q==";
2165
2165
};
2166
2166
};
2167
2167
-
"browserslist-4.14.7" = {
2167
2167
+
"browserslist-4.16.3" = {
2168
2168
name = "browserslist";
2169
2169
packageName = "browserslist";
2170
2170
-
version = "4.14.7";
2170
2170
+
version = "4.16.3";
2171
2171
src = fetchurl {
2172
2172
-
url = "https://registry.npmjs.org/browserslist/-/browserslist-4.14.7.tgz";
2173
2173
-
sha512 = "BSVRLCeG3Xt/j/1cCGj1019Wbty0H+Yvu2AOuZSuoaUWn3RatbL33Cxk+Q4jRMRAbOm0p7SLravLjpnT6s0vzQ==";
2172
2172
+
url = "https://registry.npmjs.org/browserslist/-/browserslist-4.16.3.tgz";
2173
2173
+
sha512 = "vIyhWmIkULaq04Gt93txdh+j02yX/JzlyhLYbV3YQCn/zvES3JnY7TifHHvvr1w5hTDluNKMkV05cs4vy8Q7sw==";
2174
2174
};
2175
2175
};
2176
2176
"buffer-4.9.2" = {
···
2299
2299
sha512 = "lt0mJ6YAnsrBErpTMWeu5kl/tg9xMAWjavYTN6VQXM1A/teBITuNcccXsCxF0tDQQJf9DfAaX5O4e0zp0KlfZw==";
2300
2300
};
2301
2301
};
2302
2302
-
"call-bind-1.0.0" = {
2302
2302
+
"call-bind-1.0.2" = {
2303
2303
name = "call-bind";
2304
2304
packageName = "call-bind";
2305
2305
-
version = "1.0.0";
2305
2305
+
version = "1.0.2";
2306
2306
src = fetchurl {
2307
2307
-
url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.0.tgz";
2308
2308
-
sha512 = "AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==";
2307
2307
+
url = "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz";
2308
2308
+
sha512 = "7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==";
2309
2309
};
2310
2310
};
2311
2311
"call-me-maybe-1.0.1" = {
···
2353
2353
sha512 = "P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==";
2354
2354
};
2355
2355
};
2356
2356
-
"camel-case-4.1.1" = {
2356
2356
+
"camel-case-4.1.2" = {
2357
2357
name = "camel-case";
2358
2358
packageName = "camel-case";
2359
2359
-
version = "4.1.1";
2359
2359
+
version = "4.1.2";
2360
2360
src = fetchurl {
2361
2361
-
url = "https://registry.npmjs.org/camel-case/-/camel-case-4.1.1.tgz";
2362
2362
-
sha512 = "7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q==";
2361
2361
+
url = "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz";
2362
2362
+
sha512 = "gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==";
2363
2363
};
2364
2364
};
2365
2365
"camelcase-3.0.0" = {
···
2398
2398
sha512 = "bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==";
2399
2399
};
2400
2400
};
2401
2401
-
"caniuse-lite-1.0.30001161" = {
2401
2401
+
"caniuse-lite-1.0.30001185" = {
2402
2402
name = "caniuse-lite";
2403
2403
packageName = "caniuse-lite";
2404
2404
-
version = "1.0.30001161";
2404
2404
+
version = "1.0.30001185";
2405
2405
src = fetchurl {
2406
2406
-
url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001161.tgz";
2407
2407
-
sha512 = "JharrCDxOqPLBULF9/SPa6yMcBRTjZARJ6sc3cuKrPfyIk64JN6kuMINWqA99Xc8uElMFcROliwtz0n9pYej+g==";
2406
2406
+
url = "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001185.tgz";
2407
2407
+
sha512 = "Fpi4kVNtNvJ15H0F6vwmXtb3tukv3Zg3qhKkOGUq7KJ1J6b9kf4dnNgtEAFXhRsJo0gNj9W60+wBvn0JcTvdTg==";
2408
2408
};
2409
2409
};
2410
2410
"case-sensitive-paths-webpack-plugin-2.3.0" = {
···
2533
2533
sha512 = "/j5PPkb5Feyps9e+jo07jUZGvkB5Aj953NrI4s8xSVScrAo/RHeILrtdb4uzR7N6aaFFxxJ+gt8mA8HfNpw76w==";
2534
2534
};
2535
2535
};
2536
2536
-
"chokidar-3.4.3" = {
2536
2536
+
"chokidar-3.5.1" = {
2537
2537
name = "chokidar";
2538
2538
packageName = "chokidar";
2539
2539
-
version = "3.4.3";
2539
2539
+
version = "3.5.1";
2540
2540
src = fetchurl {
2541
2541
-
url = "https://registry.npmjs.org/chokidar/-/chokidar-3.4.3.tgz";
2542
2542
-
sha512 = "DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ==";
2541
2541
+
url = "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz";
2542
2542
+
sha512 = "9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw==";
2543
2543
};
2544
2544
};
2545
2545
"chownr-1.1.4" = {
···
2551
2551
sha512 = "jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==";
2552
2552
};
2553
2553
};
2554
2554
+
"chownr-2.0.0" = {
2555
2555
+
name = "chownr";
2556
2556
+
packageName = "chownr";
2557
2557
+
version = "2.0.0";
2558
2558
+
src = fetchurl {
2559
2559
+
url = "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz";
2560
2560
+
sha512 = "bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==";
2561
2561
+
};
2562
2562
+
};
2554
2563
"chrome-trace-event-1.0.2" = {
2555
2564
name = "chrome-trace-event";
2556
2565
packageName = "chrome-trace-event";
···
2614
2623
sha512 = "PC+AmIuK04E6aeSs/pUccSujsTzBhu4HzC2dL+CfJB/Jcc2qTRbEwZQDfIUpt2Xl8BodYBEq8w4fc0kU2I9DjQ==";
2615
2624
};
2616
2625
};
2617
2617
-
"cli-table-0.3.1" = {
2626
2626
+
"cli-table-0.3.4" = {
2618
2627
name = "cli-table";
2619
2628
packageName = "cli-table";
2620
2620
-
version = "0.3.1";
2629
2629
+
version = "0.3.4";
2621
2630
src = fetchurl {
2622
2622
-
url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz";
2623
2623
-
sha1 = "f53b05266a8b1a0b934b3d0821e6e2dc5914ae23";
2631
2631
+
url = "https://registry.npmjs.org/cli-table/-/cli-table-0.3.4.tgz";
2632
2632
+
sha512 = "1vinpnX/ZERcmE443i3SZTmU5DF0rPO9DrL4I2iVAllhxzCM9SzPlHnz19fsZB78htkKZvYBvj6SZ6vXnaxmTA==";
2624
2633
};
2625
2634
};
2626
2635
"cli-width-2.2.1" = {
···
2839
2848
sha512 = "P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==";
2840
2849
};
2841
2850
};
2842
2842
-
"commander-6.2.0" = {
2851
2851
+
"commander-6.2.1" = {
2852
2852
+
name = "commander";
2853
2853
+
packageName = "commander";
2854
2854
+
version = "6.2.1";
2855
2855
+
src = fetchurl {
2856
2856
+
url = "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz";
2857
2857
+
sha512 = "U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==";
2858
2858
+
};
2859
2859
+
};
2860
2860
+
"commander-7.0.0" = {
2843
2861
name = "commander";
2844
2862
packageName = "commander";
2845
2845
-
version = "6.2.0";
2863
2863
+
version = "7.0.0";
2846
2864
src = fetchurl {
2847
2847
-
url = "https://registry.npmjs.org/commander/-/commander-6.2.0.tgz";
2848
2848
-
sha512 = "zP4jEKbe8SHzKJYQmq8Y9gYjtO/POJLgIdKgV7B9qNmABVFVc+ctqSX6iXh4mCpJfRBOabiZ2YKPg8ciDw6C+Q==";
2865
2865
+
url = "https://registry.npmjs.org/commander/-/commander-7.0.0.tgz";
2866
2866
+
sha512 = "ovx/7NkTrnPuIV8sqk/GjUIIM1+iUQeqA3ye2VNpq9sVoiZsooObWlQy+OPWGI17GDaEoybuAGJm6U8yC077BA==";
2849
2867
};
2850
2868
};
2851
2869
"common-tags-1.8.0" = {
···
3064
3082
sha512 = "Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==";
3065
3083
};
3066
3084
};
3067
3067
-
"core-js-compat-3.8.0" = {
3085
3085
+
"core-js-compat-3.8.3" = {
3068
3086
name = "core-js-compat";
3069
3087
packageName = "core-js-compat";
3070
3070
-
version = "3.8.0";
3088
3088
+
version = "3.8.3";
3071
3089
src = fetchurl {
3072
3072
-
url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.0.tgz";
3073
3073
-
sha512 = "o9QKelQSxQMYWHXc/Gc4L8bx/4F7TTraE5rhuN8I7mKBt5dBIUpXpIR3omv70ebr8ST5R3PqbDQr+ZI3+Tt1FQ==";
3090
3090
+
url = "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.8.3.tgz";
3091
3091
+
sha512 = "1sCb0wBXnBIL16pfFG1Gkvei6UzvKyTNYpiC41yrdjEv0UoJoq9E/abTMzyYJ6JpTkAj15dLjbqifIzEBDVvog==";
3074
3092
};
3075
3093
};
3076
3094
"core-util-is-1.0.2" = {
···
3181
3199
sha512 = "iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==";
3182
3200
};
3183
3201
};
3184
3184
-
"cross-spawn-promise-0.10.2" = {
3185
3185
-
name = "cross-spawn-promise";
3186
3186
-
packageName = "cross-spawn-promise";
3187
3187
-
version = "0.10.2";
3188
3188
-
src = fetchurl {
3189
3189
-
url = "https://registry.npmjs.org/cross-spawn-promise/-/cross-spawn-promise-0.10.2.tgz";
3190
3190
-
sha512 = "74PXJf6DYaab2klRS+D+9qxKJL1Weo3/ao9OPoH6NFzxtINSa/HE2mcyAPu1fpEmRTPD4Gdmpg3xEXQSgI8lpg==";
3191
3191
-
};
3192
3192
-
};
3193
3202
"crypt-0.0.2" = {
3194
3203
name = "crypt";
3195
3204
packageName = "crypt";
···
3233
3242
src = fetchurl {
3234
3243
url = "https://registry.npmjs.org/css-loader/-/css-loader-4.3.0.tgz";
3235
3244
sha512 = "rdezjCjScIrsL8BSYszgT4s476IcNKt6yX69t0pHjJVnPUTDpn4WfIpDQTN3wCJvUvfsz/mFjuGOekf3PY3NUg==";
3236
3236
-
};
3237
3237
-
};
3238
3238
-
"css-select-1.2.0" = {
3239
3239
-
name = "css-select";
3240
3240
-
packageName = "css-select";
3241
3241
-
version = "1.2.0";
3242
3242
-
src = fetchurl {
3243
3243
-
url = "https://registry.npmjs.org/css-select/-/css-select-1.2.0.tgz";
3244
3244
-
sha1 = "2b3a110539c5355f1cd8d314623e870b121ec858";
3245
3245
};
3246
3246
};
3247
3247
"css-select-2.1.0" = {
···
3280
3280
sha512 = "wCoWush5Aeo48GLhfHPbmvZs59Z+M7k5+B1xDnXbdWNcEF423DoFdqSWE0PM5aNk5nI5cp1q7ms36zGApY/sKQ==";
3281
3281
};
3282
3282
};
3283
3283
-
"css-what-2.1.3" = {
3284
3284
-
name = "css-what";
3285
3285
-
packageName = "css-what";
3286
3286
-
version = "2.1.3";
3287
3287
-
src = fetchurl {
3288
3288
-
url = "https://registry.npmjs.org/css-what/-/css-what-2.1.3.tgz";
3289
3289
-
sha512 = "a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==";
3290
3290
-
};
3291
3291
-
};
3292
3283
"css-what-3.4.2" = {
3293
3284
name = "css-what";
3294
3285
packageName = "css-what";
···
3415
3406
sha512 = "CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==";
3416
3407
};
3417
3408
};
3418
3418
-
"debug-4.3.1" = {
3409
3409
+
"debug-4.3.2" = {
3419
3410
name = "debug";
3420
3411
packageName = "debug";
3421
3421
-
version = "4.3.1";
3412
3412
+
version = "4.3.2";
3422
3413
src = fetchurl {
3423
3423
-
url = "https://registry.npmjs.org/debug/-/debug-4.3.1.tgz";
3424
3424
-
sha512 = "doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ==";
3414
3414
+
url = "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz";
3415
3415
+
sha512 = "mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==";
3425
3416
};
3426
3417
};
3427
3418
"decamelize-1.2.0" = {
···
3721
3712
sha512 = "BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==";
3722
3713
};
3723
3714
};
3724
3724
-
"domelementtype-2.0.2" = {
3715
3715
+
"domelementtype-2.1.0" = {
3725
3716
name = "domelementtype";
3726
3717
packageName = "domelementtype";
3727
3727
-
version = "2.0.2";
3718
3718
+
version = "2.1.0";
3728
3719
src = fetchurl {
3729
3729
-
url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.0.2.tgz";
3730
3730
-
sha512 = "wFwTwCVebUrMgGeAwRL/NhZtHAUyT9n9yg4IMDwf10+6iCMxSkVq9MGCVEH+QZWo1nNidy8kNvwmv4zWHDTqvA==";
3720
3720
+
url = "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz";
3721
3721
+
sha512 = "LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w==";
3731
3722
};
3732
3723
};
3733
3724
"domhandler-2.4.2" = {
···
3739
3730
sha512 = "JiK04h0Ht5u/80fdLMCEmV4zkNh2BcoMFBmZ/91WtYZ8qVXSKjiw7fXMgFPnHcSZgOo3XdinHvmnDUeMf5R4wA==";
3740
3731
};
3741
3732
};
3742
3742
-
"domutils-1.5.1" = {
3743
3743
-
name = "domutils";
3744
3744
-
packageName = "domutils";
3745
3745
-
version = "1.5.1";
3746
3746
-
src = fetchurl {
3747
3747
-
url = "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz";
3748
3748
-
sha1 = "dcd8488a26f563d61079e48c9f7b7e32373682cf";
3749
3749
-
};
3750
3750
-
};
3751
3733
"domutils-1.7.0" = {
3752
3734
name = "domutils";
3753
3735
packageName = "domutils";
···
3757
3739
sha512 = "Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==";
3758
3740
};
3759
3741
};
3760
3760
-
"dot-case-3.0.3" = {
3742
3742
+
"dot-case-3.0.4" = {
3761
3743
name = "dot-case";
3762
3744
packageName = "dot-case";
3763
3763
-
version = "3.0.3";
3745
3745
+
version = "3.0.4";
3764
3746
src = fetchurl {
3765
3765
-
url = "https://registry.npmjs.org/dot-case/-/dot-case-3.0.3.tgz";
3766
3766
-
sha512 = "7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA==";
3747
3747
+
url = "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz";
3748
3748
+
sha512 = "Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==";
3767
3749
};
3768
3750
};
3769
3751
"dot-prop-5.3.0" = {
···
3829
3811
sha1 = "590c61156b0ae2f4f0255732a158b266bc56b21d";
3830
3812
};
3831
3813
};
3832
3832
-
"electron-to-chromium-1.3.610" = {
3814
3814
+
"electron-to-chromium-1.3.657" = {
3833
3815
name = "electron-to-chromium";
3834
3816
packageName = "electron-to-chromium";
3835
3835
-
version = "1.3.610";
3817
3817
+
version = "1.3.657";
3836
3818
src = fetchurl {
3837
3837
-
url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.610.tgz";
3838
3838
-
sha512 = "eFDC+yVQpEhtlapk4CYDPfV9ajF9cEof5TBcO49L1ETO+aYogrKWDmYpZyxBScMNe8Bo/gJamH4amQ4yyvXg4g==";
3819
3819
+
url = "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.657.tgz";
3820
3820
+
sha512 = "/9ROOyvEflEbaZFUeGofD+Tqs/WynbSTbNgNF+/TJJxH1ePD/e6VjZlDJpW3FFFd3nj5l3Hd8ki2vRwy+gyRFw==";
3839
3821
};
3840
3822
};
3841
3841
-
"elliptic-6.5.3" = {
3823
3823
+
"elliptic-6.5.4" = {
3842
3824
name = "elliptic";
3843
3825
packageName = "elliptic";
3844
3844
-
version = "6.5.3";
3826
3826
+
version = "6.5.4";
3845
3827
src = fetchurl {
3846
3846
-
url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.3.tgz";
3847
3847
-
sha512 = "IMqzv5wNQf+E6aHeIqATs0tOLeOTwj1QKbRcS3jBbYkl5oLAserA8yJTT7/VyHUYG91PRmPyeQDObKLPpeS4dw==";
3828
3828
+
url = "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz";
3829
3829
+
sha512 = "iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==";
3848
3830
};
3849
3831
};
3850
3832
"elm-0.19.1" = {
···
3856
3838
sha512 = "rehOtJKZvoYDddlrd7AX5NAf0H+LUllnBg3AHaeaIOKWzw4W316d7Bkhlbo7aSG+hVUVWP2ihKwyYkDi589TfA==";
3857
3839
};
3858
3840
};
3859
3859
-
"elm-0.19.1-3" = {
3841
3841
+
"elm-0.19.1-5" = {
3860
3842
name = "elm";
3861
3843
packageName = "elm";
3862
3862
-
version = "0.19.1-3";
3844
3844
+
version = "0.19.1-5";
3863
3845
src = fetchurl {
3864
3864
-
url = "https://registry.npmjs.org/elm/-/elm-0.19.1-3.tgz";
3865
3865
-
sha512 = "6y36ewCcVmTOx8lj7cKJs3bhI5qMfoVEigePZ9PhEUNKpwjjML/pU2u2YSpHVAznuCcojoF6KIsrS1Ci7GtVaQ==";
3866
3866
-
};
3867
3867
-
};
3868
3868
-
"elm-analyse-git://github.com/elm-tooling/elm-analyse#7f4000cce5ef024fe5e82c7ee1725feef95a9daf" = {
3869
3869
-
name = "elm-analyse";
3870
3870
-
packageName = "elm-analyse";
3871
3871
-
version = "0.16.6-alpha";
3872
3872
-
src = fetchgit {
3873
3873
-
url = "git://github.com/elm-tooling/elm-analyse";
3874
3874
-
rev = "7f4000cce5ef024fe5e82c7ee1725feef95a9daf";
3875
3875
-
sha256 = "270cb1adfdeb368dde2b780938f653e9aa46cc97afbe4de828813fef7c30e556";
3846
3846
+
url = "https://registry.npmjs.org/elm/-/elm-0.19.1-5.tgz";
3847
3847
+
sha512 = "dyBoPvFiNLvxOStQJdyq28gZEjS/enZXdZ5yyCtNtDEMbFJJVQq4pYNRKvhrKKdlxNot6d96iQe1uczoqO5yvA==";
3876
3848
};
3877
3849
};
3878
3850
"elm-asset-webpack-loader-1.1.2" = {
···
3893
3865
sha512 = "qPDP/o/Fkifriaxaf3E7hHFB5L6Ijihyg8is4A6xna6/h/zebUiNssbQrxywI2oxNUkr6W/leEu/WlIC1tmVnw==";
3894
3866
};
3895
3867
};
3896
3896
-
"elm-hot-1.1.5" = {
3868
3868
+
"elm-hot-1.1.6" = {
3897
3869
name = "elm-hot";
3898
3870
packageName = "elm-hot";
3899
3899
-
version = "1.1.5";
3871
3871
+
version = "1.1.6";
3900
3872
src = fetchurl {
3901
3901
-
url = "https://registry.npmjs.org/elm-hot/-/elm-hot-1.1.5.tgz";
3902
3902
-
sha512 = "HSMlAr6INTV82wkpPNG0zsHoJXo/04GwG7bnhFX8s4zyIbbzuJAovsdo27FAT6/NKx5IVTXGI+IFcK9Z7oN1Tw==";
3873
3873
+
url = "https://registry.npmjs.org/elm-hot/-/elm-hot-1.1.6.tgz";
3874
3874
+
sha512 = "zYZJlfs7Gt4BdjA+D+857K+XAWzwwySJmXCgFpHW1dIEfaHSZCIPYPf7/jinZBLfKRkOAlKzI32AA84DY50g7Q==";
3903
3875
};
3904
3876
};
3905
3877
"elm-hot-webpack-loader-1.1.7" = {
···
3911
3883
sha512 = "FcRN8UlTl52EigvGjTaG9rnfdUJYh88eWRrruUmZLNVb/71maM92l3HNDAcyztOj4pEYGhoo9DEHEquZm6B08A==";
3912
3884
};
3913
3885
};
3914
3914
-
"elm-json-0.2.8" = {
3915
3915
-
name = "elm-json";
3916
3916
-
packageName = "elm-json";
3917
3917
-
version = "0.2.8";
3918
3918
-
src = fetchurl {
3919
3919
-
url = "https://registry.npmjs.org/elm-json/-/elm-json-0.2.8.tgz";
3920
3920
-
sha512 = "YfK39CNrHjB4LMnas6aAb2LP37YgqAnh69bWD7ojAs7lBNNkWIeBifeszAfmapylQt1MVuwj6zPPYwrqRQXEBA==";
3921
3921
-
};
3922
3922
-
};
3923
3886
"elm-test-0.19.1" = {
3924
3887
name = "elm-test";
3925
3888
packageName = "elm-test";
···
3929
3892
sha512 = "SyZgZ/hxq62budS3k0M1Qj1E8fIRvldSxFSm4XfzE6qRRuHAT2a82fxprZRZl1yG2GwnImGmhuKH5hSyjPpzjA==";
3930
3893
};
3931
3894
};
3932
3932
-
"elm-test-0.19.1-revision4" = {
3895
3895
+
"elm-test-0.19.1-revision6" = {
3933
3896
name = "elm-test";
3934
3897
packageName = "elm-test";
3935
3935
-
version = "0.19.1-revision4";
3898
3898
+
version = "0.19.1-revision6";
3936
3899
src = fetchurl {
3937
3937
-
url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision4.tgz";
3938
3938
-
sha512 = "DUzKPNzJb/2ZsPbtHttT5JIKGY1KtT7d9cexSNQI7DppvoEHxZ4nCd5EObv5kjskmC0JkQ5PHmCkIruQsbOdkQ==";
3900
3900
+
url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision6.tgz";
3901
3901
+
sha512 = "4VbIyCRlCUm/py0E0AjMT3/mwd6DR4Y5Z5gEox6z5JII6ZdKIJmcQzjgWRI5qo5ERJiw9M/Nxhk7SGXFUbZsxQ==";
3902
3902
+
};
3903
3903
+
};
3904
3904
+
"elm-tooling-1.1.0" = {
3905
3905
+
name = "elm-tooling";
3906
3906
+
packageName = "elm-tooling";
3907
3907
+
version = "1.1.0";
3908
3908
+
src = fetchurl {
3909
3909
+
url = "https://registry.npmjs.org/elm-tooling/-/elm-tooling-1.1.0.tgz";
3910
3910
+
sha512 = "wziiwTbqBkK/905a6stCpTWJhYEKNb4CCYt36VEd5XWmaLSelMOR+SxKcEPpxsiK/tFZ4o0PbW+h1QC5tWfYUQ==";
3939
3911
};
3940
3912
};
3941
3913
"elm-webpack-loader-6.0.1" = {
···
3956
3928
sha512 = "zNinzt6/YMr11HgeBlC9Z0UM3qHkYrGsWJTjrCmgBkKnaOLUzTP5K9N3z1RltyunItXtHAxb8DFPvMxlYRPv/Q==";
3957
3929
};
3958
3930
};
3959
3959
-
"elmi-to-json-1.3.0" = {
3960
3960
-
name = "elmi-to-json";
3961
3961
-
packageName = "elmi-to-json";
3962
3962
-
version = "1.3.0";
3963
3963
-
src = fetchurl {
3964
3964
-
url = "https://registry.npmjs.org/elmi-to-json/-/elmi-to-json-1.3.0.tgz";
3965
3965
-
sha512 = "6m1D5/Pb5pUrSOOBgRG3fE2mK19nhmLgZ16jj2KWTVIhT+0GIBuDI1iV0Fee27CZH790J7uMcdGWJ7fnVvpsKg==";
3966
3966
-
};
3967
3967
-
};
3968
3931
"emoji-regex-7.0.3" = {
3969
3932
name = "emoji-regex";
3970
3933
packageName = "emoji-regex";
···
4019
3982
sha512 = "+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==";
4020
3983
};
4021
3984
};
4022
4022
-
"enhanced-resolve-4.3.0" = {
3985
3985
+
"enhanced-resolve-4.5.0" = {
4023
3986
name = "enhanced-resolve";
4024
3987
packageName = "enhanced-resolve";
4025
4025
-
version = "4.3.0";
3988
3988
+
version = "4.5.0";
4026
3989
src = fetchurl {
4027
4027
-
url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.3.0.tgz";
4028
4028
-
sha512 = "3e87LvavsdxyoCfGusJnrZ5G8SLPOFeHSNpZI/ATL9a5leXo2k0w6MKnbqhdBad9qTobSfB20Ld7UmgoNbAZkQ==";
3990
3990
+
url = "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz";
3991
3991
+
sha512 = "Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==";
4029
3992
};
4030
3993
};
4031
3994
"entities-1.1.2" = {
···
4037
4000
sha512 = "f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==";
4038
4001
};
4039
4002
};
4040
4040
-
"entities-2.1.0" = {
4003
4003
+
"entities-2.2.0" = {
4041
4004
name = "entities";
4042
4005
packageName = "entities";
4043
4043
-
version = "2.1.0";
4006
4006
+
version = "2.2.0";
4044
4007
src = fetchurl {
4045
4045
-
url = "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz";
4046
4046
-
sha512 = "hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w==";
4008
4008
+
url = "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz";
4009
4009
+
sha512 = "p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==";
4047
4010
};
4048
4011
};
4049
4049
-
"errno-0.1.7" = {
4012
4012
+
"errno-0.1.8" = {
4050
4013
name = "errno";
4051
4014
packageName = "errno";
4052
4052
-
version = "0.1.7";
4015
4015
+
version = "0.1.8";
4053
4016
src = fetchurl {
4054
4054
-
url = "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz";
4055
4055
-
sha512 = "MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==";
4017
4017
+
url = "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz";
4018
4018
+
sha512 = "dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==";
4056
4019
};
4057
4020
};
4058
4021
"error-ex-1.3.2" = {
···
4064
4027
sha512 = "7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==";
4065
4028
};
4066
4029
};
4067
4067
-
"es-abstract-1.17.7" = {
4030
4030
+
"es-abstract-1.18.0-next.2" = {
4068
4031
name = "es-abstract";
4069
4032
packageName = "es-abstract";
4070
4070
-
version = "1.17.7";
4033
4033
+
version = "1.18.0-next.2";
4071
4034
src = fetchurl {
4072
4072
-
url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.17.7.tgz";
4073
4073
-
sha512 = "VBl/gnfcJ7OercKA9MVaegWsBHFjV492syMudcnQZvt/Dw8ezpcOHYZXa/J96O8vx+g4x65YKhxOwDUh63aS5g==";
4074
4074
-
};
4075
4075
-
};
4076
4076
-
"es-abstract-1.18.0-next.1" = {
4077
4077
-
name = "es-abstract";
4078
4078
-
packageName = "es-abstract";
4079
4079
-
version = "1.18.0-next.1";
4080
4080
-
src = fetchurl {
4081
4081
-
url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.1.tgz";
4082
4082
-
sha512 = "I4UGspA0wpZXWENrdA0uHbnhte683t3qT/1VFH9aX2dA5PPSf6QW5HHXf5HImaqPmjXaVeVk4RGWnaylmV7uAA==";
4035
4035
+
url = "https://registry.npmjs.org/es-abstract/-/es-abstract-1.18.0-next.2.tgz";
4036
4036
+
sha512 = "Ih4ZMFHEtZupnUh6497zEL4y2+w8+1ljnCyaTa+adcoafI1GOvMwFlDjBLfWR7y9VLfrjRJe9ocuHY1PSR9jjw==";
4083
4037
};
4084
4038
};
4085
4039
"es-to-primitive-1.2.1" = {
···
4271
4225
sha512 = "adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==";
4272
4226
};
4273
4227
};
4274
4274
-
"execa-4.1.0" = {
4228
4228
+
"execa-5.0.0" = {
4275
4229
name = "execa";
4276
4230
packageName = "execa";
4277
4277
-
version = "4.1.0";
4231
4231
+
version = "5.0.0";
4278
4232
src = fetchurl {
4279
4279
-
url = "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz";
4280
4280
-
sha512 = "j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==";
4233
4233
+
url = "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz";
4234
4234
+
sha512 = "ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ==";
4281
4235
};
4282
4236
};
4283
4237
"expand-brackets-2.1.4" = {
···
4424
4378
sha512 = "g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==";
4425
4379
};
4426
4380
};
4427
4427
-
"fast-glob-3.2.4" = {
4381
4381
+
"fast-glob-3.2.5" = {
4428
4382
name = "fast-glob";
4429
4383
packageName = "fast-glob";
4430
4430
-
version = "3.2.4";
4384
4384
+
version = "3.2.5";
4431
4385
src = fetchurl {
4432
4432
-
url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.4.tgz";
4433
4433
-
sha512 = "kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==";
4386
4386
+
url = "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz";
4387
4387
+
sha512 = "2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg==";
4434
4388
};
4435
4389
};
4436
4390
"fast-json-stable-stringify-2.1.0" = {
···
4442
4396
sha512 = "lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==";
4443
4397
};
4444
4398
};
4445
4445
-
"fastq-1.9.0" = {
4399
4399
+
"fastq-1.10.1" = {
4446
4400
name = "fastq";
4447
4401
packageName = "fastq";
4448
4448
-
version = "1.9.0";
4402
4402
+
version = "1.10.1";
4449
4403
src = fetchurl {
4450
4450
-
url = "https://registry.npmjs.org/fastq/-/fastq-1.9.0.tgz";
4451
4451
-
sha512 = "i7FVWL8HhVY+CTkwFxkN2mk3h+787ixS5S63eb78diVRc1MCssarHq3W5cj0av7YDSwmaV928RNag+U1etRQ7w==";
4404
4404
+
url = "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz";
4405
4405
+
sha512 = "AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA==";
4452
4406
};
4453
4407
};
4454
4408
"faye-websocket-0.10.0" = {
···
4703
4657
sha512 = "SDgHBgV+RCjrYs8aUwCb9rTgbTVuSdzvFmLaChsLre1yf+D64khCW++VYciaByZ8Rm0uKF8R/XEpXuTRSGUM1A==";
4704
4658
};
4705
4659
};
4706
4706
-
"follow-redirects-1.13.0" = {
4660
4660
+
"follow-redirects-1.13.2" = {
4707
4661
name = "follow-redirects";
4708
4662
packageName = "follow-redirects";
4709
4709
-
version = "1.13.0";
4663
4663
+
version = "1.13.2";
4710
4664
src = fetchurl {
4711
4711
-
url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.0.tgz";
4712
4712
-
sha512 = "aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==";
4665
4665
+
url = "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.13.2.tgz";
4666
4666
+
sha512 = "6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA==";
4713
4667
};
4714
4668
};
4715
4669
"for-in-1.0.2" = {
···
4746
4700
src = fetchurl {
4747
4701
url = "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz";
4748
4702
sha1 = "98c23dab1175657b8c0573e8ceccd91b0ff18c84";
4703
4703
+
};
4704
4704
+
};
4705
4705
+
"fraction.js-4.0.13" = {
4706
4706
+
name = "fraction.js";
4707
4707
+
packageName = "fraction.js";
4708
4708
+
version = "4.0.13";
4709
4709
+
src = fetchurl {
4710
4710
+
url = "https://registry.npmjs.org/fraction.js/-/fraction.js-4.0.13.tgz";
4711
4711
+
sha512 = "E1fz2Xs9ltlUp+qbiyx9wmt2n9dRzPsS11Jtdb8D2o+cC7wr9xkkKsVKJuBX0ST+LVS+LhLO+SbLJNtfWcJvXA==";
4749
4712
};
4750
4713
};
4751
4714
"fragment-cache-0.2.1" = {
···
4773
4736
src = fetchurl {
4774
4737
url = "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz";
4775
4738
sha1 = "8bfb5502bde4a4d36cfdeea007fcca21d7e382af";
4739
4739
+
};
4740
4740
+
};
4741
4741
+
"fromentries-1.3.2" = {
4742
4742
+
name = "fromentries";
4743
4743
+
packageName = "fromentries";
4744
4744
+
version = "1.3.2";
4745
4745
+
src = fetchurl {
4746
4746
+
url = "https://registry.npmjs.org/fromentries/-/fromentries-1.3.2.tgz";
4747
4747
+
sha512 = "cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg==";
4776
4748
};
4777
4749
};
4778
4750
"fs-extra-2.0.0" = {
···
4829
4801
sha512 = "yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==";
4830
4802
};
4831
4803
};
4832
4832
-
"fs-extra-9.0.1" = {
4804
4804
+
"fs-extra-9.1.0" = {
4833
4805
name = "fs-extra";
4834
4806
packageName = "fs-extra";
4835
4835
-
version = "9.0.1";
4807
4807
+
version = "9.1.0";
4836
4808
src = fetchurl {
4837
4837
-
url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.0.1.tgz";
4838
4838
-
sha512 = "h2iAoN838FqAFJY2/qVpzFXy+EBxfVE220PalAqQLDVsFOHLJrZvut5puAbCdNv6WJk+B8ihI+k0c7JK5erwqQ==";
4809
4809
+
url = "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz";
4810
4810
+
sha512 = "hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==";
4839
4811
};
4840
4812
};
4841
4813
"fs-minipass-1.2.7" = {
···
4845
4817
src = fetchurl {
4846
4818
url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-1.2.7.tgz";
4847
4819
sha512 = "GWSSJGFy4e9GUeCcbIkED+bgAoFyj7XF1mV8rma3QW4NIqX9Kyx79N/PF61H5udOV3aY1IaMLs6pGbH71nlCTA==";
4820
4820
+
};
4821
4821
+
};
4822
4822
+
"fs-minipass-2.1.0" = {
4823
4823
+
name = "fs-minipass";
4824
4824
+
packageName = "fs-minipass";
4825
4825
+
version = "2.1.0";
4826
4826
+
src = fetchurl {
4827
4827
+
url = "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz";
4828
4828
+
sha512 = "V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==";
4848
4829
};
4849
4830
};
4850
4831
"fs-readdir-recursive-1.1.0" = {
···
4892
4873
sha512 = "Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ==";
4893
4874
};
4894
4875
};
4895
4895
-
"fsevents-2.2.1" = {
4876
4876
+
"fsevents-2.3.2" = {
4896
4877
name = "fsevents";
4897
4878
packageName = "fsevents";
4898
4898
-
version = "2.2.1";
4879
4879
+
version = "2.3.2";
4899
4880
src = fetchurl {
4900
4900
-
url = "https://registry.npmjs.org/fsevents/-/fsevents-2.2.1.tgz";
4901
4901
-
sha512 = "bTLYHSeC0UH/EFXS9KqWnXuOl/wHK5Z/d+ghd5AsFMYN7wIGkUCOJyzy88+wJKkZPGON8u4Z9f6U4FdgURE9qA==";
4881
4881
+
url = "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz";
4882
4882
+
sha512 = "xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==";
4902
4883
};
4903
4884
};
4904
4885
"function-bind-1.1.1" = {
···
4937
4918
sha512 = "DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==";
4938
4919
};
4939
4920
};
4940
4940
-
"get-intrinsic-1.0.1" = {
4921
4921
+
"get-intrinsic-1.1.1" = {
4941
4922
name = "get-intrinsic";
4942
4923
packageName = "get-intrinsic";
4943
4943
-
version = "1.0.1";
4924
4924
+
version = "1.1.1";
4944
4925
src = fetchurl {
4945
4945
-
url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.0.1.tgz";
4946
4946
-
sha512 = "ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==";
4926
4926
+
url = "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz";
4927
4927
+
sha512 = "kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==";
4947
4928
};
4948
4929
};
4949
4930
"get-own-enumerable-property-symbols-3.0.2" = {
···
4982
4963
sha512 = "nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==";
4983
4964
};
4984
4965
};
4966
4966
+
"get-stream-6.0.0" = {
4967
4967
+
name = "get-stream";
4968
4968
+
packageName = "get-stream";
4969
4969
+
version = "6.0.0";
4970
4970
+
src = fetchurl {
4971
4971
+
url = "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz";
4972
4972
+
sha512 = "A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg==";
4973
4973
+
};
4974
4974
+
};
4985
4975
"get-value-2.0.6" = {
4986
4976
name = "get-value";
4987
4977
packageName = "get-value";
···
5072
5062
sha512 = "WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==";
5073
5063
};
5074
5064
};
5075
5075
-
"globby-11.0.1" = {
5065
5065
+
"globby-11.0.2" = {
5076
5066
name = "globby";
5077
5067
packageName = "globby";
5078
5078
-
version = "11.0.1";
5068
5068
+
version = "11.0.2";
5079
5069
src = fetchurl {
5080
5080
-
url = "https://registry.npmjs.org/globby/-/globby-11.0.1.tgz";
5081
5081
-
sha512 = "iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ==";
5070
5070
+
url = "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz";
5071
5071
+
sha512 = "2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og==";
5082
5072
};
5083
5073
};
5084
5074
"globby-6.1.0" = {
···
5126
5116
sha512 = "R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==";
5127
5117
};
5128
5118
};
5129
5129
-
"graceful-fs-4.2.4" = {
5119
5119
+
"graceful-fs-4.2.5" = {
5130
5120
name = "graceful-fs";
5131
5121
packageName = "graceful-fs";
5132
5132
-
version = "4.2.4";
5122
5122
+
version = "4.2.5";
5133
5123
src = fetchurl {
5134
5134
-
url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.4.tgz";
5135
5135
-
sha512 = "WjKPNJF79dtJAVniUlGGWHYGz2jWxT6VhN/4m1NdkbZ2nOsEF+cI1Edgql5zCRhs/VsQYRvrXctxktVXZUkixw==";
5124
5124
+
url = "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.5.tgz";
5125
5125
+
sha512 = "kBBSQbz2K0Nyn+31j/w36fUfxkBW9/gfwRWdUY1ULReH3iokVJgddZAFcD1D0xlgTmFxJCbUkUclAlc6/IDJkw==";
5136
5126
};
5137
5127
};
5138
5128
"gzip-size-5.0.0" = {
···
5369
5359
sha512 = "P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==";
5370
5360
};
5371
5361
};
5372
5372
-
"html-entities-1.3.1" = {
5362
5362
+
"html-entities-1.4.0" = {
5373
5363
name = "html-entities";
5374
5364
packageName = "html-entities";
5375
5375
-
version = "1.3.1";
5365
5365
+
version = "1.4.0";
5376
5366
src = fetchurl {
5377
5377
-
url = "https://registry.npmjs.org/html-entities/-/html-entities-1.3.1.tgz";
5378
5378
-
sha512 = "rhE/4Z3hIhzHAUKbW8jVcCyuT5oJCXXqhN/6mXXVCpzTmvJnoH2HL/bt3EZ6p55jbFJBeAe1ZNpL5BugLujxNA==";
5367
5367
+
url = "https://registry.npmjs.org/html-entities/-/html-entities-1.4.0.tgz";
5368
5368
+
sha512 = "8nxjcBcd8wovbeKx7h3wTji4e6+rhaVuPNpMqwWgnHh+N9ToqsCs6XztWRBPQ+UtzsoMAdKZtUENoVzU/EMtZA==";
5379
5369
};
5380
5370
};
5381
5371
"html-minifier-terser-5.1.1" = {
···
5459
5449
sha512 = "ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==";
5460
5450
};
5461
5451
};
5462
5462
-
"http-parser-js-0.5.2" = {
5452
5452
+
"http-parser-js-0.5.3" = {
5463
5453
name = "http-parser-js";
5464
5454
packageName = "http-parser-js";
5465
5465
-
version = "0.5.2";
5455
5455
+
version = "0.5.3";
5466
5456
src = fetchurl {
5467
5467
-
url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.2.tgz";
5468
5468
-
sha512 = "opCO9ASqg5Wy2FNo7A0sxy71yGbbkJJXLdgMK04Tcypw9jr2MgWbyubb0+WdmDmGnFflO7fRbqbaihh/ENDlRQ==";
5457
5457
+
url = "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.3.tgz";
5458
5458
+
sha512 = "t7hjvef/5HEK7RWTdUzVUhl8zkEu+LlaE0IYzdMuvbSDipxBRpOn4Uhw8ZyECEa808iVT8XCjzo6xmYt4CiLZg==";
5469
5459
};
5470
5460
};
5471
5461
"http-proxy-1.17.0" = {
···
5522
5512
sha1 = "ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73";
5523
5513
};
5524
5514
};
5525
5525
-
"human-signals-1.1.1" = {
5515
5515
+
"human-signals-2.1.0" = {
5526
5516
name = "human-signals";
5527
5517
packageName = "human-signals";
5528
5528
-
version = "1.1.1";
5518
5518
+
version = "2.1.0";
5529
5519
src = fetchurl {
5530
5530
-
url = "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz";
5531
5531
-
sha512 = "SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==";
5520
5520
+
url = "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz";
5521
5521
+
sha512 = "B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==";
5532
5522
};
5533
5523
};
5534
5524
"i-0.3.6" = {
···
5621
5611
sha1 = "d81355c15612d386c61f9ddd3922d4304822a546";
5622
5612
};
5623
5613
};
5624
5624
-
"import-fresh-3.2.2" = {
5614
5614
+
"import-fresh-3.3.0" = {
5625
5615
name = "import-fresh";
5626
5616
packageName = "import-fresh";
5627
5627
-
version = "3.2.2";
5617
5617
+
version = "3.3.0";
5628
5618
src = fetchurl {
5629
5629
-
url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.2.2.tgz";
5630
5630
-
sha512 = "cTPNrlvJT6twpYy+YmKUKrTSjWFs3bjYjAhCwm+z4EOCubZxAuO+hHpRN64TqjEaYSHs7tJAE0w1CKMGmsG/lw==";
5619
5619
+
url = "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz";
5620
5620
+
sha512 = "veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==";
5631
5621
};
5632
5622
};
5633
5623
"import-local-2.0.0" = {
···
5702
5692
sha512 = "k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==";
5703
5693
};
5704
5694
};
5705
5705
-
"ini-1.3.5" = {
5695
5695
+
"ini-1.3.8" = {
5706
5696
name = "ini";
5707
5697
packageName = "ini";
5708
5708
-
version = "1.3.5";
5698
5698
+
version = "1.3.8";
5709
5699
src = fetchurl {
5710
5710
-
url = "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz";
5711
5711
-
sha512 = "RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==";
5700
5700
+
url = "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz";
5701
5701
+
sha512 = "JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==";
5712
5702
};
5713
5703
};
5714
5704
"inquirer-6.2.0" = {
···
5801
5791
sha512 = "m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==";
5802
5792
};
5803
5793
};
5804
5804
-
"is-arguments-1.0.4" = {
5794
5794
+
"is-arguments-1.1.0" = {
5805
5795
name = "is-arguments";
5806
5796
packageName = "is-arguments";
5807
5807
-
version = "1.0.4";
5797
5797
+
version = "1.1.0";
5808
5798
src = fetchurl {
5809
5809
-
url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.0.4.tgz";
5810
5810
-
sha512 = "xPh0Rmt8NE65sNzvyUmWgI1tz3mKq74lGA0mL8LYZcoIzKOzDh6HmrYm3d18k60nHerC8A9Km8kYu87zfSFnLA==";
5799
5799
+
url = "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.0.tgz";
5800
5800
+
sha512 = "1Ij4lOMPl/xB5kBDn7I+b2ttPMKa8szhEIrXDuXQD/oe3HJLTLhqhgGspwgyGd6MOywBUqVvYicF72lkgDnIHg==";
5811
5801
};
5812
5802
};
5813
5803
"is-arrayish-0.2.1" = {
···
5855
5845
sha512 = "NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==";
5856
5846
};
5857
5847
};
5858
5858
-
"is-callable-1.2.2" = {
5848
5848
+
"is-callable-1.2.3" = {
5859
5849
name = "is-callable";
5860
5850
packageName = "is-callable";
5861
5861
-
version = "1.2.2";
5851
5851
+
version = "1.2.3";
5862
5852
src = fetchurl {
5863
5863
-
url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.2.tgz";
5864
5864
-
sha512 = "dnMqspv5nU3LoewK2N/y7KLtxtakvTuaCsU9FU50/QDmdbHNy/4/JuRtMHqRU22o3q+W89YQndQEeCVwK+3qrA==";
5853
5853
+
url = "https://registry.npmjs.org/is-callable/-/is-callable-1.2.3.tgz";
5854
5854
+
sha512 = "J1DcMe8UYTBSrKezuIUTUwjXsho29693unXM2YhJUTR2txK/eG47bvNa/wipPFmZFgr/N6f1GA66dv0mEyTIyQ==";
5865
5855
};
5866
5856
};
5867
5857
"is-color-stop-1.1.0" = {
···
6026
6016
sha512 = "2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==";
6027
6017
};
6028
6018
};
6029
6029
-
"is-negative-zero-2.0.0" = {
6019
6019
+
"is-negative-zero-2.0.1" = {
6030
6020
name = "is-negative-zero";
6031
6021
packageName = "is-negative-zero";
6032
6032
-
version = "2.0.0";
6022
6022
+
version = "2.0.1";
6033
6023
src = fetchurl {
6034
6034
-
url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.0.tgz";
6035
6035
-
sha1 = "9553b121b0fac28869da9ed459e20c7543788461";
6024
6024
+
url = "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.1.tgz";
6025
6025
+
sha512 = "2z6JzQvZRa9A2Y7xC6dQQm4FSTSTNWjKIYYTt4246eMTJmIo0Q+ZyOsU66X8lxK1AbB92dFeglPLrhwpeRKO6w==";
6036
6026
};
6037
6027
};
6038
6028
"is-number-3.0.0" = {
···
6071
6061
sha512 = "drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==";
6072
6062
};
6073
6063
};
6074
6074
-
"is-object-1.0.1" = {
6064
6064
+
"is-object-1.0.2" = {
6075
6065
name = "is-object";
6076
6066
packageName = "is-object";
6077
6077
-
version = "1.0.1";
6067
6067
+
version = "1.0.2";
6078
6068
src = fetchurl {
6079
6079
-
url = "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz";
6080
6080
-
sha1 = "8952688c5ec2ffd6b03ecc85e769e02903083470";
6069
6069
+
url = "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz";
6070
6070
+
sha512 = "2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==";
6081
6071
};
6082
6072
};
6083
6073
"is-path-cwd-2.2.0" = {
···
6125
6115
sha512 = "h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==";
6126
6116
};
6127
6117
};
6128
6128
-
"is-regex-1.1.1" = {
6118
6118
+
"is-regex-1.1.2" = {
6129
6119
name = "is-regex";
6130
6120
packageName = "is-regex";
6131
6131
-
version = "1.1.1";
6121
6121
+
version = "1.1.2";
6132
6122
src = fetchurl {
6133
6133
-
url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.1.tgz";
6134
6134
-
sha512 = "1+QkEcxiLlB7VEyFtyBg94e08OAsvq7FUBgApTq/w2ymCLyKJgDPsybBENVtA7XCQEgEXxKPonG+mvYRxh/LIg==";
6123
6123
+
url = "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz";
6124
6124
+
sha512 = "axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==";
6135
6125
};
6136
6126
};
6137
6127
"is-regexp-1.0.0" = {
···
6305
6295
sha512 = "RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==";
6306
6296
};
6307
6297
};
6308
6308
-
"js-yaml-3.14.0" = {
6298
6298
+
"js-yaml-3.14.1" = {
6309
6299
name = "js-yaml";
6310
6300
packageName = "js-yaml";
6311
6311
-
version = "3.14.0";
6301
6301
+
version = "3.14.1";
6312
6302
src = fetchurl {
6313
6313
-
url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.0.tgz";
6314
6314
-
sha512 = "/4IbIeHcD9VMHFqDR/gQ7EdZdLimOvW2DdcxFjdyyZ9NsbS+ccrXqVWDtab/lRl5AlUqmpBx8EhPaWR+OtY17A==";
6303
6303
+
url = "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz";
6304
6304
+
sha512 = "okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==";
6315
6305
};
6316
6306
};
6317
6307
"jsbn-0.1.1" = {
···
6440
6430
sha512 = "aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==";
6441
6431
};
6442
6432
};
6443
6443
-
"json5-2.1.3" = {
6433
6433
+
"json5-2.2.0" = {
6444
6434
name = "json5";
6445
6435
packageName = "json5";
6446
6446
-
version = "2.1.3";
6436
6436
+
version = "2.2.0";
6447
6437
src = fetchurl {
6448
6448
-
url = "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz";
6449
6449
-
sha512 = "KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==";
6438
6438
+
url = "https://registry.npmjs.org/json5/-/json5-2.2.0.tgz";
6439
6439
+
sha512 = "f+8cldu7X/y7RAJurMEJmdoKXGB/X550w2Nr3tTbezL6RwEE/iMcm+tZnXeoZtKuOq6ft8+CqzEkrIgx1fPoQA==";
6450
6440
};
6451
6441
};
6452
6442
"jsonfile-2.4.0" = {
···
6773
6763
sha512 = "Hesni4s5UkWkwCGJMQGAh71PaLUmKFM60dHvq0zi/vDhhrzuk+4GgNbTXJ12YYQJn6ZKBDNIjYcuQGKudvqrIw==";
6774
6764
};
6775
6765
};
6776
6776
-
"lower-case-2.0.1" = {
6766
6766
+
"lower-case-2.0.2" = {
6777
6767
name = "lower-case";
6778
6768
packageName = "lower-case";
6779
6779
-
version = "2.0.1";
6769
6769
+
version = "2.0.2";
6780
6770
src = fetchurl {
6781
6781
-
url = "https://registry.npmjs.org/lower-case/-/lower-case-2.0.1.tgz";
6782
6782
-
sha512 = "LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ==";
6771
6771
+
url = "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz";
6772
6772
+
sha512 = "7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==";
6783
6773
};
6784
6774
};
6785
6775
"lowercase-keys-1.0.1" = {
···
6816
6806
src = fetchurl {
6817
6807
url = "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz";
6818
6808
sha512 = "KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==";
6809
6809
+
};
6810
6810
+
};
6811
6811
+
"lru-cache-6.0.0" = {
6812
6812
+
name = "lru-cache";
6813
6813
+
packageName = "lru-cache";
6814
6814
+
version = "6.0.0";
6815
6815
+
src = fetchurl {
6816
6816
+
url = "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz";
6817
6817
+
sha512 = "Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==";
6819
6818
};
6820
6819
};
6821
6820
"make-dir-1.3.0" = {
···
7016
7015
sha512 = "QgrPRJfE+riq5TPZMcHZOtm8c6K/yYrMbKIoRfapfiGLxS8OTeIfRhUGW5LU7MlRa52KOAGCfUNruqLrIBvWZw==";
7017
7016
};
7018
7017
};
7019
7019
-
"mime-2.4.6" = {
7018
7018
+
"mime-2.5.0" = {
7020
7019
name = "mime";
7021
7020
packageName = "mime";
7022
7022
-
version = "2.4.6";
7021
7021
+
version = "2.5.0";
7023
7022
src = fetchurl {
7024
7024
-
url = "https://registry.npmjs.org/mime/-/mime-2.4.6.tgz";
7025
7025
-
sha512 = "RZKhC3EmpBchfTGBVb8fb+RL2cWyw/32lshnsETttkBAyAUXSGHxbEJWWRXc751DrIxG1q04b8QwMbAwkRPpUA==";
7023
7023
+
url = "https://registry.npmjs.org/mime/-/mime-2.5.0.tgz";
7024
7024
+
sha512 = "ft3WayFSFUVBuJj7BMLKAQcSlItKtfjsKDDsii3rqFDAZ7t11zRe8ASw/GlmivGwVUYtwkQrxiGGpL6gFvB0ag==";
7026
7025
};
7027
7026
};
7028
7028
-
"mime-db-1.44.0" = {
7027
7027
+
"mime-db-1.45.0" = {
7029
7028
name = "mime-db";
7030
7029
packageName = "mime-db";
7031
7031
-
version = "1.44.0";
7030
7030
+
version = "1.45.0";
7032
7031
src = fetchurl {
7033
7033
-
url = "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz";
7034
7034
-
sha512 = "/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg==";
7032
7032
+
url = "https://registry.npmjs.org/mime-db/-/mime-db-1.45.0.tgz";
7033
7033
+
sha512 = "CkqLUxUk15hofLoLyljJSrukZi8mAtgd+yE5uO4tqRZsdsAJKv0O+rFMhVDRJgozy+yG6md5KwuXhD4ocIoP+w==";
7035
7034
};
7036
7035
};
7037
7037
-
"mime-types-2.1.27" = {
7036
7036
+
"mime-types-2.1.28" = {
7038
7037
name = "mime-types";
7039
7038
packageName = "mime-types";
7040
7040
-
version = "2.1.27";
7039
7039
+
version = "2.1.28";
7041
7040
src = fetchurl {
7042
7042
-
url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz";
7043
7043
-
sha512 = "JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==";
7041
7041
+
url = "https://registry.npmjs.org/mime-types/-/mime-types-2.1.28.tgz";
7042
7042
+
sha512 = "0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==";
7044
7043
};
7045
7044
};
7046
7045
"mimic-fn-1.2.0" = {
···
7142
7141
sha512 = "wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==";
7143
7142
};
7144
7143
};
7144
7144
+
"minipass-3.1.3" = {
7145
7145
+
name = "minipass";
7146
7146
+
packageName = "minipass";
7147
7147
+
version = "3.1.3";
7148
7148
+
src = fetchurl {
7149
7149
+
url = "https://registry.npmjs.org/minipass/-/minipass-3.1.3.tgz";
7150
7150
+
sha512 = "Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg==";
7151
7151
+
};
7152
7152
+
};
7145
7153
"minizlib-1.3.3" = {
7146
7154
name = "minizlib";
7147
7155
packageName = "minizlib";
···
7151
7159
sha512 = "6ZYMOEnmVsdCeTJVE0W9ZD+pVnE8h9Hma/iOwwRDsdQoePpoX56/8B6z3P9VNwppJuBKNRuFDRNRqRWexT9G9Q==";
7152
7160
};
7153
7161
};
7162
7162
+
"minizlib-2.1.2" = {
7163
7163
+
name = "minizlib";
7164
7164
+
packageName = "minizlib";
7165
7165
+
version = "2.1.2";
7166
7166
+
src = fetchurl {
7167
7167
+
url = "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz";
7168
7168
+
sha512 = "bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==";
7169
7169
+
};
7170
7170
+
};
7154
7171
"mississippi-2.0.0" = {
7155
7172
name = "mississippi";
7156
7173
packageName = "mississippi";
···
7194
7211
src = fetchurl {
7195
7212
url = "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz";
7196
7213
sha512 = "NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==";
7214
7214
+
};
7215
7215
+
};
7216
7216
+
"mkdirp-1.0.4" = {
7217
7217
+
name = "mkdirp";
7218
7218
+
packageName = "mkdirp";
7219
7219
+
version = "1.0.4";
7220
7220
+
src = fetchurl {
7221
7221
+
url = "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz";
7222
7222
+
sha512 = "vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==";
7197
7223
};
7198
7224
};
7199
7225
"moment-2.29.1" = {
···
7304
7330
sha512 = "M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==";
7305
7331
};
7306
7332
};
7307
7307
-
"nanoid-3.1.18" = {
7333
7333
+
"nanoid-3.1.20" = {
7308
7334
name = "nanoid";
7309
7335
packageName = "nanoid";
7310
7310
-
version = "3.1.18";
7336
7336
+
version = "3.1.20";
7311
7337
src = fetchurl {
7312
7312
-
url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.18.tgz";
7313
7313
-
sha512 = "rndlDjbbHbcV3xi+R2fpJ+PbGMdfBxz5v1fATIQFq0DP64FsicQdwnKLy47K4kZHdRpmQXtz24eGsxQqamzYTA==";
7338
7338
+
url = "https://registry.npmjs.org/nanoid/-/nanoid-3.1.20.tgz";
7339
7339
+
sha512 = "a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw==";
7314
7340
};
7315
7341
};
7316
7342
"nanomatch-1.2.13" = {
···
7358
7384
sha512 = "1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==";
7359
7385
};
7360
7386
};
7361
7361
-
"no-case-3.0.3" = {
7387
7387
+
"no-case-3.0.4" = {
7362
7388
name = "no-case";
7363
7389
packageName = "no-case";
7364
7364
-
version = "3.0.3";
7390
7390
+
version = "3.0.4";
7365
7391
src = fetchurl {
7366
7366
-
url = "https://registry.npmjs.org/no-case/-/no-case-3.0.3.tgz";
7367
7367
-
sha512 = "ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw==";
7392
7392
+
url = "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz";
7393
7393
+
sha512 = "fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==";
7368
7394
};
7369
7395
};
7370
7396
"node-elm-compiler-5.0.4" = {
···
7403
7429
sha512 = "h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==";
7404
7430
};
7405
7431
};
7406
7406
-
"node-releases-1.1.67" = {
7432
7432
+
"node-releases-1.1.70" = {
7407
7433
name = "node-releases";
7408
7434
packageName = "node-releases";
7409
7409
-
version = "1.1.67";
7435
7435
+
version = "1.1.70";
7410
7436
src = fetchurl {
7411
7411
-
url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.67.tgz";
7412
7412
-
sha512 = "V5QF9noGFl3EymEwUYzO+3NTDpGfQB4ve6Qfnzf3UNydMhjQRVPR1DZTuvWiLzaFJYw2fmDwAfnRNEVb64hSIg==";
7437
7437
+
url = "https://registry.npmjs.org/node-releases/-/node-releases-1.1.70.tgz";
7438
7438
+
sha512 = "Slf2s69+2/uAD79pVVQo8uSiC34+g8GWY8UH2Qtqv34ZfhYrxpYpfzs9Js9d6O0mbDmALuxaTlplnBTnSELcrw==";
7413
7439
};
7414
7440
};
7415
7441
"node-watch-0.5.5" = {
···
7529
7555
sha512 = "WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==";
7530
7556
};
7531
7557
};
7532
7532
-
"num2fraction-1.2.2" = {
7533
7533
-
name = "num2fraction";
7534
7534
-
packageName = "num2fraction";
7535
7535
-
version = "1.2.2";
7536
7536
-
src = fetchurl {
7537
7537
-
url = "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz";
7538
7538
-
sha1 = "6f682b6a027a4e9ddfa4564cd2589d1d4e669ede";
7539
7539
-
};
7540
7540
-
};
7541
7558
"number-is-nan-1.0.1" = {
7542
7559
name = "number-is-nan";
7543
7560
packageName = "number-is-nan";
···
7574
7591
sha1 = "7e7d858b781bd7c991a41ba975ed3812754e998c";
7575
7592
};
7576
7593
};
7577
7577
-
"object-inspect-1.8.0" = {
7594
7594
+
"object-inspect-1.9.0" = {
7578
7595
name = "object-inspect";
7579
7596
packageName = "object-inspect";
7580
7580
-
version = "1.8.0";
7597
7597
+
version = "1.9.0";
7581
7598
src = fetchurl {
7582
7582
-
url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.8.0.tgz";
7583
7583
-
sha512 = "jLdtEOB112fORuypAyl/50VRVIBIdVQOSUUGQHzJ4xBSbit81zRarz7GThkEFZy1RceYrWYcPcBFPQwHyAc1gA==";
7599
7599
+
url = "https://registry.npmjs.org/object-inspect/-/object-inspect-1.9.0.tgz";
7600
7600
+
sha512 = "i3Bp9iTqwhaLZBxGkRfo5ZbE07BQRT7MGu8+nNgwW9ItGp1TzCTw2DLEoWwjClxBjOFI/hWljTAmYGCEwmtnOw==";
7584
7601
};
7585
7602
};
7586
7603
"object-is-1.1.4" = {
···
7718
7735
sha512 = "IFenVPgF70fSm1keSd2iDBIDIBZkroLeuffXq+wKTzTJlBpesFWojV9lb8mzOfaAzM1sr7HQHuO0vtV0zYekGg==";
7719
7736
};
7720
7737
};
7721
7721
-
"open-7.3.0" = {
7738
7738
+
"open-7.4.0" = {
7722
7739
name = "open";
7723
7740
packageName = "open";
7724
7724
-
version = "7.3.0";
7741
7741
+
version = "7.4.0";
7725
7742
src = fetchurl {
7726
7726
-
url = "https://registry.npmjs.org/open/-/open-7.3.0.tgz";
7727
7727
-
sha512 = "mgLwQIx2F/ye9SmbrUkurZCnkoXyXyu9EbHtJZrICjVAJfyMArdHp3KkixGdZx1ZHFPNIwl0DDM1dFFqXbTLZw==";
7743
7743
+
url = "https://registry.npmjs.org/open/-/open-7.4.0.tgz";
7744
7744
+
sha512 = "PGoBCX/lclIWlpS/R2PQuIR4NJoXh6X5AwVzE7WXnWRGvHg7+4TBCgsujUgiPpm0K1y4qvQeWnCWVTpTKZBtvA==";
7728
7745
};
7729
7746
};
7730
7747
"opn-5.4.0" = {
···
7743
7760
src = fetchurl {
7744
7761
url = "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz";
7745
7762
sha512 = "PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==";
7746
7746
-
};
7747
7747
-
};
7748
7748
-
"opn-6.0.0" = {
7749
7749
-
name = "opn";
7750
7750
-
packageName = "opn";
7751
7751
-
version = "6.0.0";
7752
7752
-
src = fetchurl {
7753
7753
-
url = "https://registry.npmjs.org/opn/-/opn-6.0.0.tgz";
7754
7754
-
sha512 = "I9PKfIZC+e4RXZ/qr1RhgyCnGgYX0UEIlXgWnCOVACIvFgaC9rz6Won7xbdhoHrd8IIhV7YEpHjreNUNkqCGkQ==";
7755
7763
};
7756
7764
};
7757
7765
"optimize-css-assets-webpack-plugin-5.0.3" = {
···
7979
7987
sha512 = "P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==";
7980
7988
};
7981
7989
};
7982
7982
-
"param-case-3.0.3" = {
7990
7990
+
"param-case-3.0.4" = {
7983
7991
name = "param-case";
7984
7992
packageName = "param-case";
7985
7985
-
version = "3.0.3";
7993
7993
+
version = "3.0.4";
7986
7994
src = fetchurl {
7987
7987
-
url = "https://registry.npmjs.org/param-case/-/param-case-3.0.3.tgz";
7988
7988
-
sha512 = "VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA==";
7995
7995
+
url = "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz";
7996
7996
+
sha512 = "RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==";
7989
7997
};
7990
7998
};
7991
7999
"parent-module-1.0.1" = {
···
8024
8032
sha1 = "be35f5425be1f7f6c747184f98a788cb99477ee0";
8025
8033
};
8026
8034
};
8027
8027
-
"parse-json-5.1.0" = {
8035
8035
+
"parse-json-5.2.0" = {
8028
8036
name = "parse-json";
8029
8037
packageName = "parse-json";
8030
8030
-
version = "5.1.0";
8038
8038
+
version = "5.2.0";
8031
8039
src = fetchurl {
8032
8032
-
url = "https://registry.npmjs.org/parse-json/-/parse-json-5.1.0.tgz";
8033
8033
-
sha512 = "+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ==";
8040
8040
+
url = "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz";
8041
8041
+
sha512 = "ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==";
8034
8042
};
8035
8043
};
8036
8044
"parse-passwd-1.0.0" = {
···
8051
8059
sha512 = "CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==";
8052
8060
};
8053
8061
};
8054
8054
-
"pascal-case-3.1.1" = {
8062
8062
+
"pascal-case-3.1.2" = {
8055
8063
name = "pascal-case";
8056
8064
packageName = "pascal-case";
8057
8057
-
version = "3.1.1";
8065
8065
+
version = "3.1.2";
8058
8066
src = fetchurl {
8059
8059
-
url = "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.1.tgz";
8060
8060
-
sha512 = "XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA==";
8067
8067
+
url = "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz";
8068
8068
+
sha512 = "uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==";
8061
8069
};
8062
8070
};
8063
8071
"pascalcase-0.1.1" = {
···
8366
8374
sha512 = "3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg==";
8367
8375
};
8368
8376
};
8369
8369
-
"postcss-8.1.10" = {
8377
8377
+
"postcss-8.2.4" = {
8370
8378
name = "postcss";
8371
8379
packageName = "postcss";
8372
8372
-
version = "8.1.10";
8380
8380
+
version = "8.2.4";
8373
8381
src = fetchurl {
8374
8374
-
url = "https://registry.npmjs.org/postcss/-/postcss-8.1.10.tgz";
8375
8375
-
sha512 = "iBXEV5VTTYaRRdxiFYzTtuv2lGMQBExqkZKSzkJe+Fl6rvQrA/49UVGKqB+LG54hpW/TtDBMGds8j33GFNW7pg==";
8382
8382
+
url = "https://registry.npmjs.org/postcss/-/postcss-8.2.4.tgz";
8383
8383
+
sha512 = "kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg==";
8376
8384
};
8377
8385
};
8378
8386
"postcss-calc-7.0.5" = {
···
8735
8743
sha1 = "e92434bfa5ea8c19f41cdfd401d741a3c819d897";
8736
8744
};
8737
8745
};
8738
8738
-
"pretty-bytes-5.4.1" = {
8746
8746
+
"pretty-bytes-5.5.0" = {
8739
8747
name = "pretty-bytes";
8740
8748
packageName = "pretty-bytes";
8741
8741
-
version = "5.4.1";
8749
8749
+
version = "5.5.0";
8742
8750
src = fetchurl {
8743
8743
-
url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.4.1.tgz";
8744
8744
-
sha512 = "s1Iam6Gwz3JI5Hweaz4GoCD1WUNUIyzePFy5+Js2hjwGVt2Z79wNN+ZKOZ2vB6C+Xs6njyB84Z1IthQg8d9LxA==";
8751
8751
+
url = "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.5.0.tgz";
8752
8752
+
sha512 = "p+T744ZyjjiaFlMUZZv6YPC5JrkNj8maRmPaQCWFJFplUAzpIUTRaTcS+7wmZtUoFXHtESJb23ISliaWyz3SHA==";
8745
8753
};
8746
8754
};
8747
8755
"pretty-error-2.1.2" = {
···
9239
9247
sha512 = "J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==";
9240
9248
};
9241
9249
};
9242
9242
-
"regexp.prototype.flags-1.3.0" = {
9250
9250
+
"regexp.prototype.flags-1.3.1" = {
9243
9251
name = "regexp.prototype.flags";
9244
9252
packageName = "regexp.prototype.flags";
9245
9245
-
version = "1.3.0";
9253
9253
+
version = "1.3.1";
9246
9254
src = fetchurl {
9247
9247
-
url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.0.tgz";
9248
9248
-
sha512 = "2+Q0C5g951OlYlJz6yu5/M33IcsESLlLfsyIaLJaG4FA2r4yP8MvVMJUUP/fVBkSpbbbZlS5gynbEWLipiiXiQ==";
9255
9255
+
url = "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.3.1.tgz";
9256
9256
+
sha512 = "JiBdRBq91WlY7uRJ0ds7R+dU02i6LKi8r3BuQhNXn+kmeLN+EfHhfjqMRis1zJxnlu88hq/4dx0P2OP3APRTOA==";
9249
9257
};
9250
9258
};
9251
9259
"regexpu-core-4.7.1" = {
···
9284
9292
sha512 = "OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A==";
9285
9293
};
9286
9294
};
9287
9287
-
"regjsparser-0.6.4" = {
9295
9295
+
"regjsparser-0.6.7" = {
9288
9296
name = "regjsparser";
9289
9297
packageName = "regjsparser";
9290
9290
-
version = "0.6.4";
9298
9298
+
version = "0.6.7";
9291
9299
src = fetchurl {
9292
9292
-
url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.4.tgz";
9293
9293
-
sha512 = "64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw==";
9300
9300
+
url = "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.7.tgz";
9301
9301
+
sha512 = "ib77G0uxsA2ovgiYbCVGx4Pv3PSttAx2vIwidqQzbL2U5S4Q+j00HdSAneSBuyVcMvEnTXMjiGgB+DlXozVhpQ==";
9294
9302
};
9295
9303
};
9296
9304
"relateurl-0.2.7" = {
···
9311
9319
sha1 = "c24bce2a283adad5bc3f58e0d48249b92379d8ef";
9312
9320
};
9313
9321
};
9314
9314
-
"renderkid-2.0.4" = {
9322
9322
+
"renderkid-2.0.5" = {
9315
9323
name = "renderkid";
9316
9324
packageName = "renderkid";
9317
9317
-
version = "2.0.4";
9325
9325
+
version = "2.0.5";
9318
9326
src = fetchurl {
9319
9319
-
url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.4.tgz";
9320
9320
-
sha512 = "K2eXrSOJdq+HuKzlcjOlGoOarUu5SDguDEhE7+Ah4zuOWL40j8A/oHvLlLob9PSTNvVnBd+/q0Er1QfpEuem5g==";
9327
9327
+
url = "https://registry.npmjs.org/renderkid/-/renderkid-2.0.5.tgz";
9328
9328
+
sha512 = "ccqoLg+HLOHq1vdfYNm4TBeaCDIi1FLt3wGojTDSvdewUv65oTmI3cnT2E4hRjl1gzKZIPK+KZrXzlUYKnR+vQ==";
9321
9329
};
9322
9330
};
9323
9331
"repeat-element-1.1.3" = {
···
9572
9580
sha512 = "uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==";
9573
9581
};
9574
9582
};
9583
9583
+
"rimraf-3.0.2" = {
9584
9584
+
name = "rimraf";
9585
9585
+
packageName = "rimraf";
9586
9586
+
version = "3.0.2";
9587
9587
+
src = fetchurl {
9588
9588
+
url = "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz";
9589
9589
+
sha512 = "JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==";
9590
9590
+
};
9591
9591
+
};
9575
9592
"ripemd160-2.0.2" = {
9576
9593
name = "ripemd160";
9577
9594
packageName = "ripemd160";
···
9761
9778
sha512 = "+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==";
9762
9779
};
9763
9780
};
9764
9764
-
"semver-7.3.2" = {
9781
9781
+
"semver-7.3.4" = {
9765
9782
name = "semver";
9766
9783
packageName = "semver";
9767
9767
-
version = "7.3.2";
9784
9784
+
version = "7.3.4";
9768
9785
src = fetchurl {
9769
9769
-
url = "https://registry.npmjs.org/semver/-/semver-7.3.2.tgz";
9770
9770
-
sha512 = "OrOb32TeeambH6UrhtShmF7CRDqhL6/5XpPNp2DuRH6+9QLw/orhp72j87v8Qa1ScDkvrrBNpZcDejAirJmfXQ==";
9786
9786
+
url = "https://registry.npmjs.org/semver/-/semver-7.3.4.tgz";
9787
9787
+
sha512 = "tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw==";
9771
9788
};
9772
9789
};
9773
9790
"semver-regex-1.0.0" = {
···
10139
10156
sha512 = "Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw==";
10140
10157
};
10141
10158
};
10142
10142
-
"source-map-url-0.4.0" = {
10159
10159
+
"source-map-url-0.4.1" = {
10143
10160
name = "source-map-url";
10144
10161
packageName = "source-map-url";
10145
10145
-
version = "0.4.0";
10162
10162
+
version = "0.4.1";
10146
10163
src = fetchurl {
10147
10147
-
url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz";
10148
10148
-
sha1 = "3e935d7ddd73631b97659956d55128e87b5084a3";
10164
10164
+
url = "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz";
10165
10165
+
sha512 = "cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==";
10149
10166
};
10150
10167
};
10151
10168
"spdx-correct-3.1.1" = {
···
10643
10660
sha512 = "w2VwSrBoHa5BsSyH+KxEqeQBAllHhccyMFVHtGtdMpF4W7IRWfZjFiQceJPChOeTsSDVUpER2T8FA93pr0L+QA==";
10644
10661
};
10645
10662
};
10663
10663
+
"tar-6.1.0" = {
10664
10664
+
name = "tar";
10665
10665
+
packageName = "tar";
10666
10666
+
version = "6.1.0";
10667
10667
+
src = fetchurl {
10668
10668
+
url = "https://registry.npmjs.org/tar/-/tar-6.1.0.tgz";
10669
10669
+
sha512 = "DUCttfhsnLCjwoDoFcI+B2iJgYa93vBnDUATYEeRx6sntCTdN01VnqsIuTlALXla/LWooNg0yEGeB+Y8WdFxGA==";
10670
10670
+
};
10671
10671
+
};
10646
10672
"temp-0.9.0" = {
10647
10673
name = "temp";
10648
10674
packageName = "temp";
···
10904
10930
sha1 = "61dbc2d53b69ff6091a12a168fd7d433107e40f1";
10905
10931
};
10906
10932
};
10907
10907
-
"ts-debounce-2.1.0" = {
10933
10933
+
"ts-debounce-2.3.0" = {
10908
10934
name = "ts-debounce";
10909
10935
packageName = "ts-debounce";
10910
10910
-
version = "2.1.0";
10936
10936
+
version = "2.3.0";
10911
10937
src = fetchurl {
10912
10912
-
url = "https://registry.npmjs.org/ts-debounce/-/ts-debounce-2.1.0.tgz";
10913
10913
-
sha512 = "jlrN8iK/Iif5pQd+pIsH8uEexj3vvUT+BwqNrJt5xgZB+ucwVfQVAUMC8Dnx0vlk7AktHxoD9ZDYYVYUtxd5wA==";
10938
10938
+
url = "https://registry.npmjs.org/ts-debounce/-/ts-debounce-2.3.0.tgz";
10939
10939
+
sha512 = "j63IP7/unAzovrhVHE7U+fNkvDKwIaLH11dCO9TcRbYOZw1chPL054poqq3ZloyRJ5KwJMeB8csN/vGPPpQJjw==";
10914
10940
};
10915
10941
};
10916
10942
"ts-union-2.3.0" = {
···
10929
10955
src = fetchurl {
10930
10956
url = "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz";
10931
10957
sha512 = "Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==";
10958
10958
+
};
10959
10959
+
};
10960
10960
+
"tslib-2.1.0" = {
10961
10961
+
name = "tslib";
10962
10962
+
packageName = "tslib";
10963
10963
+
version = "2.1.0";
10964
10964
+
src = fetchurl {
10965
10965
+
url = "https://registry.npmjs.org/tslib/-/tslib-2.1.0.tgz";
10966
10966
+
sha512 = "hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==";
10932
10967
};
10933
10968
};
10934
10969
"tsyringe-4.4.0" = {
···
11138
11173
sha512 = "rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==";
11139
11174
};
11140
11175
};
11141
11141
-
"universalify-1.0.0" = {
11142
11142
-
name = "universalify";
11143
11143
-
packageName = "universalify";
11144
11144
-
version = "1.0.0";
11145
11145
-
src = fetchurl {
11146
11146
-
url = "https://registry.npmjs.org/universalify/-/universalify-1.0.0.tgz";
11147
11147
-
sha512 = "rb6X1W158d7pRQBg5gkR8uPaSfiids68LTJQYOtEUhoJUWBdaQHsuT/EUduxXYxcrt4r5PJ4fuHW1MHT6p0qug==";
11148
11148
-
};
11149
11149
-
};
11150
11176
"universalify-2.0.0" = {
11151
11177
name = "universalify";
11152
11178
packageName = "universalify";
···
11210
11236
sha1 = "4a50875ec5c715d19379799f0590a0e796958f61";
11211
11237
};
11212
11238
};
11213
11213
-
"uri-js-4.4.0" = {
11239
11239
+
"uri-js-4.4.1" = {
11214
11240
name = "uri-js";
11215
11241
packageName = "uri-js";
11216
11216
-
version = "4.4.0";
11242
11242
+
version = "4.4.1";
11217
11243
src = fetchurl {
11218
11218
-
url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.0.tgz";
11219
11219
-
sha512 = "B0yRTzYdUCCn9n+F4+Gh4yIDtMQcaJsmYBDsTSG8g/OejKBodLQ2IHfN3bM7jUsRXndopT7OIXWdYqc1fjmV6g==";
11244
11244
+
url = "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz";
11245
11245
+
sha512 = "7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==";
11220
11246
};
11221
11247
};
11222
11248
"urix-0.1.0" = {
···
11390
11416
sha1 = "3a105ca17053af55d6e270c1f8288682e18da400";
11391
11417
};
11392
11418
};
11393
11393
-
"vfile-location-3.2.0" = {
11394
11394
-
name = "vfile-location";
11395
11395
-
packageName = "vfile-location";
11396
11396
-
version = "3.2.0";
11397
11397
-
src = fetchurl {
11398
11398
-
url = "https://registry.npmjs.org/vfile-location/-/vfile-location-3.2.0.tgz";
11399
11399
-
sha512 = "aLEIZKv/oxuCDZ8lkJGhuhztf/BW4M+iHdCwglA/eWc+vtuRFJj8EtgceYFX4LRjOhCAAiNHsKGssC6onJ+jbA==";
11400
11400
-
};
11401
11401
-
};
11402
11419
"vm-browserify-1.1.2" = {
11403
11420
name = "vm-browserify";
11404
11421
packageName = "vm-browserify";
···
11408
11425
sha512 = "2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==";
11409
11426
};
11410
11427
};
11411
11411
-
"vscode-jsonrpc-5.0.1" = {
11428
11428
+
"vscode-jsonrpc-6.0.0" = {
11412
11429
name = "vscode-jsonrpc";
11413
11430
packageName = "vscode-jsonrpc";
11414
11414
-
version = "5.0.1";
11431
11431
+
version = "6.0.0";
11415
11432
src = fetchurl {
11416
11416
-
url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-5.0.1.tgz";
11417
11417
-
sha512 = "JvONPptw3GAQGXlVV2utDcHx0BiY34FupW/kI6mZ5x06ER5DdPG/tXWMVHjTNULF5uKPOUUD0SaXg5QaubJL0A==";
11433
11433
+
url = "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz";
11434
11434
+
sha512 = "wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==";
11418
11435
};
11419
11436
};
11420
11420
-
"vscode-languageserver-6.1.1" = {
11437
11437
+
"vscode-languageserver-7.0.0" = {
11421
11438
name = "vscode-languageserver";
11422
11439
packageName = "vscode-languageserver";
11423
11423
-
version = "6.1.1";
11440
11440
+
version = "7.0.0";
11424
11441
src = fetchurl {
11425
11425
-
url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-6.1.1.tgz";
11426
11426
-
sha512 = "DueEpkUAkD5XTR4MLYNr6bQIp/UFR0/IPApgXU3YfCBCB08u2sm9hRCs6DxYZELkk++STPjpcjksR2H8qI3cDQ==";
11442
11442
+
url = "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz";
11443
11443
+
sha512 = "60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==";
11427
11444
};
11428
11445
};
11429
11429
-
"vscode-languageserver-protocol-3.15.3" = {
11446
11446
+
"vscode-languageserver-protocol-3.16.0" = {
11430
11447
name = "vscode-languageserver-protocol";
11431
11448
packageName = "vscode-languageserver-protocol";
11432
11432
-
version = "3.15.3";
11449
11449
+
version = "3.16.0";
11433
11450
src = fetchurl {
11434
11434
-
url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.15.3.tgz";
11435
11435
-
sha512 = "zrMuwHOAQRhjDSnflWdJG+O2ztMWss8GqUUB8dXLR/FPenwkiBNkMIJJYfSN6sgskvsF0rHAoBowNQfbyZnnvw==";
11451
11451
+
url = "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz";
11452
11452
+
sha512 = "sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==";
11436
11453
};
11437
11454
};
11438
11455
"vscode-languageserver-textdocument-1.0.1" = {
···
11444
11461
sha512 = "UIcJDjX7IFkck7cSkNNyzIz5FyvpQfY7sdzVy+wkKN/BLaD4DQ0ppXQrKePomCxTS7RrolK1I0pey0bG9eh8dA==";
11445
11462
};
11446
11463
};
11447
11447
-
"vscode-languageserver-types-3.15.1" = {
11464
11464
+
"vscode-languageserver-types-3.16.0" = {
11448
11465
name = "vscode-languageserver-types";
11449
11466
packageName = "vscode-languageserver-types";
11450
11450
-
version = "3.15.1";
11467
11467
+
version = "3.16.0";
11451
11468
src = fetchurl {
11452
11452
-
url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.15.1.tgz";
11453
11453
-
sha512 = "+a9MPUQrNGRrGU630OGbYVQ+11iOIovjCkqxajPa9w57Sd5ruK8WQNsslzpa0x/QJqC8kRc2DUxWjIFwoNm4ZQ==";
11469
11469
+
url = "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz";
11470
11470
+
sha512 = "k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==";
11454
11471
};
11455
11472
};
11456
11456
-
"vscode-uri-2.1.2" = {
11473
11473
+
"vscode-uri-3.0.2" = {
11457
11474
name = "vscode-uri";
11458
11475
packageName = "vscode-uri";
11459
11459
-
version = "2.1.2";
11476
11476
+
version = "3.0.2";
11460
11477
src = fetchurl {
11461
11461
-
url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-2.1.2.tgz";
11462
11462
-
sha512 = "8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==";
11478
11478
+
url = "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.2.tgz";
11479
11479
+
sha512 = "jkjy6pjU1fxUvI51P+gCsxg1u2n8LSt0W6KrCNQceaziKzff74GoWmjVG46KieVzybO1sttPQmYfrwSHey7GUA==";
11463
11480
};
11464
11481
};
11465
11482
"watchpack-1.7.5" = {
···
11516
11533
sha512 = "6KJVGlCxYdISyurpQ0IPTklv+DULv05rs2hseIXer6D7KrUicRDLFb4IUM1S6LUAKypPM/nSiVSuv8jHu1m3/Q==";
11517
11534
};
11518
11535
};
11519
11519
-
"webpack-dev-middleware-3.7.2" = {
11536
11536
+
"webpack-dev-middleware-3.7.3" = {
11520
11537
name = "webpack-dev-middleware";
11521
11538
packageName = "webpack-dev-middleware";
11522
11522
-
version = "3.7.2";
11539
11539
+
version = "3.7.3";
11523
11540
src = fetchurl {
11524
11524
-
url = "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.2.tgz";
11525
11525
-
sha512 = "1xC42LxbYoqLNAhV6YzTYacicgMZQTqRd27Sim9wn5hJrX3I5nxYy1SxSd4+gjUFsz1dQFj+yEe6zEVmSkeJjw==";
11541
11541
+
url = "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.3.tgz";
11542
11542
+
sha512 = "djelc/zGiz9nZj/U7PTBi2ViorGJXEWo/3ltkPbDyxCXhhEXkW0ce99falaok4TPj+AsxLiXJR0EBOb0zh9fKQ==";
11526
11543
};
11527
11544
};
11528
11545
"webpack-dev-server-3.11.0" = {
···
11885
11902
sha512 = "o41D/WmDeca0BqYhsr3nJzQyg9NF5X8l/UdnFNux9cS3lwB+swm8qGWX5rn+aD6xfBU3rGmtHij7g7x6LxFU3A==";
11886
11903
};
11887
11904
};
11888
11888
-
"ws-7.4.0" = {
11905
11905
+
"ws-7.4.3" = {
11889
11906
name = "ws";
11890
11907
packageName = "ws";
11891
11891
-
version = "7.4.0";
11908
11908
+
version = "7.4.3";
11892
11909
src = fetchurl {
11893
11893
-
url = "https://registry.npmjs.org/ws/-/ws-7.4.0.tgz";
11894
11894
-
sha512 = "kyFwXuV/5ymf+IXhS6f0+eAFvydbaBW3zjpT6hUdAh/hbVjTIB5EHBGi0bPoCLSK2wcuz3BrEkB9LrYv1Nm4NQ==";
11910
11910
+
url = "https://registry.npmjs.org/ws/-/ws-7.4.3.tgz";
11911
11911
+
sha512 = "hr6vCR76GsossIRsr8OLR9acVVm1jyfEWvhbNjtgPOrfvAlKzvyeg/P6r8RuDjRyrcQoPQT7K0DGEPc7Ae6jzA==";
11895
11912
};
11896
11913
};
11897
11914
"xmlbuilder-13.0.2" = {
···
11921
11938
sha512 = "LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==";
11922
11939
};
11923
11940
};
11924
11924
-
"y18n-3.2.1" = {
11941
11941
+
"y18n-3.2.2" = {
11925
11942
name = "y18n";
11926
11943
packageName = "y18n";
11927
11927
-
version = "3.2.1";
11944
11944
+
version = "3.2.2";
11928
11945
src = fetchurl {
11929
11929
-
url = "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz";
11930
11930
-
sha1 = "6d15fba884c08679c0d77e88e7759e811e07fa41";
11946
11946
+
url = "https://registry.npmjs.org/y18n/-/y18n-3.2.2.tgz";
11947
11947
+
sha512 = "uGZHXkHnhF0XeeAPgnKfPv1bgKAYyVvmNL1xlKsPYZPaIHxGti2hHqvOCQv71XMsLxu1QjergkqogUnms5D3YQ==";
11931
11948
};
11932
11949
};
11933
11933
-
"y18n-4.0.0" = {
11950
11950
+
"y18n-4.0.1" = {
11934
11951
name = "y18n";
11935
11952
packageName = "y18n";
11936
11936
-
version = "4.0.0";
11953
11953
+
version = "4.0.1";
11937
11954
src = fetchurl {
11938
11938
-
url = "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz";
11939
11939
-
sha512 = "r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==";
11955
11955
+
url = "https://registry.npmjs.org/y18n/-/y18n-4.0.1.tgz";
11956
11956
+
sha512 = "wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==";
11940
11957
};
11941
11958
};
11942
11959
"yallist-2.1.2" = {
···
11957
11974
sha512 = "a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==";
11958
11975
};
11959
11976
};
11977
11977
+
"yallist-4.0.0" = {
11978
11978
+
name = "yallist";
11979
11979
+
packageName = "yallist";
11980
11980
+
version = "4.0.0";
11981
11981
+
src = fetchurl {
11982
11982
+
url = "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz";
11983
11983
+
sha512 = "3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==";
11984
11984
+
};
11985
11985
+
};
11960
11986
"yaml-1.10.0" = {
11961
11987
name = "yaml";
11962
11988
packageName = "yaml";
···
12112
12138
sources."fresh-0.5.2"
12113
12139
sources."fs-extra-2.0.0"
12114
12140
sources."getpass-0.1.7"
12115
12115
-
sources."graceful-fs-4.2.4"
12141
12141
+
sources."graceful-fs-4.2.5"
12116
12142
sources."har-schema-2.0.0"
12117
12143
sources."har-validator-5.1.5"
12118
12144
sources."http-errors-1.7.2"
···
12136
12162
sources."merge-descriptors-1.0.1"
12137
12163
sources."methods-1.1.2"
12138
12164
sources."mime-1.4.1"
12139
12139
-
sources."mime-db-1.44.0"
12140
12140
-
sources."mime-types-2.1.27"
12165
12165
+
sources."mime-db-1.45.0"
12166
12166
+
sources."mime-types-2.1.28"
12141
12167
sources."minimist-1.2.0"
12142
12168
sources."ms-2.0.0"
12143
12169
sources."negotiator-0.6.2"
···
12196
12222
sources."typedarray-0.0.6"
12197
12223
sources."ultron-1.0.2"
12198
12224
sources."unpipe-1.0.0"
12199
12199
-
sources."uri-js-4.4.0"
12225
12225
+
sources."uri-js-4.4.1"
12200
12226
sources."util-deprecate-1.0.2"
12201
12227
sources."utils-merge-1.0.1"
12202
12228
sources."uuid-3.4.0"
···
12241
12267
sources."balanced-match-1.0.0"
12242
12268
sources."bcrypt-pbkdf-1.0.2"
12243
12269
sources."binary-0.3.0"
12244
12244
-
sources."binary-extensions-2.1.0"
12245
12245
-
sources."binwrap-0.2.2"
12270
12270
+
sources."binary-extensions-2.2.0"
12271
12271
+
sources."binwrap-0.2.3"
12246
12272
sources."bluebird-3.7.2"
12247
12273
sources."brace-expansion-1.1.11"
12248
12274
sources."braces-3.0.2"
···
12256
12282
];
12257
12283
})
12258
12284
sources."chokidar-3.2.1"
12259
12259
-
sources."chownr-1.1.4"
12285
12285
+
sources."chownr-2.0.0"
12260
12286
(sources."cliui-6.0.0" // {
12261
12287
dependencies = [
12262
12288
sources."ansi-regex-5.0.0"
···
12289
12315
sources."which-2.0.1"
12290
12316
];
12291
12317
})
12292
12292
-
sources."elmi-to-json-1.2.0"
12318
12318
+
(sources."elmi-to-json-1.2.0" // {
12319
12319
+
dependencies = [
12320
12320
+
sources."binwrap-0.2.2"
12321
12321
+
sources."chownr-1.1.4"
12322
12322
+
sources."fs-minipass-1.2.7"
12323
12323
+
sources."minipass-2.9.0"
12324
12324
+
sources."minizlib-1.3.3"
12325
12325
+
sources."mkdirp-0.5.5"
12326
12326
+
sources."tar-4.4.13"
12327
12327
+
sources."yallist-3.1.1"
12328
12328
+
];
12329
12329
+
})
12293
12330
sources."emoji-regex-7.0.3"
12294
12331
sources."escape-string-regexp-1.0.5"
12295
12332
sources."extend-3.0.2"
···
12310
12347
sources."forever-agent-0.6.1"
12311
12348
sources."form-data-2.3.3"
12312
12349
sources."fs-extra-4.0.3"
12313
12313
-
sources."fs-minipass-1.2.7"
12350
12350
+
sources."fs-minipass-2.1.0"
12314
12351
sources."fs.realpath-1.0.0"
12315
12352
sources."fsevents-2.1.3"
12316
12353
sources."get-caller-file-2.0.5"
12317
12354
sources."getpass-0.1.7"
12318
12355
sources."glob-7.1.4"
12319
12356
sources."glob-parent-5.1.1"
12320
12320
-
sources."graceful-fs-4.2.4"
12357
12357
+
sources."graceful-fs-4.2.5"
12321
12358
sources."har-schema-2.0.0"
12322
12359
sources."har-validator-5.1.5"
12323
12360
sources."has-flag-3.0.0"
···
12346
12383
sources."yallist-2.1.2"
12347
12384
];
12348
12385
})
12349
12349
-
sources."mime-db-1.44.0"
12350
12350
-
sources."mime-types-2.1.27"
12386
12386
+
sources."mime-db-1.45.0"
12387
12387
+
sources."mime-types-2.1.28"
12351
12388
sources."minimatch-3.0.4"
12352
12389
sources."minimist-1.2.5"
12353
12353
-
sources."minipass-2.9.0"
12354
12354
-
sources."minizlib-1.3.3"
12355
12355
-
sources."mkdirp-0.5.5"
12390
12390
+
sources."minipass-3.1.3"
12391
12391
+
sources."minizlib-2.1.2"
12392
12392
+
sources."mkdirp-1.0.4"
12356
12393
sources."moment-2.29.1"
12357
12394
sources."murmur-hash-js-1.0.0"
12358
12395
sources."mustache-3.2.1"
···
12407
12444
];
12408
12445
})
12409
12446
sources."table-5.4.6"
12410
12410
-
sources."tar-4.4.13"
12447
12447
+
sources."tar-6.1.0"
12411
12448
sources."temp-0.9.0"
12412
12449
sources."through-2.3.8"
12413
12450
sources."tmp-0.0.33"
···
12419
12456
sources."tunnel-agent-0.6.0"
12420
12457
sources."tweetnacl-0.14.5"
12421
12458
sources."universalify-0.1.2"
12422
12422
-
sources."unzip-stream-0.3.1"
12459
12459
+
(sources."unzip-stream-0.3.1" // {
12460
12460
+
dependencies = [
12461
12461
+
sources."mkdirp-0.5.5"
12462
12462
+
];
12463
12463
+
})
12423
12464
sources."upgrade-1.1.0"
12424
12424
-
sources."uri-js-4.4.0"
12465
12465
+
sources."uri-js-4.4.1"
12425
12466
sources."uuid-3.4.0"
12426
12467
sources."verror-1.10.0"
12427
12468
sources."which-1.3.1"
···
12440
12481
})
12441
12482
sources."wrappy-1.0.2"
12442
12483
sources."xmlbuilder-13.0.2"
12443
12443
-
sources."y18n-4.0.0"
12444
12444
-
sources."yallist-3.1.1"
12484
12484
+
sources."y18n-4.0.1"
12485
12485
+
sources."yallist-4.0.0"
12445
12486
(sources."yargs-15.4.1" // {
12446
12487
dependencies = [
12447
12488
sources."ansi-regex-5.0.0"
···
12466
12507
elm-doc-preview = nodeEnv.buildNodePackage {
12467
12508
name = "elm-doc-preview";
12468
12509
packageName = "elm-doc-preview";
12469
12469
-
version = "5.0.3";
12510
12510
+
version = "5.0.5";
12470
12511
src = fetchurl {
12471
12471
-
url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-5.0.3.tgz";
12472
12472
-
sha512 = "j9wli2wOHYiSMARDCRgAZGZ8JkcJqG4rh5+6rSgy5nVGqyXDEN6HCBX/8AhqtKMFKcuCp9ejx04heCaROlb/Eg==";
12512
12512
+
url = "https://registry.npmjs.org/elm-doc-preview/-/elm-doc-preview-5.0.5.tgz";
12513
12513
+
sha512 = "GlWnbw2Bl+pA7QzRlqSYNGEQ3r3oNxMr2Nu0uiCM6AWzQ6Sk3BwtqSiUZvXLLlzWBV9pAQnY9U8xpDpPuh5rOQ==";
12473
12514
};
12474
12515
dependencies = [
12475
12516
sources."@sindresorhus/is-0.14.0"
···
12481
12522
sources."async-limiter-1.0.1"
12482
12523
sources."balanced-match-1.0.0"
12483
12524
sources."batch-0.6.1"
12484
12484
-
sources."binary-extensions-2.1.0"
12525
12525
+
sources."binary-extensions-2.2.0"
12485
12526
sources."body-parser-1.19.0"
12486
12527
sources."brace-expansion-1.1.11"
12487
12528
sources."braces-3.0.2"
···
12493
12534
];
12494
12535
})
12495
12536
sources."chalk-3.0.0"
12496
12496
-
sources."chokidar-3.4.3"
12537
12537
+
sources."chokidar-3.5.1"
12497
12538
sources."clone-response-1.0.2"
12498
12539
sources."color-convert-2.0.1"
12499
12540
sources."color-name-1.1.4"
···
12527
12568
sources."forwarded-0.1.2"
12528
12569
sources."fresh-0.5.2"
12529
12570
sources."fs.realpath-1.0.0"
12530
12530
-
sources."fsevents-2.1.3"
12571
12571
+
sources."fsevents-2.3.2"
12531
12572
sources."get-stream-4.1.0"
12532
12573
sources."glob-7.1.6"
12533
12574
sources."glob-parent-5.1.1"
···
12538
12579
sources."iconv-lite-0.4.24"
12539
12580
sources."inflight-1.0.6"
12540
12581
sources."inherits-2.0.3"
12541
12541
-
sources."ini-1.3.5"
12582
12582
+
sources."ini-1.3.8"
12542
12583
sources."ipaddr.js-1.9.1"
12543
12584
sources."is-binary-path-2.1.0"
12544
12585
sources."is-docker-2.1.1"
···
12555
12596
sources."merge-descriptors-1.0.1"
12556
12597
sources."methods-1.1.2"
12557
12598
sources."mime-1.6.0"
12558
12558
-
sources."mime-db-1.44.0"
12559
12559
-
sources."mime-types-2.1.27"
12599
12599
+
sources."mime-db-1.45.0"
12600
12600
+
sources."mime-types-2.1.28"
12560
12601
sources."mimic-response-1.0.1"
12561
12602
sources."minimatch-3.0.4"
12562
12603
sources."minimist-1.2.5"
···
12566
12607
sources."normalize-url-4.5.0"
12567
12608
sources."on-finished-2.3.0"
12568
12609
sources."once-1.4.0"
12569
12569
-
sources."open-7.3.0"
12610
12610
+
sources."open-7.4.0"
12570
12611
sources."p-cancelable-1.1.0"
12571
12612
sources."package-json-6.5.0"
12572
12613
sources."parseurl-1.3.3"
···
12618
12659
sources."vary-1.1.2"
12619
12660
sources."which-2.0.2"
12620
12661
sources."wrappy-1.0.2"
12621
12621
-
sources."ws-7.4.0"
12662
12662
+
sources."ws-7.4.3"
12622
12663
];
12623
12664
buildInputs = globalBuildInputs;
12624
12665
meta = {
···
12633
12674
"@elm-tooling/elm-language-server" = nodeEnv.buildNodePackage {
12634
12675
name = "_at_elm-tooling_slash_elm-language-server";
12635
12676
packageName = "@elm-tooling/elm-language-server";
12636
12636
-
version = "1.13.2";
12677
12677
+
version = "2.0.2";
12637
12678
src = fetchurl {
12638
12638
-
url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-1.13.2.tgz";
12639
12639
-
sha512 = "3bRD+Hut+XPLDY4r0t25tHhfWsXH2UPeruwDfsp/b991AjGpd3HlMNKVAnyu4DD2brUqo6xoHhpp3qTdHPJ2Pw==";
12679
12679
+
url = "https://registry.npmjs.org/@elm-tooling/elm-language-server/-/elm-language-server-2.0.2.tgz";
12680
12680
+
sha512 = "9G+n4pGWv/dpV6y7Wvf+J1FbJxQW6jtbtiF/20LYJVYP8LxjlrdMG5uzfZqBCFPNfn8aaIJL/ndkSvtSuFe/JA==";
12640
12681
};
12641
12682
dependencies = [
12642
12642
-
sources."@nodelib/fs.scandir-2.1.3"
12643
12643
-
sources."@nodelib/fs.stat-2.0.3"
12644
12644
-
sources."@nodelib/fs.walk-1.2.4"
12645
12645
-
sources."accepts-1.3.7"
12646
12646
-
sources."ajv-6.12.6"
12647
12647
-
sources."array-flatten-1.1.1"
12683
12683
+
sources."@nodelib/fs.scandir-2.1.4"
12684
12684
+
sources."@nodelib/fs.stat-2.0.4"
12685
12685
+
sources."@nodelib/fs.walk-1.2.6"
12686
12686
+
sources."anymatch-3.1.1"
12648
12687
sources."array-union-2.1.0"
12649
12649
-
sources."asn1-0.2.4"
12650
12650
-
sources."assert-plus-1.0.0"
12651
12651
-
sources."async-limiter-1.0.1"
12652
12652
-
sources."asynckit-0.4.0"
12653
12653
-
sources."aws-sign2-0.7.0"
12654
12654
-
sources."aws4-1.11.0"
12655
12655
-
sources."babel-runtime-6.18.0"
12656
12656
-
sources."bcrypt-pbkdf-1.0.2"
12657
12657
-
sources."body-parser-1.19.0"
12688
12688
+
sources."binary-extensions-2.2.0"
12658
12689
sources."braces-3.0.2"
12659
12659
-
sources."bytes-3.1.0"
12660
12660
-
sources."caseless-0.12.0"
12661
12661
-
sources."combined-stream-1.0.8"
12662
12662
-
sources."concat-stream-1.5.2"
12663
12663
-
sources."content-disposition-0.5.3"
12664
12664
-
sources."content-type-1.0.4"
12665
12665
-
sources."cookie-0.4.0"
12666
12666
-
sources."cookie-signature-1.0.6"
12667
12667
-
sources."core-js-2.6.12"
12668
12668
-
sources."core-util-is-1.0.2"
12690
12690
+
sources."chokidar-3.5.1"
12669
12691
sources."cross-spawn-7.0.3"
12670
12670
-
sources."dashdash-1.14.1"
12671
12671
-
sources."debug-2.6.9"
12672
12672
-
sources."delayed-stream-1.0.0"
12673
12673
-
sources."depd-1.1.2"
12674
12674
-
sources."destroy-1.0.4"
12675
12692
sources."dir-glob-3.0.1"
12676
12676
-
sources."ecc-jsbn-0.1.2"
12677
12677
-
sources."ee-first-1.1.1"
12678
12678
-
sources."elm-analyse-git://github.com/elm-tooling/elm-analyse#7f4000cce5ef024fe5e82c7ee1725feef95a9daf"
12679
12679
-
sources."encodeurl-1.0.2"
12680
12680
-
sources."end-of-stream-1.4.4"
12681
12681
-
sources."escape-html-1.0.3"
12682
12693
sources."escape-string-regexp-4.0.0"
12683
12683
-
sources."etag-1.8.1"
12684
12684
-
(sources."execa-4.1.0" // {
12685
12685
-
dependencies = [
12686
12686
-
sources."is-stream-2.0.0"
12687
12687
-
];
12688
12688
-
})
12689
12689
-
sources."express-4.17.1"
12690
12690
-
(sources."express-ws-2.0.0" // {
12691
12691
-
dependencies = [
12692
12692
-
sources."ws-1.1.5"
12693
12693
-
];
12694
12694
-
})
12695
12695
-
sources."extend-3.0.2"
12696
12696
-
sources."extsprintf-1.3.0"
12697
12697
-
sources."fast-deep-equal-3.1.3"
12694
12694
+
sources."execa-5.0.0"
12698
12695
sources."fast-diff-1.2.0"
12699
12699
-
sources."fast-glob-3.2.4"
12700
12700
-
sources."fast-json-stable-stringify-2.1.0"
12701
12701
-
sources."fastq-1.9.0"
12696
12696
+
sources."fast-glob-3.2.5"
12697
12697
+
sources."fastq-1.10.1"
12702
12698
sources."fill-range-7.0.1"
12703
12703
-
sources."finalhandler-1.1.2"
12704
12704
-
sources."find-0.2.7"
12705
12705
-
sources."forever-agent-0.6.1"
12706
12706
-
sources."form-data-2.3.3"
12707
12707
-
sources."forwarded-0.1.2"
12708
12708
-
sources."fresh-0.5.2"
12709
12709
-
sources."fs-extra-2.0.0"
12710
12710
-
sources."get-stream-5.2.0"
12711
12711
-
sources."getpass-0.1.7"
12699
12699
+
sources."fromentries-1.3.2"
12700
12700
+
sources."fsevents-2.3.2"
12701
12701
+
sources."get-stream-6.0.0"
12712
12702
sources."glob-parent-5.1.1"
12713
12713
-
sources."globby-11.0.1"
12714
12714
-
sources."graceful-fs-4.2.4"
12715
12715
-
sources."har-schema-2.0.0"
12716
12716
-
sources."har-validator-5.1.5"
12717
12717
-
sources."http-errors-1.7.2"
12718
12718
-
sources."http-signature-1.2.0"
12719
12719
-
sources."human-signals-1.1.1"
12720
12720
-
sources."iconv-lite-0.4.24"
12703
12703
+
sources."globby-11.0.2"
12704
12704
+
sources."human-signals-2.1.0"
12721
12705
sources."ignore-5.1.8"
12722
12722
-
sources."inherits-2.0.3"
12723
12723
-
sources."ipaddr.js-1.9.1"
12706
12706
+
sources."is-binary-path-2.1.0"
12724
12707
sources."is-extglob-2.1.1"
12725
12708
sources."is-glob-4.0.1"
12726
12709
sources."is-number-7.0.0"
12727
12727
-
sources."is-stream-1.1.0"
12728
12728
-
sources."is-typedarray-1.0.0"
12729
12729
-
sources."is-wsl-1.1.0"
12730
12730
-
sources."isarray-1.0.0"
12710
12710
+
sources."is-stream-2.0.0"
12731
12711
sources."isexe-2.0.0"
12732
12732
-
sources."isstream-0.1.2"
12733
12733
-
sources."jsbn-0.1.1"
12734
12734
-
sources."json-schema-0.2.3"
12735
12735
-
sources."json-schema-traverse-0.4.1"
12736
12736
-
sources."json-stringify-safe-5.0.1"
12737
12737
-
sources."jsonfile-2.4.0"
12738
12738
-
sources."jsprim-1.4.1"
12739
12739
-
sources."lodash-4.17.20"
12740
12740
-
sources."media-typer-0.3.0"
12741
12741
-
sources."merge-descriptors-1.0.1"
12742
12712
sources."merge-stream-2.0.0"
12743
12713
sources."merge2-1.4.1"
12744
12744
-
sources."methods-1.1.2"
12745
12714
sources."micromatch-4.0.2"
12746
12746
-
sources."mime-1.6.0"
12747
12747
-
sources."mime-db-1.44.0"
12748
12748
-
sources."mime-types-2.1.27"
12749
12715
sources."mimic-fn-2.1.0"
12750
12750
-
sources."minimist-1.2.5"
12751
12751
-
sources."ms-2.0.0"
12752
12752
-
sources."negotiator-0.6.2"
12753
12753
-
sources."node-watch-0.5.5"
12716
12716
+
sources."normalize-path-3.0.0"
12754
12717
sources."npm-run-path-4.0.1"
12755
12755
-
sources."oauth-sign-0.9.0"
12756
12756
-
sources."on-finished-2.3.0"
12757
12757
-
sources."once-1.4.0"
12758
12718
sources."onetime-5.1.2"
12759
12759
-
sources."opn-6.0.0"
12760
12760
-
sources."options-0.0.6"
12761
12761
-
sources."os-homedir-1.0.2"
12762
12762
-
sources."os-tmpdir-1.0.2"
12763
12763
-
sources."parseurl-1.3.3"
12764
12719
sources."path-key-3.1.1"
12765
12765
-
sources."path-to-regexp-0.1.7"
12766
12720
sources."path-type-4.0.0"
12767
12767
-
sources."performance-now-2.1.0"
12768
12721
sources."picomatch-2.2.2"
12769
12722
sources."pjson-1.0.9"
12770
12770
-
sources."process-nextick-args-1.0.7"
12771
12771
-
sources."proxy-addr-2.0.6"
12772
12772
-
sources."psl-1.8.0"
12773
12773
-
sources."pump-3.0.0"
12774
12774
-
sources."punycode-2.1.1"
12775
12775
-
sources."qs-6.7.0"
12776
12776
-
sources."range-parser-1.2.1"
12777
12777
-
sources."raw-body-2.4.0"
12778
12778
-
sources."readable-stream-2.0.6"
12723
12723
+
sources."readdirp-3.5.0"
12779
12724
sources."reflect-metadata-0.1.13"
12780
12780
-
sources."regenerator-runtime-0.9.6"
12781
12781
-
(sources."request-2.88.2" // {
12782
12782
-
dependencies = [
12783
12783
-
sources."qs-6.5.2"
12784
12784
-
];
12785
12785
-
})
12786
12725
sources."reusify-1.0.4"
12787
12726
sources."run-parallel-1.1.10"
12788
12788
-
sources."safe-buffer-5.1.2"
12789
12789
-
sources."safer-buffer-2.1.2"
12790
12790
-
(sources."send-0.17.1" // {
12791
12791
-
dependencies = [
12792
12792
-
sources."ms-2.1.1"
12793
12793
-
];
12794
12794
-
})
12795
12795
-
sources."serve-static-1.14.1"
12796
12796
-
sources."setprototypeof-1.1.1"
12797
12727
sources."shebang-command-2.0.0"
12798
12728
sources."shebang-regex-3.0.0"
12799
12729
sources."signal-exit-3.0.3"
12800
12730
sources."slash-3.0.0"
12801
12801
-
sources."sshpk-1.16.1"
12802
12802
-
sources."statuses-1.5.0"
12803
12803
-
sources."string_decoder-0.10.31"
12804
12731
sources."strip-final-newline-2.0.0"
12805
12805
-
sources."sums-0.2.4"
12806
12806
-
sources."through2-2.0.1"
12807
12807
-
sources."tmp-0.0.31"
12808
12732
sources."to-regex-range-5.0.1"
12809
12809
-
sources."toidentifier-1.0.0"
12810
12810
-
sources."tough-cookie-2.5.0"
12811
12811
-
sources."traverse-chain-0.1.0"
12812
12812
-
sources."ts-debounce-2.1.0"
12733
12733
+
sources."ts-debounce-2.3.0"
12813
12734
sources."tslib-1.14.1"
12814
12735
sources."tsyringe-4.4.0"
12815
12815
-
sources."tunnel-agent-0.6.0"
12816
12816
-
sources."tweetnacl-0.14.5"
12817
12817
-
sources."type-is-1.6.18"
12818
12818
-
sources."typedarray-0.0.6"
12819
12819
-
sources."ultron-1.0.2"
12820
12820
-
sources."unpipe-1.0.0"
12821
12821
-
sources."uri-js-4.4.0"
12822
12822
-
sources."util-deprecate-1.0.2"
12823
12823
-
sources."utils-merge-1.0.1"
12824
12824
-
sources."uuid-3.4.0"
12825
12825
-
sources."vary-1.1.2"
12826
12826
-
sources."verror-1.10.0"
12827
12827
-
sources."vscode-jsonrpc-5.0.1"
12828
12828
-
sources."vscode-languageserver-6.1.1"
12829
12829
-
sources."vscode-languageserver-protocol-3.15.3"
12736
12736
+
sources."vscode-jsonrpc-6.0.0"
12737
12737
+
sources."vscode-languageserver-7.0.0"
12738
12738
+
sources."vscode-languageserver-protocol-3.16.0"
12830
12739
sources."vscode-languageserver-textdocument-1.0.1"
12831
12831
-
sources."vscode-languageserver-types-3.15.1"
12832
12832
-
sources."vscode-uri-2.1.2"
12740
12740
+
sources."vscode-languageserver-types-3.16.0"
12741
12741
+
sources."vscode-uri-3.0.2"
12833
12742
sources."web-tree-sitter-0.17.1"
12834
12743
sources."which-2.0.2"
12835
12835
-
sources."wrappy-1.0.2"
12836
12836
-
(sources."ws-3.3.1" // {
12837
12837
-
dependencies = [
12838
12838
-
sources."ultron-1.1.1"
12839
12839
-
];
12840
12840
-
})
12841
12841
-
sources."xtend-4.0.2"
12842
12744
];
12843
12745
buildInputs = globalBuildInputs;
12844
12746
meta = {
···
12863
12765
sources."ansi-styles-2.2.1"
12864
12766
sources."anymatch-3.1.1"
12865
12767
sources."async-limiter-1.0.1"
12866
12866
-
sources."binary-extensions-2.1.0"
12768
12768
+
sources."binary-extensions-2.2.0"
12867
12769
sources."braces-3.0.2"
12868
12770
sources."chalk-1.1.3"
12869
12771
sources."charenc-0.0.2"
···
12892
12794
})
12893
12795
sources."fill-range-7.0.1"
12894
12796
sources."finalhandler-1.1.2"
12895
12895
-
sources."follow-redirects-1.13.0"
12797
12797
+
sources."follow-redirects-1.13.2"
12896
12798
sources."fresh-0.5.2"
12897
12897
-
sources."fsevents-2.2.1"
12799
12799
+
sources."fsevents-2.3.2"
12898
12800
sources."get-stream-4.1.0"
12899
12801
sources."glob-parent-5.1.1"
12900
12802
sources."has-ansi-2.0.0"
···
12970
12872
elm-test = nodeEnv.buildNodePackage {
12971
12873
name = "elm-test";
12972
12874
packageName = "elm-test";
12973
12973
-
version = "0.19.1-revision4";
12875
12875
+
version = "0.19.1-revision6";
12974
12876
src = fetchurl {
12975
12975
-
url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision4.tgz";
12976
12976
-
sha512 = "DUzKPNzJb/2ZsPbtHttT5JIKGY1KtT7d9cexSNQI7DppvoEHxZ4nCd5EObv5kjskmC0JkQ5PHmCkIruQsbOdkQ==";
12877
12877
+
url = "https://registry.npmjs.org/elm-test/-/elm-test-0.19.1-revision6.tgz";
12878
12878
+
sha512 = "4VbIyCRlCUm/py0E0AjMT3/mwd6DR4Y5Z5gEox6z5JII6ZdKIJmcQzjgWRI5qo5ERJiw9M/Nxhk7SGXFUbZsxQ==";
12977
12879
};
12978
12880
dependencies = [
12979
12979
-
sources."ajv-6.12.6"
12980
12881
sources."ansi-styles-4.3.0"
12981
12882
sources."anymatch-3.1.1"
12982
12982
-
sources."asn1-0.2.4"
12983
12983
-
sources."assert-plus-1.0.0"
12984
12984
-
sources."asynckit-0.4.0"
12985
12985
-
sources."aws-sign2-0.7.0"
12986
12986
-
sources."aws4-1.11.0"
12987
12883
sources."balanced-match-1.0.0"
12988
12988
-
sources."bcrypt-pbkdf-1.0.2"
12989
12989
-
sources."binary-0.3.0"
12990
12990
-
sources."binary-extensions-2.1.0"
12991
12991
-
sources."binwrap-0.2.2"
12992
12992
-
sources."bluebird-3.7.2"
12884
12884
+
sources."binary-extensions-2.2.0"
12993
12885
sources."brace-expansion-1.1.11"
12994
12886
sources."braces-3.0.2"
12995
12995
-
sources."buffers-0.1.1"
12996
12996
-
sources."caseless-0.12.0"
12997
12997
-
sources."chainsaw-0.1.0"
12998
12998
-
sources."chalk-3.0.0"
12999
12999
-
sources."chokidar-3.4.3"
13000
13000
-
sources."chownr-1.1.4"
12887
12887
+
sources."chalk-4.1.0"
12888
12888
+
sources."chokidar-3.5.1"
13001
12889
sources."color-convert-2.0.1"
13002
12890
sources."color-name-1.1.4"
13003
13003
-
sources."combined-stream-1.0.8"
12891
12891
+
sources."commander-7.0.0"
13004
12892
sources."concat-map-0.0.1"
13005
13005
-
sources."core-util-is-1.0.2"
13006
12893
sources."cross-spawn-7.0.3"
13007
13007
-
sources."dashdash-1.14.1"
13008
13008
-
sources."delayed-stream-1.0.0"
13009
13009
-
sources."ecc-jsbn-0.1.2"
13010
13010
-
sources."elmi-to-json-1.3.0"
13011
13011
-
sources."extend-3.0.2"
13012
13012
-
sources."extsprintf-1.3.0"
13013
13013
-
sources."fast-deep-equal-3.1.3"
13014
13014
-
sources."fast-json-stable-stringify-2.1.0"
12894
12894
+
sources."elm-tooling-1.1.0"
13015
12895
sources."fill-range-7.0.1"
13016
13016
-
sources."forever-agent-0.6.1"
13017
13017
-
sources."form-data-2.3.3"
13018
13018
-
sources."fs-extra-8.1.0"
13019
13019
-
sources."fs-minipass-1.2.7"
13020
12896
sources."fs.realpath-1.0.0"
13021
13021
-
sources."fsevents-2.1.3"
13022
13022
-
sources."getpass-0.1.7"
12897
12897
+
sources."fsevents-2.3.2"
13023
12898
sources."glob-7.1.6"
13024
12899
sources."glob-parent-5.1.1"
13025
13025
-
sources."graceful-fs-4.2.4"
13026
13026
-
sources."har-schema-2.0.0"
13027
13027
-
sources."har-validator-5.1.5"
12900
12900
+
sources."graceful-fs-4.2.5"
13028
12901
sources."has-flag-4.0.0"
13029
13029
-
sources."http-signature-1.2.0"
13030
12902
sources."inflight-1.0.6"
13031
12903
sources."inherits-2.0.4"
13032
12904
sources."is-binary-path-2.1.0"
13033
12905
sources."is-extglob-2.1.1"
13034
12906
sources."is-glob-4.0.1"
13035
12907
sources."is-number-7.0.0"
13036
13036
-
sources."is-typedarray-1.0.0"
13037
12908
sources."isexe-2.0.0"
13038
13038
-
sources."isstream-0.1.2"
13039
13039
-
sources."jsbn-0.1.1"
13040
13040
-
sources."json-schema-0.2.3"
13041
13041
-
sources."json-schema-traverse-0.4.1"
13042
13042
-
sources."json-stringify-safe-5.0.1"
13043
13043
-
sources."jsonfile-4.0.0"
13044
13044
-
sources."jsprim-1.4.1"
13045
13045
-
sources."lodash-4.17.20"
13046
13046
-
sources."mime-db-1.44.0"
13047
13047
-
sources."mime-types-2.1.27"
13048
12909
sources."minimatch-3.0.4"
13049
13049
-
sources."minimist-1.2.5"
13050
13050
-
sources."minipass-2.9.0"
13051
13051
-
sources."minizlib-1.3.3"
13052
13052
-
sources."mkdirp-0.5.5"
13053
13053
-
sources."murmur-hash-js-1.0.0"
13054
13054
-
sources."mustache-3.2.1"
13055
12910
sources."normalize-path-3.0.0"
13056
13056
-
sources."oauth-sign-0.9.0"
13057
12911
sources."once-1.4.0"
13058
12912
sources."path-is-absolute-1.0.1"
13059
12913
sources."path-key-3.1.1"
13060
13060
-
sources."performance-now-2.1.0"
13061
12914
sources."picomatch-2.2.2"
13062
13062
-
sources."psl-1.8.0"
13063
13063
-
sources."punycode-2.1.1"
13064
13064
-
sources."qs-6.5.2"
13065
12915
sources."readdirp-3.5.0"
13066
13066
-
sources."request-2.88.2"
13067
13067
-
sources."request-promise-4.2.6"
13068
13068
-
sources."request-promise-core-1.1.4"
13069
13069
-
sources."rimraf-2.6.3"
13070
13070
-
sources."safe-buffer-5.2.1"
13071
13071
-
sources."safer-buffer-2.1.2"
12916
12916
+
sources."rimraf-3.0.2"
13072
12917
sources."shebang-command-2.0.0"
13073
12918
sources."shebang-regex-3.0.0"
13074
12919
sources."split-1.0.1"
13075
13075
-
sources."sshpk-1.16.1"
13076
13076
-
sources."stealthy-require-1.1.1"
13077
12920
sources."supports-color-7.2.0"
13078
13078
-
sources."tar-4.4.13"
13079
13079
-
sources."temp-0.9.4"
13080
12921
sources."through-2.3.8"
13081
12922
sources."to-regex-range-5.0.1"
13082
13082
-
sources."tough-cookie-2.5.0"
13083
13083
-
sources."traverse-0.3.9"
13084
13084
-
sources."tunnel-agent-0.6.0"
13085
13085
-
sources."tweetnacl-0.14.5"
13086
13086
-
sources."universalify-0.1.2"
13087
13087
-
sources."unzip-stream-0.3.1"
13088
13088
-
sources."uri-js-4.4.0"
13089
13089
-
sources."uuid-3.4.0"
13090
13090
-
sources."verror-1.10.0"
13091
12923
sources."which-2.0.2"
13092
12924
sources."wrappy-1.0.2"
13093
12925
sources."xmlbuilder-15.1.1"
13094
13094
-
sources."yallist-3.1.1"
13095
12926
];
13096
12927
buildInputs = globalBuildInputs;
13097
12928
meta = {
···
13117
12948
sources."@types/cacheable-request-6.0.1"
13118
12949
sources."@types/http-cache-semantics-4.0.0"
13119
12950
sources."@types/keyv-3.1.1"
13120
13120
-
sources."@types/node-14.14.10"
12951
12951
+
sources."@types/node-14.14.25"
13121
12952
sources."@types/responselike-1.0.0"
13122
12953
sources."cacheable-lookup-2.0.1"
13123
12954
sources."cacheable-request-7.0.1"
···
13136
12967
sources."get-proxy-2.1.0"
13137
12968
sources."get-stream-5.2.0"
13138
12969
sources."got-10.7.0"
13139
13139
-
sources."graceful-fs-4.2.4"
12970
12970
+
sources."graceful-fs-4.2.5"
13140
12971
sources."has-symbol-support-x-1.4.2"
13141
12972
sources."has-to-string-tag-x-1.4.1"
13142
12973
sources."http-cache-semantics-4.1.0"
13143
13143
-
sources."ini-1.3.5"
13144
13144
-
sources."is-object-1.0.1"
12974
12974
+
sources."ini-1.3.8"
12975
12975
+
sources."is-object-1.0.2"
13145
12976
sources."isexe-2.0.0"
13146
12977
sources."isurl-1.0.0"
13147
12978
sources."json-buffer-3.0.1"
13148
12979
sources."jsonfile-4.0.0"
13149
12980
sources."keyv-4.0.3"
13150
12981
sources."lowercase-keys-2.0.0"
12982
12982
+
sources."lru-cache-6.0.0"
13151
12983
sources."mimic-response-2.1.0"
13152
12984
sources."normalize-url-4.5.0"
13153
12985
sources."npm-conf-1.1.3"
···
13162
12994
sources."responselike-2.0.0"
13163
12995
sources."safe-buffer-5.2.1"
13164
12996
sources."safename-1.0.2"
13165
13165
-
sources."semver-7.3.2"
12997
12997
+
sources."semver-7.3.4"
13166
12998
sources."to-readable-stream-2.1.0"
13167
12999
sources."tunnel-agent-0.6.0"
13168
13000
sources."type-fest-0.10.0"
···
13170
13002
sources."url-to-options-1.0.1"
13171
13003
sources."which-2.0.2"
13172
13004
sources."wrappy-1.0.2"
13005
13005
+
sources."yallist-4.0.0"
13173
13006
sources."yn-4.0.0"
13174
13007
];
13175
13008
buildInputs = globalBuildInputs;
···
13203
13036
sources."balanced-match-1.0.0"
13204
13037
sources."bcrypt-pbkdf-1.0.2"
13205
13038
sources."binary-0.3.0"
13206
13206
-
sources."binary-extensions-2.1.0"
13039
13039
+
sources."binary-extensions-2.2.0"
13207
13040
sources."binwrap-0.2.2"
13208
13041
sources."bluebird-3.7.2"
13209
13042
sources."brace-expansion-1.1.11"
···
13263
13096
sources."getpass-0.1.7"
13264
13097
sources."glob-7.1.4"
13265
13098
sources."glob-parent-5.1.1"
13266
13266
-
sources."graceful-fs-4.2.4"
13099
13099
+
sources."graceful-fs-4.2.5"
13267
13100
sources."har-schema-2.0.0"
13268
13101
sources."har-validator-5.1.5"
13269
13102
sources."has-flag-3.0.0"
···
13286
13119
sources."jsprim-1.4.1"
13287
13120
sources."locate-path-3.0.0"
13288
13121
sources."lodash-4.17.15"
13289
13289
-
sources."mime-db-1.44.0"
13290
13290
-
sources."mime-types-2.1.27"
13122
13122
+
sources."mime-db-1.45.0"
13123
13123
+
sources."mime-types-2.1.28"
13291
13124
sources."minimatch-3.0.4"
13292
13125
sources."minimist-1.2.5"
13293
13126
sources."minipass-2.9.0"
···
13354
13187
sources."tweetnacl-0.14.5"
13355
13188
sources."universalify-0.1.2"
13356
13189
sources."unzip-stream-0.3.1"
13357
13357
-
sources."uri-js-4.4.0"
13190
13190
+
sources."uri-js-4.4.1"
13358
13191
sources."uuid-3.4.0"
13359
13192
sources."verror-1.10.0"
13360
13193
sources."which-2.0.1"
···
13362
13195
sources."wrap-ansi-5.1.0"
13363
13196
sources."wrappy-1.0.2"
13364
13197
sources."xmlbuilder-13.0.2"
13365
13365
-
sources."y18n-4.0.0"
13198
13198
+
sources."y18n-4.0.1"
13366
13199
sources."yallist-3.1.1"
13367
13200
sources."yargs-13.3.2"
13368
13201
sources."yargs-parser-13.1.2"
···
13389
13222
sources."compare-versions-3.6.0"
13390
13223
sources."core-util-is-1.0.2"
13391
13224
sources."fs-extra-6.0.1"
13392
13392
-
sources."graceful-fs-4.2.4"
13225
13225
+
sources."graceful-fs-4.2.5"
13393
13226
sources."inherits-2.0.4"
13394
13227
sources."isarray-1.0.0"
13395
13228
sources."jsonfile-4.0.0"
···
13424
13257
create-elm-app = nodeEnv.buildNodePackage {
13425
13258
name = "create-elm-app";
13426
13259
packageName = "create-elm-app";
13427
13427
-
version = "5.21.0";
13260
13260
+
version = "5.22.0";
13428
13261
src = fetchurl {
13429
13429
-
url = "https://registry.npmjs.org/create-elm-app/-/create-elm-app-5.21.0.tgz";
13430
13430
-
sha512 = "yW7kMk/WyIUZc+OksH+GH8lhOWl129RiJGclJtpnLlmW3IDZYh23bP/e65MxX7BB+7lwi3KSObdbPYfCJf7CuA==";
13262
13262
+
url = "https://registry.npmjs.org/create-elm-app/-/create-elm-app-5.22.0.tgz";
13263
13263
+
sha512 = "XmYWohoM/xHxFJBPA61MJMqlMcEycBO4gUdtp4mVA6KbIgEV7PTv1UXVFYjTntUNOr5DIxvE1RcqB84rR767Uw==";
13431
13264
};
13432
13265
dependencies = [
13433
13433
-
sources."@babel/cli-7.12.8"
13434
13434
-
sources."@babel/code-frame-7.10.4"
13435
13435
-
sources."@babel/compat-data-7.12.7"
13436
13436
-
sources."@babel/core-7.12.9"
13437
13437
-
sources."@babel/generator-7.12.5"
13438
13438
-
sources."@babel/helper-annotate-as-pure-7.10.4"
13439
13439
-
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.10.4"
13440
13440
-
sources."@babel/helper-compilation-targets-7.12.5"
13441
13441
-
sources."@babel/helper-create-class-features-plugin-7.12.1"
13442
13442
-
sources."@babel/helper-create-regexp-features-plugin-7.12.7"
13443
13443
-
sources."@babel/helper-define-map-7.10.5"
13444
13444
-
sources."@babel/helper-explode-assignable-expression-7.12.1"
13445
13445
-
sources."@babel/helper-function-name-7.10.4"
13446
13446
-
sources."@babel/helper-get-function-arity-7.10.4"
13447
13447
-
sources."@babel/helper-hoist-variables-7.10.4"
13448
13448
-
sources."@babel/helper-member-expression-to-functions-7.12.7"
13449
13449
-
sources."@babel/helper-module-imports-7.12.5"
13450
13450
-
sources."@babel/helper-module-transforms-7.12.1"
13451
13451
-
sources."@babel/helper-optimise-call-expression-7.12.7"
13452
13452
-
sources."@babel/helper-plugin-utils-7.10.4"
13453
13453
-
sources."@babel/helper-remap-async-to-generator-7.12.1"
13454
13454
-
sources."@babel/helper-replace-supers-7.12.5"
13455
13455
-
sources."@babel/helper-simple-access-7.12.1"
13266
13266
+
sources."@babel/cli-7.12.10"
13267
13267
+
sources."@babel/code-frame-7.12.13"
13268
13268
+
sources."@babel/compat-data-7.12.13"
13269
13269
+
sources."@babel/core-7.12.10"
13270
13270
+
sources."@babel/generator-7.12.15"
13271
13271
+
sources."@babel/helper-annotate-as-pure-7.12.13"
13272
13272
+
sources."@babel/helper-builder-binary-assignment-operator-visitor-7.12.13"
13273
13273
+
sources."@babel/helper-compilation-targets-7.12.13"
13274
13274
+
sources."@babel/helper-create-class-features-plugin-7.12.13"
13275
13275
+
sources."@babel/helper-create-regexp-features-plugin-7.12.13"
13276
13276
+
sources."@babel/helper-explode-assignable-expression-7.12.13"
13277
13277
+
sources."@babel/helper-function-name-7.12.13"
13278
13278
+
sources."@babel/helper-get-function-arity-7.12.13"
13279
13279
+
sources."@babel/helper-hoist-variables-7.12.13"
13280
13280
+
sources."@babel/helper-member-expression-to-functions-7.12.13"
13281
13281
+
sources."@babel/helper-module-imports-7.12.13"
13282
13282
+
sources."@babel/helper-module-transforms-7.12.13"
13283
13283
+
sources."@babel/helper-optimise-call-expression-7.12.13"
13284
13284
+
sources."@babel/helper-plugin-utils-7.12.13"
13285
13285
+
sources."@babel/helper-remap-async-to-generator-7.12.13"
13286
13286
+
sources."@babel/helper-replace-supers-7.12.13"
13287
13287
+
sources."@babel/helper-simple-access-7.12.13"
13456
13288
sources."@babel/helper-skip-transparent-expression-wrappers-7.12.1"
13457
13457
-
sources."@babel/helper-split-export-declaration-7.11.0"
13458
13458
-
sources."@babel/helper-validator-identifier-7.10.4"
13459
13459
-
sources."@babel/helper-validator-option-7.12.1"
13460
13460
-
sources."@babel/helper-wrap-function-7.12.3"
13461
13461
-
sources."@babel/helpers-7.12.5"
13462
13462
-
sources."@babel/highlight-7.10.4"
13463
13463
-
sources."@babel/parser-7.12.7"
13464
13464
-
sources."@babel/plugin-proposal-async-generator-functions-7.12.1"
13465
13465
-
sources."@babel/plugin-proposal-class-properties-7.12.1"
13289
13289
+
sources."@babel/helper-split-export-declaration-7.12.13"
13290
13290
+
sources."@babel/helper-validator-identifier-7.12.11"
13291
13291
+
sources."@babel/helper-validator-option-7.12.11"
13292
13292
+
sources."@babel/helper-wrap-function-7.12.13"
13293
13293
+
sources."@babel/helpers-7.12.13"
13294
13294
+
sources."@babel/highlight-7.12.13"
13295
13295
+
sources."@babel/parser-7.12.15"
13296
13296
+
sources."@babel/plugin-proposal-async-generator-functions-7.12.13"
13297
13297
+
sources."@babel/plugin-proposal-class-properties-7.12.13"
13466
13298
sources."@babel/plugin-proposal-dynamic-import-7.12.1"
13467
13467
-
sources."@babel/plugin-proposal-export-namespace-from-7.12.1"
13468
13468
-
sources."@babel/plugin-proposal-json-strings-7.12.1"
13469
13469
-
sources."@babel/plugin-proposal-logical-assignment-operators-7.12.1"
13470
13470
-
sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.1"
13471
13471
-
sources."@babel/plugin-proposal-numeric-separator-7.12.7"
13472
13472
-
sources."@babel/plugin-proposal-object-rest-spread-7.12.1"
13473
13473
-
sources."@babel/plugin-proposal-optional-catch-binding-7.12.1"
13474
13474
-
sources."@babel/plugin-proposal-optional-chaining-7.12.7"
13475
13475
-
sources."@babel/plugin-proposal-private-methods-7.12.1"
13476
13476
-
sources."@babel/plugin-proposal-unicode-property-regex-7.12.1"
13299
13299
+
sources."@babel/plugin-proposal-export-namespace-from-7.12.13"
13300
13300
+
sources."@babel/plugin-proposal-json-strings-7.12.13"
13301
13301
+
sources."@babel/plugin-proposal-logical-assignment-operators-7.12.13"
13302
13302
+
sources."@babel/plugin-proposal-nullish-coalescing-operator-7.12.13"
13303
13303
+
sources."@babel/plugin-proposal-numeric-separator-7.12.13"
13304
13304
+
sources."@babel/plugin-proposal-object-rest-spread-7.12.13"
13305
13305
+
sources."@babel/plugin-proposal-optional-catch-binding-7.12.13"
13306
13306
+
sources."@babel/plugin-proposal-optional-chaining-7.12.13"
13307
13307
+
sources."@babel/plugin-proposal-private-methods-7.12.13"
13308
13308
+
sources."@babel/plugin-proposal-unicode-property-regex-7.12.13"
13477
13309
sources."@babel/plugin-syntax-async-generators-7.8.4"
13478
13478
-
sources."@babel/plugin-syntax-class-properties-7.12.1"
13310
13310
+
sources."@babel/plugin-syntax-class-properties-7.12.13"
13479
13311
sources."@babel/plugin-syntax-dynamic-import-7.8.3"
13480
13312
sources."@babel/plugin-syntax-export-namespace-from-7.8.3"
13481
13313
sources."@babel/plugin-syntax-json-strings-7.8.3"
···
13485
13317
sources."@babel/plugin-syntax-object-rest-spread-7.8.3"
13486
13318
sources."@babel/plugin-syntax-optional-catch-binding-7.8.3"
13487
13319
sources."@babel/plugin-syntax-optional-chaining-7.8.3"
13488
13488
-
sources."@babel/plugin-syntax-top-level-await-7.12.1"
13489
13489
-
sources."@babel/plugin-transform-arrow-functions-7.12.1"
13490
13490
-
sources."@babel/plugin-transform-async-to-generator-7.12.1"
13491
13491
-
sources."@babel/plugin-transform-block-scoped-functions-7.12.1"
13492
13492
-
sources."@babel/plugin-transform-block-scoping-7.12.1"
13493
13493
-
sources."@babel/plugin-transform-classes-7.12.1"
13494
13494
-
sources."@babel/plugin-transform-computed-properties-7.12.1"
13495
13495
-
sources."@babel/plugin-transform-destructuring-7.12.1"
13496
13496
-
sources."@babel/plugin-transform-dotall-regex-7.12.1"
13497
13497
-
sources."@babel/plugin-transform-duplicate-keys-7.12.1"
13498
13498
-
sources."@babel/plugin-transform-exponentiation-operator-7.12.1"
13499
13499
-
sources."@babel/plugin-transform-for-of-7.12.1"
13500
13500
-
sources."@babel/plugin-transform-function-name-7.12.1"
13501
13501
-
sources."@babel/plugin-transform-literals-7.12.1"
13502
13502
-
sources."@babel/plugin-transform-member-expression-literals-7.12.1"
13503
13503
-
sources."@babel/plugin-transform-modules-amd-7.12.1"
13504
13504
-
sources."@babel/plugin-transform-modules-commonjs-7.12.1"
13505
13505
-
sources."@babel/plugin-transform-modules-systemjs-7.12.1"
13506
13506
-
sources."@babel/plugin-transform-modules-umd-7.12.1"
13507
13507
-
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.1"
13508
13508
-
sources."@babel/plugin-transform-new-target-7.12.1"
13509
13509
-
sources."@babel/plugin-transform-object-super-7.12.1"
13510
13510
-
sources."@babel/plugin-transform-parameters-7.12.1"
13511
13511
-
sources."@babel/plugin-transform-property-literals-7.12.1"
13512
13512
-
sources."@babel/plugin-transform-regenerator-7.12.1"
13513
13513
-
sources."@babel/plugin-transform-reserved-words-7.12.1"
13514
13514
-
sources."@babel/plugin-transform-runtime-7.12.1"
13515
13515
-
sources."@babel/plugin-transform-shorthand-properties-7.12.1"
13516
13516
-
sources."@babel/plugin-transform-spread-7.12.1"
13517
13517
-
sources."@babel/plugin-transform-sticky-regex-7.12.7"
13518
13518
-
sources."@babel/plugin-transform-template-literals-7.12.1"
13519
13519
-
sources."@babel/plugin-transform-typeof-symbol-7.12.1"
13520
13520
-
sources."@babel/plugin-transform-unicode-escapes-7.12.1"
13521
13521
-
sources."@babel/plugin-transform-unicode-regex-7.12.1"
13522
13522
-
sources."@babel/preset-env-7.12.7"
13320
13320
+
sources."@babel/plugin-syntax-top-level-await-7.12.13"
13321
13321
+
sources."@babel/plugin-transform-arrow-functions-7.12.13"
13322
13322
+
sources."@babel/plugin-transform-async-to-generator-7.12.13"
13323
13323
+
sources."@babel/plugin-transform-block-scoped-functions-7.12.13"
13324
13324
+
sources."@babel/plugin-transform-block-scoping-7.12.13"
13325
13325
+
sources."@babel/plugin-transform-classes-7.12.13"
13326
13326
+
sources."@babel/plugin-transform-computed-properties-7.12.13"
13327
13327
+
sources."@babel/plugin-transform-destructuring-7.12.13"
13328
13328
+
sources."@babel/plugin-transform-dotall-regex-7.12.13"
13329
13329
+
sources."@babel/plugin-transform-duplicate-keys-7.12.13"
13330
13330
+
sources."@babel/plugin-transform-exponentiation-operator-7.12.13"
13331
13331
+
sources."@babel/plugin-transform-for-of-7.12.13"
13332
13332
+
sources."@babel/plugin-transform-function-name-7.12.13"
13333
13333
+
sources."@babel/plugin-transform-literals-7.12.13"
13334
13334
+
sources."@babel/plugin-transform-member-expression-literals-7.12.13"
13335
13335
+
sources."@babel/plugin-transform-modules-amd-7.12.13"
13336
13336
+
sources."@babel/plugin-transform-modules-commonjs-7.12.13"
13337
13337
+
sources."@babel/plugin-transform-modules-systemjs-7.12.13"
13338
13338
+
sources."@babel/plugin-transform-modules-umd-7.12.13"
13339
13339
+
sources."@babel/plugin-transform-named-capturing-groups-regex-7.12.13"
13340
13340
+
sources."@babel/plugin-transform-new-target-7.12.13"
13341
13341
+
sources."@babel/plugin-transform-object-super-7.12.13"
13342
13342
+
sources."@babel/plugin-transform-parameters-7.12.13"
13343
13343
+
sources."@babel/plugin-transform-property-literals-7.12.13"
13344
13344
+
sources."@babel/plugin-transform-regenerator-7.12.13"
13345
13345
+
sources."@babel/plugin-transform-reserved-words-7.12.13"
13346
13346
+
sources."@babel/plugin-transform-runtime-7.12.10"
13347
13347
+
sources."@babel/plugin-transform-shorthand-properties-7.12.13"
13348
13348
+
sources."@babel/plugin-transform-spread-7.12.13"
13349
13349
+
sources."@babel/plugin-transform-sticky-regex-7.12.13"
13350
13350
+
sources."@babel/plugin-transform-template-literals-7.12.13"
13351
13351
+
sources."@babel/plugin-transform-typeof-symbol-7.12.13"
13352
13352
+
sources."@babel/plugin-transform-unicode-escapes-7.12.13"
13353
13353
+
sources."@babel/plugin-transform-unicode-regex-7.12.13"
13354
13354
+
sources."@babel/preset-env-7.12.10"
13523
13355
sources."@babel/preset-modules-0.1.4"
13524
13356
sources."@babel/runtime-7.12.5"
13525
13525
-
sources."@babel/template-7.12.7"
13526
13526
-
sources."@babel/traverse-7.12.9"
13527
13527
-
sources."@babel/types-7.12.7"
13357
13357
+
sources."@babel/template-7.12.13"
13358
13358
+
sources."@babel/traverse-7.12.13"
13359
13359
+
sources."@babel/types-7.12.13"
13528
13360
sources."@hapi/address-2.1.4"
13529
13361
sources."@hapi/bourne-1.3.2"
13530
13362
sources."@hapi/hoek-8.5.1"
···
13535
13367
sources."@types/anymatch-1.3.1"
13536
13368
sources."@types/glob-7.1.3"
13537
13369
sources."@types/html-minifier-terser-5.1.1"
13538
13538
-
sources."@types/http-proxy-1.17.4"
13539
13539
-
sources."@types/json-schema-7.0.6"
13370
13370
+
sources."@types/http-proxy-1.17.5"
13371
13371
+
sources."@types/json-schema-7.0.7"
13540
13372
sources."@types/minimatch-3.0.3"
13541
13541
-
sources."@types/node-14.14.10"
13373
13373
+
sources."@types/node-14.14.25"
13542
13374
sources."@types/parse-json-4.0.0"
13543
13375
sources."@types/q-1.5.4"
13544
13376
sources."@types/source-list-map-0.1.2"
···
13548
13380
sources."source-map-0.6.1"
13549
13381
];
13550
13382
})
13551
13551
-
(sources."@types/webpack-4.41.25" // {
13383
13383
+
(sources."@types/webpack-4.41.26" // {
13552
13384
dependencies = [
13553
13385
sources."source-map-0.6.1"
13554
13386
];
13555
13387
})
13556
13556
-
(sources."@types/webpack-sources-2.0.0" // {
13388
13388
+
(sources."@types/webpack-sources-2.1.0" // {
13557
13389
dependencies = [
13558
13390
sources."source-map-0.7.3"
13559
13391
];
···
13628
13460
sources."async-limiter-1.0.1"
13629
13461
sources."asynckit-0.4.0"
13630
13462
sources."atob-2.1.2"
13631
13631
-
sources."autoprefixer-10.0.4"
13463
13463
+
sources."autoprefixer-10.1.0"
13632
13464
sources."aws-sign2-0.7.0"
13633
13465
sources."aws4-1.11.0"
13634
13466
sources."babel-extract-comments-1.0.0"
···
13657
13489
sources."batch-0.6.1"
13658
13490
sources."bcrypt-pbkdf-1.0.2"
13659
13491
sources."big.js-5.2.2"
13660
13660
-
sources."binary-0.3.0"
13661
13661
-
sources."binary-extensions-2.1.0"
13492
13492
+
sources."binary-extensions-2.2.0"
13662
13493
sources."bindings-1.5.0"
13663
13663
-
sources."binwrap-0.2.2"
13664
13494
sources."bluebird-3.7.2"
13665
13495
sources."bn.js-5.1.3"
13666
13496
(sources."body-parser-1.19.0" // {
···
13691
13521
];
13692
13522
})
13693
13523
sources."browserify-zlib-0.2.0"
13694
13694
-
sources."browserslist-4.14.7"
13524
13524
+
sources."browserslist-4.16.3"
13695
13525
sources."buffer-4.9.2"
13696
13526
sources."buffer-from-1.1.1"
13697
13527
sources."buffer-indexof-1.1.1"
13698
13528
sources."buffer-xor-1.0.3"
13699
13699
-
sources."buffers-0.1.1"
13700
13529
sources."builtin-status-codes-3.0.0"
13701
13530
sources."bytes-3.0.0"
13702
13531
sources."cacache-12.0.4"
13703
13532
sources."cache-base-1.0.1"
13704
13704
-
sources."call-bind-1.0.0"
13533
13533
+
sources."call-bind-1.0.2"
13705
13534
sources."call-me-maybe-1.0.1"
13706
13535
sources."caller-callsite-2.0.0"
13707
13536
sources."caller-path-2.0.0"
13708
13537
sources."callsites-2.0.0"
13709
13709
-
sources."camel-case-4.1.1"
13538
13538
+
sources."camel-case-4.1.2"
13710
13539
sources."camelcase-5.3.1"
13711
13540
sources."caniuse-api-3.0.0"
13712
13712
-
sources."caniuse-lite-1.0.30001161"
13541
13541
+
sources."caniuse-lite-1.0.30001185"
13713
13542
sources."case-sensitive-paths-webpack-plugin-2.3.0"
13714
13543
sources."caseless-0.12.0"
13715
13715
-
sources."chainsaw-0.1.0"
13716
13544
(sources."chalk-2.4.2" // {
13717
13545
dependencies = [
13718
13546
sources."escape-string-regexp-1.0.5"
13719
13547
];
13720
13548
})
13721
13549
sources."chardet-0.7.0"
13722
13722
-
(sources."chokidar-3.4.3" // {
13550
13550
+
(sources."chokidar-3.5.1" // {
13723
13551
dependencies = [
13724
13552
sources."glob-parent-5.1.1"
13725
13553
];
13726
13554
})
13727
13555
sources."chownr-1.1.4"
13728
13728
-
sources."chrome-trace-event-1.0.2"
13556
13556
+
(sources."chrome-trace-event-1.0.2" // {
13557
13557
+
dependencies = [
13558
13558
+
sources."tslib-1.14.1"
13559
13559
+
];
13560
13560
+
})
13729
13561
sources."cipher-base-1.0.4"
13730
13562
(sources."class-utils-0.3.6" // {
13731
13563
dependencies = [
···
13750
13582
];
13751
13583
})
13752
13584
sources."cli-cursor-2.1.0"
13753
13753
-
sources."cli-table-0.3.1"
13585
13585
+
sources."cli-table-0.3.4"
13754
13586
sources."cli-width-2.2.1"
13755
13587
(sources."cliui-3.2.0" // {
13756
13588
dependencies = [
13589
13589
+
sources."is-fullwidth-code-point-1.0.0"
13590
13590
+
sources."string-width-1.0.2"
13757
13591
sources."strip-ansi-3.0.1"
13758
13592
];
13759
13593
})
···
13765
13599
sources."color-name-1.1.3"
13766
13600
sources."color-string-1.5.4"
13767
13601
sources."colorette-1.2.1"
13768
13768
-
sources."colors-1.0.3"
13602
13602
+
sources."colors-1.4.0"
13769
13603
sources."combined-stream-1.0.8"
13770
13604
sources."commander-4.1.1"
13771
13605
sources."common-tags-1.8.0"
···
13802
13636
];
13803
13637
})
13804
13638
sources."core-js-2.6.12"
13805
13805
-
(sources."core-js-compat-3.8.0" // {
13639
13639
+
(sources."core-js-compat-3.8.3" // {
13806
13640
dependencies = [
13807
13641
sources."semver-7.0.0"
13808
13642
];
···
13824
13658
dependencies = [
13825
13659
sources."camelcase-6.2.0"
13826
13660
sources."loader-utils-2.0.0"
13827
13827
-
sources."semver-7.3.2"
13661
13661
+
sources."lru-cache-6.0.0"
13662
13662
+
sources."semver-7.3.4"
13663
13663
+
sources."yallist-4.0.0"
13828
13664
];
13829
13665
})
13830
13830
-
sources."css-select-1.2.0"
13666
13666
+
sources."css-select-2.1.0"
13831
13667
sources."css-select-base-adapter-0.1.1"
13832
13668
(sources."css-tree-1.0.0-alpha.37" // {
13833
13669
dependencies = [
13834
13670
sources."source-map-0.6.1"
13835
13671
];
13836
13672
})
13837
13837
-
sources."css-what-2.1.3"
13673
13673
+
sources."css-what-3.4.2"
13838
13674
sources."cssesc-3.0.0"
13839
13675
sources."cssnano-4.1.10"
13840
13676
sources."cssnano-preset-default-4.0.7"
···
13852
13688
sources."cycle-1.0.3"
13853
13689
sources."cyclist-1.0.1"
13854
13690
sources."dashdash-1.14.1"
13855
13855
-
sources."debug-4.3.1"
13691
13691
+
sources."debug-4.3.2"
13856
13692
sources."decamelize-1.2.0"
13857
13693
sources."decode-uri-component-0.2.0"
13858
13694
sources."deep-equal-0.2.2"
···
13891
13727
sources."dom-converter-0.2.0"
13892
13728
(sources."dom-serializer-0.2.2" // {
13893
13729
dependencies = [
13894
13894
-
sources."domelementtype-2.0.2"
13730
13730
+
sources."domelementtype-2.1.0"
13895
13731
];
13896
13732
})
13897
13733
sources."domain-browser-1.2.0"
13898
13734
sources."domelementtype-1.3.1"
13899
13735
sources."domhandler-2.4.2"
13900
13900
-
sources."domutils-1.5.1"
13901
13901
-
sources."dot-case-3.0.3"
13736
13736
+
sources."domutils-1.7.0"
13737
13737
+
sources."dot-case-3.0.4"
13902
13738
sources."dot-prop-5.3.0"
13903
13739
sources."dotenv-8.2.0"
13904
13740
sources."duplexer-0.1.2"
13905
13741
sources."duplexify-3.7.1"
13906
13742
sources."ecc-jsbn-0.1.2"
13907
13743
sources."ee-first-1.1.1"
13908
13908
-
sources."electron-to-chromium-1.3.610"
13909
13909
-
(sources."elliptic-6.5.3" // {
13744
13744
+
sources."electron-to-chromium-1.3.657"
13745
13745
+
(sources."elliptic-6.5.4" // {
13910
13746
dependencies = [
13911
13747
sources."bn.js-4.11.9"
13912
13748
];
13913
13749
})
13914
13914
-
sources."elm-0.19.1-3"
13750
13750
+
sources."elm-0.19.1-5"
13915
13751
sources."elm-asset-webpack-loader-1.1.2"
13916
13916
-
sources."elm-hot-1.1.5"
13752
13752
+
sources."elm-hot-1.1.6"
13917
13753
sources."elm-hot-webpack-loader-1.1.7"
13918
13918
-
(sources."elm-test-0.19.1-revision4" // {
13754
13754
+
(sources."elm-test-0.19.1-revision6" // {
13919
13755
dependencies = [
13920
13756
sources."ansi-styles-4.3.0"
13921
13921
-
sources."chalk-3.0.0"
13757
13757
+
sources."chalk-4.1.0"
13922
13758
sources."color-convert-2.0.1"
13923
13759
sources."color-name-1.1.4"
13924
13924
-
sources."fs-extra-8.1.0"
13760
13760
+
sources."commander-7.0.0"
13925
13761
sources."has-flag-4.0.0"
13762
13762
+
sources."rimraf-3.0.2"
13926
13763
sources."supports-color-7.2.0"
13927
13764
];
13928
13765
})
13766
13766
+
sources."elm-tooling-1.1.0"
13929
13767
sources."elm-webpack-loader-6.0.1"
13930
13930
-
sources."elmi-to-json-1.3.0"
13931
13931
-
sources."emoji-regex-7.0.3"
13768
13768
+
sources."emoji-regex-8.0.0"
13932
13769
sources."emojis-list-3.0.0"
13933
13770
sources."encodeurl-1.0.2"
13934
13771
sources."end-of-stream-1.4.4"
13935
13935
-
(sources."enhanced-resolve-4.3.0" // {
13772
13772
+
(sources."enhanced-resolve-4.5.0" // {
13936
13773
dependencies = [
13937
13774
sources."memory-fs-0.5.0"
13938
13775
];
13939
13776
})
13940
13940
-
sources."entities-2.1.0"
13941
13941
-
sources."errno-0.1.7"
13777
13777
+
sources."entities-2.2.0"
13778
13778
+
sources."errno-0.1.8"
13942
13779
sources."error-ex-1.3.2"
13943
13943
-
sources."es-abstract-1.18.0-next.1"
13780
13780
+
sources."es-abstract-1.18.0-next.2"
13944
13781
sources."es-to-primitive-1.2.1"
13945
13782
sources."escalade-3.1.1"
13946
13783
sources."escape-html-1.0.3"
···
14067
13904
sources."find-up-4.1.0"
14068
13905
sources."firstline-1.3.1"
14069
13906
sources."flush-write-stream-1.1.1"
14070
14070
-
sources."follow-redirects-1.13.0"
13907
13907
+
sources."follow-redirects-1.13.2"
14071
13908
sources."for-in-1.0.2"
14072
13909
sources."forever-agent-0.6.1"
14073
13910
sources."form-data-2.3.3"
14074
13911
sources."forwarded-0.1.2"
13912
13912
+
sources."fraction.js-4.0.13"
14075
13913
sources."fragment-cache-0.2.1"
14076
13914
sources."fresh-0.5.2"
14077
13915
sources."from2-2.3.0"
14078
13916
sources."fs-extra-6.0.1"
14079
14079
-
sources."fs-minipass-1.2.7"
14080
13917
sources."fs-readdir-recursive-1.1.0"
14081
13918
sources."fs-write-stream-atomic-1.0.10"
14082
13919
sources."fs.realpath-1.0.0"
14083
14083
-
sources."fsevents-2.1.3"
13920
13920
+
sources."fsevents-2.3.2"
14084
13921
sources."function-bind-1.1.1"
14085
13922
sources."gensync-1.0.0-beta.2"
14086
13923
sources."get-caller-file-1.0.3"
14087
14087
-
sources."get-intrinsic-1.0.1"
13924
13924
+
sources."get-intrinsic-1.1.1"
14088
13925
sources."get-own-enumerable-property-symbols-3.0.2"
14089
13926
sources."get-stream-4.1.0"
14090
13927
sources."get-value-2.0.6"
···
14109
13946
sources."slash-1.0.0"
14110
13947
];
14111
13948
})
14112
14112
-
sources."graceful-fs-4.2.4"
13949
13949
+
sources."graceful-fs-4.2.5"
14113
13950
(sources."gzip-size-5.0.0" // {
14114
13951
dependencies = [
14115
13952
sources."pify-3.0.0"
···
14148
13985
sources."hsl-regex-1.0.0"
14149
13986
sources."hsla-regex-1.0.0"
14150
13987
sources."html-comment-regex-1.1.2"
14151
14151
-
sources."html-entities-1.3.1"
13988
13988
+
sources."html-entities-1.4.0"
14152
13989
sources."html-minifier-terser-5.1.1"
14153
13990
sources."html-webpack-plugin-4.5.0"
14154
13991
(sources."htmlparser2-3.10.1" // {
···
14163
14000
sources."inherits-2.0.3"
14164
14001
];
14165
14002
})
14166
14166
-
sources."http-parser-js-0.5.2"
14003
14003
+
sources."http-parser-js-0.5.3"
14167
14004
sources."http-proxy-1.18.1"
14168
14005
sources."http-proxy-middleware-0.21.0"
14169
14006
sources."http-signature-1.2.0"
···
14190
14027
sources."infer-owner-1.0.4"
14191
14028
sources."inflight-1.0.6"
14192
14029
sources."inherits-2.0.4"
14193
14193
-
sources."ini-1.3.5"
14030
14030
+
sources."ini-1.3.8"
14194
14031
(sources."inquirer-6.2.0" // {
14195
14032
dependencies = [
14196
14033
sources."ansi-regex-3.0.0"
···
14207
14044
sources."ipaddr.js-1.9.1"
14208
14045
sources."is-absolute-url-2.1.0"
14209
14046
sources."is-accessor-descriptor-1.0.0"
14210
14210
-
sources."is-arguments-1.0.4"
14047
14047
+
sources."is-arguments-1.1.0"
14211
14048
sources."is-arrayish-0.2.1"
14212
14049
sources."is-binary-path-2.1.0"
14213
14050
sources."is-buffer-1.1.6"
14214
14214
-
sources."is-callable-1.2.2"
14051
14051
+
sources."is-callable-1.2.3"
14215
14052
sources."is-color-stop-1.1.0"
14216
14053
sources."is-core-module-2.2.0"
14217
14054
sources."is-data-descriptor-1.0.0"
···
14220
14057
sources."is-directory-0.3.1"
14221
14058
sources."is-extendable-0.1.1"
14222
14059
sources."is-extglob-2.1.1"
14223
14223
-
sources."is-fullwidth-code-point-1.0.0"
14060
14060
+
sources."is-fullwidth-code-point-3.0.0"
14224
14061
sources."is-glob-4.0.1"
14225
14225
-
sources."is-negative-zero-2.0.0"
14062
14062
+
sources."is-negative-zero-2.0.1"
14226
14063
sources."is-number-7.0.0"
14227
14064
sources."is-obj-2.0.0"
14228
14065
sources."is-path-cwd-2.2.0"
···
14230
14067
sources."is-path-inside-2.1.0"
14231
14068
sources."is-plain-obj-1.1.0"
14232
14069
sources."is-plain-object-2.0.4"
14233
14233
-
sources."is-regex-1.1.1"
14070
14070
+
sources."is-regex-1.1.2"
14234
14071
sources."is-regexp-1.0.0"
14235
14072
sources."is-resolvable-1.1.0"
14236
14073
sources."is-root-2.0.0"
···
14246
14083
sources."isobject-3.0.1"
14247
14084
sources."isstream-0.1.2"
14248
14085
sources."js-tokens-4.0.0"
14249
14249
-
sources."js-yaml-3.14.0"
14086
14086
+
sources."js-yaml-3.14.1"
14250
14087
sources."jsbn-0.1.1"
14251
14088
sources."jsesc-2.5.2"
14252
14089
sources."json-parse-better-errors-1.0.2"
···
14256
14093
sources."json-stable-stringify-1.0.1"
14257
14094
sources."json-stringify-safe-5.0.1"
14258
14095
sources."json3-3.3.3"
14259
14259
-
sources."json5-2.1.3"
14096
14096
+
sources."json5-2.2.0"
14260
14097
sources."jsonfile-4.0.0"
14261
14098
sources."jsonify-0.0.0"
14262
14099
sources."jsprim-1.4.1"
···
14286
14123
sources."lodash.templatesettings-4.2.0"
14287
14124
sources."lodash.uniq-4.5.0"
14288
14125
sources."loglevel-1.7.1"
14289
14289
-
sources."lower-case-2.0.1"
14126
14126
+
sources."lower-case-2.0.2"
14290
14127
sources."lru-cache-5.1.1"
14291
14128
sources."make-dir-2.1.0"
14292
14129
sources."map-cache-0.2.2"
···
14305
14142
];
14306
14143
})
14307
14144
sources."mime-1.6.0"
14308
14308
-
sources."mime-db-1.44.0"
14309
14309
-
sources."mime-types-2.1.27"
14145
14145
+
sources."mime-db-1.45.0"
14146
14146
+
sources."mime-types-2.1.28"
14310
14147
sources."mimic-fn-1.2.0"
14311
14148
(sources."mini-css-extract-plugin-0.12.0" // {
14312
14149
dependencies = [
···
14317
14154
sources."minimalistic-crypto-utils-1.0.1"
14318
14155
sources."minimatch-3.0.4"
14319
14156
sources."minimist-1.2.5"
14320
14320
-
sources."minipass-2.9.0"
14321
14321
-
sources."minizlib-1.3.3"
14322
14157
sources."mississippi-3.0.0"
14323
14158
(sources."mixin-deep-1.3.2" // {
14324
14159
dependencies = [
···
14330
14165
sources."ms-2.1.2"
14331
14166
sources."multicast-dns-6.2.3"
14332
14167
sources."multicast-dns-service-types-1.1.0"
14333
14333
-
sources."murmur-hash-js-1.0.0"
14334
14334
-
sources."mustache-3.2.1"
14335
14168
sources."mute-stream-0.0.8"
14336
14169
sources."nan-2.14.2"
14337
14337
-
sources."nanoid-3.1.18"
14170
14170
+
sources."nanoid-3.1.20"
14338
14171
sources."nanomatch-1.2.13"
14339
14172
sources."ncp-1.0.1"
14340
14173
sources."negotiator-0.6.2"
14341
14174
sources."neo-async-2.6.2"
14342
14175
sources."nice-try-1.0.5"
14343
14343
-
sources."no-case-3.0.3"
14176
14176
+
sources."no-case-3.0.4"
14344
14177
(sources."node-elm-compiler-5.0.5" // {
14345
14178
dependencies = [
14346
14179
sources."cross-spawn-6.0.5"
···
14356
14189
sources."punycode-1.4.1"
14357
14190
];
14358
14191
})
14359
14359
-
sources."node-releases-1.1.67"
14192
14192
+
sources."node-releases-1.1.70"
14360
14193
sources."normalize-package-data-2.5.0"
14361
14194
sources."normalize-path-3.0.0"
14362
14195
sources."normalize-range-0.1.2"
···
14367
14200
];
14368
14201
})
14369
14202
sources."nth-check-1.0.2"
14370
14370
-
sources."num2fraction-1.2.2"
14371
14203
sources."number-is-nan-1.0.1"
14372
14204
sources."oauth-sign-0.9.0"
14373
14205
sources."object-assign-4.1.1"
···
14384
14216
sources."kind-of-3.2.2"
14385
14217
];
14386
14218
})
14387
14387
-
sources."object-inspect-1.8.0"
14219
14219
+
sources."object-inspect-1.9.0"
14388
14220
sources."object-is-1.1.4"
14389
14221
sources."object-keys-1.1.1"
14390
14222
sources."object-visit-1.0.1"
···
14412
14244
sources."p-try-2.2.0"
14413
14245
sources."pako-1.0.11"
14414
14246
sources."parallel-transform-1.2.0"
14415
14415
-
sources."param-case-3.0.3"
14247
14247
+
sources."param-case-3.0.4"
14416
14248
(sources."parent-module-1.0.1" // {
14417
14249
dependencies = [
14418
14250
sources."callsites-3.1.0"
···
14422
14254
sources."parse-json-4.0.0"
14423
14255
sources."parse-passwd-1.0.0"
14424
14256
sources."parseurl-1.3.3"
14425
14425
-
sources."pascal-case-3.1.1"
14257
14257
+
sources."pascal-case-3.1.2"
14426
14258
sources."pascalcase-0.1.1"
14427
14259
sources."path-browserify-0.0.1"
14428
14260
sources."path-dirname-1.0.2"
···
14488
14320
(sources."postcss-loader-4.1.0" // {
14489
14321
dependencies = [
14490
14322
sources."cosmiconfig-7.0.0"
14491
14491
-
sources."import-fresh-3.2.2"
14323
14323
+
sources."import-fresh-3.3.0"
14492
14324
sources."loader-utils-2.0.0"
14493
14493
-
sources."parse-json-5.1.0"
14325
14325
+
sources."lru-cache-6.0.0"
14326
14326
+
sources."parse-json-5.2.0"
14494
14327
sources."path-type-4.0.0"
14495
14328
sources."resolve-from-4.0.0"
14496
14329
sources."schema-utils-3.0.0"
14497
14497
-
sources."semver-7.3.2"
14330
14330
+
sources."semver-7.3.4"
14331
14331
+
sources."yallist-4.0.0"
14498
14332
];
14499
14333
})
14500
14334
(sources."postcss-merge-longhand-4.0.11" // {
···
14586
14420
})
14587
14421
(sources."postcss-safe-parser-5.0.2" // {
14588
14422
dependencies = [
14589
14589
-
sources."postcss-8.1.10"
14423
14423
+
sources."postcss-8.2.4"
14590
14424
sources."source-map-0.6.1"
14591
14425
];
14592
14426
})
···
14599
14433
sources."postcss-unique-selectors-4.0.1"
14600
14434
sources."postcss-value-parser-4.1.0"
14601
14435
sources."prepend-http-1.0.4"
14602
14602
-
sources."pretty-bytes-5.4.1"
14436
14436
+
sources."pretty-bytes-5.5.0"
14603
14437
sources."pretty-error-2.1.2"
14604
14438
sources."process-0.11.10"
14605
14439
sources."process-nextick-args-2.0.1"
14606
14440
sources."promise-8.1.0"
14607
14441
sources."promise-inflight-1.0.1"
14608
14608
-
(sources."prompt-1.0.0" // {
14609
14609
-
dependencies = [
14610
14610
-
sources."colors-1.4.0"
14611
14611
-
];
14612
14612
-
})
14442
14442
+
sources."prompt-1.0.0"
14613
14443
sources."proxy-addr-2.0.6"
14614
14444
sources."prr-1.0.1"
14615
14445
sources."pseudomap-1.0.2"
···
14692
14522
sources."regenerator-runtime-0.13.7"
14693
14523
sources."regenerator-transform-0.14.5"
14694
14524
sources."regex-not-1.0.2"
14695
14695
-
(sources."regexp.prototype.flags-1.3.0" // {
14696
14696
-
dependencies = [
14697
14697
-
sources."es-abstract-1.17.7"
14698
14698
-
];
14699
14699
-
})
14525
14525
+
sources."regexp.prototype.flags-1.3.1"
14700
14526
sources."regexpu-core-4.7.1"
14701
14527
sources."regjsgen-0.5.2"
14702
14702
-
(sources."regjsparser-0.6.4" // {
14528
14528
+
(sources."regjsparser-0.6.7" // {
14703
14529
dependencies = [
14704
14530
sources."jsesc-0.5.0"
14705
14531
];
14706
14532
})
14707
14533
sources."relateurl-0.2.7"
14708
14534
sources."remove-trailing-separator-1.1.0"
14709
14709
-
(sources."renderkid-2.0.4" // {
14535
14535
+
(sources."renderkid-2.0.5" // {
14710
14536
dependencies = [
14711
14537
sources."strip-ansi-3.0.1"
14712
14538
];
···
14714
14540
sources."repeat-element-1.1.3"
14715
14541
sources."repeat-string-1.6.1"
14716
14542
sources."request-2.88.2"
14717
14717
-
sources."request-promise-4.2.6"
14718
14718
-
sources."request-promise-core-1.1.4"
14719
14543
sources."require-directory-2.1.1"
14720
14544
sources."require-main-filename-1.0.1"
14721
14545
sources."requires-port-1.0.0"
···
14734
14558
sources."ripemd160-2.0.2"
14735
14559
sources."run-async-2.4.1"
14736
14560
sources."run-queue-1.0.3"
14737
14737
-
sources."rxjs-6.6.3"
14561
14561
+
(sources."rxjs-6.6.3" // {
14562
14562
+
dependencies = [
14563
14563
+
sources."tslib-1.14.1"
14564
14564
+
];
14565
14565
+
})
14738
14566
sources."safe-buffer-5.1.2"
14739
14567
sources."safe-regex-1.1.0"
14740
14568
sources."safer-buffer-2.1.2"
···
14834
14662
sources."source-map-0.6.1"
14835
14663
];
14836
14664
})
14837
14837
-
sources."source-map-url-0.4.0"
14665
14665
+
sources."source-map-url-0.4.1"
14838
14666
sources."spdx-correct-3.1.1"
14839
14667
sources."spdx-exceptions-2.3.0"
14840
14668
sources."spdx-expression-parse-3.0.1"
···
14870
14698
];
14871
14699
})
14872
14700
sources."statuses-1.5.0"
14873
14873
-
sources."stealthy-require-1.1.1"
14874
14701
sources."stream-browserify-2.0.2"
14875
14702
sources."stream-each-1.2.3"
14876
14703
sources."stream-http-2.8.3"
14877
14704
sources."stream-shift-1.0.1"
14878
14705
sources."strict-uri-encode-1.1.0"
14879
14706
sources."string-replace-loader-2.3.0"
14880
14880
-
(sources."string-width-1.0.2" // {
14881
14881
-
dependencies = [
14882
14882
-
sources."strip-ansi-3.0.1"
14883
14883
-
];
14884
14884
-
})
14707
14707
+
sources."string-width-4.2.0"
14885
14708
sources."string.prototype.trimend-1.0.3"
14886
14709
sources."string.prototype.trimstart-1.0.3"
14887
14710
sources."string_decoder-1.1.1"
···
14909
14732
];
14910
14733
})
14911
14734
sources."supports-color-5.5.0"
14912
14912
-
(sources."svgo-1.3.2" // {
14913
14913
-
dependencies = [
14914
14914
-
sources."css-select-2.1.0"
14915
14915
-
sources."css-what-3.4.2"
14916
14916
-
sources."domutils-1.7.0"
14917
14917
-
];
14918
14918
-
})
14735
14735
+
sources."svgo-1.3.2"
14919
14736
sources."tapable-1.1.3"
14920
14920
-
sources."tar-4.4.13"
14921
14737
(sources."temp-0.9.4" // {
14922
14738
dependencies = [
14923
14739
sources."rimraf-2.6.3"
···
14959
14775
sources."to-regex-range-5.0.1"
14960
14776
sources."toidentifier-1.0.0"
14961
14777
sources."tough-cookie-2.5.0"
14962
14962
-
sources."traverse-0.3.9"
14963
14963
-
sources."tslib-1.14.1"
14778
14778
+
sources."tslib-2.1.0"
14964
14779
sources."tty-browserify-0.0.0"
14965
14780
sources."tunnel-agent-0.6.0"
14966
14781
sources."tweetnacl-0.14.5"
···
15017
14832
sources."has-values-0.1.4"
15018
14833
];
15019
14834
})
15020
15020
-
sources."unzip-stream-0.3.1"
15021
14835
sources."upath-1.2.0"
15022
15022
-
sources."uri-js-4.4.0"
14836
14836
+
sources."uri-js-4.4.1"
15023
14837
sources."urix-0.1.0"
15024
14838
(sources."url-0.11.0" // {
15025
14839
dependencies = [
···
15049
14863
sources."vary-1.1.2"
15050
14864
sources."vendors-1.0.4"
15051
14865
sources."verror-1.10.0"
15052
15052
-
sources."vfile-location-3.2.0"
15053
14866
sources."vm-browserify-1.1.2"
15054
14867
sources."watchpack-1.7.5"
15055
14868
(sources."watchpack-chokidar2-2.0.1" // {
···
15083
14896
sources."to-regex-range-2.1.1"
15084
14897
];
15085
14898
})
15086
15086
-
(sources."webpack-dev-middleware-3.7.2" // {
14899
14899
+
(sources."webpack-dev-middleware-3.7.3" // {
15087
14900
dependencies = [
15088
15088
-
sources."mime-2.4.6"
14901
14901
+
sources."mime-2.5.0"
15089
14902
];
15090
14903
})
15091
14904
(sources."webpack-dev-server-3.11.0" // {
···
15100
14913
sources."strip-ansi-5.2.0"
15101
14914
];
15102
14915
})
14916
14916
+
sources."emoji-regex-7.0.3"
15103
14917
sources."extend-shallow-2.0.1"
15104
14918
sources."fill-range-4.0.0"
15105
14919
sources."find-up-3.0.0"
···
15158
14972
(sources."winston-2.1.1" // {
15159
14973
dependencies = [
15160
14974
sources."async-1.0.0"
14975
14975
+
sources."colors-1.0.3"
15161
14976
sources."pkginfo-0.3.1"
15162
14977
];
15163
14978
})
···
15184
14999
sources."worker-farm-1.7.0"
15185
15000
(sources."wrap-ansi-2.1.0" // {
15186
15001
dependencies = [
15002
15002
+
sources."is-fullwidth-code-point-1.0.0"
15003
15003
+
sources."string-width-1.0.2"
15187
15004
sources."strip-ansi-3.0.1"
15188
15005
];
15189
15006
})
···
15191
15008
sources."ws-6.2.1"
15192
15009
sources."xmlbuilder-15.1.1"
15193
15010
sources."xtend-4.0.2"
15194
15194
-
sources."y18n-4.0.0"
15011
15011
+
sources."y18n-4.0.1"
15195
15012
sources."yallist-3.1.1"
15196
15013
sources."yaml-1.10.0"
15197
15014
(sources."yargs-6.6.0" // {
15198
15015
dependencies = [
15199
15016
sources."camelcase-3.0.0"
15200
15200
-
sources."y18n-3.2.1"
15017
15017
+
sources."is-fullwidth-code-point-1.0.0"
15018
15018
+
sources."string-width-1.0.2"
15019
15019
+
sources."strip-ansi-3.0.1"
15020
15020
+
sources."y18n-3.2.2"
15201
15021
];
15202
15022
})
15203
15023
(sources."yargs-parser-4.2.1" // {
···
15231
15051
sources."chalk-4.1.0"
15232
15052
sources."color-convert-2.0.1"
15233
15053
sources."color-name-1.1.4"
15234
15234
-
sources."commander-6.2.0"
15054
15054
+
sources."commander-6.2.1"
15235
15055
sources."concat-map-0.0.1"
15236
15056
sources."cross-spawn-6.0.5"
15237
15057
sources."find-elm-dependencies-2.0.4"
···
15275
15095
elm-review = nodeEnv.buildNodePackage {
15276
15096
name = "elm-review";
15277
15097
packageName = "elm-review";
15278
15278
-
version = "2.3.3";
15098
15098
+
version = "2.4.1";
15279
15099
src = fetchurl {
15280
15280
-
url = "https://registry.npmjs.org/elm-review/-/elm-review-2.3.3.tgz";
15281
15281
-
sha512 = "1TiTnEXzpzACrc/JdB3tvmgNf5Qd0RyX8wbBqPPuc1aWvHHvPf6wi/ncz1gcILFAObr1zquCePkJkoW0uoZiBA==";
15100
15100
+
url = "https://registry.npmjs.org/elm-review/-/elm-review-2.4.1.tgz";
15101
15101
+
sha512 = "2nirbEpOvOCgVylf5l6mtu+IqM//8kBeuj6zELPHmzWtn7heZTC0AS7fUtLVtnkgw9Cws8oh4tFLmHgVALE+dw==";
15282
15102
};
15283
15103
dependencies = [
15284
15104
sources."@sindresorhus/is-2.1.1"
···
15286
15106
sources."@types/cacheable-request-6.0.1"
15287
15107
sources."@types/http-cache-semantics-4.0.0"
15288
15108
sources."@types/keyv-3.1.1"
15289
15289
-
sources."@types/node-14.14.10"
15109
15109
+
sources."@types/node-14.14.25"
15290
15110
sources."@types/responselike-1.0.0"
15291
15291
-
sources."ajv-6.12.6"
15292
15111
(sources."ansi-escapes-4.3.1" // {
15293
15112
dependencies = [
15294
15113
sources."type-fest-0.11.0"
···
15297
15116
sources."ansi-regex-5.0.0"
15298
15117
sources."ansi-styles-4.3.0"
15299
15118
sources."anymatch-3.1.1"
15300
15300
-
sources."asn1-0.2.4"
15301
15301
-
sources."assert-plus-1.0.0"
15302
15302
-
sources."asynckit-0.4.0"
15303
15119
sources."at-least-node-1.0.0"
15304
15304
-
sources."aws-sign2-0.7.0"
15305
15305
-
sources."aws4-1.11.0"
15306
15120
sources."balanced-match-1.0.0"
15307
15307
-
sources."bcrypt-pbkdf-1.0.2"
15308
15308
-
sources."binary-0.3.0"
15309
15309
-
sources."binary-extensions-2.1.0"
15310
15310
-
sources."binwrap-0.2.2"
15311
15311
-
sources."bluebird-3.7.2"
15121
15121
+
sources."binary-extensions-2.2.0"
15312
15122
sources."brace-expansion-1.1.11"
15313
15123
sources."braces-3.0.2"
15314
15314
-
sources."buffers-0.1.1"
15315
15124
sources."cacheable-lookup-2.0.1"
15316
15125
sources."cacheable-request-7.0.1"
15317
15317
-
sources."caseless-0.12.0"
15318
15318
-
sources."chainsaw-0.1.0"
15319
15126
sources."chalk-4.1.0"
15320
15320
-
sources."chokidar-3.4.3"
15321
15321
-
sources."chownr-1.1.4"
15127
15127
+
sources."chokidar-3.5.1"
15322
15128
sources."cli-cursor-3.1.0"
15323
15129
sources."cli-spinners-2.5.0"
15324
15130
sources."clone-1.0.4"
···
15329
15135
})
15330
15136
sources."color-convert-2.0.1"
15331
15137
sources."color-name-1.1.4"
15332
15332
-
sources."combined-stream-1.0.8"
15333
15138
sources."concat-map-0.0.1"
15334
15334
-
sources."core-util-is-1.0.2"
15335
15139
sources."cross-spawn-7.0.3"
15336
15336
-
(sources."cross-spawn-promise-0.10.2" // {
15337
15337
-
dependencies = [
15338
15338
-
sources."cross-spawn-5.1.0"
15339
15339
-
sources."shebang-command-1.2.0"
15340
15340
-
sources."shebang-regex-1.0.0"
15341
15341
-
sources."which-1.3.1"
15342
15342
-
];
15343
15343
-
})
15344
15344
-
sources."dashdash-1.14.1"
15345
15345
-
sources."debug-4.3.1"
15140
15140
+
sources."debug-4.3.2"
15346
15141
sources."decompress-response-5.0.0"
15347
15142
sources."defaults-1.0.3"
15348
15143
sources."defer-to-connect-2.0.0"
15349
15349
-
sources."delayed-stream-1.0.0"
15350
15144
sources."duplexer3-0.1.4"
15351
15351
-
sources."ecc-jsbn-0.1.2"
15352
15352
-
sources."elm-json-0.2.8"
15145
15145
+
sources."elm-tooling-1.1.0"
15353
15146
sources."emoji-regex-8.0.0"
15354
15147
sources."end-of-stream-1.4.4"
15355
15148
sources."escape-string-regexp-1.0.5"
15356
15356
-
sources."extend-3.0.2"
15357
15357
-
sources."extsprintf-1.3.0"
15358
15358
-
sources."fast-deep-equal-3.1.3"
15359
15359
-
sources."fast-json-stable-stringify-2.1.0"
15360
15149
sources."fill-range-7.0.1"
15361
15150
sources."find-up-4.1.0"
15362
15151
sources."folder-hash-3.3.3"
15363
15363
-
sources."forever-agent-0.6.1"
15364
15364
-
sources."form-data-2.3.3"
15365
15365
-
sources."fs-extra-9.0.1"
15366
15366
-
sources."fs-minipass-1.2.7"
15152
15152
+
sources."fs-extra-9.1.0"
15367
15153
sources."fs.realpath-1.0.0"
15368
15368
-
sources."fsevents-2.1.3"
15154
15154
+
sources."fsevents-2.3.2"
15369
15155
sources."get-stream-5.2.0"
15370
15370
-
sources."getpass-0.1.7"
15371
15156
sources."glob-7.1.6"
15372
15157
sources."glob-parent-5.1.1"
15373
15158
sources."got-10.7.0"
15374
15374
-
sources."graceful-fs-4.2.4"
15375
15375
-
sources."har-schema-2.0.0"
15376
15376
-
sources."har-validator-5.1.5"
15159
15159
+
sources."graceful-fs-4.2.5"
15377
15160
sources."has-flag-4.0.0"
15378
15161
sources."http-cache-semantics-4.1.0"
15379
15379
-
sources."http-signature-1.2.0"
15380
15162
sources."inflight-1.0.6"
15381
15163
sources."inherits-2.0.4"
15382
15164
sources."is-binary-path-2.1.0"
···
15385
15167
sources."is-glob-4.0.1"
15386
15168
sources."is-interactive-1.0.0"
15387
15169
sources."is-number-7.0.0"
15388
15388
-
sources."is-typedarray-1.0.0"
15389
15170
sources."isexe-2.0.0"
15390
15390
-
sources."isstream-0.1.2"
15391
15391
-
sources."jsbn-0.1.1"
15392
15171
sources."json-buffer-3.0.1"
15393
15393
-
sources."json-schema-0.2.3"
15394
15394
-
sources."json-schema-traverse-0.4.1"
15395
15395
-
sources."json-stringify-safe-5.0.1"
15396
15396
-
(sources."jsonfile-6.1.0" // {
15397
15397
-
dependencies = [
15398
15398
-
sources."universalify-2.0.0"
15399
15399
-
];
15400
15400
-
})
15401
15401
-
sources."jsprim-1.4.1"
15172
15172
+
sources."jsonfile-6.1.0"
15402
15173
sources."keyv-4.0.3"
15403
15174
sources."kleur-3.0.3"
15404
15175
sources."locate-path-5.0.0"
15405
15405
-
sources."lodash-4.17.20"
15406
15176
(sources."log-symbols-3.0.0" // {
15407
15177
dependencies = [
15408
15178
sources."ansi-styles-3.2.1"
···
15414
15184
];
15415
15185
})
15416
15186
sources."lowercase-keys-2.0.0"
15417
15417
-
sources."lru-cache-4.1.5"
15418
15418
-
sources."mime-db-1.44.0"
15419
15419
-
sources."mime-types-2.1.27"
15420
15187
sources."mimic-fn-2.1.0"
15421
15188
sources."mimic-response-2.1.0"
15422
15189
sources."minimatch-3.0.4"
15423
15190
sources."minimist-1.2.5"
15424
15424
-
(sources."minipass-2.9.0" // {
15425
15425
-
dependencies = [
15426
15426
-
sources."yallist-3.1.1"
15427
15427
-
];
15428
15428
-
})
15429
15429
-
sources."minizlib-1.3.3"
15430
15191
sources."mkdirp-0.5.5"
15431
15192
sources."ms-2.1.2"
15432
15432
-
sources."mustache-3.2.1"
15433
15193
sources."mute-stream-0.0.8"
15434
15194
sources."normalize-path-3.0.0"
15435
15195
sources."normalize-url-4.5.0"
15436
15436
-
sources."oauth-sign-0.9.0"
15437
15196
sources."once-1.4.0"
15438
15197
sources."onetime-5.1.2"
15439
15198
(sources."ora-4.1.1" // {
···
15451
15210
sources."path-exists-4.0.0"
15452
15211
sources."path-is-absolute-1.0.1"
15453
15212
sources."path-key-3.1.1"
15454
15454
-
sources."performance-now-2.1.0"
15455
15213
sources."picomatch-2.2.2"
15456
15214
sources."prompts-2.4.0"
15457
15457
-
sources."pseudomap-1.0.2"
15458
15458
-
sources."psl-1.8.0"
15459
15215
sources."pump-3.0.0"
15460
15460
-
sources."punycode-2.1.1"
15461
15461
-
sources."qs-6.5.2"
15462
15216
sources."readdirp-3.5.0"
15463
15463
-
sources."request-2.88.2"
15464
15464
-
sources."request-promise-4.2.6"
15465
15465
-
sources."request-promise-core-1.1.4"
15466
15217
sources."responselike-2.0.0"
15467
15218
sources."restore-cursor-3.1.0"
15468
15219
sources."rimraf-2.6.3"
15469
15469
-
sources."safe-buffer-5.2.1"
15470
15470
-
sources."safer-buffer-2.1.2"
15471
15220
sources."shebang-command-2.0.0"
15472
15221
sources."shebang-regex-3.0.0"
15473
15222
sources."signal-exit-3.0.3"
15474
15223
sources."sisteransi-1.0.5"
15475
15475
-
sources."sshpk-1.16.1"
15476
15476
-
sources."stealthy-require-1.1.1"
15477
15224
sources."string-width-4.2.0"
15478
15225
sources."strip-ansi-6.0.0"
15479
15226
sources."supports-color-7.2.0"
15480
15227
sources."supports-hyperlinks-2.1.0"
15481
15481
-
(sources."tar-4.4.13" // {
15482
15482
-
dependencies = [
15483
15483
-
sources."yallist-3.1.1"
15484
15484
-
];
15485
15485
-
})
15486
15228
sources."temp-0.9.4"
15487
15229
sources."terminal-link-2.1.1"
15488
15230
sources."to-readable-stream-2.1.0"
15489
15231
sources."to-regex-range-5.0.1"
15490
15490
-
sources."tough-cookie-2.5.0"
15491
15491
-
sources."traverse-0.3.9"
15492
15492
-
sources."tunnel-agent-0.6.0"
15493
15493
-
sources."tweetnacl-0.14.5"
15494
15232
sources."type-fest-0.10.0"
15495
15495
-
sources."universalify-1.0.0"
15496
15496
-
sources."unzip-stream-0.3.1"
15497
15497
-
sources."uri-js-4.4.0"
15498
15498
-
sources."uuid-3.4.0"
15499
15499
-
sources."verror-1.10.0"
15233
15233
+
sources."universalify-2.0.0"
15500
15234
sources."wcwidth-1.0.1"
15501
15235
sources."which-2.0.2"
15502
15236
sources."wrap-ansi-6.2.0"
15503
15237
sources."wrappy-1.0.2"
15504
15504
-
sources."yallist-2.1.2"
15505
15238
];
15506
15239
buildInputs = globalBuildInputs;
15507
15240
meta = {